nataliegref commited on
Commit
e301a24
·
1 Parent(s): 42623d3

Set up v2

Browse files
Files changed (6) hide show
  1. app.py +106 -34
  2. cleaned_dataframe.csv +0 -0
  3. data_utils.py +45 -28
  4. example.csv +864 -0
  5. plot_utils.py +6 -4
  6. training_dataframe.csv +0 -905
app.py CHANGED
@@ -12,27 +12,48 @@ import geopandas as gpd
12
 
13
  import numpy as np
14
 
15
- og_file = "cleaned_dataframe.csv"
16
- training_file = "training_dataframe.csv"
17
- original_df, df, X, Y, T = prepare_data(og_file, training_file)
18
 
19
 
20
  app_ui = ui.page_fluid(
21
- ui.input_radio_buttons("tab_choice", "Seleccionar página:", ["Efecto de los árboles en la temperatura", "Efecto de la temperatura en los árboles"]),
22
- ui.output_ui("tab_slider"),
23
- ui.tooltip(
24
- ui.input_radio_buttons(
25
- "split_filter",
26
- "¿Aplicar filtro?",
27
- choices=["Sin filtro", "Filtro"],
28
- selected="Sin filtro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ),
30
- "Indica exceso de cobertura: marrón = límite por construcción, rojo = más del 100%.",
31
- placement="right"
32
- ),
33
- ui.output_ui("page_ui"),
34
- ui.download_button("download_csv", "Descargar simulación (CSV)")
35
  )
 
 
 
 
36
 
37
  def server(input, output, session):
38
  @output
@@ -43,18 +64,37 @@ def server(input, output, session):
43
  else: # "Effect of temperature on trees"
44
  return ui.input_slider("temp_goal", "Disminución de la temperatura (°C)", min=0, max=2, value=0.5, step=0.1)
45
 
46
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  @reactive.Calc
48
  def get_gdf_trees():
49
  value_trees = input.tree_pct()
 
50
  print(f"value inputed is {value_trees}")
51
- return process_data_trees_to_temp(value_trees, original_df, df, X, Y, T)
 
52
 
53
  @reactive.Calc
54
  def get_gdf_temp():
55
  value_temp = input.temp_goal()
 
56
  print(f"value inputed is {value_temp}")
57
- return process_data_temp_to_trees(value_temp, original_df, df, X, Y, T)
 
58
 
59
  @output
60
  @render.ui
@@ -80,16 +120,19 @@ def server(input, output, session):
80
  apply_filter = input.split_filter()
81
 
82
  if apply_filter == "Filtro":
83
- split = f'%total_trees_treatment_{value_trees}%'
84
  else:
85
  split = False
86
 
87
  min_temp = 15
88
  max_temp = 35
89
-
 
 
 
90
  try:
91
- fig = show_two_plots(gdf_trees, f'simulated_temp_{value_trees}%', 'LST',
92
- min_temp, max_temp, 'coolwarm',f"Temperatura estimada después del aumento de cobertura arbórea (+{value_trees}% )",
93
  "Temperatura antes",'Temperatura (°C)',split=split)
94
  return fig
95
  except Exception as e:
@@ -105,9 +148,14 @@ def server(input, output, session):
105
 
106
  most_temp_change = -2
107
  no_temp_change = 0
 
 
 
 
 
108
 
109
- fig = show_one_plot(gdf_trees, f'treatment_effect_{value_trees}%', most_temp_change, no_temp_change,
110
- 'PuBu_r', f"Disminución de la temperatura por el tratamiento (+{value_trees}% cobertura arbórea)",
111
  "Cambio de temperatura (°C)")
112
  return fig
113
 
@@ -119,16 +167,21 @@ def server(input, output, session):
119
  apply_filter = input.split_filter()
120
 
121
  if apply_filter == "Filtro":
122
- split = f'%total_trees_needed_for_{value_temp}C'
123
  else:
124
  split = False
125
 
126
  min_cobertura_veg = 5
127
  max_cobertura = 100
 
 
 
 
 
128
  try:
129
- fig = show_two_plots(gdf_temp, f'%total_trees_needed_for_{value_temp}C', '%CoberturaVeg',
130
  min_cobertura_veg, max_cobertura, 'YlGn',
131
- f"Estimación de cobertura arbórea necesaria para una disminución de {value_temp}°C","Cobertura arbórea antes",
132
  "Cobertura arbórea (%)", split=split)
133
  return fig
134
  except Exception as e:
@@ -143,17 +196,36 @@ def server(input, output, session):
143
  value_temp = input.temp_goal()
144
  min_tree_increase = 0
145
  max_tree_increase = 90
146
- fig = show_one_plot(gdf_temp, f'pp_trees_increase_for_{value_temp}C', min_tree_increase,
 
 
 
 
 
147
  max_tree_increase, 'Greens',
148
- f"Aumento de cobertura arbórea por disminución de {value_temp}°C",
149
  "Cambio en cobertura arbórea (%pt)")
150
  return fig
151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  @output
153
- @render.download(filename=lambda: (
154
- f"gdf_trees_{input.tree_pct()}pct.csv" if input.tab_choice() == "Efecto de los árboles en la temperatura"
155
- else f"gdf_temp_{input.temp_goal()}C.csv"
156
- ))
157
  def download_csv():
158
  if input.tab_choice() == "Efecto de los árboles en la temperatura":
159
  df = get_gdf_trees()
 
12
 
13
  import numpy as np
14
 
15
+ og_file = "example.csv"
16
+ # original_df, df, X, Y, T = prepare_data(og_file)
 
17
 
18
 
19
  app_ui = ui.page_fluid(
20
+ ui.row(
21
+ ui.column(8,
22
+ ui.input_radio_buttons("tab_choice", "Seleccionar página:", ["Efecto de los árboles en la temperatura", "Efecto de la temperatura en los árboles"]),
23
+ # ui.input_file("csv_upload", "Subir archivo CSV", accept=[".csv"]),
24
+ # ui.input_radio_buttons(
25
+ # "simulation_mode", "Modo de simulación:",
26
+ # choices=["Usar control deslizante", "Usar simulación personalizada del CSV"],
27
+ # selected="Usar control deslizante"
28
+ # ),
29
+ # ui.output_ui("tab_slider"),
30
+ ui.tooltip(
31
+ ui.output_ui("tab_slider"),
32
+ ui.input_radio_buttons(
33
+ "split_filter",
34
+ "¿Aplicar filtro?",
35
+ choices=["Sin filtro", "Filtro"],
36
+ selected="Sin filtro"
37
+ ),
38
+ "Indica exceso de cobertura: marrón = límite por construcción, rojo = más del 100%.",
39
+ placement="right"
40
+ )
41
+ # ui.output_ui("page_ui")
42
+ # ui.download_button("download_csv", "Descargar simulación (CSV)")
43
+ ),
44
+ ui.column(4,
45
+ ui.input_file("csv_upload", "Subir archivo CSV", accept=[".csv"]),
46
+ ui.input_radio_buttons(
47
+ "simulation_mode", "Modo de simulación:",
48
+ choices=["Usar control deslizante", "Usar simulación personalizada del CSV"],
49
+ selected="Usar control deslizante"
50
  ),
51
+ ui.download_button("download_csv", "Descargar simulación (CSV)")
 
 
 
 
52
  )
53
+ ),
54
+ ui.row(ui.column(12,
55
+ ui.output_ui("page_ui")))
56
+ )
57
 
58
  def server(input, output, session):
59
  @output
 
64
  else: # "Effect of temperature on trees"
65
  return ui.input_slider("temp_goal", "Disminución de la temperatura (°C)", min=0, max=2, value=0.5, step=0.1)
66
 
67
+ @reactive.Calc
68
+ def user_data():
69
+ file_info = input.csv_upload()
70
+ if file_info is None:
71
+ return prepare_data(og_file)
72
+ else:
73
+ with open(file_info[0]["datapath"], "r", encoding="utf-8") as f:
74
+ return prepare_data(f)
75
+
76
+ @reactive.Calc
77
+ def uploaded_filename():
78
+ file_info = input.csv_upload()
79
+ if file_info is None:
80
+ return "example_provided.csv"
81
+ return file_info[0]["name"]
82
+
83
  @reactive.Calc
84
  def get_gdf_trees():
85
  value_trees = input.tree_pct()
86
+ simulation_mode = input.simulation_mode()
87
  print(f"value inputed is {value_trees}")
88
+ original_df, df, X, Y, T = user_data()
89
+ return process_data_trees_to_temp(value_trees, simulation_mode, original_df, df, X, Y, T)
90
 
91
  @reactive.Calc
92
  def get_gdf_temp():
93
  value_temp = input.temp_goal()
94
+ simulation_mode = input.simulation_mode()
95
  print(f"value inputed is {value_temp}")
96
+ original_df, df, X, Y, T = user_data()
97
+ return process_data_temp_to_trees(value_temp, simulation_mode, original_df, df, X, Y, T)
98
 
99
  @output
100
  @render.ui
 
120
  apply_filter = input.split_filter()
121
 
122
  if apply_filter == "Filtro":
123
+ split = '%total_trees'
124
  else:
125
  split = False
126
 
127
  min_temp = 15
128
  max_temp = 35
129
+ simulation_mode = input.simulation_mode()
130
+ title = "Temperatura estimada después del aumento de cobertura arbórea\n(simulación personalizada del CSV)"
131
+ if simulation_mode == "Usar control deslizante":
132
+ title = f"Temperatura estimada después del aumento de cobertura arbórea (+{value_trees}%)"
133
  try:
134
+ fig = show_two_plots(gdf_trees, 'new_temp', 'LST',
135
+ min_temp, max_temp, 'coolwarm',title,
136
  "Temperatura antes",'Temperatura (°C)',split=split)
137
  return fig
138
  except Exception as e:
 
148
 
149
  most_temp_change = -2
150
  no_temp_change = 0
151
+
152
+ simulation_mode = input.simulation_mode()
153
+ title = "Disminución de la temperatura después del aumento de cobertura arbórea\n(simulación personalizada del CSV)"
154
+ if simulation_mode == "Usar control deslizante":
155
+ title = f"Disminución de la temperatura después del aumento de cobertura arbórea (+{value_trees}%) "
156
 
157
+ fig = show_one_plot(gdf_trees, 'temp_decrease', most_temp_change, no_temp_change,
158
+ 'PuBu_r', title,
159
  "Cambio de temperatura (°C)")
160
  return fig
161
 
 
167
  apply_filter = input.split_filter()
168
 
169
  if apply_filter == "Filtro":
170
+ split = '%total_trees'
171
  else:
172
  split = False
173
 
174
  min_cobertura_veg = 5
175
  max_cobertura = 100
176
+
177
+ simulation_mode = input.simulation_mode()
178
+ title = "Estimación de cobertura arbórea necesaria para la disminución de temperatura\n(simulación personalizada del CSV)"
179
+ if simulation_mode == "Usar control deslizante":
180
+ title = f"Estimación de cobertura arbórea necesaria para una disminución de {value_temp}°C"
181
  try:
182
+ fig = show_two_plots(gdf_temp, '%total_trees', '%CoberturaVeg',
183
  min_cobertura_veg, max_cobertura, 'YlGn',
184
+ title,"Cobertura arbórea antes",
185
  "Cobertura arbórea (%)", split=split)
186
  return fig
187
  except Exception as e:
 
196
  value_temp = input.temp_goal()
197
  min_tree_increase = 0
198
  max_tree_increase = 90
199
+
200
+ simulation_mode = input.simulation_mode()
201
+ title = "Aumento de cobertura arbórea necesario para la disminución de temperatura\n(simulación personalizada del CSV)"
202
+ if simulation_mode == "Usar control deslizante":
203
+ title = f"Aumento de cobertura arbórea necesario para disminución de {value_temp}°C"
204
+ fig = show_one_plot(gdf_temp, 'pp_trees_increase', min_tree_increase,
205
  max_tree_increase, 'Greens',
206
+ title,
207
  "Cambio en cobertura arbórea (%pt)")
208
  return fig
209
 
210
+ def get_filename():
211
+ simulation_mode = input.simulation_mode()
212
+ uploaded_name = uploaded_filename()
213
+ print(uploaded_name)
214
+ if simulation_mode == "Usar control deslizante":
215
+ if input.tab_choice() == "Efecto de los árboles en la temperatura":
216
+ filename = f"simulacion_arboles_{input.tree_pct()}pct.csv"
217
+ else:
218
+ filename = f"simulacion_temp_{input.temp_goal()}C.csv"
219
+ else:
220
+ if input.tab_choice() == "Efecto de los árboles en la temperatura":
221
+ filename = f"simulacion_arboles_desde_{uploaded_name}"
222
+ else:
223
+ filename = f"simulacion_temp_desde_{uploaded_name}"
224
+
225
+ return filename
226
+
227
  @output
228
+ @render.download(filename=lambda: get_filename())
 
 
 
229
  def download_csv():
230
  if input.tab_choice() == "Efecto de los árboles en la temperatura":
231
  df = get_gdf_trees()
cleaned_dataframe.csv DELETED
The diff for this file is too large to render. See raw diff
 
data_utils.py CHANGED
@@ -20,13 +20,14 @@ def make_XYT(df, treatment_col = '%CoberturaVeg', target_col = 'LST'):
20
 
21
  return X, Y, T
22
 
23
- def prepare_data(og_file, training_file):
24
  original_df = pd.read_csv(og_file, index_col=0)
25
- df = pd.read_csv(training_file, index_col=0)
26
 
27
  original_df = original_df.round(2)
28
 
29
- df = df.drop(columns=['row','column','x','y'])
 
30
  df = df.astype(np.float32)
31
 
32
  X, Y, T = make_XYT(df)
@@ -43,12 +44,16 @@ def prepare_treatment_df(original_df, df):
43
  return treatment_df
44
 
45
 
46
- def run_treatment_increase(X, T, original_df, df, value, name):
47
 
48
  treatment_df = prepare_treatment_df(original_df, df)
49
- T_sim = T.copy()
50
- value_num = 1+ (value/100)
51
- T_sim = T_sim*value_num
 
 
 
 
52
  data = {"X": X.tolist(), "T0":T.tolist(), "T1":(T_sim).tolist()}
53
  response = requests.post(url, headers=headers, json=data)
54
  if response.ok:
@@ -58,28 +63,32 @@ def run_treatment_increase(X, T, original_df, df, value, name):
58
  print("Request failed:", response.status_code, response.text)
59
 
60
  treatment_df[name] = result["effect"]
61
- treatment_df[f'%total_trees_treatment_{value}%'] = T_sim
62
- treatment_df[f'pp_trees_increase_treatment_{value}%'] = treatment_df[f'%total_trees_treatment_{value}%'] - treatment_df['%CoberturaVeg']
63
 
64
  return treatment_df
65
 
66
- def process_data_trees_to_temp(value, original_df, df, X, Y, T):
67
-
68
- name = f'treatment_effect_{value}%'
69
- treatment_df = run_treatment_increase(X, T, original_df, df, value, name)
70
 
71
- treatment_df[f'simulated_temp_{value}%'] = treatment_df['LST'] + treatment_df[name]
72
 
73
  #add columns translated to square meters
74
- treatment_df[f'sqm_total_trees_treatment_{value}%'] = (treatment_df[f'%total_trees_treatment_{value}%']/100)*cell_area
75
- treatment_df[f'sqm_trees_increase_treatment_{value}%'] = (treatment_df[f'pp_trees_increase_treatment_{value}%']/100)*cell_area
 
 
 
 
 
76
 
77
  gdf = gpd.GeoDataFrame(treatment_df, geometry=gpd.points_from_xy(treatment_df.x, treatment_df.y))
78
 
79
  return gdf
80
 
81
 
82
- def run_temp_decrease(X, original_df, df, goal, name):
83
 
84
  treatment_df = prepare_treatment_df(original_df, df)
85
  data = {"X": X.tolist()}
@@ -90,24 +99,32 @@ def run_temp_decrease(X, original_df, df, goal, name):
90
  else:
91
  print("Request failed:", response.status_code, response.text)
92
 
93
- treatment_effects = np.array(result["effect"])
94
-
95
- trees_needed = -goal / treatment_effects
 
 
 
96
 
97
- treatment_df[name] = trees_needed
98
- treatment_df['goal_temp'] = treatment_df['LST'] - goal
99
 
100
  return treatment_df
101
- def process_data_temp_to_trees(goal, original_df, df, X, Y, T):
102
 
103
- name = f'pp_trees_increase_for_{goal}C'
104
- treatment_df = run_temp_decrease(X,original_df, df, goal, name)
105
 
106
- treatment_df[f'%total_trees_needed_for_{goal}C'] = treatment_df['%CoberturaVeg'] + treatment_df[name]
107
 
108
  #add columns translated to square meters
109
- treatment_df[f'sqm_total_trees_needed_for_{goal}C'] = (treatment_df[f'%total_trees_needed_for_{goal}C']/100)*cell_area
110
- treatment_df[f'sqm_trees_increase_for_{goal}C'] = (treatment_df[f'pp_trees_increase_for_{goal}C']/100)*cell_area
 
 
 
 
 
111
 
112
  gdf = gpd.GeoDataFrame(treatment_df, geometry=gpd.points_from_xy(treatment_df.x, treatment_df.y))
113
 
 
20
 
21
  return X, Y, T
22
 
23
+ def prepare_data(og_file):
24
  original_df = pd.read_csv(og_file, index_col=0)
25
+ # df = pd.read_csv(training_file, index_col=0)
26
 
27
  original_df = original_df.round(2)
28
 
29
+ df = original_df[['Elevacion', 'Neighbor_NDBI', 'Proximidad_agua',
30
+ 'Neighbor_%CoberturaVeg', '%CoberturaVeg', 'LST']].copy()
31
  df = df.astype(np.float32)
32
 
33
  X, Y, T = make_XYT(df)
 
44
  return treatment_df
45
 
46
 
47
+ def run_treatment_increase(X, T, original_df, df, value, name, simulation_mode):
48
 
49
  treatment_df = prepare_treatment_df(original_df, df)
50
+
51
+ if simulation_mode == "Usar control deslizante":
52
+ T_sim = T.copy()
53
+ value_num = 1+ (value/100)
54
+ T_sim = T_sim*value_num
55
+ else:
56
+ T_sim = original_df['simulacion_arboles']
57
  data = {"X": X.tolist(), "T0":T.tolist(), "T1":(T_sim).tolist()}
58
  response = requests.post(url, headers=headers, json=data)
59
  if response.ok:
 
63
  print("Request failed:", response.status_code, response.text)
64
 
65
  treatment_df[name] = result["effect"]
66
+ treatment_df['%total_trees'] = T_sim
67
+ treatment_df['pp_trees_increase'] = treatment_df['%total_trees'] - treatment_df['%CoberturaVeg']
68
 
69
  return treatment_df
70
 
71
+ def process_data_trees_to_temp(value, simulation_mode, original_df, df, X, Y, T):
72
+ name = 'temp_decrease'
73
+ treatment_df = run_treatment_increase(X, T, original_df, df, value, name, simulation_mode)
 
74
 
75
+ treatment_df['new_temp'] = treatment_df['LST'] + treatment_df[name]
76
 
77
  #add columns translated to square meters
78
+ treatment_df['sqm_trees_increase'] = (treatment_df['pp_trees_increase']/100)*cell_area
79
+ treatment_df['sqm_total_trees'] = (treatment_df['%total_trees']/100)*cell_area
80
+
81
+ col_order = ['index', 'x', 'y', '%CoberturaVeg', '%Construccion', 'LST','temp_decrease',
82
+ 'new_temp', 'pp_trees_increase','%total_trees', 'sqm_trees_increase','sqm_total_trees',] # to match gdf trees
83
+
84
+ treatment_df = treatment_df[col_order]
85
 
86
  gdf = gpd.GeoDataFrame(treatment_df, geometry=gpd.points_from_xy(treatment_df.x, treatment_df.y))
87
 
88
  return gdf
89
 
90
 
91
+ def run_temp_decrease(X, original_df, df, goal, name,simulation_mode):
92
 
93
  treatment_df = prepare_treatment_df(original_df, df)
94
  data = {"X": X.tolist()}
 
99
  else:
100
  print("Request failed:", response.status_code, response.text)
101
 
102
+ if simulation_mode == "Usar control deslizante":
103
+ treatment_df['temp_decrease'] = -goal
104
+ treatment_df['new_temp'] = treatment_df['LST'] + treatment_df['temp_decrease']
105
+ else:
106
+ treatment_df['new_temp'] = original_df['simulacion_temp']
107
+ treatment_df['temp_decrease'] = treatment_df['new_temp'] - treatment_df['LST']
108
 
109
+ treatment_effects = np.array(result["effect"])
110
+ treatment_df[name] = treatment_df['temp_decrease'] / treatment_effects
111
 
112
  return treatment_df
113
+ def process_data_temp_to_trees(goal, simulation_mode, original_df, df, X, Y, T):
114
 
115
+ name = 'pp_trees_increase'
116
+ treatment_df = run_temp_decrease(X, original_df, df, goal, name,simulation_mode)
117
 
118
+ treatment_df['%total_trees'] = treatment_df['%CoberturaVeg'] + treatment_df[name]
119
 
120
  #add columns translated to square meters
121
+ treatment_df['sqm_total_trees'] = (treatment_df['%total_trees']/100)*cell_area
122
+ treatment_df['sqm_trees_increase'] = (treatment_df['pp_trees_increase']/100)*cell_area
123
+
124
+ col_order = ['index', 'x', 'y', '%CoberturaVeg', '%Construccion', 'LST','temp_decrease',
125
+ 'new_temp', 'pp_trees_increase','%total_trees', 'sqm_trees_increase','sqm_total_trees',] # to match gdf trees
126
+
127
+ treatment_df = treatment_df[col_order]
128
 
129
  gdf = gpd.GeoDataFrame(treatment_df, geometry=gpd.points_from_xy(treatment_df.x, treatment_df.y))
130
 
example.csv ADDED
@@ -0,0 +1,864 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,x,y,Elevacion,Neighbor_NDBI,Proximidad_agua,Neighbor_%CoberturaVeg,%CoberturaVeg,LST,%Construccion,simulacion_temp,simulacion_arboles
2
+ 0,769975.0,1617705.0,1462.4218,-0.18309525,234.21106,14.933889,72.46039,26.467785,6.4757442,26.267784,77.46039
3
+ 1,770075.0,1617705.0,1460.5194,-0.17259958,132.40779,54.877888,87.98455,25.810371,2.7551615,25.61037,92.98455
4
+ 2,769875.0,1617605.0,1458.5167,-0.21486245,288.92615,44.12824,97.19963,25.18595,3.9044127,24.985949,102.19963
5
+ 3,769975.0,1617605.0,1477.3673,-0.2121526,219.62048,44.12824,77.68392,25.444145,12.492223,25.244144,82.68392
6
+ 4,770075.0,1617605.0,1455.4082,-0.2121526,129.06796,54.877888,94.30693,25.123127,2.6513584,24.923126,99.30693
7
+ 5,769775.0,1617505.0,1467.388,-0.21486245,269.63208,20.351316,79.976295,25.486286,19.929935,25.286285,84.976295
8
+ 6,769875.0,1617505.0,1481.7335,-0.21486245,208.98743,20.351316,44.12824,26.69153,41.89977,26.49153,49.12824
9
+ 7,769975.0,1617505.0,1472.5923,-0.25960422,148.5641,32.78539,65.41278,25.85886,28.263285,25.65886,70.41278
10
+ 8,769575.0,1617405.0,1445.241,-0.2363342,349.77377,16.77228,95.91716,24.345968,1.8082025,24.145967,100.91716
11
+ 9,769675.0,1617405.0,1473.5267,-0.2363342,270.34677,16.77228,65.13586,25.70275,26.167625,25.502748,70.13586
12
+ 10,769775.0,1617405.0,1484.7122,-0.2069258,195.18222,16.77228,20.351316,27.878641,65.87283,27.67864,25.351316
13
+ 11,769875.0,1617405.0,1481.583,-0.26848984,130.69421,20.351316,32.78539,27.818249,57.473194,27.618248,37.78539
14
+ 12,769975.0,1617405.0,1449.3939,-0.26848984,70.201164,32.78539,90.7013,25.439102,7.644739,25.239101,95.7013
15
+ 13,769475.0,1617305.0,1468.2922,-0.23554353,393.25687,6.1375537,82.90737,25.294758,17.600945,25.094757,87.90737
16
+ 14,769575.0,1617305.0,1478.1528,-0.23554353,302.01938,6.1375537,59.632565,26.395525,34.984062,26.195524,64.63257
17
+ 15,769675.0,1617305.0,1486.7275,-0.23554353,213.92477,6.1375537,16.77228,28.066902,60.291695,27.866901,21.77228
18
+ 16,769775.0,1617305.0,1482.5962,-0.26306728,129.15504,11.39336,28.731754,28.212137,62.98069,28.012136,33.731754
19
+ 17,769875.0,1617305.0,1453.8594,-0.26848984,56.110733,20.351316,82.86331,26.258549,13.069173,26.058548,87.86331
20
+ 18,769375.0,1617205.0,1474.3878,-0.19516589,467.49002,8.366543,69.71735,25.436342,32.377285,25.236341,74.71735
21
+ 19,769475.0,1617205.0,1487.5254,-0.19516589,366.7238,6.1375537,8.366543,27.793175,73.71867,27.593174,13.366543
22
+ 20,769575.0,1617205.0,1487.3816,-0.16255628,269.57443,8.366543,6.1375537,28.882507,62.057594,28.682507,11.137554
23
+ 21,769675.0,1617205.0,1487.7833,-0.20005699,173.82088,6.1375537,11.39336,28.59748,64.958244,28.39748,16.39336
24
+ 22,769775.0,1617205.0,1464.1744,-0.28861022,77.83931,11.39336,66.633865,26.798286,26.377222,26.598286,71.633865
25
+ 23,769175.0,1617105.0,1453.8209,-0.29853067,655.4669,20.879343,86.12086,25.09849,18.312311,24.898489,91.12086
26
+ 24,769275.0,1617105.0,1474.2336,-0.1811843,556.7003,20.879343,81.94253,25.15452,16.02844,24.95452,86.94253
27
+ 25,769375.0,1617105.0,1472.8846,-0.15946276,457.9493,8.366543,79.56814,25.927094,18.972498,25.727093,84.56814
28
+ 26,769475.0,1617105.0,1488.3655,-0.1811843,356.22797,6.1375537,17.642035,28.130306,59.621693,27.930305,22.642035
29
+ 27,769575.0,1617105.0,1489.1218,-0.088892594,257.52408,6.1375537,10.558984,29.118774,65.59736,28.918774,15.558984
30
+ 28,769675.0,1617105.0,1484.6018,-0.26555067,158.86943,6.1375537,26.462675,27.82972,52.708443,27.629719,31.462675
31
+ 29,769775.0,1617105.0,1447.0162,-0.28861022,57.77785,11.39336,55.59221,25.719786,19.972399,25.519785,60.59221
32
+ 30,769175.0,1617005.0,1478.743,-0.29853067,649.841,13.680408,57.60136,26.161657,40.354324,25.961657,62.60136
33
+ 31,769275.0,1617005.0,1489.6394,-0.1811843,550.987,13.680408,20.879343,27.582706,65.976364,27.382706,25.879343
34
+ 32,769375.0,1617005.0,1481.2852,-0.1811843,452.13406,8.496754,63.420914,27.173279,24.606182,26.973278,68.42091
35
+ 33,769475.0,1617005.0,1487.1946,-0.1811843,350.2859,8.496754,15.680698,28.472784,63.607075,28.272783,20.680698
36
+ 34,769575.0,1617005.0,1489.6326,-0.15213148,251.44472,8.496754,9.571135,29.417269,68.77869,29.217268,14.571135
37
+ 35,769675.0,1617005.0,1482.8237,-0.27985668,152.63042,9.432322,30.814754,27.574577,56.201893,27.374577,35.814754
38
+ 36,769775.0,1617005.0,1444.4607,-0.29903245,51.862732,26.462675,76.77456,25.210226,5.788415,25.010225,81.77456
39
+ 37,769075.0,1616905.0,1471.1658,-0.29853067,746.1217,10.121661,71.937454,25.317024,19.449207,25.117023,76.937454
40
+ 38,769175.0,1616905.0,1490.8203,-0.29853067,644.3927,8.420768,15.227005,28.59549,75.98089,28.395489,20.227005
41
+ 39,769275.0,1616905.0,1489.2369,-0.14729321,545.53864,8.420768,13.680408,29.675764,72.04521,29.475763,18.680408
42
+ 40,769375.0,1616905.0,1488.0437,-0.14729321,446.68573,8.420768,26.406313,28.891602,57.277374,28.6916,31.406313
43
+ 41,769475.0,1616905.0,1487.6903,-0.14729321,344.8428,6.45226,8.496754,29.251232,72.707634,29.051231,13.496754
44
+ 42,769575.0,1616905.0,1486.6273,-0.15213148,246.00287,6.45226,9.432322,29.317415,70.492,29.117414,14.432322
45
+ 43,769675.0,1616905.0,1470.523,-0.32088077,147.18176,6.45226,69.66316,26.57005,15.961696,26.370049,74.66316
46
+ 44,769775.0,1616905.0,1441.6,-0.32088077,51.289764,100.0,84.48691,24.360218,0.0,24.160217,89.48691
47
+ 45,768975.0,1616805.0,1472.8365,-0.31705478,839.7273,24.598814,90.863304,24.601772,1.6079458,24.401772,95.863304
48
+ 46,769075.0,1616805.0,1487.5214,-0.28037235,740.9465,10.121661,24.598814,27.17564,70.65164,26.97564,29.598814
49
+ 47,769275.0,1616805.0,1488.6709,-0.006058801,540.2399,2.456398,8.420768,30.4818,75.26731,30.2818,13.420768
50
+ 48,769375.0,1616805.0,1490.005,-0.006058801,441.38834,2.456398,19.247866,29.942062,49.624687,29.742062,24.247866
51
+ 49,769475.0,1616805.0,1489.2345,-0.006058801,339.54654,2.456398,9.712688,29.735634,76.46628,29.535633,14.712688
52
+ 50,769575.0,1616805.0,1488.5078,-0.15213148,240.7054,2.8212938,6.45226,29.596315,72.75371,29.396315,11.45226
53
+ 51,769675.0,1616805.0,1473.5117,-0.32088077,141.89125,6.45226,52.584393,27.031483,37.004093,26.831482,57.584393
54
+ 52,769775.0,1616805.0,1440.7585,-0.30132315,46.975418,100.0,92.914345,24.272024,0.0,24.072023,97.914345
55
+ 53,768875.0,1616705.0,1460.6028,-0.1816931,924.9415,77.305786,76.70803,25.384855,0.27263486,25.184855,81.70803
56
+ 54,768975.0,1616705.0,1471.5284,-0.20538017,834.5116,24.598814,84.74397,25.150164,2.9837494,24.950163,89.74397
57
+ 55,769075.0,1616705.0,1485.5603,-0.28037235,735.6536,10.121661,33.455338,27.258892,61.744293,27.058891,38.455338
58
+ 56,769175.0,1616705.0,1490.2335,-0.035082426,633.80096,4.826961,15.791427,29.77247,67.678764,29.57247,20.791428
59
+ 57,769275.0,1616705.0,1488.4493,-0.0697963,534.94727,2.456398,4.826961,30.586931,80.693436,30.38693,9.8269615
60
+ 58,769375.0,1616705.0,1489.6404,-0.0697963,436.09482,2.8212938,2.456398,30.165897,75.55451,29.965897,7.456398
61
+ 59,769475.0,1616705.0,1490.126,-0.0697963,334.24738,2.456398,2.8212938,29.575956,85.41149,29.375956,7.821294
62
+ 60,769575.0,1616705.0,1489.9386,-0.13632184,235.40816,2.8212938,9.510305,29.293861,76.54104,29.09386,14.510305
63
+ 61,769675.0,1616705.0,1473.2645,-0.32088077,136.60129,6.45226,47.388287,27.242004,34.170742,27.042004,52.388287
64
+ 62,769775.0,1616705.0,1443.5114,-0.32088077,41.592384,100.0,92.00224,24.524504,0.0,24.324503,97.00224
65
+ 63,768875.0,1616605.0,1452.1613,-0.20538017,914.0065,76.70803,95.77663,25.305494,0.0,25.105494,100.77663
66
+ 64,768975.0,1616605.0,1469.3551,-0.28037235,829.06665,24.717962,57.69881,26.250147,2.176594,26.050146,62.69881
67
+ 65,769075.0,1616605.0,1490.5311,-0.28037235,730.2114,9.352153,24.717962,27.911701,57.195724,27.7117,29.717962
68
+ 66,769175.0,1616605.0,1490.8807,-0.069208756,628.3627,4.826961,15.789282,29.653736,69.6327,29.453735,20.789282
69
+ 67,769275.0,1616605.0,1489.1975,-0.0697963,529.5089,2.456398,17.045713,30.351654,73.15323,30.151653,22.045713
70
+ 68,769375.0,1616605.0,1489.6797,-0.14055385,430.65634,2.456398,24.182392,30.374891,29.305779,30.17489,29.182392
71
+ 69,769475.0,1616605.0,1489.9592,-0.14055385,328.8143,2.456398,12.839515,29.43192,53.755344,29.231918,17.839516
72
+ 70,769575.0,1616605.0,1489.0231,-0.14055385,229.97694,2.8212938,50.06377,28.567347,25.599113,28.367346,55.06377
73
+ 71,769675.0,1616605.0,1471.471,-0.2998146,131.1632,9.510305,95.72198,26.80723,0.4393951,26.60723,100.72198
74
+ 72,769775.0,1616605.0,1448.531,-0.2998146,34.93775,47.388287,94.46589,24.689692,0.0,24.48969,99.46589
75
+ 73,769075.0,1616505.0,1481.6646,-0.2025111,725.4574,9.352153,28.757538,27.841572,26.763494,27.641571,33.757538
76
+ 74,769175.0,1616505.0,1492.066,-0.1407743,623.5388,14.47817,9.352153,29.342396,76.66826,29.142395,14.352153
77
+ 75,769275.0,1616505.0,1490.966,-0.0697963,524.62384,4.6798816,14.47817,30.294474,64.13917,30.094473,19.47817
78
+ 76,769375.0,1616505.0,1490.4618,-0.14055385,425.71622,12.839515,4.6798816,31.065586,4.191711,30.865585,9.679882
79
+ 77,769475.0,1616505.0,1490.8096,-0.13360406,323.8214,4.6798816,36.238415,29.34539,16.343414,29.14539,41.238415
80
+ 78,769575.0,1616505.0,1487.5531,-0.19665791,224.93666,12.839515,61.184696,28.139837,14.896903,27.939837,66.18469
81
+ 79,769675.0,1616505.0,1481.9193,-0.23548347,126.08819,41.334183,84.08022,26.45124,7.5645814,26.25124,89.08022
82
+ 80,769775.0,1616505.0,1453.5197,-0.23548347,33.403458,59.06012,97.99999,24.906507,0.0,24.706507,102.99999
83
+ 81,769875.0,1616505.0,1464.9944,-0.23548347,97.402985,25.261923,59.06012,24.732622,0.06757559,24.532621,64.06012
84
+ 82,769975.0,1616505.0,1483.8372,-0.17439416,173.11588,25.261923,52.849766,25.977974,30.672428,25.777973,57.849766
85
+ 83,770175.0,1616505.0,1488.3724,-0.07271608,373.31912,25.585728,34.575718,27.988234,49.503845,27.788233,39.575718
86
+ 84,770275.0,1616505.0,1487.7214,-0.07271608,471.93237,0.0,31.16462,29.03235,38.620956,28.83235,36.16462
87
+ 85,769075.0,1616405.0,1470.77,-0.2025111,726.2713,6.780877,21.235247,27.056488,4.4481096,26.856487,26.235247
88
+ 86,769175.0,1616405.0,1492.9679,-0.16249059,624.97815,6.780877,17.531784,28.81551,68.2795,28.615509,22.531784
89
+ 87,769275.0,1616405.0,1491.858,-0.026670577,526.21533,4.6798816,17.757795,29.79484,68.14416,29.59484,22.757795
90
+ 88,769375.0,1616405.0,1491.4929,-0.14055385,427.47156,4.6798816,42.774178,30.111883,12.222289,29.911882,47.774178
91
+ 89,769475.0,1616405.0,1491.307,-0.14055385,325.75635,4.6798816,40.16533,28.781183,13.134063,28.581182,45.16533
92
+ 90,769575.0,1616405.0,1491.7058,-0.19665791,227.06313,36.238415,41.334183,27.910883,21.971384,27.710882,46.334183
93
+ 91,769675.0,1616405.0,1483.9711,-0.209221,128.45586,41.334183,74.770485,26.26073,14.221934,26.06073,79.770485
94
+ 92,769775.0,1616405.0,1450.6123,-0.209221,36.12293,26.824116,91.87511,25.296179,0.0,25.096178,96.87511
95
+ 93,769875.0,1616405.0,1467.1267,-0.209221,73.81419,25.261923,61.646694,25.281881,11.567981,25.08188,66.6467
96
+ 94,769975.0,1616405.0,1487.8041,-0.11551938,168.93303,26.734333,25.261923,26.369516,42.562775,26.169516,30.261923
97
+ 95,770075.0,1616405.0,1492.6058,-0.11551938,270.18042,25.261923,33.05287,27.12151,52.275063,26.921509,38.05287
98
+ 96,770175.0,1616405.0,1492.0087,-0.111467265,368.41666,26.734333,38.057575,27.761831,28.394411,27.56183,43.057575
99
+ 97,770275.0,1616405.0,1491.388,-0.111467265,466.45935,21.273401,49.805798,28.138094,33.05466,27.938093,54.805798
100
+ 98,770375.0,1616405.0,1493.2296,-0.10258934,566.73303,21.273401,28.089882,28.74028,57.619473,28.54028,33.08988
101
+ 99,770475.0,1616405.0,1496.0042,-0.10258934,661.96063,21.273401,46.116817,29.200863,54.54484,29.000862,51.116817
102
+ 100,770575.0,1616405.0,1499.7875,-0.08666581,750.71967,2.9939442,48.823837,29.795233,55.633762,29.595232,53.823837
103
+ 101,769175.0,1616305.0,1492.777,-0.21457605,634.15967,12.607568,6.780877,28.409966,57.230377,28.209965,11.780877
104
+ 102,769275.0,1616305.0,1492.6007,-0.026670577,535.9433,6.780877,14.763521,29.421701,58.352352,29.2217,19.763521
105
+ 103,769375.0,1616305.0,1492.0581,-0.13360406,437.77124,12.607568,35.79007,29.396517,61.72589,29.196516,40.79007
106
+ 104,769475.0,1616305.0,1492.3894,-0.16241492,336.66956,23.39161,40.79338,29.640186,62.457153,29.440186,45.79338
107
+ 105,769575.0,1616305.0,1489.609,-0.19665791,238.61781,23.39161,68.5497,28.344534,26.357027,28.144533,73.5497
108
+ 106,769675.0,1616305.0,1463.484,-0.19665791,140.66353,41.334183,95.57142,26.433775,0.20304522,26.233774,100.57142
109
+ 107,769775.0,1616305.0,1452.2653,-0.19665791,42.970173,26.824116,94.49991,26.911245,0.0,26.711245,99.49991
110
+ 108,769875.0,1616305.0,1456.2521,-0.1906234,57.213043,25.261923,26.824116,26.66978,37.697422,26.46978,31.824116
111
+ 109,769975.0,1616305.0,1475.3196,-0.11624097,153.90987,25.261923,57.647926,26.123474,24.98013,25.923473,62.647926
112
+ 110,770075.0,1616305.0,1492.5137,-0.16300358,253.1746,25.261923,43.16633,26.907215,16.236273,26.707214,48.16633
113
+ 111,770175.0,1616305.0,1493.2709,-0.16300358,347.82257,23.783188,34.219215,27.71071,18.60797,27.51071,39.219215
114
+ 112,770275.0,1616305.0,1493.6807,-0.18224706,440.1461,23.783188,34.586563,28.13539,53.241055,27.935389,39.586563
115
+ 113,770375.0,1616305.0,1495.5441,-0.18224706,533.17896,23.783188,48.648212,27.969912,47.41563,27.76991,53.648212
116
+ 114,770475.0,1616305.0,1500.0685,-0.18224706,622.3488,28.089882,57.318707,28.713884,39.182774,28.513884,62.318707
117
+ 115,770575.0,1616305.0,1502.8024,-0.07877728,708.38434,28.216673,56.84961,29.013054,49.507534,28.813053,61.84961
118
+ 116,770675.0,1616305.0,1507.9517,-0.08666581,710.49835,28.216673,47.57411,29.726475,51.366886,29.526474,52.57411
119
+ 117,769175.0,1616205.0,1492.7817,-0.2654733,647.4629,6.780877,12.942403,27.832071,18.29342,27.63207,17.942402
120
+ 118,769275.0,1616205.0,1493.444,-0.14524655,549.78534,5.250154,12.607568,29.0924,59.585308,28.892399,17.607567
121
+ 119,769375.0,1616205.0,1492.795,-0.044663593,452.38315,5.250154,52.34455,29.32753,29.740301,29.12753,57.34455
122
+ 120,769475.0,1616205.0,1492.8763,-0.17053564,352.3836,5.250154,23.39161,29.113304,50.965458,28.913303,28.39161
123
+ 121,769575.0,1616205.0,1480.4069,-0.17053564,255.75687,23.39161,79.31146,27.32479,5.7474937,27.124788,84.31146
124
+ 122,769675.0,1616205.0,1472.9813,-0.17053564,159.58139,29.440042,80.75787,26.306757,14.032124,26.106756,85.75787
125
+ 123,769775.0,1616205.0,1464.5901,-0.1696388,61.287743,26.824116,88.05621,27.203371,9.532152,27.00337,93.05621
126
+ 124,769875.0,1616205.0,1454.3656,-0.119882725,37.605843,26.824116,30.690254,26.962212,48.236214,26.76221,35.690254
127
+ 125,769975.0,1616205.0,1468.5101,-0.16439427,125.709785,26.824116,46.027218,26.345985,45.55699,26.145985,51.027218
128
+ 126,770075.0,1616205.0,1494.6443,-0.16439427,219.34355,27.671701,54.366207,26.700733,23.669966,26.500732,59.366207
129
+ 127,770175.0,1616205.0,1495.2316,-0.16439427,309.20117,23.783188,36.867805,28.127407,52.352272,27.927406,41.867805
130
+ 128,770275.0,1616205.0,1495.749,-0.18224706,398.34445,21.752384,23.783188,28.402569,36.852215,28.202568,28.783188
131
+ 129,770375.0,1616205.0,1499.1373,-0.12487353,489.2631,21.752384,70.601265,27.85043,26.73331,27.650429,75.601265
132
+ 130,770475.0,1616205.0,1504.6045,-0.18224706,573.54144,21.752384,58.49216,28.607561,11.447276,28.40756,63.49216
133
+ 131,770575.0,1616205.0,1506.9381,-0.08666581,639.3211,28.216673,38.790726,28.780178,54.624184,28.580177,43.790726
134
+ 132,770675.0,1616205.0,1511.5176,-0.08666581,678.77234,35.830067,28.216673,29.034874,59.209473,28.834873,33.216675
135
+ 133,769175.0,1616105.0,1492.5791,-0.2654733,666.6663,9.580868,46.781364,26.990152,7.1031485,26.790152,51.781364
136
+ 134,769275.0,1616105.0,1494.938,-0.14524655,570.5289,5.250154,9.580868,28.668922,58.625443,28.468922,14.580868
137
+ 135,769375.0,1616105.0,1493.6307,-0.06371117,474.70352,9.580868,5.250154,29.081203,81.19197,28.881203,10.2501545
138
+ 136,769475.0,1616105.0,1490.3807,-0.17053564,376.32755,5.250154,26.591862,27.98015,63.199245,27.78015,31.591862
139
+ 137,769575.0,1616105.0,1476.5311,-0.16241492,281.487,16.101963,83.109604,26.577612,13.5469055,26.377611,88.109604
140
+ 138,769675.0,1616105.0,1489.8387,-0.17053564,188.1361,16.101963,29.440042,27.022099,63.18944,26.822098,34.44004
141
+ 139,769775.0,1616105.0,1479.4115,-0.13848403,94.00128,16.101963,49.311527,27.18318,38.71186,26.98318,54.311527
142
+ 140,769875.0,1616105.0,1457.4607,-0.1727732,26.27006,27.671701,36.38761,26.587376,9.626826,26.387375,41.38761
143
+ 141,769975.0,1616105.0,1462.972,-0.1727732,85.30596,25.462393,27.671701,26.41699,36.355606,26.21699,32.6717
144
+ 142,770075.0,1616105.0,1487.265,-0.1727732,177.09142,25.462393,53.527843,26.287748,25.009523,26.087748,58.527843
145
+ 143,770175.0,1616105.0,1495.1215,-0.16439427,265.2817,23.783188,52.82963,27.393158,17.570356,27.193157,57.82963
146
+ 144,770275.0,1616105.0,1499.5349,-0.18224706,353.3545,21.752384,50.571903,28.018202,12.966621,27.818201,55.571903
147
+ 145,770375.0,1616105.0,1503.4009,-0.18224706,438.9354,23.783188,21.752384,28.14732,63.879692,27.947319,26.752384
148
+ 146,770475.0,1616105.0,1507.7468,-0.18224706,501.84692,21.752384,28.283041,28.227089,72.462845,28.027088,33.283043
149
+ 147,770575.0,1616105.0,1512.2069,-0.07877728,558.3062,26.494009,37.05817,28.154297,36.342392,27.954296,42.05817
150
+ 148,770675.0,1616105.0,1516.6819,-0.01700455,617.79944,26.494009,35.830067,28.032005,54.416542,27.832005,40.830067
151
+ 149,769075.0,1616005.0,1481.1812,-0.26962036,790.879,9.731041,72.570175,25.508278,18.722662,25.308277,77.570175
152
+ 150,769175.0,1616005.0,1496.4098,-0.2654733,692.7844,9.580868,27.013012,27.73176,27.326008,27.53176,32.013012
153
+ 151,769275.0,1616005.0,1496.3423,-0.14524655,598.0598,5.250154,29.569794,28.937292,19.995623,28.737291,34.569794
154
+ 152,769375.0,1616005.0,1494.5875,-0.08416586,504.32806,5.250154,30.913847,29.504082,60.73005,29.304081,35.91385
155
+ 153,769475.0,1616005.0,1490.7373,-0.17053564,409.48486,5.250154,50.070957,29.240623,41.004116,29.040623,55.070957
156
+ 154,769575.0,1616005.0,1489.1259,-0.17053564,318.9778,16.101963,39.06047,28.60365,53.258545,28.403648,44.06047
157
+ 155,769675.0,1616005.0,1490.5265,-0.17053564,229.05176,22.904463,16.101963,28.236645,67.05084,28.036644,21.101963
158
+ 156,769775.0,1616005.0,1468.2292,-0.15392296,136.61737,16.101963,57.289547,26.837132,5.9776597,26.63713,62.289547
159
+ 157,769875.0,1616005.0,1464.287,-0.1727732,48.973957,27.671701,49.42421,26.179304,7.9543867,25.979303,54.42421
160
+ 158,769975.0,1616005.0,1460.9006,-0.16439427,42.800404,25.462393,66.05323,26.179216,2.5745482,25.979216,71.05323
161
+ 159,770075.0,1616005.0,1469.9569,-0.1727732,130.72655,27.671701,25.462393,27.165865,27.596495,26.965864,30.462393
162
+ 160,770175.0,1616005.0,1489.0841,-0.16439427,219.48572,25.462393,43.97417,27.720472,11.508986,27.520472,48.97417
163
+ 161,770275.0,1616005.0,1504.1018,-0.13285597,299.8467,21.752384,32.391937,28.319365,39.279057,28.119364,37.391937
164
+ 162,770375.0,1616005.0,1508.9806,-0.12487353,361.84546,21.752384,38.35678,28.704256,49.621155,28.504255,43.35678
165
+ 163,770475.0,1616005.0,1513.4358,-0.015796367,417.95633,21.752384,38.64229,28.249546,33.48785,28.049545,43.64229
166
+ 164,770575.0,1616005.0,1518.3639,-0.012489131,477.05777,26.494009,30.61862,28.351133,63.605892,28.151133,35.61862
167
+ 165,770675.0,1616005.0,1522.1373,-0.010686858,541.7821,27.3703,26.494009,28.498009,64.89221,28.298008,31.494009
168
+ 166,769075.0,1615905.0,1484.6837,-0.2445012,819.67053,9.731041,58.247597,26.220097,23.780922,26.020096,63.247597
169
+ 167,769175.0,1615905.0,1497.8455,-0.16510163,724.43536,14.454418,9.731041,28.277302,78.00599,28.077301,14.731041
170
+ 168,769275.0,1615905.0,1497.4379,-0.068808876,633.1806,9.731041,22.594957,28.61919,24.316673,28.41919,27.594957
171
+ 169,769375.0,1615905.0,1496.8002,-0.13232577,542.93713,14.454418,21.720045,29.72309,60.767353,29.523088,26.720045
172
+ 170,769475.0,1615905.0,1494.5912,-0.13232577,450.29623,19.694075,44.129158,31.528618,22.241348,31.328617,49.129158
173
+ 171,769575.0,1615905.0,1493.5111,-0.13232577,360.59644,16.101963,22.904463,30.091045,57.433777,29.891045,27.904463
174
+ 172,769675.0,1615905.0,1483.3705,-0.19824111,271.6018,16.101963,43.548603,27.950457,36.213623,27.750456,48.548603
175
+ 173,769775.0,1615905.0,1470.734,-0.19824111,180.783,16.101963,61.53724,26.031134,5.8511586,25.831133,66.53724
176
+ 174,769875.0,1615905.0,1492.5137,-0.19824111,92.64514,20.850733,32.09196,26.490807,53.796467,26.290806,37.09196
177
+ 175,769975.0,1615905.0,1472.519,-0.1727732,25.371397,20.850733,78.17014,26.063932,8.236455,25.863932,83.17014
178
+ 176,770075.0,1615905.0,1469.4543,-0.1727732,87.90122,25.462393,28.622543,27.09815,4.5976863,26.89815,33.622543
179
+ 177,770175.0,1615905.0,1497.9412,-0.12814729,164.15245,25.462393,42.617516,27.55051,35.78474,27.35051,47.617516
180
+ 178,770275.0,1615905.0,1508.6576,-0.12814729,222.52074,32.391937,30.111895,28.436327,56.629368,28.236326,35.111893
181
+ 179,770375.0,1615905.0,1513.1637,-0.21392761,280.22986,30.111895,32.508617,28.730701,59.194874,28.5307,37.508617
182
+ 180,770475.0,1615905.0,1516.2855,-0.21392761,338.11755,24.462242,36.783737,28.130644,40.66444,27.930643,41.783737
183
+ 181,770575.0,1615905.0,1521.2262,-0.21392761,401.26355,24.462242,27.3703,28.574705,57.321316,28.374704,32.3703
184
+ 182,770675.0,1615905.0,1527.3616,-0.012995465,470.7721,24.462242,37.377583,28.979036,57.226692,28.779036,42.377583
185
+ 183,770775.0,1615905.0,1530.0828,0.011429158,527.6051,0.018118652,30.016363,29.4366,69.25964,29.236599,35.016365
186
+ 184,769075.0,1615805.0,1469.6405,-0.2445012,856.3235,9.731041,67.89301,26.486048,25.647707,26.286047,72.89301
187
+ 185,769175.0,1615805.0,1495.135,-0.16510163,764.18097,9.731041,31.94316,27.519072,49.246773,27.31907,36.94316
188
+ 186,769275.0,1615805.0,1498.2919,-0.16174614,674.274,9.731041,14.454418,28.426828,49.11126,28.226828,19.454418
189
+ 187,769375.0,1615805.0,1497.8528,-0.16174614,584.571,14.454418,23.741411,28.413633,9.473751,28.213633,28.741411
190
+ 188,769475.0,1615805.0,1496.7269,-0.16174614,492.9089,19.694075,72.63454,29.807611,18.059376,29.60761,77.63454
191
+ 189,769575.0,1615805.0,1495.7351,-0.13232577,404.76477,22.904463,19.694075,30.27785,25.330557,30.077848,24.694075
192
+ 190,769675.0,1615805.0,1486.4475,-0.19824111,316.6056,19.694075,45.705967,28.382729,26.103073,28.182728,50.705967
193
+ 191,769775.0,1615805.0,1475.1725,-0.15392296,224.5035,20.850733,58.880703,26.731703,3.942198,26.531702,63.880703
194
+ 192,769875.0,1615805.0,1497.8546,-0.19824111,134.5713,32.09196,20.850733,27.611227,63.36556,27.411226,25.850733
195
+ 193,769975.0,1615805.0,1485.2079,-0.22293377,48.67817,20.850733,64.11787,26.493385,22.410398,26.293385,69.11787
196
+ 194,770075.0,1615805.0,1468.7885,-0.22293377,32.691597,28.622543,57.28641,25.895674,9.028724,25.695673,62.28641
197
+ 195,770175.0,1615805.0,1488.0833,-0.22293377,84.908806,28.622543,60.23037,26.289797,27.239403,26.089796,65.23037
198
+ 196,770275.0,1615805.0,1507.4875,-0.1690002,140.90034,30.111895,41.05647,27.052893,45.979794,26.852892,46.05647
199
+ 197,770375.0,1615805.0,1513.3733,-0.21392761,199.46745,30.111895,43.468773,27.048262,46.19214,26.84826,48.468773
200
+ 198,770475.0,1615805.0,1507.6172,-0.1690002,261.64102,24.462242,85.776726,25.98518,12.572826,25.78518,90.776726
201
+ 199,770575.0,1615805.0,1525.127,-0.21392761,328.74762,27.113111,24.462242,27.673267,70.89163,27.473267,29.462242
202
+ 200,770675.0,1615805.0,1532.1377,-0.012995465,405.44363,24.00616,38.99915,28.418285,63.884235,28.218285,43.99915
203
+ 201,770775.0,1615805.0,1534.5615,0.011323134,482.93234,22.812044,32.254086,28.746056,60.805775,28.546055,37.254086
204
+ 202,769175.0,1615705.0,1492.9453,-0.18315844,807.17487,14.454418,51.47368,27.087524,9.221279,26.887524,56.47368
205
+ 203,769275.0,1615705.0,1497.6592,-0.18175356,718.26013,14.454418,19.066095,27.628502,46.106846,27.428501,24.066095
206
+ 204,769375.0,1615705.0,1498.6025,-0.13232577,630.1161,14.454418,59.978424,27.450663,7.567258,27.250662,64.978424
207
+ 205,769475.0,1615705.0,1498.4398,-0.16174614,539.1406,19.694075,38.196888,27.619097,32.03018,27.419096,43.196888
208
+ 206,769575.0,1615705.0,1497.6176,-0.13232577,449.62643,19.694075,45.526394,28.757975,42.203316,28.557974,50.526394
209
+ 207,769675.0,1615705.0,1494.5585,-0.19824111,359.67072,19.694075,50.877487,28.473917,37.725746,28.273916,55.877487
210
+ 208,769775.0,1615705.0,1474.6005,-0.19824111,269.1389,20.850733,37.82743,27.560556,22.971027,27.360556,42.82743
211
+ 209,769875.0,1615705.0,1495.45,-0.19824111,186.2479,20.850733,47.116726,27.340372,39.384266,27.140371,52.116726
212
+ 210,769975.0,1615705.0,1488.8737,-0.22293377,114.68936,20.850733,77.91281,26.763855,15.219873,26.563854,82.91281
213
+ 211,770075.0,1615705.0,1478.0118,-0.22672838,55.10252,25.920425,94.94111,25.263807,1.9955664,25.063807,99.94111
214
+ 212,770175.0,1615705.0,1470.9943,-0.22672838,25.209898,41.05647,82.57799,25.44923,12.347539,25.24923,87.57799
215
+ 213,770275.0,1615705.0,1476.959,-0.25596222,57.78492,41.05647,85.831276,25.68461,1.680528,25.48461,90.831276
216
+ 214,770375.0,1615705.0,1484.6229,-0.25596222,119.8123,41.05647,97.48748,24.930765,0.26733005,24.730764,102.48748
217
+ 215,770475.0,1615705.0,1511.8726,-0.25596222,187.03897,24.462242,77.98945,25.193087,17.399553,24.993086,82.98945
218
+ 216,770575.0,1615705.0,1530.3519,-0.21392761,263.10684,24.462242,27.113111,27.301231,67.05555,27.10123,32.113113
219
+ 217,770675.0,1615705.0,1535.4635,-0.16068628,348.66226,24.00616,36.785595,27.988274,56.345936,27.788273,41.785595
220
+ 218,770775.0,1615705.0,1539.4703,-0.16068628,434.46445,23.19128,24.00616,28.434582,61.76617,28.234581,29.00616
221
+ 219,769275.0,1615605.0,1487.0503,-0.18175356,762.7351,15.258831,70.435234,26.649921,12.698487,26.44992,75.435234
222
+ 220,769375.0,1615605.0,1498.0043,-0.16174614,673.43225,15.258831,38.26115,27.374756,29.492521,27.174755,43.26115
223
+ 221,769475.0,1615605.0,1499.8129,-0.16174614,580.87317,15.258831,42.32286,27.648424,13.768891,27.448423,47.32286
224
+ 222,769575.0,1615605.0,1499.6927,-0.098048285,492.67468,17.426605,64.01537,29.189087,23.482254,28.989086,69.01537
225
+ 223,769675.0,1615605.0,1499.4332,-0.19642106,407.551,31.695364,46.384384,28.709858,36.96072,28.509857,51.384384
226
+ 224,769775.0,1615605.0,1482.1469,-0.13083641,324.75333,19.156435,68.16927,26.81404,10.37228,26.614038,73.16927
227
+ 225,769875.0,1615605.0,1499.4039,-0.19642106,253.76921,14.444787,34.60708,27.347588,49.213345,27.147587,39.60708
228
+ 226,769975.0,1615605.0,1504.3616,-0.22293377,194.04663,14.444787,25.920425,28.510561,63.105335,28.31056,30.920425
229
+ 227,770075.0,1615605.0,1505.4746,-0.22672838,136.2317,14.444787,49.66995,27.127718,46.44021,26.927717,54.66995
230
+ 228,770175.0,1615605.0,1482.6575,-0.22293377,80.170654,27.705936,93.031815,25.404455,0.24258633,25.204454,98.031815
231
+ 229,770275.0,1615605.0,1486.2858,-0.25596222,30.428337,52.43696,86.63193,24.816446,10.155803,24.616446,91.63193
232
+ 230,770375.0,1615605.0,1477.8735,-0.24200119,49.19799,52.43696,97.93051,24.120338,0.0,23.920338,102.93051
233
+ 231,770475.0,1615605.0,1492.6522,-0.26012665,125.972885,27.113111,93.273415,24.387934,2.8899465,24.187933,98.273415
234
+ 232,770575.0,1615605.0,1511.2968,-0.26012665,210.83774,27.113111,78.48043,25.188877,13.263725,24.988876,83.48043
235
+ 233,770675.0,1615605.0,1517.2019,-0.26012665,300.2047,24.00616,66.092545,25.563568,10.7654085,25.363567,71.092545
236
+ 234,770775.0,1615605.0,1537.4224,-0.20957647,388.6003,23.19128,66.89449,26.404675,24.352514,26.204674,71.89449
237
+ 235,769275.0,1615505.0,1477.0929,-0.23845129,802.3746,15.258831,77.925545,25.977419,7.7320647,25.777418,82.925545
238
+ 236,769375.0,1615505.0,1499.2131,-0.23845129,716.3719,5.679317,15.258831,27.678825,56.715977,27.478825,20.258831
239
+ 237,769475.0,1615505.0,1501.0273,-0.098048285,627.7052,5.679317,17.426605,28.681696,46.06054,28.481695,22.426605
240
+ 238,769575.0,1615505.0,1501.3634,-0.098048285,544.7976,5.679317,31.695364,29.968615,19.506594,29.768614,36.695366
241
+ 239,769675.0,1615505.0,1502.35,-0.19642106,466.07874,17.992884,37.074577,29.466038,36.00226,29.266037,42.074577
242
+ 240,769775.0,1615505.0,1489.9738,-0.19642106,393.01874,19.156435,60.53768,27.280025,6.3092623,27.080025,65.53768
243
+ 241,769875.0,1615505.0,1502.8025,-0.19642106,331.98492,14.444787,19.156435,28.302647,62.294315,28.102646,24.156435
244
+ 242,769975.0,1615505.0,1506.978,-0.037157655,275.5496,14.768124,14.444787,29.72461,66.60961,29.524609,19.444786
245
+ 243,770075.0,1615505.0,1508.0453,-0.22672838,217.84612,14.444787,27.705936,28.587606,67.10939,28.387606,32.705936
246
+ 244,770175.0,1615505.0,1502.0372,-0.22672838,159.92552,14.768124,65.42856,26.81793,25.056782,26.61793,70.42856
247
+ 245,770275.0,1615505.0,1518.6423,-0.25596222,92.788246,18.050636,52.43696,26.00606,39.99305,25.806059,57.43696
248
+ 246,770375.0,1615505.0,1500.685,-0.25596222,26.214716,21.86531,89.744225,24.613115,10.165744,24.413115,94.744225
249
+ 247,770475.0,1615505.0,1486.6008,-0.26012665,76.409294,78.48043,93.91154,23.571682,0.0,23.371681,98.91154
250
+ 248,770575.0,1615505.0,1502.206,-0.24317776,165.18439,66.092545,88.413895,23.527105,0.008348831,23.327105,93.413895
251
+ 249,770675.0,1615505.0,1520.7859,-0.26012665,259.9718,37.733974,88.003586,23.98113,0.014456917,23.78113,93.003586
252
+ 250,770775.0,1615505.0,1537.3638,-0.20957647,354.09518,23.30481,71.99195,25.812113,19.341566,25.612112,76.99195
253
+ 251,769275.0,1615405.0,1476.3733,-0.19767503,851.1203,15.258831,89.52939,25.507288,3.1100605,25.307287,94.52939
254
+ 252,769375.0,1615405.0,1496.3656,-0.23845129,768.3387,5.679317,25.265886,27.050682,49.618984,26.850681,30.265886
255
+ 253,769475.0,1615405.0,1502.4358,0.005643613,684.6247,5.6324215,5.679317,28.80949,62.84642,28.60949,10.679317
256
+ 254,769575.0,1615405.0,1502.6617,-0.02356622,607.4809,5.6324215,17.992884,29.654814,19.70361,29.454813,22.992884
257
+ 255,769675.0,1615405.0,1502.8759,-0.13083641,536.80927,5.6324215,30.421762,29.116257,31.181837,28.916256,35.42176
258
+ 256,769775.0,1615405.0,1494.4674,-0.13083641,472.61563,14.579308,51.353924,28.25129,20.730513,28.051289,56.353924
259
+ 257,769875.0,1615405.0,1505.4326,-0.13083641,415.65314,14.212682,22.925785,28.864235,62.358746,28.664234,27.925785
260
+ 258,769975.0,1615405.0,1509.2794,0.00964834,359.64752,14.212682,16.112696,29.66207,64.5645,29.462069,21.112696
261
+ 259,770075.0,1615405.0,1513.4838,-0.09943124,300.803,10.687718,14.768124,29.380632,58.150074,29.180632,19.768124
262
+ 260,770175.0,1615405.0,1517.997,-0.106480174,231.97028,10.687718,18.050636,28.411991,50.92956,28.21199,23.050636
263
+ 261,770275.0,1615405.0,1525.1926,-0.207838,147.64409,10.687718,21.86531,27.89262,64.49303,27.69262,26.86531
264
+ 262,770375.0,1615405.0,1506.9238,-0.2469446,55.420704,21.86531,80.893845,25.572304,20.183504,25.372303,85.893845
265
+ 263,770475.0,1615405.0,1491.0299,-0.26012665,41.424023,46.528934,98.35884,23.570974,0.027900118,23.370974,103.35884
266
+ 264,770575.0,1615405.0,1528.0902,-0.26012665,134.51314,43.972042,82.30405,24.020027,12.263754,23.820026,87.30405
267
+ 265,770675.0,1615405.0,1524.7198,-0.26012665,234.48157,25.52192,84.57083,24.651562,0.30429545,24.451561,89.57083
268
+ 266,770775.0,1615405.0,1545.4233,-0.20957647,332.1618,13.448694,37.733974,27.073257,58.772118,26.873257,42.733974
269
+ 267,769275.0,1615305.0,1485.7242,-0.24365525,905.21704,17.922842,79.5346,25.446527,13.0096245,25.246527,84.5346
270
+ 268,769375.0,1615305.0,1500.8837,-0.2394409,825.6301,5.679317,17.922842,27.445095,59.203285,27.245094,22.922842
271
+ 269,769475.0,1615305.0,1502.304,-0.002935603,747.1089,5.6324215,10.087206,29.522383,50.18776,29.322382,15.087206
272
+ 270,769575.0,1615305.0,1503.2081,-0.02356622,676.58813,5.679317,5.6324215,29.942726,64.9605,29.742725,10.6324215
273
+ 271,769675.0,1615305.0,1503.0878,-0.10915858,613.01953,5.6324215,26.774696,28.726707,12.453413,28.526707,31.774696
274
+ 272,769775.0,1615305.0,1499.6514,-0.08177263,553.32336,14.579308,41.191944,28.265324,19.606695,28.065323,46.191944
275
+ 273,769875.0,1615305.0,1504.9011,-0.10915858,497.2794,13.726533,14.579308,28.92825,48.143906,28.728249,19.579308
276
+ 274,769975.0,1615305.0,1511.4869,-0.08177263,440.1352,12.356484,14.212682,29.485853,62.84111,29.285852,19.21268
277
+ 275,770075.0,1615305.0,1517.3033,-0.009372895,364.79904,10.559604,15.693084,29.3594,64.30377,29.159399,20.693085
278
+ 276,770175.0,1615305.0,1523.1356,-0.04586018,273.22137,10.559604,10.687718,28.55779,73.56767,28.35779,15.687718
279
+ 277,770275.0,1615305.0,1528.1083,-0.16701683,176.91116,10.559604,22.016636,28.169775,64.14693,27.969774,27.016636
280
+ 278,770375.0,1615305.0,1517.8955,-0.27015176,76.989235,18.744284,66.87089,25.950977,33.342964,25.750977,71.87089
281
+ 279,770475.0,1615305.0,1489.0728,-0.27015176,35.49575,46.528934,98.70947,23.868876,0.055822153,23.668875,103.70947
282
+ 280,770575.0,1615305.0,1534.5659,-0.27015176,121.79503,33.373337,46.528934,25.242897,48.453846,25.042896,51.528934
283
+ 281,770675.0,1615305.0,1537.9304,-0.19454956,222.82333,25.52192,43.972042,26.287285,22.490406,26.087284,48.972042
284
+ 282,770775.0,1615305.0,1543.8118,-0.18937805,321.1592,7.04299,25.52192,27.275095,60.5134,27.075094,30.52192
285
+ 283,769375.0,1615205.0,1501.6292,-0.25544596,889.0347,9.510038,28.715954,27.66634,51.97166,27.46634,33.715954
286
+ 284,769475.0,1615205.0,1503.595,-0.13293792,816.34265,5.6324215,16.457262,29.305923,55.76955,29.105923,21.457262
287
+ 285,769575.0,1615205.0,1504.2792,-0.13293792,751.91223,5.6324215,22.169165,29.132952,55.2909,28.932951,27.169165
288
+ 286,769675.0,1615205.0,1506.2026,-0.13293792,692.86554,5.6324215,15.476436,29.106892,52.791462,28.90689,20.476437
289
+ 287,769775.0,1615205.0,1505.3136,-0.13897663,634.86774,13.9993105,34.61852,28.458614,21.90984,28.258614,39.61852
290
+ 288,769875.0,1615205.0,1503.9027,-0.13897663,572.40015,12.0069275,40.039185,28.393486,20.247772,28.193485,45.039185
291
+ 289,769975.0,1615205.0,1513.4473,-0.13897663,488.28918,7.4206214,13.726533,29.100779,59.063557,28.900778,18.726532
292
+ 290,770075.0,1615205.0,1520.6125,0.0010605889,389.6255,7.4206214,12.356484,29.247013,68.718925,29.047012,17.356483
293
+ 291,770175.0,1615205.0,1525.8982,-0.04586018,294.4892,7.4206214,10.559604,28.293522,73.06474,28.093521,15.559604
294
+ 292,770275.0,1615205.0,1531.3406,-0.12801887,202.85709,9.874057,18.744284,27.818838,66.06593,27.618837,23.744284
295
+ 293,770375.0,1615205.0,1525.6746,-0.27015176,120.96883,18.430742,51.550854,26.0661,32.005215,25.866098,56.550854
296
+ 294,770475.0,1615205.0,1491.1771,-0.2469446,93.92944,46.528934,99.283554,23.670687,0.0,23.470686,104.283554
297
+ 295,770575.0,1615205.0,1526.1659,-0.27015176,149.55736,33.373337,80.98352,24.34652,20.193253,24.146519,85.98352
298
+ 296,770675.0,1615205.0,1545.9814,-0.23795775,233.07626,25.52192,33.373337,25.972239,48.095516,25.772238,38.373337
299
+ 297,769375.0,1615105.0,1495.8153,-0.25544596,960.44293,9.510038,58.445053,26.594913,28.611788,26.394913,63.445053
300
+ 298,769475.0,1615105.0,1505.945,-0.19912116,893.3188,13.219053,9.510038,28.366709,70.159996,28.166708,14.510038
301
+ 299,769575.0,1615105.0,1506.497,-0.002935603,833.3708,9.510038,65.20087,28.539099,26.210716,28.339098,70.20087
302
+ 300,769675.0,1615105.0,1508.5663,-0.13293792,775.6929,14.263907,13.9993105,29.382402,64.73251,29.182402,18.99931
303
+ 301,769775.0,1615105.0,1510.6368,-0.13897663,701.89307,8.906564,14.263907,29.25597,42.34948,29.05597,19.263908
304
+ 302,769875.0,1615105.0,1510.7474,-0.08177263,610.4794,7.447392,32.67323,28.34321,19.278435,28.14321,37.67323
305
+ 303,769975.0,1615105.0,1517.7246,-0.13897663,517.4365,7.4206214,12.0069275,28.637922,71.88967,28.437922,17.006927
306
+ 304,770075.0,1615105.0,1523.5424,0.0010605889,424.36227,7.447392,7.4206214,29.102892,70.386696,28.902891,12.420622
307
+ 305,770175.0,1615105.0,1528.5306,-0.04586018,338.86426,7.4206214,9.874057,28.585352,66.17233,28.385351,14.874057
308
+ 306,770275.0,1615105.0,1533.4747,-0.18732281,262.81042,9.874057,18.430742,27.827938,63.825447,27.627937,23.430742
309
+ 307,770375.0,1615105.0,1524.1058,-0.27015176,206.11913,18.430742,61.820805,25.791119,29.02367,25.591118,66.8208
310
+ 308,770475.0,1615105.0,1495.3121,-0.27015176,191.40799,51.550854,95.862404,23.69123,0.0,23.49123,100.862404
311
+ 309,770575.0,1615105.0,1501.5815,-0.27015176,224.09688,33.373337,93.67338,23.72659,5.836986,23.526588,98.67338
312
+ 310,770675.0,1615105.0,1505.4565,-0.2637572,289.96765,33.373337,93.32465,24.352037,0.6642137,24.152037,98.32465
313
+ 311,769375.0,1615005.0,1491.5608,-0.28452846,1034.2167,9.510038,67.99365,26.20674,14.761379,26.006739,72.99365
314
+ 312,769475.0,1615005.0,1507.4991,-0.21702474,971.6794,9.510038,13.219053,28.148787,61.175095,27.948786,18.219053
315
+ 313,769575.0,1615005.0,1509.4777,-0.1984992,910.76904,9.510038,19.788467,29.030756,61.817165,28.830755,24.788467
316
+ 314,769675.0,1615005.0,1511.5872,-0.13293792,831.88245,13.9993105,22.284155,29.407164,69.682205,29.207163,27.284155
317
+ 315,769775.0,1615005.0,1514.6028,-0.13897663,737.9925,3.4479191,15.3749695,29.26981,71.83795,29.069809,20.37497
318
+ 316,769875.0,1615005.0,1516.2327,-0.13897663,648.1208,3.4479191,8.906564,28.761663,33.227608,28.561663,13.906564
319
+ 317,769975.0,1615005.0,1520.863,-0.13897663,561.2192,3.4479191,7.447392,28.421156,61.620277,28.221155,12.4473915
320
+ 318,770075.0,1615005.0,1525.9371,-0.017143985,476.61008,4.190368,9.39991,28.704151,65.70373,28.50415,14.39991
321
+ 319,770175.0,1615005.0,1531.2074,-0.05704501,402.30872,7.4206214,11.584548,28.576319,70.12976,28.376318,16.584549
322
+ 320,770275.0,1615005.0,1535.8835,-0.18732281,340.67636,9.475014,25.506615,28.017754,63.189407,27.817753,30.506615
323
+ 321,770375.0,1615005.0,1518.0525,-0.21271975,299.07553,18.430742,85.80669,25.674763,8.828663,25.474762,90.80669
324
+ 322,770475.0,1615005.0,1519.8652,-0.22140034,289.11667,51.268696,87.57548,24.073353,10.900721,23.873352,92.57548
325
+ 323,770575.0,1615005.0,1497.4401,-0.2198232,311.75632,51.268696,99.166664,23.533978,0.0,23.333977,104.166664
326
+ 324,770675.0,1615005.0,1516.0381,-0.2637572,363.0393,50.111675,73.32599,24.384932,23.224228,24.18493,78.32599
327
+ 325,770775.0,1615005.0,1511.248,-0.2654538,430.56567,50.111675,81.00763,24.711178,18.647291,24.511177,86.00763
328
+ 326,769575.0,1614905.0,1502.9398,-0.1984992,961.45374,13.219053,42.17213,27.772121,39.252502,27.57212,47.17213
329
+ 327,769675.0,1614905.0,1507.4525,-0.10536034,871.94257,15.3749695,30.800314,28.658737,50.185654,28.458736,35.800316
330
+ 328,769775.0,1614905.0,1517.4904,-0.0007717338,781.8784,3.4479191,23.297352,28.127386,54.19401,27.927385,28.297352
331
+ 329,769875.0,1614905.0,1520.3777,-0.017143985,697.59,4.190368,3.4479191,28.572912,76.66433,28.372911,8.447919
332
+ 330,769975.0,1614905.0,1523.2544,-0.015756998,617.6372,3.4479191,4.190368,28.528791,21.118065,28.32879,9.190369
333
+ 331,770075.0,1614905.0,1527.6785,-0.017143985,541.9134,4.190368,24.60554,28.275385,76.18297,28.075384,29.60554
334
+ 332,770175.0,1614905.0,1532.1056,-0.05704501,477.90005,8.583761,9.475014,28.570414,66.73394,28.370413,14.475014
335
+ 333,770275.0,1614905.0,1536.2688,-0.18732281,427.31927,9.475014,18.922756,28.31722,57.389584,28.11722,23.922756
336
+ 334,770375.0,1614905.0,1534.0933,-0.20238885,394.9646,15.95499,54.406853,26.699926,32.75608,26.499926,59.406853
337
+ 335,770475.0,1614905.0,1539.1952,-0.22140034,387.48492,28.351843,51.268696,25.74246,39.56358,25.54246,56.268696
338
+ 336,770575.0,1614905.0,1515.4131,-0.2299453,404.64597,31.721918,98.57075,24.001844,1.4308265,23.801844,103.57075
339
+ 337,770675.0,1614905.0,1517.3481,-0.2637572,445.32797,50.111675,72.45687,24.443785,18.539675,24.243784,77.45687
340
+ 338,770775.0,1614905.0,1529.8818,-0.2654538,501.8359,72.45687,50.111675,24.911657,49.090267,24.711657,55.111675
341
+ 339,769575.0,1614805.0,1487.213,-0.1984992,1006.11163,30.800314,50.963097,27.591991,36.477158,27.39199,55.963097
342
+ 340,769675.0,1614805.0,1504.1573,-0.10536034,921.6414,23.297352,40.181942,28.301998,59.10023,28.101997,45.181942
343
+ 341,769775.0,1614805.0,1519.4358,-0.061454337,836.9071,3.4479191,28.213722,28.008987,49.116917,27.808987,33.213722
344
+ 342,769875.0,1614805.0,1523.6732,-0.061454337,758.75824,3.4479191,15.695344,28.246635,52.315372,28.046635,20.695343
345
+ 343,769975.0,1614805.0,1525.9873,-0.03880243,685.96545,3.4479191,9.572669,28.40444,51.66647,28.20444,14.572669
346
+ 344,770075.0,1614805.0,1528.3435,-0.087434255,618.66235,4.190368,8.583761,27.639332,25.890593,27.439331,13.583761
347
+ 345,770175.0,1614805.0,1533.9481,-0.087434255,563.44525,8.583761,11.994605,27.750216,74.15614,27.550215,16.994606
348
+ 346,770275.0,1614805.0,1538.1434,-0.12331686,521.2284,9.475014,15.95499,27.256828,66.01906,27.056828,20.95499
349
+ 347,770375.0,1614805.0,1543.8544,-0.1401866,495.04907,15.95499,28.351843,27.041164,55.768734,26.841164,33.351845
350
+ 348,770475.0,1614805.0,1548.9481,-0.2156833,489.1038,19.553514,31.721918,27.245312,59.455784,27.045311,36.721916
351
+ 349,770575.0,1614805.0,1548.3049,-0.2299453,502.80624,19.553514,52.037094,25.745995,28.241215,25.545994,57.037094
352
+ 350,770675.0,1614805.0,1533.8268,-0.22386505,536.0908,19.553514,94.87487,24.31224,6.2960353,24.11224,99.87487
353
+ 351,770775.0,1614805.0,1539.1934,-0.2654538,583.8849,39.853233,73.95854,24.372894,18.302153,24.172894,78.95854
354
+ 352,769575.0,1614705.0,1491.7139,-0.2827971,1057.9667,31.032904,36.84237,27.565962,50.421535,27.365961,41.84237
355
+ 353,769675.0,1614705.0,1503.2345,-0.15692265,977.66846,28.213722,44.958263,27.894646,51.02729,27.694645,49.958263
356
+ 354,769775.0,1614705.0,1518.8848,-0.05480654,898.2324,15.695344,37.514732,27.977942,56.467003,27.77794,42.514732
357
+ 355,769875.0,1614705.0,1525.307,-0.061454337,825.9075,9.572669,27.753498,28.40307,55.18043,28.20307,32.753498
358
+ 356,769975.0,1614705.0,1527.3324,-0.03880243,759.56775,8.583761,13.350199,28.15734,64.413826,27.957338,18.350199
359
+ 357,770075.0,1614705.0,1529.183,-0.087434255,699.377,8.583761,10.269529,27.374243,40.364273,27.174242,15.269529
360
+ 358,770175.0,1614705.0,1534.3967,-0.03880243,651.03894,8.583761,21.885956,26.697891,27.19294,26.49789,26.885956
361
+ 359,770275.0,1614705.0,1539.4487,-0.087434255,614.85516,10.488771,18.707075,26.012022,67.33707,25.812021,23.707075
362
+ 360,770375.0,1614705.0,1544.795,-0.0136635145,592.81793,13.997381,32.05867,26.834877,58.58272,26.634876,37.05867
363
+ 361,770475.0,1614705.0,1549.421,-0.16845773,587.86127,13.997381,24.295866,27.702486,64.82402,27.502485,29.295866
364
+ 362,770575.0,1614705.0,1553.4622,-0.2299453,599.3126,13.997381,19.553514,27.310373,58.611534,27.110373,24.553514
365
+ 363,770675.0,1614705.0,1538.4402,-0.2299453,627.5067,19.553514,80.31737,25.584684,16.506863,25.384684,85.31737
366
+ 364,770775.0,1614705.0,1552.7751,-0.2299453,668.8103,28.510418,51.03632,25.33001,40.991035,25.130009,56.03632
367
+ 365,770875.0,1614705.0,1558.877,-0.26410505,721.33734,28.510418,39.853233,25.50333,45.553127,25.30333,44.853233
368
+ 366,769675.0,1614605.0,1519.0712,-0.23267615,1040.0704,19.069223,31.032904,27.07704,53.402485,26.877039,36.032906
369
+ 367,769775.0,1614605.0,1522.3644,-0.08152011,965.7836,19.069223,30.436354,27.981386,62.428204,27.781385,35.436356
370
+ 368,769875.0,1614605.0,1526.347,-0.061454337,898.91724,13.350199,20.090715,28.704304,69.432816,28.504303,25.090715
371
+ 369,769975.0,1614605.0,1529.2719,-0.03880243,838.3755,10.269529,23.330822,28.593863,58.552326,28.393862,28.330822
372
+ 370,770075.0,1614605.0,1532.2224,-0.087434255,784.26154,7.941602,20.823502,28.313564,56.050434,28.113564,25.823502
373
+ 371,770175.0,1614605.0,1536.4232,-0.087434255,741.4862,7.941602,10.488771,27.279734,29.499388,27.079733,15.488771
374
+ 372,770275.0,1614605.0,1541.6576,-0.087434255,709.93054,7.941602,19.37237,26.110872,58.89133,25.910872,24.37237
375
+ 373,770375.0,1614605.0,1546.3086,-0.043741334,690.9353,10.452088,21.512104,26.943373,54.708866,26.743372,26.512104
376
+ 374,770475.0,1614605.0,1550.3309,-0.043741334,686.68835,10.452088,13.997381,27.993092,72.92629,27.79309,18.997381
377
+ 375,770575.0,1614605.0,1554.4757,-0.22386505,696.5145,13.997381,20.33642,27.89711,64.79349,27.69711,25.33642
378
+ 376,770675.0,1614605.0,1542.2089,-0.22386505,720.9137,17.80933,85.75446,26.755545,9.905166,26.555544,90.75446
379
+ 377,770775.0,1614605.0,1558.1969,-0.22386505,757.1359,25.75157,33.355194,26.78856,60.913628,26.58856,38.355194
380
+ 378,770875.0,1614605.0,1561.1846,-0.2623366,803.9044,25.75157,28.510418,26.818476,61.27686,26.618475,33.510418
381
+ 379,769675.0,1614505.0,1510.8427,-0.23267615,1109.5864,19.069223,64.25916,26.27802,33.035557,26.07802,69.25916
382
+ 380,769775.0,1614505.0,1523.6266,-0.1973857,1040.6794,20.090715,19.069223,27.523355,63.13587,27.323355,24.069223
383
+ 381,769875.0,1614505.0,1528.0991,-0.039074358,978.9451,18.93954,20.66339,28.21029,62.695232,28.01029,25.66339
384
+ 382,769975.0,1614505.0,1531.7393,-0.03749234,923.66125,17.867542,26.904428,28.20116,53.623608,28.00116,31.904428
385
+ 383,770075.0,1614505.0,1534.4836,-0.030257262,874.83875,7.941602,17.867542,27.888254,67.44688,27.688253,22.867542
386
+ 384,770175.0,1614505.0,1536.2603,-0.030257262,836.70917,10.488771,7.941602,27.5128,73.112785,27.3128,12.941603
387
+ 385,770275.0,1614505.0,1543.7424,-0.06324071,808.8761,7.941602,11.061108,26.815634,25.580742,26.615633,16.061108
388
+ 386,770375.0,1614505.0,1548.1073,-0.06324071,792.2567,11.061108,10.452088,26.709417,69.72155,26.509417,15.452088
389
+ 387,770475.0,1614505.0,1551.8683,-0.06324071,788.55585,10.452088,16.54706,27.42717,57.54389,27.227169,21.54706
390
+ 388,770575.0,1614505.0,1556.1376,-0.18771212,797.1269,11.975522,17.80933,28.162054,57.365772,27.962053,22.80933
391
+ 389,770675.0,1614505.0,1546.2037,-0.18771212,818.5325,14.00518,44.38639,27.487988,52.033115,27.287987,49.38639
392
+ 390,770775.0,1614505.0,1554.3754,-0.18771212,850.6088,28.510418,25.75157,27.43967,64.37683,27.23967,30.75157
393
+ 391,770875.0,1614505.0,1561.2412,-0.2711005,892.49023,25.75157,38.22982,26.723846,54.208305,26.523846,43.22982
394
+ 392,770975.0,1614505.0,1537.2579,-0.32371724,920.76575,28.510418,87.32536,24.457163,7.1826777,24.257162,92.32536
395
+ 393,769775.0,1614405.0,1517.7396,-0.1973857,1117.4991,19.069223,40.574677,26.288284,50.43802,26.088284,45.574677
396
+ 394,769875.0,1614405.0,1528.6713,-0.08275447,1060.2465,18.93954,27.880615,27.619347,58.90764,27.419346,32.880615
397
+ 395,769975.0,1614405.0,1533.3334,-0.045588467,1009.4202,17.867542,18.93954,28.298794,72.1133,28.098793,23.93954
398
+ 396,770075.0,1614405.0,1536.989,-0.030257262,964.943,7.941602,19.565426,28.438604,65.74279,28.238604,24.565426
399
+ 397,770175.0,1614405.0,1541.4528,-0.029189734,930.51105,7.941602,24.92763,27.762,49.06676,27.561998,29.92763
400
+ 398,770275.0,1614405.0,1545.9836,-0.06324071,905.5623,6.6435757,11.605239,27.360518,55.62885,27.160517,16.60524
401
+ 399,770375.0,1614405.0,1549.4471,-0.029189734,890.7468,6.6435757,17.206606,27.25927,19.713766,27.059269,22.206606
402
+ 400,770475.0,1614405.0,1553.9706,-0.06324071,887.4565,6.6435757,11.975522,27.525743,63.687595,27.325743,16.975521
403
+ 401,770575.0,1614405.0,1556.0703,-0.26865304,895.0818,7.0524545,14.00518,27.46614,64.46339,27.26614,19.00518
404
+ 402,770675.0,1614405.0,1547.6423,-0.26865304,914.1989,11.037146,52.846287,26.412184,22.673727,26.212183,57.846287
405
+ 403,770775.0,1614405.0,1554.416,-0.26865304,943.0305,25.342737,38.38875,27.069368,48.169556,26.869368,43.38875
406
+ 404,770875.0,1614405.0,1558.8075,-0.2711005,980.9757,25.342737,34.550186,26.206156,53.80497,26.006155,39.550186
407
+ 405,770975.0,1614405.0,1531.8062,-0.2309388,998.0566,34.550186,98.76951,24.058857,0.82156044,23.858856,103.76951
408
+ 406,771075.0,1614405.0,1559.6,-0.2711005,940.54724,44.31943,66.46242,24.708164,32.314426,24.508163,71.46242
409
+ 407,769775.0,1614305.0,1515.8889,-0.1973857,1197.5543,27.880615,71.10801,25.11265,21.88093,24.91265,76.10801
410
+ 408,769875.0,1614305.0,1528.9509,-0.15110373,1144.318,18.93954,31.596369,26.798126,40.828514,26.598125,36.596367
411
+ 409,769975.0,1614305.0,1533.5084,-0.14445043,1097.3936,13.847742,26.60592,28.37816,70.059135,28.17816,31.60592
412
+ 410,770075.0,1614305.0,1537.896,-0.030257262,1056.6284,10.917687,24.7894,28.726944,62.152454,28.526943,29.7894
413
+ 411,770175.0,1614305.0,1542.0632,-0.030257262,1025.2833,9.448697,10.917687,28.487041,68.51527,28.28704,15.917687
414
+ 412,770275.0,1614305.0,1546.5052,-0.06324071,1002.69684,6.6435757,9.448697,28.126043,54.859486,27.926043,14.448697
415
+ 413,770375.0,1614305.0,1550.7823,-0.06324071,989.3381,7.0524545,6.6435757,28.061253,31.942566,27.861252,11.643576
416
+ 414,770475.0,1614305.0,1555.8107,-0.06324071,986.37695,6.6435757,7.0524545,27.575508,34.28646,27.375507,12.052454
417
+ 415,770575.0,1614305.0,1558.8402,-0.26865304,993.2424,7.0524545,11.037146,27.369406,61.166702,27.169405,16.037146
418
+ 416,770675.0,1614305.0,1549.5498,-0.14141928,1010.5029,9.501344,60.25247,26.193636,8.061367,25.993635,65.25247
419
+ 417,770775.0,1614305.0,1555.4728,-0.26865304,1036.6581,18.181927,25.342737,27.059872,62.5326,26.85987,30.342737
420
+ 418,770875.0,1614305.0,1558.4918,-0.2711005,1071.2888,18.181927,39.813198,26.352453,48.70428,26.152452,44.813198
421
+ 419,770975.0,1614305.0,1538.1348,-0.2711005,1077.4543,33.81657,96.04226,24.56591,3.8088355,24.36591,101.04226
422
+ 420,771075.0,1614305.0,1567.3568,-0.2711005,1021.2968,29.642038,44.866516,26.764793,42.95705,26.564793,49.866516
423
+ 421,771175.0,1614305.0,1563.4954,-0.2554985,968.89453,29.642038,44.31943,27.082441,40.39181,26.88244,49.31943
424
+ 422,769875.0,1614205.0,1529.1128,-0.23768127,1232.554,26.60592,45.47204,25.726187,34.370975,25.526186,50.47204
425
+ 423,769975.0,1614205.0,1535.4696,-0.14445043,1189.8534,13.847742,31.761238,27.85483,50.046024,27.654829,36.76124
426
+ 424,770075.0,1614205.0,1538.427,-0.04013068,1152.3636,10.917687,13.847742,28.92706,67.2654,28.727058,18.847742
427
+ 425,770175.0,1614205.0,1542.4288,-0.024167536,1123.693,9.448697,20.936079,28.701946,65.40575,28.501945,25.936079
428
+ 426,770275.0,1614205.0,1546.6946,-0.010388166,1103.123,6.6435757,14.546884,28.29615,60.675625,28.09615,19.546883
429
+ 427,770375.0,1614205.0,1552.1616,-0.058356643,1090.9946,6.6435757,17.020464,28.628685,57.502583,28.428684,22.020464
430
+ 428,770475.0,1614205.0,1558.1532,-0.0133521035,1088.3103,6.6435757,10.556639,28.067646,14.317225,27.867645,15.556639
431
+ 429,770575.0,1614205.0,1560.9484,-0.26865304,1094.5364,7.0524545,9.501344,27.511463,70.38601,27.311462,14.501344
432
+ 430,770675.0,1614205.0,1554.4757,-0.26865304,1110.2233,9.268803,30.395739,26.908987,48.134018,26.708986,35.395737
433
+ 431,770775.0,1614205.0,1556.5323,-0.26865304,1134.0812,18.953178,18.181927,26.70724,65.66688,26.507238,23.181927
434
+ 432,770875.0,1614205.0,1546.369,-0.2080604,1165.8206,18.181927,64.32026,26.090946,27.701237,25.890945,69.32026
435
+ 433,770975.0,1614205.0,1558.077,-0.2080604,1161.0636,33.81657,53.553493,25.312822,36.811607,25.112822,58.553493
436
+ 434,771075.0,1614205.0,1567.7589,-0.2080604,1107.126,29.642038,33.81657,27.795397,55.268425,27.595396,38.81657
437
+ 435,771175.0,1614205.0,1567.7894,-0.12831046,1058.4502,33.81657,29.642038,28.1121,58.663845,27.9121,34.642036
438
+ 436,771275.0,1614205.0,1558.4447,-0.2378072,1014.4024,29.642038,66.75737,26.321959,25.202028,26.121958,71.75737
439
+ 437,771375.0,1614205.0,1550.6587,-0.20158276,971.8913,19.803658,95.14192,24.262333,3.1815488,24.062332,100.14192
440
+ 438,769975.0,1614105.0,1534.0183,-0.23995633,1254.8126,13.847742,36.61423,27.230165,47.418774,27.030165,41.61423
441
+ 439,770075.0,1614105.0,1539.5715,-0.23995633,1243.0688,13.847742,28.223745,28.494404,46.15057,28.294403,33.223747
442
+ 440,770175.0,1614105.0,1543.9636,-0.11372437,1219.7732,13.847742,22.158928,28.453268,66.35494,28.253267,27.158928
443
+ 441,770275.0,1614105.0,1547.9823,0.006916,1200.8503,8.244073,18.811302,28.094357,62.385624,27.894356,23.811302
444
+ 442,770375.0,1614105.0,1553.7736,-0.058356643,1189.7178,8.7777,8.244073,28.627611,58.663464,28.42761,13.244073
445
+ 443,770475.0,1614105.0,1560.0315,-0.058356643,1187.2565,8.244073,8.7777,28.672426,68.65906,28.472425,13.7777
446
+ 444,770575.0,1614105.0,1561.7898,-0.058356643,1192.9667,8.7777,9.268803,28.076075,25.087828,27.876074,14.268803
447
+ 445,770675.0,1614105.0,1557.812,-0.049430862,1207.3762,9.268803,25.560371,27.50705,58.40117,27.307049,30.560371
448
+ 446,770775.0,1614105.0,1559.9564,-0.13274984,1229.3517,11.703675,18.953178,26.954071,47.378777,26.75407,23.953178
449
+ 447,770875.0,1614105.0,1555.8848,-0.22860898,1258.5116,15.50567,59.650375,25.941494,42.30348,25.741493,64.650375
450
+ 448,770975.0,1614105.0,1546.6305,-0.22860898,1243.5966,15.50567,75.68575,24.93966,14.976292,24.739658,80.68575
451
+ 449,771075.0,1614105.0,1567.2847,-0.22860898,1192.5142,29.642038,57.049583,26.30894,44.904392,26.10894,62.049583
452
+ 450,771175.0,1614105.0,1566.6305,-0.22265527,1146.3711,29.642038,56.280697,26.989977,36.81615,26.789976,61.280697
453
+ 451,771275.0,1614105.0,1563.599,-0.2378072,1086.5967,29.642038,64.58911,26.47364,33.923252,26.27364,69.58911
454
+ 452,771375.0,1614105.0,1546.269,-0.2378072,999.253,19.803658,40.213966,25.706877,44.4893,25.506876,45.213966
455
+ 453,771475.0,1614105.0,1556.5715,-0.2378072,900.697,23.014154,19.803658,26.330061,51.5737,26.13006,24.803658
456
+ 454,771575.0,1614105.0,1568.5457,-0.27550152,798.8746,19.803658,58.858727,25.547132,34.08375,25.347132,63.858727
457
+ 455,771675.0,1614105.0,1577.2076,-0.28705284,700.05756,23.014154,86.51793,23.885746,4.7092757,23.685745,91.51793
458
+ 456,771775.0,1614105.0,1600.9584,-0.27550152,601.24994,33.523903,94.66591,22.831306,0.0,22.631306,99.66591
459
+ 457,770075.0,1614005.0,1534.8142,-0.23995633,1233.0608,17.279825,59.382065,27.32247,15.27831,27.122469,64.382065
460
+ 458,770175.0,1614005.0,1546.3928,-0.11372437,1270.6012,14.350043,17.279825,28.338778,71.403145,28.138777,22.279825
461
+ 459,770275.0,1614005.0,1549.7897,-0.021049026,1289.3109,8.244073,14.350043,28.667274,71.56673,28.467274,19.350044
462
+ 460,770375.0,1614005.0,1553.6802,-0.02421812,1288.4177,8.244073,17.879261,28.787027,65.22895,28.587027,22.879261
463
+ 461,770475.0,1614005.0,1559.0554,-0.021049026,1286.2109,8.244073,12.892852,28.182571,56.20648,27.98257,17.892853
464
+ 462,770575.0,1614005.0,1563.3813,-0.049430862,1291.4834,8.7777,16.629759,27.88859,62.073246,27.68859,21.629759
465
+ 463,770675.0,1614005.0,1559.3215,-0.041229542,1304.8048,9.268803,11.703675,27.888706,19.259012,27.688705,16.703674
466
+ 464,770775.0,1614005.0,1561.3289,-0.13274984,1325.1649,11.147929,17.357977,27.746775,59.428234,27.546774,22.357977
467
+ 465,770875.0,1614005.0,1566.5001,-0.22860898,1351.1753,11.147929,15.50567,27.39739,63.78761,27.19739,20.505669
468
+ 466,770975.0,1614005.0,1550.3142,-0.22265527,1327.6879,11.147929,76.32027,25.472565,23.268747,25.272564,81.32027
469
+ 467,771075.0,1614005.0,1551.8824,-0.22860898,1273.7025,29.197071,89.70936,25.159712,9.90774,24.959711,94.70936
470
+ 468,771175.0,1614005.0,1563.8672,-0.22265527,1195.9166,29.197071,58.898922,26.82308,28.522947,26.62308,63.898922
471
+ 469,771275.0,1614005.0,1565.7118,-0.15505265,1096.0035,29.197071,43.291893,27.04765,50.47143,26.847649,48.291893
472
+ 470,771375.0,1614005.0,1556.3424,-0.15324178,997.0583,14.081482,52.783615,26.591946,29.381289,26.391945,57.783615
473
+ 471,771475.0,1614005.0,1552.2708,-0.16384293,898.12494,14.081482,27.54062,26.924786,46.76633,26.724785,32.54062
474
+ 472,771575.0,1614005.0,1567.4253,-0.27550152,796.2107,14.081482,23.014154,26.692476,37.897488,26.492476,28.014154
475
+ 473,771675.0,1614005.0,1589.3501,-0.28705284,697.31085,23.014154,33.523903,25.254494,48.796883,25.054493,38.523903
476
+ 474,771775.0,1614005.0,1605.3754,-0.28705284,598.42896,33.523903,88.91318,23.79318,3.111823,23.59318,93.91318
477
+ 475,771875.0,1614005.0,1637.2551,-0.2947517,496.5737,58.67372,96.7164,22.803585,0.0,22.603584,101.7164
478
+ 476,771975.0,1614005.0,1666.7386,-0.32105294,398.095,58.67372,95.54964,22.191528,0.0,21.991528,100.54964
479
+ 477,770075.0,1613905.0,1537.5219,-0.23995633,1144.19,17.279825,46.422443,26.491114,37.798187,26.291113,51.422443
480
+ 478,770175.0,1613905.0,1549.1903,-0.18958624,1196.6755,14.350043,23.967606,27.703102,62.356018,27.503101,28.967606
481
+ 479,770275.0,1613905.0,1551.5942,-0.12880819,1254.731,14.350043,24.554916,28.84887,73.44137,28.648869,29.554916
482
+ 480,770375.0,1613905.0,1550.3208,-0.100011274,1317.4093,12.892852,37.42642,28.280222,49.633427,28.080221,42.42642
483
+ 481,770475.0,1613905.0,1556.6317,-0.100011274,1363.9025,12.366532,23.416718,27.286205,49.951866,27.086205,28.416718
484
+ 482,770575.0,1613905.0,1560.724,-0.049430862,1389.6588,11.703675,12.366532,27.002562,59.49877,26.80256,17.366531
485
+ 483,770675.0,1613905.0,1561.0396,-0.049430862,1405.3951,11.703675,19.56467,27.40623,39.51057,27.20623,24.56467
486
+ 484,770775.0,1613905.0,1564.8944,-0.049430862,1424.3391,11.147929,25.595978,27.308617,37.998917,27.108616,30.595978
487
+ 485,770875.0,1613905.0,1567.372,-0.22860898,1444.9734,15.50567,11.147929,28.030855,64.64623,27.830854,16.14793
488
+ 486,770975.0,1613905.0,1562.6462,-0.22860898,1395.1305,11.147929,61.640873,26.724016,41.94877,26.524015,66.64087
489
+ 487,771075.0,1613905.0,1550.0283,-0.22860898,1301.9456,29.197071,84.384254,25.543346,15.351002,25.343346,89.384254
490
+ 488,771175.0,1613905.0,1566.2448,-0.22265527,1203.312,28.376175,29.197071,27.466234,70.17869,27.266233,34.19707
491
+ 489,771275.0,1613905.0,1566.1713,-0.20411536,1101.7379,28.376175,35.23172,27.818857,60.918133,27.618856,40.23172
492
+ 490,771375.0,1613905.0,1560.1775,-0.20411536,1003.2184,14.081482,52.540916,27.011562,22.085567,26.811562,57.540916
493
+ 491,771475.0,1613905.0,1564.0803,-0.20411536,904.7856,23.014154,14.081482,26.768164,52.251472,26.568163,19.081482
494
+ 492,771575.0,1613905.0,1588.6328,-0.15509579,803.49603,14.081482,56.572056,25.617208,16.00334,25.417208,61.572056
495
+ 493,771675.0,1613905.0,1614.1091,-0.26168004,705.3638,23.014154,58.760014,24.956413,14.65547,24.756413,63.760014
496
+ 494,771775.0,1613905.0,1626.1576,-0.26168004,607.46967,33.523903,68.681244,24.522367,12.294161,24.322367,73.681244
497
+ 495,771875.0,1613905.0,1645.4714,-0.28556207,506.9431,54.04979,58.67372,23.274479,12.061937,23.074478,63.67372
498
+ 496,771975.0,1613905.0,1686.4185,-0.32105294,409.7993,54.04979,96.88774,21.858685,0.0,21.658684,101.88774
499
+ 497,772075.0,1613905.0,1730.1193,-0.29991207,313.35498,74.16229,92.01718,21.552681,0.0,21.35268,97.01718
500
+ 498,770175.0,1613805.0,1543.8209,-0.24993148,1116.114,23.967606,52.27766,26.234186,31.942623,26.034185,57.27766
501
+ 499,770275.0,1613805.0,1547.8217,-0.24993148,1178.0916,23.967606,27.673086,26.937315,59.722286,26.737314,32.673088
502
+ 500,770375.0,1613805.0,1545.5405,-0.22234723,1247.0319,22.505398,56.851135,26.388823,29.664864,26.188822,61.851135
503
+ 501,770475.0,1613805.0,1558.7177,-0.17871886,1318.0671,12.366532,29.161924,27.12511,53.68768,26.92511,34.161926
504
+ 502,770575.0,1613805.0,1559.0757,-0.027972406,1392.1163,12.366532,27.8343,27.66953,55.80985,27.46953,32.834297
505
+ 503,770675.0,1613805.0,1563.071,-0.041229542,1461.9679,12.366532,24.76402,27.392733,60.506268,27.192732,29.76402
506
+ 504,770775.0,1613805.0,1567.1294,-0.0772274,1511.1581,11.147929,30.47309,26.680595,33.74555,26.480595,35.47309
507
+ 505,770875.0,1613805.0,1569.4811,-0.11914693,1504.7639,11.147929,16.690632,27.524351,50.034542,27.32435,21.690632
508
+ 506,770975.0,1613805.0,1567.6771,-0.16926926,1411.0334,11.147929,39.02049,27.64463,51.990086,27.44463,44.02049
509
+ 507,771075.0,1613805.0,1551.8757,-0.13790925,1313.0583,12.917481,84.94608,25.830612,10.979994,25.630611,89.94608
510
+ 508,771175.0,1613805.0,1566.7078,-0.16926926,1215.2478,12.917481,35.559174,27.165825,60.23366,26.965824,40.559174
511
+ 509,771275.0,1613805.0,1575.7954,-0.20411536,1114.6912,12.917481,28.376175,27.517838,55.540306,27.317837,33.376175
512
+ 510,771375.0,1613805.0,1571.9265,-0.25167856,1017.32794,14.081482,60.444443,25.708921,16.91366,25.50892,65.44444
513
+ 511,771475.0,1613805.0,1584.0623,-0.26791552,920.2235,14.081482,29.688807,25.134766,42.169292,24.934765,34.688805
514
+ 512,771575.0,1613805.0,1608.5685,-0.26791552,820.5001,14.081482,36.671795,24.715551,19.63095,24.51555,41.671795
515
+ 513,771675.0,1613805.0,1645.8528,-0.26791552,724.118,36.671795,35.505287,24.44227,19.17757,24.24227,40.505287
516
+ 514,771775.0,1613805.0,1662.3333,-0.1769393,628.3244,35.505287,54.60239,24.415134,23.39726,24.215134,59.60239
517
+ 515,771875.0,1613805.0,1678.0186,-0.28556207,530.6595,35.89808,54.04979,24.065628,17.112562,23.865627,59.04979
518
+ 516,771975.0,1613805.0,1713.3427,-0.32105294,437.61942,35.89808,74.16229,22.739567,1.3088275,22.539566,79.16229
519
+ 517,772075.0,1613805.0,1755.7012,-0.32105294,346.8779,50.315704,95.18979,22.342297,0.0,22.142296,100.18979
520
+ 518,772175.0,1613805.0,1762.4126,-0.32105294,255.37492,50.315704,90.59482,22.703537,0.0,22.503536,95.59482
521
+ 519,770375.0,1613705.0,1551.435,-0.30125022,1178.2046,22.505398,80.70212,25.036715,14.593783,24.836714,85.70212
522
+ 520,770475.0,1613705.0,1557.092,-0.23987396,1253.1438,20.36621,22.505398,27.332573,66.9192,27.132572,27.505398
523
+ 521,770575.0,1613705.0,1554.2063,-0.13195781,1331.206,22.505398,20.36621,28.2931,64.09945,28.0931,25.36621
524
+ 522,770675.0,1613705.0,1564.9939,-0.13195781,1414.3885,20.36621,32.438194,27.29321,57.859474,27.093208,37.438194
525
+ 523,770775.0,1613705.0,1570.5603,-0.13195781,1497.2638,16.690632,32.372475,26.708252,67.24204,26.508251,37.372475
526
+ 524,770875.0,1613705.0,1572.2754,-0.079259455,1521.3292,16.690632,39.150085,27.232897,25.525875,27.032896,44.150085
527
+ 525,770975.0,1613705.0,1569.4025,-0.16926926,1427.8337,16.690632,26.139582,27.88101,31.368954,27.68101,31.139582
528
+ 526,771075.0,1613705.0,1560.7003,-0.16926926,1330.9563,12.917481,59.039124,26.725445,31.36882,26.525444,64.03912
529
+ 527,771175.0,1613705.0,1570.3618,-0.16926926,1234.3188,12.572463,12.917481,27.679409,74.570244,27.479408,17.91748
530
+ 528,771275.0,1613705.0,1581.1903,-0.30504522,1135.0455,12.572463,20.157557,27.226652,55.628128,27.026651,25.157557
531
+ 529,771375.0,1613705.0,1584.9233,-0.30504522,1039.0865,12.572463,70.65713,24.503195,20.68712,24.303194,75.65713
532
+ 530,771475.0,1613705.0,1591.4689,-0.30504522,943.6719,29.688807,59.691296,22.986826,9.149016,22.786825,64.6913
533
+ 531,771575.0,1613705.0,1625.2109,-0.27858302,846.1869,29.688807,86.72058,23.03633,0.93609875,22.836329,91.72058
534
+ 532,771675.0,1613705.0,1656.9955,-0.26791552,752.704,35.505287,74.58714,23.830957,11.169057,23.630957,79.58714
535
+ 533,771775.0,1613705.0,1692.0973,-0.15875788,660.79956,35.505287,56.46423,24.50799,33.150013,24.30799,61.46423
536
+ 534,771875.0,1613705.0,1719.0781,-0.18821505,568.05524,36.99242,35.89808,24.835094,24.758167,24.635094,40.89808
537
+ 535,771975.0,1613705.0,1725.9651,-0.25045207,479.34543,32.163097,57.799713,24.833961,5.914227,24.63396,62.799713
538
+ 536,772075.0,1613705.0,1751.4479,-0.26729214,391.8449,32.163097,50.315704,25.460762,14.28277,25.260761,55.315704
539
+ 537,772175.0,1613705.0,1767.3987,-0.26729214,306.10376,32.163097,53.446754,24.921312,10.512683,24.721312,58.446754
540
+ 538,772275.0,1613705.0,1755.8356,-0.27133417,234.68298,33.396885,80.36524,23.03802,2.586076,22.838018,85.36524
541
+ 539,770475.0,1613605.0,1548.8569,-0.26869658,1191.2919,20.36621,36.049114,27.066647,44.72212,26.866646,41.049114
542
+ 540,770575.0,1613605.0,1548.2863,-0.26869658,1273.058,20.36621,34.903336,27.08998,52.363064,26.889978,39.903336
543
+ 541,770675.0,1613605.0,1568.4866,-0.25395182,1359.8021,20.36621,58.963276,26.115805,28.211824,25.915804,63.963276
544
+ 542,770775.0,1613605.0,1576.568,-0.13195781,1445.9082,20.73034,22.981432,26.515406,66.264366,26.315405,27.981432
545
+ 543,770875.0,1613605.0,1578.3867,-0.0772274,1515.6635,22.981432,20.73034,26.672901,57.75206,26.4729,25.73034
546
+ 544,770975.0,1613605.0,1577.7838,-0.13790925,1450.8104,20.73034,35.216908,26.9779,30.729269,26.777899,40.216908
547
+ 545,771075.0,1613605.0,1569.339,-0.13790925,1355.2363,12.917481,29.557367,27.555872,58.41652,27.355871,34.557365
548
+ 546,771175.0,1613605.0,1576.6674,-0.13790925,1260.1565,12.572463,19.202976,27.394903,67.38032,27.194902,24.202976
549
+ 547,771275.0,1613605.0,1592.2406,-0.30504522,1162.8768,12.917481,12.572463,26.03021,61.80693,25.83021,17.572464
550
+ 548,771375.0,1613605.0,1599.969,-0.27858302,1069.3037,12.572463,81.045135,23.9765,10.206989,23.776499,86.045135
551
+ 549,771475.0,1613605.0,1601.6453,-0.30504522,976.7913,30.874971,79.68948,22.863943,8.023393,22.663942,84.68948
552
+ 550,771575.0,1613605.0,1648.8228,-0.27858302,882.92883,56.72637,75.59768,22.843712,13.929043,22.643711,80.59768
553
+ 551,771675.0,1613605.0,1687.6898,-0.26791552,793.33606,53.815304,58.128117,23.709442,28.501545,23.509441,63.128117
554
+ 552,771775.0,1613605.0,1706.1157,-0.15875788,704.7307,19.934765,63.330257,24.806581,24.523714,24.60658,68.33026
555
+ 553,771875.0,1613605.0,1735.287,-0.15251587,614.3427,19.934765,47.66385,25.166878,22.346056,24.966877,52.66385
556
+ 554,771975.0,1613605.0,1758.208,-0.14977485,529.0054,19.934765,36.99242,25.889494,21.502697,25.689493,41.99242
557
+ 555,772075.0,1613605.0,1774.4479,-0.14977485,448.80377,36.99242,32.163097,26.167852,35.71974,25.967852,37.163097
558
+ 556,772175.0,1613605.0,1780.9983,-0.21762358,375.60556,32.163097,48.393875,25.62901,29.05173,25.429008,53.393875
559
+ 557,772275.0,1613605.0,1773.0425,-0.27133417,319.92368,42.86028,33.396885,24.328453,22.238054,24.128452,38.396885
560
+ 558,772375.0,1613605.0,1737.6038,-0.26431462,288.2599,33.396885,79.80943,22.542953,0.24348065,22.342953,84.80943
561
+ 559,770575.0,1613505.0,1549.2323,-0.32539442,1222.6519,34.903336,92.899185,24.983454,2.1966999,24.783453,97.899185
562
+ 560,770675.0,1613505.0,1572.5289,-0.2812856,1312.2659,22.981432,56.145885,24.939617,34.42136,24.739616,61.145885
563
+ 561,770775.0,1613505.0,1583.165,-0.22919239,1401.2953,20.73034,28.294218,25.605942,65.934265,25.405941,33.29422
564
+ 562,770875.0,1613505.0,1586.9082,-0.22919239,1490.1873,20.73034,41.86914,25.784283,38.719902,25.584282,46.86914
565
+ 563,770975.0,1613505.0,1587.798,-0.22919239,1478.492,20.73034,41.0588,26.73128,29.377327,26.531279,46.0588
566
+ 564,771075.0,1613505.0,1586.8304,-0.08708902,1385.0504,19.202976,30.956806,27.362108,21.994835,27.162107,35.956806
567
+ 565,771175.0,1613505.0,1591.208,-0.050991572,1292.1589,12.572463,79.14854,26.140774,12.319655,25.940773,84.14854
568
+ 566,771275.0,1613505.0,1601.7726,-0.30504522,1197.4814,12.572463,40.961685,25.210941,27.887693,25.01094,45.961685
569
+ 567,771375.0,1613505.0,1612.8252,-0.30504522,1106.8214,12.572463,30.874971,24.757776,51.154385,24.557775,35.87497
570
+ 568,771475.0,1613505.0,1611.5807,-0.30504522,1017.38354,30.874971,78.62369,23.885504,5.926467,23.685503,83.62369
571
+ 569,771575.0,1613505.0,1657.2861,-0.27858302,926.0892,56.72637,66.26448,23.51958,16.549093,23.31958,71.26448
572
+ 570,771675.0,1613505.0,1703.3394,-0.2117971,838.1919,47.069637,56.72637,23.769463,23.942638,23.569462,61.72637
573
+ 571,771775.0,1613505.0,1733.8481,-0.19897345,751.86725,19.934765,53.815304,24.684828,8.62816,24.484827,58.815304
574
+ 572,771875.0,1613505.0,1750.8953,-0.14977485,666.2273,36.99242,19.934765,25.754622,10.776516,25.55462,24.934765
575
+ 573,771975.0,1613505.0,1768.4823,-0.14633988,588.1152,19.934765,40.667076,25.83797,13.802266,25.63797,45.667076
576
+ 574,772075.0,1613505.0,1790.08,-0.14977485,517.06244,29.85446,46.558357,25.346046,40.418797,25.146046,51.558357
577
+ 575,772175.0,1613505.0,1798.3112,-0.14633988,454.84607,29.85446,42.86028,25.774334,25.041962,25.574333,47.86028
578
+ 576,772275.0,1613505.0,1792.2513,-0.27133417,410.04907,29.85446,44.190502,25.273247,13.595545,25.073246,49.190502
579
+ 577,772375.0,1613505.0,1761.2451,-0.27133417,385.82828,33.396885,65.270195,23.763096,0.0,23.563095,70.270195
580
+ 578,772475.0,1613505.0,1728.5444,-0.29260993,386.7647,39.607216,68.865486,22.474329,0.04839542,22.274328,73.865486
581
+ 579,772575.0,1613505.0,1735.0907,-0.2781459,413.2255,69.76765,76.48276,21.810795,0.41559762,21.610794,81.48276
582
+ 580,770675.0,1613405.0,1547.165,-0.2812856,1282.2863,12.643836,80.22454,24.861746,6.6154623,24.661745,85.22454
583
+ 581,770775.0,1613405.0,1562.9135,-0.279548,1362.8218,28.294218,80.68814,24.586008,16.33703,24.386007,85.68814
584
+ 582,770875.0,1613405.0,1580.3851,-0.279548,1455.0728,28.294218,80.03988,24.843954,15.297048,24.643953,85.03988
585
+ 583,770975.0,1613405.0,1594.298,-0.279548,1502.5591,30.956806,38.998745,26.34912,39.43585,26.149118,43.998745
586
+ 584,771075.0,1613405.0,1598.1453,-0.21412951,1421.094,21.87521,39.997555,27.500547,11.356376,27.300547,44.997555
587
+ 585,771175.0,1613405.0,1600.9427,-0.17673743,1330.7135,30.956806,21.87521,26.623774,22.755459,26.423773,26.87521
588
+ 586,771275.0,1613405.0,1614.2468,-0.17673743,1238.7212,21.87521,42.727135,25.569963,28.4388,25.369963,47.727135
589
+ 587,771375.0,1613405.0,1626.7817,-0.22533347,1150.116,30.874971,45.484543,25.161356,33.466576,24.961355,50.484543
590
+ 588,771475.0,1613405.0,1621.7692,-0.18168285,1062.0782,30.874971,74.49165,24.269352,7.7892447,24.069351,79.49165
591
+ 589,771575.0,1613405.0,1649.2924,-0.22533347,972.6266,40.253128,76.79726,23.428679,12.080417,23.228678,81.79726
592
+ 590,771675.0,1613405.0,1695.1624,-0.19814594,888.0701,47.069637,91.674164,23.360703,1.5760505,23.160702,96.674164
593
+ 591,771775.0,1613405.0,1734.2515,-0.19897345,806.7491,19.934765,47.069637,24.584846,1.5658908,24.384846,52.069637
594
+ 592,771875.0,1613405.0,1764.0548,-0.14977485,727.58093,19.934765,43.271336,25.181791,37.72865,24.98179,48.271336
595
+ 593,771975.0,1613405.0,1767.1892,-0.14977485,656.7609,19.934765,44.36142,25.591017,16.39975,25.391016,49.36142
596
+ 594,772075.0,1613405.0,1779.0663,-0.14977485,593.88715,29.85446,32.908016,25.802362,39.101048,25.602362,37.908016
597
+ 595,772175.0,1613405.0,1798.7118,-0.14633988,540.5857,32.908016,29.85446,26.290964,18.125835,26.090963,34.85446
598
+ 596,772275.0,1613405.0,1802.9612,-0.2142723,503.49207,29.85446,58.957355,25.624664,12.003472,25.424664,63.957355
599
+ 597,772375.0,1613405.0,1775.7345,-0.2142723,483.97513,41.83197,39.607216,25.182903,4.3884077,24.982903,44.607216
600
+ 598,772475.0,1613405.0,1746.2361,-0.29260993,484.5105,39.607216,66.30402,23.984388,2.7895577,23.784388,71.30402
601
+ 599,770875.0,1613305.0,1564.45,-0.22919239,1422.7843,31.154783,72.697205,24.41843,7.2226167,24.21843,77.697205
602
+ 600,770975.0,1613305.0,1580.3079,-0.279548,1466.5928,31.154783,67.213036,25.750162,16.645926,25.550161,72.213036
603
+ 601,771075.0,1613305.0,1594.2412,-0.21412951,1452.6105,21.87521,45.712437,26.876814,7.6186285,26.676813,50.712437
604
+ 602,771175.0,1613305.0,1599.317,-0.20358795,1375.4797,21.87521,60.228924,26.016584,2.9006617,25.816584,65.22893
605
+ 603,771275.0,1613305.0,1614.1362,-0.2109104,1284.7809,21.87521,52.25161,25.603138,16.802774,25.403137,57.25161
606
+ 604,771375.0,1613305.0,1631.8387,-0.22533347,1197.7277,38.406193,34.7799,25.213015,40.987637,25.013014,39.7799
607
+ 605,771475.0,1613305.0,1643.8896,-0.22533347,1112.374,34.7799,40.253128,25.099438,28.593693,24.899437,45.253128
608
+ 606,771575.0,1613305.0,1654.3264,-0.22533347,1026.9888,40.253128,78.617035,24.053371,7.187418,23.85337,83.617035
609
+ 607,771675.0,1613305.0,1697.4481,-0.19897345,947.2773,47.069637,96.51735,23.107933,0.0,22.907932,101.51735
610
+ 608,771775.0,1613305.0,1740.8955,-0.19897345,871.493,43.271336,55.629124,24.355879,7.387076,24.155878,60.629124
611
+ 609,771875.0,1613305.0,1780.3993,-0.14395168,798.71747,43.271336,49.85707,24.572554,19.145338,24.372553,54.85707
612
+ 610,771975.0,1613305.0,1798.5801,-0.14633988,734.7164,32.908016,59.49197,24.634933,14.274033,24.434933,64.491974
613
+ 611,772075.0,1613305.0,1796.466,-0.14633988,679.0859,29.85446,48.89503,24.98318,18.062525,24.783178,53.89503
614
+ 612,772175.0,1613305.0,1800.7255,-0.14633988,632.9996,29.85446,38.80107,25.86103,25.986631,25.66103,43.80107
615
+ 613,772275.0,1613305.0,1804.5879,-0.13271083,601.6345,29.85446,56.21834,25.12859,11.351649,24.928589,61.21834
616
+ 614,772375.0,1613305.0,1788.0459,-0.14698893,585.3982,39.607216,41.83197,25.133862,3.8596435,24.93386,46.83197
617
+ 615,772475.0,1613305.0,1771.762,-0.2781459,586.0261,39.607216,44.49139,24.379,3.4280107,24.178999,49.49139
618
+ 616,770675.0,1613205.0,1584.3413,-0.16078584,1206.9191,12.643836,80.2039,25.772806,15.547829,25.572805,85.2039
619
+ 617,770775.0,1613205.0,1584.9022,-0.279548,1290.8203,39.92756,46.31213,26.02314,12.340331,25.82314,51.31213
620
+ 618,770875.0,1613205.0,1568.6477,-0.279548,1350.8618,31.154783,75.09774,25.032421,0.7613094,24.83242,80.09774
621
+ 619,770975.0,1613205.0,1584.1104,-0.279548,1371.8639,32.247524,31.154783,26.263243,49.206367,26.063242,36.154785
622
+ 620,771075.0,1613205.0,1592.9064,-0.21412951,1399.0718,31.154783,32.247524,26.668383,5.587566,26.468382,37.247524
623
+ 621,771175.0,1613205.0,1607.5721,-0.17673743,1402.8989,26.896345,58.90029,25.480677,7.339701,25.280676,63.90029
624
+ 622,771275.0,1613205.0,1618.8939,-0.2109104,1332.9645,26.896345,38.406193,25.808342,14.794764,25.608341,43.406193
625
+ 623,771375.0,1613205.0,1631.4829,-0.21668151,1249.0099,26.896345,55.62299,25.083,28.446499,24.883,60.62299
626
+ 624,771475.0,1613205.0,1649.6594,-0.2109104,1167.3893,34.7799,61.95395,24.861073,18.651173,24.661072,66.95395
627
+ 625,771575.0,1613205.0,1667.5653,-0.21668151,1086.3351,38.03631,70.81955,24.446692,11.461278,24.24669,75.81955
628
+ 626,771675.0,1613205.0,1685.6277,-0.19814594,1011.3114,41.319405,87.276306,23.674322,0.5630427,23.474321,92.276306
629
+ 627,771775.0,1613205.0,1727.7565,-0.19814594,940.65314,48.76318,66.029335,24.387245,1.3788662,24.187244,71.029335
630
+ 628,771875.0,1613205.0,1768.4545,-0.14395168,873.5909,32.485783,48.843857,24.826023,5.4266396,24.626022,53.843857
631
+ 629,771975.0,1613205.0,1806.6377,-0.11372746,815.48096,27.63513,43.70048,25.10787,16.05554,24.90787,48.70048
632
+ 630,772075.0,1613205.0,1826.0642,-0.11372746,765.73206,27.63513,45.404957,24.921103,16.344324,24.721102,50.404957
633
+ 631,772175.0,1613205.0,1812.7806,-0.12269443,725.167,27.63513,39.77797,25.041447,28.32443,24.841446,44.77797
634
+ 632,772275.0,1613205.0,1820.7347,-0.12269443,697.95276,38.80107,48.60506,24.640165,22.916681,24.440165,53.60506
635
+ 633,772375.0,1613205.0,1802.8156,-0.226516,684.00305,41.83197,42.03656,24.834846,16.439243,24.634846,47.03656
636
+ 634,772475.0,1613205.0,1769.2909,-0.2647229,684.13574,41.83197,65.82496,24.279095,0.8267545,24.079094,70.82496
637
+ 635,770675.0,1613105.0,1588.3579,-0.23222324,1184.369,39.92756,59.674496,26.832476,23.461086,26.632475,64.6745
638
+ 636,770775.0,1613105.0,1592.5585,-0.23222324,1236.1531,46.31213,39.92756,26.35855,37.767036,26.158548,44.92756
639
+ 637,770875.0,1613105.0,1591.7164,-0.2094765,1252.013,31.154783,57.37272,25.504116,16.47432,25.304115,62.37272
640
+ 638,770975.0,1613105.0,1588.7566,-0.2094765,1276.1653,31.154783,54.28677,25.780737,12.06944,25.580736,59.28677
641
+ 639,771075.0,1613105.0,1604.72,-0.20358795,1305.8737,28.17217,52.68803,25.654245,9.065349,25.454245,57.68803
642
+ 640,771175.0,1613105.0,1611.4988,-0.20358795,1342.0704,26.896345,46.71147,25.56873,6.8500376,25.368729,51.71147
643
+ 641,771275.0,1613105.0,1623.1527,-0.2109104,1361.9409,28.17217,26.896345,26.13936,40.006756,25.93936,31.896345
644
+ 642,771375.0,1613105.0,1640.623,-0.21668151,1305.6509,26.896345,45.328804,25.65736,32.32204,25.45736,50.328804
645
+ 643,771475.0,1613105.0,1661.5206,-0.21668151,1227.8905,41.319405,38.03631,24.960964,25.826223,24.760963,43.03631
646
+ 644,771575.0,1613105.0,1688.0675,-0.21668151,1151.1053,38.03631,41.319405,24.855452,39.01035,24.65545,46.319405
647
+ 645,771675.0,1613105.0,1706.3843,-0.1802735,1080.5573,30.039175,48.76318,24.734747,12.546039,24.534746,53.76318
648
+ 646,771775.0,1613105.0,1727.1819,-0.16615143,1014.67914,30.039175,59.51919,24.602524,7.792519,24.402523,64.519196
649
+ 647,771875.0,1613105.0,1750.3677,-0.14395168,952.83875,30.039175,56.944027,24.991415,22.941166,24.791414,61.944027
650
+ 648,771975.0,1613105.0,1783.8468,-0.1103541,899.86743,27.63513,32.485783,25.756098,20.632402,25.556097,37.485783
651
+ 649,772075.0,1613105.0,1826.485,-0.14042296,855.0445,32.485783,27.63513,25.760498,31.351023,25.560497,32.63513
652
+ 650,772175.0,1613105.0,1833.7609,-0.14042296,818.9192,27.63513,45.960255,24.969215,24.53031,24.769215,50.960255
653
+ 651,772275.0,1613105.0,1834.6392,-0.14042296,794.9252,29.657131,43.9439,24.657326,16.15164,24.457325,48.9439
654
+ 652,772375.0,1613105.0,1798.7913,-0.226516,782.70703,29.657131,43.58301,24.25615,7.3827696,24.056149,48.58301
655
+ 653,772475.0,1613105.0,1776.3752,-0.24724147,783.25446,42.03656,80.792755,22.862694,3.5916514,22.662693,85.792755
656
+ 654,770575.0,1613005.0,1584.0078,-0.21884675,1071.3086,2.533838,61.75061,26.89802,23.819252,26.698019,66.75061
657
+ 655,770675.0,1613005.0,1591.1696,-0.1922791,1126.8872,36.373604,53.173065,26.232525,21.352804,26.032524,58.173065
658
+ 656,770775.0,1613005.0,1602.097,-0.21884675,1137.0148,39.92756,71.23311,25.266256,15.696545,25.066256,76.23311
659
+ 657,770875.0,1613005.0,1611.4655,-0.1922791,1153.0659,24.14592,73.71539,25.26657,21.1524,25.066568,78.71539
660
+ 658,770975.0,1613005.0,1610.3895,-0.2094765,1178.1401,17.30957,54.140923,25.847359,33.276497,25.647358,59.140923
661
+ 659,771075.0,1613005.0,1605.5144,-0.16948758,1210.2567,17.30957,54.44899,25.942923,29.804777,25.742922,59.44899
662
+ 660,771175.0,1613005.0,1620.0143,-0.17424385,1249.3558,17.30957,28.17217,26.217592,29.371632,26.017591,33.172173
663
+ 661,771275.0,1613005.0,1630.3887,-0.122223884,1296.3481,26.896345,28.662792,26.460949,22.935932,26.260948,33.662792
664
+ 662,771375.0,1613005.0,1655.457,-0.122223884,1332.0923,26.896345,46.676804,25.51891,29.603231,25.318909,51.676804
665
+ 663,771475.0,1613005.0,1686.8164,-0.24523926,1294.3425,37.31002,58.745007,24.745209,31.626526,24.545208,63.745007
666
+ 664,771575.0,1613005.0,1707.9852,-0.24523926,1222.6287,38.03631,68.92523,24.29913,5.894579,24.099129,73.92523
667
+ 665,771675.0,1613005.0,1737.0076,-0.24523926,1156.4066,29.874254,72.74188,24.663221,3.5139604,24.46322,77.74188
668
+ 666,771775.0,1613005.0,1758.8074,-0.14951584,1095.0938,29.874254,30.039175,25.334846,57.2906,25.134846,35.039177
669
+ 667,771875.0,1613005.0,1760.6478,-0.12855968,1038.055,22.604546,41.930935,25.473862,34.935444,25.27386,46.930935
670
+ 668,771975.0,1613005.0,1781.2787,-0.12543462,989.65765,22.604546,54.502003,25.61094,26.842121,25.41094,59.502003
671
+ 669,772075.0,1613005.0,1805.058,-0.14042296,949.08344,22.604546,36.63536,25.67947,17.070765,25.47947,41.63536
672
+ 670,772175.0,1613005.0,1837.0488,-0.12543462,916.67163,15.5841875,35.652126,25.51348,19.94863,25.313478,40.652126
673
+ 671,772275.0,1613005.0,1843.2987,-0.14042296,895.30206,15.5841875,29.657131,25.646421,19.721214,25.44642,34.65713
674
+ 672,772375.0,1613005.0,1809.0088,-0.226516,884.47156,15.5841875,67.895164,24.299425,4.9018655,24.099424,72.895164
675
+ 673,772475.0,1613005.0,1787.979,-0.24724147,884.87585,26.578094,63.67978,22.671377,1.1101683,22.471376,68.67978
676
+ 674,770475.0,1612905.0,1568.6808,-0.23361784,972.99744,0.0,48.240402,26.803349,18.71741,26.603348,53.240402
677
+ 675,770575.0,1612905.0,1589.8745,-0.21884675,1026.189,34.680122,36.373604,27.06931,55.94452,26.869308,41.373604
678
+ 676,770675.0,1612905.0,1598.4672,-0.21884675,1030.4749,36.373604,51.089184,26.294003,33.767456,26.094002,56.089184
679
+ 677,770775.0,1612905.0,1617.6838,-0.21884675,1038.843,27.61197,64.426346,25.599127,29.13668,25.399126,69.426346
680
+ 678,770875.0,1612905.0,1630.8728,-0.2094765,1056.3882,19.59507,43.891697,26.533936,40.612793,26.333935,48.891697
681
+ 679,770975.0,1612905.0,1623.4286,-0.2094765,1083.7031,17.30957,24.14592,27.74809,50.534172,27.54809,29.14592
682
+ 680,771075.0,1612905.0,1617.3235,-0.17424385,1118.5358,19.256372,17.30957,27.76901,62.615593,27.56901,22.30957
683
+ 681,771175.0,1612905.0,1628.6302,-0.17424385,1160.7314,17.30957,26.909985,26.698183,22.914381,26.498182,31.909985
684
+ 682,771275.0,1612905.0,1644.3843,-0.14606415,1211.179,26.909985,30.265972,26.608007,35.769093,26.408007,35.265972
685
+ 683,771375.0,1612905.0,1667.777,-0.11928544,1266.1161,28.662792,37.31002,25.565851,40.368343,25.36585,42.31002
686
+ 684,771475.0,1612905.0,1706.0845,-0.24523926,1315.6118,37.31002,45.16651,24.454453,18.967522,24.254452,50.16651
687
+ 685,771575.0,1612905.0,1741.8368,-0.23654972,1294.6678,41.84489,86.68621,23.207306,0.79412466,23.007305,91.68621
688
+ 686,771675.0,1612905.0,1772.0697,-0.24523926,1233.6453,29.874254,59.787586,24.31241,22.177963,24.11241,64.78758
689
+ 687,771775.0,1612905.0,1775.09,-0.15245338,1176.3611,30.039175,29.874254,25.815943,56.46505,25.615942,34.874252
690
+ 688,771875.0,1612905.0,1775.5327,-0.15245338,1123.4534,22.604546,40.181087,26.287443,45.981544,26.087442,45.181087
691
+ 689,771975.0,1612905.0,1792.979,-0.12543462,1078.8923,23.034447,22.604546,26.80141,42.087463,26.60141,27.604546
692
+ 690,772075.0,1612905.0,1803.8986,-0.14042296,1041.7957,22.604546,39.378468,26.110601,31.374657,25.9106,44.378468
693
+ 691,772175.0,1612905.0,1831.8105,-0.14042296,1012.354,15.5841875,47.051456,25.907415,27.274233,25.707415,52.051456
694
+ 692,772275.0,1612905.0,1842.5504,-0.14042296,993.04425,26.578094,15.5841875,26.490969,43.05657,26.290968,20.584187
695
+ 693,772375.0,1612905.0,1827.2566,-0.22390787,983.28986,15.5841875,26.578094,26.084381,26.89203,25.88438,31.578094
696
+ 694,772475.0,1612905.0,1805.1711,-0.29757237,983.6607,26.578094,53.09551,24.130764,4.8740964,23.930763,58.09551
697
+ 695,770575.0,1612805.0,1594.6868,-0.18485002,933.06696,6.8775516,39.88023,26.695196,29.322742,26.495195,44.88023
698
+ 696,770675.0,1612805.0,1607.543,-0.18586914,931.596,26.9178,40.11066,26.342667,24.391895,26.142666,45.11066
699
+ 697,770775.0,1612805.0,1626.0297,-0.18586914,940.8431,27.61197,51.844616,26.259447,30.030758,26.059446,56.844616
700
+ 698,770875.0,1612805.0,1639.7148,-0.18586914,960.1795,19.59507,27.61197,26.941963,52.024693,26.741962,32.61197
701
+ 699,770975.0,1612805.0,1626.4479,-0.13693894,990.1498,17.30957,19.59507,28.202665,58.006992,28.002665,24.59507
702
+ 700,771075.0,1612805.0,1623.8837,-0.17560747,1028.1534,17.30957,19.256372,28.01129,60.612835,27.811289,24.256372
703
+ 701,771175.0,1612805.0,1637.5186,-0.17560747,1073.905,17.30957,52.92423,26.21761,8.135665,26.017609,57.92423
704
+ 702,771275.0,1612805.0,1666.3972,-0.17560747,1128.239,21.959402,38.39108,25.712816,26.937904,25.512815,43.39108
705
+ 703,771375.0,1612805.0,1684.0656,-0.11190739,1187.0173,21.959402,70.680115,24.776588,5.1237974,24.576588,75.680115
706
+ 704,771475.0,1612805.0,1726.405,-0.24523926,1250.8394,21.959402,75.61728,23.587698,0.70513266,23.387697,80.61728
707
+ 705,771575.0,1612805.0,1769.098,-0.24523926,1313.8053,19.336126,89.748985,22.552038,10.115873,22.352037,94.748985
708
+ 706,771675.0,1612805.0,1801.4696,-0.24523926,1311.2141,19.336126,41.84489,24.496332,50.227837,24.296331,46.84489
709
+ 707,771775.0,1612805.0,1802.8715,-0.13169947,1260.148,19.336126,52.91198,25.87164,42.844265,25.671638,57.91198
710
+ 708,771875.0,1612805.0,1797.9911,-0.15245338,1210.9087,22.604546,35.0686,26.399046,39.56413,26.199045,40.0686
711
+ 709,771975.0,1612805.0,1806.4147,-0.12543462,1169.6873,22.604546,23.034447,26.92315,47.80503,26.723148,28.034447
712
+ 710,772075.0,1612805.0,1818.4111,-0.12543462,1135.5618,22.604546,46.947624,26.290743,18.886583,26.090742,51.947624
713
+ 711,772175.0,1612805.0,1843.1879,-0.15606691,1108.6147,15.5841875,28.555294,25.744379,17.740929,25.544378,33.555294
714
+ 712,772275.0,1612805.0,1843.946,-0.2203345,1091.0115,15.5841875,43.2295,25.872383,30.76888,25.672382,48.2295
715
+ 713,772375.0,1612805.0,1819.6317,-0.2203345,1082.1411,15.5841875,37.672184,26.111021,6.0290794,25.91102,42.672184
716
+ 714,770675.0,1612705.0,1612.2864,-0.18234774,829.7512,13.266805,34.793064,26.615273,48.8469,26.415272,39.793064
717
+ 715,770775.0,1612705.0,1631.1241,-0.18234774,840.12,27.61197,28.98533,26.47549,43.264725,26.27549,33.98533
718
+ 716,770875.0,1612705.0,1642.2588,-0.18234774,861.7202,18.115255,44.873154,26.211164,31.337322,26.011164,49.873154
719
+ 717,770975.0,1612705.0,1632.8085,-0.110114776,894.9936,18.115255,38.9242,27.041029,39.067204,26.841028,43.9242
720
+ 718,771075.0,1612705.0,1637.7573,-0.17560747,936.8642,18.115255,38.637245,26.476786,21.099844,26.276785,43.637245
721
+ 719,771175.0,1612705.0,1650.6559,-0.16270553,986.859,19.256372,50.14386,25.463036,15.417439,25.263035,55.14386
722
+ 720,771275.0,1612705.0,1677.7301,-0.17560747,1045.7255,17.739416,38.08452,25.432661,35.450603,25.23266,43.08452
723
+ 721,771375.0,1612705.0,1699.0504,-0.11928544,1108.8844,17.739416,21.959402,24.83202,39.412884,24.632019,26.959402
724
+ 722,771475.0,1612705.0,1730.5293,-0.23654972,1176.9529,17.739416,69.183426,23.380892,17.487352,23.180891,74.183426
725
+ 723,771575.0,1612705.0,1785.1116,-0.23654972,1251.4274,19.336126,88.88398,23.011139,3.1119587,22.811138,93.88398
726
+ 724,771675.0,1612705.0,1825.6941,-0.23654972,1323.8219,33.708935,19.336126,24.472412,26.376753,24.272411,24.336126
727
+ 725,771775.0,1612705.0,1825.624,-0.15245338,1342.8394,19.336126,33.708935,25.340809,38.720814,25.140808,38.708935
728
+ 726,771875.0,1612705.0,1811.7316,-0.2052822,1302.75,23.034447,42.220917,25.602837,34.20251,25.402836,47.220917
729
+ 727,771975.0,1612705.0,1824.5731,-0.2052822,1264.527,23.034447,49.808422,25.42439,43.494873,25.22439,54.808422
730
+ 728,772075.0,1612705.0,1842.8328,-0.21985278,1233.0287,23.034447,63.083332,24.99115,18.242607,24.79115,68.08333
731
+ 729,772175.0,1612705.0,1853.8988,-0.26193947,1208.2573,28.555294,54.02325,24.697123,28.868746,24.497122,59.02325
732
+ 730,772275.0,1612705.0,1839.361,-0.28190994,1192.1266,28.555294,82.61972,23.783314,10.196834,23.583313,87.61972
733
+ 731,772375.0,1612705.0,1817.9103,-0.28190994,1184.014,37.672184,86.46527,23.407063,1.6034969,23.207062,91.46527
734
+ 732,770675.0,1612605.0,1611.0842,-0.04113121,730.9435,8.917777,30.33645,25.759771,57.154823,25.55977,35.33645
735
+ 733,770775.0,1612605.0,1639.1075,-0.09022074,742.6942,8.917777,37.350967,25.600363,34.32867,25.400362,42.350967
736
+ 734,770875.0,1612605.0,1650.3688,-0.09022074,767.0465,8.727378,40.0841,26.072544,29.809364,25.872543,45.0841
737
+ 735,770975.0,1612605.0,1646.8951,-0.110114776,804.24963,8.727378,18.115255,27.184586,31.18012,26.984585,23.115255
738
+ 736,771075.0,1612605.0,1654.8066,-0.17560747,850.60077,8.727378,37.861042,26.774696,42.951275,26.574696,42.861042
739
+ 737,771175.0,1612605.0,1668.4594,-0.17560747,905.3776,28.027027,47.86132,26.121143,23.06026,25.921143,52.86132
740
+ 738,771275.0,1612605.0,1686.6829,-0.17560747,969.209,17.739416,35.64798,25.843327,36.911015,25.643326,40.64798
741
+ 739,771375.0,1612605.0,1706.3518,-0.15174952,1037.0387,21.959402,17.739416,24.740932,74.73856,24.540932,22.739416
742
+ 740,771475.0,1612605.0,1736.3708,-0.15174952,1109.5283,17.739416,75.5235,23.83345,29.66118,23.63345,80.5235
743
+ 741,771575.0,1612605.0,1778.9468,-0.15972355,1188.2382,19.336126,59.055122,23.886122,21.962914,23.686121,64.05512
744
+ 742,771675.0,1612605.0,1813.6458,-0.17284931,1267.8239,19.336126,59.396393,23.927555,9.942329,23.727554,64.39639
745
+ 743,771775.0,1612605.0,1843.667,-0.17284931,1348.229,19.336126,45.24075,23.849308,31.537764,23.649307,50.24075
746
+ 744,771875.0,1612605.0,1846.2227,-0.2052822,1385.0779,33.708935,76.54645,23.792194,21.924717,23.592194,81.54645
747
+ 745,771975.0,1612605.0,1862.8876,-0.253725,1357.5743,42.220917,86.68464,23.444607,4.4496045,23.244606,91.68464
748
+ 746,772075.0,1612605.0,1867.4463,-0.253725,1328.2826,49.370224,59.343433,23.73402,20.59961,23.53402,64.34343
749
+ 747,772175.0,1612605.0,1852.229,-0.26193947,1305.3188,54.02325,86.68151,23.069872,1.4508694,22.869871,91.68151
750
+ 748,772275.0,1612605.0,1837.4412,-0.28190994,1289.8827,38.740967,92.96894,22.841711,0.5660216,22.64171,97.96894
751
+ 749,770775.0,1612505.0,1632.8936,-0.036447186,645.7427,8.917777,24.468435,24.777235,34.549156,24.577234,29.468435
752
+ 750,770875.0,1612505.0,1658.8167,-0.036447186,673.606,8.727378,15.739268,25.994045,50.807026,25.794044,20.73927
753
+ 751,770975.0,1612505.0,1661.851,-0.110114776,715.67725,15.739268,8.727378,26.73061,65.466415,26.53061,13.727378
754
+ 752,771075.0,1612505.0,1658.808,-0.16270553,767.3892,8.727378,39.6457,26.555262,39.257797,26.35526,44.6457
755
+ 753,771175.0,1612505.0,1674.2339,-0.16522303,827.6901,28.027027,43.740414,26.026659,21.991632,25.826658,48.740414
756
+ 754,771275.0,1612505.0,1686.571,-0.18567553,897.0626,17.739416,28.027027,24.910528,22.78483,24.710527,33.027027
757
+ 755,771375.0,1612505.0,1707.5673,-0.19353025,969.94495,17.739416,33.800114,24.027199,55.483505,23.827198,38.800114
758
+ 756,771475.0,1612505.0,1743.3303,-0.19353025,1047.0902,17.739416,52.978374,24.85834,28.58246,24.658339,57.978374
759
+ 757,771575.0,1612505.0,1769.0411,-0.19353025,1130.1552,52.978374,43.044056,24.819517,34.05218,24.619516,48.044056
760
+ 758,771675.0,1612505.0,1806.7401,-0.17284931,1213.5522,43.044056,76.88263,23.66279,11.927409,23.46279,81.88263
761
+ 759,771775.0,1612505.0,1850.3284,-0.15972355,1299.1249,45.24075,73.822914,23.407742,13.619935,23.20774,78.822914
762
+ 760,771875.0,1612505.0,1881.7797,-0.2052822,1388.0149,45.24075,58.442104,23.932457,32.013264,23.732456,63.442104
763
+ 761,771975.0,1612505.0,1891.9833,-0.253725,1439.3003,57.910732,49.370224,24.56699,32.156555,24.36699,54.370224
764
+ 762,772075.0,1612505.0,1870.936,-0.24237241,1424.0425,49.370224,90.88437,23.683912,2.405988,23.483912,95.88437
765
+ 763,770675.0,1612405.0,1623.1204,-0.07572774,530.2804,8.917777,30.820896,25.635284,40.650417,25.435284,35.820896
766
+ 764,770775.0,1612405.0,1618.8369,-0.07572774,546.6256,8.917777,12.522245,25.652048,41.163593,25.452047,17.522245
767
+ 765,770875.0,1612405.0,1641.5093,-0.07572774,579.2791,8.727378,21.913897,26.543262,43.97286,26.343262,26.913897
768
+ 766,770975.0,1612405.0,1664.2556,-0.07318152,627.7046,8.727378,30.322317,27.108696,12.720808,26.908695,35.32232
769
+ 767,771075.0,1612405.0,1671.967,-0.1246758,686.07587,8.727378,34.919582,27.020567,22.191614,26.820566,39.919582
770
+ 768,771175.0,1612405.0,1673.8463,-0.16522303,752.92224,28.027027,42.99381,26.246273,30.98935,26.046272,47.99381
771
+ 769,771275.0,1612405.0,1697.8197,-0.18567553,828.5785,28.027027,78.21646,24.036648,6.6209607,23.836647,83.21646
772
+ 770,771375.0,1612405.0,1724.3247,-0.19353025,906.97687,28.027027,74.41731,23.887587,19.529911,23.687586,79.41731
773
+ 771,771475.0,1612405.0,1737.4098,-0.18567553,989.049,33.800114,60.430702,24.941217,21.144768,24.741217,65.4307
774
+ 772,771575.0,1612405.0,1757.4869,-0.19353025,1076.6006,37.148293,55.828735,24.776587,34.76313,24.576586,60.828735
775
+ 773,771675.0,1612405.0,1801.2632,-0.17284931,1163.8239,37.148293,79.139175,23.847242,12.35445,23.647242,84.139175
776
+ 774,770675.0,1612305.0,1637.8423,-0.11127549,432.06464,12.019888,19.387812,26.432718,60.51429,26.232718,24.387812
777
+ 775,770775.0,1612305.0,1636.8253,-0.121074244,451.65875,12.522245,34.156208,26.760164,45.142467,26.560163,39.156208
778
+ 776,770875.0,1612305.0,1631.0024,-0.121074244,490.6868,8.130452,18.388897,27.020926,34.47155,26.820925,23.388897
779
+ 777,770975.0,1612305.0,1659.8693,-0.121074244,547.02106,8.130452,50.920353,26.731533,22.366371,26.531532,55.920353
780
+ 778,771075.0,1612305.0,1681.2701,-0.061800357,613.1241,8.130452,39.677986,26.774296,46.074642,26.574295,44.677986
781
+ 779,771175.0,1612305.0,1691.3536,-0.16522303,687.11664,34.919582,48.29947,26.768875,41.527615,26.568874,53.29947
782
+ 780,771275.0,1612305.0,1704.4441,-0.18567553,769.2767,37.735413,56.532906,25.309895,31.008238,25.109894,61.532906
783
+ 781,771375.0,1612305.0,1723.3978,-0.19353025,853.13995,43.37217,37.735413,25.264664,49.058006,25.064663,42.735413
784
+ 782,771475.0,1612305.0,1735.2703,-0.19353025,939.91174,8.711159,48.294804,25.579906,33.101048,25.379906,53.294804
785
+ 783,771575.0,1612305.0,1760.9679,-0.19353025,1031.5834,8.711159,37.148293,25.679777,48.61245,25.479776,42.148293
786
+ 784,771675.0,1612305.0,1785.8462,-0.12898281,1121.9319,8.711159,43.077343,25.21628,21.841509,25.01628,48.077343
787
+ 785,770775.0,1612205.0,1647.8208,-0.22861019,358.89792,14.869538,30.353052,26.214941,53.14931,26.01494,35.35305
788
+ 786,770875.0,1612205.0,1640.2092,-0.22861019,406.87183,8.130452,39.308872,27.36836,35.38975,27.16836,44.308872
789
+ 787,770975.0,1612205.0,1640.5826,-0.121074244,473.2751,14.869538,8.130452,27.813894,36.877033,27.613894,13.130452
790
+ 788,771075.0,1612205.0,1657.7671,-0.09351101,548.3235,8.130452,36.85621,26.391085,8.703888,26.191084,41.85621
791
+ 789,771175.0,1612205.0,1677.6816,-0.16359496,629.9752,36.85621,67.43755,25.45901,4.8896365,25.259008,72.43755
792
+ 790,771275.0,1612205.0,1699.4117,-0.16488303,718.6708,37.735413,43.37217,25.187338,32.770935,24.987337,48.37217
793
+ 791,771375.0,1612205.0,1723.1926,-0.16359496,807.7219,30.336775,61.26614,25.108488,18.325214,24.908487,66.26614
794
+ 792,771475.0,1612205.0,1741.7623,-0.16488303,898.8059,8.711159,55.47341,25.541586,36.43483,25.341585,60.47341
795
+ 793,770775.0,1612105.0,1641.2164,-0.21328083,268.16397,14.869538,62.915703,24.965706,18.587212,24.765705,67.9157
796
+ 794,770875.0,1612105.0,1656.9685,-0.22861019,329.50204,8.130452,14.869538,27.442688,63.676052,27.242687,19.869537
797
+ 795,770975.0,1612105.0,1649.9045,-0.121074244,408.674,8.130452,33.497,27.57991,36.51733,27.37991,38.497
798
+ 796,771075.0,1612105.0,1654.4086,-0.1202175,493.5929,8.130452,49.436,25.941355,20.306973,25.741354,54.436
799
+ 797,771175.0,1612105.0,1683.123,-0.17940019,582.8643,36.85621,48.10374,24.493748,39.192,24.293747,53.10374
800
+ 798,771275.0,1612105.0,1702.0802,-0.17940019,677.6333,35.13414,57.61442,24.005981,32.52951,23.80598,62.61442
801
+ 799,771375.0,1612105.0,1719.4661,-0.17940019,771.383,30.336775,45.643864,24.84955,33.17641,24.64955,50.643864
802
+ 800,770775.0,1612005.0,1655.893,-0.22861019,190.83012,14.869538,35.67877,24.677708,48.703796,24.477707,40.67877
803
+ 801,770875.0,1612005.0,1670.6079,-0.22861019,270.52295,14.869538,18.924625,27.317747,65.429535,27.117746,23.924625
804
+ 802,770975.0,1612005.0,1673.4102,-0.09494922,362.6473,14.869538,18.762611,27.225088,61.707638,27.025087,23.762611
805
+ 803,771075.0,1612005.0,1663.1807,-0.1202175,456.03976,17.648123,41.57431,25.769087,37.259434,25.569086,46.57431
806
+ 804,771175.0,1612005.0,1670.7172,-0.17940019,551.36786,17.648123,63.895725,24.312275,5.665251,24.112274,68.89572
807
+ 805,771275.0,1612005.0,1690.1538,-0.14672543,650.7364,9.057833,78.836,24.132706,3.8553596,23.932705,83.836
808
+ 806,771375.0,1612005.0,1709.789,-0.17940019,746.99506,0.0,35.13414,25.293283,14.2246685,25.093283,40.13414
809
+ 807,770875.0,1611905.0,1677.0642,-0.28207812,238.74937,18.762611,29.044092,25.490284,49.50303,25.290283,34.04409
810
+ 808,770975.0,1611905.0,1686.6205,-0.28207812,339.48224,17.648123,33.61526,26.1071,52.146244,25.907099,38.61526
811
+ 809,771075.0,1611905.0,1689.42,-0.15639415,437.8185,18.288519,17.648123,25.845085,59.736042,25.645084,22.648123
812
+ 810,771175.0,1611905.0,1678.5448,-0.17940019,536.39703,17.648123,47.745,25.18742,29.123451,24.98742,52.745
813
+ 811,771275.0,1611905.0,1680.4208,-0.17940019,637.8089,9.057833,27.423357,25.519049,49.48811,25.319048,32.423355
814
+ 812,770875.0,1611805.0,1671.2009,-0.2384752,237.39601,29.044092,70.39674,23.319963,20.380894,23.119963,75.39674
815
+ 813,770975.0,1611805.0,1691.3622,-0.28207812,332.32727,17.648123,51.8727,24.513714,27.329258,24.313713,56.8727
816
+ 814,771075.0,1611805.0,1703.1023,-0.16332756,425.99405,17.648123,29.624422,25.322527,47.629005,25.122526,34.62442
817
+ 815,771175.0,1611805.0,1707.7632,-0.16332756,520.32654,17.648123,18.288519,25.701216,57.01917,25.501215,23.288519
818
+ 816,771275.0,1611805.0,1713.5283,-0.16332756,618.16895,9.057833,50.792027,26.07312,37.017242,25.87312,55.792027
819
+ 817,771375.0,1611805.0,1700.6635,-0.14677887,712.0385,0.0,15.721477,26.50689,29.543499,26.306889,20.721478
820
+ 818,770875.0,1611705.0,1661.7057,-0.28207812,206.0206,41.836025,66.34683,23.274021,4.470034,23.07402,71.34683
821
+ 819,770975.0,1611705.0,1695.5746,-0.28207812,303.9687,29.624422,48.99006,23.74822,21.832779,23.54822,53.99006
822
+ 820,771075.0,1611705.0,1711.6451,-0.22984323,400.87222,18.288519,44.117805,24.455662,27.814533,24.255661,49.117805
823
+ 821,771175.0,1611705.0,1720.0361,-0.21445698,498.5116,18.288519,46.8178,24.938004,32.1568,24.738003,51.8178
824
+ 822,771275.0,1611705.0,1728.9174,-0.21445698,599.1313,15.721477,49.65334,25.520899,39.734398,25.320898,54.65334
825
+ 823,771375.0,1611705.0,1717.9619,-0.1828951,671.70374,0.112393714,56.542053,24.826067,10.640049,24.626066,61.542053
826
+ 824,770875.0,1611605.0,1658.7765,-0.24627824,192.39798,41.836025,84.23149,23.293314,1.2151893,23.093313,89.23149
827
+ 825,770975.0,1611605.0,1690.4481,-0.24627824,293.82852,44.117805,76.76636,22.867523,9.395748,22.667522,81.76636
828
+ 826,771075.0,1611605.0,1703.0393,-0.24627824,392.5331,44.117805,68.10179,23.469057,21.340757,23.269056,73.10179
829
+ 827,771175.0,1611605.0,1716.128,-0.2072799,490.3631,44.117805,69.29123,23.870537,14.56204,23.670536,74.29123
830
+ 828,771275.0,1611605.0,1729.3699,-0.21445698,562.1751,46.8178,57.621693,24.522945,27.952362,24.322945,62.621693
831
+ 829,771375.0,1611605.0,1739.8563,-0.19324161,584.13806,49.65334,51.585686,23.834076,22.25777,23.634075,56.585686
832
+ 830,771475.0,1611605.0,1730.7845,-0.19324161,584.6114,2.572982,66.97527,24.469273,6.2916126,24.269272,71.97527
833
+ 831,770875.0,1611505.0,1661.0,-0.2548707,198.61792,46.42404,89.07189,22.8041,2.122803,22.6041,94.07189
834
+ 832,770975.0,1611505.0,1698.3215,-0.2548707,292.78253,43.045284,78.43153,22.995247,11.134582,22.795246,83.43153
835
+ 833,771075.0,1611505.0,1710.831,-0.24627824,386.56702,42.001907,46.965683,23.560211,32.703175,23.36021,51.965683
836
+ 834,771175.0,1611505.0,1715.1976,-0.21445698,446.49902,42.001907,66.284874,23.799372,19.83408,23.599371,71.284874
837
+ 835,771275.0,1611505.0,1728.2612,-0.21445698,470.01413,42.001907,51.857224,24.159561,26.15422,23.95956,56.857224
838
+ 836,771375.0,1611505.0,1746.8975,-0.19202262,483.59192,31.803818,66.06192,23.580296,20.642414,23.380295,71.06192
839
+ 837,771475.0,1611505.0,1751.7931,-0.19324161,483.0955,5.520231,65.16846,24.56215,30.515163,24.362148,70.16846
840
+ 838,770875.0,1611405.0,1681.6921,-0.28259385,168.40968,59.099014,78.700195,22.72803,0.0,22.528028,83.700195
841
+ 839,770975.0,1611405.0,1697.2565,-0.28259385,267.29712,43.045284,73.56203,23.770758,3.3050418,23.570757,78.56203
842
+ 840,771075.0,1611405.0,1703.1451,-0.28259385,340.77444,42.001907,43.045284,24.024794,22.043829,23.824793,48.045284
843
+ 841,771175.0,1611405.0,1717.6403,-0.28093743,351.9166,43.045284,42.001907,23.68316,22.98193,23.48316,47.001907
844
+ 842,771275.0,1611405.0,1728.4,-0.27754286,375.98105,42.001907,58.25778,23.929361,23.66931,23.72936,63.25778
845
+ 843,771375.0,1611405.0,1737.8324,-0.27754286,385.50192,31.803818,69.66092,23.19446,11.37738,22.99446,74.66092
846
+ 844,771475.0,1611405.0,1756.8574,-0.27754286,384.81088,26.613096,31.803818,24.268606,19.368586,24.068605,36.803818
847
+ 845,771575.0,1611405.0,1764.1823,-0.21169965,408.4762,4.419868,26.613096,25.91793,24.922335,25.71793,31.613096
848
+ 846,770975.0,1611305.0,1691.2654,-0.33502614,250.97374,43.045284,82.80987,22.449032,0.23643038,22.249031,87.80987
849
+ 847,771075.0,1611305.0,1714.1965,-0.33502614,257.8286,42.001907,79.13911,22.479284,1.8635833,22.279284,84.13911
850
+ 848,771175.0,1611305.0,1722.4036,-0.33502614,254.32188,42.001907,81.84514,22.899603,7.593835,22.699602,86.84514
851
+ 849,771275.0,1611305.0,1741.4459,-0.30746388,282.1558,42.001907,46.37641,23.23096,36.527367,23.03096,51.37641
852
+ 850,771375.0,1611305.0,1750.2012,-0.26124257,287.0296,31.803818,77.44484,22.469013,14.313319,22.269012,82.44484
853
+ 851,771475.0,1611305.0,1762.7478,-0.34382293,287.01657,26.613096,75.30819,23.204718,35.300808,23.004717,80.30819
854
+ 852,771575.0,1611305.0,1765.0923,-0.34382293,318.19757,4.419868,56.699768,24.366966,7.4003625,24.166965,61.699768
855
+ 853,771075.0,1611205.0,1699.0282,-0.31051207,161.72723,73.830826,81.04482,21.44403,0.0,21.24403,86.04482
856
+ 854,771175.0,1611205.0,1727.3992,-0.33502614,155.32387,46.37641,82.80215,21.792904,0.09674406,21.592903,87.80215
857
+ 855,771275.0,1611205.0,1750.5463,-0.30746388,184.18867,46.37641,79.594925,22.169176,6.8792524,21.969175,84.594925
858
+ 856,771375.0,1611205.0,1760.4349,-0.2895548,185.57526,46.37641,72.87053,22.303972,18.156809,22.103971,77.87053
859
+ 857,771475.0,1611205.0,1757.1205,-0.3803203,187.6203,56.699768,68.394104,22.721518,8.077651,22.521517,73.394104
860
+ 858,771175.0,1611105.0,1704.2681,-0.33502614,61.440754,73.830826,77.49587,21.29333,0.0,21.093328,82.49587
861
+ 859,771275.0,1611105.0,1741.4574,-0.30746388,87.40086,72.87053,85.98359,21.42336,4.0441613,21.22336,90.98359
862
+ 860,771375.0,1611105.0,1745.5847,-0.3528129,87.12416,68.394104,77.44138,22.029972,8.549371,21.829971,82.44138
863
+ 861,771275.0,1611005.0,1702.8171,-0.30237234,24.61315,77.45942,88.695526,21.489748,0.0,21.289747,93.695526
864
+ 862,771375.0,1611005.0,1708.7102,-0.3528129,22.95904,69.29869,85.63824,21.570053,0.0,21.370052,90.63824
plot_utils.py CHANGED
@@ -53,13 +53,15 @@ def show_two_plots(gdf, name1, name2, vmin, vmax, colorscheme, title1, title2, l
53
  markerfacecolor=above_colors['100'], markersize=8)
54
 
55
  axes[0].legend(handles=[orange_patch, red_patch])
56
- axes[0].set_title(title1)
 
57
  axes[0].set_axis_off()
58
-
 
59
 
60
  # Second plot (original)
61
  gdf.plot(column=name2, cmap=cmap, norm=norm, ax=axes[1],marker='s', markersize=10)
62
- axes[1].set_title(title2)
63
  axes[1].set_axis_off()
64
 
65
 
@@ -84,7 +86,7 @@ def show_one_plot(gdf, name, vmin, vmax, colorscheme, title, label):
84
 
85
 
86
  gdf.plot(column=name, cmap=cmap, norm=norm, ax=axes[0], marker='s', markersize=10)
87
- axes[0].set_title(title)
88
  axes[0].set_axis_off()
89
 
90
  # Add a colorbar
 
53
  markerfacecolor=above_colors['100'], markersize=8)
54
 
55
  axes[0].legend(handles=[orange_patch, red_patch])
56
+ # axes[0].set_title(title1)
57
+ axes[0].set_title(title1, pad=-30)
58
  axes[0].set_axis_off()
59
+
60
+
61
 
62
  # Second plot (original)
63
  gdf.plot(column=name2, cmap=cmap, norm=norm, ax=axes[1],marker='s', markersize=10)
64
+ axes[1].set_title(title2, pad=-30)
65
  axes[1].set_axis_off()
66
 
67
 
 
86
 
87
 
88
  gdf.plot(column=name, cmap=cmap, norm=norm, ax=axes[0], marker='s', markersize=10)
89
+ axes[0].set_title(title, pad=-30)
90
  axes[0].set_axis_off()
91
 
92
  # Add a colorbar
training_dataframe.csv DELETED
@@ -1,905 +0,0 @@
1
- index,row,column,x,y,Elevacion,Neighbor_NDBI,Proximidad_agua,Neighbor_%CoberturaVeg,%CoberturaVeg,LST
2
- 001-011,-1,11,769975.0,1617705.0,1462.42,-0.18,234.21,8.07,39.79,26.47
3
- 001-012,-1,12,770075.0,1617705.0,1460.52,-0.17,132.41,8.07,66.87,25.81
4
- 002-009,-2,9,769775.0,1617605.0,1432.93,-0.21,337.65,47.63,83.07,24.59
5
- 002-010,-2,10,769875.0,1617605.0,1458.52,-0.21,288.93,38.65,91.83,25.19
6
- 002-011,-2,11,769975.0,1617605.0,1477.37,-0.21,219.62,38.65,59.28,25.44
7
- 002-012,-2,12,770075.0,1617605.0,1455.41,-0.21,129.07,38.65,40.68,25.12
8
- 003-008,-3,8,769675.0,1617505.0,1438.17,-0.24,333.41,25.98,90.66,24.28
9
- 003-009,-3,9,769775.0,1617505.0,1467.39,-0.21,269.63,25.98,74.5,25.49
10
- 003-010,-3,10,769875.0,1617505.0,1481.73,-0.21,208.99,25.98,47.63,26.69
11
- 003-011,-3,11,769975.0,1617505.0,1472.59,-0.26,148.56,27.46,38.65,25.86
12
- 003-012,-3,12,770075.0,1617505.0,1432.38,-0.26,86.73,38.65,72.46,24.45
13
- 004-006,-4,6,769475.0,1617405.0,1432.73,-0.24,419.78,39.36,92.47,24.31
14
- 004-007,-4,7,769575.0,1617405.0,1445.24,-0.24,349.77,27.22,81.96,24.35
15
- 004-008,-4,8,769675.0,1617405.0,1473.53,-0.24,270.35,25.98,67.13,25.7
16
- 004-009,-4,9,769775.0,1617405.0,1484.71,-0.21,195.18,27.22,25.98,27.88
17
- 004-010,-4,10,769875.0,1617405.0,1481.58,-0.27,130.69,25.98,27.46,27.82
18
- 004-011,-4,11,769975.0,1617405.0,1449.39,-0.27,70.2,27.46,64.78,25.44
19
- 005-005,-5,5,769375.0,1617305.0,1445.18,-0.23,483.28,16.27,90.41,24.74
20
- 005-006,-5,6,769475.0,1617305.0,1468.29,-0.24,393.26,15.76,84.07,25.29
21
- 005-007,-5,7,769575.0,1617305.0,1478.15,-0.24,302.02,15.76,61.16,26.4
22
- 005-008,-5,8,769675.0,1617305.0,1486.73,-0.24,213.92,15.76,27.22,28.07
23
- 005-009,-5,9,769775.0,1617305.0,1482.6,-0.26,129.16,17.47,35.18,28.21
24
- 005-010,-5,10,769875.0,1617305.0,1453.86,-0.27,56.11,25.98,75.81,26.26
25
- 006-004,-6,4,769275.0,1617205.0,1443.6,-0.2,565.09,59.8,70.96,24.72
26
- 006-005,-6,5,769375.0,1617205.0,1474.39,-0.2,467.49,16.27,64.46,25.44
27
- 006-006,-6,6,769475.0,1617205.0,1487.53,-0.2,366.72,15.76,16.27,27.79
28
- 006-007,-6,7,769575.0,1617205.0,1487.38,-0.16,269.57,16.27,15.76,28.88
29
- 006-008,-6,8,769675.0,1617205.0,1487.78,-0.2,173.82,15.76,17.47,28.6
30
- 006-009,-6,9,769775.0,1617205.0,1464.17,-0.29,77.84,17.47,72.3,26.8
31
- 007-003,-7,3,769175.0,1617105.0,1453.82,-0.3,655.47,22.44,78.26,25.1
32
- 007-004,-7,4,769275.0,1617105.0,1474.23,-0.18,556.7,22.44,78.56,25.15
33
- 007-005,-7,5,769375.0,1617105.0,1472.88,-0.16,457.95,16.27,80.23,25.93
34
- 007-006,-7,6,769475.0,1617105.0,1488.37,-0.18,356.23,15.76,23.22,28.13
35
- 007-007,-7,7,769575.0,1617105.0,1489.12,-0.09,257.52,15.76,21.28,29.12
36
- 007-008,-7,8,769675.0,1617105.0,1484.6,-0.27,158.87,15.76,33.26,27.83
37
- 007-009,-7,9,769775.0,1617105.0,1447.02,-0.29,57.78,17.47,52.47,25.72
38
- 008-002,-8,2,769075.0,1617005.0,1446.4,-0.26,746.35,18.15,76.76,24.38
39
- 008-003,-8,3,769175.0,1617005.0,1478.74,-0.3,649.84,14.12,53.75,26.16
40
- 008-004,-8,4,769275.0,1617005.0,1489.64,-0.18,550.99,14.12,22.44,27.58
41
- 008-005,-8,5,769375.0,1617005.0,1481.29,-0.18,452.13,14.12,65.87,27.17
42
- 008-006,-8,6,769475.0,1617005.0,1487.19,-0.18,350.29,16.03,19.93,28.47
43
- 008-007,-8,7,769575.0,1617005.0,1489.63,-0.15,251.44,16.03,20.17,29.42
44
- 008-008,-8,8,769675.0,1617005.0,1482.82,-0.28,152.63,18.79,34.95,27.57
45
- 008-009,-8,9,769775.0,1617005.0,1444.46,-0.3,51.86,33.26,77.14,25.21
46
- 009-002,-9,2,769075.0,1616905.0,1471.17,-0.3,746.12,11.68,64.08,25.32
47
- 009-003,-9,3,769175.0,1616905.0,1490.82,-0.3,644.39,8.52,18.15,28.6
48
- 009-004,-9,4,769275.0,1616905.0,1489.24,-0.15,545.54,8.52,14.12,29.68
49
- 009-005,-9,5,769375.0,1616905.0,1488.04,-0.15,446.69,8.52,30.83,28.89
50
- 009-006,-9,6,769475.0,1616905.0,1487.69,-0.15,344.84,9.2,16.03,29.25
51
- 009-007,-9,7,769575.0,1616905.0,1486.63,-0.15,246.0,9.2,18.79,29.32
52
- 009-008,-9,8,769675.0,1616905.0,1470.52,-0.32,147.18,9.2,77.44,26.57
53
- 009-009,-9,9,769775.0,1616905.0,1441.6,-0.32,51.29,34.95,86.24,24.36
54
- 010-001,-10,1,768975.0,1616805.0,1472.84,-0.32,839.73,19.59,77.62,24.6
55
- 010-002,-10,2,769075.0,1616805.0,1487.52,-0.28,740.95,11.68,19.59,27.18
56
- 010-004,-10,4,769275.0,1616805.0,1488.67,-0.01,540.24,5.52,8.52,30.48
57
- 010-005,-10,5,769375.0,1616805.0,1490.0,-0.01,441.39,5.33,23.82,29.94
58
- 010-006,-10,6,769475.0,1616805.0,1489.23,-0.01,339.55,5.33,12.55,29.74
59
- 010-007,-10,7,769575.0,1616805.0,1488.51,-0.15,240.71,5.33,9.2,29.6
60
- 010-008,-10,8,769675.0,1616805.0,1473.51,-0.32,141.89,9.2,49.22,27.03
61
- 010-009,-10,9,769775.0,1616805.0,1440.76,-0.3,46.98,49.22,74.04,24.27
62
- 011-000,-11,0,768875.0,1616705.0,1460.6,-0.18,924.94,83.49,61.0,25.38
63
- 011-001,-11,1,768975.0,1616705.0,1471.53,-0.21,834.51,19.59,77.12,25.15
64
- 011-002,-11,2,769075.0,1616705.0,1485.56,-0.28,735.65,11.68,30.14,27.26
65
- 011-003,-11,3,769175.0,1616705.0,1490.23,-0.04,633.8,5.52,16.3,29.77
66
- 011-004,-11,4,769275.0,1616705.0,1488.45,-0.07,534.95,6.27,5.52,30.59
67
- 011-005,-11,5,769375.0,1616705.0,1489.64,-0.07,436.09,5.33,6.27,30.17
68
- 011-006,-11,6,769475.0,1616705.0,1490.13,-0.07,334.25,6.27,5.33,29.58
69
- 011-007,-11,7,769575.0,1616705.0,1489.94,-0.14,235.41,5.33,10.0,29.29
70
- 011-008,-11,8,769675.0,1616705.0,1473.26,-0.32,136.6,9.2,52.64,27.24
71
- 011-009,-11,9,769775.0,1616705.0,1443.51,-0.32,41.59,24.87,69.98,24.52
72
- 012-000,-12,0,768875.0,1616605.0,1452.16,-0.21,914.01,61.0,88.13,25.31
73
- 012-001,-12,1,768975.0,1616605.0,1469.36,-0.28,829.07,21.85,51.86,26.25
74
- 012-002,-12,2,769075.0,1616605.0,1490.53,-0.28,730.21,13.15,21.85,27.91
75
- 012-003,-12,3,769175.0,1616605.0,1490.88,-0.07,628.36,5.52,16.26,29.65
76
- 012-004,-12,4,769275.0,1616605.0,1489.2,-0.07,529.51,5.52,16.34,30.35
77
- 012-005,-12,5,769375.0,1616605.0,1489.68,-0.14,430.66,5.33,25.68,30.37
78
- 012-006,-12,6,769475.0,1616605.0,1489.96,-0.14,328.81,5.33,27.25,29.43
79
- 012-007,-12,7,769575.0,1616605.0,1489.02,-0.14,229.98,5.33,50.71,28.57
80
- 012-008,-12,8,769675.0,1616605.0,1471.47,-0.3,131.16,10.0,87.54,26.81
81
- 012-009,-12,9,769775.0,1616605.0,1448.53,-0.3,34.94,24.87,71.77,24.69
82
- 013-002,-13,2,769075.0,1616505.0,1481.66,-0.2,725.46,13.15,23.89,27.84
83
- 013-003,-13,3,769175.0,1616505.0,1492.07,-0.14,623.54,15.59,13.15,29.34
84
- 013-004,-13,4,769275.0,1616505.0,1490.97,-0.07,524.62,5.98,20.0,30.29
85
- 013-005,-13,5,769375.0,1616505.0,1490.46,-0.14,425.72,16.34,5.98,31.07
86
- 013-006,-13,6,769475.0,1616505.0,1490.81,-0.13,323.82,5.98,31.72,29.35
87
- 013-007,-13,7,769575.0,1616505.0,1487.55,-0.2,224.94,27.25,45.0,28.14
88
- 013-008,-13,8,769675.0,1616505.0,1481.92,-0.24,126.09,37.72,55.43,26.45
89
- 013-009,-13,9,769775.0,1616505.0,1453.52,-0.24,33.4,24.87,59.38,24.91
90
- 013-010,-13,10,769875.0,1616505.0,1464.99,-0.24,97.4,23.24,31.25,24.73
91
- 013-011,-13,11,769975.0,1616505.0,1483.84,-0.17,173.12,22.19,44.02,25.98
92
- 013-013,-13,13,770175.0,1616505.0,1488.37,-0.07,373.32,12.89,41.7,27.99
93
- 013-014,-13,14,770275.0,1616505.0,1487.72,-0.07,471.93,0.0,28.34,29.03
94
- 013-015,-13,15,770375.0,1616505.0,1489.28,-0.07,570.86,0.0,25.47,29.74
95
- 014-002,-14,2,769075.0,1616405.0,1470.77,-0.2,726.27,5.81,15.59,27.06
96
- 014-003,-14,3,769175.0,1616405.0,1492.97,-0.16,624.98,5.81,15.66,28.82
97
- 014-004,-14,4,769275.0,1616405.0,1491.86,-0.03,526.22,5.98,17.32,29.79
98
- 014-005,-14,5,769375.0,1616405.0,1491.49,-0.14,427.47,5.98,24.89,30.11
99
- 014-006,-14,6,769475.0,1616405.0,1491.31,-0.14,325.76,5.98,31.63,28.78
100
- 014-007,-14,7,769575.0,1616405.0,1491.71,-0.2,227.06,27.32,37.72,27.91
101
- 014-008,-14,8,769675.0,1616405.0,1483.97,-0.21,128.46,37.72,52.59,26.26
102
- 014-009,-14,9,769775.0,1616405.0,1450.61,-0.21,36.12,29.82,82.22,25.3
103
- 014-010,-14,10,769875.0,1616405.0,1467.13,-0.21,73.81,29.82,51.39,25.28
104
- 014-011,-14,11,769975.0,1616405.0,1487.8,-0.12,168.93,29.82,34.59,26.37
105
- 014-012,-14,12,770075.0,1616405.0,1492.61,-0.12,270.18,24.19,41.3,27.12
106
- 014-013,-14,13,770175.0,1616405.0,1492.01,-0.11,368.42,23.52,44.86,27.76
107
- 014-014,-14,14,770275.0,1616405.0,1491.39,-0.11,466.46,23.52,46.67,28.14
108
- 014-015,-14,15,770375.0,1616405.0,1493.23,-0.1,566.73,23.52,31.89,28.74
109
- 014-016,-14,16,770475.0,1616405.0,1496.0,-0.1,661.96,25.47,40.76,29.2
110
- 014-017,-14,17,770575.0,1616405.0,1499.79,-0.09,750.72,4.45,37.54,29.8
111
- 015-003,-15,3,769175.0,1616305.0,1492.78,-0.21,634.16,5.81,13.3,28.41
112
- 015-004,-15,4,769275.0,1616305.0,1492.6,-0.03,535.94,11.31,18.73,29.42
113
- 015-005,-15,5,769375.0,1616305.0,1492.06,-0.13,437.77,11.31,18.67,29.4
114
- 015-006,-15,6,769475.0,1616305.0,1492.39,-0.16,336.67,11.31,27.32,29.64
115
- 015-007,-15,7,769575.0,1616305.0,1489.61,-0.2,238.62,20.27,56.11,28.34
116
- 015-008,-15,8,769675.0,1616305.0,1463.48,-0.2,140.66,37.72,84.65,26.43
117
- 015-009,-15,9,769775.0,1616305.0,1452.27,-0.2,42.97,18.96,88.0,26.91
118
- 015-010,-15,10,769875.0,1616305.0,1456.25,-0.19,57.21,18.96,29.82,26.67
119
- 015-011,-15,11,769975.0,1616305.0,1475.32,-0.12,153.91,18.96,65.51,26.12
120
- 015-012,-15,12,770075.0,1616305.0,1492.51,-0.16,253.17,24.19,57.79,26.91
121
- 015-013,-15,13,770175.0,1616305.0,1493.27,-0.16,347.82,18.7,24.19,27.71
122
- 015-014,-15,14,770275.0,1616305.0,1493.68,-0.18,440.15,18.7,23.52,28.14
123
- 015-015,-15,15,770375.0,1616305.0,1495.54,-0.18,533.18,18.7,49.88,27.97
124
- 015-016,-15,16,770475.0,1616305.0,1500.07,-0.18,622.35,31.89,55.61,28.71
125
- 015-017,-15,17,770575.0,1616305.0,1502.8,-0.08,708.38,30.69,52.7,29.01
126
- 015-018,-15,18,770675.0,1616305.0,1507.95,-0.09,710.5,30.69,41.2,29.73
127
- 015-019,-15,19,770775.0,1616305.0,1510.15,0.01,614.96,3.42,59.93,30.09
128
- 016-003,-16,3,769175.0,1616205.0,1492.78,-0.27,647.46,5.81,20.37,27.83
129
- 016-004,-16,4,769275.0,1616205.0,1493.44,-0.15,549.79,8.2,21.23,29.09
130
- 016-005,-16,5,769375.0,1616205.0,1492.8,-0.04,452.38,8.2,11.31,29.33
131
- 016-006,-16,6,769475.0,1616205.0,1492.88,-0.17,352.38,8.2,20.27,29.11
132
- 016-007,-16,7,769575.0,1616205.0,1480.41,-0.17,255.76,20.27,67.74,27.32
133
- 016-008,-16,8,769675.0,1616205.0,1472.98,-0.17,159.58,21.92,67.33,26.31
134
- 016-009,-16,9,769775.0,1616205.0,1464.59,-0.17,61.29,18.96,86.11,27.2
135
- 016-010,-16,10,769875.0,1616205.0,1454.37,-0.12,37.61,29.82,18.96,26.96
136
- 016-011,-16,11,769975.0,1616205.0,1468.51,-0.16,125.71,18.96,46.8,26.35
137
- 016-012,-16,12,770075.0,1616205.0,1494.64,-0.16,219.34,24.19,70.68,26.7
138
- 016-013,-16,13,770175.0,1616205.0,1495.23,-0.16,309.2,18.7,39.65,28.13
139
- 016-014,-16,14,770275.0,1616205.0,1495.75,-0.18,398.34,20.35,18.7,28.4
140
- 016-015,-16,15,770375.0,1616205.0,1499.14,-0.12,489.26,18.7,65.08,27.85
141
- 016-016,-16,16,770475.0,1616205.0,1504.6,-0.18,573.54,20.35,38.0,28.61
142
- 016-017,-16,17,770575.0,1616205.0,1506.94,-0.09,639.32,30.69,44.96,28.78
143
- 016-018,-16,18,770675.0,1616205.0,1511.52,-0.09,678.77,28.41,30.69,29.03
144
- 017-002,-17,2,769075.0,1616105.0,1459.6,-0.27,762.58,15.42,61.6,25.37
145
- 017-003,-17,3,769175.0,1616105.0,1492.58,-0.27,666.67,13.23,60.56,26.99
146
- 017-004,-17,4,769275.0,1616105.0,1494.94,-0.15,570.53,8.2,13.23,28.67
147
- 017-005,-17,5,769375.0,1616105.0,1493.63,-0.06,474.7,11.31,8.2,29.08
148
- 017-006,-17,6,769475.0,1616105.0,1490.38,-0.17,376.33,8.2,32.61,27.98
149
- 017-007,-17,7,769575.0,1616105.0,1476.53,-0.16,281.49,20.27,72.6,26.58
150
- 017-008,-17,8,769675.0,1616105.0,1489.84,-0.17,188.14,20.55,21.92,27.02
151
- 017-009,-17,9,769775.0,1616105.0,1479.41,-0.14,94.0,18.96,36.19,27.18
152
- 017-010,-17,10,769875.0,1616105.0,1457.46,-0.17,26.27,18.96,40.88,26.59
153
- 017-011,-17,11,769975.0,1616105.0,1462.97,-0.17,85.31,18.96,36.77,26.42
154
- 017-012,-17,12,770075.0,1616105.0,1487.26,-0.17,177.09,27.19,64.95,26.29
155
- 017-013,-17,13,770175.0,1616105.0,1495.12,-0.16,265.28,18.7,60.44,27.39
156
- 017-014,-17,14,770275.0,1616105.0,1499.53,-0.18,353.35,18.7,47.38,28.02
157
- 017-015,-17,15,770375.0,1616105.0,1503.4,-0.18,438.94,18.7,20.35,28.15
158
- 017-016,-17,16,770475.0,1616105.0,1507.75,-0.18,501.85,20.35,32.17,28.23
159
- 017-017,-17,17,770575.0,1616105.0,1512.21,-0.08,558.31,29.42,46.7,28.15
160
- 017-018,-17,18,770675.0,1616105.0,1516.68,-0.02,617.8,28.41,33.97,28.03
161
- 018-002,-18,2,769075.0,1616005.0,1481.18,-0.27,790.88,13.59,69.32,25.51
162
- 018-003,-18,3,769175.0,1616005.0,1496.41,-0.27,692.78,13.23,35.41,27.73
163
- 018-004,-18,4,769275.0,1616005.0,1496.34,-0.15,598.06,8.2,39.1,28.94
164
- 018-005,-18,5,769375.0,1616005.0,1494.59,-0.08,504.33,8.2,26.66,29.5
165
- 018-006,-18,6,769475.0,1616005.0,1490.74,-0.17,409.48,8.2,42.43,29.24
166
- 018-007,-18,7,769575.0,1616005.0,1489.13,-0.17,318.98,15.17,34.55,28.6
167
- 018-008,-18,8,769675.0,1616005.0,1490.53,-0.17,229.05,21.92,20.55,28.24
168
- 018-009,-18,9,769775.0,1616005.0,1468.23,-0.15,136.62,20.55,51.33,26.84
169
- 018-010,-18,10,769875.0,1616005.0,1464.29,-0.17,48.97,22.85,28.36,26.18
170
- 018-011,-18,11,769975.0,1616005.0,1460.9,-0.16,42.8,13.27,55.61,26.18
171
- 018-012,-18,12,770075.0,1616005.0,1469.96,-0.17,130.73,13.27,27.19,27.17
172
- 018-013,-18,13,770175.0,1616005.0,1489.08,-0.16,219.49,13.27,41.75,27.72
173
- 018-014,-18,14,770275.0,1616005.0,1504.1,-0.13,299.85,20.35,36.07,28.32
174
- 018-015,-18,15,770375.0,1616005.0,1508.98,-0.12,361.85,20.35,35.9,28.7
175
- 018-016,-18,16,770475.0,1616005.0,1513.44,-0.02,417.96,20.35,42.02,28.25
176
- 018-017,-18,17,770575.0,1616005.0,1518.36,-0.01,477.06,26.81,30.48,28.35
177
- 018-018,-18,18,770675.0,1616005.0,1522.14,-0.01,541.78,26.81,29.42,28.5
178
- 019-002,-19,2,769075.0,1615905.0,1484.68,-0.24,819.67,13.59,55.22,26.22
179
- 019-003,-19,3,769175.0,1615905.0,1497.85,-0.17,724.44,24.41,13.59,28.28
180
- 019-004,-19,4,769275.0,1615905.0,1497.44,-0.07,633.18,13.59,45.13,28.62
181
- 019-005,-19,5,769375.0,1615905.0,1496.8,-0.13,542.94,15.17,15.87,29.72
182
- 019-006,-19,6,769475.0,1615905.0,1494.59,-0.13,450.3,5.88,15.17,31.53
183
- 019-007,-19,7,769575.0,1615905.0,1493.51,-0.13,360.6,5.88,24.84,30.09
184
- 019-008,-19,8,769675.0,1615905.0,1483.37,-0.2,271.6,5.88,46.9,27.95
185
- 019-009,-19,9,769775.0,1615905.0,1470.73,-0.2,180.78,20.12,55.07,26.03
186
- 019-010,-19,10,769875.0,1615905.0,1492.51,-0.2,92.65,20.12,29.97,26.49
187
- 019-011,-19,11,769975.0,1615905.0,1472.52,-0.17,25.37,13.27,22.85,26.06
188
- 019-012,-19,12,770075.0,1615905.0,1469.45,-0.17,87.9,22.59,13.27,27.1
189
- 019-013,-19,13,770175.0,1615905.0,1497.94,-0.13,164.15,13.27,27.82,27.55
190
- 019-014,-19,14,770275.0,1615905.0,1508.66,-0.13,222.52,21.38,31.27,28.44
191
- 019-015,-19,15,770375.0,1615905.0,1513.16,-0.21,280.23,31.27,21.38,28.73
192
- 019-016,-19,16,770475.0,1615905.0,1516.29,-0.21,338.12,21.38,35.47,28.13
193
- 019-017,-19,17,770575.0,1615905.0,1521.23,-0.21,401.26,26.94,26.81,28.57
194
- 019-018,-19,18,770675.0,1615905.0,1527.36,-0.01,470.77,26.81,41.11,28.98
195
- 019-019,-19,19,770775.0,1615905.0,1530.08,0.01,527.61,1.84,32.46,29.44
196
- 020-002,-20,2,769075.0,1615805.0,1469.64,-0.24,856.32,13.59,55.35,26.49
197
- 020-003,-20,3,769175.0,1615805.0,1495.14,-0.17,764.18,13.59,31.14,27.52
198
- 020-004,-20,4,769275.0,1615805.0,1498.29,-0.16,674.27,13.59,24.41,28.43
199
- 020-005,-20,5,769375.0,1615805.0,1497.85,-0.16,584.57,15.17,35.36,28.41
200
- 020-006,-20,6,769475.0,1615805.0,1496.73,-0.16,492.91,5.88,22.24,29.81
201
- 020-007,-20,7,769575.0,1615805.0,1495.74,-0.13,404.76,15.17,5.88,30.28
202
- 020-008,-20,8,769675.0,1615805.0,1486.45,-0.2,316.61,5.88,49.53,28.38
203
- 020-009,-20,9,769775.0,1615805.0,1475.17,-0.15,224.5,20.12,53.06,26.73
204
- 020-010,-20,10,769875.0,1615805.0,1497.85,-0.2,134.57,22.59,20.12,27.61
205
- 020-011,-20,11,769975.0,1615805.0,1485.21,-0.22,48.68,13.27,22.59,26.49
206
- 020-012,-20,12,770075.0,1615805.0,1468.79,-0.22,32.69,13.27,29.27,25.9
207
- 020-013,-20,13,770175.0,1615805.0,1488.08,-0.22,84.91,13.27,42.13,26.29
208
- 020-014,-20,14,770275.0,1615805.0,1507.49,-0.17,140.9,21.38,37.98,27.05
209
- 020-015,-20,15,770375.0,1615805.0,1513.37,-0.21,199.47,21.38,42.63,27.05
210
- 020-016,-20,16,770475.0,1615805.0,1507.62,-0.17,261.64,21.38,79.45,25.99
211
- 020-017,-20,17,770575.0,1615805.0,1525.13,-0.21,328.75,26.81,26.94,27.67
212
- 020-018,-20,18,770675.0,1615805.0,1532.14,-0.01,405.44,26.81,33.54,28.42
213
- 020-019,-20,19,770775.0,1615805.0,1534.56,0.01,482.93,17.15,35.7,28.75
214
- 021-003,-21,3,769175.0,1615705.0,1492.95,-0.18,807.17,21.58,45.17,27.09
215
- 021-004,-21,4,769275.0,1615705.0,1497.66,-0.18,718.26,24.41,21.58,27.63
216
- 021-005,-21,5,769375.0,1615705.0,1498.6,-0.13,630.12,21.58,60.7,27.45
217
- 021-006,-21,6,769475.0,1615705.0,1498.44,-0.16,539.14,5.88,25.87,27.62
218
- 021-007,-21,7,769575.0,1615705.0,1497.62,-0.13,449.63,5.88,43.78,28.76
219
- 021-008,-21,8,769675.0,1615705.0,1494.56,-0.2,359.67,5.88,50.05,28.47
220
- 021-009,-21,9,769775.0,1615705.0,1474.6,-0.2,269.14,20.12,34.42,27.56
221
- 021-010,-21,10,769875.0,1615705.0,1495.45,-0.2,186.25,19.44,33.86,27.34
222
- 021-011,-21,11,769975.0,1615705.0,1488.87,-0.22,114.69,19.44,36.28,26.76
223
- 021-012,-21,12,770075.0,1615705.0,1478.01,-0.23,55.1,19.44,40.33,25.26
224
- 021-013,-21,13,770175.0,1615705.0,1470.99,-0.23,25.21,29.27,40.66,25.45
225
- 021-014,-21,14,770275.0,1615705.0,1476.96,-0.26,57.78,37.98,88.38,25.68
226
- 021-015,-21,15,770375.0,1615705.0,1484.62,-0.26,119.81,37.98,88.19,24.93
227
- 021-016,-21,16,770475.0,1615705.0,1511.87,-0.26,187.04,26.94,71.63,25.19
228
- 021-017,-21,17,770575.0,1615705.0,1530.35,-0.21,263.11,26.94,28.58,27.3
229
- 021-018,-21,18,770675.0,1615705.0,1535.46,-0.16,348.66,26.94,35.18,27.99
230
- 021-019,-21,19,770775.0,1615705.0,1539.47,-0.16,434.46,18.34,27.65,28.43
231
- 022-003,-22,3,769175.0,1615605.0,1475.22,-0.26,846.74,21.58,63.97,26.29
232
- 022-004,-22,4,769275.0,1615605.0,1487.05,-0.18,762.74,20.68,50.75,26.65
233
- 022-005,-22,5,769375.0,1615605.0,1498.0,-0.16,673.43,20.68,41.53,27.37
234
- 022-006,-22,6,769475.0,1615605.0,1499.81,-0.16,580.87,19.42,47.67,27.65
235
- 022-007,-22,7,769575.0,1615605.0,1499.69,-0.1,492.67,18.35,23.44,29.19
236
- 022-008,-22,8,769675.0,1615605.0,1499.43,-0.2,407.55,18.35,36.87,28.71
237
- 022-009,-22,9,769775.0,1615605.0,1482.15,-0.13,324.75,18.0,43.75,26.81
238
- 022-010,-22,10,769875.0,1615605.0,1499.4,-0.2,253.77,9.83,21.02,27.35
239
- 022-011,-22,11,769975.0,1615605.0,1504.36,-0.22,194.05,9.83,19.44,28.51
240
- 022-012,-22,12,770075.0,1615605.0,1505.47,-0.23,136.23,9.83,36.85,27.13
241
- 022-013,-22,13,770175.0,1615605.0,1482.66,-0.22,80.17,17.44,43.36,25.4
242
- 022-014,-22,14,770275.0,1615605.0,1486.29,-0.26,30.43,31.44,45.16,24.82
243
- 022-015,-22,15,770375.0,1615605.0,1477.87,-0.24,49.2,41.44,74.75,24.12
244
- 022-016,-22,16,770475.0,1615605.0,1492.65,-0.26,125.97,28.58,84.45,24.39
245
- 022-017,-22,17,770575.0,1615605.0,1511.3,-0.26,210.84,28.58,68.2,25.19
246
- 022-018,-22,18,770675.0,1615605.0,1517.2,-0.26,300.2,27.65,81.94,25.56
247
- 022-019,-22,19,770775.0,1615605.0,1537.42,-0.21,388.6,18.34,59.87,26.4
248
- 023-004,-23,4,769275.0,1615505.0,1477.09,-0.24,802.37,20.68,88.4,25.98
249
- 023-005,-23,5,769375.0,1615505.0,1499.21,-0.24,716.37,13.06,20.68,27.68
250
- 023-006,-23,6,769475.0,1615505.0,1501.03,-0.1,627.71,13.06,27.66,28.68
251
- 023-007,-23,7,769575.0,1615505.0,1501.36,-0.1,544.8,13.06,19.42,29.97
252
- 023-008,-23,8,769675.0,1615505.0,1502.35,-0.2,466.08,19.42,18.35,29.47
253
- 023-009,-23,9,769775.0,1615505.0,1489.97,-0.2,393.02,16.04,37.88,27.28
254
- 023-010,-23,10,769875.0,1615505.0,1502.8,-0.2,331.98,9.83,18.0,28.3
255
- 023-011,-23,11,769975.0,1615505.0,1506.98,-0.04,275.55,16.04,9.83,29.72
256
- 023-012,-23,12,770075.0,1615505.0,1508.05,-0.23,217.85,9.83,17.44,28.59
257
- 023-013,-23,13,770175.0,1615505.0,1502.04,-0.23,159.93,17.44,31.44,26.82
258
- 023-014,-23,14,770275.0,1615505.0,1518.64,-0.26,92.79,20.44,41.44,26.01
259
- 023-015,-23,15,770375.0,1615505.0,1500.68,-0.26,26.21,20.44,84.59,24.61
260
- 023-016,-23,16,770475.0,1615505.0,1486.6,-0.26,76.41,63.3,98.56,23.57
261
- 023-017,-23,17,770575.0,1615505.0,1502.21,-0.24,165.18,67.72,96.48,23.53
262
- 023-018,-23,18,770675.0,1615505.0,1520.79,-0.26,259.97,37.99,73.84,23.98
263
- 023-019,-23,19,770775.0,1615505.0,1537.36,-0.21,354.1,21.37,63.84,25.81
264
- 024-004,-24,4,769275.0,1615405.0,1476.37,-0.2,851.12,18.57,94.66,25.51
265
- 024-005,-24,5,769375.0,1615405.0,1496.37,-0.24,768.34,13.06,31.79,27.05
266
- 024-006,-24,6,769475.0,1615405.0,1502.44,0.01,684.62,13.84,13.06,28.81
267
- 024-007,-24,7,769575.0,1615405.0,1502.66,-0.02,607.48,13.06,24.24,29.65
268
- 024-008,-24,8,769675.0,1615405.0,1502.88,-0.13,536.81,9.74,19.68,29.12
269
- 024-009,-24,9,769775.0,1615405.0,1494.47,-0.13,472.62,9.74,20.53,28.25
270
- 024-010,-24,10,769875.0,1615405.0,1505.43,-0.13,415.65,9.74,16.04,28.86
271
- 024-011,-24,11,769975.0,1615405.0,1509.28,0.01,359.65,9.83,17.01,29.66
272
- 024-012,-24,12,770075.0,1615405.0,1513.48,-0.1,300.8,9.83,28.59,29.38
273
- 024-013,-24,13,770175.0,1615405.0,1518.0,-0.11,231.97,17.44,24.01,28.41
274
- 024-014,-24,14,770275.0,1615405.0,1525.19,-0.21,147.64,19.84,20.44,27.89
275
- 024-015,-24,15,770375.0,1615405.0,1506.92,-0.25,55.42,20.44,63.3,25.57
276
- 024-016,-24,16,770475.0,1615405.0,1491.03,-0.26,41.42,33.83,77.28,23.57
277
- 024-017,-24,17,770575.0,1615405.0,1528.09,-0.26,134.51,27.92,82.94,24.02
278
- 024-018,-24,18,770675.0,1615405.0,1524.72,-0.26,234.48,23.68,67.72,24.65
279
- 024-019,-24,19,770775.0,1615405.0,1545.42,-0.21,332.16,21.15,37.99,27.07
280
- 025-004,-25,4,769275.0,1615305.0,1485.72,-0.24,905.22,18.57,85.27,25.45
281
- 025-005,-25,5,769375.0,1615305.0,1500.88,-0.24,825.63,13.06,18.57,27.45
282
- 025-006,-25,6,769475.0,1615305.0,1502.3,-0.0,747.11,13.06,17.38,29.52
283
- 025-007,-25,7,769575.0,1615305.0,1503.21,-0.02,676.59,13.06,13.84,29.94
284
- 025-008,-25,8,769675.0,1615305.0,1503.09,-0.11,613.02,9.74,37.34,28.73
285
- 025-009,-25,9,769775.0,1615305.0,1499.65,-0.08,553.32,12.71,9.74,28.27
286
- 025-010,-25,10,769875.0,1615305.0,1504.9,-0.11,497.28,9.74,12.71,28.93
287
- 025-011,-25,11,769975.0,1615305.0,1511.49,-0.08,440.14,12.71,22.15,29.49
288
- 025-012,-25,12,770075.0,1615305.0,1517.3,-0.01,364.8,17.01,32.8,29.36
289
- 025-013,-25,13,770175.0,1615305.0,1523.14,-0.05,273.22,18.6,19.84,28.56
290
- 025-014,-25,14,770275.0,1615305.0,1528.11,-0.17,176.91,18.6,23.16,28.17
291
- 025-015,-25,15,770375.0,1615305.0,1517.9,-0.27,76.99,20.44,33.83,25.95
292
- 025-016,-25,16,770475.0,1615305.0,1489.07,-0.27,35.5,24.81,47.42,23.87
293
- 025-017,-25,17,770575.0,1615305.0,1534.57,-0.27,121.8,27.92,46.45,25.24
294
- 025-018,-25,18,770675.0,1615305.0,1537.93,-0.19,222.82,23.68,27.92,26.29
295
- 025-019,-25,19,770775.0,1615305.0,1543.81,-0.19,321.16,15.95,23.68,27.28
296
- 026-004,-26,4,769275.0,1615205.0,1477.65,-0.26,962.05,18.57,92.82,25.47
297
- 026-005,-26,5,769375.0,1615205.0,1501.63,-0.26,889.03,16.95,34.37,27.67
298
- 026-006,-26,6,769475.0,1615205.0,1503.6,-0.13,816.34,13.84,24.8,29.31
299
- 026-007,-26,7,769575.0,1615205.0,1504.28,-0.13,751.91,11.74,29.57,29.13
300
- 026-008,-26,8,769675.0,1615205.0,1506.2,-0.13,692.87,9.74,25.24,29.11
301
- 026-009,-26,9,769775.0,1615205.0,1505.31,-0.14,634.87,9.74,23.67,28.46
302
- 026-010,-26,10,769875.0,1615205.0,1503.9,-0.14,572.4,9.74,41.66,28.39
303
- 026-011,-26,11,769975.0,1615205.0,1513.45,-0.14,488.29,12.71,20.79,29.1
304
- 026-012,-26,12,770075.0,1615205.0,1520.61,0.0,389.63,14.86,22.64,29.25
305
- 026-013,-26,13,770175.0,1615205.0,1525.9,-0.05,294.49,14.86,18.6,28.29
306
- 026-014,-26,14,770275.0,1615205.0,1531.34,-0.13,202.86,18.6,25.99,27.82
307
- 026-015,-26,15,770375.0,1615205.0,1525.67,-0.27,120.97,23.16,24.81,26.07
308
- 026-016,-26,16,770475.0,1615205.0,1491.18,-0.25,93.93,23.88,27.94,23.67
309
- 026-017,-26,17,770575.0,1615205.0,1526.17,-0.27,149.56,23.88,74.93,24.35
310
- 026-018,-26,18,770675.0,1615205.0,1545.98,-0.24,233.08,23.68,45.23,25.97
311
- 027-005,-27,5,769375.0,1615105.0,1495.82,-0.26,960.44,16.95,60.25,26.59
312
- 027-006,-27,6,769475.0,1615105.0,1505.94,-0.2,893.32,20.13,16.95,28.37
313
- 027-007,-27,7,769575.0,1615105.0,1506.5,-0.0,833.37,11.74,63.84,28.54
314
- 027-008,-27,8,769675.0,1615105.0,1508.57,-0.13,775.69,14.02,11.74,29.38
315
- 027-009,-27,9,769775.0,1615105.0,1510.64,-0.14,701.89,11.74,20.52,29.26
316
- 027-010,-27,10,769875.0,1615105.0,1510.75,-0.08,610.48,14.02,38.66,28.34
317
- 027-011,-27,11,769975.0,1615105.0,1517.72,-0.14,517.44,14.86,20.55,28.64
318
- 027-012,-27,12,770075.0,1615105.0,1523.54,0.0,424.36,17.44,14.86,29.1
319
- 027-013,-27,13,770175.0,1615105.0,1528.53,-0.05,338.86,14.86,18.73,28.59
320
- 027-014,-27,14,770275.0,1615105.0,1533.47,-0.19,262.81,18.6,28.0,27.83
321
- 027-015,-27,15,770375.0,1615105.0,1524.11,-0.27,206.12,23.88,34.26,25.79
322
- 027-016,-27,16,770475.0,1615105.0,1495.31,-0.27,191.41,24.81,23.88,23.69
323
- 027-017,-27,17,770575.0,1615105.0,1501.58,-0.27,224.1,23.88,61.96,23.73
324
- 027-018,-27,18,770675.0,1615105.0,1505.46,-0.26,289.97,29.34,95.22,24.35
325
- 028-005,-28,5,769375.0,1615005.0,1491.56,-0.28,1034.22,16.95,70.87,26.21
326
- 028-006,-28,6,769475.0,1615005.0,1507.5,-0.22,971.68,16.95,21.75,28.15
327
- 028-007,-28,7,769575.0,1615005.0,1509.48,-0.2,910.77,11.74,20.13,29.03
328
- 028-008,-28,8,769675.0,1615005.0,1511.59,-0.13,831.88,11.74,20.45,29.41
329
- 028-009,-28,9,769775.0,1615005.0,1514.6,-0.14,737.99,10.79,14.02,29.27
330
- 028-010,-28,10,769875.0,1615005.0,1516.23,-0.14,648.12,10.79,20.18,28.76
331
- 028-011,-28,11,769975.0,1615005.0,1520.86,-0.14,561.22,10.79,20.54,28.42
332
- 028-012,-28,12,770075.0,1615005.0,1525.94,-0.02,476.61,14.86,17.44,28.7
333
- 028-013,-28,13,770175.0,1615005.0,1531.21,-0.06,402.31,14.86,23.5,28.58
334
- 028-014,-28,14,770275.0,1615005.0,1535.88,-0.19,340.68,16.25,26.12,28.02
335
- 028-015,-28,15,770375.0,1615005.0,1518.05,-0.21,299.08,23.88,29.31,25.67
336
- 028-016,-28,16,770475.0,1615005.0,1519.87,-0.22,289.12,23.88,50.63,24.07
337
- 028-017,-28,17,770575.0,1615005.0,1497.44,-0.22,311.76,23.88,29.34,23.53
338
- 028-018,-28,18,770675.0,1615005.0,1516.04,-0.26,363.04,29.34,66.19,24.38
339
- 028-019,-28,19,770775.0,1615005.0,1511.25,-0.27,430.57,48.06,78.9,24.71
340
- 029-006,-29,6,769475.0,1614905.0,1493.01,-0.22,1037.5,20.13,77.38,26.92
341
- 029-007,-29,7,769575.0,1614905.0,1502.94,-0.2,961.45,20.13,49.43,27.77
342
- 029-008,-29,8,769675.0,1614905.0,1507.45,-0.11,871.94,14.02,36.03,28.66
343
- 029-009,-29,9,769775.0,1614905.0,1517.49,-0.0,781.88,10.79,33.23,28.13
344
- 029-010,-29,10,769875.0,1614905.0,1520.38,-0.02,697.59,14.02,10.79,28.57
345
- 029-011,-29,11,769975.0,1614905.0,1523.25,-0.02,617.64,10.79,29.91,28.53
346
- 029-012,-29,12,770075.0,1614905.0,1527.68,-0.02,541.91,14.12,29.28,28.28
347
- 029-013,-29,13,770175.0,1614905.0,1532.11,-0.06,477.9,16.12,16.25,28.57
348
- 029-014,-29,14,770275.0,1614905.0,1536.27,-0.19,427.32,16.12,33.34,28.32
349
- 029-015,-29,15,770375.0,1614905.0,1534.09,-0.2,394.96,16.12,51.12,26.7
350
- 029-016,-29,16,770475.0,1614905.0,1539.2,-0.22,387.48,19.97,36.94,25.74
351
- 029-017,-29,17,770575.0,1614905.0,1515.41,-0.23,404.65,26.45,37.34,24.0
352
- 029-018,-29,18,770675.0,1614905.0,1517.35,-0.26,445.33,29.34,48.06,24.44
353
- 029-019,-29,19,770775.0,1614905.0,1529.88,-0.27,501.84,43.17,48.65,24.91
354
- 030-007,-30,7,769575.0,1614805.0,1487.21,-0.2,1006.11,36.03,58.17,27.59
355
- 030-008,-30,8,769675.0,1614805.0,1504.16,-0.11,921.64,33.23,44.72,28.3
356
- 030-009,-30,9,769775.0,1614805.0,1519.44,-0.06,836.91,10.79,33.72,28.01
357
- 030-010,-30,10,769875.0,1614805.0,1523.67,-0.06,758.76,10.79,23.55,28.25
358
- 030-011,-30,11,769975.0,1614805.0,1525.99,-0.04,685.97,10.79,14.12,28.4
359
- 030-012,-30,12,770075.0,1614805.0,1528.34,-0.09,618.66,14.12,29.78,27.64
360
- 030-013,-30,13,770175.0,1614805.0,1533.95,-0.09,563.45,16.12,20.22,27.75
361
- 030-014,-30,14,770275.0,1614805.0,1538.14,-0.12,521.23,16.25,16.12,27.26
362
- 030-015,-30,15,770375.0,1614805.0,1543.85,-0.14,495.05,16.12,19.97,27.04
363
- 030-016,-30,16,770475.0,1614805.0,1548.95,-0.22,489.1,19.37,26.45,27.25
364
- 030-017,-30,17,770575.0,1614805.0,1548.3,-0.23,502.81,16.33,36.09,25.75
365
- 030-018,-30,18,770675.0,1614805.0,1533.83,-0.22,536.09,16.33,43.17,24.31
366
- 030-019,-30,19,770775.0,1614805.0,1539.19,-0.27,583.88,16.33,63.54,24.37
367
- 030-020,-30,20,770875.0,1614805.0,1536.11,-0.27,643.34,40.79,82.77,24.19
368
- 031-007,-31,7,769575.0,1614705.0,1491.71,-0.28,1057.97,40.99,48.82,27.57
369
- 031-008,-31,8,769675.0,1614705.0,1503.23,-0.16,977.67,33.72,51.17,27.89
370
- 031-009,-31,9,769775.0,1614705.0,1518.88,-0.05,898.23,23.55,39.25,27.98
371
- 031-010,-31,10,769875.0,1614705.0,1525.31,-0.06,825.91,14.12,27.66,28.4
372
- 031-011,-31,11,769975.0,1614705.0,1527.33,-0.04,759.57,14.12,14.84,28.16
373
- 031-012,-31,12,770075.0,1614705.0,1529.18,-0.09,699.38,14.12,18.84,27.37
374
- 031-013,-31,13,770175.0,1614705.0,1534.4,-0.04,651.04,16.12,53.96,26.7
375
- 031-014,-31,14,770275.0,1614705.0,1539.45,-0.09,614.86,16.12,31.37,26.01
376
- 031-015,-31,15,770375.0,1614705.0,1544.8,-0.01,592.82,16.12,37.91,26.83
377
- 031-016,-31,16,770475.0,1614705.0,1549.42,-0.17,587.86,16.0,19.37,27.7
378
- 031-017,-31,17,770575.0,1614705.0,1553.46,-0.23,599.31,7.49,22.3,27.31
379
- 031-018,-31,18,770675.0,1614705.0,1538.44,-0.23,627.51,7.49,16.33,25.58
380
- 031-019,-31,19,770775.0,1614705.0,1552.78,-0.23,668.81,7.49,41.63,25.33
381
- 031-020,-31,20,770875.0,1614705.0,1558.88,-0.26,721.34,12.2,40.79,25.5
382
- 032-008,-32,8,769675.0,1614605.0,1519.07,-0.23,1040.07,19.1,40.99,27.08
383
- 032-009,-32,9,769775.0,1614605.0,1522.36,-0.08,965.78,19.1,36.09,27.98
384
- 032-010,-32,10,769875.0,1614605.0,1526.35,-0.06,898.92,14.84,24.13,28.7
385
- 032-011,-32,11,769975.0,1614605.0,1529.27,-0.04,838.38,14.84,20.16,28.59
386
- 032-012,-32,12,770075.0,1614605.0,1532.22,-0.09,784.26,14.84,24.16,28.31
387
- 032-013,-32,13,770175.0,1614605.0,1536.42,-0.09,741.49,17.54,40.35,27.28
388
- 032-014,-32,14,770275.0,1614605.0,1541.66,-0.09,709.93,17.54,39.2,26.11
389
- 032-015,-32,15,770375.0,1614605.0,1546.31,-0.04,690.94,19.37,24.17,26.94
390
- 032-016,-32,16,770475.0,1614605.0,1550.33,-0.04,686.69,16.0,21.11,27.99
391
- 032-017,-32,17,770575.0,1614605.0,1554.48,-0.22,696.51,7.24,16.0,27.9
392
- 032-018,-32,18,770675.0,1614605.0,1542.21,-0.22,720.91,7.24,7.49,26.76
393
- 032-019,-32,19,770775.0,1614605.0,1558.2,-0.22,757.14,7.24,12.2,26.79
394
- 032-020,-32,20,770875.0,1614605.0,1561.18,-0.26,803.9,10.45,31.5,26.82
395
- 032-021,-32,21,770975.0,1614605.0,1527.36,-0.32,847.22,31.5,94.45,25.03
396
- 033-008,-33,8,769675.0,1614505.0,1510.84,-0.23,1109.59,19.1,63.52,26.28
397
- 033-009,-33,9,769775.0,1614505.0,1523.63,-0.2,1040.68,24.13,19.1,27.52
398
- 033-010,-33,10,769875.0,1614505.0,1528.1,-0.04,978.95,19.1,37.31,28.21
399
- 033-011,-33,11,769975.0,1614505.0,1531.74,-0.04,923.66,20.16,37.79,28.2
400
- 033-012,-33,12,770075.0,1614505.0,1534.48,-0.03,874.84,17.54,23.08,27.89
401
- 033-013,-33,13,770175.0,1614505.0,1536.26,-0.03,836.71,23.08,17.54,27.51
402
- 033-014,-33,14,770275.0,1614505.0,1543.74,-0.06,808.88,17.54,42.09,26.82
403
- 033-015,-33,15,770375.0,1614505.0,1548.11,-0.06,792.26,16.25,23.5,26.71
404
- 033-016,-33,16,770475.0,1614505.0,1551.87,-0.06,788.56,8.88,19.56,27.43
405
- 033-017,-33,17,770575.0,1614505.0,1556.14,-0.19,797.13,7.24,23.11,28.16
406
- 033-018,-33,18,770675.0,1614505.0,1546.2,-0.19,818.53,7.49,7.24,27.49
407
- 033-019,-33,19,770775.0,1614505.0,1554.38,-0.19,850.61,7.24,10.45,27.44
408
- 033-020,-33,20,770875.0,1614505.0,1561.24,-0.27,892.49,10.45,51.97,26.72
409
- 033-021,-33,21,770975.0,1614505.0,1537.26,-0.32,920.77,31.5,76.3,24.46
410
- 033-022,-33,22,771075.0,1614505.0,1521.51,-0.32,868.93,25.18,59.86,23.36
411
- 034-009,-34,9,769775.0,1614405.0,1517.74,-0.2,1117.5,19.1,38.4,26.29
412
- 034-010,-34,10,769875.0,1614405.0,1528.67,-0.08,1060.25,19.1,30.39,27.62
413
- 034-011,-34,11,769975.0,1614405.0,1533.33,-0.05,1009.42,23.08,24.8,28.3
414
- 034-012,-34,12,770075.0,1614405.0,1536.99,-0.03,964.94,17.54,24.99,28.44
415
- 034-013,-34,13,770175.0,1614405.0,1541.45,-0.03,930.51,16.87,34.98,27.76
416
- 034-014,-34,14,770275.0,1614405.0,1545.98,-0.06,905.56,16.87,26.47,27.36
417
- 034-015,-34,15,770375.0,1614405.0,1549.45,-0.03,890.75,16.25,39.07,27.26
418
- 034-016,-34,16,770475.0,1614405.0,1553.97,-0.06,887.46,8.88,16.25,27.53
419
- 034-017,-34,17,770575.0,1614405.0,1556.07,-0.27,895.08,7.24,8.88,27.47
420
- 034-018,-34,18,770675.0,1614405.0,1547.64,-0.27,914.2,7.24,13.03,26.41
421
- 034-019,-34,19,770775.0,1614405.0,1554.42,-0.27,943.03,7.24,30.16,27.07
422
- 034-020,-34,20,770875.0,1614405.0,1558.81,-0.27,980.98,10.45,43.07,26.21
423
- 034-021,-34,21,770975.0,1614405.0,1531.81,-0.23,998.06,43.07,92.94,24.06
424
- 034-022,-34,22,771075.0,1614405.0,1559.6,-0.27,940.55,25.18,48.45,24.71
425
- 034-023,-34,23,771175.0,1614405.0,1531.6,-0.26,889.69,27.09,25.18,25.06
426
- 035-009,-35,9,769775.0,1614305.0,1515.89,-0.2,1197.55,30.39,46.55,25.11
427
- 035-010,-35,10,769875.0,1614305.0,1528.95,-0.15,1144.32,24.8,31.08,26.8
428
- 035-011,-35,11,769975.0,1614305.0,1533.51,-0.14,1097.39,23.54,28.67,28.38
429
- 035-012,-35,12,770075.0,1614305.0,1537.9,-0.03,1056.63,23.54,31.67,28.73
430
- 035-013,-35,13,770175.0,1614305.0,1542.06,-0.03,1025.28,16.87,24.73,28.49
431
- 035-014,-35,14,770275.0,1614305.0,1546.51,-0.06,1002.7,24.01,16.87,28.13
432
- 035-015,-35,15,770375.0,1614305.0,1550.78,-0.06,989.34,16.25,24.01,28.06
433
- 035-016,-35,16,770475.0,1614305.0,1555.81,-0.06,986.38,8.88,22.85,27.58
434
- 035-017,-35,17,770575.0,1614305.0,1558.84,-0.27,993.24,8.88,20.06,27.37
435
- 035-018,-35,18,770675.0,1614305.0,1549.55,-0.14,1010.5,8.88,46.57,26.19
436
- 035-019,-35,19,770775.0,1614305.0,1555.47,-0.27,1036.66,13.03,22.82,27.06
437
- 035-020,-35,20,770875.0,1614305.0,1558.49,-0.27,1071.29,22.82,44.56,26.35
438
- 035-021,-35,21,770975.0,1614305.0,1538.13,-0.27,1077.45,35.37,93.68,24.57
439
- 035-022,-35,22,771075.0,1614305.0,1567.36,-0.27,1021.3,25.18,47.15,26.76
440
- 035-023,-35,23,771175.0,1614305.0,1563.5,-0.26,968.89,25.18,29.01,27.08
441
- 035-024,-35,24,771275.0,1614305.0,1544.16,-0.26,926.1,25.18,66.43,25.61
442
- 036-010,-36,10,769875.0,1614205.0,1529.11,-0.24,1232.55,28.67,44.43,25.73
443
- 036-011,-36,11,769975.0,1614205.0,1535.47,-0.14,1189.85,23.54,36.97,27.85
444
- 036-012,-36,12,770075.0,1614205.0,1538.43,-0.04,1152.36,24.73,23.54,28.93
445
- 036-013,-36,13,770175.0,1614205.0,1542.43,-0.02,1123.69,16.87,30.25,28.7
446
- 036-014,-36,14,770275.0,1614205.0,1546.69,-0.01,1103.12,13.82,24.19,28.3
447
- 036-015,-36,15,770375.0,1614205.0,1552.16,-0.06,1090.99,13.82,25.81,28.63
448
- 036-016,-36,16,770475.0,1614205.0,1558.15,-0.01,1088.31,13.82,34.93,28.07
449
- 036-017,-36,17,770575.0,1614205.0,1560.95,-0.27,1094.54,14.06,21.07,27.51
450
- 036-018,-36,18,770675.0,1614205.0,1554.48,-0.27,1110.22,20.06,33.88,26.91
451
- 036-019,-36,19,770775.0,1614205.0,1556.53,-0.27,1134.08,22.82,26.81,26.71
452
- 036-020,-36,20,770875.0,1614205.0,1546.37,-0.21,1165.82,22.82,63.84,26.09
453
- 036-021,-36,21,770975.0,1614205.0,1558.08,-0.21,1161.06,35.37,50.97,25.31
454
- 036-022,-36,22,771075.0,1614205.0,1567.76,-0.21,1107.13,29.01,35.37,27.8
455
- 036-023,-36,23,771175.0,1614205.0,1567.79,-0.13,1058.45,29.01,30.78,28.11
456
- 036-024,-36,24,771275.0,1614205.0,1558.44,-0.24,1014.4,29.01,59.87,26.32
457
- 036-025,-36,25,771375.0,1614205.0,1550.66,-0.2,971.89,20.47,85.85,24.26
458
- 036-026,-36,26,771475.0,1614205.0,1558.85,-0.24,904.74,20.47,82.4,24.65
459
- 037-011,-37,11,769975.0,1614105.0,1534.02,-0.24,1254.81,23.54,44.38,27.23
460
- 037-012,-37,12,770075.0,1614105.0,1539.57,-0.24,1243.07,18.57,33.78,28.49
461
- 037-013,-37,13,770175.0,1614105.0,1543.96,-0.11,1219.77,18.57,28.73,28.45
462
- 037-014,-37,14,770275.0,1614105.0,1547.98,0.01,1200.85,13.82,26.53,28.09
463
- 037-015,-37,15,770375.0,1614105.0,1553.77,-0.06,1189.72,14.06,13.82,28.63
464
- 037-016,-37,16,770475.0,1614105.0,1560.03,-0.06,1187.26,13.82,14.06,28.67
465
- 037-017,-37,17,770575.0,1614105.0,1561.79,-0.06,1192.97,14.06,53.72,28.08
466
- 037-018,-37,18,770675.0,1614105.0,1557.81,-0.05,1207.38,18.54,35.5,27.51
467
- 037-019,-37,19,770775.0,1614105.0,1559.96,-0.13,1229.35,18.54,27.14,26.95
468
- 037-020,-37,20,770875.0,1614105.0,1555.88,-0.23,1258.51,20.55,59.38,25.94
469
- 037-021,-37,21,770975.0,1614105.0,1546.63,-0.23,1243.6,20.55,75.37,24.94
470
- 037-022,-37,22,771075.0,1614105.0,1567.28,-0.23,1192.51,30.78,57.37,26.31
471
- 037-023,-37,23,771175.0,1614105.0,1566.63,-0.22,1146.37,30.78,44.24,26.99
472
- 037-024,-37,24,771275.0,1614105.0,1563.6,-0.24,1086.6,30.78,57.52,26.47
473
- 037-025,-37,25,771375.0,1614105.0,1546.27,-0.24,999.25,20.47,42.12,25.71
474
- 037-026,-37,26,771475.0,1614105.0,1556.57,-0.24,900.7,21.3,20.47,26.33
475
- 037-027,-37,27,771575.0,1614105.0,1568.55,-0.28,798.87,20.47,42.39,25.55
476
- 037-028,-37,28,771675.0,1614105.0,1577.21,-0.29,700.06,21.5,80.03,23.89
477
- 037-029,-37,29,771775.0,1614105.0,1600.96,-0.28,601.25,30.7,87.74,22.83
478
- 037-030,-37,30,771875.0,1614105.0,1621.39,-0.29,501.23,56.7,67.56,22.73
479
- 038-012,-38,12,770075.0,1614005.0,1534.81,-0.24,1233.06,18.57,64.81,27.32
480
- 038-013,-38,13,770175.0,1614005.0,1546.39,-0.11,1270.6,19.15,18.57,28.34
481
- 038-014,-38,14,770275.0,1614005.0,1549.79,-0.02,1289.31,13.82,19.15,28.67
482
- 038-015,-38,15,770375.0,1614005.0,1553.68,-0.02,1288.42,13.82,25.53,28.79
483
- 038-016,-38,16,770475.0,1614005.0,1559.06,-0.02,1286.21,9.27,21.78,28.18
484
- 038-017,-38,17,770575.0,1614005.0,1563.38,-0.05,1291.48,9.27,19.05,27.89
485
- 038-018,-38,18,770675.0,1614005.0,1559.32,-0.04,1304.8,9.27,18.54,27.89
486
- 038-019,-38,19,770775.0,1614005.0,1561.33,-0.13,1325.16,11.9,26.17,27.75
487
- 038-020,-38,20,770875.0,1614005.0,1566.5,-0.23,1351.18,11.9,20.55,27.4
488
- 038-021,-38,21,770975.0,1614005.0,1550.31,-0.22,1327.69,11.9,74.92,25.47
489
- 038-022,-38,22,771075.0,1614005.0,1551.88,-0.23,1273.7,27.59,86.67,25.16
490
- 038-023,-38,23,771175.0,1614005.0,1563.87,-0.22,1195.92,27.59,41.45,26.82
491
- 038-024,-38,24,771275.0,1614005.0,1565.71,-0.16,1096.0,27.59,34.36,27.05
492
- 038-025,-38,25,771375.0,1614005.0,1556.34,-0.15,997.06,17.98,43.96,26.59
493
- 038-026,-38,26,771475.0,1614005.0,1552.27,-0.16,898.12,17.98,21.3,26.92
494
- 038-027,-38,27,771575.0,1614005.0,1567.43,-0.28,796.21,17.98,21.5,26.69
495
- 038-028,-38,28,771675.0,1614005.0,1589.35,-0.29,697.31,21.5,30.7,25.25
496
- 038-029,-38,29,771775.0,1614005.0,1605.38,-0.29,598.43,30.7,64.94,23.79
497
- 038-030,-38,30,771875.0,1614005.0,1637.26,-0.29,496.57,53.68,56.7,22.8
498
- 038-031,-38,31,771975.0,1614005.0,1666.74,-0.32,398.1,53.68,71.73,22.19
499
- 039-012,-39,12,770075.0,1613905.0,1537.52,-0.24,1144.19,18.57,57.35,26.49
500
- 039-013,-39,13,770175.0,1613905.0,1549.19,-0.19,1196.68,18.57,31.96,27.7
501
- 039-014,-39,14,770275.0,1613905.0,1551.59,-0.13,1254.73,18.57,22.59,28.85
502
- 039-015,-39,15,770375.0,1613905.0,1550.32,-0.1,1317.41,19.15,42.16,28.28
503
- 039-016,-39,16,770475.0,1613905.0,1556.63,-0.1,1363.9,9.27,23.86,27.29
504
- 039-017,-39,17,770575.0,1613905.0,1560.72,-0.05,1389.66,18.54,9.27,27.0
505
- 039-018,-39,18,770675.0,1613905.0,1561.04,-0.05,1405.4,9.27,27.4,27.41
506
- 039-019,-39,19,770775.0,1613905.0,1564.89,-0.05,1424.34,11.9,24.86,27.31
507
- 039-020,-39,20,770875.0,1613905.0,1567.37,-0.23,1444.97,13.58,11.9,28.03
508
- 039-021,-39,21,770975.0,1613905.0,1562.65,-0.23,1395.13,11.9,56.98,26.72
509
- 039-022,-39,22,771075.0,1613905.0,1550.03,-0.23,1301.95,27.59,84.02,25.54
510
- 039-023,-39,23,771175.0,1613905.0,1566.24,-0.22,1203.31,22.25,27.59,27.47
511
- 039-024,-39,24,771275.0,1613905.0,1566.17,-0.2,1101.74,22.25,28.52,27.82
512
- 039-025,-39,25,771375.0,1613905.0,1560.18,-0.2,1003.22,17.98,43.57,27.01
513
- 039-026,-39,26,771475.0,1613905.0,1564.08,-0.2,904.79,21.3,17.98,26.77
514
- 039-027,-39,27,771575.0,1613905.0,1588.63,-0.16,803.5,17.98,49.24,25.62
515
- 039-028,-39,28,771675.0,1613905.0,1614.11,-0.26,705.36,21.5,49.32,24.96
516
- 039-029,-39,29,771775.0,1613905.0,1626.16,-0.26,607.47,30.7,56.53,24.52
517
- 039-030,-39,30,771875.0,1613905.0,1645.47,-0.29,506.94,36.85,53.68,23.27
518
- 039-031,-39,31,771975.0,1613905.0,1686.42,-0.32,409.8,36.85,94.1,21.86
519
- 039-032,-39,32,772075.0,1613905.0,1730.12,-0.3,313.35,66.83,84.85,21.55
520
- 040-013,-40,13,770175.0,1613805.0,1543.82,-0.25,1116.11,22.59,55.2,26.23
521
- 040-014,-40,14,770275.0,1613805.0,1547.82,-0.25,1178.09,22.59,24.47,26.94
522
- 040-015,-40,15,770375.0,1613805.0,1545.54,-0.22,1247.03,22.59,64.64,26.39
523
- 040-016,-40,16,770475.0,1613805.0,1558.72,-0.18,1318.07,9.27,32.18,27.13
524
- 040-017,-40,17,770575.0,1613805.0,1559.08,-0.03,1392.12,9.27,27.99,27.67
525
- 040-018,-40,18,770675.0,1613805.0,1563.07,-0.04,1461.97,9.27,27.24,27.39
526
- 040-019,-40,19,770775.0,1613805.0,1567.13,-0.08,1511.16,11.9,25.39,26.68
527
- 040-020,-40,20,770875.0,1613805.0,1569.48,-0.12,1504.76,11.9,13.58,27.52
528
- 040-021,-40,21,770975.0,1613805.0,1567.68,-0.17,1411.03,11.9,37.51,27.64
529
- 040-022,-40,22,771075.0,1613805.0,1551.88,-0.14,1313.06,15.74,83.19,25.83
530
- 040-023,-40,23,771175.0,1613805.0,1566.71,-0.17,1215.25,15.74,34.59,27.17
531
- 040-024,-40,24,771275.0,1613805.0,1575.8,-0.2,1114.69,15.74,22.25,27.52
532
- 040-025,-40,25,771375.0,1613805.0,1571.93,-0.25,1017.33,17.98,45.16,25.71
533
- 040-026,-40,26,771475.0,1613805.0,1584.06,-0.27,920.22,17.98,29.06,25.13
534
- 040-027,-40,27,771575.0,1613805.0,1608.57,-0.27,820.5,17.98,39.8,24.72
535
- 040-028,-40,28,771675.0,1613805.0,1645.85,-0.27,724.12,39.8,34.58,24.44
536
- 040-029,-40,29,771775.0,1613805.0,1662.33,-0.18,628.32,24.53,40.28,24.42
537
- 040-030,-40,30,771875.0,1613805.0,1678.02,-0.29,530.66,24.53,36.85,24.07
538
- 040-031,-40,31,771975.0,1613805.0,1713.34,-0.32,437.62,24.53,74.87,22.74
539
- 040-032,-40,32,772075.0,1613805.0,1755.7,-0.32,346.88,49.94,85.02,22.34
540
- 040-033,-40,33,772175.0,1613805.0,1762.41,-0.32,255.37,49.94,79.07,22.7
541
- 040-034,-40,34,772275.0,1613805.0,1743.1,-0.3,174.37,49.94,75.83,22.47
542
- 041-015,-41,15,770375.0,1613705.0,1551.44,-0.3,1178.2,24.47,64.11,25.04
543
- 041-016,-41,16,770475.0,1613705.0,1557.09,-0.24,1253.14,22.11,28.61,27.33
544
- 041-017,-41,17,770575.0,1613705.0,1554.21,-0.13,1331.21,27.24,22.11,28.29
545
- 041-018,-41,18,770675.0,1613705.0,1564.99,-0.13,1414.39,22.11,31.01,27.29
546
- 041-019,-41,19,770775.0,1613705.0,1570.56,-0.13,1497.26,13.58,29.19,26.71
547
- 041-020,-41,20,770875.0,1613705.0,1572.28,-0.08,1521.33,13.58,33.26,27.23
548
- 041-021,-41,21,770975.0,1613705.0,1569.4,-0.17,1427.83,13.58,24.49,27.88
549
- 041-022,-41,22,771075.0,1613705.0,1560.7,-0.17,1330.96,15.74,70.86,26.73
550
- 041-023,-41,23,771175.0,1613705.0,1570.36,-0.17,1234.32,12.17,15.74,27.68
551
- 041-024,-41,24,771275.0,1613705.0,1581.19,-0.31,1135.05,12.17,31.38,27.23
552
- 041-025,-41,25,771375.0,1613705.0,1584.92,-0.31,1039.09,12.17,55.47,24.5
553
- 041-026,-41,26,771475.0,1613705.0,1591.47,-0.31,943.67,29.06,70.68,22.99
554
- 041-027,-41,27,771575.0,1613705.0,1625.21,-0.28,846.19,29.06,85.71,23.04
555
- 041-028,-41,28,771675.0,1613705.0,1657.0,-0.27,752.7,34.58,60.89,23.83
556
- 041-029,-41,29,771775.0,1613705.0,1692.1,-0.16,660.8,24.53,43.12,24.51
557
- 041-030,-41,30,771875.0,1613705.0,1719.08,-0.19,568.06,36.85,24.53,24.84
558
- 041-031,-41,31,771975.0,1613705.0,1725.97,-0.25,479.35,24.53,58.88,24.83
559
- 041-032,-41,32,772075.0,1613705.0,1751.45,-0.27,391.84,33.69,50.27,25.46
560
- 041-033,-41,33,772175.0,1613705.0,1767.4,-0.27,306.1,33.69,49.94,24.92
561
- 041-034,-41,34,772275.0,1613705.0,1755.84,-0.27,234.68,43.35,89.44,23.04
562
- 041-035,-41,35,772375.0,1613705.0,1710.97,-0.27,190.21,43.35,93.57,21.74
563
- 042-016,-42,16,770475.0,1613605.0,1548.86,-0.27,1191.29,22.11,47.05,27.07
564
- 042-017,-42,17,770575.0,1613605.0,1548.29,-0.27,1273.06,22.11,37.98,27.09
565
- 042-018,-42,18,770675.0,1613605.0,1568.49,-0.25,1359.8,22.11,54.77,26.12
566
- 042-019,-42,19,770775.0,1613605.0,1576.57,-0.13,1445.91,14.52,30.49,26.52
567
- 042-020,-42,20,770875.0,1613605.0,1578.39,-0.08,1515.66,24.49,14.52,26.67
568
- 042-021,-42,21,770975.0,1613605.0,1577.78,-0.14,1450.81,14.52,28.66,26.98
569
- 042-022,-42,22,771075.0,1613605.0,1569.34,-0.14,1355.24,15.74,34.26,27.56
570
- 042-023,-42,23,771175.0,1613605.0,1576.67,-0.14,1260.16,12.17,20.82,27.39
571
- 042-024,-42,24,771275.0,1613605.0,1592.24,-0.31,1162.88,15.74,12.17,26.03
572
- 042-025,-42,25,771375.0,1613605.0,1599.97,-0.28,1069.3,12.17,77.09,23.98
573
- 042-026,-42,26,771475.0,1613605.0,1601.65,-0.31,976.79,30.84,82.25,22.86
574
- 042-027,-42,27,771575.0,1613605.0,1648.82,-0.28,882.93,39.05,74.59,22.84
575
- 042-028,-42,28,771675.0,1613605.0,1687.69,-0.27,793.34,42.45,39.05,23.71
576
- 042-029,-42,29,771775.0,1613605.0,1706.12,-0.16,704.73,18.17,57.68,24.81
577
- 042-030,-42,30,771875.0,1613605.0,1735.29,-0.15,614.34,18.17,49.51,25.17
578
- 042-031,-42,31,771975.0,1613605.0,1758.21,-0.15,529.01,18.17,36.85,25.89
579
- 042-032,-42,32,772075.0,1613605.0,1774.45,-0.15,448.8,36.85,33.69,26.17
580
- 042-033,-42,33,772175.0,1613605.0,1781.0,-0.22,375.61,33.69,52.01,25.63
581
- 042-034,-42,34,772275.0,1613605.0,1773.04,-0.27,319.92,47.81,43.35,24.33
582
- 042-035,-42,35,772375.0,1613605.0,1737.6,-0.26,288.26,43.35,89.91,22.54
583
- 042-036,-42,36,772475.0,1613605.0,1708.03,-0.29,289.61,59.52,74.0,21.74
584
- 043-017,-43,17,770575.0,1613505.0,1549.23,-0.33,1222.65,37.98,75.12,24.98
585
- 043-018,-43,18,770675.0,1613505.0,1572.53,-0.28,1312.27,27.94,54.69,24.94
586
- 043-019,-43,19,770775.0,1613505.0,1583.16,-0.23,1401.3,14.52,27.94,25.61
587
- 043-020,-43,20,770875.0,1613505.0,1586.91,-0.23,1490.19,14.52,33.36,25.78
588
- 043-021,-43,21,770975.0,1613505.0,1587.8,-0.23,1478.49,14.52,33.77,26.73
589
- 043-022,-43,22,771075.0,1613505.0,1586.83,-0.09,1385.05,14.23,33.01,27.36
590
- 043-023,-43,23,771175.0,1613505.0,1591.21,-0.05,1292.16,12.17,64.59,26.14
591
- 043-024,-43,24,771275.0,1613505.0,1601.77,-0.31,1197.48,12.17,38.98,25.21
592
- 043-025,-43,25,771375.0,1613505.0,1612.83,-0.31,1106.82,12.17,30.84,24.76
593
- 043-026,-43,26,771475.0,1613505.0,1611.58,-0.31,1017.38,30.84,73.27,23.89
594
- 043-027,-43,27,771575.0,1613505.0,1657.29,-0.28,926.09,39.05,63.78,23.52
595
- 043-028,-43,28,771675.0,1613505.0,1703.34,-0.21,838.19,39.05,42.45,23.77
596
- 043-029,-43,29,771775.0,1613505.0,1733.85,-0.2,751.87,18.17,53.57,24.68
597
- 043-030,-43,30,771875.0,1613505.0,1750.9,-0.15,666.23,36.85,18.17,25.75
598
- 043-031,-43,31,771975.0,1613505.0,1768.48,-0.15,588.12,18.17,41.19,25.84
599
- 043-032,-43,32,772075.0,1613505.0,1790.08,-0.15,517.06,28.0,48.11,25.35
600
- 043-033,-43,33,772175.0,1613505.0,1798.31,-0.15,454.85,28.0,47.81,25.77
601
- 043-034,-43,34,772275.0,1613505.0,1792.25,-0.27,410.05,28.0,51.4,25.27
602
- 043-035,-43,35,772375.0,1613505.0,1761.25,-0.27,385.83,40.11,63.03,23.76
603
- 043-036,-43,36,772475.0,1613505.0,1728.54,-0.29,386.76,40.11,59.52,22.47
604
- 043-037,-43,37,772575.0,1613505.0,1735.09,-0.28,413.23,82.3,82.42,21.81
605
- 044-018,-44,18,770675.0,1613405.0,1547.16,-0.28,1282.29,11.41,49.98,24.86
606
- 044-019,-44,19,770775.0,1613405.0,1562.91,-0.28,1362.82,27.94,64.86,24.59
607
- 044-020,-44,20,770875.0,1613405.0,1580.39,-0.28,1455.07,27.94,75.6,24.84
608
- 044-021,-44,21,770975.0,1613405.0,1594.3,-0.28,1502.56,31.21,30.45,26.35
609
- 044-022,-44,22,771075.0,1613405.0,1598.15,-0.21,1421.09,14.23,35.02,27.5
610
- 044-023,-44,23,771175.0,1613405.0,1600.94,-0.18,1330.71,31.21,14.23,26.62
611
- 044-024,-44,24,771275.0,1613405.0,1614.25,-0.18,1238.72,14.23,38.7,25.57
612
- 044-025,-44,25,771375.0,1613405.0,1626.78,-0.23,1150.12,30.84,40.09,25.16
613
- 044-026,-44,26,771475.0,1613405.0,1621.77,-0.18,1062.08,30.84,72.4,24.27
614
- 044-027,-44,27,771575.0,1613405.0,1649.29,-0.23,972.63,38.89,79.31,23.43
615
- 044-028,-44,28,771675.0,1613405.0,1695.16,-0.2,888.07,42.45,81.62,23.36
616
- 044-029,-44,29,771775.0,1613405.0,1734.25,-0.2,806.75,18.17,46.03,24.58
617
- 044-030,-44,30,771875.0,1613405.0,1764.05,-0.15,727.58,18.17,43.65,25.18
618
- 044-031,-44,31,771975.0,1613405.0,1767.19,-0.15,656.76,18.17,46.47,25.59
619
- 044-032,-44,32,772075.0,1613405.0,1779.07,-0.15,593.89,28.0,40.68,25.8
620
- 044-033,-44,33,772175.0,1613405.0,1798.71,-0.15,540.59,40.57,28.0,26.29
621
- 044-034,-44,34,772275.0,1613405.0,1802.96,-0.21,503.49,28.0,65.95,25.62
622
- 044-035,-44,35,772375.0,1613405.0,1775.73,-0.21,483.98,38.87,40.11,25.18
623
- 044-036,-44,36,772475.0,1613405.0,1746.24,-0.29,484.51,38.87,66.3,23.98
624
- 045-020,-45,20,770875.0,1613305.0,1564.45,-0.23,1422.78,23.93,81.21,24.42
625
- 045-021,-45,21,770975.0,1613305.0,1580.31,-0.28,1466.59,23.93,61.82,25.75
626
- 045-022,-45,22,771075.0,1613305.0,1594.24,-0.21,1452.61,14.23,31.21,26.88
627
- 045-023,-45,23,771175.0,1613305.0,1599.32,-0.2,1375.48,14.23,47.27,26.02
628
- 045-024,-45,24,771275.0,1613305.0,1614.14,-0.21,1284.78,14.23,46.84,25.6
629
- 045-025,-45,25,771375.0,1613305.0,1631.84,-0.23,1197.73,26.11,35.61,25.21
630
- 045-026,-45,26,771475.0,1613305.0,1643.89,-0.23,1112.37,35.61,38.89,25.1
631
- 045-027,-45,27,771575.0,1613305.0,1654.33,-0.23,1026.99,38.89,70.64,24.05
632
- 045-028,-45,28,771675.0,1613305.0,1697.45,-0.2,947.28,46.03,86.19,23.11
633
- 045-029,-45,29,771775.0,1613305.0,1740.9,-0.2,871.49,43.65,47.66,24.36
634
- 045-030,-45,30,771875.0,1613305.0,1780.4,-0.14,798.72,42.2,51.23,24.57
635
- 045-031,-45,31,771975.0,1613305.0,1798.58,-0.15,734.72,40.68,48.33,24.63
636
- 045-032,-45,32,772075.0,1613305.0,1796.47,-0.15,679.09,28.0,50.22,24.98
637
- 045-033,-45,33,772175.0,1613305.0,1800.73,-0.15,633.0,28.0,40.57,25.86
638
- 045-034,-45,34,772275.0,1613305.0,1804.59,-0.13,601.63,28.0,54.01,25.13
639
- 045-035,-45,35,772375.0,1613305.0,1788.05,-0.15,585.4,33.18,38.87,25.13
640
- 045-036,-45,36,772475.0,1613305.0,1771.76,-0.28,586.03,33.18,43.23,24.38
641
- 046-018,-46,18,770675.0,1613205.0,1584.34,-0.16,1206.92,11.41,58.36,25.77
642
- 046-019,-46,19,770775.0,1613205.0,1584.9,-0.28,1290.82,34.41,49.7,26.02
643
- 046-020,-46,20,770875.0,1613205.0,1568.65,-0.28,1350.86,23.93,79.76,25.03
644
- 046-021,-46,21,770975.0,1613205.0,1584.11,-0.28,1371.86,30.94,23.93,26.26
645
- 046-022,-46,22,771075.0,1613205.0,1592.91,-0.21,1399.07,23.93,30.94,26.67
646
- 046-023,-46,23,771175.0,1613205.0,1607.57,-0.18,1402.9,15.18,40.21,25.48
647
- 046-024,-46,24,771275.0,1613205.0,1618.89,-0.21,1332.96,15.18,26.11,25.81
648
- 046-025,-46,25,771375.0,1613205.0,1631.48,-0.22,1249.01,15.18,52.42,25.08
649
- 046-026,-46,26,771475.0,1613205.0,1649.66,-0.21,1167.39,30.25,47.83,24.86
650
- 046-027,-46,27,771575.0,1613205.0,1667.57,-0.22,1086.34,30.25,53.08,24.45
651
- 046-028,-46,28,771675.0,1613205.0,1685.63,-0.2,1011.31,37.04,76.94,23.67
652
- 046-029,-46,29,771775.0,1613205.0,1727.76,-0.2,940.65,37.04,57.94,24.39
653
- 046-030,-46,30,771875.0,1613205.0,1768.45,-0.14,873.59,35.28,45.96,24.83
654
- 046-031,-46,31,771975.0,1613205.0,1806.64,-0.11,815.48,27.9,42.2,25.11
655
- 046-032,-46,32,772075.0,1613205.0,1826.06,-0.11,765.73,27.9,44.98,24.92
656
- 046-033,-46,33,772175.0,1613205.0,1812.78,-0.12,725.17,27.9,44.22,25.04
657
- 046-034,-46,34,772275.0,1613205.0,1820.73,-0.12,697.95,33.18,42.56,24.64
658
- 046-035,-46,35,772375.0,1613205.0,1802.82,-0.23,684.0,38.87,33.18,24.83
659
- 046-036,-46,36,772475.0,1613205.0,1769.29,-0.26,684.14,33.18,57.31,24.28
660
- 047-017,-47,17,770575.0,1613105.0,1577.64,-0.23,1092.22,6.19,54.72,26.89
661
- 047-018,-47,18,770675.0,1613105.0,1588.36,-0.23,1184.37,47.35,34.41,26.83
662
- 047-019,-47,19,770775.0,1613105.0,1592.56,-0.23,1236.15,34.41,48.12,26.36
663
- 047-020,-47,20,770875.0,1613105.0,1591.72,-0.21,1252.01,23.93,61.77,25.5
664
- 047-021,-47,21,770975.0,1613105.0,1588.76,-0.21,1276.17,23.93,46.58,25.78
665
- 047-022,-47,22,771075.0,1613105.0,1604.72,-0.2,1305.87,23.93,43.36,25.65
666
- 047-023,-47,23,771175.0,1613105.0,1611.5,-0.2,1342.07,15.18,40.59,25.57
667
- 047-024,-47,24,771275.0,1613105.0,1623.15,-0.21,1361.94,26.11,15.18,26.14
668
- 047-025,-47,25,771375.0,1613105.0,1640.62,-0.22,1305.65,15.18,48.96,25.66
669
- 047-026,-47,26,771475.0,1613105.0,1661.52,-0.22,1227.89,36.61,30.25,24.96
670
- 047-027,-47,27,771575.0,1613105.0,1688.07,-0.22,1151.11,30.25,37.13,24.86
671
- 047-028,-47,28,771675.0,1613105.0,1706.38,-0.18,1080.56,30.96,37.04,24.73
672
- 047-029,-47,29,771775.0,1613105.0,1727.18,-0.17,1014.68,30.96,51.97,24.6
673
- 047-030,-47,30,771875.0,1613105.0,1750.37,-0.14,952.84,30.96,61.57,24.99
674
- 047-031,-47,31,771975.0,1613105.0,1783.85,-0.11,899.87,27.9,35.28,25.76
675
- 047-032,-47,32,772075.0,1613105.0,1826.48,-0.14,855.04,35.28,27.9,25.76
676
- 047-033,-47,33,772175.0,1613105.0,1833.76,-0.14,818.92,27.9,50.97,24.97
677
- 047-034,-47,34,772275.0,1613105.0,1834.64,-0.14,794.93,30.83,42.58,24.66
678
- 047-035,-47,35,772375.0,1613105.0,1798.79,-0.23,782.71,30.83,42.62,24.26
679
- 047-036,-47,36,772475.0,1613105.0,1776.38,-0.25,783.25,33.18,73.19,22.86
680
- 048-017,-48,17,770575.0,1613005.0,1584.01,-0.22,1071.31,6.19,53.28,26.9
681
- 048-018,-48,18,770675.0,1613005.0,1591.17,-0.19,1126.89,25.85,47.35,26.23
682
- 048-019,-48,19,770775.0,1613005.0,1602.1,-0.22,1137.01,25.85,79.34,25.27
683
- 048-020,-48,20,770875.0,1613005.0,1611.47,-0.19,1153.07,22.81,67.03,25.27
684
- 048-021,-48,21,770975.0,1613005.0,1610.39,-0.21,1178.14,18.87,66.67,25.85
685
- 048-022,-48,22,771075.0,1613005.0,1605.51,-0.17,1210.26,18.87,41.5,25.94
686
- 048-023,-48,23,771175.0,1613005.0,1620.01,-0.17,1249.36,15.18,32.31,26.22
687
- 048-024,-48,24,771275.0,1613005.0,1630.39,-0.12,1296.35,15.18,31.91,26.46
688
- 048-025,-48,25,771375.0,1613005.0,1655.46,-0.12,1332.09,15.18,44.81,25.52
689
- 048-026,-48,26,771475.0,1613005.0,1686.82,-0.25,1294.34,30.25,36.61,24.75
690
- 048-027,-48,27,771575.0,1613005.0,1707.99,-0.25,1222.63,30.25,40.33,24.3
691
- 048-028,-48,28,771675.0,1613005.0,1737.01,-0.25,1156.41,30.96,64.94,24.66
692
- 048-029,-48,29,771775.0,1613005.0,1758.81,-0.15,1095.09,37.04,30.96,25.33
693
- 048-030,-48,30,771875.0,1613005.0,1760.65,-0.13,1038.06,24.38,45.54,25.47
694
- 048-031,-48,31,771975.0,1613005.0,1781.28,-0.13,989.66,24.38,61.4,25.61
695
- 048-032,-48,32,772075.0,1613005.0,1805.06,-0.14,949.08,24.38,41.05,25.68
696
- 048-033,-48,33,772175.0,1613005.0,1837.05,-0.13,916.67,19.86,42.45,25.51
697
- 048-034,-48,34,772275.0,1613005.0,1843.3,-0.14,895.3,19.86,30.83,25.65
698
- 048-035,-48,35,772375.0,1613005.0,1809.01,-0.23,884.47,19.86,59.75,24.3
699
- 048-036,-48,36,772475.0,1613005.0,1787.98,-0.25,884.88,29.76,59.27,22.67
700
- 049-016,-49,16,770475.0,1612905.0,1568.68,-0.23,973.0,0.03,60.45,26.8
701
- 049-017,-49,17,770575.0,1612905.0,1589.87,-0.22,1026.19,24.8,27.97,27.07
702
- 049-018,-49,18,770675.0,1612905.0,1598.47,-0.22,1030.47,27.09,25.85,26.29
703
- 049-019,-49,19,770775.0,1612905.0,1617.68,-0.22,1038.84,23.23,53.63,25.6
704
- 049-020,-49,20,770875.0,1612905.0,1630.87,-0.21,1056.39,21.97,32.2,26.53
705
- 049-021,-49,21,770975.0,1612905.0,1623.43,-0.21,1083.7,16.44,22.81,27.75
706
- 049-022,-49,22,771075.0,1612905.0,1617.32,-0.17,1118.54,16.44,18.87,27.77
707
- 049-023,-49,23,771175.0,1612905.0,1628.63,-0.17,1160.73,16.44,26.87,26.7
708
- 049-024,-49,24,771275.0,1612905.0,1644.38,-0.15,1211.18,26.87,28.63,26.61
709
- 049-025,-49,25,771375.0,1612905.0,1667.78,-0.12,1266.12,28.63,35.56,25.57
710
- 049-026,-49,26,771475.0,1612905.0,1706.08,-0.25,1315.61,35.56,47.6,24.45
711
- 049-027,-49,27,771575.0,1612905.0,1741.84,-0.24,1294.67,36.61,90.07,23.21
712
- 049-028,-49,28,771675.0,1612905.0,1772.07,-0.25,1233.65,30.96,60.71,24.31
713
- 049-029,-49,29,771775.0,1612905.0,1775.09,-0.15,1176.36,30.96,38.77,25.82
714
- 049-030,-49,30,771875.0,1612905.0,1775.53,-0.15,1123.45,22.68,45.14,26.29
715
- 049-031,-49,31,771975.0,1612905.0,1792.98,-0.13,1078.89,22.68,24.38,26.8
716
- 049-032,-49,32,772075.0,1612905.0,1803.9,-0.14,1041.8,22.68,41.73,26.11
717
- 049-033,-49,33,772175.0,1612905.0,1831.81,-0.14,1012.35,19.86,41.0,25.91
718
- 049-034,-49,34,772275.0,1612905.0,1842.55,-0.14,993.04,29.76,19.86,26.49
719
- 049-035,-49,35,772375.0,1612905.0,1827.26,-0.22,983.29,19.86,29.76,26.08
720
- 049-036,-49,36,772475.0,1612905.0,1805.17,-0.3,983.66,29.76,56.64,24.13
721
- 050-017,-50,17,770575.0,1612805.0,1594.69,-0.18,933.07,2.34,27.09,26.7
722
- 050-018,-50,18,770675.0,1612805.0,1607.54,-0.19,931.6,18.16,47.25,26.34
723
- 050-019,-50,19,770775.0,1612805.0,1626.03,-0.19,940.84,23.23,45.63,26.26
724
- 050-020,-50,20,770875.0,1612805.0,1639.71,-0.19,960.18,21.97,23.23,26.94
725
- 050-021,-50,21,770975.0,1612805.0,1626.45,-0.14,990.15,16.44,21.97,28.2
726
- 050-022,-50,22,771075.0,1612805.0,1623.88,-0.18,1028.15,18.87,16.44,28.01
727
- 050-023,-50,23,771175.0,1612805.0,1637.52,-0.18,1073.9,16.44,45.22,26.22
728
- 050-024,-50,24,771275.0,1612805.0,1666.4,-0.18,1128.24,22.15,32.79,25.71
729
- 050-025,-50,25,771375.0,1612805.0,1684.07,-0.11,1187.02,22.15,59.8,24.78
730
- 050-026,-50,26,771475.0,1612805.0,1726.4,-0.25,1250.84,22.15,69.43,23.59
731
- 050-027,-50,27,771575.0,1612805.0,1769.1,-0.25,1313.81,16.79,87.03,22.55
732
- 050-028,-50,28,771675.0,1612805.0,1801.47,-0.25,1311.21,16.79,42.52,24.5
733
- 050-029,-50,29,771775.0,1612805.0,1802.87,-0.13,1260.15,16.79,50.26,25.87
734
- 050-030,-50,30,771875.0,1612805.0,1797.99,-0.15,1210.91,22.68,34.18,26.4
735
- 050-031,-50,31,771975.0,1612805.0,1806.41,-0.13,1169.69,24.38,22.68,26.92
736
- 050-032,-50,32,772075.0,1612805.0,1818.41,-0.13,1135.56,22.68,43.94,26.29
737
- 050-033,-50,33,772175.0,1612805.0,1843.19,-0.16,1108.61,19.86,36.82,25.74
738
- 050-034,-50,34,772275.0,1612805.0,1843.95,-0.22,1091.01,19.86,31.65,25.87
739
- 050-035,-50,35,772375.0,1612805.0,1819.63,-0.22,1082.14,19.86,37.16,26.11
740
- 050-036,-50,36,772475.0,1612805.0,1801.58,-0.3,1081.82,29.76,55.07,24.6
741
- 051-017,-51,17,770575.0,1612705.0,1590.83,-0.12,832.09,2.34,18.16,27.1
742
- 051-018,-51,18,770675.0,1612705.0,1612.29,-0.18,829.75,5.25,33.77,26.62
743
- 051-019,-51,19,770775.0,1612705.0,1631.12,-0.18,840.12,23.23,24.07,26.48
744
- 051-020,-51,20,770875.0,1612705.0,1642.26,-0.18,861.72,14.71,38.0,26.21
745
- 051-021,-51,21,770975.0,1612705.0,1632.81,-0.11,894.99,14.71,32.45,27.04
746
- 051-022,-51,22,771075.0,1612705.0,1637.76,-0.18,936.86,14.71,32.01,26.48
747
- 051-023,-51,23,771175.0,1612705.0,1650.66,-0.16,986.86,16.44,43.18,25.46
748
- 051-024,-51,24,771275.0,1612705.0,1677.73,-0.18,1045.73,9.25,34.33,25.43
749
- 051-025,-51,25,771375.0,1612705.0,1699.05,-0.12,1108.88,9.25,22.15,24.83
750
- 051-026,-51,26,771475.0,1612705.0,1730.53,-0.24,1176.95,9.25,61.44,23.38
751
- 051-027,-51,27,771575.0,1612705.0,1785.11,-0.24,1251.43,16.79,77.61,23.01
752
- 051-028,-51,28,771675.0,1612705.0,1825.69,-0.24,1323.82,36.62,16.79,24.47
753
- 051-029,-51,29,771775.0,1612705.0,1825.62,-0.15,1342.84,16.79,36.62,25.34
754
- 051-030,-51,30,771875.0,1612705.0,1811.73,-0.21,1302.75,22.68,34.19,25.6
755
- 051-031,-51,31,771975.0,1612705.0,1824.57,-0.21,1264.53,22.68,49.7,25.42
756
- 051-032,-51,32,772075.0,1612705.0,1842.83,-0.22,1233.03,22.68,60.0,24.99
757
- 051-033,-51,33,772175.0,1612705.0,1853.9,-0.26,1208.26,31.65,44.71,24.7
758
- 051-034,-51,34,772275.0,1612705.0,1839.36,-0.28,1192.13,31.65,70.97,23.78
759
- 051-035,-51,35,772375.0,1612705.0,1817.91,-0.28,1184.01,31.65,79.41,23.41
760
- 052-018,-52,18,770675.0,1612605.0,1611.08,-0.04,730.94,2.36,25.24,25.76
761
- 052-019,-52,19,770775.0,1612605.0,1639.11,-0.09,742.69,7.93,33.39,25.6
762
- 052-020,-52,20,770875.0,1612605.0,1650.37,-0.09,767.05,14.71,36.37,26.07
763
- 052-021,-52,21,770975.0,1612605.0,1646.9,-0.11,804.25,20.33,14.71,27.18
764
- 052-022,-52,22,771075.0,1612605.0,1654.81,-0.18,850.6,14.71,36.22,26.77
765
- 052-023,-52,23,771175.0,1612605.0,1668.46,-0.18,905.38,24.47,48.48,26.12
766
- 052-024,-52,24,771275.0,1612605.0,1686.68,-0.18,969.21,9.25,29.67,25.84
767
- 052-025,-52,25,771375.0,1612605.0,1706.35,-0.15,1037.04,22.15,9.25,24.74
768
- 052-026,-52,26,771475.0,1612605.0,1736.37,-0.15,1109.53,9.25,52.67,23.83
769
- 052-027,-52,27,771575.0,1612605.0,1778.95,-0.16,1188.24,16.79,50.41,23.89
770
- 052-028,-52,28,771675.0,1612605.0,1813.65,-0.17,1267.82,16.79,42.02,23.93
771
- 052-029,-52,29,771775.0,1612605.0,1843.67,-0.17,1348.23,16.79,45.44,23.85
772
- 052-030,-52,30,771875.0,1612605.0,1846.22,-0.21,1385.08,34.19,78.12,23.79
773
- 052-031,-52,31,771975.0,1612605.0,1862.89,-0.25,1357.57,34.19,83.91,23.44
774
- 052-032,-52,32,772075.0,1612605.0,1867.45,-0.25,1328.28,43.26,58.1,23.73
775
- 052-033,-52,33,772175.0,1612605.0,1852.23,-0.26,1305.32,44.71,65.2,23.07
776
- 052-034,-52,34,772275.0,1612605.0,1837.44,-0.28,1289.88,44.71,73.81,22.84
777
- 052-035,-52,35,772375.0,1612605.0,1833.54,-0.26,1274.9,53.46,78.55,23.02
778
- 053-019,-53,19,770775.0,1612505.0,1632.89,-0.04,645.74,7.93,20.25,24.78
779
- 053-020,-53,20,770875.0,1612505.0,1658.82,-0.04,673.61,14.29,20.33,25.99
780
- 053-021,-53,21,770975.0,1612505.0,1661.85,-0.11,715.68,14.71,21.22,26.73
781
- 053-022,-53,22,771075.0,1612505.0,1658.81,-0.16,767.39,14.71,48.41,26.56
782
- 053-023,-53,23,771175.0,1612505.0,1674.23,-0.17,827.69,24.47,37.86,26.03
783
- 053-024,-53,24,771275.0,1612505.0,1686.57,-0.19,897.06,9.25,24.47,24.91
784
- 053-025,-53,25,771375.0,1612505.0,1707.57,-0.19,969.94,9.25,34.68,24.03
785
- 053-026,-53,26,771475.0,1612505.0,1743.33,-0.19,1047.09,9.25,46.1,24.86
786
- 053-027,-53,27,771575.0,1612505.0,1769.04,-0.19,1130.16,42.02,36.73,24.82
787
- 053-028,-53,28,771675.0,1612505.0,1806.74,-0.17,1213.55,36.73,69.03,23.66
788
- 053-029,-53,29,771775.0,1612505.0,1850.33,-0.16,1299.12,42.02,79.31,23.41
789
- 053-030,-53,30,771875.0,1612505.0,1881.78,-0.21,1388.01,34.7,43.09,23.93
790
- 053-031,-53,31,771975.0,1612505.0,1891.98,-0.25,1439.3,34.7,43.26,24.57
791
- 053-032,-53,32,772075.0,1612505.0,1870.94,-0.24,1424.04,34.7,88.05,23.68
792
- 053-033,-53,33,772175.0,1612505.0,1869.24,-0.26,1400.28,58.1,93.98,23.06
793
- 054-018,-54,18,770675.0,1612405.0,1623.12,-0.08,530.28,2.36,30.74,25.64
794
- 054-019,-54,19,770775.0,1612405.0,1618.84,-0.08,546.63,7.93,14.29,25.65
795
- 054-020,-54,20,770875.0,1612405.0,1641.51,-0.08,579.28,14.29,28.43,26.54
796
- 054-021,-54,21,770975.0,1612405.0,1664.26,-0.07,627.7,20.33,26.68,27.11
797
- 054-022,-54,22,771075.0,1612405.0,1671.97,-0.12,686.08,21.22,32.92,27.02
798
- 054-023,-54,23,771175.0,1612405.0,1673.85,-0.17,752.92,24.47,35.14,26.25
799
- 054-024,-54,24,771275.0,1612405.0,1697.82,-0.19,828.58,24.47,78.86,24.04
800
- 054-025,-54,25,771375.0,1612405.0,1724.32,-0.19,906.98,24.47,76.88,23.89
801
- 054-026,-54,26,771475.0,1612405.0,1737.41,-0.19,989.05,34.38,62.59,24.94
802
- 054-027,-54,27,771575.0,1612405.0,1757.49,-0.19,1076.6,35.41,52.35,24.78
803
- 054-028,-54,28,771675.0,1612405.0,1801.26,-0.17,1163.82,35.41,68.58,23.85
804
- 054-029,-54,29,771775.0,1612405.0,1848.89,-0.17,1252.57,43.09,46.74,24.51
805
- 055-018,-55,18,770675.0,1612305.0,1637.84,-0.11,432.06,8.25,16.71,26.43
806
- 055-019,-55,19,770775.0,1612305.0,1636.83,-0.12,451.66,14.29,33.18,26.76
807
- 055-020,-55,20,770875.0,1612305.0,1631.0,-0.12,490.69,9.87,22.28,27.02
808
- 055-021,-55,21,770975.0,1612305.0,1659.87,-0.12,547.02,9.87,44.36,26.73
809
- 055-022,-55,22,771075.0,1612305.0,1681.27,-0.06,613.12,9.87,32.27,26.77
810
- 055-023,-55,23,771175.0,1612305.0,1691.35,-0.17,687.12,32.27,45.77,26.77
811
- 055-024,-55,24,771275.0,1612305.0,1704.44,-0.19,769.28,34.38,51.92,25.31
812
- 055-025,-55,25,771375.0,1612305.0,1723.4,-0.19,853.14,37.69,34.38,25.26
813
- 055-026,-55,26,771475.0,1612305.0,1735.27,-0.19,939.91,12.5,50.23,25.58
814
- 055-027,-55,27,771575.0,1612305.0,1760.97,-0.19,1031.58,12.5,35.41,25.68
815
- 055-028,-55,28,771675.0,1612305.0,1785.85,-0.13,1121.93,12.5,44.12,25.22
816
- 056-019,-56,19,770775.0,1612205.0,1647.82,-0.23,358.9,16.71,26.35,26.21
817
- 056-020,-56,20,770875.0,1612205.0,1640.21,-0.23,406.87,9.87,45.09,27.37
818
- 056-021,-56,21,770975.0,1612205.0,1640.58,-0.12,473.28,22.28,9.87,27.81
819
- 056-022,-56,22,771075.0,1612205.0,1657.77,-0.09,548.32,9.87,42.96,26.39
820
- 056-023,-56,23,771175.0,1612205.0,1677.68,-0.16,629.98,32.27,70.21,25.46
821
- 056-024,-56,24,771275.0,1612205.0,1699.41,-0.16,718.67,34.38,37.69,25.19
822
- 056-025,-56,25,771375.0,1612205.0,1723.19,-0.16,807.72,33.36,59.15,25.11
823
- 056-026,-56,26,771475.0,1612205.0,1741.76,-0.16,898.81,12.5,54.95,25.54
824
- 056-027,-56,27,771575.0,1612205.0,1760.47,-0.11,993.89,17.08,12.5,26.57
825
- 057-019,-57,19,770775.0,1612105.0,1641.22,-0.21,268.16,19.8,57.59,24.97
826
- 057-020,-57,20,770875.0,1612105.0,1656.97,-0.23,329.5,9.87,23.43,27.44
827
- 057-021,-57,21,770975.0,1612105.0,1649.9,-0.12,408.67,9.87,29.64,27.58
828
- 057-022,-57,22,771075.0,1612105.0,1654.41,-0.12,493.59,9.87,39.86,25.94
829
- 057-023,-57,23,771175.0,1612105.0,1683.12,-0.18,582.86,37.69,43.05,24.49
830
- 057-024,-57,24,771275.0,1612105.0,1702.08,-0.18,677.63,23.86,49.91,24.01
831
- 057-025,-57,25,771375.0,1612105.0,1719.47,-0.18,771.38,23.86,38.35,24.85
832
- 057-026,-57,26,771475.0,1612105.0,1738.16,-0.16,865.8,12.5,33.36,25.73
833
- 058-019,-58,19,770775.0,1612005.0,1655.89,-0.23,190.83,19.8,30.8,24.68
834
- 058-020,-58,20,770875.0,1612005.0,1670.61,-0.23,270.52,18.51,21.92,27.32
835
- 058-021,-58,21,770975.0,1612005.0,1673.41,-0.09,362.65,21.92,18.51,27.23
836
- 058-022,-58,22,771075.0,1612005.0,1663.18,-0.12,456.04,18.51,44.02,25.77
837
- 058-023,-58,23,771175.0,1612005.0,1670.72,-0.18,551.37,14.97,44.63,24.31
838
- 058-024,-58,24,771275.0,1612005.0,1690.15,-0.15,650.74,4.85,64.67,24.13
839
- 058-025,-58,25,771375.0,1612005.0,1709.79,-0.18,747.0,1.5,23.86,25.29
840
- 059-019,-59,19,770775.0,1611905.0,1647.92,-0.28,148.03,19.8,48.49,24.0
841
- 059-020,-59,20,770875.0,1611905.0,1677.06,-0.28,238.75,18.51,33.35,25.49
842
- 059-021,-59,21,770975.0,1611905.0,1686.62,-0.28,339.48,18.51,30.35,26.11
843
- 059-022,-59,22,771075.0,1611905.0,1689.42,-0.16,437.82,14.18,23.03,25.85
844
- 059-023,-59,23,771175.0,1611905.0,1678.54,-0.18,536.4,14.18,39.61,25.19
845
- 059-024,-59,24,771275.0,1611905.0,1680.42,-0.18,637.81,4.85,14.97,25.52
846
- 060-019,-60,19,770775.0,1611805.0,1642.28,-0.28,161.39,28.43,53.46,23.42
847
- 060-020,-60,20,770875.0,1611805.0,1671.2,-0.24,237.4,30.35,60.49,23.32
848
- 060-021,-60,21,770975.0,1611805.0,1691.36,-0.28,332.33,23.03,47.42,24.51
849
- 060-022,-60,22,771075.0,1611805.0,1703.1,-0.16,425.99,14.18,29.88,25.32
850
- 060-023,-60,23,771175.0,1611805.0,1707.76,-0.16,520.33,14.97,14.18,25.7
851
- 060-024,-60,24,771275.0,1611805.0,1713.53,-0.16,618.17,4.85,41.29,26.07
852
- 060-025,-60,25,771375.0,1611805.0,1700.66,-0.15,712.04,0.55,16.34,26.51
853
- 061-019,-61,19,770775.0,1611705.0,1634.24,-0.28,124.37,44.13,36.33,24.07
854
- 061-020,-61,20,770875.0,1611705.0,1661.71,-0.28,206.02,36.33,57.26,23.27
855
- 061-021,-61,21,770975.0,1611705.0,1695.57,-0.28,303.97,29.88,41.55,23.75
856
- 061-022,-61,22,771075.0,1611705.0,1711.65,-0.23,400.87,14.18,38.46,24.46
857
- 061-023,-61,23,771175.0,1611705.0,1720.04,-0.21,498.51,14.18,38.16,24.94
858
- 061-024,-61,24,771275.0,1611705.0,1728.92,-0.21,599.13,14.18,35.42,25.52
859
- 061-025,-61,25,771375.0,1611705.0,1717.96,-0.18,671.7,0.55,59.62,24.83
860
- 062-019,-62,19,770775.0,1611605.0,1624.01,-0.24,98.04,36.33,48.76,24.77
861
- 062-020,-62,20,770875.0,1611605.0,1658.78,-0.25,192.4,36.33,66.67,23.29
862
- 062-021,-62,21,770975.0,1611605.0,1690.45,-0.25,293.83,21.06,59.58,22.87
863
- 062-022,-62,22,771075.0,1611605.0,1703.04,-0.25,392.53,21.06,46.21,23.47
864
- 062-023,-62,23,771175.0,1611605.0,1716.13,-0.21,490.36,21.06,49.52,23.87
865
- 062-024,-62,24,771275.0,1611605.0,1729.37,-0.21,562.18,31.54,44.96,24.52
866
- 062-025,-62,25,771375.0,1611605.0,1739.86,-0.19,584.14,35.42,47.55,23.83
867
- 062-026,-62,26,771475.0,1611605.0,1730.78,-0.19,584.61,4.5,60.76,24.47
868
- 063-019,-63,19,770775.0,1611505.0,1632.82,-0.25,127.42,48.76,49.04,23.96
869
- 063-020,-63,20,770875.0,1611505.0,1661.0,-0.25,198.62,39.3,59.8,22.8
870
- 063-021,-63,21,770975.0,1611505.0,1698.32,-0.25,292.78,21.06,55.33,23.0
871
- 063-022,-63,22,771075.0,1611505.0,1710.83,-0.25,386.57,28.56,21.06,23.56
872
- 063-023,-63,23,771175.0,1611505.0,1715.2,-0.21,446.5,21.06,31.54,23.8
873
- 063-024,-63,24,771275.0,1611505.0,1728.26,-0.21,470.01,29.65,46.05,24.16
874
- 063-025,-63,25,771375.0,1611505.0,1746.9,-0.19,483.59,38.43,67.03,23.58
875
- 063-026,-63,26,771475.0,1611505.0,1751.79,-0.19,483.1,6.5,64.07,24.56
876
- 063-027,-63,27,771575.0,1611505.0,1745.46,-0.13,501.09,4.21,21.35,26.23
877
- 064-019,-64,19,770775.0,1611405.0,1648.0,-0.25,76.08,49.04,71.1,22.96
878
- 064-020,-64,20,770875.0,1611405.0,1681.69,-0.28,168.41,39.3,75.53,22.73
879
- 064-021,-64,21,770975.0,1611405.0,1697.26,-0.28,267.3,21.06,39.3,23.77
880
- 064-022,-64,22,771075.0,1611405.0,1703.15,-0.28,340.77,21.06,28.56,24.02
881
- 064-023,-64,23,771175.0,1611405.0,1717.64,-0.28,351.92,21.06,29.65,23.68
882
- 064-024,-64,24,771275.0,1611405.0,1728.4,-0.28,375.98,29.65,38.43,23.93
883
- 064-025,-64,25,771375.0,1611405.0,1737.83,-0.28,385.5,35.01,68.4,23.19
884
- 064-026,-64,26,771475.0,1611405.0,1756.86,-0.28,384.81,21.35,41.51,24.27
885
- 064-027,-64,27,771575.0,1611405.0,1764.18,-0.21,408.48,4.21,31.8,25.92
886
- 065-020,-65,20,770875.0,1611305.0,1667.36,-0.31,159.75,38.64,68.45,22.36
887
- 065-021,-65,21,770975.0,1611305.0,1691.27,-0.34,250.97,28.56,59.66,22.45
888
- 065-022,-65,22,771075.0,1611305.0,1714.2,-0.34,257.83,28.56,61.42,22.48
889
- 065-023,-65,23,771175.0,1611305.0,1722.4,-0.34,254.32,28.56,47.5,22.9
890
- 065-024,-65,24,771275.0,1611305.0,1741.45,-0.31,282.16,29.65,35.01,23.23
891
- 065-025,-65,25,771375.0,1611305.0,1750.2,-0.26,287.03,35.01,52.42,22.47
892
- 065-026,-65,26,771475.0,1611305.0,1762.75,-0.34,287.02,31.8,46.84,23.2
893
- 065-027,-65,27,771575.0,1611305.0,1765.09,-0.34,318.2,4.21,54.29,24.37
894
- 066-021,-66,21,770975.0,1611205.0,1665.06,-0.34,213.49,43.52,38.64,21.66
895
- 066-022,-66,22,771075.0,1611205.0,1699.03,-0.31,161.73,38.64,43.52,21.44
896
- 066-023,-66,23,771175.0,1611205.0,1727.4,-0.34,155.32,35.01,46.21,21.79
897
- 066-024,-66,24,771275.0,1611205.0,1750.55,-0.31,184.19,35.01,41.0,22.17
898
- 066-025,-66,25,771375.0,1611205.0,1760.44,-0.29,185.58,35.01,45.96,22.3
899
- 066-026,-66,26,771475.0,1611205.0,1757.12,-0.38,187.62,36.59,44.38,22.72
900
- 067-023,-67,23,771175.0,1611105.0,1704.27,-0.34,61.44,41.0,54.32,21.29
901
- 067-024,-67,24,771275.0,1611105.0,1741.46,-0.31,87.4,36.59,44.33,21.42
902
- 067-025,-67,25,771375.0,1611105.0,1745.58,-0.35,87.12,41.0,36.59,22.03
903
- 067-026,-67,26,771475.0,1611105.0,1724.78,-0.38,96.7,36.59,56.25,22.3
904
- 068-024,-68,24,771275.0,1611005.0,1702.82,-0.3,24.61,54.93,64.53,21.49
905
- 068-025,-68,25,771375.0,1611005.0,1708.71,-0.35,22.96,50.73,54.93,21.57