diff --git a/src/core/water_quality_inversion_pipeline_GUI.py b/src/core/water_quality_inversion_pipeline_GUI.py index 52fbc93..91e7eec 100644 --- a/src/core/water_quality_inversion_pipeline_GUI.py +++ b/src/core/water_quality_inversion_pipeline_GUI.py @@ -2284,11 +2284,15 @@ class WaterQualityInversionPipeline: else: raise ValueError("请先执行步骤6: 训练机器学习模型,或提供models_dir参数") - # 检查prediction_dir中是否已有预测结果文件 + # 设置机器学习预测输出子目录 + ml_prediction_dir = self.prediction_dir / "Machine_Learning_Prediction" + ml_prediction_dir.mkdir(parents=True, exist_ok=True) + + # 检查Machine_Learning_Prediction子目录中是否已有预测结果文件 prediction_files = {} - if self.prediction_dir.exists(): + if ml_prediction_dir.exists(): # 查找所有CSV预测结果文件 - csv_files = list(self.prediction_dir.glob('*.csv')) + csv_files = list(ml_prediction_dir.glob('*.csv')) if csv_files: # 从文件名提取目标参数名(假设文件名为"target_name_prediction.csv") for csv_file in csv_files: @@ -2312,11 +2316,11 @@ class WaterQualityInversionPipeline: # 检查是否所有目标参数都有预测文件 missing_targets = [t for t in target_folders if t not in prediction_files] if not missing_targets: - print(f"检测到已存在的预测结果文件,直接使用: {self.prediction_dir}") + print(f"检测到已存在的预测结果文件,直接使用: {ml_prediction_dir}") print(f"找到 {len(prediction_files)} 个预测结果文件") step_end_time = time.time() self._record_step_time("步骤8: 预测水质参数", step_start_time, step_end_time, status="skipped") - print(f"预测结果已设置: {self.prediction_dir}") + print(f"预测结果已设置: {ml_prediction_dir}") return prediction_files else: print(f"检测到部分预测结果文件,缺少以下目标参数: {missing_targets}") @@ -2329,7 +2333,7 @@ class WaterQualityInversionPipeline: all_results = inferencer.batch_inference_multi_models( models_root_dir=models_path, sampling_csv_path=sampling_csv_path, - output_dir=str(self.prediction_dir), + output_dir=str(ml_prediction_dir), metric=metric, prediction_column=prediction_column, output_format='csv' @@ -2342,7 +2346,7 @@ class WaterQualityInversionPipeline: step_end_time = time.time() self._record_step_time("步骤8: 预测水质参数", step_start_time, step_end_time) - print(f"预测完成,结果保存在: {self.prediction_dir}") + print(f"预测完成,结果保存在: {ml_prediction_dir}") # 生成预测结果报告 try: @@ -3731,15 +3735,17 @@ class WaterQualityInversionPipeline: else: raise ValueError("请先执行步骤6.5: 非经验模型训练,或提供non_empirical_models_dir参数") - # 检查预测目录中是否已有预测结果文件 - prediction_files = {} + # 设置非经验模型预测输出子目录 if output_path is not None: non_empirical_prediction_dir = Path(output_path) else: - # 使用和步骤8相同的prediction_dir目录,但文件名添加non_empirical_前缀 - non_empirical_prediction_dir = self.prediction_dir + # 使用Non_Empirical_Prediction子目录 + non_empirical_prediction_dir = self.prediction_dir / "Non_Empirical_Prediction" non_empirical_prediction_dir.mkdir(parents=True, exist_ok=True) + # 检查预测目录中是否已有预测结果文件 + prediction_files = {} + # 查找汇总CSV文件 summary_path = Path(final_models_dir) / "non_empirical_models_summary.csv" if not summary_path.exists(): @@ -3876,9 +3882,11 @@ class WaterQualityInversionPipeline: else: raise ValueError("请先执行步骤6.75: 自定义回归分析,或提供custom_regression_dir参数") - # 确定输出目录 + # 设置自定义回归预测输出子目录 if output_dir is None: - prediction_output_dir = str(self.prediction_dir) + custom_regression_prediction_dir = self.prediction_dir / "Custom_Regression_Prediction" + custom_regression_prediction_dir.mkdir(parents=True, exist_ok=True) + prediction_output_dir = str(custom_regression_prediction_dir) else: prediction_output_dir = output_dir diff --git a/src/gui/water_quality_gui.py b/src/gui/water_quality_gui.py index 87c7249..a179b14 100644 --- a/src/gui/water_quality_gui.py +++ b/src/gui/water_quality_gui.py @@ -5397,10 +5397,124 @@ class WaterQualityGUI(QMainWindow): # 训练数据模式状态 self.has_training_data = True # 默认有训练数据 + # 步骤输出路径记录 + self.step_outputs = {} # 记录每个步骤的输出路径 + + # 定义步骤依赖关系和标准输出路径 + self._init_step_dependencies() + self.init_ui() self.apply_stylesheet() self._disable_wheel_for_all_spinboxes() + def _init_step_dependencies(self): + """初始化步骤依赖关系和标准输出路径""" + # 定义每个步骤的标准输出路径模式(相对于工作目录) + self.step_default_outputs = { + 'step1': { + 'water_mask_ndwi': '1_water_mask/water_mask_from_ndwi.dat', + 'water_mask_shp': '1_water_mask/water_mask_from_shp.dat', + 'hsi_preview': '1_water_mask/hsi_preview.png', + 'water_mask_overlay': '1_water_mask/water_mask_overlay.png' + }, + 'step2': { + 'glint_mask': '2_glint/severe_glint_area.dat' + }, + 'step3': { + 'deglint_kutser': '3_deglint/deglint_kutser.bsq', + 'deglint_goodman': '3_deglint/deglint_goodman.bsq', + 'deglint_hedley': '3_deglint/deglint_hedley.bsq', + 'deglint_sugar': '3_deglint/deglint_sugar.bsq', + 'deglint_interpolated': '3_deglint/interpolated_*.bsq' # * = interpolation_method + }, + 'step4': { + 'processed_data': '4_processed_data/processed_data.csv' + }, + 'step5': { + 'training_spectra': '5_training_spectra/training_spectra.csv' + }, + 'step5_5': { + 'water_indices': '6_water_quality_indices/water_quality_indices.csv' + }, + 'step6': { + 'models': '7_Supervised_Model_Training/' # 目录,包含各参数子目录 + }, + 'step6_5': { + 'regression_models': '8_Regression_Modeling/' # 目录,包含各参数子目录 + }, + 'step6_75': { + 'custom_regression_models': '9_Custom_Regression_Modeling/' # 目录 + }, + 'step7': { + 'sampling_points': '10_sampling/sampling_spectra.csv' + }, + 'step8': { + 'predictions': '11_12_13_predictions/Machine_Learning_Prediction/' # 目录,包含机器学习预测结果 + }, + 'step8_5': { + 'regression_predictions': '11_12_13_predictions/Non_Empirical_Prediction/' # 目录,包含非经验模型预测结果 + }, + 'step8_75': { + 'custom_predictions': '11_12_13_predictions/Custom_Regression_Prediction/' # 目录,包含自定义回归预测结果 + }, + 'step9': { + 'distribution_maps': '14_visualization/' # 目录,包含专题图 + } + } + + # 定义步骤间的依赖关系:{当前步骤: {输入字段: (依赖步骤, 输出类型, 面板属性名)}} + self.step_dependencies = { + 'step2': { + 'img_path': ('step1', 'reference_img', 'img_file'), # 步骤2需要参考影像 + 'water_mask_path': ('step1', 'water_mask', 'water_mask_file') # 步骤2可选水域掩膜 + }, + 'step3': { + 'img_path': ('step1', 'reference_img', 'img_file'), # 步骤3需要参考影像 + 'water_mask': ('step1', 'water_mask', 'water_mask_file'), # 步骤3需要水域掩膜 + }, + 'step4': { + # 步骤4主要处理CSV文件,一般不依赖前面步骤的输出 + }, + 'step5': { + 'deglint_img_path': ('step3', 'deglint_image', 'deglint_img_file'), # 步骤5需要去耀斑影像 + 'csv_path': ('step4', 'processed_data', 'csv_file'), # 步骤5需要处理后的CSV + 'boundary_mask_path': ('step1', 'water_mask', 'boundary_mask_file'), # 步骤5可选水体掩膜 + 'glint_mask_path': ('step2', 'glint_mask', 'glint_mask_file') # 步骤5可选耀斑掩膜 + }, + 'step5_5': { + 'csv_path': ('step4', 'processed_data', 'csv_file') # 步骤5.5需要处理后的CSV + }, + 'step6': { + 'csv_path': ('step5', 'training_spectra', 'csv_file') # 步骤6需要训练光谱数据 + }, + 'step6_5': { + 'csv_path': ('step5', 'training_spectra', 'csv_file') # 步骤6.5需要训练光谱数据 + }, + 'step6_75': { + 'csv_path': ('step5', 'training_spectra', 'csv_file') # 步骤6.75需要训练光谱数据 + }, + 'step7': { + 'deglint_img_path': ('step3', 'deglint_image', 'deglint_img_file'), # 步骤7需要去耀斑影像 + 'water_mask_path': ('step1', 'water_mask', 'water_mask_file'), # 步骤7需要水域掩膜 + 'glint_mask_path': ('step2', 'glint_mask', 'glint_mask_file') # 步骤7可选耀斑掩膜 + }, + 'step8': { + 'sampling_csv_path': ('step7', 'sampling_points', 'sampling_csv_file'), # 步骤8需要采样点 + 'models_dir': ('step6', 'models', 'models_dir_file') # 步骤8需要训练好的模型 + }, + 'step8_5': { + 'sampling_csv_path': ('step7', 'sampling_points', 'sampling_csv_file'), # 步骤8.5需要采样点 + 'models_dir': ('step6_5', 'regression_models', 'models_dir') # 步骤8.5需要回归模型 + }, + 'step8_75': { + 'sampling_csv_path': ('step7', 'sampling_points', 'sampling_csv_file'), # 步骤8.75需要采样点 + 'models_dir': ('step6_75', 'custom_regression_models', 'models_dir') # 步骤8.75需要自定义回归模型 + }, + 'step9': { + 'prediction_csv_path': ('step8', 'predictions', 'prediction_csv_file') # 步骤9需要预测结果CSV + } + } + def get_icon_path(self, icon_filename): """ 获取图标文件的完整路径 @@ -5580,6 +5694,13 @@ class WaterQualityGUI(QMainWindow): open_dir_action = tools_menu.addAction("打开工作目录") open_dir_action.triggered.connect(self.open_work_directory) + tools_menu.addSeparator() + + # 添加自动填充功能 + auto_fill_action = tools_menu.addAction("自动填充所有输入路径") + auto_fill_action.triggered.connect(self.auto_populate_all_steps) + auto_fill_action.setToolTip("根据工作目录中的文件自动填充各步骤的输入路径") + # 在工具菜单中添加训练数据模式切换按钮 self.training_mode_action = tools_menu.addAction("有训练数据模式") self.training_mode_action.setCheckable(True) @@ -5719,7 +5840,7 @@ class WaterQualityGUI(QMainWindow): ], "阶段四:预测与成果输出 ": [ ("step7", "10. 采样点布设"), - ("step8", "11. 机器学习学习预测"), + ("step8", "11. 机器学习预测"), ("step8_5", "12. 回归预测"), ("step8_75", "13. 自定义回归预测"), ("step9", "14. 专题图生成"), @@ -5958,6 +6079,9 @@ class WaterQualityGUI(QMainWindow): # 初始化训练数据模式UI状态 self.update_ui_for_training_mode() + # 为步骤面板添加自动填充功能 + self.add_auto_fill_buttons_to_panels() + # 显示pipeline状态 self.show_pipeline_status_on_startup() @@ -6007,6 +6131,8 @@ class WaterQualityGUI(QMainWindow): if item_data in step_id_to_tab: tab_index = step_id_to_tab[item_data] self.step_stack.setCurrentIndex(tab_index) + # 切换到步骤时自动填充输入路径 + self.auto_populate_step_inputs(item_data) def on_tab_changed(self, index): """Tab页面切换时同步更新左侧步骤列表""" @@ -6161,6 +6287,289 @@ class WaterQualityGUI(QMainWindow): 'report_generation': self.report_panel.get_config(), } return config + + def auto_populate_step_inputs(self, step_id): + """自动填充指定步骤的输入路径,返回填充的字段数量""" + if step_id not in self.step_dependencies: + return 0 # 该步骤没有依赖关系 + + # 获取对应的面板 + panel = self.get_step_panel(step_id) + if not panel: + return 0 + + work_dir = getattr(self, 'work_dir', './work_dir') + work_path = Path(work_dir) + + dependencies = self.step_dependencies[step_id] + filled_count = 0 + + for input_field, (dep_step, output_type, panel_attr) in dependencies.items(): + # 检查面板是否有对应的属性 + if not hasattr(panel, panel_attr): + continue + + file_widget = getattr(panel, panel_attr) + + # 如果输入框已经有内容,跳过自动填充 + if file_widget.get_path().strip(): + continue + + # 查找依赖步骤的输出文件 + output_path = self.find_step_output(work_path, dep_step, output_type) + + if output_path and Path(output_path).exists(): + file_widget.set_path(output_path) + self.log_message(f"自动填充 {step_id}.{input_field}: {output_path}", "info") + filled_count += 1 + + return filled_count + + def get_step_panel(self, step_id): + """根据步骤ID获取对应的面板对象""" + panel_map = { + 'step1': self.step1_panel, + 'step2': self.step2_panel, + 'step3': self.step3_panel, + 'step4': self.step4_panel, + 'step5': self.step5_panel, + 'step5_5': self.step5_5_panel, + 'step6': self.step6_panel, + 'step6_5': self.step6_5_panel, + 'step6_75': self.step6_75_panel, + 'step7': self.step7_panel, + 'step8': self.step8_panel, + 'step8_5': self.step8_5_panel, + 'step8_75': self.step8_75_panel, + 'step9': self.step9_panel, + } + return panel_map.get(step_id) + + def find_step_output(self, work_path, step_id, output_type): + """查找指定步骤的输出文件""" + if step_id not in self.step_default_outputs: + return None + + step_outputs = self.step_default_outputs[step_id] + + # 特殊处理:从step_outputs记录中查找实际输出路径 + if step_id in self.step_outputs: + actual_outputs = self.step_outputs[step_id] + if output_type in actual_outputs: + return actual_outputs[output_type] + + # 根据输出类型查找对应的文件 + if output_type == 'water_mask': + # 水域掩膜:优先查找NDWI生成的,其次是shp生成的 + for mask_type in ['water_mask_ndwi', 'water_mask_shp']: + if mask_type in step_outputs: + mask_path = work_path / step_outputs[mask_type] + if mask_path.exists(): + return str(mask_path) + elif output_type == 'reference_img': + # 参考影像:从step1的配置中获取用户输入的影像路径 + if hasattr(self, 'step1_panel'): + img_path = self.step1_panel.img_file.get_path() + if img_path and Path(img_path).exists(): + return img_path + elif output_type == 'deglint_image': + # 去耀斑影像:查找step3的各种去耀斑方法输出 + deglint_types = ['deglint_kutser', 'deglint_goodman', 'deglint_hedley', 'deglint_sugar'] + for deglint_type in deglint_types: + if deglint_type in step_outputs: + deglint_path = work_path / step_outputs[deglint_type] + if deglint_path.exists(): + return str(deglint_path) + # 还要检查插值方法生成的文件 + deglint_dir = work_path / "3_deglint" + if deglint_dir.exists(): + for file_path in deglint_dir.glob("interpolated_*.bsq"): + return str(file_path) + elif output_type in step_outputs: + # 直接匹配的输出类型 + relative_path = step_outputs[output_type] + if relative_path.endswith('/'): + # 是目录 + output_path = work_path / relative_path.rstrip('/') + if output_path.exists() and output_path.is_dir(): + return str(output_path) + else: + # 是文件 + output_path = work_path / relative_path + if output_path.exists(): + return str(output_path) + + return None + + def scan_work_directory_for_files(self, work_path): + """扫描工作目录,自动发现各步骤的输出文件""" + discovered_outputs = {} + + # 扫描各个子目录 + subdirs = { + '1_water_mask': 'step1', + '2_glint': 'step2', + '3_deglint': 'step3', + '4_processed_data': 'step4', + '5_training_spectra': 'step5', + '6_water_quality_indices': 'step5_5', + '7_Supervised_Model_Training': 'step6', + '8_Regression_Modeling': 'step6_5', + '9_Custom_Regression_Modeling': 'step6_75', + '10_sampling': 'step7', + '11_12_13_predictions/Machine_Learning_Prediction': 'step8', + '11_12_13_predictions/Non_Empirical_Prediction': 'step8_5', + '11_12_13_predictions/Custom_Regression_Prediction': 'step8_75', + '14_visualization': 'step9' + } + + for subdir, step_ids in subdirs.items(): + subdir_path = work_path / subdir + if not subdir_path.exists(): + continue + + if isinstance(step_ids, str): + step_ids = [step_ids] + + # 扫描该目录下的文件 + for file_path in subdir_path.rglob('*'): + if file_path.is_file(): + file_name = file_path.name.lower() + + # 根据文件名模式判断输出类型 + for step_id in step_ids: + if step_id not in discovered_outputs: + discovered_outputs[step_id] = {} + + # 匹配不同的文件类型 + if 'water_mask' in file_name and step_id == 'step1': + discovered_outputs[step_id]['water_mask'] = str(file_path) + elif 'glint' in file_name and 'mask' in file_name and step_id == 'step2': + discovered_outputs[step_id]['glint_mask'] = str(file_path) + elif 'deglint' in file_name and step_id == 'step3': + discovered_outputs[step_id]['deglint_image'] = str(file_path) + elif 'processed_data' in file_name and step_id == 'step4': + discovered_outputs[step_id]['processed_data'] = str(file_path) + elif 'training_spectra' in file_name and step_id == 'step5': + discovered_outputs[step_id]['training_spectra'] = str(file_path) + elif 'water_quality_indices' in file_name and step_id == 'step5_5': + discovered_outputs[step_id]['water_indices'] = str(file_path) + elif 'sampling_spectra' in file_name and step_id == 'step7': + discovered_outputs[step_id]['sampling_points'] = str(file_path) + elif file_name.endswith('.csv') and step_id in ['step8', 'step8_5', 'step8_75']: + discovered_outputs[step_id]['predictions'] = str(file_path) + + # 更新内部记录 + for step_id, outputs in discovered_outputs.items(): + if step_id not in self.step_outputs: + self.step_outputs[step_id] = {} + self.step_outputs[step_id].update(outputs) + + return discovered_outputs + + def auto_populate_all_steps(self): + """自动填充所有步骤的输入路径""" + work_dir = getattr(self, 'work_dir', './work_dir') + work_path = Path(work_dir) + + if not work_path.exists(): + QMessageBox.warning(self, "警告", f"工作目录不存在: {work_dir}\n请先设置正确的工作目录。") + return + + # 首先扫描工作目录发现已有的输出文件 + self.scan_work_directory_for_files(work_path) + + step_order = ['step2', 'step3', 'step4', 'step5', 'step5_5', 'step6', 'step6_5', 'step6_75', + 'step7', 'step8', 'step8_5', 'step8_75', 'step9'] + + filled_count = 0 + for step_id in step_order: + old_count = filled_count + filled_count += self.auto_populate_step_inputs(step_id) + + if filled_count > 0: + self.log_message(f"已完成所有步骤的自动路径填充,共填充 {filled_count} 个输入字段", "info") + QMessageBox.information(self, "完成", f"自动填充完成!\n共填充了 {filled_count} 个输入字段。") + else: + self.log_message("未发现可自动填充的路径", "info") + QMessageBox.information(self, "完成", "未发现可自动填充的路径。\n请确保工作目录中有相关的输出文件。") + + def add_auto_fill_buttons_to_panels(self): + """为各个步骤面板添加自动填充按钮""" + # 这个方法会在UI初始化完成后调用 + # 为每个有依赖关系的步骤面板添加自动填充功能 + panels_with_dependencies = [ + ('step2', self.step2_panel), + ('step3', self.step3_panel), + ('step5', self.step5_panel), + ('step5_5', self.step5_5_panel), + ('step6', self.step6_panel), + ('step6_5', self.step6_5_panel), + ('step6_75', self.step6_75_panel), + ('step7', self.step7_panel), + ('step8', self.step8_panel), + ('step8_5', self.step8_5_panel), + ('step8_75', self.step8_75_panel), + ('step9', self.step9_panel) + ] + + for step_id, panel in panels_with_dependencies: + if panel: + # 为面板添加自动填充方法 + def create_auto_fill_method(sid): + def auto_fill_inputs(): + self.auto_populate_step_inputs(sid) + return auto_fill_inputs + + panel.auto_fill_inputs = create_auto_fill_method(step_id) + + # 尝试添加自动填充按钮到面板(如果面板支持的话) + self.try_add_auto_fill_button(panel) + + def try_add_auto_fill_button(self, panel): + """尝试为面板添加自动填充按钮""" + try: + # 查找面板中的运行按钮,在其旁边添加自动填充按钮 + if hasattr(panel, 'run_btn') and hasattr(panel, 'auto_fill_inputs'): + run_btn = panel.run_btn + + # 检查是否已经有自动填充按钮了 + if hasattr(panel, 'auto_fill_btn'): + return + + # 创建自动填充按钮 + auto_fill_btn = QPushButton("🔄 自动填充") + auto_fill_btn.setStyleSheet(ModernStylesheet.get_button_stylesheet('normal')) + auto_fill_btn.setToolTip("从工作目录自动填充输入路径") + auto_fill_btn.clicked.connect(panel.auto_fill_inputs) + auto_fill_btn.setMaximumWidth(120) + + # 获取运行按钮的父布局 + parent_layout = run_btn.parent().layout() + if parent_layout: + # 找到运行按钮在布局中的位置 + for i in range(parent_layout.count()): + if parent_layout.itemAt(i).widget() == run_btn: + # 创建水平布局容器 + btn_container = QWidget() + btn_layout = QHBoxLayout(btn_container) + btn_layout.setContentsMargins(0, 0, 0, 0) + + # 从原布局中移除运行按钮 + parent_layout.removeWidget(run_btn) + + # 添加按钮到新的水平布局 + btn_layout.addWidget(auto_fill_btn) + btn_layout.addWidget(run_btn) + + # 将按钮容器添加到原位置 + parent_layout.insertWidget(i, btn_container) + + panel.auto_fill_btn = auto_fill_btn + break + except Exception as e: + # 如果添加失败,静默忽略 + pass def set_work_directory(self): """设置工作目录""" @@ -6313,6 +6722,7 @@ class WaterQualityGUI(QMainWindow): self.worker = WorkerThread(work_dir, worker_config, mode='full') self.worker.log_message.connect(self.log_message, Qt.QueuedConnection) self.worker.progress_update.connect(self.update_progress, Qt.QueuedConnection) + self.worker.step_completed.connect(self.on_step_completed, Qt.QueuedConnection) self.worker.finished.connect(self.on_pipeline_finished, Qt.QueuedConnection) # 更新UI状态 @@ -6357,6 +6767,64 @@ class WaterQualityGUI(QMainWindow): self.log_message("="*50, "error") QMessageBox.critical(self, "失败", f"流程执行失败:\n\n{message[:200]}") + def on_step_completed(self, step_name, success, message): + """步骤完成回调:记录输出路径并更新后续步骤""" + if not success: + return + + # 记录步骤输出路径到内存 + work_dir = getattr(self, 'work_dir', './work_dir') + work_path = Path(work_dir) + + # 根据步骤名称和约定路径,记录实际输出 + if step_name not in self.step_outputs: + self.step_outputs[step_name] = {} + + # 扫描工作目录,更新该步骤的输出路径 + self.update_step_outputs(step_name, work_path) + + # 自动填充依赖该步骤输出的后续步骤 + self.auto_populate_dependent_steps(step_name) + + def update_step_outputs(self, step_name, work_path): + """更新指定步骤的输出路径记录""" + if step_name not in self.step_default_outputs: + return + + step_outputs = self.step_default_outputs[step_name] + + for output_type, relative_path in step_outputs.items(): + if '*' in relative_path: + # 处理通配符路径 + pattern_path = work_path / relative_path.replace('*', '*') + matching_files = list(pattern_path.parent.glob(pattern_path.name)) + if matching_files: + # 选择最新的文件 + latest_file = max(matching_files, key=lambda p: p.stat().st_mtime) + self.step_outputs[step_name][output_type] = str(latest_file) + else: + output_path = work_path / relative_path + if output_path.exists(): + self.step_outputs[step_name][output_type] = str(output_path) + + def auto_populate_dependent_steps(self, completed_step): + """自动填充依赖于已完成步骤的后续步骤""" + for step_id, dependencies in self.step_dependencies.items(): + for input_field, (dep_step, output_type, panel_attr) in dependencies.items(): + if dep_step == completed_step: + # 找到依赖于刚完成步骤的后续步骤,尝试自动填充 + panel = self.get_step_panel(step_id) + if panel and hasattr(panel, panel_attr): + file_widget = getattr(panel, panel_attr) + # 如果输入框为空,则自动填充 + if not file_widget.get_path().strip(): + work_dir = getattr(self, 'work_dir', './work_dir') + work_path = Path(work_dir) + output_path = self.find_step_output(work_path, dep_step, output_type) + if output_path and Path(output_path).exists(): + file_widget.set_path(output_path) + self.log_message(f"步骤完成后自动填充 {step_id}.{input_field}: {output_path}", "info") + def run_single_step(self, step_name, config): """运行单个步骤""" if not PIPELINE_AVAILABLE: @@ -6373,6 +6841,7 @@ class WaterQualityGUI(QMainWindow): self.worker = WorkerThread(work_dir, config, mode='single_step', step_name=step_name) self.worker.log_message.connect(self.log_message, Qt.QueuedConnection) self.worker.progress_update.connect(self.update_progress, Qt.QueuedConnection) + self.worker.step_completed.connect(self.on_step_completed, Qt.QueuedConnection) self.worker.finished.connect(self.on_pipeline_finished, Qt.QueuedConnection) # 更新UI状态 diff --git a/src/gui/work_dir/10_sampling/sampling_spectra.csv b/src/gui/work_dir/10_sampling/sampling_spectra.csv deleted file mode 100644 index 72a372c..0000000 --- a/src/gui/work_dir/10_sampling/sampling_spectra.csv +++ /dev/null @@ -1,11311 +0,0 @@ -x_coord,y_coord,pixel_x,pixel_y,374.285004,386.373993,398.493011,410.641998,422.821991,435.032013,447.273010,459.545013,471.846985,484.179993,496.542999,508.936005,521.361023,533.815002,546.301025,558.815979,571.362976,583.939026,596.546997,609.184998,621.853027,634.552002,647.281006,660.041016,672.831970,685.653015,698.505005,711.387024,724.299011,737.242004,750.216003,763.219971,776.255005,789.320007,802.416016,815.541992,828.698975,841.887024,855.104004,868.353027,881.632019,894.940979,908.281006,921.651978,935.052979,948.484985,961.947021,975.439026,988.963013,1002.515991 -602163.155000,4612945.550000,7105,2205,293.388428,201.173553,159.115707,141.933884,127.090927,113.314064,107.669426,104.074394,102.528938,103.231422,101.909103,111.495872,128.818192,144.793396,157.760330,166.520660,166.148758,153.561981,130.578522,110.479347,98.942162,96.884315,92.272743,67.933899,50.314075,69.239685,85.355385,65.066139,31.371922,11.251257,8.388449,12.228116,7.865301,9.034723,11.297535,10.025631,2.748768,2.041327,0.606614,0.745456,1.132233,2.507441,3.290090,5.552899,46.500008,30.024797,20.300003,15.628928,25.153723,23.056200 -602180.155000,4612945.550000,7190,2205,310.605804,205.738022,163.167770,149.035538,130.142990,116.911591,112.151260,109.647133,107.390930,108.886803,108.490105,117.225639,135.266953,152.300003,164.837204,173.564484,171.795868,159.093399,134.134735,112.919861,102.828941,97.828941,94.845467,69.291748,52.217377,69.457047,86.688446,65.184319,30.746300,11.204974,8.622334,10.819022,7.447119,8.239682,9.841335,9.391747,2.217362,1.423144,0.510745,0.323967,0.071075,0.000000,1.217358,0.775208,33.938019,24.166121,18.230581,13.312399,11.109093,16.778515 -602185.355000,4612945.550000,7216,2205,285.659546,207.328934,165.634735,147.709091,131.609940,118.312408,112.634727,109.973572,108.105797,110.585136,109.758690,118.081009,136.262833,152.750427,165.320679,174.411575,172.593399,161.238037,134.700851,114.527290,103.816544,99.138855,95.254562,71.337212,53.676048,69.692574,86.585129,65.626457,31.667789,12.160348,8.659524,10.157866,8.881831,10.292578,11.481006,9.617367,2.412403,1.433887,1.713227,0.599175,0.477687,0.000000,1.371904,2.648762,38.984303,28.223143,22.706615,13.959506,15.024796,19.862812 -602190.555000,4612945.550000,7242,2205,306.432251,209.523148,166.812408,150.349594,134.630600,119.572739,114.812408,112.779350,110.771088,113.399185,111.994232,121.721504,138.696701,155.316528,167.448761,176.589264,176.027283,163.448761,138.093399,116.581009,105.647125,102.448776,97.209106,73.845467,56.407459,72.085136,88.151253,65.349609,32.085144,11.124812,8.837210,11.611588,8.066130,8.899188,11.772742,8.409929,3.333065,1.143805,0.926449,0.743803,1.054548,0.642976,1.917359,4.371904,33.739674,26.133060,19.306614,19.270252,7.811571,23.040497 -602195.755000,4612945.550000,7268,2205,307.795074,217.704147,168.125626,151.737198,134.629761,119.059517,113.968605,112.117363,111.200012,113.671082,111.646294,121.447945,138.191742,156.175217,169.662827,176.654556,176.299179,163.076050,137.158691,116.332245,105.555382,101.902489,98.200012,73.282654,54.737209,73.489273,87.067780,64.596710,31.770269,11.914067,8.927292,11.177701,8.879354,10.893404,10.305799,8.690094,2.720669,1.345458,1.175210,0.102481,0.272728,1.316530,3.347939,5.165293,34.068596,23.676863,15.765291,14.755374,21.023144,17.676033 -602201.155000,4612945.550000,7295,2205,316.781830,212.244644,169.757034,151.310760,134.112411,120.624809,115.905800,113.988441,110.723976,114.302490,113.013237,122.161995,139.401672,156.831421,169.211578,177.038010,177.170242,164.707458,138.971909,117.451256,106.773567,102.228111,99.236374,73.682663,55.591751,73.938866,86.409927,64.128944,30.393406,11.706628,9.021506,10.404148,8.625632,10.470264,11.639686,9.016540,2.475214,0.704961,1.971905,0.585127,0.566117,0.733058,3.448766,5.203309,29.758680,30.195873,15.594217,12.232232,12.692563,21.719007 -602206.555000,4612945.550000,7322,2205,321.573608,224.449585,174.242981,153.986786,137.540497,122.532234,118.540497,115.771904,113.623146,116.490913,114.961990,124.838020,140.623138,158.681000,172.003311,180.730576,178.614883,166.110748,139.681000,119.523972,108.366951,104.573563,100.854553,75.193405,57.705807,73.581841,88.201675,65.466133,32.119026,13.229768,9.168613,12.401668,8.276872,10.187618,9.619022,9.437202,3.525627,2.200005,0.747110,0.680168,1.068596,1.150414,4.628932,4.604962,35.085953,24.171904,15.133060,18.842152,17.838020,20.461159 -602212.155000,4612945.550000,7350,2205,352.076019,227.290939,174.059509,154.489288,137.538849,123.009933,118.142166,114.431419,113.629768,116.001671,114.902496,124.274399,140.819839,159.621521,172.018204,180.547119,179.233063,166.208298,140.323975,120.092583,108.869438,104.828117,100.927292,75.538864,58.100849,75.100853,87.274391,66.158699,31.894232,14.164480,9.175226,11.064475,8.857038,7.961173,10.248775,8.932244,3.681828,1.285127,1.237193,1.293391,1.495869,2.166944,2.173557,3.204134,35.514053,36.575207,18.858681,22.403309,27.166119,16.671076 -602217.755000,4612945.550000,7378,2205,299.160339,224.945465,174.672729,151.160339,132.647949,117.590103,114.077705,111.705803,109.887619,111.433075,109.730598,122.102501,143.209930,160.780167,175.474380,185.557022,184.499176,165.904129,141.061172,120.135559,107.540512,107.482666,104.400017,77.143814,58.433079,77.763657,97.623154,72.383492,36.143822,13.698365,9.490929,18.076878,9.387615,12.868612,16.190926,14.811586,6.591745,3.681825,3.577694,4.262815,3.601659,8.085132,11.698359,11.927282,105.350418,100.850426,83.336372,33.452900,31.386782,80.162819 -602222.755000,4612945.550000,7403,2205,279.662842,221.026459,174.679352,149.836380,128.084305,114.067780,112.076042,109.381828,107.357033,108.745461,106.836372,122.770256,143.952072,164.274384,178.018188,187.877701,185.505798,166.910751,141.439682,118.009926,106.125633,105.067780,103.563644,76.059517,57.811592,78.084305,99.125633,74.563644,37.538864,12.126464,9.414895,20.141344,8.772738,12.520679,14.420677,14.216545,6.482655,3.380172,2.648766,2.156202,2.140501,9.164470,13.735548,13.708274,130.280182,105.938850,78.247940,48.302483,51.973560,59.550419 -602227.555000,4612945.550000,7427,2205,281.829742,212.871078,167.940506,146.405792,126.562820,111.769432,110.314888,107.571091,107.504974,107.466957,107.174393,120.600845,143.369431,164.520660,180.157028,189.123962,186.553726,167.330582,141.553741,118.256218,106.909103,106.644646,103.818199,76.024811,56.826462,77.281006,102.338860,76.024811,39.000019,11.386793,9.438036,21.276876,9.565304,15.817371,16.149603,15.609933,7.654555,3.280169,4.306617,4.713227,4.620666,9.599181,15.249599,19.166128,143.285141,136.674408,73.936378,50.389267,53.523151,101.445457 -602232.555000,4612945.550000,7452,2205,291.463654,219.364471,170.091751,152.571091,129.802490,112.992577,112.852081,110.405800,110.215714,112.364479,110.133072,124.091751,148.281830,170.190918,184.777695,195.240509,191.174393,170.976044,145.273560,121.075218,109.009102,110.075218,106.645470,78.942986,59.538029,80.223976,104.422325,76.587616,40.852089,13.639686,9.695061,20.666960,11.185966,14.455388,17.036381,14.763651,5.910752,1.139672,1.995874,2.449591,1.845459,6.391743,9.573565,15.962821,128.020676,101.015724,64.809105,32.357853,41.981823,61.260330 -602237.755000,4612945.550000,7478,2205,295.823181,223.905792,171.476044,150.591751,127.847946,112.393410,113.203323,108.633080,108.393410,109.715721,108.600021,122.591759,145.798355,166.914062,182.203323,192.897537,189.343811,168.881012,143.732239,120.062828,107.385147,107.955391,105.872749,75.657875,56.211590,76.244652,103.699196,76.467789,39.864483,12.929769,9.624812,21.551258,9.974395,12.184313,14.490927,14.332248,5.440506,1.626450,1.927278,2.142979,1.285953,7.997527,8.130589,15.537201,130.999191,91.190102,69.459518,55.528938,51.329762,45.196697 -602242.955000,4612945.550000,7504,2205,285.595093,223.206635,173.231415,149.768616,130.090912,112.694229,113.272743,109.785141,109.413239,111.719025,109.247948,123.628113,146.735550,169.090927,184.272751,194.801666,190.694229,170.115723,144.380188,121.595055,109.520676,108.603325,106.454559,78.008278,57.595062,79.239685,103.173569,77.107452,41.371922,13.504976,9.677705,20.940514,10.115718,13.105801,18.046297,18.779358,5.871083,2.660336,2.709923,2.821493,3.831413,6.980171,8.683481,17.494225,121.315712,87.319023,74.018188,42.103313,41.843807,40.386780 -602248.355000,4612945.550000,7531,2205,257.042999,215.092575,170.373566,147.290924,127.753731,110.613235,110.009926,108.662819,106.811577,109.662819,106.910751,122.282654,142.976868,165.100830,179.340500,189.472733,186.133896,166.381821,141.811584,118.885963,108.323975,106.431412,104.381828,75.406624,55.836384,77.307449,101.704140,76.142159,39.183495,12.269439,9.489275,17.687620,7.635550,10.647122,13.357040,13.966131,2.551246,1.913229,2.600005,1.123142,1.809920,3.638021,10.486785,8.582653,89.333893,77.875214,38.987610,31.669426,34.444633,45.390911 -602253.755000,4612945.550000,7558,2205,128.460342,160.534698,155.749573,145.162796,128.724808,116.352913,114.113243,112.113243,110.485138,113.377701,111.741341,122.947952,142.080154,160.038834,173.286774,184.047104,181.741318,168.708252,145.154541,125.344643,113.047127,109.989273,106.427292,79.609116,63.047134,80.171097,101.534729,79.410767,37.038860,11.671917,9.675225,7.137200,8.341335,8.032244,10.166130,5.406620,1.772731,0.555373,0.287604,0.205785,0.106612,0.559505,1.419010,1.861159,16.904961,15.740498,9.010744,5.681819,1.032232,5.604959 -602259.355000,4612945.550000,7586,2205,115.288452,159.577698,155.346283,144.470245,129.271912,115.767776,113.057037,110.759514,107.205795,109.313232,108.048775,119.569435,137.635544,155.238846,167.941330,177.866959,175.371094,162.990906,142.511566,121.842163,109.610756,106.412407,101.900009,74.652077,58.941345,77.329765,96.858688,77.842163,34.850433,13.221505,9.263657,6.373564,9.634726,8.752908,9.857863,5.335546,1.533888,0.995870,0.252068,0.216530,0.207439,0.639670,1.123143,1.471903,7.014876,4.508265,2.553720,4.192563,0.909917,5.760331 -602264.955000,4612945.550000,7614,2205,113.190926,158.463669,153.926453,144.686783,128.116547,114.885139,112.612411,107.719849,105.802490,106.273567,104.695053,115.728111,133.777695,149.728119,163.116562,173.058701,171.025650,158.802490,137.562820,116.000839,105.025635,101.728111,96.100014,70.422325,55.066959,74.480186,93.480179,71.918198,32.719852,11.982661,8.736382,6.500836,9.381003,8.019846,10.055387,3.623975,0.944632,0.338018,0.551242,0.388430,0.232232,0.000000,0.269422,0.777687,2.299174,0.000000,1.786777,6.313224,0.000000,0.000000 -602270.755000,4612945.550000,7643,2205,144.777710,166.909927,158.744644,147.455383,132.025635,117.571091,114.108276,110.447121,108.058693,107.653732,106.686790,117.447121,134.711578,151.984314,163.009109,174.257034,172.976044,160.100006,138.116547,118.116539,107.653732,104.496704,97.736374,73.637199,59.166138,76.967781,96.116539,73.496712,34.655392,14.761174,8.885143,9.586790,9.745468,11.145470,10.343817,5.700837,2.132237,2.053724,0.598349,0.695042,0.342976,1.151240,0.640498,0.823142,3.519009,5.288430,0.952066,3.309091,0.000000,0.000000 -602276.755000,4612945.550000,7673,2205,141.523148,164.109924,152.514877,142.465302,125.928116,112.597534,109.506622,105.514893,102.895058,102.779350,102.275223,113.704971,129.209106,146.068604,158.076859,167.176041,165.010757,154.779343,132.167770,113.341339,101.200844,99.159515,93.390923,69.465302,53.952911,71.994240,88.994232,67.399193,29.806631,10.345471,8.490102,5.950423,7.557863,6.870259,7.484309,4.655380,2.380996,0.671076,0.460332,2.297523,1.236366,1.354547,0.450416,0.885125,15.804134,15.951241,1.838843,2.795042,1.905785,15.454547 -602282.555000,4612945.550000,7702,2205,137.060349,171.738022,156.936371,143.225632,131.250427,115.035545,111.638855,108.060349,105.572739,106.324806,105.316544,114.151245,131.630585,147.895050,159.002487,167.994217,166.961166,156.490082,134.060333,113.862000,103.647125,98.663651,94.663651,70.870270,55.886795,74.547951,91.572746,68.572746,31.830595,12.831423,8.605804,10.671088,9.547121,10.672741,10.484311,7.045464,1.786781,1.068599,0.737193,0.689258,0.373555,0.896695,1.693391,0.732233,23.959507,9.733885,8.461985,1.401653,11.214051,2.976860 -602288.355000,4612945.550000,7731,2205,171.481842,167.969421,155.134720,144.448761,127.142975,115.845459,110.704964,106.225624,102.952896,103.630585,102.944633,113.283478,129.837189,144.457031,156.969421,166.746292,165.597534,154.242157,132.192566,112.729759,101.266945,98.333061,94.390915,70.308281,55.052086,73.605797,91.151245,68.423981,33.680187,12.656216,8.581012,7.845467,10.236377,11.423154,12.285137,8.509929,2.940503,1.809095,1.963640,0.633886,2.422317,4.011573,4.658681,1.196697,12.726447,32.785126,11.942976,8.966943,5.042976,0.000000 -602294.155000,4612945.550000,7760,2205,185.939697,175.906616,155.972733,142.576050,127.204140,114.195877,109.757858,106.460342,103.691742,102.286789,102.534721,111.873566,128.799179,145.493393,156.881821,166.005798,164.823975,153.493393,131.700012,111.270256,102.154556,97.981003,92.154556,67.749611,55.270267,73.576057,88.906624,66.865311,32.409107,12.606630,8.377706,10.155389,8.536377,9.853731,11.872744,8.496708,3.382652,2.938849,0.912399,1.209920,1.317357,5.485129,1.153720,2.354547,24.971901,19.292562,11.687605,9.896694,5.001654,0.000000 -602299.755000,4612945.550000,7788,2205,186.299194,171.274368,153.340500,141.233063,122.282654,111.803322,105.993408,101.447952,98.869438,98.679359,97.604973,107.621506,125.200012,140.059509,152.076050,162.373550,160.142136,148.538849,127.390091,107.803322,96.894234,93.786797,88.290924,65.588448,51.381836,70.208282,86.059525,64.001678,29.463654,10.579357,8.026465,10.485139,8.472740,9.765304,10.701668,8.128938,1.947939,1.591740,2.166946,1.482648,2.833888,2.787606,2.323967,2.325622,36.980171,32.209919,19.997522,16.890083,16.058678,11.685951 -602305.355000,4612945.550000,7816,2205,189.205795,166.742981,155.701660,142.643814,125.296715,112.495064,107.404152,101.949608,99.908287,98.742996,97.784317,108.701675,126.585968,142.271927,153.395874,163.461990,162.007446,149.891739,127.511589,107.073570,97.619026,93.966133,89.536385,65.850426,50.883492,69.933075,86.668617,64.114899,29.883490,11.794232,8.139688,10.520678,7.830591,10.314890,10.276873,8.157865,3.464469,1.893393,1.439673,1.184301,2.004134,8.710751,4.609093,3.695044,53.797520,32.408268,25.303307,19.297522,4.880992,26.537193 -602310.955000,4612945.550000,7844,2205,195.242157,175.002487,158.101654,140.828934,123.622330,113.109932,105.581009,101.696709,98.333069,98.076874,96.771088,107.738029,125.647125,142.432236,153.638855,163.440506,162.002487,149.242157,127.093407,107.407455,97.176048,92.762825,87.936378,64.481842,50.415726,68.738037,87.688446,63.564484,30.490099,11.147125,7.994235,10.230593,7.869434,9.487617,10.404973,9.079351,4.288437,2.495048,1.800830,1.433061,2.854549,4.435542,7.052896,6.244631,69.755379,46.898350,37.162811,26.674383,17.766117,5.789257 -602316.555000,4612945.550000,7872,2205,190.462021,179.767776,156.181000,138.685120,123.602493,110.751251,105.304970,99.238853,96.296707,96.114891,95.933067,106.189270,124.040504,139.437195,150.767776,160.585953,160.288437,147.751236,125.519844,105.404144,95.709930,92.007446,86.445473,62.057041,48.288445,68.668617,87.329765,65.346298,30.528116,11.782662,7.858697,11.219025,8.600013,9.510757,10.382659,10.685964,3.905791,3.238021,2.102483,1.996699,1.895871,6.331413,4.987605,7.433061,73.365295,61.588436,29.123144,17.628929,14.523968,28.785126 -602321.555000,4612945.550000,7897,2205,205.726486,181.400848,156.128113,137.805801,119.400841,107.756218,100.326462,95.904976,92.524811,92.004150,91.855385,102.376053,118.541336,133.962830,144.714890,154.855392,152.962830,140.136383,120.425636,102.425636,92.004150,88.673569,84.772743,60.334728,45.293404,66.301666,84.756218,65.590919,30.717375,9.776876,7.706631,10.418198,7.338855,9.276049,12.660347,10.709930,3.299180,2.933063,3.225624,2.850418,3.030583,9.712407,14.013230,10.352896,82.691742,75.326447,45.566120,21.816532,26.830580,16.319010 -602325.955000,4612945.550000,7919,2205,227.600006,170.608276,152.591751,135.401672,117.699188,103.476044,97.856209,92.831421,88.905800,88.004974,86.418198,96.740509,113.029762,126.814888,138.814896,146.955383,145.690918,135.244629,116.757034,99.905800,89.889267,86.682655,81.600014,58.757042,44.145470,66.252907,89.649597,68.905807,33.682663,11.960346,7.418201,14.095055,8.647121,13.305801,13.914063,14.787619,6.030587,3.530584,2.758682,4.441329,3.804139,10.885135,14.255379,13.558682,150.452896,73.423973,42.651241,36.184303,47.250420,27.080994 -602163.155000,4612935.550000,7105,2255,256.819855,195.522324,163.894226,148.365295,132.439682,119.935547,113.662819,110.952072,108.844635,110.133896,109.315712,118.257858,135.646286,151.828110,164.067780,172.481003,171.431412,159.489273,136.555374,115.844635,104.472740,100.753731,96.290916,70.076042,54.646301,72.580185,87.919022,66.224815,33.423161,11.761175,8.753737,10.568609,8.274393,8.325635,8.715717,6.108273,1.619839,0.856200,0.561985,0.307438,0.328099,0.508265,1.283473,2.294216,25.550419,15.728101,15.117357,14.057027,20.530581,7.385952 -602167.955000,4612935.550000,7129,2255,199.317368,180.424820,158.978531,145.937210,132.499191,118.532249,115.061180,112.548782,110.598366,112.284317,112.127289,121.755394,139.267792,154.557037,167.490921,176.416550,175.532257,162.490921,138.292587,118.135559,105.928947,102.937210,97.036385,71.747124,54.879364,72.135559,87.028122,66.052910,30.639688,10.557042,8.821507,8.061996,7.575220,8.044642,7.915716,3.219014,0.717357,0.149587,0.000000,0.359505,0.019835,0.000000,0.399174,0.330579,6.435538,3.999174,12.361159,7.630579,3.947108,1.836364 -602175.355000,4612935.550000,7166,2255,184.929749,178.309921,165.896698,150.318192,135.723145,121.285133,119.425629,116.789261,115.764473,117.814056,117.128105,126.185959,143.632233,160.566116,173.194229,182.871918,179.871918,166.293396,142.268600,120.458687,108.045464,104.797539,100.772743,74.599197,56.260349,73.756203,89.904968,68.466965,32.020679,11.576877,9.161176,5.866952,7.292574,5.392572,6.544641,3.190915,0.559506,0.094215,0.222315,0.177686,0.099174,0.000000,0.409918,0.000000,7.521488,1.951240,4.393389,3.649587,4.505786,7.706613 -602182.755000,4612935.550000,7203,2255,192.938034,185.785965,164.356216,152.744644,137.232239,123.926468,120.587624,118.604156,117.703323,119.976051,118.785973,129.480179,147.141342,164.992569,177.744644,186.488449,183.066956,170.306625,144.223984,122.273575,109.645470,106.529762,101.736374,77.157875,57.728119,74.438866,92.124802,69.893410,31.009109,11.162827,9.248779,5.398357,6.634723,7.044640,7.513236,3.540502,0.642151,0.023141,0.345455,0.319009,0.149587,0.108265,0.599174,0.480992,3.242975,3.256199,2.776033,5.002480,3.045455,3.993388 -602192.155000,4612935.550000,7250,2255,196.815720,188.633881,167.187592,154.435532,138.997528,126.666962,124.195885,122.063652,120.055389,122.228943,120.286797,130.187622,147.410767,163.832230,177.063629,184.848770,184.410736,170.352890,145.369446,123.551254,111.485138,107.212418,103.063652,77.104973,59.923157,73.790924,88.427292,67.187622,30.518202,12.138034,9.369441,6.288441,7.352906,6.511582,6.725632,2.219014,1.427276,0.251242,0.402480,0.180166,0.362811,0.264464,0.633885,0.000000,2.196695,4.405786,1.836364,7.375207,2.247934,4.208264 -602204.155000,4612935.550000,7310,2255,222.233047,192.406601,169.092575,157.076050,140.588440,126.547127,123.844643,122.431419,119.943817,123.646301,121.175224,131.109116,147.861160,165.555374,177.257858,186.803299,185.034698,172.828110,146.051254,125.150429,112.728943,108.299194,104.927292,77.249603,61.555393,74.704147,88.604973,66.803322,29.191753,12.177703,9.538863,6.641332,7.052081,5.338854,6.977698,4.209924,0.366117,0.917357,0.180166,0.120661,0.104133,0.089257,0.000000,0.000000,1.112397,2.383471,2.039670,1.009917,4.549587,4.293388 -602216.355000,4612935.550000,7371,2255,190.150421,194.348770,173.390091,156.431427,139.414902,126.299194,123.340523,119.166962,116.803322,117.464478,116.133904,128.315735,148.001678,165.464493,178.588440,188.489273,186.828110,171.497528,145.786804,122.679359,111.497536,108.894234,104.745476,79.183487,61.158695,78.018211,96.679359,69.208290,33.299191,11.501670,9.522333,12.874395,7.611583,9.006624,8.213237,6.332240,1.289259,0.763638,1.680169,0.909919,0.051240,0.557026,1.382646,0.433884,21.947935,16.233059,20.511574,7.574381,9.690084,19.391737 -602228.155000,4612935.550000,7430,2255,202.527298,203.304153,177.940521,158.229752,139.353745,126.130592,123.362000,120.452904,117.213234,119.180183,117.014893,129.378525,148.849594,167.519012,179.452911,190.072754,188.047958,170.973557,146.081009,123.271088,112.552078,109.312401,105.072731,78.940514,62.155392,77.023155,95.576866,69.485962,34.816551,13.909935,9.552086,12.609108,8.056213,8.806624,9.115717,7.800838,1.789262,0.488432,0.448763,0.314877,0.042976,0.467770,1.871902,0.219008,18.094217,6.425621,18.822319,10.257026,15.733060,30.185125 -602239.955000,4612935.550000,7489,2255,210.081009,207.074402,173.909119,156.925629,139.214905,123.421509,122.000023,119.181839,117.983498,120.090935,116.876060,129.925644,148.586792,167.702499,181.247971,191.479355,188.371918,171.760361,145.214905,122.876060,112.619858,110.289276,106.818199,78.049606,62.016548,78.338860,95.677711,70.115715,35.000015,12.895061,9.710764,14.679356,7.248775,10.750428,10.523155,5.950422,2.033063,0.462811,0.287606,0.387604,0.070248,0.510745,0.211570,0.000000,5.628100,7.857852,12.780167,4.900827,8.263638,10.296695 -602251.955000,4612935.550000,7549,2255,116.342171,162.763657,157.094238,150.069443,133.226471,118.416550,116.928947,114.094231,110.920677,111.424812,109.879356,121.276054,138.780182,156.515717,168.962006,180.019852,177.681015,163.424820,140.499191,120.623161,109.036385,104.416550,98.672745,73.573570,57.474400,74.920677,96.449608,73.168617,32.309937,11.848776,8.970267,6.138852,7.608276,7.723154,6.240508,1.834715,0.675209,0.109918,0.051240,0.195041,0.085124,0.900001,0.298347,0.219008,0.000000,1.460331,1.014050,0.997521,1.151240,2.076860 -602264.155000,4612935.550000,7610,2255,111.898361,156.410751,158.204147,151.212402,134.890091,122.336372,118.584305,115.253731,113.187614,114.947945,111.749596,123.666954,141.154556,158.352905,171.576050,182.898361,179.947937,165.253723,142.319839,121.749596,110.724800,105.129761,100.245461,74.832245,60.319855,78.675217,96.187614,71.187614,34.873577,13.776876,9.113242,6.597529,8.438031,9.183486,5.915714,1.974384,0.445457,0.323142,0.290084,0.188430,0.000000,0.083471,0.133885,0.128926,1.401653,2.840496,2.324794,1.091736,0.000000,0.000000 -602276.755000,4612935.550000,7673,2255,106.205811,155.776031,159.032242,148.511566,133.230591,121.420670,117.536377,114.982658,112.776047,113.271912,112.486786,122.048775,141.090088,157.627274,170.023972,179.495056,178.271927,165.164459,141.519836,121.139679,108.924812,105.478531,99.809113,73.999191,60.420677,75.900017,96.313240,72.544647,33.486794,12.394232,9.073574,5.349596,8.799188,7.769435,6.690096,3.486785,0.659507,0.633060,0.000000,0.101654,0.171075,0.319009,0.927274,0.306612,0.000000,2.519835,0.000000,0.000000,0.000000,0.000000 -602289.355000,4612935.550000,7736,2255,98.489281,151.894226,156.976868,146.712402,131.877701,119.662827,116.373573,113.059525,110.976875,111.671089,110.671089,120.935555,138.604965,155.456207,167.489273,177.158691,174.307449,161.753723,138.819839,119.596710,107.117371,103.100845,98.927292,72.654572,58.241344,76.191750,95.224808,71.836380,32.059521,12.527289,8.993407,4.411581,7.738030,7.942162,7.037204,2.192567,1.109094,0.516531,0.000000,0.032232,0.013223,0.000000,0.228926,0.512397,2.331405,0.000000,0.000000,0.000000,3.697521,0.000000 -602301.955000,4612935.550000,7799,2255,102.625648,151.295044,155.865295,145.981003,130.890091,119.923149,116.923149,112.741333,111.104973,111.567780,110.584305,121.460342,138.931412,155.377701,166.890091,176.435547,174.270264,161.964478,138.014053,117.857033,107.129768,102.443817,97.972740,73.187614,58.228943,75.179359,91.303314,68.038864,31.345472,12.778530,8.906631,5.403316,7.617369,9.130593,6.011583,3.058685,1.396698,0.395870,0.395869,0.076034,0.214877,0.000000,0.507439,0.215703,0.000000,2.037190,0.884298,0.000000,0.000000,0.000000 -602314.355000,4612935.550000,7861,2255,129.971100,151.219009,155.962814,145.144623,128.466949,117.012398,111.657028,108.293388,105.128098,104.516525,104.293388,114.136360,132.037186,148.987610,160.359497,169.219009,167.657028,154.500000,132.706604,112.252068,101.780991,98.227272,92.045456,68.185966,53.400848,70.987617,89.681816,65.723160,30.224812,10.621505,8.367788,5.804143,6.048772,7.012410,5.471910,3.943810,0.915705,0.217356,0.276861,0.146281,0.068595,0.000000,0.237191,1.017358,0.000000,1.293389,1.078513,3.023141,1.647108,3.030579 -602326.155000,4612935.550000,7920,2255,119.485138,156.906601,155.518188,141.923157,125.650414,115.708267,109.815712,104.923149,101.319847,101.030586,100.121498,111.394226,129.311569,146.212402,156.848770,167.261993,164.956207,152.576050,130.204132,110.947945,100.088440,96.708275,89.609100,66.212418,50.708282,70.352913,87.964470,65.452087,29.377705,11.275223,8.146300,6.855383,7.290095,8.467781,8.322328,3.817363,1.111573,0.620664,0.619837,0.177686,0.284298,0.541323,0.237191,0.561158,2.162810,0.000000,6.915703,1.017355,0.000000,0.000000 -602335.355000,4612935.550000,7966,2255,118.733917,150.188431,152.609924,139.254547,125.742165,112.171913,108.023155,101.709106,100.428116,97.758690,98.229767,108.725632,127.163651,143.428101,154.874390,165.130585,162.279343,149.651245,127.552078,109.171913,97.469437,93.915718,87.254562,62.998363,48.965305,67.386795,87.304146,64.395058,29.775223,10.827290,7.932251,7.496705,7.083484,7.730591,10.576049,5.014886,1.733063,1.199177,0.813226,1.060333,0.480993,1.566943,1.609092,2.404963,31.725622,25.599176,15.364464,0.000000,1.699174,0.000000 -602341.555000,4612935.550000,7997,2255,161.280182,159.809097,151.685120,137.561157,122.023979,110.164474,105.643814,100.280174,97.966125,96.734718,96.883484,107.313232,125.610756,141.742981,153.610748,162.313232,161.891739,147.561157,126.387611,106.478523,95.131416,92.594223,86.354568,61.536385,47.924812,66.255394,86.561165,61.519855,27.092579,8.857869,7.850432,8.566955,7.255383,9.584311,8.949600,7.252906,2.460337,1.461987,0.480995,1.862813,1.251241,3.380995,2.476861,3.014053,43.988434,34.256203,15.070249,2.681818,7.657852,8.654546 -602346.755000,4612935.550000,8023,2255,185.481827,169.437210,155.561172,136.271927,120.486794,109.197540,102.668617,98.247124,95.610764,94.147957,93.924812,104.023987,121.329773,137.395889,148.296707,158.643799,156.304962,144.891754,125.048782,105.470268,96.090103,93.933075,88.263657,63.387623,48.751259,68.825638,90.751259,67.528122,29.133078,11.797537,8.023986,14.875223,9.413236,13.828115,13.548776,12.419848,4.348767,3.270253,3.905792,3.118188,4.307444,12.705796,15.245461,15.497526,110.681816,73.710747,37.020660,26.866117,30.738022,29.999178 -602143.155000,4612925.550000,7005,2305,340.087616,216.757034,165.856216,145.467804,128.922333,115.509102,109.872742,105.161995,103.831421,102.699188,102.550423,110.376869,129.013229,143.418213,156.409927,165.376877,163.509109,151.236389,129.285965,110.004974,98.426460,95.732246,92.327286,67.525642,51.186794,71.145470,86.707451,68.013245,33.261177,13.302495,8.393408,15.177703,9.202493,10.883486,14.943818,12.983484,5.118193,1.922319,0.738847,1.332233,1.027275,1.688432,2.417359,2.235540,45.577694,39.273560,22.409096,20.970253,24.369425,32.009922 -602146.355000,4612925.550000,7021,2305,291.695892,210.026443,167.423141,149.208252,133.861176,120.811584,114.885971,111.001671,109.191750,108.563652,107.381836,117.315720,134.414886,150.563629,162.646271,172.381805,170.571899,157.191727,135.323990,114.803322,103.654564,100.720680,95.927292,71.464478,55.067787,71.803322,88.472748,67.795059,33.753738,13.299192,8.720680,12.262828,8.000012,8.920676,10.638031,7.695878,2.458684,1.190086,0.947936,0.046281,0.607439,1.482646,2.370252,2.555374,24.381823,23.522316,15.795045,10.691737,16.099176,21.302481 -602150.155000,4612925.550000,7040,2305,297.830597,204.855408,166.433914,148.177704,133.954559,120.640503,114.623978,111.921494,109.714882,110.012405,108.185959,118.103317,135.632248,152.475220,163.582672,172.632263,171.078552,158.896713,134.706619,114.161163,103.285133,99.384308,95.409096,70.309944,53.747952,71.450439,88.053726,65.805801,33.268616,12.032248,8.673573,10.238031,7.600013,9.057038,9.452908,7.447944,1.616533,0.292563,0.462811,0.300827,0.346282,0.207438,1.057853,3.047937,20.162811,16.374382,14.697523,8.338017,9.495869,14.545456 -602155.955000,4612925.550000,7069,2305,264.846313,192.515717,165.639694,149.424820,134.276047,121.623161,115.598366,112.507454,109.970268,111.333900,110.127289,119.705803,136.738861,152.119034,164.350433,174.276047,171.714066,159.664490,137.135559,116.143822,102.466133,100.796715,95.945473,70.862831,54.507454,72.457870,88.036385,67.573570,30.664482,10.684315,8.722333,8.480178,6.009102,7.946293,7.768609,4.527281,1.317358,0.171902,0.925622,0.390083,0.057852,0.313224,2.276035,0.242149,20.628101,13.312398,13.428102,6.328100,14.109094,10.834712 -602162.755000,4612925.550000,7103,2305,231.096725,190.749603,166.708298,151.964478,136.204147,122.790924,119.815720,117.104973,114.584312,115.898361,115.410759,125.509933,142.427292,158.600845,170.600845,179.534729,178.666962,165.071930,140.906631,120.361176,109.857040,104.989273,100.245476,73.939690,58.914894,75.047127,89.683487,68.782661,33.890099,13.409934,9.113242,9.742989,7.861171,8.956211,8.088443,5.030586,0.953721,0.546282,0.383472,0.110744,0.472728,0.287604,1.328101,0.000000,16.801655,14.987605,4.471076,7.390084,11.510745,17.038845 -602171.955000,4612925.550000,7149,2305,213.024002,180.676865,166.842163,152.189270,137.362823,125.428947,120.842178,117.676880,116.767792,118.577705,117.602501,127.123161,145.247131,162.015717,173.181000,182.181000,180.247116,167.957870,143.346298,122.057045,110.131424,106.776054,101.445473,74.668617,58.048779,75.296715,90.900017,69.164482,30.660351,13.732249,9.222332,8.500838,8.961998,7.761997,7.550426,4.141329,0.715704,0.459506,0.173554,0.594216,0.273555,0.199175,0.000000,0.000000,3.404133,2.131405,1.893389,4.212397,2.146281,10.034711 -602185.555000,4612925.550000,7217,2305,170.261169,183.484314,166.872742,154.856216,140.500839,128.566956,124.963646,121.641335,120.327286,122.649597,121.079353,130.839676,148.600006,164.971909,178.071091,185.583481,183.583481,171.500839,146.393402,125.996704,113.120682,108.971931,104.600029,80.162003,61.376877,76.566963,92.674400,69.715721,32.087624,13.855389,9.509109,6.246293,7.139684,6.447118,6.053731,3.641330,0.925622,0.281819,0.351241,0.117356,0.015703,0.388431,0.000000,0.000000,7.204133,3.417356,2.115703,0.916529,0.000000,0.000000 -602201.555000,4612925.550000,7297,2305,170.053757,189.414886,172.976868,154.638031,139.001678,125.142166,122.142166,120.753738,118.299194,118.398361,118.877701,129.381836,148.935547,167.092575,179.026459,189.051254,187.985138,172.481003,148.092575,124.654564,114.059525,111.282661,107.654564,79.910759,64.001671,79.447952,95.547127,69.447952,35.001671,13.878529,9.786797,10.969437,8.944644,9.006626,10.415718,6.168606,1.854549,0.196695,0.313224,0.861985,0.414051,0.461985,0.918182,0.010744,2.867769,1.414050,3.342975,1.939670,3.510744,13.762812 -602214.355000,4612925.550000,7361,2305,173.485962,192.447113,176.653732,160.381012,142.579346,129.670258,128.298355,123.719849,121.967781,121.736374,121.934723,133.868607,153.207458,170.736374,183.009109,193.331421,190.381012,174.141342,149.422333,127.116539,116.025635,113.777702,110.190926,82.372742,64.496712,80.942986,98.050423,71.628937,34.918201,13.261174,10.017374,13.232247,9.742165,8.841336,10.476874,5.349595,2.152896,0.980167,0.297522,0.833059,0.928927,0.784299,1.185125,0.000000,1.425620,2.816529,2.308265,14.907439,3.534711,0.000000 -602224.555000,4612925.550000,7412,2305,166.285965,194.236359,173.880981,158.922333,139.798355,127.674393,125.442986,122.368607,120.484314,121.823151,120.294228,131.847946,150.608292,170.038010,181.633057,192.269424,190.641312,173.583466,149.261185,125.600014,114.889267,113.418198,108.509094,81.376869,64.947121,79.996704,96.757034,67.947121,34.162003,14.981009,9.864482,11.392577,9.339685,9.649602,9.199187,5.816538,0.445455,0.604960,0.213224,0.000000,0.023967,0.334711,0.433884,0.000000,1.433884,3.853719,2.277686,2.511570,2.348761,4.160331 -602237.955000,4612925.550000,7479,2305,114.370262,164.733917,162.403351,153.618225,136.857895,121.535553,119.593407,115.362000,114.171913,115.452904,113.023155,124.271088,140.130615,158.560364,171.229797,182.196732,179.262848,165.171936,141.527313,122.254562,110.262825,106.990097,101.345467,74.957047,59.609940,76.833084,95.766960,73.271095,33.304153,11.738034,9.213243,5.801661,5.964476,6.257037,7.009929,2.134715,0.584300,0.288431,0.085951,0.000000,0.217356,0.000000,0.000000,0.158678,1.330579,0.000000,0.000000,1.101653,0.000000,0.000000 -602253.755000,4612925.550000,7558,2305,118.337204,161.271088,161.519012,152.626450,137.080994,123.171913,119.816544,116.882660,113.204971,116.196709,114.485962,124.725632,142.618195,160.469421,172.990082,184.163635,182.593399,165.543808,143.510757,122.709106,111.180183,105.841339,101.618195,75.171913,59.585144,77.502502,96.163651,72.973579,35.072746,13.490101,9.238035,6.431414,8.260345,7.695881,8.460343,2.856203,0.661159,0.014877,0.190910,0.262811,0.380166,0.000000,0.000000,0.000000,1.474380,0.000000,1.251240,0.000000,1.247108,0.000000 -602267.155000,4612925.550000,7625,2305,87.660347,152.280182,156.751266,147.726471,132.106628,119.635559,116.048782,112.511589,110.776054,110.924812,110.751259,121.866959,140.329773,156.280182,168.792587,179.817368,177.966141,164.511597,140.164490,120.379356,108.255394,104.627289,97.172737,72.313232,55.875221,74.652077,97.065308,73.817368,32.048779,12.113241,8.833903,5.519019,6.149601,6.931419,6.368608,3.323148,0.622316,0.180993,0.014876,0.120662,0.000000,0.000000,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.555000,4612925.550000,7697,2305,85.070267,149.673569,154.491745,144.681839,130.409103,119.863655,115.946297,112.995880,110.020676,109.913239,110.111588,120.533073,138.442169,156.152908,167.681839,177.442169,176.458694,162.020676,139.632248,118.987617,108.202492,102.929771,96.136383,70.549606,55.987625,74.095055,95.235550,71.954559,33.425636,12.030597,8.739690,4.449595,6.530592,4.807449,5.928936,1.760337,0.133060,0.050414,0.032232,0.028099,0.000000,0.097521,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.155000,4612925.550000,7735,2305,89.411591,144.378525,153.725632,145.287613,131.254562,118.733902,114.808281,112.362000,109.750427,109.461174,109.461174,120.262825,138.014877,154.560333,167.552078,178.114059,174.593399,161.295868,139.271088,117.990097,106.973572,103.064476,96.345467,71.287621,55.766964,74.254578,93.667786,71.056213,32.378532,12.518199,8.758698,4.965299,7.118194,7.733070,6.224805,2.302485,0.661986,0.280993,0.456199,0.067769,0.060331,0.102480,0.353719,0.269422,1.429752,1.311570,0.000000,0.000000,0.000000,2.059504 -602297.555000,4612925.550000,7777,2305,95.050438,146.058670,154.414047,146.951233,131.422318,121.339676,117.356201,113.463638,111.356201,111.612404,110.447113,122.728104,139.538010,155.918182,169.513214,177.909912,175.785950,161.430573,139.356201,120.215706,107.885132,103.017357,98.100014,72.843811,57.678528,76.587624,93.819023,70.306625,31.786797,12.285968,8.918200,5.523976,7.095881,6.009930,6.519021,2.522320,0.866117,0.218182,0.176034,0.199174,0.164463,0.000000,0.194216,0.576860,0.000000,2.096694,0.000000,0.000000,0.000000,0.000000 -602309.955000,4612925.550000,7839,2305,85.804977,147.986786,154.317352,146.937195,129.457855,118.226463,114.276054,111.466133,108.771919,108.780182,108.449608,119.904144,137.780167,153.152069,165.912399,173.813232,172.656204,160.061157,136.829758,116.614899,106.028122,100.846298,96.490929,72.722336,56.102497,73.813240,90.714066,65.292580,30.378531,10.204149,8.771920,5.522324,7.329765,6.624807,6.969433,1.691743,0.608268,0.257027,0.157025,0.059505,0.230580,0.110744,0.300828,0.116529,1.441322,0.000000,1.067769,0.000000,0.000000,0.000000 -602328.955000,4612925.550000,7934,2305,99.267792,142.218201,152.234711,140.681015,126.284317,114.523987,109.507454,105.631424,102.457870,102.358696,101.904152,112.036385,130.358704,146.400009,157.813248,166.887619,166.383484,152.375214,131.201675,111.408287,101.044647,95.714066,89.490929,65.383492,51.276058,70.094246,87.449608,64.614899,30.777704,10.275224,8.135556,5.571085,5.323152,6.962823,4.909101,2.150418,1.237192,0.247936,0.120662,0.462810,0.167770,0.375207,0.422315,0.342976,0.000000,1.314050,0.000000,3.186777,0.000000,0.000000 -602343.155000,4612925.550000,8005,2305,108.714882,158.648788,153.334747,141.210754,126.847115,114.161163,109.409096,105.260338,102.103317,101.896706,101.152901,111.764473,130.119843,146.466980,157.210770,167.111588,165.764481,152.533096,131.764465,110.599182,99.508270,96.582649,89.136375,64.252083,51.508282,69.128113,89.524803,66.475220,30.599192,10.623158,8.103325,8.374393,6.929764,6.658691,6.361171,3.409100,0.470251,0.508266,0.163637,0.365290,0.263637,0.000000,0.423141,0.336364,2.077686,0.000000,0.000000,0.000000,1.375207,2.766942 -602353.955000,4612925.550000,8059,2305,126.652916,155.066132,152.586792,142.801666,124.958694,112.140511,109.479355,105.289276,101.710762,100.247948,100.289276,111.016548,130.231415,145.198364,156.380188,166.760345,166.247955,151.355392,129.033081,110.173569,98.561996,94.330597,88.454559,63.851261,48.677708,67.710770,87.264488,65.661179,29.402496,10.414894,8.041342,7.286788,6.526459,8.525632,9.296708,3.886785,1.063640,0.786780,0.697523,0.438844,0.134712,1.561158,0.402481,1.020663,10.690083,5.555373,1.472727,2.523967,4.839670,8.686778 -602361.555000,4612925.550000,8097,2305,142.701675,165.098373,157.371094,141.098343,124.247116,112.437202,109.131416,103.817368,99.751251,98.966125,96.701668,108.428940,127.354553,143.709915,155.304977,164.809113,164.156219,150.610764,129.404144,107.660339,97.643814,94.280174,88.172737,63.172741,50.048782,68.404152,86.957863,64.619026,27.999193,10.886793,8.015722,11.352907,8.057037,11.143816,8.809104,8.079351,3.010752,2.282650,1.819013,2.040500,1.014051,3.985953,7.151242,1.866945,44.133064,26.371901,21.584299,8.424794,9.762811,14.436365 -602366.755000,4612925.550000,8123,2305,194.096710,174.807449,152.700012,138.435532,119.989265,107.030586,105.063644,99.138023,96.220680,94.997536,93.848778,104.848770,123.352905,138.452057,150.509933,160.278519,159.377701,146.295044,126.088440,106.576042,96.501663,93.857033,89.245476,64.377708,50.328121,69.443817,91.080185,66.683495,30.437208,10.911587,8.113242,13.098364,9.194228,10.971914,13.890099,10.114062,4.693396,1.716533,3.394219,3.909096,3.022318,8.342984,20.794224,10.028931,107.671082,72.077690,50.369427,18.390083,31.960333,27.478516 -602133.155000,4612915.550000,6955,2355,345.541351,204.458679,165.268600,143.219009,128.376053,114.673569,108.673569,103.524811,102.962830,102.433899,100.706627,109.863655,125.657043,140.004135,152.070251,162.557846,160.533051,149.599167,128.152908,111.152908,99.648773,96.500015,91.136383,66.541336,50.665306,70.078529,89.491753,68.772743,33.020679,9.219850,8.285143,14.938035,6.838855,9.052906,10.932246,8.892575,3.485958,1.134714,3.061989,0.566117,2.047111,5.365295,5.661164,10.126455,54.352077,50.530590,21.114880,24.772732,31.129755,29.351242 -602136.555000,4612915.550000,6972,2355,304.968628,205.042969,168.522308,150.125626,133.142166,121.001671,115.059517,111.051247,109.026459,109.861168,107.613235,118.274391,134.166962,149.109100,160.770248,171.266113,170.456192,157.522324,135.406631,114.299187,102.952087,100.547127,95.381836,68.514069,53.571918,72.828110,89.398354,67.786804,33.233078,12.689273,8.671092,12.073569,7.580179,7.927287,8.157039,7.789267,1.483475,0.319010,0.203307,0.483472,0.492563,0.908265,0.743804,2.747109,17.151241,17.821491,17.007441,9.843803,11.130581,12.882645 -602142.155000,4612915.550000,7000,2355,264.300842,195.639694,166.838043,151.176880,135.242981,124.077698,116.986786,113.416542,112.234718,112.300835,111.333893,121.656212,138.590103,154.119034,166.697540,176.300842,173.523987,161.532257,138.647949,117.532242,106.366951,101.978523,97.490921,70.937202,55.251259,73.284309,90.309105,67.499191,32.350430,12.088448,8.862829,9.880179,8.212410,9.142162,9.042163,4.475214,1.503309,1.066118,0.611572,1.070250,0.120662,0.378513,0.870249,1.643803,19.362812,8.834712,4.438017,13.457853,9.258678,5.588430 -602151.355000,4612915.550000,7046,2355,210.432251,180.605804,161.911591,148.804153,133.622330,121.366135,117.746307,114.622337,113.184319,113.176056,112.837212,122.250435,140.333084,155.903336,167.928116,177.399200,175.481842,162.878540,138.390930,118.572746,105.671921,102.622337,98.481842,71.622337,55.556217,72.895065,88.432251,66.936378,31.895060,12.014894,8.952912,5.870258,7.533072,8.172740,6.985136,3.540501,0.546282,0.716530,0.376860,0.190909,0.057852,0.201654,0.831406,0.269422,10.668596,3.335537,4.262811,7.477687,3.746281,1.894215 -602162.755000,4612915.550000,7103,2355,197.506622,182.605789,162.176041,150.696701,136.655380,124.738029,120.101669,117.233902,114.952904,116.638855,115.655388,125.357864,142.134720,158.324799,171.671906,179.423981,177.886780,165.390915,140.771088,120.952904,108.680183,104.721504,101.118195,73.754562,56.795891,74.374397,90.308281,68.134735,30.291752,11.126464,9.192581,4.824801,6.997535,7.222327,7.833897,2.874386,0.525622,0.607439,0.090083,0.228100,0.021488,0.581819,0.789257,0.976860,10.613225,0.392562,6.458678,6.866117,0.000000,9.898348 -602177.355000,4612915.550000,7176,2355,191.259521,185.995056,166.276047,153.507462,138.135559,123.482658,120.292572,118.259514,116.052902,117.804970,117.490921,127.251251,144.052917,160.441345,172.226471,180.945480,180.449600,167.185150,142.523987,121.953728,110.474388,105.953728,102.309105,75.606621,58.507458,74.515717,89.540504,67.482666,31.548782,11.853737,9.300846,4.614885,6.495881,6.571911,6.436374,2.633890,0.701655,0.138017,0.073554,0.207439,0.355373,0.201654,0.000000,0.000000,3.059505,1.220661,1.909091,1.733058,2.278512,4.051240 -602198.155000,4612915.550000,7280,2355,138.990921,178.106613,174.519836,155.726471,138.123154,125.032234,124.015709,121.346283,119.180992,120.023972,119.023972,130.552902,150.833908,168.214050,180.536362,190.371078,188.875214,171.552902,147.990921,125.536369,114.486778,110.544632,105.445457,79.371094,62.214069,80.106628,95.866951,68.850433,33.800842,12.379356,9.585969,9.215716,8.387619,7.618195,8.213238,6.004967,0.705787,0.411571,0.044628,0.431406,0.173554,0.114877,0.000000,0.000000,1.204959,0.000000,1.900827,2.018182,0.000000,1.966942 -602209.555000,4612915.550000,7337,2355,140.007462,188.470245,173.304962,158.552917,141.437210,127.007454,126.660347,122.114899,119.817375,120.114899,118.023987,130.362823,149.561172,167.346298,179.569427,189.676880,188.172745,172.982651,147.693405,126.147957,115.197540,112.015724,108.536385,80.445473,64.205803,80.437210,96.949608,70.453735,34.569443,12.814893,9.866961,11.003324,8.311586,8.732245,9.419849,5.023975,0.824796,0.501654,0.356199,0.000000,0.154546,0.916530,0.000000,0.319835,5.587604,0.000000,0.000000,0.958678,1.666942,0.000000 -602213.755000,4612915.550000,7358,2355,162.490082,188.622314,176.870255,158.870255,141.985962,128.266953,126.903320,122.771095,120.754570,121.250435,119.671921,131.258698,150.754547,168.093399,181.432236,190.597534,189.630585,173.556198,149.275208,127.399185,115.291756,112.928123,108.300018,80.911583,64.407463,81.638863,98.407455,71.060356,36.440517,14.468614,9.845474,11.638032,8.336380,9.851254,10.032246,6.028934,0.807440,0.421489,0.132232,0.000000,0.428927,0.717356,0.000000,0.016529,0.000000,0.000000,1.052066,0.716529,0.000000,0.000000 -602217.355000,4612915.550000,7376,2355,159.342148,187.247940,173.165283,159.099182,141.677719,128.033066,124.983482,121.727280,117.537201,118.190094,116.173561,128.537201,148.487625,165.256195,178.801651,188.958679,187.074387,170.793396,147.909103,126.842987,113.702484,110.561989,105.818192,77.785133,62.595058,79.223152,98.892570,71.677696,35.264481,13.142167,9.619854,12.736380,9.474398,9.244642,9.935551,5.157858,1.204134,0.110744,0.129753,0.000000,0.099174,0.000000,0.000000,0.000000,1.365289,0.000000,2.280992,4.342149,0.000000,0.000000 -602222.755000,4612915.550000,7403,2355,147.479355,184.993393,169.315720,154.514053,139.100830,123.985130,121.952072,118.472740,116.406624,116.125633,113.390091,124.968605,146.406616,162.538849,175.778519,186.588440,185.191742,168.125626,145.910751,124.166954,111.133896,108.530594,103.836380,75.084312,60.001675,78.885971,97.084312,70.009933,34.481014,12.248778,9.439690,11.120677,5.808278,9.771088,7.868607,4.381824,1.034712,0.385125,0.040496,0.057851,0.099174,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,1.700000,1.165289,4.163637 -602231.755000,4612915.550000,7448,2355,102.616547,164.104141,163.385132,153.757034,136.740524,122.872742,120.492577,117.310760,114.236374,116.723976,114.600014,125.682655,143.707458,162.938858,174.178528,183.533890,181.980179,168.467789,144.451248,124.319031,112.236374,106.228111,103.054558,76.509109,59.690933,78.798370,96.327286,72.137215,32.343822,12.519853,9.368613,4.934719,6.757865,6.147121,6.132242,3.314882,0.690085,0.359506,0.065290,0.028099,0.163637,0.009918,0.064463,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.755000,4612915.550000,7523,2355,101.686798,163.331436,161.620697,152.422348,137.199203,123.058701,121.009102,118.455383,114.215714,115.554558,114.777702,125.314896,142.678543,160.025650,171.810776,182.058701,180.190933,166.265320,143.695068,123.347946,111.166130,107.562820,101.009102,75.480186,61.190929,79.372749,97.885139,73.339691,33.240517,13.577704,9.182665,6.377695,7.812413,8.238032,7.013235,1.547111,0.614054,0.189257,0.000000,0.076860,0.000000,0.000000,0.114050,0.210744,1.403306,0.000000,0.000000,0.000000,0.000000,0.000000 -602253.755000,4612915.550000,7558,2355,106.766968,155.709106,158.857864,149.552094,133.816544,121.593391,118.204964,114.403313,112.419838,114.353729,112.535545,122.882652,139.791763,157.758682,169.246292,179.370270,177.766968,163.882645,140.692581,120.378517,108.089264,104.808273,100.072731,72.948784,57.676052,75.138863,95.940521,70.138863,32.568615,11.244644,9.097540,4.983479,5.847948,6.673567,6.906623,2.168599,0.546284,0.259504,0.045455,0.054546,0.023141,0.169422,0.127273,0.260331,0.000000,0.000000,0.000000,1.072727,0.000000,0.000000 -602260.755000,4612915.550000,7593,2355,84.952087,152.365295,159.919022,149.514053,134.745468,123.117363,120.390091,116.704140,114.092575,115.770256,114.257858,125.051247,143.819855,160.266129,171.456207,181.290924,179.885956,166.836380,142.464493,122.299187,111.575218,106.274391,101.145470,76.062828,60.591755,77.831429,96.018188,72.852913,35.079361,13.558695,9.195061,5.675218,8.906628,7.453732,6.677698,3.461993,0.712400,0.233885,0.178513,0.231406,0.066116,0.185124,0.248761,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602271.155000,4612915.550000,7645,2355,85.198364,145.330582,156.132233,148.578506,134.016541,123.016541,119.148766,114.867775,113.975212,114.537201,114.049591,124.628105,142.975204,160.371902,170.528931,181.190079,177.512390,164.223145,142.809921,122.388435,110.057861,106.694221,100.272736,75.702507,61.355392,77.710762,94.842987,71.214890,33.239689,12.959521,9.115722,6.609929,7.306625,6.580180,5.408275,2.417362,0.491737,0.181819,0.019835,0.021488,0.276034,0.041322,0.142149,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.555000,4612915.550000,7697,2355,75.181831,150.694214,159.528931,148.925613,133.512405,121.966949,117.413231,115.347122,114.000015,113.181831,113.760345,124.173561,143.231400,159.570251,172.413223,180.289261,178.173553,164.950409,142.000000,121.884308,109.380180,106.000015,99.272743,76.462830,60.347126,76.322327,95.429771,70.561996,32.752087,13.965308,9.024813,4.183482,8.135550,8.060344,6.354557,2.314057,1.000003,0.689258,0.429752,0.185125,0.285124,0.241322,0.196695,0.282645,0.000000,0.699174,0.000000,0.000000,0.000000,0.000000 -602285.355000,4612915.550000,7716,2355,90.079353,143.890915,154.395050,148.428101,132.122330,121.072739,119.196709,115.155388,112.618195,114.626457,113.717369,124.766960,143.609924,159.725632,171.370255,181.428101,177.758682,165.304138,142.080994,121.238029,110.932243,107.014893,101.072731,76.056221,61.155392,76.370270,95.833069,70.204979,31.362001,12.775224,9.188448,5.918191,7.748774,8.862825,8.066954,2.471910,0.761160,0.266117,0.000000,0.041322,0.000000,0.000000,0.060331,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602288.755000,4612915.550000,7733,2355,87.582664,145.557861,155.252075,147.888443,132.888443,122.326462,118.367783,115.483490,113.524811,113.334724,114.855385,124.962830,142.483490,159.756210,171.756210,181.161179,178.417374,165.855392,141.681839,120.871918,110.334724,106.252083,101.227287,75.640511,59.962830,78.252083,94.144646,68.747948,32.665310,12.367785,9.202498,4.581001,6.484311,7.152080,6.558688,1.918190,0.390085,0.390085,0.286777,0.214876,0.181819,0.000000,0.371902,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602293.955000,4612915.550000,7759,2355,84.972755,148.095047,155.858704,149.156219,132.015717,122.065300,119.643806,115.924805,113.329758,114.313232,114.395874,125.585960,143.693405,160.412415,172.685150,181.048782,178.602493,164.842163,142.371094,121.767776,109.709938,106.883484,101.900009,77.759514,61.792580,78.404152,95.164467,69.990929,32.924812,12.244646,9.263656,5.335548,7.490098,7.255384,6.385136,2.870255,0.590085,0.066943,0.096695,0.062810,0.034711,0.000000,0.215703,0.142149,0.000000,0.000000,0.000000,0.990083,0.000000,0.000000 -602302.555000,4612915.550000,7802,2355,89.673569,146.913239,157.433899,145.822311,132.599182,123.119850,118.491753,115.764481,113.946297,115.433899,114.731422,125.632240,144.483475,160.830597,172.764481,181.326462,178.863647,165.640518,141.822311,121.144646,109.971092,107.061996,102.590927,77.103325,60.648781,76.351257,91.227287,67.541344,29.002499,12.285141,9.326465,4.964474,7.619023,6.719022,7.186789,2.563645,0.574383,0.442150,0.018182,0.142976,0.327274,0.000000,0.507439,0.057851,0.000000,1.347934,1.865289,0.000000,2.449587,0.000000 -602316.955000,4612915.550000,7874,2355,74.989273,147.518188,154.989273,143.567780,128.609100,117.551247,114.881828,110.104965,107.815712,107.245461,106.848770,117.419022,135.617371,151.625626,161.865295,171.138031,169.923157,156.989273,134.509933,116.055382,104.129761,99.609100,94.245461,69.782654,54.344650,72.361168,90.460342,65.038864,31.808285,12.399190,8.567787,7.623151,7.724808,6.930593,5.308274,3.396701,0.595043,0.385125,0.165289,0.042149,0.026446,0.000000,0.290083,0.511571,0.000000,0.000000,1.128099,1.472727,1.728099,0.000000 -602338.155000,4612915.550000,7980,2355,93.592583,146.716537,152.113235,141.319839,126.617363,115.567772,111.187614,106.823975,103.468613,103.262001,102.005806,113.658676,131.650421,146.865295,158.328110,169.410751,166.700012,152.890091,131.245468,112.344627,100.534729,96.319855,89.154564,64.385971,49.947952,67.766136,91.600845,65.923157,31.129772,11.244645,8.104979,5.974390,7.242989,7.644641,7.346292,3.278520,0.530582,0.790912,0.563637,0.020661,0.627274,0.187603,0.102480,0.173554,0.000000,0.000000,0.000000,0.000000,1.369422,0.000000 -602356.555000,4612915.550000,8072,2355,119.010765,153.630585,156.118195,143.514877,127.861992,116.142982,112.870255,108.944633,105.324799,104.663643,102.349594,114.820671,133.308273,148.738022,160.167770,170.333069,168.837204,154.316528,132.349594,112.944633,102.035545,97.556206,90.118195,65.076881,51.333076,69.242172,91.333069,67.093407,29.630596,10.256215,8.192581,7.381830,6.611584,6.521501,5.999184,3.449594,1.190913,0.326447,0.343803,0.048761,0.201654,0.000000,0.613224,0.258678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602369.355000,4612915.550000,8136,2355,127.771080,160.523163,155.250427,143.349609,126.308273,115.176041,110.754555,105.837196,103.936371,103.035545,101.804138,112.762817,131.820663,147.771103,159.903336,170.647110,167.952911,151.944656,130.903305,112.308273,100.531410,96.481827,91.209099,64.878532,51.308285,69.704971,87.746284,64.762825,28.719856,10.504149,8.291755,8.451252,6.941335,9.069434,9.035551,3.739676,1.189259,0.218183,0.259506,0.781820,0.715703,0.676033,0.450414,0.923969,3.542976,11.047935,2.815703,2.827273,1.663637,0.000000 -602378.355000,4612915.550000,8181,2355,131.977692,171.903336,154.498352,143.076859,128.671906,112.713226,109.564468,105.853729,102.622322,103.052071,99.614059,111.771080,130.043808,148.076859,159.093414,169.895065,169.010773,153.630585,130.523148,111.118187,100.680168,96.886780,92.118187,66.060356,50.771103,69.457039,87.663643,64.762833,28.742992,10.455388,8.374400,10.404146,7.990921,9.623981,10.316545,6.133895,2.308269,1.766947,0.734712,0.446283,0.483472,1.845456,3.019836,0.521489,31.314877,8.130579,13.269423,1.505785,1.761157,0.000000 -602384.555000,4612915.550000,8212,2355,178.161163,180.119827,154.896698,142.946274,127.210754,109.971085,109.516541,104.301659,100.673561,100.979347,98.400833,110.243813,128.599182,147.392563,159.657028,169.896698,168.103302,151.764465,129.838852,110.623978,99.657036,97.152901,93.227280,66.979355,51.847126,69.971100,92.871910,67.764488,29.681837,11.879355,8.475225,13.652082,8.639682,11.681834,13.870262,9.950425,2.729756,1.364465,1.702483,1.372730,1.812399,3.294220,6.427275,5.589258,73.050415,29.873556,19.219009,9.562811,11.280993,6.052893 -602388.955000,4612915.550000,8234,2355,278.109955,202.492569,156.401672,137.352081,115.211586,99.294228,96.914062,94.112411,91.525635,93.319023,90.666130,104.905800,125.054558,144.847946,158.046295,169.261169,163.889267,147.922333,127.856209,106.666130,97.112411,96.947121,95.690926,68.277710,48.393410,73.327293,103.806625,85.930588,39.670265,11.570264,8.699192,20.463654,12.264479,16.772743,21.526463,21.192579,5.877694,3.028104,3.227279,3.919014,3.489262,9.584305,18.825628,18.342981,106.255379,100.836365,75.550415,42.436371,37.002487,67.684303 -602133.155000,4612905.550000,6955,2405,222.935577,189.481003,163.687607,143.778519,130.340515,116.671082,112.761993,107.398354,105.472740,106.472740,105.985130,114.414886,131.836380,147.596710,158.679352,168.216537,167.505798,154.042984,133.092575,112.406624,100.142159,96.034721,92.927292,65.307457,51.001675,69.166969,86.357040,66.563660,31.704149,10.532248,8.447953,8.923154,8.083485,7.668607,7.661996,7.925631,2.095871,0.919837,0.434712,0.085951,0.056199,0.569422,0.455373,1.226447,12.969423,8.204133,9.718183,5.052893,10.371902,0.000000 -602137.355000,4612905.550000,6976,2405,159.604965,164.308273,153.060333,145.324799,128.878525,119.031418,115.320679,111.254562,110.399185,112.419846,111.936378,122.994232,140.688431,155.580994,167.936371,176.564468,175.919846,163.027283,141.085129,119.704971,107.952904,105.688446,99.663651,73.729767,57.118202,74.605797,90.663658,68.060356,30.795887,13.260347,9.060350,6.502490,8.829765,8.261993,9.581833,6.451247,1.583473,1.908267,1.439672,1.773555,0.701654,0.736364,1.250414,0.316529,3.353719,0.662810,0.647934,2.175207,3.702480,3.576860 -602143.955000,4612905.550000,7009,2405,156.838837,155.857040,154.176041,146.266953,132.167786,122.974388,120.470261,118.263649,116.676872,119.696709,117.721504,128.468613,144.291748,159.531418,173.630585,180.837204,178.936371,166.217361,143.812408,122.055389,110.341339,105.581009,99.754562,74.343002,58.533081,73.913246,91.762825,69.142998,32.432247,14.039687,9.068615,7.005796,9.256211,10.383485,10.161170,8.808273,3.795045,3.170252,3.565292,2.985953,3.957854,1.213225,0.583472,0.673554,5.217356,4.862811,2.272728,7.304960,2.877686,0.000000 -602154.755000,4612905.550000,7063,2405,188.547943,175.671906,164.655380,150.457047,134.002487,123.845467,119.622330,115.192581,114.465309,115.638863,114.754562,124.093414,141.126450,157.862000,169.390915,178.556198,176.762817,164.209091,142.308273,120.961182,109.225639,105.134735,100.300026,73.514900,56.547958,74.853745,91.704979,70.597542,34.109940,13.276877,9.118200,6.435549,8.655386,7.994228,7.463650,3.271907,0.599175,0.464464,0.664464,0.001653,0.104960,0.207439,0.694215,0.000000,3.454546,0.000000,1.707438,4.303307,2.125620,0.000000 -602172.755000,4612905.550000,7153,2405,181.103317,176.252075,164.425629,152.690094,137.086792,124.946289,120.979347,117.904968,117.161163,119.640503,117.904968,127.979347,146.318192,163.334732,173.723160,183.855392,182.012405,168.599182,144.863647,123.533066,110.971085,107.533066,102.590927,75.607452,58.433903,74.797539,92.516548,69.747948,30.260349,11.538033,9.326466,5.866953,6.400839,6.429764,6.103318,3.368602,1.117357,0.117356,0.000000,0.061157,0.138017,0.000000,0.616529,0.000000,4.565290,5.771075,0.911570,0.000000,0.000000,2.203306 -602190.555000,4612905.550000,7242,2405,165.509094,184.208252,172.431412,154.621490,136.646301,124.530586,124.712410,118.993401,117.100838,117.828110,116.109100,128.076050,147.720673,165.051254,176.778519,186.381821,184.985138,169.786789,146.067780,124.307449,113.026459,109.357033,104.836372,77.819847,63.067787,78.613235,98.753731,71.613235,35.742168,13.026464,9.530598,11.894231,9.174397,9.946295,10.852905,5.319842,0.962813,0.782646,0.465290,1.047108,0.588431,0.919009,0.174380,0.010744,1.279339,7.563637,2.954546,0.890083,2.355372,0.000000 -602204.155000,4612905.550000,7310,2405,167.471909,197.805786,180.541321,160.954544,141.351273,124.690094,123.433891,119.351250,117.293396,116.632240,115.665298,127.400833,147.533081,164.954544,176.698349,188.615707,186.367767,169.185944,146.285141,125.037201,113.458687,109.657043,105.227287,77.334724,61.673569,78.384315,97.012413,72.359520,34.623985,13.651258,9.566134,11.809106,7.972743,10.406627,9.511585,6.619018,1.361986,1.871903,1.469424,0.764464,1.649588,1.766117,0.166942,1.604960,6.111571,1.481818,0.437190,7.585125,5.099174,6.143802 -602213.555000,4612905.550000,7357,2405,136.225632,179.790924,171.741333,155.427277,139.501663,124.700020,123.319855,119.303314,116.551247,118.063644,115.336372,127.774399,147.774384,165.567780,176.782654,188.063629,185.385956,170.377701,145.700012,124.402489,112.311584,109.493408,103.881836,75.576050,60.402496,79.741341,97.956215,70.848778,32.898365,13.431423,9.443821,11.062825,6.951255,8.246294,7.949602,4.652901,0.343803,0.428100,0.000000,0.182645,0.225620,0.000000,0.000000,0.000000,1.283471,1.051240,1.522314,0.000000,1.246281,1.977686 -602220.555000,4612905.550000,7392,2405,119.939690,178.600845,168.336395,157.964493,141.005814,123.931419,123.700020,122.171089,118.972748,121.162827,118.551254,130.675232,148.658707,165.898376,178.733078,189.741333,187.245468,170.848785,147.559525,127.047127,114.642166,110.766136,106.609108,80.609108,63.559525,81.319855,98.906631,73.873573,34.832249,12.602497,9.691755,7.569433,6.398360,6.835550,7.192575,3.248766,0.844630,0.144629,0.047934,0.072728,0.147108,0.100827,0.953720,0.000000,5.000000,0.000000,1.212397,0.000000,0.000000,0.000000 -602229.955000,4612905.550000,7439,2405,92.149597,160.678513,164.248779,154.232224,137.290085,124.116531,121.653725,120.471909,116.951248,118.306618,117.323143,128.405792,146.819000,164.719849,176.331406,186.620651,184.273544,170.695053,145.637192,124.174385,112.810760,109.480179,103.736374,78.422325,63.918198,79.314888,97.504974,74.182655,32.133080,13.848777,9.430597,6.103315,7.105799,5.990094,6.257863,2.921494,0.771076,0.409092,0.219835,0.033058,0.128926,0.231405,0.533058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602241.755000,4612905.550000,7498,2405,92.010757,157.366135,159.316559,149.415726,136.713242,124.052078,120.531418,118.283485,115.457039,116.754562,115.506622,127.432243,143.374405,161.754562,173.828949,183.878540,181.035553,167.002502,144.019028,123.085136,112.324806,107.581009,102.845467,76.895065,61.738033,78.043823,96.837204,71.481842,32.142994,13.180182,9.349607,4.476866,7.016543,7.390095,6.279350,2.646286,0.083472,0.170248,0.138017,0.025620,0.169422,0.000000,0.138843,0.206612,0.000000,2.828099,0.000000,0.000000,0.000000,0.000000 -602247.955000,4612905.550000,7529,2405,79.223991,153.554565,157.273560,150.587601,133.959503,122.190926,118.719849,116.438858,113.860344,116.595879,113.554558,124.364479,142.934708,160.728119,171.331421,182.190903,180.223969,166.521500,142.868591,121.149597,110.389267,105.860344,101.190933,75.918205,60.075226,76.628944,95.463654,72.075226,33.000847,13.783488,9.199194,7.494225,8.040509,6.600838,6.234722,3.221496,0.909093,0.616530,0.057851,0.147934,0.030579,0.104959,0.373554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.155000,4612905.550000,7550,2405,107.502502,150.304138,160.700836,150.667770,135.204971,122.750427,119.419846,116.543816,114.841339,116.180183,114.328941,125.196709,142.221497,159.213211,171.651245,181.122314,178.915710,165.246277,141.403305,120.915718,110.246292,106.014893,99.981834,74.510757,60.089275,77.130592,95.981834,71.419846,31.221506,12.048776,9.089274,6.109926,6.862823,6.106625,6.833895,2.227280,0.637192,0.366117,0.205786,0.123141,0.026446,0.000000,0.367769,0.000000,2.274380,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.355000,4612905.550000,7571,2405,92.391762,149.507462,154.366959,147.499191,133.176865,120.730583,117.928932,115.366943,112.697525,112.672729,111.945457,122.358681,141.714066,157.755386,169.631409,179.391739,177.780167,164.623154,141.449600,120.152069,108.433060,103.052902,99.127281,72.887619,58.705799,76.854568,95.548775,71.325638,33.705803,10.334727,9.011590,3.436370,6.657865,6.357036,5.592572,2.919015,0.271902,0.127273,0.092562,0.382646,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602262.755000,4612905.550000,7603,2405,97.925636,144.115723,158.347122,150.471085,134.991745,123.570259,118.892570,115.644638,114.041328,114.074387,112.925629,124.256203,141.636383,157.991745,169.669434,179.925629,177.876053,164.454559,141.404968,120.752075,109.132240,105.264473,99.454559,74.214882,61.363655,75.859512,94.438034,72.851257,32.165310,11.745471,9.041342,5.451249,8.128114,8.240510,6.467780,2.224798,0.895044,0.228927,0.045455,0.066116,0.103306,0.068595,0.066116,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602273.355000,4612905.550000,7656,2405,86.135559,143.155380,156.157852,148.571075,132.215714,122.909927,118.876869,116.695053,114.157867,114.273567,113.488441,124.298363,142.562805,158.447098,171.083466,180.025620,178.868591,165.223969,142.678513,121.967781,111.017365,106.314888,100.918198,75.604149,60.075226,77.331421,97.174393,73.571091,34.986797,13.346297,9.174398,5.534722,8.183486,7.552080,7.127284,2.661991,0.872732,0.223141,0.000000,0.076034,0.041322,0.000000,0.443802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602285.755000,4612905.550000,7718,2405,92.419029,143.400024,156.259521,144.300842,128.738861,120.193398,117.350426,112.647942,110.937202,111.201668,111.755386,122.408279,141.763641,157.482666,169.135544,178.176865,175.647934,164.193390,139.507446,119.904144,107.011581,103.961998,98.672737,72.515717,58.259525,76.507446,93.168610,70.127281,31.920679,12.443818,8.970267,5.695053,7.166129,5.170260,6.015713,2.423972,0.582647,0.241323,0.052066,0.216529,0.000000,0.000000,0.323141,1.189257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.555000,4612905.550000,7767,2405,73.536385,144.114899,156.304962,147.222321,132.123154,120.519844,116.734734,113.495064,111.635559,112.081841,112.147957,122.850426,141.156204,156.354553,169.131409,177.263641,174.594223,161.338013,139.147949,118.346298,108.139687,103.999191,100.445473,73.395889,58.255386,73.966133,92.296715,67.660347,30.387623,11.284314,9.131424,6.690094,7.118196,7.125633,6.069432,3.204140,0.619837,0.539671,0.047934,0.152067,0.168596,0.111571,0.319009,0.025620,2.326447,0.000000,0.000000,0.000000,0.000000,0.000000 -602308.555000,4612905.550000,7832,2405,79.473579,144.812408,158.407440,145.886780,131.870255,119.820671,116.465294,113.060333,110.134720,110.093391,109.457031,119.886780,138.407440,154.655380,164.994217,174.655396,174.647110,160.142975,138.721497,117.035545,106.308273,103.217361,96.754555,71.870270,57.473572,74.952911,90.729767,67.804153,32.834728,12.178530,8.795887,5.642159,7.566957,8.614065,7.384309,2.737198,0.285126,0.349588,0.080992,0.050414,0.137191,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602327.555000,4612905.550000,7927,2405,86.579353,139.951248,155.587616,143.976044,128.852081,117.240509,113.934723,108.488441,106.827286,106.017365,105.909927,116.719849,135.942993,150.909927,162.281815,170.546280,169.571075,155.166122,133.612411,114.149597,102.182655,98.901665,92.190926,67.934731,53.942993,71.628937,91.050423,67.637207,30.202499,11.261173,8.381011,5.763647,6.352905,6.865304,5.866126,2.721496,0.201655,0.033885,0.248761,0.027273,0.050414,0.000000,0.175207,0.353720,0.000000,1.249587,0.000000,0.000000,0.000000,3.016529 -602339.355000,4612905.550000,7986,2405,89.381012,141.166122,153.372726,141.885117,127.455383,116.314888,113.827286,108.752907,105.166130,104.736374,103.819023,113.422325,133.339676,150.876862,160.604156,169.901688,167.918213,155.182648,132.364471,112.794228,101.843811,97.133072,90.736374,66.273575,51.686794,70.381004,88.397537,67.538040,31.678534,12.103323,8.248779,5.214058,6.551255,6.466129,6.709929,2.739675,0.323969,0.291737,0.277686,0.092562,0.000000,0.000000,0.286778,0.047934,0.000000,0.000000,0.000000,1.534711,0.000000,0.000000 -602351.555000,4612905.550000,8047,2405,99.409943,149.459518,152.996704,144.492569,130.137207,116.566956,113.434723,108.922325,106.583481,105.492577,103.889267,115.319023,133.666122,150.608276,162.236374,171.641342,171.905792,155.633072,134.104141,112.748772,101.781830,97.823151,90.963646,65.881012,52.790104,68.525635,90.831421,69.137215,31.517372,13.228941,8.269441,4.876868,7.728112,8.290095,7.231416,3.160337,0.468597,0.276034,0.000000,0.226447,0.108265,0.000000,0.146281,0.747108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602366.955000,4612905.550000,8124,2405,106.132240,161.479340,157.173553,142.140503,127.876053,116.231415,112.859512,106.975212,104.347115,104.636375,102.479347,115.165298,132.132248,150.090912,161.355377,172.024796,169.148758,154.942154,132.157043,113.181824,101.214882,97.289261,91.909096,65.033081,52.644653,69.140518,88.785133,68.603333,30.297539,11.456215,8.355392,8.028112,6.216542,6.798359,7.175221,3.491742,0.440498,0.398349,0.102480,0.048761,0.381819,0.000000,0.061157,0.587605,1.352893,0.000000,0.000000,0.000000,1.728099,0.000000 -602381.355000,4612905.550000,8196,2405,130.252914,168.550415,157.723969,145.930588,130.814896,116.360344,114.095879,109.178528,106.666130,107.319023,103.740509,116.013237,134.261169,151.707474,164.773544,174.252899,172.112411,156.079346,133.352081,113.484314,101.963646,98.120674,93.145470,67.186798,52.558701,68.641335,87.269432,64.376884,28.899195,10.666133,8.467788,9.308278,6.159517,9.041335,6.590096,4.086783,0.399175,0.397522,0.314877,0.540497,0.023967,0.000000,0.275207,0.505787,2.339670,0.000000,1.895041,1.546281,0.000000,3.217355 -602392.755000,4612905.550000,8253,2405,124.888443,159.839676,142.889267,130.633072,107.963646,87.723976,90.211586,93.533897,92.955383,96.393402,93.633072,113.649597,138.980179,168.839676,187.327286,195.947113,185.591751,158.930588,131.583481,107.327286,93.963646,92.228111,90.781830,61.211590,35.004978,63.376881,104.881004,85.360344,39.790104,12.134726,8.252912,14.170263,8.555386,10.367783,11.976874,7.406620,0.363638,0.416530,0.006612,0.090909,0.000000,0.047934,0.417356,0.000000,5.419009,6.861157,2.793389,0.000000,0.000000,0.000000 -602400.755000,4612905.550000,8293,2405,155.648773,169.215698,132.744644,113.058693,85.852089,64.918198,68.405807,73.992584,78.323158,83.422333,79.761177,104.934723,139.744629,176.728088,200.976028,210.653717,191.380981,156.414047,126.934731,98.182655,80.504982,81.190933,86.554558,52.397537,17.435553,53.058693,121.810760,103.199188,51.009109,12.102493,7.868615,22.264479,9.348774,14.355387,18.428116,13.908278,0.460332,0.405786,0.141323,0.000000,0.000000,0.297521,0.068595,0.567769,28.197523,26.367769,14.158679,3.354546,2.243802,7.326447 -602406.355000,4612905.550000,8321,2405,194.687607,155.200851,101.060333,72.231422,43.985142,25.827288,28.396709,38.182663,43.802498,51.190926,46.891754,80.746284,127.903313,181.118210,215.539688,223.795883,193.250443,146.457047,110.225624,75.886795,55.323986,59.167786,69.845459,30.652084,2.818187,35.217373,142.481842,132.465302,72.762817,14.752909,6.349606,30.514894,10.808278,20.464481,26.823984,22.892578,1.867771,0.123967,0.355373,0.000000,0.000000,0.000000,1.733885,2.229753,57.957863,15.047109,12.485126,7.875209,10.593390,10.330581 -602043.155000,4612895.550000,6505,2455,228.463654,183.066956,150.215714,128.546295,105.761169,91.372742,92.918198,94.686790,95.174393,100.240509,98.794228,117.091751,144.306625,171.579346,189.843811,199.802490,188.281830,164.736374,133.628937,107.496704,93.628937,95.091751,95.645470,65.017380,39.918201,61.703327,98.967781,77.967781,38.662003,11.310759,8.695061,16.860348,10.395884,12.622329,13.347949,12.579355,2.437195,1.176862,1.614879,0.870251,1.699177,2.571078,7.738847,3.810748,62.069427,31.483475,32.900009,14.400830,16.215706,3.341323 -602047.355000,4612895.550000,6526,2455,219.247955,194.917374,154.595062,136.247955,116.834717,100.082664,100.247948,100.983490,101.297539,105.157043,104.702492,119.867775,144.628113,169.512405,185.090927,195.471085,185.834732,165.082657,136.818192,111.603325,98.785141,98.966957,97.727287,69.570267,45.876053,66.355392,97.165306,72.099190,34.429771,12.591751,8.884316,20.344646,10.376873,11.833072,14.781008,9.714062,4.266950,1.269426,1.912400,1.163638,1.475209,1.669424,4.610749,5.949593,58.761169,38.623974,19.505789,29.150419,9.812398,12.340496 -602051.755000,4612895.550000,6548,2455,258.692596,210.006622,158.056198,140.312408,120.014893,102.535553,101.469437,103.667786,103.469437,106.816544,105.452904,121.403320,143.626450,167.700836,184.097534,194.155380,185.750427,164.651245,137.238022,111.667786,99.816544,100.428116,97.981834,69.965302,47.188454,69.006622,94.618195,71.386795,34.700848,10.627290,8.907457,20.844645,10.375221,11.349604,16.619026,12.790097,4.100008,1.238846,2.203310,0.738019,1.614053,3.980997,4.929761,8.064471,70.172737,54.643814,24.409920,20.231409,16.626450,32.519836 -602055.955000,4612895.550000,6569,2455,288.360382,210.773560,161.401672,142.525635,121.765305,105.319016,104.476051,104.492569,104.285957,108.591751,105.376877,120.021500,141.814896,163.947113,179.897537,189.773560,183.219849,163.525635,135.046295,113.765305,101.633064,99.748764,97.690910,71.021507,50.542164,69.211594,92.021500,70.013245,35.847946,14.035556,8.881011,21.910763,10.870262,13.719025,15.277703,14.460344,4.395051,1.621492,1.241324,1.495870,1.452069,3.518186,6.733066,7.840503,80.724800,61.925629,19.566948,14.616531,24.661989,18.411573 -602060.155000,4612895.550000,6590,2455,321.720673,217.208267,160.274384,141.795044,121.447945,104.447945,103.233070,101.976868,103.142159,106.852905,103.596703,116.530586,136.712402,157.464478,172.662827,183.257858,177.431412,158.348770,132.381821,111.993401,100.514061,98.323975,97.381828,70.803314,49.431423,69.960342,90.109100,66.001671,34.307461,12.002496,8.852911,23.423986,9.722327,12.196712,14.742991,13.175221,4.016537,1.500005,1.662813,1.358680,0.542150,2.585126,3.818186,4.662814,45.389259,34.108269,24.569426,18.458681,24.215706,14.828100 -602123.555000,4612895.550000,6907,2455,245.647949,183.242981,156.912399,140.449600,125.317375,112.383492,108.408287,104.945473,103.358696,104.036385,102.548782,112.424812,130.854568,146.433060,159.408264,166.871078,165.664459,154.408264,131.052902,111.218201,99.466133,95.565308,89.945473,63.333904,47.920685,67.292580,85.333900,63.904152,30.305805,10.731418,8.176878,12.265304,9.891747,9.820675,10.355385,10.459516,4.635545,2.569428,3.419840,3.525624,3.147938,3.604962,2.555375,6.228930,38.087608,34.926453,18.666948,19.095047,18.476038,20.601656 -602127.555000,4612895.550000,6927,2455,243.522308,186.084305,155.257858,138.142181,120.042992,107.100014,101.599190,97.557869,96.018188,96.861168,96.489265,106.026459,123.943817,138.935562,152.340500,160.505798,160.662827,147.894226,126.117371,106.414886,95.034721,92.092583,87.563652,61.853733,46.065308,66.514069,84.117371,63.092579,28.114895,9.698362,7.960350,9.942990,7.158689,8.213237,9.541335,7.542984,2.699180,2.485129,2.570252,1.200001,2.400830,1.890084,1.484300,2.157854,29.438848,23.647938,13.623970,17.683477,20.732237,12.111570 -602131.955000,4612895.550000,6949,2455,230.295883,183.386780,161.122314,142.626450,127.370255,115.783478,111.477692,106.783478,105.047943,106.700836,106.271080,115.800003,134.766953,150.122314,162.304138,172.246292,171.031418,158.585129,135.180176,116.436371,105.147118,100.089264,94.981827,69.161171,53.177708,70.880180,90.568611,68.626457,33.925636,14.445471,8.634730,10.361172,9.359518,8.656212,10.870261,7.699183,3.980170,2.693392,1.965292,1.176861,1.892564,2.159507,2.629754,0.879339,17.823143,14.128927,17.742153,13.024796,11.804134,14.613224 -602138.555000,4612895.550000,6982,2455,193.542160,179.633072,162.575226,148.773560,132.707443,120.922318,116.723969,113.525627,111.624802,112.699181,110.186783,122.071075,138.244644,153.765305,166.112411,175.608276,173.467789,160.980179,138.666122,117.674385,106.145462,101.517357,96.690926,71.095886,53.814896,73.558701,91.500839,70.360352,33.335556,12.969440,8.790102,6.155382,7.923154,7.328938,7.099185,6.225629,1.033060,0.363637,0.441324,0.261985,0.222315,0.168596,0.596695,0.000000,8.230579,11.261158,2.600000,2.197521,7.996695,5.861984 -602149.355000,4612895.550000,7036,2455,157.571091,176.368607,162.360321,151.285965,137.120667,126.360352,122.467781,120.104149,119.451256,119.806625,119.071091,128.649612,146.790100,162.409912,173.773560,183.525635,181.087616,168.500824,145.955383,123.732246,112.203316,108.211586,103.236374,75.418205,59.517376,76.566963,95.757034,71.674400,33.790100,12.134728,9.385144,6.023150,7.879353,8.340509,8.642162,2.653725,0.244629,0.147108,0.000000,0.049587,0.023141,0.055372,0.000000,0.000000,1.068595,0.000000,1.981818,0.747934,0.000000,2.037190 -602166.355000,4612895.550000,7121,2455,165.080185,174.432236,166.399185,153.828934,137.374390,125.481827,122.093407,121.721504,119.713234,121.019020,120.176048,131.374390,148.853729,165.225632,178.704971,186.093399,184.415710,171.589264,145.779343,125.903320,113.019020,109.275223,104.663651,76.837204,59.399197,77.754562,93.746292,71.357872,29.820681,11.832249,9.514894,3.095876,5.776045,7.019847,5.729764,1.819013,0.456199,0.052066,0.123141,0.000000,0.378514,0.086778,0.276033,0.000000,1.069422,2.295868,0.000000,0.000000,4.689256,0.000000 -602179.955000,4612895.550000,7189,2455,159.193405,190.160339,169.449600,159.110764,143.821503,128.730591,127.309113,125.763657,123.176880,126.523987,124.135559,134.912415,152.251266,169.697540,181.697525,191.490906,189.300827,175.945465,151.375229,130.449600,117.854568,113.251259,107.127289,80.821510,63.821507,80.061180,96.251259,72.457870,34.193409,12.622332,9.738862,5.860343,6.684313,6.623980,6.389269,3.305791,0.690084,0.106612,0.285951,0.000000,0.330579,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.328926,2.294215 -602190.955000,4612895.550000,7244,2455,127.692574,172.833069,164.328934,148.485977,132.940506,119.899185,120.494232,114.642990,113.733902,112.667786,113.105797,124.857864,143.414902,161.175232,172.629776,182.224823,182.340515,165.613251,142.894241,121.596710,110.439690,106.803322,103.381836,75.216545,60.456215,78.315720,96.464478,70.092583,31.704151,12.068613,9.398366,9.979352,7.014891,7.980179,7.452079,4.039676,0.748762,0.053719,0.425621,0.042149,0.044628,0.038843,0.000000,0.000000,0.000000,2.809918,0.000000,2.029752,1.269422,2.014050 -602197.755000,4612895.550000,7278,2455,150.571091,190.422318,172.356201,158.571091,142.025635,127.711586,127.042160,121.496704,120.752907,121.066956,118.769432,130.422333,149.843811,166.695053,179.752884,190.149582,188.025620,172.463654,148.604141,127.306625,115.273567,112.976044,107.372742,78.769440,64.182663,79.695061,100.017365,72.538040,35.802502,12.578530,9.761176,8.434724,8.764478,8.945470,9.900015,4.901661,0.942151,0.453720,0.342150,0.330579,0.047934,0.000000,0.017356,0.003306,0.000000,0.000000,0.000000,8.451241,0.000000,0.000000 -602205.155000,4612895.550000,7315,2455,150.857025,192.757843,173.551239,160.534698,141.303314,128.534714,125.774399,123.080185,120.857040,121.766136,118.402496,130.567780,149.848755,167.832230,179.931396,190.617355,188.253708,172.336365,149.807434,127.369438,114.278534,111.691750,107.245476,78.551254,62.807457,80.609108,98.336380,71.212425,33.675228,12.172745,9.749605,11.928116,6.718195,8.085965,7.719850,4.378520,0.411571,0.171075,0.171901,0.229752,0.025620,0.030579,0.785951,0.000000,0.000000,0.000000,0.000000,4.071074,0.000000,2.158678 -602215.555000,4612895.550000,7367,2455,111.033081,169.743820,164.719025,156.289276,140.685974,125.611595,123.239693,120.454567,118.033081,120.586800,117.380188,128.198364,146.033081,164.603317,176.595062,187.636383,185.347122,169.743820,146.198364,125.074402,112.735565,108.958702,103.818207,78.595062,63.429771,80.421509,97.793411,72.735565,31.347128,10.866959,9.438036,5.229760,7.086791,6.011581,5.912407,2.277692,0.536365,0.340497,0.180992,0.085951,0.000000,0.000000,0.081818,0.000000,0.000000,0.000000,1.058678,1.763636,0.000000,0.000000 -602229.355000,4612895.550000,7436,2455,111.909103,160.522339,161.571915,153.208267,136.761993,123.753738,121.538864,118.720680,115.960350,117.712418,116.249603,127.629768,144.761993,162.629761,175.423157,186.332245,182.695877,168.381821,144.753723,124.216545,111.811584,109.200020,103.472748,77.861176,61.142170,77.472755,96.960350,72.348778,32.059521,13.214067,9.406631,6.128108,6.175220,7.221501,7.730590,1.922318,0.177687,0.010744,0.000000,0.195868,0.098347,0.000000,0.619835,0.538017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.955000,4612895.550000,7494,2455,98.321510,157.057037,161.652084,151.197540,137.453735,124.048782,121.577698,118.247116,115.470261,116.338028,115.850426,126.809113,143.908279,161.511597,171.924820,182.726471,179.528122,165.916550,142.776047,122.114891,110.842163,107.660339,100.718193,75.346298,60.858696,78.313240,96.990929,72.842171,32.321507,13.232248,9.156218,5.446290,6.137204,7.565304,6.543812,2.250420,0.552894,0.371901,0.173554,0.046281,0.193389,0.000000,0.419009,0.784298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602245.755000,4612895.550000,7518,2455,79.784317,155.660355,162.090103,151.875229,137.470261,125.032242,121.123154,118.610756,116.073563,116.784309,116.172737,126.387604,144.833908,160.610764,173.164490,183.098373,180.891754,166.594238,143.495056,122.999184,110.891747,107.189262,101.263641,76.486786,61.073574,78.643822,96.809105,72.800842,32.875225,12.192580,9.205805,5.371085,7.064478,7.539682,7.305796,3.157859,0.484299,0.335538,0.473555,0.166943,0.358678,0.000000,0.118182,0.265290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602250.555000,4612895.550000,7542,2455,84.957863,147.619827,160.520660,149.570251,134.752075,123.041336,119.966957,116.694229,113.537209,114.752083,114.727287,124.380180,142.900833,158.661163,170.685944,180.016525,178.570251,164.735535,142.107437,120.132248,109.702492,104.917374,100.363655,74.082672,60.214901,77.578529,95.099190,71.487617,32.942165,13.184316,9.123987,3.851248,7.241339,5.433897,7.241333,1.659508,0.452068,0.210745,0.086777,0.051240,0.138017,0.000000,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602257.755000,4612895.550000,7578,2455,91.851257,145.702484,157.578506,147.016525,133.049606,123.851257,120.008278,115.355385,114.363655,113.595055,112.611588,124.504150,142.752060,158.727280,170.578506,180.652893,178.809921,164.942154,141.148758,120.925636,110.173569,105.710762,100.090927,74.181831,58.950428,77.685966,96.644646,72.281006,33.322334,13.004150,9.099193,4.109099,6.718195,8.141336,6.667781,2.739677,0.671076,0.064463,0.057025,0.050414,0.052893,0.000000,0.127273,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602266.155000,4612895.550000,7620,2455,81.756226,141.099182,153.621490,146.770264,134.241333,123.613235,120.001663,116.654556,114.042984,114.266129,115.158684,125.728935,143.200012,160.795044,172.076050,182.191742,179.877701,167.208267,143.588440,123.580177,112.183479,108.885963,102.472748,77.142166,62.067791,78.166962,98.133904,73.026466,34.274399,13.834728,9.315722,3.805794,7.256214,6.478526,5.276043,3.002486,0.498349,0.659506,0.102480,0.061158,0.000000,0.324794,0.114050,0.404133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602278.355000,4612895.550000,7681,2455,92.519020,141.601654,156.750397,147.651245,132.543808,122.312401,118.527283,115.477699,113.295883,113.857864,113.973572,123.923973,142.345459,158.568588,170.180176,180.039673,178.105789,163.568588,141.494217,119.667778,109.824799,105.403313,99.981827,75.337204,59.378532,76.981827,93.742157,70.841339,32.403328,12.548778,9.089275,5.660340,7.198362,5.852905,7.663649,1.985130,0.210745,0.674382,0.185125,0.275207,0.000000,0.000000,0.233885,0.247934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602290.755000,4612895.550000,7743,2455,75.935555,151.501678,161.328110,152.311600,135.063644,124.419006,120.005783,115.782654,114.551247,114.443810,114.823975,124.700005,142.658707,158.807449,170.881821,179.427277,178.014053,163.476868,140.518204,119.700005,109.394226,106.047119,100.336372,75.559525,60.319851,75.501671,92.113235,67.014069,31.832251,13.242992,9.121508,5.709928,8.765305,7.854560,7.902492,3.698356,1.124797,0.700828,0.048760,0.066943,0.217356,0.000000,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602304.755000,4612895.550000,7813,2455,88.521507,146.066956,151.761169,141.951263,128.339676,117.587616,113.967773,109.620667,107.182648,107.190910,106.744637,118.141335,136.455383,152.546295,163.009125,172.546295,170.323151,158.248795,135.538025,115.331421,104.273560,99.868599,94.190910,68.414062,53.901672,72.017380,89.273560,66.009109,29.554564,10.482662,8.562830,4.789264,5.896708,5.963650,5.698356,2.691742,0.602481,0.452894,0.000000,0.023141,0.109918,0.000000,0.147934,0.118182,0.000000,1.353719,0.000000,0.000000,0.000000,0.000000 -602316.955000,4612895.550000,7874,2455,94.609108,142.278519,153.947937,145.204147,129.741333,118.898354,115.171082,110.633896,108.485130,106.832245,107.890091,118.766129,136.815720,152.014053,163.526459,172.361160,170.906616,157.526459,135.071915,115.997528,104.890091,100.352905,94.518188,69.435555,55.352913,71.865311,90.741333,67.914894,31.807457,10.652082,8.592581,5.118190,7.266957,6.808280,6.265301,2.808272,0.461158,0.423968,0.000000,0.100827,0.000000,0.000000,0.152893,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602329.355000,4612895.550000,7936,2455,90.368614,147.649597,155.236359,144.757019,128.649597,117.492577,114.732246,110.335548,108.583481,107.657867,107.170258,118.376869,137.112411,152.773544,164.186768,173.649597,171.418198,157.385117,134.624802,115.914062,103.971916,99.302490,93.963646,69.203316,53.723988,71.087616,90.211586,66.930595,29.817375,12.192579,8.542168,6.434722,7.815716,8.041335,6.300009,2.509098,0.490085,0.199175,0.312397,0.086778,0.223141,0.147108,0.170248,0.186777,0.000000,2.033885,1.171075,0.000000,0.000000,0.000000 -602334.755000,4612895.550000,7963,2455,82.419037,149.228943,153.005798,144.683487,129.733078,117.336380,115.154564,109.435555,106.799194,105.212418,105.559525,116.757866,135.096710,149.675217,161.964478,171.261993,168.724808,154.733063,133.906631,115.129768,102.972748,98.650429,92.245476,67.352921,53.485146,72.104973,92.303322,69.518196,31.990927,13.443819,8.385970,6.466952,6.857866,6.826461,7.252904,2.351246,0.609094,0.625621,0.017356,0.000000,0.061984,0.000000,0.204133,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602339.555000,4612895.550000,7987,2455,86.657051,149.450424,157.822327,146.797531,131.797531,120.896706,116.863647,113.574387,109.946289,109.466949,108.690094,119.946289,138.318192,155.185974,166.152908,175.227295,172.855392,158.690094,136.623978,116.111580,105.764473,101.028931,95.681824,70.855377,55.623981,73.450439,92.508270,69.929764,31.359522,11.916546,8.698367,5.915714,7.494230,7.951252,6.915716,3.433893,0.891739,0.261158,0.013223,0.173555,0.071901,0.000000,0.379339,0.164463,0.000000,0.000000,1.194215,1.159504,0.000000,3.041322 -602346.355000,4612895.550000,8021,2455,84.476883,149.708267,155.617371,145.443817,128.129776,118.237206,114.947945,111.104965,107.956207,107.113235,106.220673,117.782661,136.402496,152.402496,163.807449,173.228943,171.361160,157.724808,135.303329,115.245476,103.435547,99.245461,92.063644,68.171097,54.452087,72.303329,92.055382,68.063660,30.631424,12.366134,8.369441,5.424802,6.421502,6.659518,7.057864,1.866948,0.639672,0.210745,0.591736,0.078513,0.030579,0.248760,0.309918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602354.155000,4612895.550000,8060,2455,90.262001,151.790924,158.038849,145.749603,128.675217,115.989265,113.799187,109.931412,106.799187,107.080177,105.278519,117.394226,135.642151,151.311584,163.592575,173.774399,171.666962,156.981003,134.724808,114.534721,102.997528,98.460342,92.518188,66.336388,53.410767,70.410759,89.171082,65.576057,29.955393,12.023157,8.410763,5.963647,5.441335,6.126459,6.817366,2.132235,0.559506,0.203306,0.000000,0.054546,0.125620,0.000000,0.228926,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602364.955000,4612895.550000,8114,2455,97.198364,159.487610,154.380188,147.413239,130.917374,116.793404,115.281006,110.884315,107.743820,107.595055,105.652908,118.322327,136.123978,152.809921,164.768600,174.157043,171.909103,156.404953,135.338852,114.842995,102.611588,97.983490,93.000015,67.066139,54.123985,70.652908,91.173569,66.198364,30.724812,13.087620,8.454565,7.795052,7.542163,7.302493,6.066954,3.024798,0.309918,0.249589,0.000000,0.013223,0.085124,0.000000,0.196695,0.634712,0.000000,0.000000,0.000000,1.129752,0.000000,0.000000 -602372.555000,4612895.550000,8152,2455,113.872749,167.360336,156.839676,147.542160,129.938858,117.790100,114.963654,112.087624,108.038040,109.236382,106.996712,119.029770,138.120667,154.831421,166.914062,176.748779,173.657867,158.120667,134.649612,114.765312,104.897545,100.401672,95.145477,68.649605,53.533909,73.054565,88.467789,65.889275,29.479357,11.260347,8.649607,7.033070,6.694228,7.527288,5.983482,3.395047,1.104962,0.163637,0.080992,0.061984,0.000000,0.000000,0.071075,0.369422,2.240496,0.000000,1.156198,0.000000,0.000000,0.000000 -602381.955000,4612895.550000,8199,2455,105.466125,162.499176,157.937195,143.970245,127.482651,112.061157,108.672729,107.515709,105.755379,106.953720,103.978516,116.879341,138.325623,158.350418,170.780167,181.838013,176.383469,156.242981,134.647934,113.887604,101.523972,99.325623,93.945457,67.028114,49.557041,69.102493,92.135544,70.102501,30.755392,12.030594,8.540515,9.910756,7.776872,6.214887,6.445467,3.369429,1.053722,0.502481,0.535538,0.020661,0.000000,0.188430,0.074380,0.177686,0.000000,1.993389,0.000000,1.502479,0.000000,0.000000 -602396.355000,4612895.550000,8271,2455,126.008278,162.404968,150.008286,139.859528,118.917374,101.942162,103.239685,103.314064,103.000015,107.942162,103.520676,120.041336,143.842987,169.636383,187.595062,196.537201,187.190094,162.057861,137.702499,114.181831,102.281006,99.487617,97.363655,67.314072,44.834732,71.074394,105.677704,80.371918,37.198368,12.192578,8.851259,15.069437,6.216542,8.201667,8.948773,3.779346,0.227273,0.074380,0.087603,0.033058,0.082645,0.000000,0.000000,0.000000,3.942976,0.000000,0.000000,0.000000,0.000000,0.000000 -602409.155000,4612895.550000,8335,2455,83.081009,119.424805,118.838028,107.019844,93.036377,79.267776,80.590096,82.846291,83.375221,86.218193,90.168617,108.978523,135.821503,163.251266,181.829773,190.879349,182.234726,162.590103,135.152084,111.763649,97.920670,98.937202,97.400009,68.928940,40.135555,63.879349,115.970261,100.738853,46.846298,12.833075,8.854565,4.608273,10.325635,13.027289,15.764480,7.665299,0.680168,0.186778,0.000000,0.048760,0.000000,0.260331,0.133884,0.000000,5.576860,0.000000,2.838843,0.000000,1.365289,0.000000 -602418.155000,4612895.550000,8380,2455,49.429764,80.179352,76.750427,61.196712,41.353737,26.243820,30.270266,36.485970,42.510761,47.279358,52.312416,77.362000,115.271088,151.295883,176.866135,184.709106,170.808289,144.700851,113.667786,89.163651,74.378525,74.370262,80.709099,49.634727,11.072740,46.163654,137.155396,135.353745,66.122330,12.959518,7.337209,5.804141,14.374394,18.860346,28.687624,18.157042,0.486778,0.127273,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,26.342152,13.939671,6.328101,4.104134,3.685125,2.283471 -602424.355000,4612895.550000,8411,2455,62.195057,35.939678,24.824802,14.778519,6.747113,2.583474,3.831409,6.088435,7.830585,9.226454,11.287611,26.314884,57.619022,108.291756,152.396713,160.413239,130.170258,86.627281,55.485138,33.936375,23.454554,25.409925,33.990921,14.438852,0.412398,13.657033,152.380188,189.123962,100.520676,8.290921,3.090095,6.286786,13.040511,26.453737,50.479359,35.631420,0.748762,0.000000,0.000000,0.000000,0.000000,0.000000,0.123967,0.000000,32.641331,10.682648,3.750415,0.880166,4.276861,8.796696 -602043.155000,4612885.550000,6505,2505,178.376892,187.500854,157.533920,138.484329,117.980186,100.723991,103.178535,104.980186,106.054565,109.360352,108.145477,124.252922,148.418213,171.376892,186.757050,195.021515,186.294250,165.112427,135.806641,111.905807,99.203323,100.748779,98.872749,70.922333,46.682667,66.988449,96.781837,73.062828,35.666134,13.495059,8.988448,12.333900,7.388443,10.511585,9.871089,6.596704,1.085127,0.482645,0.138843,0.006612,0.000000,0.000000,0.000000,0.189256,5.852893,5.428100,0.709091,1.531405,1.966116,0.000000 -602049.755000,4612885.550000,6538,2505,193.638855,186.880173,159.731400,146.078506,126.285141,108.995872,110.070259,110.342987,110.904968,114.342987,112.433891,126.351257,146.351242,167.814056,181.582642,190.004135,182.979340,163.326447,137.095047,113.880173,102.706627,101.384315,99.227287,70.185974,49.268616,67.888443,93.119850,69.442169,31.714893,12.332248,9.020681,13.807455,8.746293,9.392577,10.911586,4.700007,0.538018,0.023141,0.282645,0.005785,0.026446,0.000000,0.398347,0.000000,2.180166,0.000000,1.776033,0.698347,0.000000,0.000000 -602060.755000,4612885.550000,6593,2505,193.976044,212.604980,176.191742,161.009109,141.521500,130.248779,133.141327,133.579346,134.852081,140.067795,132.604965,145.390106,163.100006,183.595886,195.777695,203.546295,196.108276,174.141342,149.480179,128.728119,112.992584,109.372749,107.100021,78.504974,58.376877,74.195053,94.492577,71.492577,34.690926,15.066959,9.736382,25.918200,13.768611,17.127289,17.127289,14.308278,7.714882,4.043805,3.498351,4.509920,3.537192,0.309918,3.386780,3.977689,11.093390,7.984299,15.050415,11.713225,4.203306,8.657852 -602117.755000,4612885.550000,6878,2505,182.700012,172.822311,155.276855,143.293411,125.809929,113.619850,107.152908,102.516548,100.657043,101.929771,100.293404,110.136383,127.516541,142.334732,154.549591,162.896698,161.376038,149.425629,127.772736,107.640511,95.987617,91.632248,86.318199,61.055393,44.948780,64.476875,82.481003,63.092583,29.942997,10.606627,7.847126,9.094229,8.475221,10.137203,12.056212,8.063647,2.969425,2.054548,2.438020,1.540498,1.901655,1.963638,1.954548,0.998348,12.167771,15.834713,7.373555,7.776035,12.714052,9.322315 -602122.955000,4612885.550000,6904,2505,188.582642,171.078506,159.095047,144.458694,129.442154,117.615715,113.219025,110.475220,109.623985,109.144646,109.210762,118.012413,136.863632,151.913223,164.144623,172.260330,172.285126,159.500000,136.450424,115.632248,104.103325,99.781006,94.409103,67.425636,53.466961,72.557877,89.351257,67.590927,32.979359,12.338033,8.582664,7.347948,7.475219,9.486790,9.395057,4.904968,2.931411,0.813225,0.557853,0.343802,0.368596,0.167770,2.614053,0.051240,4.847935,13.328101,10.995043,5.404960,8.528927,4.583471 -602130.555000,4612885.550000,6942,2505,166.172729,167.709915,155.676849,147.503311,132.701660,122.767776,118.561165,115.933067,114.850426,115.891747,114.676872,125.247116,143.941315,159.395874,171.503311,180.338013,178.230576,166.123138,142.470245,121.296707,109.825630,105.114891,99.354568,74.594231,56.123161,74.701675,92.181000,69.693405,33.590099,12.303325,9.032250,6.300011,6.858692,7.232244,6.899186,4.113231,1.060333,0.869424,0.284298,0.287604,0.017356,0.040496,0.844629,0.506612,6.142149,3.777687,1.780165,4.858678,5.065290,5.924794 -602141.955000,4612885.550000,6999,2505,176.065308,180.594238,162.701675,150.759521,135.139679,124.321503,118.990921,117.296707,116.139679,117.949600,117.999184,128.205795,146.362823,163.561172,176.552917,186.519852,182.866959,169.974396,145.759521,124.057037,112.329765,108.875221,104.354553,77.685135,61.023983,77.189270,93.247116,71.751251,32.462006,11.990927,9.486796,6.834722,8.147948,7.535549,9.114064,4.846288,1.291737,0.881820,0.295042,0.424795,0.161984,0.026446,0.213223,0.328926,3.405785,1.116529,6.314051,1.676033,7.471902,1.876033 -602157.955000,4612885.550000,7079,2505,154.283478,175.308273,161.985962,153.911575,139.423981,126.961174,123.357864,121.721504,119.407455,121.457039,120.192574,130.680176,147.696701,165.126450,177.266953,186.109924,185.399185,170.812408,147.341324,127.002495,114.977699,109.589272,104.663651,78.738029,61.473576,77.663651,94.027290,69.895058,32.250431,10.716546,9.514894,4.302489,5.988444,5.681003,6.761169,2.280170,0.485951,0.170248,0.323142,0.000000,0.142149,0.022314,0.000000,0.000000,2.465290,3.283472,0.000000,0.000000,3.557852,0.000000 -602172.355000,4612885.550000,7151,2505,146.218185,184.945465,169.854553,158.251236,144.251236,127.771904,128.482651,125.077690,122.763641,125.680992,125.003311,135.135544,152.325623,169.044632,181.647934,190.482651,189.590088,178.292572,152.515701,130.507446,118.722321,114.945457,109.854546,82.507446,66.209930,79.474396,96.028099,72.085968,31.366962,12.712414,9.986795,4.110754,7.025634,6.586790,5.661996,2.607443,0.180166,0.204959,0.234711,0.062810,0.343802,0.000000,0.282645,0.000000,1.323141,1.158678,1.046281,0.000000,2.449587,2.320661 -602178.355000,4612885.550000,7181,2505,135.816528,171.709091,170.907440,154.923981,138.609924,126.064476,123.998360,120.948776,118.370262,117.725632,117.527290,129.874390,148.849594,166.047943,178.155380,187.973557,187.353729,171.783478,147.064468,127.362000,115.171913,110.866127,106.254562,77.990097,62.122337,79.923988,98.395058,72.568611,36.535561,12.298365,9.659524,12.715720,7.211585,8.153733,9.051252,4.404965,2.220665,0.260331,0.081818,0.365290,0.071901,0.000000,0.035538,0.977687,2.834711,1.328099,0.000000,2.178513,0.000000,0.000000 -602182.555000,4612885.550000,7202,2505,140.909088,180.809921,171.743805,156.752060,140.231400,126.776871,125.628113,121.818199,118.628113,119.413239,118.421501,130.520676,149.446274,166.884293,178.330582,189.123962,187.107437,171.471069,149.231400,126.380173,115.157043,110.983490,107.090927,78.677704,64.462837,80.586792,98.809937,72.024811,35.033081,12.516546,9.735557,10.293405,7.542991,9.068613,7.868609,4.388438,1.092564,0.547109,0.239670,0.042975,0.000000,0.000000,0.000000,0.000000,2.823141,1.333884,1.179339,0.000000,0.000000,0.000000 -602188.355000,4612885.550000,7231,2505,132.283478,186.837158,172.085129,154.721497,138.597534,123.911575,123.192566,119.233894,117.151245,117.316536,116.225624,128.473557,148.076859,164.903305,176.184280,187.176010,185.589233,170.308273,145.333069,124.142982,112.572731,109.969429,104.209099,75.771095,61.019032,76.936386,96.176048,70.638863,33.300018,10.189275,9.473574,10.799190,6.673566,5.861997,6.187615,4.235542,0.105786,0.109918,0.000000,0.000000,0.195868,0.239670,0.590083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.155000,4612885.550000,7265,2505,130.281830,186.016541,172.768585,159.115707,142.677704,128.388428,127.462807,123.033066,121.413231,122.057861,119.925629,131.272720,151.123978,169.239670,181.264481,191.066132,188.421509,173.057846,150.933899,128.090912,116.760338,113.628113,108.909103,79.305801,63.289276,79.338860,99.727280,72.553734,35.123985,14.197539,9.900846,9.981007,8.076876,7.906626,8.300014,3.971907,0.334712,0.230579,0.298348,0.000000,0.000000,0.265290,0.735538,0.077686,4.163637,0.000000,0.000000,0.780165,0.000000,2.053719 -602198.355000,4612885.550000,7281,2505,121.558685,187.657867,172.905792,157.029770,140.765305,125.170250,127.145462,123.211578,121.219841,121.930580,119.533890,131.492569,151.806625,168.930588,181.203323,191.467789,189.839676,172.442993,149.327286,127.624802,116.591743,112.591743,108.054550,79.021500,63.418201,81.376877,99.385132,70.509102,34.095886,13.085969,9.823159,12.666958,6.516543,9.333899,8.413238,5.103313,0.896697,0.288431,0.492563,0.177686,0.019835,0.333058,0.168595,0.069422,2.400000,1.405785,0.000000,0.000000,1.244628,0.000000 -602202.755000,4612885.550000,7303,2505,135.133896,196.323975,177.158691,160.456207,144.654541,129.761993,129.753723,127.009933,124.290924,125.373573,122.464478,134.373550,154.580170,172.390091,184.522324,194.712402,192.761993,176.770264,154.720673,131.778519,120.323982,116.373573,111.290924,82.472748,64.778534,82.357040,101.671089,74.737206,38.084324,15.440515,10.117375,11.976876,8.854561,8.771915,8.688444,5.188437,1.309919,0.460331,0.549588,0.259505,0.182645,0.000000,0.424794,0.000000,1.359504,0.000000,1.190083,0.000000,0.000000,0.000000 -602209.955000,4612885.550000,7339,2505,112.804985,165.780182,165.672745,154.193405,140.333908,125.085960,123.292572,119.242996,117.160339,120.375221,117.292572,129.267776,147.457886,165.548782,177.540512,186.862823,185.036377,171.110764,146.176895,126.441330,114.829773,109.639687,105.309105,78.309113,63.457870,81.416550,99.449600,74.871094,34.714069,14.871094,9.573572,6.521498,9.039684,8.773567,7.438029,3.367775,0.623142,0.252067,0.330580,0.058678,0.000000,0.248761,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.755000,4612885.550000,7398,2505,103.477707,163.419861,162.816559,154.502502,140.353745,125.758698,122.709114,120.494240,118.312416,119.981842,118.485970,130.362000,147.056213,164.618210,177.271103,186.204987,185.114075,171.014893,145.535553,125.403328,112.485970,108.816551,105.254570,80.122337,63.072746,80.469444,98.940521,75.667786,35.948780,14.900845,9.568615,7.188439,9.658692,8.062821,6.907450,2.596699,0.917357,0.049587,0.255373,0.116530,0.000000,0.000000,0.563637,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602239.755000,4612885.550000,7488,2505,86.912415,153.329758,158.924789,150.536362,135.974396,123.610756,120.817368,118.627281,115.139679,117.015717,116.866951,127.643814,144.900009,162.181000,174.172729,183.445465,180.437195,167.569427,143.676865,123.081833,111.214058,107.238853,101.809113,75.883492,62.354561,78.776054,96.205803,71.941345,32.833900,12.628942,9.255391,4.566125,8.210759,6.554559,7.004971,2.028104,0.642150,0.404133,0.208265,0.459505,0.110744,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602250.955000,4612885.550000,7544,2505,88.067795,150.332245,159.943817,148.456207,131.646286,124.001663,119.712410,116.613235,115.935547,115.861168,115.200012,125.795052,143.257858,161.770264,172.522324,182.390091,180.662827,166.100830,142.100830,121.166954,110.687614,106.728935,102.200012,76.786804,61.952084,78.340515,95.580177,69.580177,32.023987,12.236380,9.290928,4.383480,7.142990,6.871087,6.276044,2.904139,0.295869,0.036364,0.000000,0.276033,0.123968,0.042149,0.191736,0.189257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.555000,4612885.550000,7562,2505,76.879356,143.036362,158.292587,146.747116,131.003311,122.110756,118.879349,115.730591,114.358688,115.317368,115.548775,125.209930,142.457855,159.871094,172.094223,181.251236,179.077682,166.061172,142.391739,121.085960,109.862823,107.044640,101.036377,76.449600,60.499191,77.127281,94.052902,70.325638,30.201672,11.471918,9.185144,5.488440,7.190924,5.360342,7.181004,2.252072,0.525622,0.122315,0.141323,0.057852,0.000000,0.000000,0.321488,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602257.355000,4612885.550000,7576,2505,91.373573,149.076050,155.282654,147.902496,135.390091,122.514061,119.150421,117.026459,115.274391,115.580177,116.307449,126.191742,144.885956,161.555374,173.596710,182.571915,180.514053,166.323975,142.604965,121.555382,111.216537,106.505798,101.927284,76.687614,60.919025,78.571907,93.249596,69.538864,32.662830,11.157041,9.266134,4.790918,7.741338,6.996708,6.245464,0.936369,0.706614,0.000000,0.152067,0.043802,0.103306,0.000000,0.061984,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.155000,4612885.550000,7595,2505,82.541344,141.985962,156.812408,147.415710,132.184311,122.142990,119.324806,116.027290,114.291748,114.539680,113.407455,125.176048,143.060333,159.349594,172.184311,180.010757,177.523148,164.721497,141.341324,120.514893,108.936378,104.820679,101.209106,75.895058,60.184319,76.052078,91.969437,69.539680,30.713242,12.381011,9.200847,4.532242,6.648774,8.482660,6.671087,2.396701,0.040497,0.248761,0.000000,0.091736,0.000000,0.000000,0.306612,0.407438,0.000000,1.436364,0.000000,0.000000,0.000000,0.000000 -602267.155000,4612885.550000,7625,2505,83.319855,143.311584,160.319839,148.038849,133.881821,121.799187,118.080177,114.476868,113.774391,113.468605,113.551247,124.658684,143.030594,159.344635,170.782654,178.931412,177.096710,164.865295,141.303314,120.162819,110.633896,105.857033,101.063644,76.443810,60.262005,77.923157,93.683479,69.237206,31.799192,14.407455,9.187622,4.605794,7.633072,8.204146,7.553730,2.509099,0.934713,0.561158,0.093389,0.228926,0.000000,0.000000,0.057851,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602277.155000,4612885.550000,7675,2505,88.274399,143.894226,158.447937,147.340500,132.629761,122.158684,118.059517,115.381828,114.753731,113.290916,113.076042,124.365295,142.109100,159.084305,170.522339,178.464493,176.861176,163.919037,139.993393,119.233070,110.125633,105.183479,100.745461,76.249611,60.042992,75.811600,92.836372,67.762001,29.720678,12.933075,9.158697,5.556208,7.142163,6.773567,6.060342,1.987608,0.593390,0.037191,0.099174,0.077686,0.103306,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.955000,4612885.550000,7704,2505,74.552902,140.486786,158.065292,147.809097,134.610748,122.866943,119.230583,115.817360,113.866943,113.825623,114.015709,124.552895,141.544632,158.552902,169.990906,178.263641,176.379349,163.561157,139.205795,118.817360,109.164474,105.610756,100.900009,74.982666,59.858700,75.883492,90.304970,66.164482,29.800848,11.904148,9.172746,4.530588,6.005798,5.526458,5.550424,2.374387,0.508266,0.001653,0.000000,0.348762,0.030579,0.000000,0.164463,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.955000,4612885.550000,7739,2505,88.937210,147.110748,160.259506,147.259506,133.168610,122.474396,118.879356,114.383492,113.019852,112.276054,111.077705,123.077705,141.251266,157.259506,168.614883,177.912399,175.887604,163.317352,140.499176,119.614899,108.738861,104.945473,100.218201,74.449608,60.532246,76.557045,91.755394,69.771919,32.148781,13.980184,9.110763,5.197530,7.750430,7.281831,7.629766,4.037199,0.385952,0.534712,0.041322,0.141323,0.252067,0.000000,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602297.555000,4612885.550000,7777,2505,82.331421,138.951248,154.025650,145.331421,131.347946,120.728111,115.661995,111.381004,108.752907,108.124809,107.901665,118.554558,137.157867,152.695068,164.223984,174.248795,171.860367,158.504974,136.984329,116.157867,106.389267,100.397537,94.827286,69.405800,56.604153,73.347946,91.571091,67.653732,31.397541,13.287621,8.620679,5.182653,6.696709,7.876873,6.706623,2.723974,0.782648,0.081819,0.133885,0.248761,0.000000,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602305.155000,4612885.550000,7815,2505,70.521507,137.066956,154.009109,145.215714,127.711594,118.381012,113.521507,109.364479,106.678528,105.257034,105.678528,116.397545,133.066956,150.761169,160.604141,170.802490,168.819016,155.389267,135.471924,114.711594,103.480179,99.480179,91.009109,66.529770,53.298367,72.976051,92.033905,68.430588,31.579357,12.781010,8.273573,6.204968,7.686791,6.094228,6.194225,1.948765,0.211571,0.347108,0.277686,0.000000,0.121488,0.000000,0.150414,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602310.755000,4612885.550000,7843,2505,83.777710,150.124802,156.356216,145.645462,129.331421,119.323151,114.645470,111.571091,108.504974,108.033897,108.290092,118.885139,137.587601,152.199188,164.149597,173.835556,171.967789,159.100006,136.976028,115.513237,104.819023,101.984314,95.645470,69.653740,55.686798,74.058701,89.223991,67.331429,31.025639,12.453735,8.695062,6.886788,7.251253,7.680179,5.668605,1.938848,0.239671,0.266943,0.000000,0.055372,0.220662,0.000000,0.047108,0.017356,1.989256,2.085124,0.000000,0.000000,0.000000,0.000000 -602316.155000,4612885.550000,7870,2505,84.902504,146.555374,155.092575,146.216537,130.381821,118.613235,115.563644,111.447945,108.125633,108.166954,106.629761,117.398354,136.307449,151.720673,162.811584,171.538849,171.059509,156.985138,135.571915,115.357033,105.051247,99.621498,92.381836,68.224808,54.671097,71.894241,92.009933,68.910767,31.249605,11.033075,8.398366,4.405795,6.931419,8.234725,5.956209,3.438024,0.336365,0.351241,0.178513,0.203306,0.428100,0.000000,0.142149,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602322.155000,4612885.550000,7900,2505,91.442169,146.359528,155.871918,145.648773,130.061996,117.838860,114.640511,109.714890,106.797539,106.144646,105.227287,116.367783,134.756210,151.475220,162.632248,172.152908,170.549606,157.491745,135.698364,116.599190,103.541336,98.706627,91.863655,67.169441,52.764484,70.706635,94.987617,72.227295,32.756218,12.097538,8.351259,7.085961,7.119850,6.585965,6.998358,2.778520,0.412398,0.390911,0.174380,0.099174,0.193389,0.000000,0.000000,0.364463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602331.355000,4612885.550000,7946,2505,82.691750,149.245468,156.212402,147.113235,130.559509,118.542992,116.402496,111.104965,108.906631,108.691750,106.576050,118.303322,136.146286,152.336380,163.939682,173.823975,170.708267,157.468597,135.138031,116.311584,103.559525,99.865311,92.881836,68.138031,52.906628,72.369438,91.518196,69.972748,32.321507,11.917373,8.443821,4.484307,7.124807,7.361997,8.258690,2.980999,0.435539,0.028100,0.084298,0.116529,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602337.355000,4612885.550000,7976,2505,87.201675,149.606613,158.160339,146.085953,130.714066,118.763649,114.879349,110.143814,107.226456,107.689270,105.523979,118.061165,136.242981,151.920670,163.449585,173.127289,170.995056,155.639679,134.300842,115.209930,102.970261,98.664474,92.309105,66.846298,53.358696,71.176872,92.639679,67.573570,31.581837,11.547125,8.391754,6.638853,6.231419,5.523980,6.555382,1.792568,0.482647,0.031405,0.270249,0.214876,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602340.955000,4612885.550000,7994,2505,92.518196,147.088440,156.600830,146.402466,130.187622,118.592583,116.452087,111.708282,108.807457,108.187622,107.220680,118.964478,137.551239,153.270264,164.716537,174.063644,172.295044,157.642151,136.228943,115.369438,103.700020,98.799194,92.972748,67.823982,53.385967,70.691750,91.542992,67.807457,29.220678,10.904976,8.452085,5.020669,6.058693,6.709931,6.181829,1.487606,0.467770,0.122315,0.107438,0.201653,0.200827,0.000000,0.081818,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602344.155000,4612885.550000,8010,2505,88.873573,148.245483,156.237213,147.295074,131.022339,118.625641,115.716545,111.749603,109.336380,108.146301,106.567787,119.476875,137.328125,153.336395,164.576065,174.972748,172.890106,156.782669,134.658691,115.410759,104.063652,100.303322,92.881836,68.303322,54.799191,71.435555,91.071922,68.311584,30.394234,11.562001,8.443821,6.385133,6.582659,8.299188,6.471086,1.740499,0.247935,0.319009,0.311571,0.000000,0.009091,0.000000,0.360331,0.000000,4.543802,0.000000,0.000000,0.000000,0.000000,0.000000 -602347.755000,4612885.550000,8028,2505,89.394234,147.766144,156.129776,145.650436,128.452072,119.361168,116.295052,111.171082,109.609100,108.534721,106.600838,119.220673,137.815735,153.790939,164.171097,174.419037,172.270279,156.906631,134.592575,115.080177,103.460342,99.617363,94.154556,69.452087,53.262001,71.121498,91.146294,66.138031,30.014067,12.442992,8.559523,6.661993,5.441335,6.136376,6.736373,1.894218,0.639673,0.338018,0.180166,0.072728,0.000000,0.000000,0.076033,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602351.155000,4612885.550000,8045,2505,71.646309,155.191742,155.712402,143.753723,129.282669,116.100845,113.745476,109.406631,107.241341,107.695885,105.514069,117.274399,136.150421,152.125626,162.976868,173.943817,169.919022,156.398361,133.687622,113.960350,102.481010,97.018196,92.654564,66.472748,51.778538,71.166969,89.646301,65.464485,30.514069,9.360347,8.423160,6.042157,4.745466,6.376872,5.431413,2.049590,0.585127,0.130579,0.482645,0.024794,0.027273,0.055372,0.100000,0.285124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602354.955000,4612885.550000,8064,2505,88.113243,160.460358,160.022339,148.080185,129.443817,118.700012,115.435547,112.394226,108.956207,108.766129,106.402489,119.534721,137.303299,153.997543,165.956207,176.096695,172.005783,157.262009,136.501648,115.542984,104.600838,100.014069,93.881836,67.914894,54.551258,71.104973,90.724808,68.551254,29.693405,10.595884,8.534731,8.076871,6.882658,7.611584,7.295053,3.231412,0.267770,0.247108,0.104132,0.041323,0.015703,0.000000,0.209918,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602360.955000,4612885.550000,8094,2505,83.809937,151.107452,157.867783,146.917374,129.371918,116.528938,115.330597,111.256218,108.495880,109.107452,106.983490,118.380180,137.148773,154.413239,166.677704,176.330582,172.826462,157.338852,135.776871,115.752083,104.487617,100.644646,93.909103,68.834724,54.107460,71.049606,90.429771,67.603325,30.429771,12.001671,8.537209,6.259513,7.215717,6.717370,6.576044,1.723145,0.378514,0.319010,0.028926,0.017356,0.050414,0.000000,0.172728,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602365.755000,4612885.550000,8118,2505,83.581841,157.085953,158.366943,146.590088,130.862823,118.218201,114.482666,111.036385,109.978531,110.705803,108.623161,120.400017,139.342163,155.961990,167.722321,178.780167,175.110748,158.532242,137.085968,116.300842,105.449608,100.474396,94.672745,69.681007,54.565311,71.267792,91.730598,67.408287,30.647953,12.688447,8.606630,8.657862,7.194230,5.518196,7.217366,2.081822,0.904134,0.341323,0.187604,0.009918,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602368.555000,4612885.550000,8132,2505,104.776878,163.727295,158.247971,148.512405,130.462830,116.900841,115.214890,110.958694,108.289276,111.033073,107.884315,120.314064,138.843002,155.834747,166.768631,178.504150,174.297546,158.033096,135.851257,116.123985,104.239685,99.900841,95.363655,69.553741,54.165310,71.181839,89.636383,65.843002,28.714067,10.300841,8.669440,7.213234,7.799189,6.678526,6.676871,1.901657,0.586779,0.160331,0.078513,0.031405,0.133058,0.000000,0.155372,0.023967,2.233884,0.000000,0.000000,0.000000,0.000000,0.000000 -602372.755000,4612885.550000,8153,2505,106.460350,169.609116,159.468628,146.509949,131.865311,115.964478,114.295059,110.774399,108.534729,109.526466,105.757866,118.435555,135.592590,154.228958,166.394241,176.195892,173.518204,157.832260,134.518204,114.204147,103.691750,99.906631,93.518196,68.303329,53.063660,71.757866,90.625641,65.187630,30.956219,11.633902,8.501673,9.085961,5.786792,5.365303,6.047944,1.704136,0.290913,0.009918,0.000000,0.041323,0.305786,0.000000,0.000000,0.204132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602379.555000,4612885.550000,8187,2505,108.615715,170.268631,160.483490,148.078552,128.615723,116.376053,114.103325,111.152908,109.574394,111.227287,107.433899,119.698364,139.359543,157.698364,171.698380,180.615738,177.475235,157.995895,136.681854,114.177704,103.929771,100.028938,94.954559,68.136383,53.772747,71.053734,90.690102,66.500023,31.070267,10.733073,8.632252,11.067783,5.289269,6.610758,8.033071,2.721493,0.145456,0.086779,0.000000,0.000000,0.045455,0.000000,0.078513,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602390.955000,4612885.550000,8244,2505,123.622337,170.118195,152.341324,145.060349,123.721504,108.655396,106.539680,107.076881,106.423981,111.002495,105.093407,120.349602,140.795883,163.209091,179.209091,188.283493,181.258682,158.969421,136.341339,114.167786,101.167786,99.109932,94.845474,67.382668,49.250435,71.308289,96.523155,72.134735,34.795891,11.564480,8.622333,12.568610,6.461993,6.874392,7.159517,3.403313,0.231406,0.092562,0.071901,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.527273,1.808265,0.000000 -602409.955000,4612885.550000,8339,2505,112.539680,133.093399,130.192566,119.738022,104.192574,92.085136,91.349602,88.895058,88.341339,89.291748,91.151253,103.085129,123.209099,142.010773,155.547958,163.878540,160.994232,147.465317,124.531410,104.184303,94.085136,89.804146,86.481834,60.779358,41.944645,61.638863,88.448776,70.721504,31.598368,10.394231,7.862003,6.391746,8.237202,8.617369,9.142161,2.645460,1.273556,0.259505,0.023141,0.250414,0.000000,0.371901,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,4.866943,0.000000 -602424.355000,4612885.550000,8411,2505,110.904144,115.354553,116.098358,103.023979,85.321503,73.478531,71.858704,71.891762,71.709938,71.288452,73.974396,88.329765,109.990921,130.982651,145.081833,154.065308,147.379364,132.734726,110.379349,88.825630,79.552910,77.222336,74.809113,48.147953,27.519852,51.420681,84.784309,69.627289,30.797539,9.241337,6.800846,9.553730,8.701667,10.903321,15.090099,9.341333,3.071079,0.774382,0.770250,1.504961,0.784299,0.121488,5.316532,2.257026,68.842987,27.979342,19.944630,12.741323,5.414876,10.518183 -602025.755000,4612875.550000,6418,2555,152.642151,168.212402,141.807449,124.261993,111.361168,96.427284,95.691742,93.592575,94.154556,97.138023,96.063644,108.443810,129.972733,149.609100,162.286789,171.881821,167.807449,152.311584,129.204147,108.162819,97.559517,95.774391,94.336372,65.567787,45.989277,63.807461,90.237198,67.790924,28.972750,9.169435,8.576052,18.973570,10.922327,14.727290,14.733900,15.146295,6.942160,3.355379,2.663641,3.108269,2.868597,4.589260,8.198355,9.288437,85.574394,30.014053,32.404137,20.291740,12.908266,5.320662 -602029.355000,4612875.550000,6436,2555,178.490921,173.950424,147.413239,133.404968,117.438034,104.735550,103.909103,102.322327,102.636383,103.917374,103.057869,116.471092,136.909103,156.033051,168.355392,178.479355,173.818192,158.074387,132.247940,110.950432,100.809937,97.859520,96.454559,68.768608,49.140514,65.231422,87.809937,65.429771,30.710764,10.490099,8.768613,15.419026,9.340509,10.689272,12.271916,9.428939,1.929757,1.103308,0.219836,0.595043,0.280166,0.695042,2.114878,1.204133,12.570249,18.142977,14.512399,6.861159,2.736364,5.682645 -602033.555000,4612875.550000,6457,2555,158.464493,184.571930,154.067795,139.084320,123.803322,108.042992,108.390099,106.869438,106.538864,109.472748,107.671089,120.927292,140.009949,160.224823,173.109116,181.571930,177.175232,160.447952,135.613251,114.514069,104.588448,101.902496,100.472748,70.960350,52.067787,68.762001,89.357040,64.662827,29.869442,9.465307,9.133904,14.491752,8.335551,10.234726,12.569438,6.673563,2.549592,1.012399,0.600830,0.812398,0.160332,0.920663,0.328926,0.000000,10.528100,5.265290,4.878513,8.500828,5.640496,7.870248 -602038.955000,4612875.550000,6484,2555,162.319855,180.790939,157.212418,142.906631,127.857033,110.617371,112.526466,110.890099,110.063652,115.195877,111.063652,124.369431,144.005814,163.146301,176.187622,185.691757,180.187622,163.650436,140.262009,118.584305,106.146301,105.402496,103.245476,73.666962,56.402496,73.270264,91.997528,66.361176,31.774401,12.335554,9.385969,14.278528,8.614891,11.590098,11.123156,6.586788,1.818186,2.092566,0.444631,0.388430,0.138844,0.074381,0.265289,0.000000,12.443803,6.632232,2.729753,2.665289,5.812397,8.109092 -602047.355000,4612875.550000,6526,2555,168.581833,196.639694,163.507462,149.771927,132.920670,116.920670,116.284309,114.581833,114.383484,119.523979,116.300835,128.978531,148.094238,165.788452,181.085968,189.763657,185.127289,167.135559,142.912415,122.292572,109.895882,107.441330,105.763649,75.152077,57.755390,75.887619,92.829765,66.276047,29.300844,11.173572,9.614896,13.463652,7.515716,7.914891,7.674393,3.749595,1.709094,0.235538,0.185951,0.173554,0.000000,0.183472,0.266116,0.000000,4.054546,1.133884,1.894215,1.748761,5.690083,0.000000 -602059.155000,4612875.550000,6585,2555,179.809097,193.557846,172.351257,153.194214,128.817368,114.263649,114.572739,115.037216,115.648781,123.673561,118.938034,131.061996,152.235535,171.152893,187.463654,193.174393,188.662003,167.364471,142.918198,119.594231,107.032242,104.371086,102.354553,73.759514,54.589275,74.073563,90.918205,66.876877,28.423986,11.595883,9.304977,15.128115,8.245467,10.291748,11.738857,7.042158,3.544631,2.564464,4.043805,2.563638,2.761159,0.795869,0.366942,0.000000,1.824794,1.062810,0.581818,0.976033,1.021489,0.000000 -602067.155000,4612875.550000,6625,2555,162.130600,155.783493,146.014893,129.287613,114.609932,102.254570,99.791756,100.295891,99.907463,101.452911,102.461182,115.122330,135.923981,154.940521,167.824799,176.345474,173.692566,155.965317,129.973572,107.709099,97.271095,94.444649,90.618202,64.965309,44.775227,63.552086,86.262833,65.659523,30.874399,11.119024,8.238036,9.919849,7.938855,10.161171,10.955387,6.601661,2.034716,0.634713,0.019009,0.595869,0.352893,0.071901,0.516530,2.030580,4.751240,6.782645,1.904959,3.403307,4.647934,1.839670 -602100.155000,4612875.550000,6790,2555,191.245468,173.782654,153.030594,137.981003,123.790924,111.286797,106.857040,103.840515,101.328117,101.195885,101.625641,109.972748,127.675217,141.923172,153.981003,162.890091,161.055374,149.518188,127.336372,108.576050,97.228943,94.344643,89.763649,64.366959,50.102493,67.953735,83.716545,63.212414,30.956219,10.786794,8.160350,9.560345,9.359518,8.927286,12.367784,7.670259,3.061986,2.091737,3.045457,2.915705,3.570250,2.668596,4.275210,1.576860,14.043804,5.894217,4.953720,9.268597,9.592564,8.223968 -602103.355000,4612875.550000,6806,2555,154.123138,155.019012,142.989273,133.360336,122.224800,112.117363,108.786797,104.629761,104.269432,106.252907,105.079353,115.881004,134.153732,149.707458,162.442993,171.120667,170.814896,158.955383,137.046295,117.947121,107.244644,104.211586,99.145470,73.452911,57.461174,74.178528,90.161995,68.095886,31.849606,11.512414,9.013242,7.323978,7.538028,9.238857,9.469434,5.422321,2.652897,0.976035,1.097523,1.267770,0.539670,0.557852,1.128100,0.804960,10.457026,7.606613,2.000000,0.754546,3.677687,3.324794 -602108.355000,4612875.550000,6831,2555,147.125641,166.009949,155.034729,145.175232,130.001663,119.398361,117.009933,113.621506,112.241341,113.390099,113.166962,124.315720,141.282669,158.373581,170.530609,179.266144,177.332260,164.009949,141.109116,119.687622,108.299194,103.216537,98.472740,71.737213,55.423157,73.274406,89.588440,68.968620,32.798367,12.318199,8.952085,8.769436,9.265304,8.820676,8.161173,4.419842,0.899175,0.253720,0.273554,0.176860,0.081818,0.414050,0.274380,0.023141,2.766943,2.942149,1.725620,3.404960,6.513224,0.000000 -602114.155000,4612875.550000,6860,2555,149.948776,161.480179,158.190918,144.248795,133.190918,122.645470,118.240517,117.066963,114.571098,115.719856,115.397545,125.752907,144.215729,159.455383,172.819016,180.744644,179.199188,167.265305,142.785980,121.719849,109.042160,107.323151,101.645470,74.744644,58.430595,76.166130,94.628937,71.116547,33.075226,12.794230,9.240515,7.773568,6.924806,7.295053,7.962822,4.057859,2.014054,0.884299,0.763637,0.355373,0.238844,0.231406,0.000000,0.355372,0.000000,0.926446,3.233058,3.299174,0.000000,4.490910 -602121.955000,4612875.550000,6899,2555,150.514053,166.332245,159.993393,147.638031,133.952072,122.861168,120.795052,117.481003,116.390091,118.241333,117.026459,128.100830,145.761993,162.390091,174.943817,183.423157,182.191742,168.009933,144.001663,123.307449,111.150421,107.720673,102.109100,76.852905,58.638039,77.200020,94.588440,69.844635,33.257870,12.842991,9.282663,5.736373,7.218194,6.754559,7.630593,3.262816,0.269423,0.214877,0.343803,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,1.039670,4.060331,0.728099,1.038843,0.000000 -602133.555000,4612875.550000,6957,2555,164.249619,172.175201,160.737198,149.894226,137.514038,124.712418,122.059525,119.051254,117.919029,120.142166,119.638031,130.042999,147.009933,164.505798,177.786774,185.051239,183.894211,171.910736,147.439682,126.042992,113.960350,109.662827,105.836380,78.530594,62.001678,77.414894,93.357040,71.051254,33.290928,12.984316,9.621507,6.075216,7.697535,6.278523,7.693401,3.955380,0.582646,0.264463,0.174381,0.066942,0.087604,0.676861,0.000000,0.000000,4.479339,0.000000,5.795042,1.842149,0.000000,0.000000 -602150.955000,4612875.550000,7044,2555,155.728958,178.200027,167.026474,152.778534,140.150436,125.390099,123.613243,122.042992,119.390099,122.431419,121.076050,132.166946,149.042999,166.365311,178.530609,187.216553,187.952087,173.919037,150.315735,128.423157,116.026466,112.530594,108.018188,80.348778,63.976879,77.555389,93.762001,71.249603,32.009933,12.310760,9.819854,5.594226,5.764476,5.509929,6.955386,2.168600,0.749589,0.271075,0.000000,0.005786,0.148761,0.015703,0.000000,0.000000,4.894216,0.000000,0.000000,0.923967,2.503306,2.144628 -602169.955000,4612875.550000,7139,2555,151.418182,178.963654,174.740509,157.781815,139.300003,127.589264,125.324806,121.514893,120.324806,121.176048,120.118195,132.614059,152.291748,168.828949,180.349609,189.589279,189.647125,174.126465,150.308273,128.655380,116.382660,113.415718,108.300018,79.399185,62.944653,80.308281,98.762825,74.176056,35.076878,13.303324,9.845473,11.171915,7.859520,8.907453,9.085962,5.974388,0.684299,0.278513,0.725621,0.714877,0.523968,0.429753,0.000000,0.003306,0.000000,0.000000,0.000000,0.816529,0.000000,0.000000 -602176.955000,4612875.550000,7174,2555,126.923149,177.795044,173.431412,156.142151,140.200027,126.786797,125.952087,121.604973,119.745461,120.084305,119.662819,132.398361,151.381821,168.059509,181.687607,190.819839,188.960342,173.348770,149.902496,128.183487,117.332253,113.885971,109.381836,79.828117,64.571922,81.158699,100.076050,72.315720,35.092579,12.879357,9.943820,10.552907,8.452081,9.239683,9.790096,4.592570,0.518184,0.465291,0.289257,0.294216,0.411571,0.036364,0.334711,0.069422,0.000000,1.338017,1.190083,2.540496,0.000000,0.000000 -602181.955000,4612875.550000,7199,2555,115.261169,173.457870,171.001678,153.447952,137.001678,125.084312,123.001671,120.323982,119.117371,119.373573,118.555389,130.514069,151.009949,167.910767,180.249619,189.894241,189.662842,173.530609,149.522339,127.604973,115.315720,113.257866,107.836380,79.664474,64.019852,80.538864,99.059525,72.497536,34.902496,12.556217,9.803326,11.009933,7.661998,9.782660,10.702494,4.647941,1.088432,0.908266,1.016531,0.756199,0.450415,0.542976,0.000000,0.000000,1.414050,0.000000,0.000000,1.016529,0.000000,0.000000 -602188.755000,4612875.550000,7233,2555,126.067787,182.797531,174.227310,163.318207,144.590942,130.285126,129.781006,125.830589,124.227287,124.367783,122.805794,135.293396,154.466980,172.789291,184.376068,194.607468,192.433914,176.500031,153.392593,131.152893,119.458687,115.690094,109.045464,80.855377,64.698364,80.979347,98.822319,72.995880,33.730598,12.699190,9.913242,12.556212,8.428940,9.624807,10.089271,4.188437,1.914878,0.710745,0.776861,0.252067,0.214877,0.170248,0.104959,0.072727,1.297521,0.000000,0.604132,0.000000,2.642975,0.000000 -602192.155000,4612875.550000,7250,2555,144.975204,196.656204,183.904144,167.119019,151.477692,138.585129,140.254547,137.168610,135.391754,136.689270,134.119019,144.292587,163.193390,180.218185,192.056198,202.758682,197.857864,180.130585,158.180176,136.890915,123.527290,119.921494,113.863647,86.202492,69.384315,86.409103,103.574387,75.557869,35.913239,15.823985,10.351259,16.896711,11.204974,11.758692,13.487618,6.333067,2.647937,2.895044,2.212399,2.842151,3.047935,2.056200,1.957852,1.360332,0.804132,0.000000,5.292562,3.606612,0.000000,0.000000 -602197.755000,4612875.550000,7278,2555,140.024811,198.510757,179.147110,164.791748,146.312408,130.816528,130.039673,125.328941,124.114059,126.692566,122.246292,135.279343,153.800003,172.304138,185.477676,195.386765,193.717346,177.337173,154.585129,132.155380,120.957039,116.725632,111.345467,82.444641,66.213249,84.709114,102.213234,75.626457,37.196716,12.982663,10.122333,12.059521,8.178529,9.038031,9.626460,5.603315,1.538846,0.423968,0.652894,0.240497,0.009918,0.241323,0.032232,0.415703,2.363637,0.000000,1.884298,0.000000,0.000000,0.000000 -602205.155000,4612875.550000,7315,2555,111.979362,169.326462,164.293411,155.194229,138.772766,125.169449,123.574402,121.020683,117.045479,120.318207,116.772751,128.739700,146.144653,163.971085,175.549606,187.086807,184.549622,169.318192,146.409119,125.665314,113.962837,109.376060,104.045479,77.954567,63.078533,80.458702,98.690109,74.739693,33.772747,12.055389,9.458697,4.564471,6.099190,5.608275,7.378525,2.913228,0.467770,0.023968,0.112397,0.266943,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.038017,0.000000,0.000000 -602216.355000,4612875.550000,7371,2555,108.881012,167.850433,165.296707,154.098373,139.825638,126.073570,124.453735,120.329773,119.172745,120.759521,118.569443,130.544647,147.660355,165.321503,178.676880,188.635559,186.643814,171.486801,147.255386,126.338036,114.371094,110.685143,105.445473,78.594223,63.825638,81.627281,99.792580,73.073570,35.114895,13.075224,9.585970,7.966126,7.670262,7.323153,7.057036,2.093392,0.711572,0.103306,0.136364,0.368596,0.000000,0.000000,0.000000,0.234711,0.000000,1.401653,2.239670,0.000000,0.000000,0.000000 -602230.555000,4612875.550000,7442,2555,94.642982,152.973572,161.676056,151.238037,137.105789,124.965294,123.114059,119.940506,117.618187,118.923973,117.808273,129.180176,147.585144,164.502502,176.271088,186.477692,183.262817,170.097549,145.626465,125.452896,112.957031,109.039673,103.981827,79.304138,64.138863,79.981827,99.618187,73.907448,36.123985,15.239687,9.452912,6.218192,8.165303,8.413238,9.234723,3.119842,0.751241,0.095042,0.085951,0.054546,0.210744,0.203306,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,1.971074,0.000000 -602239.555000,4612875.550000,7487,2555,84.714897,155.681824,161.731400,150.566116,136.053741,123.822342,120.169449,118.747955,116.219032,116.599197,116.814072,127.640518,146.483475,162.508270,174.805801,184.830597,181.805801,168.458679,144.177689,122.119858,110.962837,107.582672,102.681831,79.095062,62.012421,78.814072,96.739685,70.177711,33.152912,12.557869,9.334730,5.851250,7.647950,7.285135,5.770257,2.214055,0.926448,0.322315,0.000827,0.152067,0.030579,0.000000,0.266116,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.155000,4612875.550000,7525,2555,94.677704,143.646286,154.646286,147.704147,132.489273,121.423149,118.381828,113.522324,113.026459,112.158684,112.381828,122.968605,141.613235,158.786789,170.398361,179.737198,176.514053,163.836380,141.464478,118.795052,107.861168,104.224800,98.927284,74.340515,58.431427,75.282661,93.497536,69.142166,31.200018,11.566133,8.993407,3.690917,5.752906,5.678525,4.284306,2.666947,0.056199,0.352893,0.115703,0.067769,0.020661,0.061157,0.059504,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602251.955000,4612875.550000,7549,2555,80.374397,144.448761,157.787613,148.035538,132.919846,122.349602,119.531418,116.126457,113.985962,114.713234,114.597534,125.242165,142.853729,159.407440,170.614059,181.068604,177.663635,165.828934,141.638855,120.746292,109.845467,105.233902,100.572739,75.969437,60.820679,75.300018,94.820679,71.845467,32.390926,13.398365,9.142995,4.697531,6.355384,6.757037,5.087614,2.909097,0.188430,0.379340,0.000000,0.126447,0.060331,0.076860,0.307439,0.000000,4.651240,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.955000,4612875.550000,7564,2555,86.045471,148.822327,159.541336,150.814072,134.152908,123.086792,119.747948,116.524811,115.169441,115.516548,114.500015,126.681831,144.359528,160.847122,172.607452,180.714890,179.243820,165.533081,143.012405,122.838860,110.921501,108.128113,103.318199,76.681831,61.466957,77.913239,94.516548,70.119858,33.690102,12.937206,9.392581,5.367778,7.722331,7.884313,6.850423,2.079345,0.693390,0.228927,0.219835,0.112397,0.000000,0.076860,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602259.355000,4612875.550000,7586,2555,81.043808,149.471085,160.619858,150.413239,136.388428,125.793396,120.809929,116.917366,115.652901,116.239677,115.190094,126.231415,143.776871,160.933899,172.214890,179.776871,178.851257,164.603317,142.743820,122.190094,110.661163,106.942154,101.545464,76.570267,62.231426,80.123985,93.603317,70.677704,33.402500,12.811587,9.231424,7.025631,7.110758,7.228938,6.665301,3.414057,1.076035,0.122315,0.000000,0.049587,0.019835,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602266.555000,4612875.550000,7622,2555,68.369438,142.240509,157.422333,150.595886,132.604141,123.852074,121.430580,117.918190,115.223969,116.190910,116.504967,126.389252,144.513229,160.050430,171.298355,180.703308,178.397522,165.736374,141.323151,122.083473,111.480171,107.885132,101.645470,76.843811,60.926464,77.009102,92.752907,68.381004,32.843822,12.274398,9.240514,5.882655,8.323155,6.458689,7.577698,2.623974,0.758680,0.186777,0.000000,0.020661,0.217356,0.000000,0.161984,0.394215,2.249587,0.000000,0.000000,0.000000,0.814876,0.000000 -602276.355000,4612875.550000,7671,2555,86.800026,147.163635,157.940506,148.147110,133.725632,122.965294,119.238022,115.328934,113.279343,114.403313,114.585129,125.254555,143.543808,159.915710,170.833069,179.312408,176.618195,163.213226,141.378525,119.304138,108.295876,105.403313,100.890915,75.238037,60.758698,76.353745,90.436371,66.576881,30.370266,11.667785,9.171921,4.034719,6.832245,6.266129,5.180175,2.150420,0.256200,0.227274,0.095041,0.142976,0.000000,0.138843,0.331406,0.331405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.155000,4612875.550000,7695,2555,70.305809,145.322342,156.132248,147.553741,132.206619,121.975220,118.115715,115.223160,112.471092,113.272743,112.198364,123.669441,141.148773,157.016541,167.586792,177.157043,174.818192,162.330597,139.322327,119.247948,109.239685,104.809937,99.545471,74.553741,60.041340,77.041336,90.000015,67.826462,31.354563,13.175224,9.049607,5.623150,7.029768,6.895881,5.907448,2.796701,0.858680,0.271902,0.061157,0.068596,0.000000,0.056199,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602286.555000,4612875.550000,7722,2555,86.188454,141.436386,155.419861,142.742172,129.634735,117.469444,114.064484,109.452911,107.452904,106.692574,106.411583,117.535561,135.188446,151.833084,163.841339,171.667786,170.213242,157.428116,134.758698,114.965309,104.791748,100.337204,93.709114,69.105804,53.907455,72.601677,90.395065,68.039696,30.285143,11.446299,8.519028,4.345463,6.169436,7.068607,6.266953,1.474386,0.728928,0.282645,0.369422,0.052067,0.000000,0.000000,0.157025,0.000000,0.000000,0.000000,2.242975,0.000000,0.000000,0.000000 -602291.555000,4612875.550000,7747,2555,70.307457,137.357056,154.687622,145.348785,129.976868,119.505798,114.208282,109.968613,107.555389,107.423157,105.621506,116.927284,135.423157,151.315735,161.687622,172.059525,169.290939,156.158707,135.737198,115.249603,104.299194,99.596710,92.472748,68.514069,54.464481,71.811584,92.985138,70.092583,33.199196,12.690926,8.406631,4.968605,7.457040,7.157864,7.674391,1.954551,0.890911,0.468596,0.000000,0.017356,0.000000,0.057025,0.256199,1.061158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.555000,4612875.550000,7767,2555,83.001671,139.158691,156.117371,145.142151,128.133896,118.233070,113.976868,109.274391,106.348770,104.960342,105.538849,115.985130,135.133896,150.786789,160.522324,172.001663,170.728943,156.786789,134.910751,115.993401,103.042984,97.927284,90.927284,66.819855,52.588451,72.257866,94.249596,72.224808,33.224815,12.859521,8.266135,5.657033,6.767784,7.990097,6.555383,2.793395,0.335538,0.364464,0.000000,0.277687,0.000000,0.057851,0.001653,0.347934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602299.155000,4612875.550000,7785,2555,80.447128,141.852081,152.934723,144.190918,129.314896,118.166122,115.984314,110.347939,107.695045,106.678520,105.661987,116.620667,135.372742,150.942993,161.686783,171.852081,169.670258,157.521500,135.695053,115.471909,104.133064,98.645462,92.736374,67.381012,54.347954,72.199188,93.166130,70.521500,32.513245,12.414894,8.430597,5.256207,7.263652,6.873569,7.052077,2.058685,0.628928,0.273555,0.090083,0.013223,0.014876,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602304.355000,4612875.550000,7811,2555,77.665306,141.698364,160.194214,146.871918,131.962830,120.177696,115.805794,111.285133,108.533073,107.789276,108.219025,118.780998,135.723160,152.293411,161.723145,171.351257,169.400848,157.615723,135.921509,117.177696,104.293404,100.318199,94.227287,69.202492,56.268612,71.706627,92.954559,69.590927,32.161179,12.514894,8.566133,7.210754,8.094231,6.123155,7.194226,3.893397,0.298349,0.577688,0.041322,0.072728,0.000000,0.000000,0.218183,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602309.155000,4612875.550000,7835,2555,79.329773,147.652084,159.437210,147.660355,132.461990,120.676872,117.230591,112.833893,110.495056,109.437202,109.453728,119.718193,138.032257,152.544647,163.007462,172.643814,171.470261,157.561172,135.866959,116.065300,105.139679,100.106621,93.627281,69.065308,56.751259,72.974388,92.090096,67.205803,29.568613,12.103324,8.511590,6.077696,6.798361,7.398360,6.094226,3.142981,0.559506,0.443803,0.040496,0.076860,0.214876,0.049587,0.660332,0.509091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602314.955000,4612875.550000,7864,2555,84.275223,140.618210,157.238037,146.006638,130.138855,119.469429,116.238022,111.923973,109.039673,108.791740,108.915710,119.114059,138.328949,154.089279,164.403336,174.312424,173.271103,158.502502,137.122330,116.899178,105.527283,101.899185,94.345467,69.452904,55.750431,72.965302,93.254562,68.320679,32.899193,11.515719,8.576880,7.513234,7.906626,6.712409,6.764474,2.478519,0.219837,0.714878,0.134711,0.055372,0.026446,0.000000,0.312397,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602320.355000,4612875.550000,7891,2555,82.089279,143.328949,153.923996,145.370270,128.081009,116.262833,112.568619,108.196716,105.064484,105.576881,103.857872,115.147133,133.395050,149.700851,160.899200,170.750443,168.791763,153.717377,133.023148,113.601677,101.833084,96.948784,89.345474,64.461174,50.510765,69.965309,91.965309,68.461182,30.403324,10.104976,8.122334,5.799183,5.195879,5.361996,6.028936,1.917359,0.142976,0.024794,0.000000,0.021488,0.000000,0.000000,0.377686,0.112397,0.000000,0.000000,1.696694,0.000000,0.000000,0.000000 -602325.355000,4612875.550000,7916,2555,88.126472,154.010757,155.936371,145.109924,129.564468,116.614059,114.027283,108.704964,105.696701,105.771080,103.680168,114.853729,134.738022,150.572739,159.333069,171.010757,169.068604,154.068604,134.250427,113.547943,101.043816,97.076874,90.754555,66.539688,51.870266,69.167786,91.605789,66.506630,30.438860,11.000017,8.250433,4.104141,6.405799,5.778527,5.015713,2.252073,0.386778,0.261985,0.124794,0.076860,0.048761,0.000000,0.176033,0.181818,0.000000,0.000000,1.808265,0.000000,0.000000,0.000000 -602330.355000,4612875.550000,7941,2555,83.268616,143.731415,155.309921,146.144623,129.607452,118.351250,116.367775,110.095047,107.764473,107.995872,106.739677,118.136375,136.028931,152.342972,163.367767,174.442154,171.640503,156.880173,135.037201,115.764473,104.235542,98.491753,92.409103,68.169441,54.359524,73.061996,91.764481,70.053734,32.028942,11.483488,8.400846,7.206622,6.741335,8.004973,7.715714,2.085958,0.454547,0.116530,0.226447,0.028926,0.149587,0.053719,0.117356,0.542976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602337.955000,4612875.550000,7979,2555,93.733078,156.939682,159.410751,146.741333,130.385971,120.311584,117.088448,112.319855,110.047127,109.518196,107.972748,120.253738,137.857040,154.452072,165.749603,176.369431,174.435547,158.997528,136.088440,116.534729,103.551254,99.939690,93.700012,67.675232,53.377708,71.700020,92.625633,69.088448,30.799192,11.571093,8.518201,6.588439,6.481005,5.051252,5.142985,3.466120,0.900003,0.005785,0.123967,0.323141,0.117356,0.000000,0.000000,0.249587,0.000000,0.000000,0.000000,1.648760,0.000000,0.000000 -602344.555000,4612875.550000,8012,2555,84.377701,151.757874,158.906631,146.295074,132.460342,118.989273,117.848778,113.460350,111.633904,111.832253,110.014069,122.138031,140.452087,157.129776,171.476883,179.832260,176.047134,161.567795,138.410767,118.030594,105.881836,101.857040,96.245476,70.815720,55.179359,72.377701,93.171089,68.005814,31.071920,12.079357,8.749606,8.149598,6.109930,7.565301,6.002490,1.589260,0.633886,0.004132,0.168595,0.297522,0.194215,0.000000,0.242149,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602347.555000,4612875.550000,8027,2555,85.237206,156.848770,157.749603,147.708267,130.890091,118.501663,116.038849,112.328110,109.129761,110.270256,108.047119,119.931412,138.857040,155.815720,166.427277,176.617371,175.113235,158.319839,136.394226,116.162819,103.559517,100.394226,93.427284,69.080185,55.700016,72.493408,92.865295,69.865311,31.038862,12.052083,8.493407,7.791746,7.522328,6.917369,7.538855,3.345462,0.681821,0.347936,0.256199,0.041323,0.033884,0.000000,0.311571,0.043802,0.000000,0.000000,0.000000,1.525620,0.000000,0.000000 -602351.355000,4612875.550000,8046,2555,102.558701,154.409927,161.054565,149.426453,133.128937,119.773567,116.881004,112.748772,112.757034,111.790092,110.699188,121.930588,139.442993,156.856216,168.575226,179.624802,175.600006,159.831421,138.294235,117.550423,105.864479,102.228111,96.781830,71.765312,56.319031,73.029762,93.476044,71.261177,32.409935,13.690928,8.798367,7.291748,8.068610,6.846296,10.186791,2.042982,0.262812,0.123141,0.075207,0.049587,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602355.955000,4612875.550000,8069,2555,81.178535,158.178528,157.104141,147.550430,132.236374,119.252899,116.963638,112.269432,110.533897,111.228111,109.104149,120.914055,138.368607,156.401672,167.360367,178.335571,173.046310,158.699203,136.823151,116.029755,104.533897,100.707451,95.236366,68.327293,54.674400,70.690926,91.285957,67.327293,30.401672,11.977703,8.657871,7.419020,6.612411,6.141336,6.133068,3.189260,0.194216,0.170248,0.030579,0.031405,0.013223,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602360.355000,4612875.550000,8091,2555,102.161995,155.426453,159.872742,145.715714,130.955383,117.170258,115.847946,112.393402,110.319023,111.195053,108.657867,119.798363,137.988449,156.343811,168.178528,177.938858,172.980179,158.922333,136.690918,115.839684,105.376869,100.938858,93.963646,69.517380,54.542175,72.178528,91.881004,67.360352,31.113243,12.581009,8.542167,7.812409,7.831419,7.447947,7.518193,2.457855,0.840498,0.228100,0.039670,0.014050,0.066943,0.000000,0.328100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602363.955000,4612875.550000,8109,2555,94.695061,163.637207,157.744644,148.521500,131.538040,117.984322,115.538040,111.695061,109.554565,111.802498,107.843826,120.372749,138.794235,156.976044,168.397522,177.728119,175.157867,158.190918,136.149597,116.827293,105.157875,100.984322,95.827293,68.876877,55.265316,71.595886,91.124817,66.389282,30.488449,10.516547,8.711589,8.346292,7.234725,6.905799,7.273565,1.726450,0.607442,0.447109,0.261984,0.050414,0.000000,0.059504,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602368.355000,4612875.550000,8131,2555,100.127281,164.581833,158.400024,149.705811,132.953735,117.028107,116.466125,112.391747,110.904144,112.755386,108.780174,121.119019,139.383484,159.185150,170.573578,180.309113,175.904144,158.780182,137.647949,117.019844,105.350426,100.953728,95.672737,69.581833,54.813244,71.978523,91.912407,68.838036,31.185143,13.154563,8.697540,8.083483,8.058692,7.027287,6.629764,2.389260,0.190084,0.169422,0.010744,0.145455,0.000000,0.000000,0.183472,0.483472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602373.755000,4612875.550000,8158,2555,117.519028,167.981842,162.923996,148.899200,131.899200,118.601677,117.097542,114.056221,111.998367,114.601677,110.064484,121.576881,139.973572,158.957047,171.667786,180.609940,177.477707,158.990112,136.576889,117.593414,105.651260,99.659523,96.254570,70.204979,54.510769,72.618202,90.791756,66.758698,32.388451,12.468612,8.750433,8.764474,8.169436,8.066130,8.018195,1.618185,0.816531,0.540498,0.097521,0.071075,0.010744,0.000000,0.638844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602382.155000,4612875.550000,8200,2555,113.844643,163.241333,161.481003,151.844635,131.390106,118.133896,117.935547,115.208275,113.208275,116.778519,111.811577,125.307449,143.547119,163.456207,178.960342,187.398361,182.927277,162.555374,139.852905,120.175217,107.836372,104.654556,99.927284,71.654564,55.613243,76.613243,96.588440,71.150429,34.919025,14.666960,9.084316,12.918196,9.217370,8.980180,8.076046,3.209098,0.063638,0.710746,0.279339,0.000000,0.046281,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602395.955000,4612875.550000,8269,2555,80.297546,127.691765,137.485153,125.295067,111.642174,99.228943,95.865311,95.022331,92.873573,94.526466,95.096710,107.237213,126.129776,143.650436,158.138046,166.931427,164.063660,151.328125,126.592590,105.402504,93.914894,90.005806,84.063652,59.666962,43.047127,61.823986,87.675224,67.947960,30.139688,10.736381,7.642168,3.894222,6.994226,6.408275,7.728111,2.498354,0.634713,0.164464,0.408266,0.350414,0.185124,0.591736,0.055372,0.132232,0.000000,0.000000,2.188430,0.000000,0.000000,0.000000 -602417.755000,4612875.550000,8378,2555,127.289276,130.644623,125.413231,113.719025,98.578529,87.495880,83.925636,80.347122,80.628113,79.768608,81.388443,92.619850,113.000008,131.206604,145.280991,152.917358,149.264465,135.826447,113.611588,93.785141,83.454559,79.570267,75.363655,50.264481,33.504147,54.446297,79.719025,63.429768,30.404974,10.927287,6.851259,6.344640,7.896705,7.341334,9.381833,4.533892,0.846283,0.548762,0.993390,0.215703,0.325621,0.871076,0.000000,0.000000,5.806612,3.725620,4.575207,2.650413,2.916529,5.401653 -602425.355000,4612875.550000,8416,2555,91.245461,83.500839,75.414062,62.693401,51.271912,41.739681,38.797531,36.409103,35.954559,36.376045,36.161171,42.830585,52.809101,63.635548,69.966133,75.709930,74.214058,70.032249,60.428936,49.488441,45.471912,44.495052,41.827290,27.327286,15.617367,32.868607,61.036373,60.795055,28.946297,6.935547,3.802494,13.133898,18.565306,29.533073,44.790100,43.535553,23.948771,23.930588,28.147114,30.335546,36.072739,30.353729,45.056210,48.139675,109.152077,88.909088,47.522320,60.371082,40.254547,71.648758 -602003.155000,4612865.550000,6305,2605,163.430588,148.091751,126.273575,109.901672,94.637215,82.347939,80.872734,77.459511,77.680183,78.500839,78.072739,90.108276,108.637215,125.538040,137.562820,145.769440,143.488449,132.306625,112.992584,94.860352,84.447113,83.397522,81.918190,53.290104,34.593403,55.306629,86.521507,70.711594,33.168613,8.153733,7.447127,17.649601,12.159521,17.285143,26.390100,28.608284,12.635550,6.124804,7.405796,8.344639,7.703314,16.290922,29.985964,25.088442,158.364471,118.066132,65.133064,43.005795,36.777691,55.525620 -602005.955000,4612865.550000,6319,2605,169.662003,156.959518,138.381012,120.628937,104.901665,91.661995,90.504974,87.066956,86.942986,87.893402,88.785965,100.752907,120.554558,139.108276,151.273560,160.546295,156.612411,142.190918,118.471916,98.628937,86.959518,85.298363,83.009102,55.686798,37.934727,56.488449,77.794228,58.364483,25.259521,7.682659,7.546300,14.738858,8.491750,10.579353,14.234726,14.629766,5.812407,3.933065,3.725626,2.723971,4.152072,12.555382,10.041331,12.634719,85.639679,68.792572,52.978523,31.100008,27.415705,21.209091 -602009.155000,4612865.550000,6335,2605,160.646286,159.927277,142.877701,125.877693,110.530586,97.208275,95.447945,93.249596,92.555382,95.166954,93.613235,106.431412,126.547119,144.332245,158.034714,167.266129,163.819839,147.778519,123.051247,101.646294,90.894226,88.505798,85.563644,57.993412,40.968616,56.877708,76.109108,55.976883,25.514069,8.352909,7.778532,14.176877,7.656212,10.691751,12.897536,10.194229,4.823976,1.819839,2.238020,1.557854,2.310747,1.881820,6.371083,7.009923,55.510750,38.824799,27.459509,19.826450,20.604959,24.686779 -602013.555000,4612865.550000,6357,2605,151.714066,166.100830,146.183487,130.654556,115.315720,102.505806,101.059525,98.737206,98.712418,100.200020,99.514069,111.431419,131.919022,148.960342,163.555374,173.993393,170.728943,153.902496,127.588448,106.828117,95.009933,93.076050,89.109108,61.447952,45.852909,60.191753,79.332260,58.009933,26.307455,9.871916,8.100846,13.955389,8.060346,10.440510,10.757866,7.909929,2.725624,0.752068,1.986781,0.946283,1.067771,0.460332,2.708267,1.535538,23.090914,17.781820,11.480993,14.972730,5.861157,13.062811 -602019.555000,4612865.550000,6387,2605,165.210754,165.028946,152.731415,135.640518,120.756218,106.946297,106.334724,105.342995,104.136383,105.681831,103.615715,117.466957,138.045471,155.805801,169.070267,178.359528,175.095062,158.194229,133.219025,111.227287,99.904976,97.690102,94.409103,66.152908,49.334732,64.698364,81.615730,60.533077,27.615721,9.924810,8.582664,14.319849,6.830593,9.895056,9.832245,4.359512,1.662813,0.495043,0.252068,0.105785,0.257026,0.092562,0.627273,1.006612,3.300000,5.119009,8.782645,3.395042,9.942976,4.116529 -602027.355000,4612865.550000,6426,2605,150.552917,181.594238,155.933075,144.065308,127.321503,112.338028,112.114891,109.304970,108.561165,112.552902,109.453728,122.181000,141.065308,160.817368,172.139694,182.643814,179.280182,161.428940,137.784317,115.437202,104.321503,102.726456,97.718193,69.759514,53.015720,69.288445,84.594223,62.313240,28.164482,11.221506,8.883491,12.728114,8.508279,7.520675,8.909933,5.274390,0.649588,0.280992,0.395043,0.000000,0.066117,0.133059,0.000000,0.387603,0.000000,1.133884,6.781819,1.657852,1.135537,8.165290 -602037.155000,4612865.550000,6475,2605,157.627274,182.123138,158.057037,147.214066,129.304977,114.701668,115.057037,111.957863,112.776047,116.131416,111.982658,123.668610,141.792587,161.189255,174.139679,183.999176,180.767776,163.222321,139.090103,119.751251,106.585960,104.519844,98.718208,71.470276,55.106636,72.048782,86.040512,61.495064,28.453737,11.381837,8.974401,12.606627,6.352907,6.397533,8.017370,4.788441,1.671077,0.102480,0.255373,0.058678,0.274381,0.374382,0.861157,0.000000,3.634711,4.598348,4.536364,0.000000,1.133058,4.247934 -602049.555000,4612865.550000,6537,2605,186.845444,199.142960,167.886765,156.985947,137.886780,121.448776,121.258690,119.795883,119.506622,124.663651,118.870262,131.845474,148.680176,168.738007,182.457016,192.052063,187.861969,170.266937,146.911575,124.655388,113.159515,109.589272,106.027290,76.795883,60.655392,77.845467,90.804146,66.151260,30.870266,13.957870,9.638863,13.250430,8.839687,8.640512,10.022328,5.304967,1.689260,0.251240,0.497522,0.160331,0.023967,0.324794,0.000000,0.000000,0.000000,3.307438,5.447108,1.047108,0.000000,0.000000 -602066.155000,4612865.550000,6620,2605,125.459518,156.860321,157.281815,143.314880,128.496704,118.934723,116.901665,115.686790,114.612411,116.207451,116.496704,127.612411,147.141312,163.612396,176.827271,186.033875,182.868591,168.083466,143.372726,120.695053,109.918198,106.562820,101.736374,75.843811,58.100018,73.777702,90.414062,66.653740,31.554567,11.128942,9.248779,7.934723,6.816544,8.361171,8.185963,3.533065,1.145457,0.304960,0.258679,0.057851,0.014050,0.267769,0.000000,0.000000,0.000000,2.162810,0.852893,0.914876,0.000000,0.000000 -602073.755000,4612865.550000,6658,2605,105.292572,156.090912,156.074387,144.173569,128.603317,115.644638,113.454552,112.727280,112.958687,114.074387,114.553726,126.694221,146.479355,164.504135,177.933884,186.272720,183.107437,168.256195,142.082657,119.685966,107.801659,104.826454,101.090919,73.603325,56.652912,74.818192,92.239677,69.000015,33.123985,11.537209,9.190102,10.419849,10.363651,12.518198,10.985139,8.914061,2.912402,1.301657,0.292563,0.913225,0.051240,0.061157,0.330579,0.191736,2.722315,3.347108,1.293389,0.721488,2.018182,0.000000 -602078.555000,4612865.550000,6682,2605,118.195053,153.219849,154.822311,143.938858,131.984314,121.926460,118.372742,114.433899,114.491753,115.152908,115.268608,127.359520,146.442169,163.764481,176.194229,186.062820,181.831421,169.723160,145.657043,123.367783,111.401665,108.276878,103.954559,77.757034,60.368614,78.219025,95.219025,69.896713,34.136379,13.798363,9.450432,10.903321,9.279352,12.587618,13.558693,9.638853,3.554552,3.340501,2.265293,1.478514,0.411571,0.848761,0.661984,0.685124,1.520661,1.315703,0.371901,1.358678,3.609918,5.628099 -602082.955000,4612865.550000,6704,2605,163.628937,164.051254,153.200012,142.530609,128.266129,117.109108,113.423157,112.348778,110.960350,112.042992,112.051254,123.489273,142.679367,160.704147,173.456207,182.489273,179.861160,165.919022,141.034729,120.704147,109.117371,105.067780,100.563652,73.778534,56.532249,74.505806,92.076050,70.282661,32.580185,13.723159,9.142169,10.637205,9.128940,10.606625,13.134727,7.949597,2.912402,1.567771,0.789258,0.797522,0.753721,0.257025,1.177688,1.445456,5.195869,2.580992,3.963637,2.446281,3.123141,0.000000 -602087.555000,4612865.550000,6727,2605,142.227280,161.228088,157.657852,140.707428,122.517357,110.624817,107.748779,105.732254,104.765312,106.930603,107.186798,119.476044,138.484299,154.790085,167.723969,176.153732,174.046295,161.120651,137.864456,116.120674,104.442993,99.814896,96.600021,69.556213,53.646301,72.021507,89.120682,67.095886,32.638863,10.771091,8.781838,7.613236,8.240509,9.112410,11.728113,9.025631,2.913227,1.144631,1.204135,1.104134,0.152893,0.797522,0.542976,0.861984,3.517356,4.904133,4.459505,8.333059,1.720661,0.000000 -602092.755000,4612865.550000,6753,2605,168.519028,170.163666,157.791748,144.742157,127.494232,118.047951,114.593391,113.304138,111.477692,113.659508,113.634727,123.419846,143.717361,159.072739,173.866135,182.502487,179.733887,166.353729,141.973557,120.312408,109.081001,106.279343,101.254555,74.072746,56.948784,73.981842,91.527283,70.552086,33.089275,12.151258,9.204977,6.037200,7.133071,9.238031,8.969436,4.868603,0.983474,0.351241,0.619836,0.097521,0.059504,0.506613,0.390083,0.337190,5.123968,2.060331,2.538843,1.466116,7.984298,1.971074 -602099.155000,4612865.550000,6785,2605,189.210754,180.607452,160.673569,148.202499,132.640518,120.301666,116.747948,114.607452,114.252083,115.045471,115.508278,126.293404,144.847122,161.756210,174.491745,182.400848,180.541336,167.442169,144.574402,122.086792,111.119850,107.095055,101.590927,75.838860,58.425644,75.458694,92.549606,69.194229,33.875225,13.411588,9.235557,10.534724,8.228939,7.338856,8.913239,5.335545,0.928101,0.590084,0.435539,0.138844,0.142150,0.067769,0.000000,0.000000,6.427273,5.237191,3.371901,0.000000,0.000000,3.705785 -602107.155000,4612865.550000,6825,2605,163.458694,167.284317,162.639679,146.614883,132.664474,122.218185,118.325623,115.606613,116.780174,117.995041,117.829758,128.110748,146.375214,162.961990,175.664490,184.466141,181.887619,169.879364,145.333893,123.780167,112.995056,107.218193,104.309105,76.044647,59.069447,77.028122,92.292572,69.259521,32.482662,11.842993,9.482664,8.032243,6.952907,5.144637,7.727286,3.897527,0.837191,0.147934,0.350414,0.000000,0.242976,0.150414,0.000000,0.000000,1.149587,0.000000,2.652893,0.000000,7.307439,0.000000 -602118.555000,4612865.550000,6882,2605,148.292572,164.565308,160.309113,148.449585,134.945465,123.714058,120.557030,119.540497,117.895874,120.209923,119.110748,129.573563,147.846283,165.011597,177.292587,186.457870,185.614899,174.127289,147.829758,126.094215,115.680992,111.796715,105.945473,79.209930,62.292580,78.119019,94.218193,69.457863,31.094234,12.183489,9.631423,5.108274,5.076048,7.251254,6.436376,3.066123,0.333058,0.283472,0.000000,0.000000,0.000000,0.000000,0.271075,0.000000,1.271901,0.000000,1.062810,0.000000,0.000000,0.000000 -602133.555000,4612865.550000,6957,2605,137.783478,164.140503,156.570251,147.739670,133.326462,123.574394,120.800018,118.808281,117.114067,118.452904,118.171913,127.890923,145.122314,161.080994,173.857864,182.866119,181.543808,169.609924,146.105789,125.461174,114.857864,110.642990,105.800018,80.188446,62.783489,78.057045,94.065308,70.933075,31.982664,13.388448,9.618200,3.910753,6.748773,6.658689,5.206622,2.109922,0.657853,0.173554,0.106612,0.190083,0.306612,0.023967,0.000000,0.000000,4.123968,0.000000,1.074380,0.000000,0.000000,2.018182 -602154.955000,4612865.550000,7064,2605,161.895889,178.449585,166.499191,157.466141,141.548782,127.284317,125.565308,124.482666,122.631424,125.284317,124.466133,134.647949,152.028122,170.771912,183.862808,191.854553,190.854553,177.689255,153.135559,131.895889,119.284317,113.747124,109.945473,82.540512,64.267792,79.598366,93.978531,69.284317,31.780184,12.180183,9.995060,4.484306,7.852907,6.669434,7.132243,2.593394,0.572729,0.062811,0.326447,0.142976,0.000000,0.000000,0.000000,0.001653,1.314050,3.539670,0.000000,1.946281,0.000000,0.000000 -602168.355000,4612865.550000,7131,2605,155.491730,176.669418,171.661163,155.371902,138.495865,126.322327,125.520676,121.396713,119.247940,119.231415,118.958687,130.190094,151.008270,168.851242,179.776855,190.454544,188.388428,173.181824,149.743805,127.975220,115.132240,112.727280,107.909096,80.132248,62.809940,79.404976,99.016548,72.595055,33.743820,12.997540,9.809937,11.422331,8.566131,7.406624,7.146295,3.608271,1.434713,0.042975,0.204959,0.086777,0.000000,0.263637,0.000000,0.000000,4.283472,0.000000,2.050414,2.114050,0.000000,1.980992 -602177.955000,4612865.550000,7179,2605,127.623154,180.017365,171.637207,156.852081,139.719849,125.686783,126.009094,120.711578,119.860336,119.934715,119.281822,131.571075,152.025635,169.587616,181.033890,191.199188,189.405792,175.190918,150.571091,128.397522,118.009094,112.885139,108.463646,79.562828,64.166130,81.538040,99.852081,73.182663,34.777702,11.993406,9.860351,11.500016,5.932246,8.593403,7.460345,5.043810,0.628927,0.291736,0.000000,0.190910,0.164463,0.188430,0.000000,0.000000,1.477686,2.809091,1.142149,0.000000,0.000000,0.000000 -602187.755000,4612865.550000,7228,2605,134.325638,185.515686,176.862808,163.325623,146.804977,132.747116,131.995056,128.424805,126.259514,127.457863,124.763649,138.019852,156.490921,174.102478,185.598328,196.961975,193.895859,178.143799,154.575226,134.963654,122.823151,119.525635,114.509102,86.335548,69.955391,84.294235,104.170258,76.451263,36.451260,14.170266,10.409936,13.740513,7.497535,7.773569,10.803323,4.761165,1.642152,1.166117,0.743803,0.952893,0.159505,0.098348,0.000000,0.866943,0.000000,0.000000,0.838017,1.090083,0.000000,0.000000 -602193.755000,4612865.550000,7258,2605,118.012413,179.053741,167.590927,158.921509,140.995880,125.855385,126.119850,122.524811,121.161171,122.070267,119.491753,131.367783,150.880188,168.243820,180.805801,191.764481,189.268616,174.376053,149.566132,129.070267,118.045471,113.904976,108.227287,81.648773,65.359528,81.334724,101.169441,76.359520,35.037209,15.236382,9.838862,7.985961,9.022329,7.570261,8.424806,3.750420,0.371902,0.261984,0.102480,0.137191,0.000000,0.041323,0.176034,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.555000,4612865.550000,7277,2605,114.987617,166.797531,164.946304,154.946304,138.243820,124.847130,122.971100,120.524818,117.301674,120.078537,117.731430,129.227295,146.152908,165.657043,178.227295,188.706635,185.367783,169.623978,147.169434,125.739693,113.128120,109.119858,105.227295,77.781013,61.756214,79.855392,98.954567,73.533081,32.442169,10.917373,9.566134,7.314060,6.502492,4.494224,6.619019,2.230583,0.737192,0.366116,0.100827,0.301654,0.000000,0.003306,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.955000,4612865.550000,7304,2605,94.762001,159.704147,162.613235,155.604965,138.927277,123.795059,122.671089,119.084312,117.100845,118.596710,116.745476,128.009933,145.654556,163.976883,176.150421,186.241333,183.588440,168.960342,145.472733,124.001663,112.191750,108.100845,102.563652,77.935555,62.125641,79.100845,99.770264,75.861176,33.858696,12.951257,9.323986,4.976868,7.196709,8.646295,8.861995,4.617362,1.148762,0.408265,0.740497,0.272728,0.344629,0.100827,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.555000,4612865.550000,7347,2605,119.290924,165.414902,162.662842,155.191757,138.952087,126.133904,124.208282,119.811584,117.712418,119.737206,117.580185,128.224808,146.588455,164.340515,176.249619,186.241348,185.307465,169.885971,146.728958,125.662827,113.621506,109.431419,104.836380,79.456215,63.431423,82.067787,100.976875,76.398361,36.588448,14.607456,9.530599,8.617367,8.793405,9.291750,9.000841,4.117361,0.838019,0.033058,0.128100,0.297521,0.000000,0.070248,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602220.355000,4612865.550000,7391,2605,105.365311,165.043823,168.275223,155.804153,142.423996,127.828941,127.506622,124.258690,123.027290,125.242165,122.225632,133.242157,151.605804,168.366135,181.638870,190.961182,186.961182,173.870270,149.671921,129.043823,116.581009,112.052078,107.118202,79.390930,63.713242,83.581017,100.448784,73.952911,35.771091,15.009935,9.738036,8.372738,7.508280,8.920674,7.047120,3.909925,0.743803,0.293390,0.352067,0.169422,0.391736,0.567769,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.955000,4612865.550000,7429,2605,81.985130,154.129761,156.865295,149.716537,134.237198,125.352905,119.336372,116.956207,114.278519,115.071907,114.427284,124.815712,144.005798,160.807449,171.700012,182.129761,179.311584,166.964478,142.344635,122.228935,110.567780,105.865295,100.609100,76.476868,60.394238,78.022324,96.683479,73.104973,32.419029,13.056216,9.146299,4.558686,6.528112,7.883485,7.122326,2.168600,0.492564,0.101653,0.000000,0.038843,0.038017,0.000000,0.033884,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602237.555000,4612865.550000,7477,2605,88.403313,155.866119,158.081009,149.899200,135.072739,124.469429,121.097527,118.337196,115.800003,116.684303,116.138847,128.180176,144.890930,162.667770,174.469421,182.287613,181.188431,167.948761,143.519012,123.692566,112.114059,108.031410,103.072731,78.568604,61.890926,79.138855,94.725624,70.262825,33.585148,12.013239,9.370267,4.616537,7.528940,7.113236,6.138028,3.495049,0.780167,0.363638,0.182645,0.178513,0.000000,0.061157,0.055372,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.355000,4612865.550000,7491,2605,89.296707,152.189270,161.503326,150.395889,136.395889,125.304962,121.371086,118.585960,117.032242,117.685135,117.652077,128.701660,144.875229,161.445480,173.891754,182.470261,180.883484,167.214066,142.850433,122.974388,112.660339,107.090096,103.172737,77.693398,62.007458,78.800835,94.445465,69.883492,33.966137,12.776051,9.379358,3.844636,7.001667,5.000012,6.179348,2.400832,0.329753,0.014050,0.316529,0.033885,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602244.355000,4612865.550000,7511,2605,86.090103,147.718201,160.875229,150.263657,136.189270,124.966125,122.156212,119.090096,116.519844,116.784309,117.949600,128.933075,146.321503,162.982666,173.966141,183.114899,181.304977,166.709930,144.387619,122.668610,111.883484,108.131416,103.809105,79.156212,62.734730,79.081833,94.809105,71.858696,33.924812,14.103324,9.437209,4.320672,8.586793,7.737203,6.428110,2.775214,0.445456,0.201653,0.100827,0.157025,0.000000,0.000000,0.110744,0.213223,0.000000,0.000000,0.000000,0.977686,0.000000,0.000000 -602250.755000,4612865.550000,7543,2605,94.061996,148.268631,158.301682,147.690094,133.731415,123.086784,118.946297,115.946297,115.086792,115.599190,115.971092,126.417366,143.954559,160.698380,171.871918,180.442169,178.938034,166.028946,141.822327,120.557861,109.979355,106.012405,101.954552,76.756218,60.913239,77.128113,93.723152,68.293404,32.541344,13.061175,9.268615,4.132239,7.627287,7.550428,6.910756,2.729758,0.681821,0.334712,0.057851,0.288430,0.095041,0.000000,0.495042,0.339670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.555000,4612865.550000,7572,2605,87.627281,146.850418,158.536362,150.817352,134.809097,123.858681,121.271904,117.784302,115.759506,115.999176,115.552895,126.792564,144.842148,161.999176,173.238846,181.387604,178.866943,165.371078,142.685120,121.445457,111.015709,106.329758,100.627274,76.453728,61.635559,76.478523,91.924805,67.346298,32.809109,10.302495,9.147952,4.400835,6.242164,8.274394,5.488441,2.570253,0.432233,0.314050,0.101653,0.071075,0.000000,0.000000,0.406612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602259.555000,4612865.550000,7587,2605,92.132248,148.826447,159.074387,148.991730,135.727280,124.909103,121.404976,117.735550,116.694229,115.413239,116.545471,126.677704,145.429749,161.305786,172.181824,180.528931,178.305786,165.280991,141.909088,121.900841,110.892578,106.322327,101.909103,77.239685,62.305805,77.404976,93.123985,68.206627,31.743822,12.754563,9.264482,5.475216,8.739686,7.257038,7.038027,2.613229,0.130579,0.316529,0.090909,0.280167,0.000000,0.053719,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602263.155000,4612865.550000,7605,2605,91.962830,142.789276,160.136383,149.756210,133.979355,124.252083,120.309937,117.301666,114.731422,114.194229,114.276878,125.119850,142.309937,158.070267,169.640518,178.367783,176.111588,163.450424,140.136383,120.888443,109.946297,105.433899,100.590927,74.938034,61.103325,77.863655,90.194229,66.235558,31.423986,11.775223,9.144648,5.294225,6.360345,7.111583,6.343812,2.435542,0.625622,0.229753,0.266116,0.037190,0.030579,0.086777,0.000000,0.418182,0.000000,0.000000,0.000000,1.052893,1.252066,0.000000 -602268.755000,4612865.550000,7633,2605,77.367783,146.739670,161.119827,150.681824,133.450424,126.161163,120.128105,116.483482,115.590919,114.285133,115.028931,125.483482,141.367767,157.673553,169.400833,177.690079,175.425613,163.747940,140.623962,121.442154,109.690102,105.756218,100.500015,75.152908,60.144646,76.111588,91.814064,67.227287,30.995886,12.626464,9.136384,5.689267,7.779354,7.139682,6.937203,4.343810,0.573556,0.064463,0.152066,0.126447,0.188430,0.061157,0.114050,0.004959,0.000000,0.000000,0.000000,0.000000,1.945455,0.000000 -602274.755000,4612865.550000,7663,2605,69.801674,146.677689,154.826447,144.917358,129.157043,119.314064,114.297539,111.123985,108.925636,108.611588,108.429771,119.338860,138.181824,153.603302,164.768600,173.074387,172.082642,158.231400,136.975204,116.991753,105.892578,102.231422,96.272743,70.520683,56.512417,73.438034,90.115715,66.413246,30.429770,11.428117,8.752086,3.464470,5.782660,7.288444,6.415712,3.114881,0.219837,0.156199,0.131405,0.033884,0.000000,0.000000,0.141322,0.237191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602278.955000,4612865.550000,7684,2605,73.760345,144.644638,153.743835,143.033081,129.462830,118.512413,113.826462,110.363655,108.033073,105.652908,106.487617,117.892578,136.049606,151.157059,161.363663,170.338882,170.008301,156.809952,135.380188,116.322327,103.347122,100.330597,92.454567,67.909103,53.132252,72.438042,90.388451,68.495895,31.521505,11.482661,8.404978,4.137197,6.901668,5.445467,6.261993,2.055377,0.292563,0.333059,0.041322,0.000000,0.095868,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602284.955000,4612865.550000,7714,2605,65.638031,139.985138,154.059525,141.538849,126.183479,117.084312,112.183495,106.976883,104.299202,103.671097,102.596718,114.067795,132.406616,148.307449,159.968597,169.290924,168.447937,155.902512,133.861160,113.687622,101.613251,97.175224,90.109108,64.737206,51.828117,71.580185,92.224808,69.166962,31.142168,10.514893,8.191754,5.146290,6.253733,5.250424,5.344637,1.590912,0.859506,0.000000,0.005785,0.017356,0.200000,0.053719,0.274381,0.019835,0.000000,0.000000,1.876860,0.000000,0.000000,0.000000 -602288.155000,4612865.550000,7730,2605,81.312416,147.191757,154.778534,142.976883,127.142166,116.786797,112.241341,108.373573,105.315720,104.059525,103.753738,114.836380,132.861176,148.208298,160.249619,170.728958,168.381851,154.208298,135.307449,114.762001,102.811584,97.076050,88.654556,65.778534,52.109108,72.018196,94.009933,72.348778,33.084316,12.466133,8.059524,4.017362,6.885965,6.745468,7.353730,2.090088,0.380993,0.053719,0.116529,0.000000,0.042976,0.000000,0.347108,0.422315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602291.355000,4612865.550000,7746,2605,68.609940,140.733887,150.229752,143.271088,127.461174,114.246292,110.882660,107.304146,104.304146,103.039680,102.229767,113.932243,131.461166,146.361984,158.320663,167.229752,166.114059,152.890915,133.246292,113.899185,101.221504,93.775223,87.890923,63.428123,50.642998,70.833084,92.089272,70.857872,31.345472,9.823986,7.990102,4.410751,5.633070,4.561169,5.703315,2.434716,0.438018,0.009918,0.000000,0.016529,0.016529,0.000000,0.168595,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602296.555000,4612865.550000,7772,2605,81.250427,137.820663,153.415726,143.514893,129.010757,117.242157,112.647118,108.721497,105.407448,104.961166,103.572731,115.225624,133.250427,148.002502,158.903336,168.490112,167.043823,153.209106,132.861984,114.275215,102.300018,96.779350,90.209106,65.704971,52.258694,70.944641,91.721504,69.696709,30.919853,10.528942,8.200846,5.074389,5.628112,5.525633,5.685134,1.808269,0.475209,0.103307,0.085124,0.047934,0.119835,0.000000,0.160331,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602302.155000,4612865.550000,7800,2605,77.519859,147.090088,157.197525,146.420670,131.718201,119.916542,115.734718,111.214058,109.106621,107.982658,107.908279,117.875221,136.090088,151.767776,163.131409,172.577682,170.470245,156.660339,136.073563,115.825630,105.123154,99.751251,94.081833,69.263664,55.412418,73.404152,92.280174,69.304977,31.569439,11.413239,8.552912,6.334720,6.542162,5.931419,6.931416,2.505791,0.431407,0.231405,0.046281,0.043802,0.129752,0.000000,0.275207,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602305.755000,4612865.550000,7818,2605,90.852089,154.405792,160.695084,148.769440,132.810760,121.471916,117.513237,114.513229,111.000832,110.777687,110.240501,121.174393,139.290100,154.133072,164.868637,173.736374,172.785980,158.562836,137.199188,117.703316,106.182648,103.372734,96.009094,71.405807,57.562828,73.678535,91.637199,68.942986,31.852085,12.325637,8.728118,5.990093,7.319022,8.745468,8.438028,3.605793,0.664465,0.028926,0.082645,0.119836,0.027273,0.000000,0.366943,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602309.555000,4612865.550000,7837,2605,84.906639,147.328110,161.559509,147.823975,131.551254,120.319847,116.228935,113.055382,110.427284,110.212410,108.146294,120.129761,137.625626,153.237198,165.055374,173.600845,170.642151,159.038849,137.551254,117.724800,105.212418,100.757866,95.336380,70.146309,56.005806,72.212418,92.179359,68.187630,32.096710,13.475223,8.666961,5.639679,6.556212,7.523981,5.886787,3.503312,1.428102,0.107438,0.078513,0.109918,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602314.955000,4612865.550000,7864,2605,83.228127,144.649612,156.831436,146.195068,130.839676,118.657867,114.566956,110.054558,109.252907,108.195053,106.732246,117.252907,136.343811,150.872757,162.261185,171.930603,170.013245,156.971924,134.509109,115.120674,103.600014,99.905800,92.872742,68.252914,53.781834,70.980186,90.806625,68.426468,31.312416,12.277703,8.442995,4.929760,6.295055,6.966129,6.469432,2.614056,0.523968,0.010744,0.000000,0.136364,0.000000,0.176034,0.180992,0.316529,2.319009,0.000000,0.000000,0.000000,0.000000,0.000000 -602321.755000,4612865.550000,7898,2605,80.885147,153.604141,159.695053,146.364471,131.967789,117.769432,116.166130,112.637199,108.587616,108.405800,107.538033,118.455383,136.703323,152.306625,163.405792,172.273560,170.620667,157.240509,135.695053,115.587616,104.306625,100.091751,93.100014,68.711594,55.372749,72.587624,91.529762,68.265312,31.637209,11.682662,8.463656,6.089267,7.291750,7.259518,6.222324,3.038024,0.290911,0.219009,0.003306,0.044628,0.060331,0.000000,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602327.955000,4612865.550000,7929,2605,82.321510,149.668610,158.371094,145.214066,129.164474,118.933067,117.437202,112.090096,109.693398,109.709930,108.990921,121.007446,138.081833,154.685150,166.445480,173.949600,172.147949,158.040512,135.916534,116.577698,104.825630,101.338028,95.081833,69.742996,55.552914,74.271919,89.354553,67.470268,29.982664,10.975224,8.643821,6.686788,7.697536,7.238856,5.674391,2.529757,0.919011,0.627274,0.071075,0.020661,0.133058,0.000000,0.247108,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602331.955000,4612865.550000,7949,2605,80.765305,152.872742,154.352081,146.211578,129.608276,117.343811,114.914062,111.773567,109.418198,109.153732,107.310760,120.145470,137.881012,154.723984,165.029770,175.889267,172.484314,157.062820,135.451248,115.046295,103.847946,100.302490,94.418198,68.558701,54.757046,69.971924,90.649597,67.228119,28.633076,10.518200,8.583490,5.446289,6.133072,5.342162,5.345464,1.476862,0.107439,0.087603,0.118182,0.138017,0.000000,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602336.155000,4612865.550000,7970,2605,87.070274,152.195053,158.500839,147.162003,131.104156,118.963669,115.922340,112.236382,109.847954,109.732262,109.013245,119.798378,138.649597,157.087616,167.707458,177.467789,173.947113,158.872742,137.575226,116.368622,104.823158,100.674400,94.600021,68.790115,54.409939,71.988457,92.153748,67.699196,30.604153,11.419026,8.600019,6.814885,7.221501,5.672739,6.227283,1.609095,0.215704,0.339670,0.139670,0.056199,0.009091,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.055372 -602338.955000,4612865.550000,7984,2605,83.322327,150.900848,158.446304,144.330597,129.537186,118.570251,115.611572,111.628105,110.157036,110.239677,108.586784,119.570251,139.305801,156.057861,167.297531,177.090927,173.950424,158.487625,135.669418,116.016525,103.834717,100.760338,94.636375,69.900841,54.892582,71.619850,90.859512,67.504150,32.636383,11.382662,8.603325,6.743811,7.828939,8.058691,6.919847,1.932235,0.516531,0.000000,0.083471,0.056199,0.312397,0.000000,0.052066,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602342.755000,4612865.550000,8003,2605,79.362831,158.412415,156.635559,147.792587,131.850418,118.304970,115.800835,112.470261,110.395882,109.147942,107.585960,119.304970,138.726471,155.172745,166.462006,176.809113,173.420685,158.371094,136.379364,115.668610,104.552902,99.354553,93.627281,68.858696,54.387623,71.511589,92.048775,68.635559,31.934731,11.013240,8.511590,6.995053,5.419847,6.496708,6.990921,2.204965,0.371902,0.475208,0.249587,0.042976,0.013223,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602346.155000,4612865.550000,8020,2605,86.522324,156.695877,159.332245,146.844635,130.704132,116.480995,115.869423,111.365288,109.745453,110.811569,108.109093,119.960342,139.464478,155.621490,168.522324,179.514053,173.803314,159.042984,136.580170,115.885956,103.935547,100.704132,94.654556,68.753738,55.051258,72.447952,93.191742,68.555382,31.106630,12.262825,8.604978,7.631416,6.457038,8.171088,6.989267,2.282650,0.828929,0.096695,0.082645,0.086777,0.027273,0.000000,0.179339,0.000000,0.000000,0.000000,0.000000,1.220661,0.000000,0.000000 -602350.755000,4612865.550000,8043,2605,94.720673,155.943817,159.307449,146.398361,130.985138,117.497528,115.547119,111.844635,109.307449,109.919022,107.166954,120.398354,138.117371,155.943817,167.695877,178.357040,173.993393,159.026459,136.869431,116.960342,104.571907,101.563644,94.745461,68.919022,54.662830,73.315712,91.299187,67.505806,30.434731,12.677703,8.613242,9.776046,6.976875,6.906626,7.015714,3.106617,0.750415,0.033884,0.045455,0.045455,0.113223,0.000000,0.391736,0.110744,2.261984,0.000000,0.000000,0.000000,0.000000,0.000000 -602355.155000,4612865.550000,8065,2605,88.999191,161.866959,157.189270,147.660355,129.957870,117.941345,116.114899,112.966133,109.883492,111.908287,108.858696,120.619026,138.660355,156.172745,168.825638,178.792587,174.329773,158.106628,136.792587,115.933075,104.842171,100.685143,95.536385,70.181007,53.511589,70.445465,91.271919,67.329773,29.668617,11.648777,8.685143,6.981002,5.728112,6.295881,7.523152,2.270252,0.395043,0.267770,0.094215,0.051240,0.297521,0.000000,0.000000,0.457025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602361.355000,4612865.550000,8096,2605,98.433907,164.962845,160.549622,152.458710,132.838852,118.739685,117.376053,114.475220,113.252083,113.772743,111.012421,123.524818,141.781021,160.442184,171.995895,182.119873,178.177719,161.384323,139.169449,119.433899,106.772751,103.524818,98.590935,71.326462,56.309933,75.334732,93.392586,71.202507,32.822334,13.094234,8.962828,9.992574,6.921502,7.291749,8.871913,3.114056,0.687606,0.145455,0.010744,0.100827,0.028099,0.066116,0.144628,0.458678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602364.755000,4612865.550000,8113,2605,89.398376,159.728958,156.158707,149.456223,130.960342,116.241341,114.464478,110.720680,108.662819,112.076050,107.175217,119.671089,137.687622,155.828125,167.960358,178.720688,174.249619,156.489288,135.695892,114.604973,103.315712,99.745461,94.745461,68.877708,52.117378,70.935562,89.728943,66.910767,30.464481,9.742167,8.613242,9.793401,6.087615,6.727287,6.937201,2.504964,0.861986,0.104133,0.000000,0.000000,0.062810,0.000000,0.066942,0.269422,0.000000,1.507438,0.000000,0.000000,0.000000,0.000000 -602367.755000,4612865.550000,8128,2605,102.935562,162.604965,157.357040,148.555374,128.828125,115.481010,113.051254,110.803322,108.092583,109.993408,105.728943,118.158707,135.133911,154.613235,165.084320,176.481003,171.472733,154.216537,133.464493,112.753738,101.728935,98.266129,93.109108,65.985146,52.208286,71.538872,90.175224,64.067787,29.021505,10.720676,8.464481,8.196705,7.044641,6.057039,6.095878,2.324797,0.537192,0.095042,0.080992,0.120662,0.065290,0.000000,0.207438,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602371.955000,4612865.550000,8149,2605,103.433083,163.631424,160.887619,149.714066,130.623169,115.681023,115.201683,112.862839,110.631432,114.424820,108.300858,120.846306,138.788467,156.945480,170.887619,179.995056,175.623154,157.168610,136.366974,116.416557,104.433083,101.209946,94.854568,68.201675,53.829773,74.185135,92.234734,65.623161,31.824814,11.778530,8.623159,9.826458,7.180180,7.633073,6.816539,3.468601,0.679342,0.086777,0.161984,0.247934,0.178513,0.000000,0.000000,0.423141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602378.555000,4612865.550000,8182,2605,117.487617,164.016541,159.826462,150.049606,130.570267,118.942162,115.553734,113.082664,112.677704,117.049606,111.016548,124.347122,143.834732,163.586792,176.570267,187.983490,182.289276,163.123978,139.504166,119.644646,109.066132,104.595055,100.272743,72.619850,56.752087,77.181839,96.950432,71.479355,34.900841,13.751257,9.115722,12.248775,9.288443,8.291749,7.609928,4.736373,0.535539,0.238844,0.138843,0.075207,0.026446,0.024794,0.315703,0.152893,0.000000,0.000000,0.000000,0.000000,1.187603,0.000000 -602389.355000,4612865.550000,8236,2605,92.957878,137.701675,142.825638,130.933075,116.065308,103.693405,100.619026,96.875229,95.577705,96.585968,96.304977,107.346298,125.949608,144.395889,156.040512,164.974396,162.404144,149.453735,126.081841,106.164482,94.825638,90.387619,84.627289,60.032246,44.866959,63.387619,86.197540,67.933075,28.428946,11.613240,7.693408,4.963645,8.599187,7.223979,7.209929,3.891742,0.718183,0.531406,0.219836,0.448761,0.055372,0.094215,0.162810,0.105785,0.000000,0.000000,0.000000,0.000000,1.668595,0.000000 -602407.355000,4612865.550000,8326,2605,114.901680,135.488449,130.521500,120.182648,104.868607,93.819023,90.670258,87.728111,85.752907,85.992577,86.852081,98.959518,119.033890,137.174393,150.075226,160.496704,156.306625,142.124802,120.752899,100.166130,87.876869,84.281830,78.372742,55.083492,38.174397,57.827293,83.579353,65.504974,29.017372,11.918199,7.124812,5.855383,7.710756,7.638854,8.735548,3.896702,0.253720,0.120662,0.033885,0.247935,0.000000,0.000000,0.000000,0.188430,2.002480,0.000000,0.000000,1.398347,1.642975,0.000000 -602419.755000,4612865.550000,8388,2605,105.794243,125.373573,119.836388,109.745476,94.935555,84.357040,79.836380,76.935555,74.976875,75.472748,75.447952,86.819855,105.158699,121.348785,131.902512,140.695877,138.555374,126.481018,104.018196,86.844643,74.927292,73.522331,69.018196,45.894234,28.976879,49.910763,71.414894,56.125641,23.561174,8.506624,6.274399,8.013234,6.719845,7.475219,9.401667,5.238854,1.866946,0.257026,0.709092,0.770250,0.771076,1.298349,0.584298,1.096695,19.356199,8.923967,6.194215,5.557852,15.542976,8.449587 -601973.155000,4612855.550000,6155,2655,179.165298,150.314072,120.512413,108.215721,94.967789,84.405807,81.249611,80.431427,78.861183,81.795067,79.885979,89.076050,106.547127,123.315727,134.166962,143.100845,142.034729,129.933075,109.148781,88.619850,77.132256,73.958702,70.363663,44.402496,28.639687,46.770267,70.480186,54.744644,22.890100,6.366954,6.396713,11.205799,8.052905,12.330594,18.019022,16.406626,9.015715,5.175215,5.473561,3.814054,5.071905,4.542154,6.466947,6.414882,71.737206,47.901661,23.993393,30.911575,25.614054,37.128925 -601976.555000,4612855.550000,6172,2655,183.770264,159.910751,127.580177,114.976868,98.877693,86.604988,83.034737,79.638039,77.902504,79.720688,79.695892,90.200027,107.431412,125.150421,137.200012,146.629761,144.332245,133.761993,110.828110,91.563660,79.315727,75.249611,71.018211,45.695889,29.481010,49.671097,72.679367,59.100849,26.795059,8.665302,6.456217,11.859519,8.753732,13.213239,17.009935,17.709105,7.887616,4.812404,3.560336,3.161161,1.733887,4.180997,5.333889,4.501657,66.667778,37.841328,26.417360,20.060335,26.988434,22.053720 -601979.755000,4612855.550000,6188,2655,190.138016,163.154556,132.675217,118.650421,102.113235,87.823975,83.377693,80.997528,78.559517,81.071907,79.939682,90.650421,110.162819,128.030594,141.063644,150.005798,148.964478,137.030594,114.890091,93.286789,80.815712,78.005798,73.518188,47.154568,30.741343,51.559521,73.162819,57.551258,25.886795,9.632244,6.683490,11.189271,11.158691,13.101668,17.423159,17.457869,8.769433,4.517364,3.374385,2.523971,1.587606,2.923144,3.802484,3.943806,64.338028,40.104969,34.828934,18.666946,8.669422,16.507439 -601983.155000,4612855.550000,6205,2655,216.508286,174.318192,138.491745,124.285141,107.185966,93.020668,90.235542,86.235542,86.830589,89.409096,87.574387,98.359520,118.276878,135.797531,149.028946,159.995880,158.781006,145.863647,123.202492,100.260345,87.921494,84.500008,78.954559,51.475227,35.452911,55.954567,77.219025,60.607460,28.623987,10.542163,7.177705,13.180181,9.166956,13.300015,13.435554,15.457866,6.547945,3.016535,3.055377,2.895045,1.766118,2.477689,2.244633,3.789260,32.130585,26.994217,17.733887,21.943806,23.767773,10.615704 -601987.555000,4612855.550000,6227,2655,207.323151,178.202499,144.747955,131.863647,114.987610,98.756203,95.855377,94.433891,92.987617,98.433891,97.152901,107.681824,126.111588,145.541336,158.095062,167.814072,166.367783,153.500015,127.863655,107.772736,94.400833,89.293396,85.500008,58.442169,40.081009,59.103325,80.037209,61.020676,27.756218,9.814065,7.772747,9.580179,8.104145,10.986790,13.600016,10.493402,5.574389,3.233890,1.239673,1.585127,1.244630,2.954547,3.084302,3.695870,45.590916,16.549589,9.419010,22.093391,8.923142,17.009092 -601992.355000,4612855.550000,6251,2655,148.119858,157.074402,141.165298,128.272751,111.925636,100.553734,97.165306,95.454559,94.157043,94.140511,93.867783,105.289276,125.512413,143.355392,155.314072,165.454559,164.338852,148.512405,124.272743,103.471092,92.413239,89.636383,83.818199,57.099194,41.140511,57.157043,77.619850,56.942169,25.876051,8.789272,7.619854,11.348776,7.681004,7.884310,10.157038,6.606622,1.561987,1.005787,0.820663,0.962812,0.936365,0.820662,5.023972,2.541324,37.761162,39.152901,16.133060,18.291739,20.247110,16.634712 -601997.755000,4612855.550000,6278,2655,152.587616,165.222336,147.833908,132.106628,115.709938,103.668617,101.809113,98.304977,97.577705,98.404152,98.577705,109.478531,129.379364,147.205811,159.172745,169.222336,167.536377,153.561172,127.850433,106.709938,95.643822,92.462006,88.354568,59.767784,44.569443,60.858692,80.428947,59.139690,27.172747,10.232248,8.032250,11.835553,8.321503,9.314063,10.539683,6.516540,1.680169,1.028101,1.076862,0.302480,0.624795,0.304960,1.470249,1.376860,13.557027,19.450415,8.051241,10.164465,10.001655,9.357852 -602003.955000,4612855.550000,6309,2655,160.281830,165.017365,149.620667,136.339676,119.471916,106.951256,104.835548,102.496704,101.199188,102.075218,101.513237,113.240509,132.331421,149.430588,161.397537,171.265305,169.141342,154.323151,129.414062,108.546295,97.645470,94.777710,89.463654,62.356220,45.190929,61.736385,78.926460,58.124813,27.504980,9.057867,8.133077,11.169436,7.502495,7.691748,9.326459,6.709100,1.501656,0.888431,0.655374,0.245455,0.308267,0.447936,0.565290,0.369422,7.408266,7.355373,8.226447,7.902481,4.101653,5.766116 -602012.155000,4612855.550000,6350,2655,140.260345,177.066956,155.273560,140.744644,125.488441,112.967781,111.686790,108.290092,108.033897,109.695053,107.430588,120.339684,138.794235,156.248779,168.364471,177.984314,176.381012,160.009109,134.876877,114.918198,102.901657,100.347939,95.009102,67.331421,52.438854,67.281830,82.769432,61.033901,28.273573,11.208282,8.637209,12.700016,7.195057,9.628115,9.979353,5.380177,1.138845,0.114876,0.293390,0.209918,0.176034,0.247935,0.326446,1.466943,5.652066,5.442149,6.304959,7.001654,2.255372,2.019008 -602023.355000,4612855.550000,6406,2655,138.948776,178.089279,158.585129,145.899200,128.866119,116.072731,115.155380,112.494225,112.386780,114.246284,111.775215,123.196701,142.213242,159.915710,172.800018,183.064484,179.535553,163.386780,139.114059,118.221497,106.271080,103.849594,98.981827,69.229767,53.609936,69.585144,84.031410,60.667786,27.642994,11.078529,8.998366,11.180180,7.252080,7.722328,8.145468,3.944636,1.080994,0.476034,0.452067,0.095042,0.171075,0.094215,0.000000,0.445455,0.000000,1.116529,2.952066,1.016529,1.306612,0.000000 -602038.355000,4612855.550000,6481,2655,168.990082,194.163635,162.510757,153.089264,132.535553,119.857864,118.428116,116.304146,115.552078,121.295883,115.510757,126.155388,143.725632,162.609924,176.783478,186.618195,182.419846,165.039673,140.890915,120.990097,109.651253,106.171913,101.981834,72.320686,55.659527,74.039680,86.485962,61.841347,28.196712,12.036381,9.271094,12.488445,7.085965,6.810757,7.998359,3.931412,0.840497,0.355373,0.000000,0.044628,0.495042,0.033058,0.761157,0.034711,2.561157,1.128926,0.995868,0.000000,0.000000,0.000000 -602057.155000,4612855.550000,6575,2655,127.725624,155.343811,160.335556,150.162003,132.624802,122.666130,120.021500,118.004974,117.219849,117.806625,118.261169,129.847946,148.327286,164.550430,176.707458,185.095886,183.905792,171.666122,145.434723,123.897537,113.343811,110.104149,104.781830,78.161995,60.228115,76.897545,91.385139,66.269440,30.657873,12.225638,9.525639,6.709104,7.350429,7.136379,7.709932,1.990915,0.681820,0.201654,0.016529,0.162810,0.092562,0.087604,0.000000,0.000000,1.273554,0.000000,0.000000,0.915703,0.000000,0.000000 -602073.755000,4612855.550000,6658,2655,124.197540,160.011566,161.573578,149.763641,136.011597,126.036377,122.499184,121.011581,120.135551,120.788445,120.879349,131.738861,150.085968,166.920685,179.391754,189.028091,186.937195,173.449600,149.647949,127.788445,116.143814,113.036377,106.672737,79.333893,62.061176,79.408287,92.904144,69.317375,31.928946,13.172746,9.697540,7.541337,7.288445,9.155389,7.163650,4.133065,0.298348,0.235537,0.266116,0.153719,0.464463,0.044628,0.000000,0.000000,0.987603,0.000000,0.994215,0.000000,1.130579,0.000000 -602085.355000,4612855.550000,6716,2655,118.195877,158.865311,159.493408,150.328125,135.278519,125.261993,122.427284,119.295052,119.898354,120.030586,120.518188,131.600830,150.129776,166.881851,179.245483,187.493408,185.228958,173.171097,149.584320,127.187614,115.675217,110.790916,106.518188,80.509933,63.328117,77.716545,92.278534,68.782661,29.295061,13.727291,9.683490,6.132245,7.113238,6.647945,6.783483,2.725626,0.968597,0.000000,0.000000,0.000000,0.000000,0.434712,0.267769,0.000000,1.147108,1.183471,0.000000,0.000000,0.000000,0.000000 -602096.555000,4612855.550000,6772,2655,134.821503,163.855392,163.913239,150.161179,136.020676,125.144646,121.880180,121.342995,120.318199,121.045471,121.632248,132.119843,150.318192,167.690094,179.227295,188.764481,186.574402,173.185974,149.640518,128.020676,116.615715,111.665306,107.045471,79.855385,62.392582,78.177704,92.219025,69.417374,30.334730,11.599191,9.731424,5.833070,6.212412,6.845468,5.303317,2.504138,0.166942,0.074380,0.036364,0.043802,0.058678,0.084298,0.000000,0.000000,1.145455,0.000000,1.045455,0.000000,1.128926,0.000000 -602110.155000,4612855.550000,6840,2655,142.263641,172.519852,166.123154,152.693405,138.147949,126.445473,124.015724,121.842171,119.949608,122.619026,121.552910,132.693405,151.610764,167.858704,181.437210,190.139679,188.420685,174.883484,151.602493,129.007462,117.445473,114.255394,109.809113,81.891754,64.230598,81.164482,95.552910,72.536385,33.519852,14.070267,9.982664,8.275222,7.401669,8.704974,8.901667,3.487610,0.664464,0.023141,0.123967,0.171075,0.059504,0.098347,0.345455,0.000000,0.000000,1.038017,2.060331,0.000000,1.095041,1.914050 -602127.955000,4612855.550000,6929,2655,142.514069,176.084305,167.307449,155.968597,139.761993,128.307449,125.026459,124.728935,122.638031,125.687614,125.406624,135.596710,153.976868,171.307449,183.580170,192.390076,190.604950,178.307449,153.142151,131.538849,120.150421,116.414894,111.563644,83.927292,66.100845,80.704147,95.067780,71.621498,33.117378,12.932250,10.142169,4.632243,6.460347,7.540510,6.826458,3.028106,0.438844,0.204959,0.228099,0.000000,0.110744,0.090083,0.000000,0.000000,0.000000,1.214050,1.123967,0.000000,0.000000,2.131405 -602145.755000,4612855.550000,7018,2655,139.647949,178.333878,169.028091,160.259491,145.697525,131.804977,130.019852,129.317368,128.466141,130.780182,130.028107,139.920685,158.011551,175.656189,187.532211,196.342133,195.036346,182.862793,157.300812,135.466125,122.689285,118.862839,114.490936,86.441353,69.102501,82.523994,96.441330,73.160355,32.342167,14.084316,10.408285,4.941334,6.607453,6.118194,6.837204,2.111575,0.823969,0.012397,0.053719,0.007438,0.000000,0.123141,0.408265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.355000,4612855.550000,7081,2655,105.962006,170.576859,167.519012,156.932236,140.469421,128.915710,127.626450,124.824799,123.882652,123.279343,123.576866,135.791763,156.742157,173.031418,186.419846,196.766953,195.642975,180.155380,156.395050,134.246292,122.543808,118.981827,113.163658,85.684319,69.378532,84.229774,103.155396,72.833084,37.246304,13.933075,10.287621,10.072742,7.314891,8.284312,9.895880,4.675214,0.600828,0.123141,0.338017,0.288430,0.290084,0.583472,0.485951,0.010744,2.553719,0.000000,3.042149,0.000000,1.214050,0.000000 -602164.755000,4612855.550000,7113,2655,126.090927,179.336395,172.724823,153.733078,138.344650,125.253738,125.022331,121.972748,120.104973,120.518196,120.129768,133.749603,152.708298,172.237213,183.749619,194.542999,191.724823,176.716553,152.352921,131.171097,118.666962,115.361176,109.336380,81.047127,65.369438,81.683487,98.939690,71.906631,34.584316,12.725636,9.939690,11.053735,6.394231,10.219024,9.004973,4.370256,0.949588,1.135539,0.761158,0.433059,0.536364,0.607439,0.247108,0.404133,0.000000,1.191736,0.000000,0.939670,1.246281,0.000000 -602170.755000,4612855.550000,7143,2655,151.151245,187.453720,171.742981,160.280167,139.916534,126.387619,127.057045,122.908287,121.602501,122.982666,121.635559,134.718201,153.900009,171.594223,184.371078,195.247116,193.511566,177.619019,153.222321,131.280182,119.329773,117.048782,112.445473,81.792580,66.057037,81.900017,100.263657,73.809113,33.809109,13.309934,10.222332,10.533074,8.742164,9.176874,8.274394,5.262819,1.265292,0.288431,0.086777,0.069422,0.000000,0.111570,0.904133,0.056199,0.000000,0.000000,1.066116,1.165289,4.757025,0.000000 -602173.955000,4612855.550000,7159,2655,122.018196,177.538849,170.662827,157.910751,139.208267,124.720680,125.332253,121.563652,119.654564,121.679359,120.662827,132.894226,153.456207,170.447937,183.208267,194.761993,193.233063,177.439682,153.001663,131.414886,119.919029,116.737206,111.836372,81.778534,66.687622,82.770264,100.216545,74.224808,34.596710,13.189275,10.166961,10.022329,8.795057,7.220674,9.661999,5.124801,0.820663,0.210744,0.255373,0.000000,0.000000,0.258678,0.366942,0.690910,7.373554,0.000000,0.000000,3.480992,3.705786,0.000000 -602176.555000,4612855.550000,7172,2655,138.737198,188.067780,174.943817,157.927261,141.274368,126.952087,127.522331,124.084312,122.580185,124.191750,121.778534,134.935562,153.861145,172.062820,184.732239,195.765305,193.219849,176.674393,153.285965,131.872742,119.751251,117.858688,112.718193,83.685143,67.354568,83.701668,101.346291,73.412407,34.982662,13.115722,10.247127,12.377703,9.158693,9.753734,10.979353,6.090092,0.787605,0.701654,0.327274,0.571075,0.123967,0.466117,0.000000,0.033058,0.000000,2.418182,0.000000,5.587604,1.242975,0.000000 -602180.955000,4612855.550000,7194,2655,129.774399,191.542969,174.419006,157.121475,142.377701,129.724808,128.154556,125.204147,123.964478,126.840515,123.377701,136.195877,155.997528,174.419006,186.956192,197.542984,195.997528,179.625610,155.179352,132.716553,122.584312,118.385971,112.245476,83.452087,66.939690,84.509933,101.981010,72.790924,36.476883,12.206629,10.204152,12.199189,7.625633,9.209108,9.819849,5.120669,1.655375,0.113223,0.079339,0.000000,0.229753,0.000000,0.000000,0.003306,0.000000,2.819009,0.000000,0.000000,0.000000,1.942975 -602188.355000,4612855.550000,7231,2655,109.114914,163.081833,167.652084,157.536377,143.602493,127.627296,125.883499,122.445480,119.437218,121.577713,119.023994,130.131439,148.263657,166.164490,178.784317,189.511597,186.057037,172.123154,147.974396,126.825638,116.048790,110.734749,105.263672,78.602509,63.172752,81.313248,100.776062,76.156219,36.123158,13.639687,9.569440,8.700837,8.607453,7.631418,6.628111,4.062817,0.787605,0.446282,0.011570,0.069422,0.206612,0.393389,0.948761,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602199.555000,4612855.550000,7287,2655,91.414070,163.380203,161.578552,153.223175,138.239700,124.049606,120.281006,116.842995,115.512421,115.876053,114.719032,124.520676,143.892593,160.867798,173.669434,183.330597,182.008286,167.504166,144.867798,124.256218,112.438034,109.033073,103.181831,76.991753,62.570263,80.082664,99.958694,76.330597,36.785141,13.488448,9.380185,6.210754,8.014892,7.378524,7.959518,2.700004,0.891737,0.404133,0.098347,0.116529,0.238017,0.131405,0.742976,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.155000,4612855.550000,7345,2655,102.306625,154.827286,158.695053,151.223984,132.571091,121.116539,119.207451,115.711586,114.347946,116.711586,114.860344,125.273567,142.620667,160.166122,173.182663,182.265305,179.810760,166.860336,143.058685,121.455383,110.100014,106.670258,100.463646,76.091751,58.909939,76.381004,93.835548,70.215714,32.448780,11.681008,9.133077,5.608273,5.390096,6.001665,5.581002,1.593391,0.206612,0.274381,0.000000,0.085951,0.000000,0.000000,0.000000,0.210744,0.000000,0.000000,1.824794,0.000000,0.000000,0.000000 -602217.555000,4612855.550000,7377,2655,87.887619,151.201660,159.176880,148.317352,132.408279,120.523972,118.680992,115.226448,113.838020,115.466118,114.408264,125.102486,144.085953,159.887604,171.995056,180.292587,179.350433,165.953735,142.590088,121.267769,109.978516,107.119019,100.763649,76.681000,60.325634,76.259514,95.251251,70.515717,32.912418,12.208282,9.160350,5.504969,7.823981,7.292575,5.954556,1.456202,0.713225,0.294216,0.409092,0.100827,0.198347,0.166942,0.567769,0.633058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602220.355000,4612855.550000,7391,2655,86.321510,147.362808,159.784302,152.395874,135.503326,123.734711,121.420662,117.577690,116.569427,116.123146,116.131409,126.387604,144.519836,161.023972,172.900009,181.387604,179.065292,166.247116,142.784302,123.296700,111.453720,107.701653,103.081818,77.602501,61.057045,78.751259,95.023979,70.081841,32.809109,13.140512,9.371094,6.232244,8.676047,6.562823,6.342987,2.880996,0.804960,0.203306,0.233885,0.123141,0.000000,0.057025,0.000000,0.138017,0.000000,0.000000,0.000000,0.000000,1.942975,0.000000 -602224.155000,4612855.550000,7410,2655,84.854568,151.366959,161.160355,151.854568,136.507462,124.185143,121.019852,118.251259,116.515724,116.672745,116.507454,126.862831,144.226471,161.400024,173.606628,181.011597,179.474396,166.581833,143.185150,121.639687,110.647957,107.391754,101.309113,75.854568,61.970268,77.044647,93.358696,69.251259,31.970264,11.410762,9.209937,5.204967,5.809928,7.161995,5.443812,2.065293,0.483472,0.101653,0.038843,0.120661,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.755000,4612855.550000,7428,2655,87.461174,156.965302,164.006622,154.279343,139.089264,126.667786,123.246292,120.378525,119.163651,119.552078,119.238029,129.692581,147.609924,164.287613,175.188431,184.080994,183.386780,168.560333,145.304138,123.114067,113.857864,110.444641,105.527290,79.386795,64.535553,79.337204,95.403320,70.287621,31.753738,13.862001,9.593407,4.457860,9.030592,7.346294,6.132243,2.683477,1.198349,0.250414,0.102480,0.120662,0.223967,0.057851,0.152893,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602232.955000,4612855.550000,7454,2655,95.320679,147.073563,159.081833,148.602478,132.742981,123.247116,119.784302,117.445457,115.362816,116.139671,114.990913,126.197525,143.842148,160.536377,171.362823,180.040512,178.552917,165.552917,142.371078,121.040497,110.214050,106.247108,101.809097,76.040512,61.354568,76.982666,93.081833,67.478531,31.147953,11.242991,9.255391,4.696702,7.369437,5.295053,4.947945,2.408269,0.030579,0.187604,0.170248,0.166943,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.955000,4612855.550000,7494,2655,87.423981,145.027298,153.762833,146.638870,132.027283,123.275215,118.151253,114.572739,113.159515,113.209106,112.845467,123.853729,140.448776,157.638870,168.043823,175.862000,174.647125,162.771103,140.506638,119.440506,109.167786,104.928116,99.663651,74.977699,60.225643,77.209106,90.019012,69.985954,31.366138,12.014067,9.060349,4.663645,6.426460,6.741335,6.360343,2.097526,0.685126,0.113224,0.094215,0.071901,0.308265,0.133885,0.100000,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602245.355000,4612855.550000,7516,2655,84.305801,139.909103,156.991730,148.082642,133.570267,122.884308,118.289261,115.049591,112.595047,112.578522,111.669426,123.198357,140.214890,155.595047,165.909103,174.966949,172.173569,160.636383,138.702499,119.000008,107.975212,103.983490,98.363655,73.041336,59.256214,77.429771,91.438034,68.809937,29.966963,12.087620,8.942168,5.201662,7.798363,7.390922,5.722324,2.091740,0.766944,0.333885,0.165289,0.117356,0.033058,0.132232,0.131405,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602249.355000,4612855.550000,7536,2655,78.442162,144.962814,159.847122,148.500015,134.995880,121.533073,117.623985,113.929771,112.995880,112.681831,112.590927,121.781006,139.450409,155.648773,165.855392,175.169434,172.995880,160.814072,138.673553,118.557869,107.326462,102.615715,96.500008,72.376053,58.012413,75.177704,88.995872,66.904976,29.933077,12.554562,8.772746,5.666952,7.084311,5.231415,5.662821,1.873557,0.461158,0.584298,0.179339,0.066116,0.000000,0.000000,0.000000,0.259505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602253.955000,4612855.550000,7559,2655,84.390106,147.001678,158.662842,149.728958,133.414902,122.497528,119.224800,114.290924,113.001671,112.332253,112.133904,121.852905,139.373581,155.852921,165.935562,175.117386,171.629776,159.968628,139.662842,119.514069,108.456215,103.414894,97.109108,72.795059,58.960354,76.381836,91.621506,68.563660,32.299191,11.886794,8.828118,5.407447,7.650428,6.742161,5.589267,2.665296,0.858680,0.351240,0.000000,0.000000,0.103306,0.318182,0.156199,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.755000,4612855.550000,7583,2655,81.042992,138.489273,155.332245,148.323975,132.447952,124.266136,118.109108,114.522331,112.042992,111.274399,110.629768,121.224808,139.588440,154.348770,164.902496,172.786789,172.274384,160.266129,138.861160,119.051254,107.142166,103.489273,97.563652,72.646301,58.274403,75.745476,92.191750,69.224808,31.328943,12.853737,8.869441,3.519842,6.615717,7.581832,4.688440,2.871082,0.376034,0.527274,0.262811,0.016529,0.014050,0.128100,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602265.955000,4612855.550000,7619,2655,74.665314,142.194229,154.632248,147.376053,132.169434,120.260338,115.929764,111.095055,108.417374,108.144646,107.987617,118.268600,136.541321,152.293411,163.334732,171.706635,170.095062,157.128113,136.714890,117.359512,105.252083,100.202492,93.227287,69.078529,56.342991,74.814072,93.739685,70.028938,33.425640,12.340512,8.475225,4.354554,6.795056,8.537205,6.616540,2.139675,0.358679,0.248761,0.107438,0.062810,0.128099,0.000000,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602274.555000,4612855.550000,7662,2655,78.812416,141.390915,155.861984,145.382645,128.795883,117.349602,114.184311,108.903328,106.572746,106.118202,104.721512,116.217369,134.126465,149.787613,160.523148,170.994217,168.754562,155.498352,135.399185,115.341339,102.688454,97.928123,90.754570,65.771095,52.738041,71.696716,92.853745,69.870270,33.242168,11.196711,8.250432,5.373562,6.916543,6.811584,6.953730,2.546286,0.594216,0.014877,0.071075,0.328927,0.023141,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602280.555000,4612855.550000,7692,2655,74.365318,133.629761,151.629776,143.687607,127.200020,116.861183,112.439697,107.530602,105.745483,103.654572,103.216553,113.547127,132.629761,147.671097,158.852905,167.910751,166.852905,153.629776,133.109100,113.745476,101.795067,96.398376,88.927299,65.009941,51.472748,71.142174,93.786804,70.373581,32.695889,10.965305,8.084316,3.699181,6.206625,5.161994,6.519846,1.429755,0.210744,0.010744,0.000000,0.000000,0.127273,0.000000,0.172728,0.120661,0.000000,0.000000,0.000000,0.000000,1.714876,0.000000 -602285.755000,4612855.550000,7718,2655,73.732254,145.872742,156.385132,145.980179,131.434723,119.699188,115.707451,111.533905,109.533905,108.393410,108.079361,119.128937,136.624802,151.773560,163.004974,173.682663,170.864471,157.641342,136.707458,118.054558,106.013245,100.897537,94.236374,68.128937,55.542164,74.451263,95.360344,72.550438,32.707458,13.342166,8.566961,7.761168,7.090098,7.518197,7.399186,3.785131,0.405786,0.566117,0.041322,0.219836,0.056199,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.804132,0.000000 -602288.555000,4612855.550000,7732,2655,85.046303,143.682663,152.517365,141.740509,129.550430,117.938858,113.657867,109.327286,106.219849,105.740509,104.616539,115.261169,133.765305,148.690918,160.170258,170.500839,168.765305,154.748779,134.889267,115.409927,102.591751,98.038033,91.327286,66.319031,53.211590,72.492577,92.335548,70.046295,31.938864,11.373571,8.302498,4.381000,5.135551,7.155386,6.166127,2.057857,0.200001,0.054546,0.211571,0.056199,0.115703,0.000000,0.000000,0.126446,0.000000,0.000000,0.000000,3.061157,0.000000,0.000000 -602292.955000,4612855.550000,7754,2655,80.978539,141.185150,156.234726,145.176880,129.590103,116.788452,113.176880,108.986794,106.267792,104.928947,104.614899,115.176880,133.681015,149.656219,160.044647,170.152069,168.507446,154.730591,134.218201,114.490929,101.813240,97.441345,90.763657,66.457863,52.631424,71.656227,92.259521,68.846306,31.185143,10.813238,8.251259,4.638850,6.990097,6.386789,6.211581,2.009923,0.387604,0.366117,0.123141,0.228100,0.113223,0.000000,0.101653,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.955000,4612855.550000,7769,2655,82.176048,142.523163,156.341324,146.729752,130.837204,120.671913,116.217369,112.473572,108.870262,109.283485,107.390923,118.895058,136.638885,152.572739,163.895065,172.481827,170.225632,157.638855,136.060349,116.655388,105.341339,100.795883,93.118195,68.936378,55.390923,73.952904,93.432243,70.275223,33.688454,13.029770,8.465308,6.342985,8.402494,9.061172,8.089270,3.080998,0.496696,0.103306,0.071075,0.108265,0.000000,0.053719,0.152067,0.636364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602299.755000,4612855.550000,7788,2655,98.351257,144.119858,157.334747,146.409103,132.177689,120.623978,116.128105,112.533066,109.979355,109.615715,109.483490,120.334717,137.508286,152.417389,164.640533,172.582672,171.723175,157.904984,136.376053,116.698357,104.731422,100.822327,94.136383,71.028938,55.433903,74.334724,93.235550,67.756218,32.334732,11.675225,8.557872,5.867780,8.276875,8.048775,6.828937,2.042979,0.744630,0.211571,0.219835,0.047934,0.052893,0.104959,0.607439,0.564463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602302.555000,4612855.550000,7802,2655,87.914894,150.576065,155.790939,146.022339,130.708282,119.262001,114.716545,110.981010,108.295059,107.204147,106.262001,117.567787,135.708298,150.848785,162.071930,171.724823,169.757874,157.063660,135.947937,116.038864,104.757866,99.493408,91.972748,67.162827,54.757870,72.609108,92.700020,68.344643,31.708284,11.143817,8.361176,6.669432,6.202492,6.030591,6.185961,2.684304,0.765292,0.087604,0.135538,0.014876,0.027273,0.000000,0.181819,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602305.155000,4612855.550000,7815,2655,78.382660,146.820663,153.977692,144.052078,128.209106,117.440514,113.349602,109.448776,105.977699,104.820679,105.010757,115.415718,134.002487,149.754547,161.845459,169.944641,167.903305,154.622314,133.870270,114.680183,102.828941,98.787621,89.754562,66.704979,53.184319,71.895065,92.275223,67.952904,31.258696,10.361176,8.159523,4.775215,5.280179,6.704146,7.385961,1.843806,0.348761,0.195869,0.037190,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602307.955000,4612855.550000,7829,2655,77.411591,145.403305,155.444641,145.907440,129.155380,117.271088,114.188438,110.155388,108.064476,107.709106,105.750420,117.791748,135.923996,151.461166,161.609924,171.097534,169.841324,155.180176,135.180176,115.667793,103.750420,99.899185,92.254562,67.833084,54.510761,73.105804,91.676048,68.998367,30.626465,12.509109,8.386796,6.853728,7.658692,6.497534,5.551251,3.254553,0.085124,0.138843,0.411571,0.133885,0.020661,0.000000,0.300000,0.308265,0.000000,0.000000,0.000000,1.485124,0.000000,0.000000 -602311.755000,4612855.550000,7848,2655,97.190933,151.025635,157.091751,145.703323,130.686783,118.992577,115.174393,110.719849,107.653732,108.124809,106.083481,117.372742,136.463654,152.182663,161.876877,171.860336,170.033890,155.868607,134.463654,115.116539,102.885139,99.678528,92.463646,67.901672,54.009113,72.166130,90.777702,69.959526,29.429770,11.373570,8.405804,5.167777,6.730593,5.684310,5.923975,3.079346,0.139671,0.200827,0.032232,0.068596,0.088430,0.000000,0.174381,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602317.155000,4612855.550000,7875,2655,86.474388,149.317368,157.201675,144.796707,132.383484,119.036377,116.466125,111.961998,109.978523,109.309105,108.466125,119.523979,138.325638,154.565308,164.160355,174.689270,172.284317,158.152084,136.523987,117.003319,104.937202,100.606621,94.490921,69.391754,56.094234,73.433067,92.986786,70.433075,32.309113,13.141340,8.590102,6.735546,6.157866,6.680177,6.850426,2.404964,0.481820,0.174381,0.000000,0.020661,0.009091,0.000000,0.166116,0.657025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602322.355000,4612855.550000,7901,2655,90.517380,150.666138,159.112427,148.128952,132.426468,119.765312,117.013245,112.666138,110.723991,109.666138,109.773575,120.955391,138.690933,154.823166,165.905807,175.071091,173.426453,159.360367,136.426468,117.649605,105.137215,102.633080,95.236382,69.294235,56.881008,73.021507,93.385147,70.153740,31.153738,11.630596,8.657870,8.880177,6.978528,7.419847,7.849598,2.019839,0.523969,0.000000,0.000000,0.147108,0.152067,0.000000,0.126446,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602325.755000,4612855.550000,7918,2655,88.281830,148.686813,159.381012,150.480194,134.422333,120.868607,118.571091,114.546295,112.827286,111.513229,110.967773,121.554558,140.538025,156.695053,167.926468,178.719864,175.232254,159.504990,138.438858,117.529762,107.587616,101.810760,96.554558,70.860344,55.662010,73.306625,93.182655,68.347946,31.521509,12.286795,8.777705,7.405795,6.957866,6.410757,6.951252,2.290087,0.071075,0.072728,0.457025,0.157852,0.000000,0.059504,0.000000,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602328.955000,4612855.550000,7934,2655,89.404152,150.075241,157.612411,146.744659,131.290100,119.190933,116.323158,112.496712,111.050438,109.893410,108.389275,119.918205,138.199203,155.670273,166.835556,176.819016,175.083481,159.306625,137.257050,116.901672,105.752914,101.711594,94.736382,69.769440,54.662003,72.711594,92.761177,68.496712,31.527288,12.683489,8.612415,5.969430,6.681005,7.627286,7.116539,1.840499,0.585127,0.263637,0.193389,0.031405,0.000000,0.059504,0.300001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602333.955000,4612855.550000,7959,2655,92.251259,157.077682,160.350418,148.251236,132.036377,119.441345,117.457870,114.457870,111.573570,112.201675,109.912415,122.408287,141.193390,157.846283,168.838013,179.110748,175.457855,160.102478,137.366943,118.300842,106.912415,101.813232,98.036377,71.532249,56.995056,73.011589,92.656212,70.201675,33.143822,14.505802,8.912416,8.036376,6.391749,7.714064,6.944639,2.890917,0.307440,0.233886,0.041322,0.089257,0.000000,0.000000,0.189257,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602337.955000,4612855.550000,7979,2655,85.263657,164.222321,159.528107,149.271912,131.552917,119.313225,118.271904,114.197533,112.404144,112.685135,109.858688,121.577690,140.916550,157.437195,169.214050,179.189270,175.974380,159.999176,139.288452,118.189262,106.676872,102.759514,96.081841,69.842171,56.685139,72.908287,94.966133,70.313240,30.875225,13.316547,8.734730,7.980175,8.645470,8.098362,7.908276,2.847939,0.480993,0.419009,0.213223,0.060331,0.030579,0.000000,0.216529,0.142149,0.000000,0.000000,1.136364,0.000000,0.000000,0.000000 -602343.355000,4612855.550000,8006,2655,84.054565,152.781815,156.715698,147.104126,129.732239,117.442993,116.079361,112.476044,110.219849,110.748772,108.707451,121.368614,139.054565,156.806625,167.294235,178.310760,174.277695,157.864456,135.690918,117.244652,104.591751,101.252907,94.872749,68.914070,54.294235,72.566963,91.715721,67.757050,30.203325,11.310761,8.624813,8.631417,5.798360,6.558691,6.253730,1.901657,0.477688,0.080165,0.173554,0.117356,0.000000,0.032232,0.038017,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602349.155000,4612855.550000,8035,2655,91.831429,161.641342,157.517365,147.104141,129.947128,116.930588,114.153732,112.426460,110.195053,110.955383,108.740509,120.285965,138.244644,156.004974,168.732239,179.079346,174.624802,158.319016,136.831421,116.757034,105.079353,101.492577,94.781830,68.310776,53.781837,72.004990,90.608276,67.236382,31.206633,10.600843,8.616548,7.928110,7.020675,6.402493,6.290093,2.411574,0.625621,0.254546,0.159505,0.010744,0.000000,0.000000,0.348761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602355.355000,4612855.550000,8066,2655,99.655396,161.101654,162.531418,151.547943,134.374390,119.481827,117.473557,114.870255,113.870255,115.167778,111.655380,123.233894,143.283493,161.952896,173.506622,184.019012,179.316528,162.688431,139.944656,119.696701,108.423973,105.043816,100.027290,72.415726,56.671921,75.142998,95.547951,71.647133,34.457043,14.166133,9.093407,9.233897,7.591750,9.329765,8.321501,2.469427,0.740497,0.452893,0.136364,0.165290,0.244629,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602360.755000,4612855.550000,8093,2655,98.857040,157.749619,158.361176,147.509949,130.807449,116.609108,113.931419,111.228943,110.228943,112.724808,108.080185,121.096710,139.237213,157.799194,169.931427,180.617386,176.063660,158.782669,135.038864,115.989273,104.609108,100.658699,96.245476,69.071922,53.228943,72.435555,92.807457,67.600845,31.119028,10.333901,8.749606,10.224807,6.292575,6.676874,7.907451,2.767773,0.327274,0.133885,0.123967,0.133885,0.200000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602365.955000,4612855.550000,8119,2655,104.135559,162.226456,160.928925,150.019836,131.077698,119.391747,116.102501,112.325638,111.325638,113.160347,109.978531,120.681007,140.259506,157.747116,171.102478,180.747116,177.433060,158.639679,138.309097,117.664482,105.408287,102.523987,96.854568,70.085976,55.656223,74.747124,92.284317,67.441345,32.375225,12.123986,8.804978,12.905800,8.025633,8.433900,8.099185,2.906616,0.380167,0.168596,0.242976,0.000000,0.000000,0.000000,0.000000,0.333058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602372.555000,4612855.550000,8152,2655,100.408287,162.966141,159.462006,150.718201,130.668625,117.470276,114.081848,112.759529,111.395897,115.751266,109.585976,123.462013,141.304977,161.784317,174.544647,183.660355,178.776047,161.445480,139.131424,117.585976,106.544647,103.247124,98.445473,71.288452,56.519855,74.982666,94.288452,68.437210,32.561176,12.547125,8.949605,11.409931,6.700013,8.741336,7.653732,3.178519,0.862812,0.469423,0.083471,0.028099,0.095868,0.005785,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,1.091736,0.000000 -602381.155000,4612855.550000,8195,2655,92.795891,140.994232,141.861984,133.052078,117.738029,105.490097,102.275230,98.324806,97.052078,97.729767,97.779350,108.547951,127.704971,143.705002,156.076904,165.969437,162.704987,149.754562,127.151253,107.605797,96.581009,92.142990,85.390923,61.845470,45.696709,63.308277,86.688446,66.407455,28.597540,10.783488,7.762829,4.073562,7.419022,7.123153,7.680177,3.794222,0.304134,0.214877,0.005785,0.019008,0.133885,0.000000,0.333059,0.079339,0.000000,2.071901,1.746281,0.000000,0.000000,0.000000 -602394.555000,4612855.550000,8262,2655,99.119034,133.309097,136.209915,123.003319,108.986786,97.904144,93.904144,90.722328,89.143814,90.209930,91.019844,101.755386,120.871086,139.300842,152.804962,162.623138,160.846283,146.350418,121.978523,102.763649,91.028107,86.309105,80.400009,55.871094,38.895885,59.614895,83.110756,63.300846,28.962000,9.973569,7.309110,4.484307,7.333071,6.611581,6.741333,2.391742,0.452068,0.418183,0.025620,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,3.847934,0.000000,0.000000,1.724793,0.000000 -602410.355000,4612855.550000,8341,2655,105.733910,133.651260,128.196716,117.833069,99.899185,88.428116,85.461174,83.171921,80.783493,81.370270,82.287628,94.882660,113.981834,132.014893,145.047943,153.469421,151.180176,136.039673,114.742165,93.907455,82.998367,80.138863,75.345467,50.485973,34.138866,54.692585,78.998367,62.072750,27.271917,9.928942,6.849606,7.426460,7.766127,9.007451,8.979352,7.624805,2.005788,0.329754,0.270249,0.307439,0.697521,1.049588,0.000000,0.000000,6.542976,3.716529,3.390083,2.719835,9.195042,2.808265 -602417.355000,4612855.550000,8376,2655,72.424797,81.979355,62.188438,50.290920,40.757862,34.972736,33.443810,30.800838,29.865299,30.096704,29.914886,34.164474,41.852077,48.654556,53.504143,57.342159,55.378525,51.398357,43.257862,35.561993,31.547117,30.571911,29.490919,19.452076,11.577695,22.080175,38.761993,34.733067,14.925631,4.394222,2.681003,11.666128,21.607452,31.538860,43.476055,41.360344,40.505795,46.497532,55.395046,52.967773,62.681000,62.121498,52.944633,61.950420,89.452896,84.430580,105.447113,84.556206,109.426460,150.701660 -601713.155000,4612845.550000,4855,2705,144.657028,127.838860,119.243820,108.698372,93.351265,83.293411,80.574402,77.871925,76.318199,77.822342,79.681831,89.384323,107.119858,122.995880,134.665314,143.012390,143.078506,132.871918,110.359528,90.698372,81.458702,79.219032,74.772751,48.219028,32.334728,48.723160,64.442162,47.136383,22.011587,8.546294,6.797539,18.157867,12.679356,13.197537,16.383488,16.174395,7.984310,3.575213,4.106618,1.053721,2.642978,1.474384,3.033059,3.485129,46.808270,30.790915,15.647938,20.651247,16.333061,12.587605 -601716.955000,4612845.550000,4874,2705,117.296715,133.214066,123.057045,109.883484,96.362831,84.577705,81.271919,78.784317,79.081841,79.619026,80.619026,91.908287,108.544640,124.982666,137.635559,146.478531,146.338043,135.313232,112.321503,92.106628,81.742996,79.858696,74.263657,48.007458,32.222332,48.255390,62.296715,46.156219,19.463655,9.036376,6.751258,11.495057,9.689269,13.294231,14.033074,14.111585,5.352901,1.574384,1.092565,1.541325,1.400002,2.019013,2.486778,1.484301,35.676041,25.694220,13.402483,15.666121,10.956200,15.732232 -601721.355000,4612845.550000,4896,2705,140.723175,141.285141,124.623978,111.161163,93.946289,83.822319,81.706619,79.574387,77.830589,80.648766,81.954552,90.888435,110.045464,125.962814,138.938034,147.690094,147.128113,135.657043,112.557861,90.557861,81.690094,79.268600,72.500008,47.004154,31.706629,47.607452,61.161175,43.491753,19.006632,6.418195,6.590929,11.585140,8.823154,11.260346,12.431420,14.340511,5.481001,2.590914,2.622319,0.903307,0.337191,0.919837,0.000000,1.268598,37.466122,21.638020,17.892567,9.747110,12.804134,20.266943 -601726.155000,4612845.550000,4920,2705,140.105789,137.981827,126.428108,113.676041,96.932243,89.304146,84.923981,83.114067,82.320679,83.626457,84.742165,94.642990,112.882652,129.337204,142.642975,151.849594,151.114059,139.304138,115.485954,94.312408,84.626457,81.634727,76.163651,50.353737,33.709110,49.833076,63.287621,45.221500,21.378531,8.662824,6.923986,16.141338,8.901667,10.338031,12.942991,10.221501,3.013230,1.682649,1.590912,1.080167,0.338017,1.810746,0.453720,2.076863,29.357029,27.493393,16.490911,15.565293,16.184299,14.581820 -601731.355000,4612845.550000,4946,2705,134.814911,135.781830,125.781837,111.947128,98.418205,88.442986,84.864479,82.938858,82.170258,83.476044,84.889267,95.608276,113.666138,130.252914,143.773590,153.128937,152.261169,138.938873,115.765312,94.773567,84.600014,80.401665,75.600014,50.633076,33.467785,49.608280,62.723984,44.740513,20.247950,7.986789,6.872746,12.047950,8.934724,11.637205,11.340509,7.838854,3.171909,1.090086,0.293390,0.406613,0.205786,0.837192,1.109092,1.836368,21.538847,21.296698,6.013225,10.707440,14.165291,9.526447 -601736.955000,4612845.550000,4974,2705,117.403320,134.843811,127.661995,113.637199,97.794228,87.496704,85.100014,83.389267,82.984314,84.711586,84.678528,94.777702,113.901665,129.331421,142.438858,152.422318,150.901657,139.248779,115.033897,94.323151,84.686790,81.174393,75.009109,48.381012,32.628944,47.587624,61.347954,45.372749,20.038036,8.347947,6.819027,9.876046,8.115714,9.110758,10.985965,6.961993,2.545461,1.266119,0.570249,0.604960,0.340497,0.995043,0.236365,2.282648,23.776037,21.795046,8.151241,14.376863,12.507442,12.649588 -601742.955000,4612845.550000,5004,2705,136.970261,138.515717,124.871094,114.499191,100.441345,88.383492,86.738869,83.986801,82.813248,84.218208,85.474411,95.350426,113.904152,129.499191,143.416534,151.697525,151.325623,139.044632,115.375229,94.755386,84.722343,80.168625,75.400024,49.722332,32.052910,48.160351,61.119026,45.209938,20.776051,7.595054,6.854565,8.631419,6.804969,8.685139,10.390099,7.594225,2.136369,0.876035,0.751241,0.513224,0.158678,0.478513,1.514051,2.449590,12.904961,17.165291,15.704136,10.955375,12.951242,20.993389 -601748.555000,4612845.550000,5032,2705,150.781006,139.946304,124.847122,113.648773,98.210762,89.483490,84.747948,83.475220,82.491753,83.731422,84.194229,95.177704,113.723160,130.557861,143.483490,152.714890,152.053741,139.004150,115.318199,94.210762,84.318199,80.185966,74.409103,47.913242,31.954565,47.309937,61.723156,44.913242,20.088449,6.033070,6.764482,9.295882,7.191747,9.387616,10.442990,7.779348,2.909924,0.761986,0.572729,0.312397,0.316530,1.069424,0.401653,0.893390,26.566944,19.646284,13.390086,13.502483,21.074385,19.066116 -601754.555000,4612845.550000,5062,2705,134.857040,138.738022,127.423981,113.655388,98.258690,87.680183,83.556213,82.151253,80.977699,82.498360,83.704971,94.366127,112.457039,128.688446,142.366119,150.614059,150.101654,137.886780,114.308281,93.109932,83.002495,78.142990,73.754562,47.465313,30.600843,47.820683,61.242172,44.771095,21.274399,8.309931,6.704978,10.622327,9.553734,10.346294,11.397535,11.706625,3.764469,2.075211,1.164465,0.558679,0.085951,0.685952,1.389258,4.260334,28.646284,24.433887,17.771906,14.940501,13.471904,20.806612 -601759.755000,4612845.550000,5088,2705,123.329773,136.090088,119.982666,108.362831,94.321510,83.428947,79.858696,78.404152,77.957870,79.742996,80.825638,91.114899,109.288452,125.313240,137.346268,147.685120,146.453720,134.445480,110.511589,88.627289,79.090103,74.428947,70.081841,44.387623,26.660351,43.081841,58.858696,43.131424,17.704977,5.566954,6.371093,11.921503,6.300013,9.483486,10.087619,9.460341,2.521492,0.643804,0.528927,0.878514,1.190084,0.985951,1.129753,2.423143,37.928104,19.695044,19.640499,13.876864,12.553721,23.742977 -601764.155000,4612845.550000,5110,2705,147.589264,141.035553,124.341347,110.432251,95.060356,85.109940,82.423988,78.878532,78.787628,80.019028,81.374405,91.225639,109.506638,124.630600,137.556198,147.300003,145.936371,133.754562,111.043823,89.382668,78.762833,75.597542,69.845474,44.250431,28.002497,44.597538,59.308285,43.118202,20.072746,8.307453,6.349607,10.102493,7.565302,9.536377,11.712412,9.175220,3.314882,1.707441,0.924796,0.832233,0.337191,0.919836,0.267769,2.153722,37.265293,28.990089,19.416534,11.506616,23.074385,15.510745 -601768.355000,4612845.550000,5131,2705,156.648773,139.078522,128.210754,111.830597,96.987617,86.731422,83.185966,80.797539,80.028938,80.962830,81.632248,92.012413,109.673569,125.574394,137.938034,146.913239,145.723160,135.078522,111.235550,90.078529,80.367783,75.268608,70.772743,44.714897,28.392582,45.657043,59.053738,44.516548,20.388449,7.814062,6.433903,9.671089,7.653734,10.395880,11.257038,11.251252,4.066123,1.109920,0.519837,1.194217,0.031405,0.336365,3.707441,2.479341,34.585957,28.809921,18.677691,20.929760,14.671904,16.157026 -601772.955000,4612845.550000,5154,2705,143.222336,134.668610,118.462006,109.478531,94.957870,84.701683,81.569450,78.858704,76.842171,79.214081,80.057053,89.164482,106.924812,123.420677,136.875214,144.486801,144.123154,132.296707,108.941345,87.726471,78.321518,73.470268,69.809120,42.263657,26.675226,42.809109,59.346302,42.652084,18.521507,7.644641,6.346300,11.314065,7.913236,9.637204,13.603323,11.422327,4.521495,1.890087,1.754549,0.502480,0.390910,1.315705,0.680993,1.699177,43.238853,28.132238,20.984303,13.552896,20.261160,19.157852 -601777.955000,4612845.550000,5179,2705,158.810776,141.381027,127.124809,116.719849,99.521500,89.447121,85.265305,84.513237,84.149597,83.719849,85.703316,94.587616,112.347946,128.199188,141.703339,149.471924,148.075241,138.827301,112.976044,92.430588,82.339684,78.389267,73.372742,47.414066,31.516548,46.521503,62.645470,46.967785,20.473572,7.573567,6.670268,9.464477,10.050429,9.426460,13.804148,11.774393,4.076868,2.151244,0.500828,0.585952,0.254546,1.150415,0.414877,1.992566,38.814056,26.619839,11.640498,11.825624,24.760334,33.272732 -601782.555000,4612845.550000,5202,2705,183.220673,145.964478,128.807449,114.311584,99.848778,89.559525,84.121498,81.708275,81.600838,83.171082,83.038849,93.518196,110.080185,126.881836,140.038849,148.187607,147.204147,135.600845,112.071922,91.890099,80.881828,76.113243,73.154556,45.138039,30.592585,45.584320,59.931423,44.898369,19.179358,7.565301,6.650433,8.346294,8.444642,9.847121,12.307454,10.619845,2.953726,1.204136,1.877689,1.060332,0.727274,0.977688,0.436364,1.819839,30.147114,17.685953,17.307442,12.348763,20.915707,9.876861 -601788.155000,4612845.550000,5230,2705,171.241318,148.894226,130.034729,117.927292,100.166962,90.200020,86.241341,83.671089,82.547127,84.555389,84.191750,94.009933,112.166962,127.646301,140.613220,149.150421,147.224808,137.142151,113.571922,92.216545,80.803322,76.365311,72.836380,46.001678,28.854563,46.877708,60.489273,43.985149,17.778530,6.406623,6.621506,7.230591,7.201666,8.348772,8.409931,6.084306,2.496700,0.892564,1.048763,0.200001,0.448761,1.154548,1.337192,1.766119,30.906614,15.000002,18.303308,16.983475,10.619011,18.896694 -601794.155000,4612845.550000,5260,2705,157.956223,151.129761,134.303329,121.584312,106.460350,93.642166,91.749596,88.782661,86.873573,89.790916,89.204140,98.179359,116.584312,133.336380,145.253738,154.691757,153.063644,141.328125,116.964478,96.162827,85.328117,81.724808,75.790924,49.981007,34.204151,49.592575,64.055389,49.328117,21.250433,9.517368,6.890102,8.750425,9.802493,9.109104,11.273570,6.038025,3.365297,0.981821,0.319010,0.750415,0.489258,1.772730,1.562813,2.341325,25.252069,14.161160,13.452895,9.305787,14.742976,16.352066 -601801.555000,4612845.550000,5297,2705,154.696701,152.988449,136.682663,124.252914,107.963654,96.054565,91.600021,89.971916,88.294228,91.385147,90.881012,100.864487,117.054558,134.575226,146.517365,154.864471,153.566956,141.823151,116.971916,96.550438,85.054565,81.492577,76.327286,50.971920,33.608284,47.930599,63.038033,46.748783,20.227291,8.306625,6.938862,6.781003,7.563648,7.489269,9.816544,4.231413,2.409922,0.608268,0.564465,0.889258,0.303306,1.618184,0.572729,3.198350,19.419838,20.483475,19.790087,13.428102,16.137194,7.483471 -601809.355000,4612845.550000,5336,2705,151.090927,156.148773,134.925629,122.892578,109.363655,96.727287,92.669441,91.611588,90.082664,91.809937,90.809937,101.595055,117.776878,136.107452,147.644638,156.231415,154.727295,142.388443,117.677704,96.884315,85.082664,80.652908,75.272743,49.520679,33.396713,47.818199,61.462826,46.735554,19.341341,7.433897,6.842994,6.361167,8.566955,8.598361,9.388445,6.560341,1.657857,1.092565,1.112399,0.219836,0.600828,0.799174,1.312400,2.195044,14.243804,12.319837,7.966117,20.623970,4.512397,7.243802 -601815.155000,4612845.550000,5365,2705,161.065308,150.388428,132.785141,121.322327,104.190102,93.016548,90.223160,88.305801,86.669441,89.504150,88.876053,98.057869,115.520676,133.702499,144.900833,155.272720,152.057846,139.223145,115.115715,93.809937,82.611588,78.198364,73.636383,47.966957,31.645473,45.727291,62.115719,47.867786,19.889273,8.154557,6.694233,8.901664,9.438856,11.254560,12.693404,9.054556,3.931413,2.247938,0.720664,0.681820,0.379340,1.514879,0.785125,0.690911,17.664467,15.279342,10.480993,11.621490,11.114051,5.509091 -601818.355000,4612845.550000,5381,2705,173.276031,169.709091,142.881012,127.382652,108.208275,91.981834,88.304146,86.420677,85.585968,90.205795,89.056213,98.685143,115.140511,132.643814,144.478516,153.156204,151.528107,139.751236,115.180992,94.197540,82.627281,78.668602,74.172745,47.376053,31.675224,46.081837,63.742168,46.287621,18.651258,6.748773,6.742994,8.978525,9.228113,10.560345,12.196709,13.258690,6.225628,5.198354,5.259511,4.190088,4.571079,2.053722,2.778515,3.467773,23.465292,16.266945,7.589258,5.789258,12.595043,20.375208 -601821.355000,4612845.550000,5396,2705,143.104965,150.838043,133.251251,118.309105,104.441330,91.507446,89.565300,86.912407,84.606621,85.664474,85.730591,96.763649,115.540504,130.961990,144.135544,152.218185,151.714050,136.838043,113.780174,93.391747,83.102493,79.342163,74.945473,48.953739,32.102497,47.515720,63.573574,46.441341,18.417374,8.685965,6.813242,13.593403,9.922328,10.563649,14.929769,12.404972,5.971083,2.961164,3.801658,3.893393,3.747940,7.674388,8.524801,13.517367,79.781822,64.238853,56.884308,32.676868,15.076035,30.187605 -601824.155000,4612845.550000,5410,2705,180.432251,158.581009,130.878525,114.870255,100.448769,88.258698,85.572746,81.539696,81.217377,82.002502,81.349602,92.895050,111.019020,126.564476,138.523163,147.390930,145.862000,132.539688,110.052078,90.019012,80.572739,76.696716,70.572746,44.729771,28.680183,44.341339,59.886791,43.481838,17.646299,6.861168,6.415721,12.088444,7.806624,9.328114,12.177702,10.698360,4.280176,3.185957,3.428932,2.433889,2.194218,3.922323,10.819015,8.226458,64.861992,50.966949,32.214054,29.448769,32.377689,45.340500 -601851.555000,4612845.550000,5547,2705,164.529770,161.435547,134.551254,123.212418,103.666969,92.319855,89.278542,86.815727,85.427299,86.881844,83.485153,93.799194,111.509941,129.237213,140.460342,149.790924,146.427277,131.923172,108.534737,89.295059,77.675224,75.857048,70.427299,43.493404,28.220678,43.956215,58.733074,42.989273,17.142994,7.304145,6.402498,17.918200,8.938856,11.145471,12.569438,13.167784,4.279347,4.246289,3.675211,4.594221,3.703311,7.725629,6.254550,9.703315,84.879349,53.142159,46.498352,26.512402,23.674383,19.903309 -601856.355000,4612845.550000,5571,2705,162.074402,166.892578,138.446304,123.512405,106.314056,91.280998,90.165298,87.884308,87.264473,89.776871,85.479347,96.314056,113.413231,131.132233,142.586792,151.239685,147.685974,132.371902,110.148766,90.545464,79.719017,76.859520,70.727287,44.438038,28.826466,43.685970,59.669441,42.669441,18.808283,7.656211,6.429771,18.066133,8.988443,12.424809,14.557868,17.978529,7.756210,4.476867,5.480173,6.751249,6.084305,10.812407,18.745464,22.894228,110.214066,76.259506,46.377697,35.599182,26.314054,21.477688 -601860.355000,4612845.550000,5591,2705,185.512390,177.389252,138.447113,125.133080,105.149605,89.273575,88.372749,85.885147,84.637215,89.000847,84.769440,95.364487,112.951263,130.794235,142.835571,150.794235,147.810776,132.471924,110.174400,92.091759,80.843826,78.785973,74.827293,47.347950,31.058697,47.314892,67.050430,50.314892,22.914068,7.958690,6.802498,21.740515,11.457867,14.130593,18.095886,21.250429,10.922327,5.603316,7.790920,6.182652,6.718189,13.120674,26.738028,34.057865,121.910751,95.162827,42.952076,42.306622,35.176041,41.961987 -601863.355000,4612845.550000,5606,2705,206.836395,193.795074,140.348785,121.811600,104.431427,89.580193,86.398376,83.447960,83.274406,87.687630,81.530602,93.274406,110.505814,126.332260,138.009949,148.076065,143.481018,126.357048,105.811600,87.109116,77.968620,74.332260,71.290932,45.100849,28.200018,44.629772,61.290932,42.952087,17.761173,7.027285,6.481010,21.800016,11.864477,15.853737,16.899191,19.327288,10.397534,7.349599,7.976871,6.605793,9.019843,17.659517,29.531416,30.087616,146.926453,92.444649,57.343811,28.776041,45.970257,75.217361 -601948.955000,4612845.550000,6034,2705,153.509109,140.914062,122.500839,111.401672,95.244652,83.029770,79.740517,76.219856,74.236382,75.798370,75.558701,85.707458,102.947128,119.657867,132.732239,140.732239,139.269440,129.343826,107.550438,87.476051,75.856216,73.368614,68.145477,42.963657,26.401672,47.112419,70.310776,55.062828,25.236382,9.214064,6.195060,12.463653,9.647122,10.900014,13.961999,16.397537,6.801665,2.485130,2.152895,2.928104,0.528101,2.918185,2.255374,5.463642,49.654556,37.266121,33.484303,20.183477,15.207440,10.856199 -601952.555000,4612845.550000,6052,2705,141.728134,142.480179,130.091751,115.827293,100.967781,88.777702,83.232246,81.951256,79.810760,80.876869,81.190926,90.257034,110.033905,125.463646,138.298340,147.794235,145.860336,134.207458,111.471924,92.868607,78.810760,77.091759,70.645485,45.042164,29.653736,48.190926,69.455391,54.471916,24.513241,9.662824,6.422333,10.122328,8.138855,11.793405,12.833075,13.170261,3.608272,2.180170,2.457029,1.509093,0.895043,6.123145,3.255376,4.220665,33.052895,26.043804,25.889261,9.073556,8.391738,8.704133 -601956.955000,4612845.550000,6074,2705,149.482651,148.127274,132.119019,121.267769,106.028099,93.284302,89.995041,87.598358,86.804970,88.573555,86.193405,97.119011,115.887604,133.573563,144.928925,155.242981,154.052902,141.135544,119.267769,99.267769,85.540504,82.160347,76.854568,49.854561,34.441345,51.920677,74.309113,56.871090,24.813242,8.800014,6.986796,8.100014,9.245467,7.885137,12.368609,7.090094,2.683478,0.688433,1.142977,0.196695,0.272728,0.652067,1.547110,3.942979,23.289261,19.258680,18.568598,8.026447,3.018182,14.162811 -601962.555000,4612845.550000,6102,2705,157.721497,155.916550,142.139679,130.709930,115.685135,103.081841,100.776047,97.338028,96.635551,98.585960,98.181000,107.999184,126.652077,143.461990,155.610748,166.090103,163.594238,151.214050,128.015717,106.395882,94.817368,90.528107,86.445465,58.875225,42.742996,59.751259,79.734741,60.585968,27.387625,10.224812,7.858697,7.923980,7.641338,9.266130,10.297537,7.099182,2.572732,0.729753,0.344630,0.395869,0.523968,0.333885,3.200003,0.000000,7.513224,8.139670,9.983472,2.578513,1.024794,6.040496 -601969.355000,4612845.550000,6136,2705,167.690903,164.679352,146.976868,136.423172,118.828117,107.332253,102.985138,101.373566,99.067780,102.704140,103.100838,111.885971,130.604980,148.538864,160.530594,169.233063,169.233063,155.770279,131.852905,110.885971,98.439682,94.753731,90.472740,63.919025,47.753738,61.828117,82.175217,60.671093,27.782661,12.146297,8.224813,5.679349,7.347122,8.681831,10.467783,3.634718,0.969424,1.312402,0.602481,0.984300,0.127274,0.072728,0.528100,0.000000,2.442976,5.271075,14.852894,2.647108,2.241323,16.490910 -601977.555000,4612845.550000,6177,2705,169.500000,165.962814,148.219009,135.962814,123.657043,110.210754,107.111580,104.376053,104.235550,106.822319,105.508278,115.946297,134.078522,151.747940,163.871902,174.615707,171.590912,158.714874,133.673569,112.533073,101.508278,98.235550,92.590927,65.830597,48.276882,64.219025,79.103333,62.698368,26.788446,10.926464,8.417374,7.326459,7.076873,7.109104,7.390923,3.998354,1.165292,0.421489,0.441324,0.000000,0.212397,0.152894,0.195868,0.000000,7.903307,5.776861,2.761984,9.042150,0.000000,12.950416 -601981.355000,4612845.550000,6196,2705,162.406601,170.580170,151.687607,138.464462,124.852905,113.018196,109.770264,107.423157,106.976875,110.051254,108.340515,118.671082,137.505783,155.447937,168.927277,177.481003,176.447937,163.638031,138.381805,116.307449,105.613243,100.596710,96.745476,69.753738,50.150433,65.960350,82.679359,63.009937,26.943819,10.923985,8.795060,7.286788,7.850428,6.581831,8.633072,3.508272,0.934713,0.000000,0.338019,0.419835,0.418183,0.509092,0.342149,0.871075,2.198347,3.652066,0.814050,0.747934,1.221488,12.939671 -601985.955000,4612845.550000,6219,2705,134.993393,163.011597,150.928940,135.796707,119.276047,108.474396,105.681007,104.003326,102.854568,103.094231,103.119026,115.565308,133.978531,151.135559,163.887619,172.862823,171.590103,157.928940,133.209930,111.507454,99.085960,97.102493,91.581833,65.251259,48.209938,63.738861,81.499184,60.771919,26.449606,9.962825,8.325639,10.865303,6.656213,7.176045,8.168607,3.933064,1.367771,0.507439,0.841324,0.539670,0.027273,0.721489,1.447935,0.000000,1.057851,0.000000,2.343802,3.910744,6.328100,3.801653 -601993.155000,4612845.550000,6255,2705,145.402496,167.596710,153.976868,139.505798,121.191742,110.745461,108.505798,105.208275,103.778519,105.728935,105.299187,116.935547,136.489273,153.927277,165.621490,175.671082,174.233063,159.348770,133.654556,112.993401,102.274391,99.249596,94.109100,66.828117,50.009937,65.142174,82.191742,59.803329,26.163656,12.476049,8.555390,11.726460,6.688445,9.776049,8.685966,4.868605,1.909095,0.285125,0.357853,0.767770,0.120662,0.201655,1.436365,0.000000,2.960331,10.883472,0.853719,4.900827,4.312397,1.997521 -602005.155000,4612845.550000,6315,2705,138.961182,168.479355,152.074402,139.917374,125.595055,111.041336,109.429771,107.000015,105.570267,108.545471,106.719025,118.016541,137.768616,155.628113,167.421509,177.438034,174.950424,159.876053,135.363647,113.338852,102.082664,100.595055,94.181831,66.603325,50.123985,65.099197,82.859520,59.669441,25.543825,9.739684,8.562002,9.335549,5.659517,5.375217,7.863649,2.733891,0.373555,0.295869,0.120662,0.175207,0.109918,0.262810,0.790910,0.000000,1.204959,3.309918,0.872727,2.520662,0.000000,0.000000 -602019.355000,4612845.550000,6386,2705,153.605789,180.035538,161.225632,149.936371,132.283493,117.539696,116.878532,114.696716,114.556221,118.043823,114.638863,126.291748,145.498352,163.498352,175.795868,186.630585,183.308273,167.490082,143.242157,122.019028,110.374405,108.754570,102.118202,74.101677,57.985973,72.539696,88.812416,65.019028,29.581011,11.392580,9.283489,11.032248,7.833900,8.500014,10.007453,4.986785,1.060333,0.234712,0.339671,0.055372,0.119009,0.099174,0.000000,0.000000,1.325620,0.000000,0.000000,0.000000,1.300827,0.000000 -602037.355000,4612845.550000,6476,2705,160.253723,190.204147,168.377701,155.600830,137.485138,125.931412,122.518188,120.947945,120.080177,125.625633,119.947945,132.402496,149.972733,168.774384,182.691742,193.352905,189.683487,172.113235,148.435547,127.947945,115.931412,111.857033,105.790916,77.939682,61.295063,78.956207,90.468613,62.576054,30.179359,11.734729,9.617374,13.390100,6.689269,7.193401,6.598361,5.181001,0.508266,0.015703,0.172728,0.081818,0.000000,0.000000,0.000000,0.046281,0.000000,0.000000,1.076033,1.967769,0.000000,0.000000 -602062.155000,4612845.550000,6600,2705,114.112411,162.765305,163.252899,153.095886,138.294250,127.740509,123.806625,122.798363,121.343811,124.120674,123.467781,135.079346,153.360336,170.914062,182.343811,191.038010,191.269424,177.674393,152.062820,130.112411,118.195053,115.550423,110.600014,82.195053,65.360344,80.575218,95.864479,68.947128,33.145473,13.658696,10.054564,6.499188,8.048776,8.491751,8.720675,3.961989,0.535539,0.830580,0.108265,0.168596,0.000000,0.000000,0.000000,0.049587,1.280165,0.000000,0.000000,0.000000,0.000000,0.000000 -602082.355000,4612845.550000,6701,2705,123.320679,158.159515,160.944641,151.167770,137.440506,126.283485,125.060349,123.283485,122.514893,123.605797,123.820679,134.390930,153.233887,170.151245,182.490082,191.605789,190.506622,176.316528,152.729752,130.787613,119.498360,115.630592,109.845467,82.655388,65.035553,81.374397,95.671913,69.680183,32.341343,13.832249,9.985970,6.025633,7.088446,8.787617,7.384311,3.110750,0.453720,0.272728,0.165289,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.035537,0.000000,0.000000,0.000000 -602100.355000,4612845.550000,6791,2705,119.373573,159.271088,166.163635,153.998352,138.824799,129.882660,126.833084,124.882668,124.081009,126.171921,127.097542,137.246307,155.262817,172.833069,184.097534,194.171906,192.262817,179.494217,153.874390,132.527298,120.833069,115.824814,112.800026,85.700851,67.642990,81.345474,94.932251,71.403328,33.676052,13.719852,10.254564,5.516539,7.678528,8.833899,7.381831,3.279346,0.857853,0.338017,0.055372,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.155000,4612845.550000,6895,2705,131.696701,172.645462,163.868607,152.276031,138.982651,127.817360,123.486778,121.397537,121.587616,124.273567,123.604149,134.455383,152.455383,168.649597,179.558685,190.019836,189.482651,178.201660,154.416534,132.771912,121.821487,117.953720,115.400002,86.102493,70.119026,84.565308,97.383476,73.490929,31.895887,13.204149,10.490928,4.842161,7.862824,7.797533,8.686789,3.223973,1.239672,0.668597,1.277687,0.825621,0.811572,0.012397,0.000000,0.344628,1.208265,0.000000,0.000000,1.709091,0.000000,0.000000 -602139.355000,4612845.550000,6986,2705,142.487625,182.107452,167.033081,160.768616,143.909119,130.942169,129.413239,128.190094,127.719025,130.314072,129.834732,140.826477,158.876053,174.330582,187.190079,197.537186,195.371902,182.487610,157.512405,136.140518,123.801666,120.504150,115.363655,86.628113,69.661171,83.917374,95.454559,73.281006,34.876053,14.384314,10.487621,5.925632,8.142164,6.517369,7.685965,3.304964,0.736365,0.179340,0.995869,0.018182,0.050414,0.028099,0.005785,0.009091,0.000000,4.828926,0.000000,0.000000,0.000000,8.766944 -602146.955000,4612845.550000,7024,2705,123.380173,173.545471,173.231415,159.297531,142.264481,130.190094,129.619843,126.024803,124.776871,125.793396,125.628105,138.561996,157.652908,175.859528,187.595062,197.388443,196.371918,180.933899,157.008286,133.380173,123.595047,118.041328,114.636375,85.107452,69.206635,85.462814,101.512405,74.462837,35.140511,13.402498,10.421507,8.996709,7.504975,9.242164,8.138032,4.781826,1.387607,0.082645,0.083471,0.000000,0.157025,0.000000,0.001653,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,4.206612 -602153.755000,4612845.550000,7058,2705,118.117371,176.768616,172.983490,159.446304,139.603317,129.752075,130.082657,126.975220,125.107452,125.512413,125.512413,137.446304,157.256210,175.809937,187.578522,197.462830,196.942169,180.958694,156.595062,134.206635,122.991753,120.082664,114.272743,85.479355,68.685966,85.487617,103.413239,75.438034,36.330597,13.851258,10.388449,10.987617,7.546296,9.347122,8.563648,4.428933,1.075209,0.226447,0.476034,0.071901,0.217356,0.000000,0.008265,0.070248,0.000000,0.000000,2.442976,0.000000,0.000000,0.000000 -602160.355000,4612845.550000,7091,2705,141.800003,175.270248,170.650406,157.212387,140.187622,129.857040,128.394226,124.286797,123.493408,124.609108,123.956215,135.898376,157.435532,174.650406,186.675201,196.485123,195.790909,180.542969,156.162796,133.584320,121.609108,119.319855,112.790932,84.542992,68.005806,86.038864,100.146301,74.270264,35.245472,13.088448,10.253738,10.779355,6.981006,9.072742,9.463653,5.256207,0.337191,0.409092,0.152893,0.190083,0.000000,0.401653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602164.555000,4612845.550000,7112,2705,139.354568,195.551270,179.138046,161.542999,141.832260,129.080185,127.997536,124.617371,123.609108,125.650429,123.865311,136.683502,157.857056,175.220688,187.923172,198.237213,195.600845,180.749619,155.600845,133.245468,121.245476,118.022331,113.518196,85.501671,68.204147,83.559525,100.518196,73.262001,36.005802,13.438860,10.319855,10.588444,9.534726,11.382661,9.420676,4.956207,0.904961,0.336365,0.187604,0.063637,0.000000,0.357025,0.225620,0.491736,0.000000,0.000000,6.684299,0.000000,0.000000,0.000000 -602168.955000,4612845.550000,7134,2705,120.003326,183.258698,175.101669,162.324799,144.531433,132.506638,132.994232,130.531433,127.787628,129.143005,127.407463,139.729782,160.721512,178.390930,190.457031,200.614059,198.853729,182.068619,157.423996,134.862000,124.043823,119.655396,115.572746,85.581017,68.812416,84.696716,103.060356,75.300026,36.738033,13.969440,10.506631,11.563652,8.476048,7.701667,9.447948,4.612405,1.459507,0.597522,0.203306,0.000000,0.011570,0.000000,0.023141,0.430579,1.297521,0.000000,0.000000,0.000000,0.000000,0.000000 -602173.355000,4612845.550000,7156,2705,129.728119,187.752899,173.364471,157.984314,142.331421,126.918198,127.885139,123.265305,122.893402,125.058693,123.827286,137.819016,156.777695,174.364471,186.711578,197.637207,195.959518,178.389267,154.976044,132.471909,120.901665,118.645470,113.190926,83.372742,67.281837,82.761169,100.017365,72.909927,33.102497,12.928943,10.290102,10.307453,7.528939,8.504972,8.828939,4.564469,1.840499,1.552069,1.249588,1.486778,0.819009,0.160331,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.155000,4612845.550000,7170,2705,140.283478,196.675201,185.063629,169.080170,146.435547,131.617371,130.005798,125.179359,126.485138,129.700012,127.609108,140.460342,161.237198,179.790909,191.683472,202.526443,199.493378,182.435532,158.708267,135.815720,123.204147,120.757866,114.972748,85.733086,69.121506,85.394241,101.559525,72.823990,35.642170,13.956217,10.452085,12.463654,9.761174,11.375222,12.825636,7.523977,1.912401,1.501655,1.123968,1.090084,1.206612,0.442976,1.350414,0.000000,0.000000,2.727273,0.000000,1.097521,0.000000,0.000000 -602179.955000,4612845.550000,7189,2705,111.809937,169.644638,167.694229,157.694229,140.000031,127.264481,123.330597,121.595055,119.099190,120.140511,118.454559,129.231415,149.157043,166.033081,179.793411,188.950409,187.702484,171.752075,149.107452,127.330597,114.942162,111.107452,104.909103,78.818199,62.834728,80.785141,100.719025,75.900841,33.516548,13.776051,9.537210,6.845464,7.076875,6.938028,7.953732,3.328932,0.552894,0.519009,0.260331,0.266116,0.295041,0.000000,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,1.341322,1.990083 -602186.355000,4612845.550000,7221,2705,107.605797,166.209106,160.002502,152.812408,136.440521,122.316544,120.523148,116.787621,115.490097,117.630585,115.010750,127.068604,144.614059,162.432251,175.217377,185.316559,185.167786,169.109940,146.448761,124.630585,112.795876,107.597527,102.936378,77.862000,62.142998,80.663651,98.167793,76.862007,35.547951,12.890926,9.357870,5.703316,7.654560,6.118194,7.526458,3.514881,0.679341,0.215703,0.147108,0.056199,0.000000,0.104133,0.000000,0.315703,0.000000,0.000000,0.000000,1.830579,0.000000,0.000000 -602196.955000,4612845.550000,7274,2705,112.269432,156.095886,162.715714,153.550430,136.790085,124.591751,121.649597,117.881004,116.566956,119.327286,116.988441,128.178528,145.790085,163.558670,174.938843,185.120651,181.715698,169.294205,145.525635,125.145470,112.781830,109.790092,103.327286,78.847946,62.476059,80.575226,98.566956,76.327286,34.641338,14.776876,9.393406,5.450422,6.925635,6.876872,6.707450,3.150419,0.808266,0.430579,0.000000,0.077686,0.000000,0.070248,1.089257,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602212.155000,4612845.550000,7350,2705,93.742165,148.114090,158.742188,150.667801,137.866135,124.196709,121.766960,119.312408,117.890923,117.766960,117.138855,127.948776,144.899216,162.006653,174.097565,182.866150,180.295914,166.816574,144.188461,123.221504,111.031418,108.056213,103.345467,78.370262,63.626465,79.114067,94.196709,70.890923,34.328941,13.138034,9.395061,4.657035,7.124808,7.503318,7.171913,2.659512,0.704960,0.553721,0.057851,0.334712,0.076033,0.074380,0.152893,0.491736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.755000,4612845.550000,7403,2705,97.863655,153.111572,158.450409,147.830582,134.417374,122.681831,119.764481,116.119850,113.136383,113.739685,113.318199,123.698372,140.690079,157.326447,167.739670,177.062012,174.781021,162.136368,140.987610,120.772743,110.202492,104.781006,99.227287,73.822342,60.946304,74.946304,94.376053,72.409119,33.968616,13.466134,9.020680,4.935547,7.381006,7.342988,6.248773,1.871905,0.316530,0.021488,0.080166,0.039670,0.000000,0.114050,0.120661,0.261157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.555000,4612845.550000,7437,2705,79.577705,144.222321,156.164459,146.966125,133.470261,122.470261,117.916542,114.321503,111.610756,111.999184,112.280174,121.742989,139.379349,155.660339,166.123138,174.445465,173.189255,160.222321,139.404129,118.866951,107.635551,104.503319,97.263649,74.098358,59.643822,75.990921,93.817368,70.742989,32.544647,13.117373,8.842168,4.713232,6.377702,7.167780,5.984309,2.869426,0.880993,0.371075,0.104959,0.178514,0.191736,0.131405,0.507439,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602237.755000,4612845.550000,7478,2705,83.729767,150.000000,154.649597,148.467789,132.500839,119.657867,116.905800,111.335548,109.186790,109.740509,109.228111,119.509102,137.294235,153.170258,163.170258,173.013229,170.699188,159.385132,136.715714,117.699188,105.649597,100.368607,94.781830,69.740517,56.674400,72.352081,93.294228,68.145470,31.930597,12.438860,8.616549,4.734720,6.474395,6.387617,6.005796,1.586781,0.843803,0.414050,0.600827,0.266943,0.298348,0.247934,0.531406,0.269422,4.808265,0.000000,0.000000,0.000000,1.196694,0.000000 -602242.955000,4612845.550000,7504,2705,82.688446,151.564484,157.771103,148.828949,133.828934,121.688446,118.126457,113.266960,110.713234,110.093407,109.291748,119.465302,138.465317,153.423996,164.076889,172.919861,171.870270,159.184326,138.283493,117.382660,106.490097,102.076874,95.390923,69.614067,56.407455,74.498360,93.771088,70.878525,32.895061,12.639688,8.671921,5.600010,7.315718,6.314063,6.622325,2.526452,0.412398,0.175207,0.142149,0.259505,0.034711,0.000000,0.052066,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.955000,4612845.550000,7524,2705,86.728119,144.133087,156.860336,146.290115,132.182663,120.174393,116.860344,113.017365,109.967781,109.207451,108.571091,119.843811,137.571106,153.000839,163.612427,173.033920,171.480194,158.835556,137.885147,117.513237,107.149597,101.703316,95.281837,70.455391,56.670265,73.819031,93.686798,70.967789,33.637211,12.533075,8.662003,5.248769,7.423982,7.958692,6.506624,2.176038,0.495042,0.079339,0.034711,0.082645,0.023141,0.000000,0.052066,0.417356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.755000,4612845.550000,7553,2705,83.714890,143.392578,157.557877,146.913254,132.161163,121.235542,116.690094,112.830589,110.714882,110.235542,109.136375,119.665298,138.491745,153.615738,163.648788,173.607468,172.111603,159.764496,137.896713,118.417366,106.020668,101.946289,94.590919,69.119850,55.417370,73.665306,93.706619,70.789276,31.947126,12.159522,8.599193,4.102487,5.366957,5.189268,4.809928,2.078517,0.261158,0.046282,0.000000,0.052067,0.000000,0.000000,0.120661,0.000000,1.423141,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.955000,4612845.550000,7574,2705,76.447960,143.844635,154.927277,146.001663,129.423157,120.381836,116.786797,110.638031,108.125641,107.299194,105.423157,116.307457,134.084320,149.745468,160.001663,170.604965,168.720673,154.704147,134.109116,115.084312,104.290924,99.208282,90.836380,67.009941,53.514072,72.290932,94.638031,72.447952,34.538864,12.093406,8.257871,3.238851,7.451254,6.893404,5.394226,1.671080,0.352067,0.144629,0.000000,0.025620,0.019008,0.000000,0.051240,0.199174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.355000,4612845.550000,7596,2705,74.724808,141.885956,155.547104,146.910736,131.332245,122.034729,116.216545,110.059525,108.811584,108.869438,107.588448,119.076050,136.877686,152.323959,164.315689,174.373550,171.679337,158.695862,138.133881,117.770264,105.679359,100.795059,93.654564,69.390099,55.588448,74.241341,95.340515,71.638031,32.216545,12.609109,8.514070,3.695049,5.515716,6.994229,6.172738,2.413228,0.633060,0.058678,0.130579,0.055372,0.099174,0.042149,0.164463,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602268.155000,4612845.550000,7630,2705,77.295059,148.146301,154.344650,143.700027,130.047119,118.443810,113.700020,109.435555,107.419029,106.410759,104.890099,115.981003,133.766129,149.286804,159.642181,170.270279,169.559525,153.576065,133.939682,114.683479,102.757866,98.394234,90.518196,67.468613,53.295059,73.485138,95.245476,70.402496,33.788448,11.511587,8.228946,3.437196,6.323982,6.315716,7.152078,2.271080,0.139670,0.241323,0.080166,0.166943,0.000000,0.066116,0.482645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602275.555000,4612845.550000,7667,2705,78.562828,146.587631,154.405807,143.562836,129.199188,119.075226,113.670258,109.868607,106.430603,105.595879,105.083488,115.480179,133.736389,149.372757,159.257065,169.323181,168.033936,154.934738,134.356216,114.860344,101.967789,98.397545,90.645477,66.273575,53.422337,71.025642,92.538040,71.562828,32.277706,12.275226,8.240515,5.067776,6.500841,6.203318,5.204143,2.544634,0.529753,0.159504,0.038017,0.130579,0.057025,0.049587,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602279.555000,4612845.550000,7687,2705,82.808289,143.221512,154.593399,143.634720,128.114075,118.031425,112.833084,109.130600,106.469444,105.138863,105.874405,115.196716,133.775223,148.750427,160.337204,170.138855,169.254547,155.725632,134.180191,114.758698,102.742172,98.039696,90.890930,67.262833,53.023163,71.899193,92.890930,69.328949,31.367785,11.601669,8.262829,4.567777,5.871089,6.675220,6.391747,2.364468,0.159504,0.207439,0.080992,0.226447,0.160331,0.000000,0.380166,0.556199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602283.555000,4612845.550000,7707,2705,91.100021,144.050430,157.777695,145.083481,132.017365,119.794235,116.364479,111.480186,108.323158,108.604156,106.827293,118.133072,135.761169,151.075226,161.257034,171.860336,169.612411,155.670258,135.860336,116.926468,104.414070,99.571091,94.190926,68.042160,54.414070,72.909935,93.422333,71.000847,33.199192,13.344646,8.562830,5.845464,6.280181,6.084311,6.531416,3.176039,0.533885,0.384298,0.029752,0.074381,0.152067,0.000000,0.398348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602287.355000,4612845.550000,7726,2705,84.375229,147.862823,156.623154,147.937210,130.970261,120.441330,116.548775,112.416542,109.573563,109.259514,109.300835,119.928940,138.119034,153.218201,164.209930,173.333908,170.226471,157.102493,136.953735,117.507446,106.168610,102.433075,94.672737,70.681000,57.714069,75.548782,93.614899,70.209938,33.446301,13.266133,8.606631,5.202488,7.623983,7.942990,6.679350,2.960338,0.797523,0.152893,0.041322,0.328100,0.247934,0.061984,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602293.155000,4612845.550000,7755,2705,74.815720,142.823975,154.617371,146.088440,129.162827,119.071922,114.658699,109.369438,107.344643,105.956215,105.823982,117.336380,135.328110,151.245468,160.435532,169.881805,168.319824,155.485138,134.799194,114.848778,103.096710,98.410759,92.245476,68.237206,53.286793,70.609108,92.352913,67.468613,30.162828,10.254563,8.385970,4.610753,6.195882,6.701665,5.300837,1.828931,0.557026,0.242976,0.033058,0.035538,0.000000,0.000000,0.123967,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602297.155000,4612845.550000,7775,2705,78.069443,145.573563,157.069427,144.879349,129.094223,117.838028,114.209930,111.276047,108.804970,107.094223,107.160339,117.557037,135.904144,150.953720,161.747116,171.209915,169.441330,156.267776,135.623154,115.928940,103.639679,99.234734,93.763657,68.234734,54.507462,72.507454,92.738861,68.573570,31.209936,11.336380,8.523986,5.433893,6.447948,6.009103,7.050425,2.793394,0.642976,0.297521,0.000000,0.023967,0.000000,0.055372,0.536364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602300.755000,4612845.550000,7793,2705,80.537209,152.966980,156.545486,142.421509,127.636383,116.487617,112.578529,108.347122,105.595055,105.214890,103.652908,115.082664,134.256210,149.611588,158.933914,170.305801,168.669449,156.165298,135.421509,115.371918,102.909103,98.586792,90.363655,65.851257,51.537209,71.000015,92.595055,70.892578,30.933905,11.280183,8.214895,5.621497,6.180179,6.300839,6.488440,2.550421,0.377688,0.142976,0.066942,0.585125,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602304.355000,4612845.550000,7811,2705,86.327293,147.071091,158.806625,145.831421,132.294235,120.806633,117.393410,112.492584,109.195061,108.385147,107.980186,119.153732,137.393402,152.881012,164.376877,172.930588,171.798355,156.914062,137.765305,117.376877,105.186798,99.798370,93.145477,69.054565,55.310760,73.765312,93.616547,72.252914,30.509109,11.423984,8.467789,5.180175,7.196709,6.571088,6.716541,2.711578,0.800828,0.381819,0.210744,0.058678,0.091736,0.000000,0.117356,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602308.555000,4612845.550000,7832,2705,90.368614,154.393402,157.062820,148.046295,132.236374,119.310760,116.137192,112.823143,109.013237,108.054558,108.161995,118.740501,137.004974,153.657867,164.236374,174.153732,172.285965,157.674393,136.963654,117.203308,105.013237,101.004974,94.418198,69.186790,55.575226,72.029762,93.509102,69.236382,32.996716,11.769440,8.583489,7.076044,7.921501,6.710758,7.423979,2.452071,0.831407,0.214050,0.124794,0.042149,0.000000,0.119009,0.589257,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602314.755000,4612845.550000,7863,2705,91.414894,155.158707,160.109116,146.960358,131.803329,119.679359,115.943817,113.042984,109.704147,108.919029,108.042992,119.877701,138.224823,154.340515,165.861176,175.885971,172.704163,158.522339,137.009949,116.753731,104.910759,100.216545,93.290924,68.026466,54.910763,73.547127,94.629768,68.745476,32.249607,13.377704,8.481011,6.041332,6.717370,6.633897,6.723152,2.766120,1.042978,0.210744,0.061984,0.062811,0.042976,0.000000,0.274381,0.329752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602323.355000,4612845.550000,7906,2705,87.270271,158.237198,159.625641,146.485153,133.311584,120.733070,118.840508,114.906624,111.799187,112.270256,111.592575,123.609100,140.914886,158.005814,168.138046,177.766144,174.989288,160.179352,138.700012,118.518188,106.493401,103.733070,97.609100,72.493408,57.906628,73.989273,92.443810,68.262001,31.518200,13.150430,8.873573,8.447119,6.800014,6.639683,7.582656,3.433064,0.186778,0.168595,0.052893,0.347935,0.000000,0.117356,0.208265,0.676860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602330.155000,4612845.550000,7940,2705,87.088448,154.262009,156.394241,146.766144,132.038849,118.352913,117.328117,111.923157,111.460350,110.352913,108.245476,120.666962,138.295074,154.890106,167.328125,177.121521,173.981018,158.402512,137.295074,117.005806,104.815720,101.080185,94.700020,68.840515,55.377705,71.328117,93.700020,68.253738,29.416546,11.807457,8.609111,6.400010,6.077700,6.354558,5.578524,1.980996,0.292563,0.192563,0.000000,0.038843,0.000000,0.000000,0.047934,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602338.555000,4612845.550000,7982,2705,93.709946,156.420685,156.172745,148.742996,131.197556,118.362839,116.933083,113.090111,110.412422,112.420685,109.040520,121.379364,139.809113,157.957870,168.602493,177.445480,175.453735,157.263657,137.519852,117.470276,105.585976,101.701683,95.718208,69.346298,55.511593,72.594231,93.280190,68.891754,32.104977,11.809935,8.701672,7.482656,8.152080,7.733073,6.592573,2.437195,0.257026,0.356199,0.090909,0.314050,0.142149,0.000000,0.060331,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602341.555000,4612845.550000,7997,2705,94.466141,158.804977,158.639694,149.722336,133.887619,118.193405,117.003334,112.953743,111.623169,112.614906,109.697540,122.168617,140.466141,158.209930,169.986801,179.928940,175.036377,159.879364,137.697540,118.226471,106.829773,102.507454,97.309113,70.639687,55.887623,74.325653,94.069443,69.606636,33.317375,12.547951,8.846300,8.660341,7.352080,7.987617,7.351250,2.632236,0.430580,0.014877,0.241323,0.100000,0.096694,0.000000,0.203306,0.000000,0.000000,2.143802,0.000000,0.000000,0.000000,0.000000 -602344.555000,4612845.550000,8012,2705,90.769440,159.943008,158.157883,149.050446,130.719849,117.414070,115.405807,112.463654,110.852089,111.347954,107.273575,120.306633,138.223999,156.455399,168.347961,177.662018,173.323166,157.901688,136.240524,116.257050,104.190933,100.951263,94.918205,67.934731,53.248775,73.819031,93.298370,67.595886,30.952913,11.109108,8.628944,5.897530,6.628111,7.576874,7.090094,2.011574,0.466944,0.076033,0.000000,0.202480,0.180992,0.000000,0.024794,0.393389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602349.555000,4612845.550000,8037,2705,94.390923,164.795883,160.019028,149.283493,133.316544,117.390923,114.200844,112.671913,111.655388,112.903320,109.390923,121.688446,140.523163,158.118210,170.771118,181.432266,176.035583,160.349609,137.688446,117.002495,105.704971,102.316544,97.118195,70.457039,55.961178,74.250427,93.862000,68.134735,31.871920,12.004976,8.828945,10.533898,8.395057,8.138030,5.702490,2.190089,0.446283,0.171075,0.114877,0.093389,0.000000,0.000000,0.131405,0.244628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602357.755000,4612845.550000,8078,2705,108.451271,160.517380,158.360367,149.806641,132.947144,118.533905,117.814903,113.856216,112.120682,114.442993,110.814896,123.021507,141.484329,160.385147,172.938858,183.029770,178.095886,161.781845,139.790115,120.046303,107.451263,103.616539,97.781830,71.674408,56.550434,74.360344,94.790100,70.302505,32.451256,12.296712,8.889276,12.275219,7.085138,7.692576,6.697531,4.299179,0.704135,0.038844,0.000000,0.139670,0.132232,0.000000,0.105785,0.191736,0.000000,0.000000,1.243802,0.000000,0.000000,0.000000 -602365.155000,4612845.550000,8115,2705,99.533905,165.211578,158.897537,150.269455,130.600021,117.533905,114.376877,111.368614,110.723991,115.401672,109.409935,121.889275,140.277710,159.938858,171.666122,182.021500,176.856216,158.409927,136.856232,116.980186,104.566963,102.360352,95.872749,68.748779,53.765305,73.690933,92.319031,68.484322,31.558697,11.317371,8.715721,10.459517,6.038855,6.225635,7.260341,3.023147,0.281820,0.071902,0.000000,0.000000,0.152067,0.019835,0.119009,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602369.755000,4612845.550000,8138,2705,109.388451,170.719025,162.495880,153.644638,132.281006,120.181831,116.074394,112.396713,112.768608,115.760345,110.561996,123.479355,142.140518,161.851257,175.636383,185.281006,179.404968,160.975220,139.264481,118.793404,107.074387,103.702492,99.000015,71.413239,55.793407,76.123985,95.429771,69.520676,34.652908,13.357870,9.000019,11.335552,7.293402,9.495057,8.001663,3.861990,0.912399,0.061985,0.306612,0.139670,0.000000,0.000000,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602375.755000,4612845.550000,8168,2705,96.042992,139.142181,139.968628,129.646301,116.728943,104.241341,101.257866,98.885971,96.100845,97.299194,98.059525,109.142166,128.365311,143.481018,156.348785,165.646301,163.819855,151.728958,127.629768,107.233078,95.894234,92.034729,85.290924,61.770267,45.861176,64.720680,86.943817,65.307457,28.177704,11.498365,7.753738,5.377694,7.126458,7.135549,6.512407,2.423146,0.625623,0.466118,0.066943,0.000000,0.104959,0.000000,0.226447,0.544629,0.000000,0.000000,0.000000,0.000000,0.000000,3.041322 -602385.355000,4612845.550000,8216,2705,101.594246,130.023987,135.354553,126.941345,110.040512,99.123161,96.437210,92.933075,90.891754,90.933075,90.924812,103.561180,121.528122,138.833893,151.197540,162.123154,158.288452,144.875229,123.222336,103.015724,92.387619,87.139687,81.081841,56.726467,41.362823,60.511585,81.858696,64.032249,27.656216,11.794231,7.371094,4.974390,7.405797,7.259516,7.145465,2.757855,0.594217,0.801655,0.224794,0.281818,0.545455,0.322314,1.771075,0.700827,3.528926,3.326447,5.509918,1.223141,0.314050,2.024794 -602401.155000,4612845.550000,8295,2705,114.409935,129.484314,128.748779,119.079346,101.649590,91.211594,88.236382,85.963654,84.649597,83.881012,85.244652,96.038040,116.228111,134.170273,146.459518,156.409927,152.864471,138.707474,116.385132,96.980186,85.732246,82.120682,78.418205,52.533901,36.104149,56.864479,79.955391,61.352081,27.953737,9.216545,7.128945,5.728112,6.906623,5.696702,5.866953,2.645462,1.294219,0.564465,0.156199,0.164463,0.514877,0.533885,0.000000,0.080992,6.338017,0.000000,3.271901,1.286777,3.247934,5.933058 -602409.555000,4612845.550000,8337,2705,111.753738,122.731422,122.045471,106.995880,91.491760,81.285149,76.756218,74.425636,72.367783,72.822327,73.979355,83.632256,101.623985,118.012413,129.037201,135.367783,132.904968,121.863655,101.962837,83.219032,75.549606,72.128113,69.500015,46.185970,30.181009,52.078533,75.169441,58.673573,25.526464,7.569433,6.318201,7.487615,6.951251,9.864477,10.499188,8.230589,1.115705,1.178515,0.349588,0.303306,0.180166,1.012398,0.932232,0.000000,12.914877,7.266943,4.619009,2.783471,2.938843,8.238844 -601685.155000,4612835.550000,4715,2755,143.329758,139.351257,125.045471,110.987617,95.938042,84.260353,81.152916,78.954567,77.838867,79.946304,80.657051,91.169449,109.260345,125.425636,137.698364,147.714890,147.392578,138.219025,117.103325,97.202507,88.491760,84.946304,80.500023,53.351261,35.871922,52.533077,70.855392,53.409111,23.280182,7.728112,7.318201,14.053734,10.170263,10.102493,13.268610,13.734724,4.286786,1.761161,2.129756,1.033060,0.030579,0.772729,0.790083,1.350417,27.950418,15.298349,9.483473,10.299177,13.646283,7.979340 -601687.955000,4612835.550000,4729,2755,135.685974,141.878525,132.432251,117.019028,100.663651,90.415718,86.721504,85.539680,83.862000,85.060349,86.093407,97.118195,114.622337,130.242172,144.242157,153.457031,152.514877,142.514893,120.118202,98.853737,88.688446,85.316544,78.754562,53.432251,36.407459,52.944645,66.647125,49.895061,21.296713,7.790922,7.159523,13.293404,9.863649,12.024808,11.871089,10.459517,2.643807,1.696699,1.023969,0.966117,0.553720,1.232233,0.393391,0.315703,17.709093,8.700828,7.149589,8.971077,9.774382,9.817356 -601692.555000,4612835.550000,4752,2755,129.932236,141.705795,130.342163,117.383492,101.383492,91.259521,88.714066,85.433075,85.218201,85.639687,86.193405,97.259521,115.862831,131.375214,144.441330,153.515701,152.457855,141.110748,118.515717,97.895889,88.152084,84.507454,78.763657,52.110764,37.209934,51.912415,66.474396,47.813244,21.226465,8.233898,7.160350,12.273570,8.209930,9.036378,11.528114,7.647944,2.423145,0.363638,0.503307,0.469423,0.285125,1.013224,0.761985,1.097522,16.147936,8.316530,4.577687,4.349588,3.923968,10.300000 -601698.555000,4612835.550000,4782,2755,120.897545,142.641342,133.872742,122.707458,105.963654,95.401672,93.319031,90.525642,89.980186,90.492584,91.203323,102.418205,120.897545,137.029770,148.748779,158.128922,157.500839,146.211578,123.294235,101.996712,91.542168,87.657875,82.236382,55.137211,39.236385,53.765308,69.558701,50.104153,21.426466,9.559519,7.476053,9.924808,8.663650,8.666957,9.355387,5.619016,1.761989,0.489258,0.533058,0.119835,0.280992,0.105785,0.490910,0.371901,10.163638,5.894216,6.148761,4.278513,4.223141,3.434711 -601705.555000,4612835.550000,4817,2755,132.034714,142.095871,134.310760,123.211586,106.319023,97.104149,94.343811,93.112411,91.393402,93.302490,93.971916,104.087616,123.261169,139.418182,151.955368,161.029755,160.120651,147.583466,124.732246,104.823151,93.996704,89.897537,84.054558,57.633076,40.178532,55.938858,71.079353,51.492580,21.871922,8.274395,7.641342,9.385963,8.952904,9.130593,8.502492,5.580175,0.554548,0.475208,0.863638,0.234711,0.105785,0.111570,0.476034,0.177686,4.618182,4.781819,3.609092,3.951241,4.283472,0.000000 -601713.955000,4612835.550000,4859,2755,110.156219,138.149597,135.480179,123.381004,108.628937,100.546295,95.967781,94.033897,93.381004,94.562820,95.670258,106.752907,125.967781,140.942993,152.876877,162.802490,162.323151,150.298355,126.463646,105.405800,94.827286,92.240509,85.827286,58.314892,40.885143,58.372746,72.414062,52.257042,22.650431,8.676874,7.802499,8.099187,7.909930,8.320675,7.312409,5.500834,1.443806,0.530581,0.260332,0.122314,0.168595,0.329753,0.607439,0.614876,6.470249,7.007439,2.231405,7.133060,6.137191,1.814876 -601723.955000,4612835.550000,4909,2755,112.674393,138.245468,134.923157,125.047119,109.617363,99.923149,97.790916,95.782654,95.047119,96.468605,97.427284,108.749596,125.617363,142.972733,155.865295,164.617371,162.972733,152.171082,127.600838,107.385963,95.890091,92.080177,86.518188,59.443825,42.716549,57.014072,70.840515,51.823990,21.443821,8.447949,7.865309,7.219020,8.071915,7.342989,7.821500,3.266121,0.824796,0.328100,0.485951,0.049587,0.163637,0.000000,0.362811,0.340496,5.845456,3.517356,3.122314,6.025621,3.438017,3.492562 -601727.355000,4612835.550000,4926,2755,103.601669,139.440506,134.845474,124.324814,110.903320,100.911583,98.118202,95.630600,95.713249,96.473579,96.622337,108.316544,126.837212,143.977692,156.994217,165.002487,163.134720,152.093399,129.027298,107.804146,95.547958,92.266968,87.572746,60.126469,43.324818,58.333080,71.771095,52.746300,23.812416,8.785966,7.961176,8.451252,7.998362,7.698362,9.059520,4.147113,0.734713,0.307439,0.166943,0.000000,0.239670,0.000000,0.392563,0.000000,1.890083,1.719009,0.680992,4.471901,4.495868,1.809091 -601730.155000,4612835.550000,4940,2755,115.666130,140.866119,135.361984,123.238022,109.923973,100.328941,97.279350,94.271088,93.816544,95.783485,96.395058,106.411575,125.411575,142.353729,154.560333,164.180176,162.428101,150.568604,126.279343,105.634720,95.601669,91.304146,85.890923,59.279358,41.378532,57.295887,69.973572,50.783489,20.775225,8.130592,7.808283,6.847946,7.222325,8.058691,8.485138,3.571907,0.513225,0.196695,0.376860,0.000000,0.409918,0.245455,0.795869,0.471075,2.961157,3.434711,4.885125,3.446282,5.112398,6.649588 -601734.755000,4612835.550000,4963,2755,100.888443,135.652069,133.594223,121.833893,109.412407,98.908279,96.569443,93.866951,93.891747,95.478523,96.057037,107.668617,125.271912,141.106628,154.106628,162.817368,161.792587,150.900024,126.189270,105.271919,94.701668,90.362823,84.263649,57.784317,41.271919,55.569443,70.073570,51.139690,22.500845,8.500016,7.660349,6.204144,7.068607,7.125633,7.548773,2.488434,0.790912,0.364465,0.157852,0.000000,0.067769,0.730579,0.642976,0.484298,5.558679,2.519835,4.202480,4.099174,0.807438,1.668595 -601742.355000,4612835.550000,5001,2755,119.200020,135.547943,134.159515,122.514893,107.258690,98.936378,94.225632,93.200844,92.795883,93.291748,95.762825,105.754562,123.961174,139.952896,153.035538,161.886780,161.481827,149.027283,125.738029,103.250427,92.514893,89.655388,83.390923,56.597542,40.010765,53.911594,68.333084,49.804153,19.724812,9.748775,7.581011,6.317366,7.362821,7.184310,6.261995,4.026453,1.331408,0.354546,0.285952,0.127273,0.105785,0.028926,0.777688,0.174380,1.094215,5.995042,2.204133,7.091737,9.447935,3.506612 -601750.555000,4612835.550000,5042,2755,109.990929,135.708267,132.766129,124.328117,110.485138,99.923157,97.162827,96.476875,95.534729,96.146301,98.352913,108.220680,126.625641,142.609100,154.799164,163.815689,162.162796,150.898361,127.303322,105.096710,94.609108,90.972748,84.336380,58.352909,40.600849,55.352909,70.038864,51.005802,21.270267,9.042164,7.666961,5.743814,6.908276,7.214890,6.876044,3.168600,1.448765,0.066116,0.303306,0.191736,0.000000,0.184298,0.261158,0.800827,2.832232,2.661157,4.116530,1.356199,4.543802,5.538844 -601753.555000,4612835.550000,5057,2755,129.574387,136.346283,135.916534,123.676865,110.412399,98.701675,97.321510,94.941345,94.329773,96.734734,97.230598,107.569427,125.329758,142.288437,155.304962,164.726456,163.362808,149.999176,126.379341,104.437195,92.734734,89.726463,83.536385,57.147949,39.048775,55.172741,68.255394,50.057041,19.757870,7.514890,7.594234,4.661167,6.328109,6.620674,6.818193,2.663641,0.877689,0.138018,0.012397,0.000000,0.113223,0.000000,0.519009,1.162811,3.677686,4.340497,4.740497,4.481819,0.000000,3.666116 -601756.555000,4612835.550000,5072,2755,124.919022,147.420670,138.238846,124.610756,110.908279,101.181000,97.627281,95.635551,95.189262,96.776047,98.313232,108.139679,127.172737,143.338013,156.329758,164.701660,163.577682,150.850418,127.602493,105.263649,94.379341,89.726448,86.081818,58.081837,40.635559,54.709938,68.577705,49.825638,22.218201,8.311585,7.825639,5.004969,4.995051,6.671088,7.111582,3.027278,0.842978,0.414051,0.005786,0.154546,0.111570,0.000000,0.714878,0.874381,3.800001,4.401654,5.294216,5.174381,3.390909,3.566116 -601761.555000,4612835.550000,5097,2755,135.853729,138.697540,140.011566,127.887619,112.970268,104.259521,100.705803,98.639687,98.325638,98.672745,100.722336,110.986794,128.267792,144.722336,157.829758,167.209900,165.168579,153.028107,128.581833,106.614899,95.342171,91.862831,85.672745,58.631424,42.581837,56.722332,69.705803,53.333904,21.974400,9.109932,7.788449,6.452905,7.867782,6.673566,7.787616,2.320666,0.668598,0.472729,0.118182,0.212397,0.452067,0.000000,0.737192,0.107438,2.893389,4.622314,3.506612,6.256200,1.785124,5.419835 -601769.755000,4612835.550000,5138,2755,126.497528,140.079330,137.079330,128.476044,113.385139,104.062820,100.633072,98.633072,97.409927,99.500839,100.269432,110.186790,128.128937,144.252884,156.947098,166.385117,163.575211,152.451233,127.699188,106.128937,94.831421,90.889267,85.600014,59.277702,41.922337,56.517372,70.244644,51.426464,23.699194,8.596709,7.781837,5.641332,7.064474,6.672741,7.762823,2.971079,0.646284,0.269423,0.025620,0.044628,0.334711,0.354546,0.695869,0.723968,4.819835,5.365290,5.128099,0.618182,3.671075,5.529752 -601778.355000,4612835.550000,5181,2755,140.555405,144.999191,140.214066,131.007446,115.106621,104.561165,101.676872,99.098358,98.668610,101.181000,99.866951,110.453728,127.470261,143.974396,156.974396,164.924820,163.577698,151.685150,127.610756,106.313232,95.255386,91.346291,84.445465,57.007458,41.660351,55.966137,69.734718,52.205803,21.833904,8.257866,7.676879,5.371912,7.033896,6.622327,7.051253,3.671080,1.315707,0.407440,0.379340,0.041322,0.000000,0.000000,0.253719,0.194215,6.648761,1.906612,1.517356,4.004960,5.461984,5.719835 -601781.555000,4612835.550000,5197,2755,135.236374,147.934723,141.579346,129.215714,115.959518,104.471916,101.893402,98.670258,97.777702,100.100014,99.893402,109.711586,126.736374,142.670258,155.042160,163.835556,162.538025,150.769440,126.562820,105.455383,93.703316,90.554558,84.645470,58.190926,41.554565,53.976055,70.323151,51.703327,20.389273,9.695056,7.695060,5.838026,6.425632,6.599185,6.228110,3.010749,1.057854,0.323968,0.686778,0.291736,0.206612,0.523141,0.278513,0.194215,3.070248,4.855373,1.509918,4.738844,4.567769,7.147934 -601784.755000,4612835.550000,5213,2755,136.776871,153.634720,139.006622,131.130600,115.684311,104.717369,101.436378,98.444641,97.907455,99.783485,99.386795,109.791748,126.114067,143.436371,155.320663,162.990082,161.957031,150.221497,126.576874,106.320679,94.188446,89.064476,84.618195,56.676052,40.725643,55.213242,69.064476,52.213242,20.855391,9.554562,7.692581,5.914886,6.661169,7.163650,7.327285,3.476865,0.771078,0.605787,0.192563,0.049587,0.000000,0.128099,0.920663,1.252893,3.001653,7.095042,4.487604,4.252067,10.214876,3.681818 -601789.955000,4612835.550000,5239,2755,151.565308,153.751266,140.280182,131.751251,117.610756,105.569435,102.718193,100.395882,99.734718,102.197533,101.585960,111.660339,128.792572,145.139694,158.511597,167.098373,165.387619,153.693405,129.040512,108.040504,96.900009,92.090096,87.263649,60.800838,43.321507,58.205799,71.420670,53.908279,23.683491,10.114065,7.933077,6.493400,8.278525,9.261999,8.019847,3.930586,0.516531,0.520662,0.280166,0.123141,0.825621,0.000000,0.191736,0.000000,6.984298,2.042149,3.332232,1.996695,1.949587,9.538017 -601797.755000,4612835.550000,5278,2755,144.166138,153.697540,142.920670,131.433075,117.176880,105.350433,101.358696,99.928947,97.623161,100.077705,100.284317,110.796715,127.722336,144.209930,157.168610,165.912415,164.119034,152.185150,128.119034,107.408287,94.267792,91.267792,85.581841,58.457867,42.003323,56.242992,70.829773,52.730595,21.962004,8.719023,7.780185,5.717366,6.962822,6.775218,6.200839,3.821494,1.033887,0.129753,0.103307,0.054546,0.123967,0.107438,0.847109,1.009091,7.145455,3.098347,4.898348,3.920662,8.001654,2.002480 -601804.155000,4612835.550000,5310,2755,148.727295,165.750427,143.444656,132.874405,118.576881,104.965309,102.444649,99.395065,98.800026,101.866135,100.138863,110.709114,128.047943,146.064468,158.246292,167.080994,165.791748,153.833069,128.436371,107.411591,95.791756,91.923988,85.800026,58.585144,41.833076,56.833076,70.998367,52.766960,20.651258,10.085139,7.800019,4.640505,6.914888,6.501667,7.794227,2.458682,1.057028,0.154546,0.237191,0.009918,0.280992,0.000000,0.573554,0.546281,3.038843,2.841323,7.344629,3.832232,5.178513,1.983471 -601810.155000,4612835.550000,5340,2755,146.361145,168.523148,147.200836,136.820663,120.457039,107.142990,104.688446,104.704971,101.862000,105.845467,103.308281,112.936378,129.886795,147.928101,161.159515,169.870255,167.291748,156.126450,131.291748,109.432243,98.985962,93.415718,88.300018,60.738041,44.151260,58.382668,72.448776,54.713245,23.404974,8.784313,8.027292,5.742987,6.482656,7.301666,6.335550,2.627279,0.823970,0.407439,0.260332,0.105786,0.450414,0.000000,1.114051,0.000000,3.260331,2.114876,6.117356,3.342149,4.276860,0.000000 -601817.755000,4612835.550000,5378,2755,131.847946,153.353729,145.122314,132.874390,114.585136,103.791748,101.601669,99.213234,97.667786,98.725632,98.180183,111.213234,128.494217,144.808273,156.890915,165.824799,164.593399,151.353729,125.758682,105.783485,95.147125,91.725632,86.254555,59.337208,42.213245,55.750431,72.510757,51.973572,22.452913,8.825634,7.841341,8.406626,8.009106,7.447118,7.347947,3.473560,1.035539,0.356199,0.339670,0.391736,0.006612,0.041323,0.723968,0.000000,6.152893,1.027273,8.083473,5.488431,5.939670,3.561984 -601827.755000,4612835.550000,5428,2755,132.139679,161.748779,150.889267,134.831406,118.657875,104.608284,104.806633,101.641342,100.881012,101.938866,101.748779,112.021507,129.723984,147.575226,159.881012,167.988449,166.831421,152.071091,127.021507,106.236382,95.558701,92.302498,86.418205,60.294231,43.996708,55.153732,72.525642,53.219849,22.037209,8.608280,7.856218,10.114065,6.316543,6.746293,7.779350,3.628107,1.842978,0.369422,0.172728,0.572728,0.285951,0.005785,0.792563,0.230579,3.882645,3.790083,9.760333,5.139670,7.522315,3.682645 -601830.755000,4612835.550000,5443,2755,117.161987,161.614899,149.342163,133.705795,119.193398,105.581833,104.581833,102.209930,100.209930,101.143814,99.804970,111.788452,129.995056,147.094238,157.920685,167.730591,164.829773,150.846298,125.986786,105.697540,94.350426,91.598358,86.127289,57.738857,41.986797,55.094231,70.879349,52.474396,21.662830,9.775223,7.829772,8.508279,6.823980,6.919021,8.383484,3.020668,1.017357,0.742150,0.076033,0.222315,0.195868,0.319835,0.638844,0.314050,3.749587,8.539672,10.647935,3.476860,5.659505,7.373554 -601835.555000,4612835.550000,5467,2755,132.198364,164.900848,150.471085,134.719009,118.942154,105.586784,104.173561,100.851250,99.933891,99.950424,99.016541,110.826454,128.801666,144.925629,157.024811,165.619858,161.768616,148.776871,124.966949,105.041328,93.553726,90.057861,84.000015,57.024815,40.851261,54.247955,70.413239,52.016548,22.409937,9.409931,7.636384,10.470261,7.943815,8.633073,10.457038,4.983479,1.067771,0.155372,0.660332,0.237191,0.223141,0.558678,0.972728,0.786777,7.036365,5.447935,9.680168,7.525620,2.644629,0.000000 -601842.355000,4612835.550000,5501,2755,159.108276,172.330612,150.041351,134.561996,118.991745,104.553726,105.148773,101.429771,99.768608,101.975220,99.438034,111.561989,129.487610,145.950439,157.917389,166.619873,163.719040,148.818207,125.636375,104.991745,93.181839,90.024818,84.818207,57.082661,40.942165,54.132248,70.528938,53.983486,23.499191,10.100015,7.710763,12.296710,8.224806,9.332247,7.971088,5.721497,0.933060,0.272728,0.235537,0.171075,0.257025,0.006612,1.062811,0.755372,7.008265,11.372728,3.265290,4.654546,3.655372,13.398349 -601847.555000,4612835.550000,5527,2755,167.524811,171.318192,147.987625,137.524811,119.161171,105.152908,104.747948,100.747948,100.260345,102.334724,99.061996,110.260345,128.053741,145.508286,157.475220,166.144638,161.987625,148.177704,125.012413,104.838860,92.078529,89.731422,84.409103,56.235558,40.384319,52.995892,73.012413,53.210766,22.217375,8.476874,7.673573,10.819023,6.785137,8.471913,9.209105,4.642984,0.857854,0.409918,0.056199,0.125620,0.089257,0.252893,0.718183,1.890083,8.166117,7.430579,4.604959,4.364464,6.888431,3.883471 -601854.755000,4612835.550000,5563,2755,186.252060,185.177689,151.342987,138.070251,120.119850,103.731422,103.756218,100.400841,99.756218,102.053734,98.210762,109.450432,127.590927,145.119827,157.524811,166.301666,162.458694,146.491730,122.979355,104.524811,92.367775,88.971085,84.136375,55.615719,40.962826,54.995884,69.962830,51.020676,23.690102,8.905800,7.648779,15.314066,8.249600,8.133899,9.096709,4.716537,1.957855,0.481819,0.382646,0.200827,0.000000,0.000000,1.177688,0.507439,12.280167,5.871902,5.440497,7.616530,4.945455,5.719009 -601865.355000,4612835.550000,5616,2755,170.753723,186.927277,155.952072,144.084305,123.530586,109.563644,107.828110,105.059517,105.489265,109.547119,102.919022,114.241333,131.166946,149.596710,161.770264,171.720673,166.497528,149.290924,128.547119,107.282654,95.414894,92.885971,87.836380,59.522331,44.051262,59.861176,73.431419,50.613239,24.341341,9.623157,7.985143,17.016548,8.372742,9.390923,9.113238,5.185135,0.477687,0.502481,0.678514,0.219835,0.224794,0.293389,0.467769,1.481819,13.751241,9.252068,4.539670,4.156199,5.392563,10.205786 -601872.955000,4612835.550000,5654,2755,146.485138,166.207458,148.033890,135.347961,119.438858,106.166130,104.339684,101.744644,100.860344,103.604149,100.686790,112.290092,129.819016,147.612411,160.686783,169.736374,165.604141,150.504974,127.513237,106.397537,95.529762,92.852081,87.645470,58.794231,43.711590,59.042164,74.430603,53.190929,23.984314,9.498363,7.967788,12.956213,7.043815,7.502491,8.181004,5.631414,0.695870,0.757026,0.477688,0.253720,0.037191,0.014876,0.628927,1.066116,19.995045,2.061157,7.097522,3.432232,1.186777,6.298348 -601875.955000,4612835.550000,5669,2755,126.098358,144.500000,139.557846,126.971092,113.657036,101.566124,98.351257,98.483490,97.814056,98.433891,97.863647,109.260338,128.037201,144.632233,158.714874,166.376038,163.938019,151.524796,127.301666,105.913231,95.351250,91.136375,88.045464,59.194237,44.838863,60.119854,76.152916,57.169441,24.838861,10.045470,8.004151,7.602490,8.149602,9.414890,8.986790,5.820672,1.339672,1.679342,0.322316,0.173555,0.144629,0.242149,1.313224,0.595042,5.308265,2.800000,0.995041,3.788430,6.901654,3.715703 -601880.955000,4612835.550000,5694,2755,121.313240,144.352921,138.476883,124.675217,109.584320,100.344650,98.171097,94.625648,94.724823,95.881844,95.873581,106.253746,124.708282,141.865311,153.228958,162.179352,159.989273,147.030609,123.576050,102.336388,91.832260,89.427299,84.972755,57.303322,42.468613,57.435555,73.782669,53.609108,23.633902,9.102494,7.724812,8.316543,6.748776,9.954559,9.471088,9.800014,3.527278,0.552067,0.999175,0.470249,0.104133,0.111572,0.096694,0.821488,13.123141,4.807439,4.100001,2.234711,0.906612,0.000000 -601886.355000,4612835.550000,5721,2755,139.676880,144.847122,132.144638,121.326462,106.086792,95.913239,93.491753,91.194229,90.946297,91.169441,92.367783,103.500015,120.814064,137.681839,150.417374,159.971085,156.814072,143.103317,120.185966,97.772743,87.764481,84.838860,80.681831,53.731422,38.152912,54.557873,71.450432,52.475224,22.676052,8.589271,7.334730,9.293403,6.750426,10.433900,11.053735,11.262823,2.593393,1.065291,0.774382,0.642977,0.135538,0.355373,0.504960,1.711572,18.576862,14.002481,6.723142,11.680994,12.917357,10.465290 -601890.555000,4612835.550000,5742,2755,145.420685,148.509933,136.981003,121.584305,108.005798,96.956207,92.328110,89.997528,90.427284,90.832245,90.443810,102.088440,119.931412,137.055374,149.642151,158.666946,155.914886,142.823975,118.766129,97.840508,87.253731,85.113235,80.790916,54.427296,38.121510,54.906631,73.468613,53.807461,23.589275,9.254559,7.344647,13.104149,7.493401,9.492576,9.784312,9.524805,3.423975,1.731408,0.639671,0.682646,0.399175,0.952894,1.214879,2.661160,32.738850,18.933062,7.328101,8.755373,5.261158,13.927275 -601894.955000,4612835.550000,5764,2755,167.310776,155.062820,135.442993,120.971916,105.310768,94.046303,90.071098,86.814896,87.525642,88.228119,89.236382,99.773575,117.641335,134.319016,147.525650,153.847946,153.600006,140.500854,116.153732,96.095886,84.434731,82.368614,78.236382,53.550430,37.195057,53.566959,71.418205,52.806629,26.158695,9.457038,7.112416,13.446296,9.004145,12.339685,12.892577,12.205798,4.360340,2.376039,0.851242,0.579340,1.137192,2.727275,1.352896,3.344631,32.362812,14.738019,19.327276,7.004133,8.654547,25.046282 -601900.155000,4612835.550000,5790,2755,137.381821,135.668610,128.230591,115.817375,100.742996,90.230598,86.999191,85.784317,84.304977,86.172745,85.395889,96.387619,114.941345,131.511597,144.858688,151.247131,150.776047,137.718201,115.040512,93.825638,82.313240,79.371094,74.990929,50.238861,34.693409,52.916550,65.999191,48.850433,24.276878,8.698360,6.817374,13.490926,9.737203,10.261173,12.185138,15.678529,4.400834,2.709096,1.317358,0.533885,0.758679,0.899174,2.323970,7.017360,44.181824,29.560335,15.946283,21.138021,28.433062,12.176861 -601904.955000,4612835.550000,5814,2755,148.628098,136.185944,129.334732,116.747948,99.276878,90.433899,87.657043,84.260345,84.723160,86.227287,87.615715,97.673561,116.144646,133.012405,145.822311,153.681824,152.706604,139.037186,114.665306,94.607452,84.260345,81.590935,76.500023,52.004154,35.731426,53.169441,67.136383,48.351261,22.876879,7.161994,6.954565,9.855385,9.062825,9.611585,10.995880,9.415715,4.998354,1.214879,1.850417,1.245456,1.149588,1.316530,1.484300,2.071903,32.275211,25.226450,19.122316,11.916533,19.052069,24.009094 -601910.955000,4612835.550000,5844,2755,193.136383,156.954559,134.781006,121.847107,105.995865,93.640503,89.400841,86.524803,84.665298,86.871910,86.789261,96.714874,113.971077,130.376038,143.070267,151.037201,150.285141,138.483490,113.995865,92.409096,82.004143,80.789261,75.409096,49.938038,34.503326,53.012417,67.557869,48.863655,23.278532,9.181005,6.855392,11.790924,9.411583,10.595057,14.813239,12.644640,5.162818,2.642153,4.141327,2.024796,1.527276,1.252068,3.966121,3.597525,44.108273,29.125624,23.051245,18.655376,25.396698,17.666945 -601914.155000,4612835.550000,5860,2755,158.556198,141.448761,126.349594,112.779343,97.994225,88.176041,85.159508,82.556206,81.564468,84.539673,84.283478,94.828934,111.481834,127.506615,139.200836,149.052078,147.729752,135.547943,111.977692,92.448769,81.622322,77.771080,73.936371,49.076881,35.448780,49.490105,64.928116,48.845478,21.950432,8.643814,6.721507,12.683486,7.896708,10.779354,13.609932,12.252906,5.586788,2.664470,3.172733,1.956202,2.051243,2.844632,3.290087,4.328104,38.471909,26.833065,22.302485,20.610746,19.434713,35.576859 -601939.555000,4612835.550000,5987,2755,152.856232,146.733078,134.509949,123.947952,106.658699,94.741341,91.823982,87.559525,86.237206,88.509933,86.923157,97.947952,116.757866,133.567795,145.931427,154.419037,153.947952,141.501678,119.278534,98.394234,86.303329,83.005806,76.881844,50.782661,34.228939,53.154568,74.724823,57.981014,23.840513,7.602493,6.989275,6.854560,8.008278,8.589270,10.142162,6.283482,2.155377,0.699175,0.710746,0.501654,0.231405,0.203306,1.514878,2.207440,18.887604,14.316530,7.248761,15.896697,12.506614,22.487606 -601945.755000,4612835.550000,6018,2755,155.391754,149.711578,136.909943,126.066963,112.438866,99.554565,95.736382,93.116547,92.149605,93.703323,93.463654,103.075226,122.347954,138.480179,150.579346,160.347946,158.447113,146.471909,123.810768,103.199196,90.802498,87.422333,81.645477,55.992580,39.281834,56.835556,76.620682,58.331421,25.761175,8.905800,7.422333,6.501666,6.352078,6.960342,7.500011,3.942983,1.252069,0.285951,0.485125,0.334712,0.254546,0.323141,1.599175,1.081819,11.871902,9.238844,7.481820,5.387604,8.185951,13.505786 -601949.955000,4612835.550000,6039,2755,139.147949,151.650421,139.022324,129.691757,115.873573,103.303322,98.559525,96.394234,94.452087,96.989273,95.303322,106.088448,124.047127,140.369431,154.162827,161.716537,160.757858,148.989273,126.584312,104.633904,92.567787,89.857040,84.063652,56.625641,40.022331,57.914898,79.154564,60.741344,26.989277,9.521503,7.642168,6.363648,7.941337,6.240506,6.302489,6.619844,1.290911,0.207438,0.088430,0.371902,0.055372,0.042976,0.543802,0.823141,10.500002,7.593390,6.991736,3.152893,4.087604,3.755372 -601954.955000,4612835.550000,6064,2755,135.866959,160.974396,145.379364,134.114883,117.858696,105.404152,102.759521,100.486794,98.304977,100.784317,99.602501,110.759521,128.321503,145.338043,158.205811,168.139694,166.131424,153.313248,129.718201,110.271919,97.486794,93.561180,88.263657,61.172741,44.247128,60.627289,80.685143,62.445469,27.032253,11.451257,8.023986,6.138854,6.716543,8.497534,7.364476,4.310751,1.190085,0.526447,0.255374,0.057851,0.067769,0.108265,0.000000,0.522314,3.514050,3.291736,1.727273,5.138017,6.455373,0.000000 -601962.755000,4612835.550000,6103,2755,155.707428,170.195038,152.938858,139.699188,125.633072,112.170258,109.467781,107.459518,106.409935,108.996704,107.509102,118.996704,137.004974,155.476044,167.971893,177.542145,176.095871,163.343796,138.500839,117.261169,104.798363,100.294228,95.509102,67.071091,50.195061,66.219849,84.046303,65.153732,29.310762,11.477703,8.682663,6.381827,8.688444,8.182658,8.127287,3.157858,1.237192,0.595043,0.562811,0.173554,0.052893,0.283472,0.538843,0.000000,10.530581,5.789257,2.744628,2.856199,3.372728,0.000000 -601970.755000,4612835.550000,6143,2755,150.122314,169.692566,152.287598,141.824799,126.882652,113.552071,110.973557,109.841331,107.750420,111.171906,110.188438,121.279343,138.849594,157.312393,171.122314,180.866119,179.171906,164.965302,141.196701,119.841331,106.733894,103.601662,98.254555,68.519020,51.494232,67.948776,83.709099,64.576881,28.907457,10.692577,8.932251,5.781001,6.233899,6.242161,7.537203,3.375213,0.575208,0.209918,0.202480,0.056199,0.564464,0.388431,0.403306,0.000000,4.900827,1.203306,2.109091,5.180166,2.148761,0.000000 -601976.155000,4612835.550000,6170,2755,138.084305,171.018173,154.216522,144.150406,127.745461,113.687622,112.158699,110.009933,108.530594,111.125641,110.200020,121.695885,140.183472,158.034714,171.018173,181.481003,178.555374,166.290909,140.340485,119.770264,106.795059,102.795059,98.745476,71.249603,54.266132,69.340515,86.687622,65.191750,27.266136,11.545473,8.976879,7.914888,7.022328,7.306625,8.766955,2.997527,1.209920,0.519009,0.174381,0.122315,0.061984,0.265290,0.086777,0.348760,1.118182,2.115703,2.961157,0.596694,3.683471,2.042975 -601979.555000,4612835.550000,6187,2755,132.304153,160.003326,153.424820,137.482666,122.176880,110.466133,108.598366,107.193405,105.937210,106.623161,106.408287,117.986794,138.366959,154.829773,167.482666,176.970261,175.771927,160.747131,135.383484,114.771919,103.838036,101.590103,94.763657,67.168617,51.234730,65.970268,83.557045,61.176880,26.066133,11.590099,8.614895,9.301666,7.195882,7.100842,7.066129,3.528107,0.852068,0.190083,0.093389,0.040496,0.371902,0.156199,0.561984,0.640496,4.503306,1.027273,0.872727,3.458678,0.000000,1.961157 -601984.555000,4612835.550000,6212,2755,132.689270,166.854553,155.069427,139.895874,124.986786,113.383484,112.276047,109.102493,108.234718,109.094223,110.011581,121.590096,140.581818,157.614883,168.928925,179.383469,178.449585,163.995041,137.689255,117.176872,105.424805,103.383484,99.400009,69.945473,53.317379,68.895889,84.788429,62.540520,29.829771,13.014067,9.036382,10.709106,7.099188,8.288443,8.174393,3.214884,0.839671,0.394216,0.116529,0.261984,0.091736,0.423968,0.517356,0.000000,1.136364,2.404132,3.828926,0.000000,3.278513,2.072727 -601992.555000,4612835.550000,6252,2755,144.811584,167.454559,156.636383,143.413223,128.264465,115.942154,114.636375,112.545464,111.876038,112.818192,111.694221,122.884315,142.595047,160.429764,172.504150,182.322327,179.727295,164.876053,140.256195,118.338852,107.636375,104.603317,99.727287,71.413239,55.330597,69.561996,84.892578,62.123985,28.232252,12.254563,9.066133,10.195882,8.738033,9.401666,7.704144,4.287611,1.472730,0.247935,0.394215,0.045455,0.131405,0.495868,0.186777,0.000000,4.622314,0.000000,1.843802,11.197522,5.658678,2.065289 -601999.555000,4612835.550000,6287,2755,126.577705,168.536362,155.247131,144.040512,128.941345,115.462006,115.585968,111.833900,112.271919,113.990929,112.338036,125.172745,142.809113,161.891739,173.941330,183.693390,181.057022,166.767776,140.495056,119.238861,108.486794,106.106628,100.445473,72.866959,56.362831,70.123161,86.883492,63.214069,28.908283,11.414068,9.131424,9.995884,6.444642,7.500841,7.781832,2.525626,0.249588,0.222315,0.123141,0.052066,0.163637,0.246281,0.000000,0.000000,2.597521,0.000000,0.842149,1.800000,1.108265,0.000000 -602008.955000,4612835.550000,6334,2755,147.020676,182.028946,160.698364,148.483490,131.508270,118.450424,117.409096,113.516541,114.681824,116.417366,114.260338,125.648766,144.599182,162.359528,174.954559,185.458694,182.409103,166.698364,142.318192,121.904968,110.384308,107.004143,100.772736,73.400841,56.161179,71.690102,88.276871,63.855392,27.367788,11.825636,9.161176,9.746296,6.974394,7.628939,7.668609,4.833894,0.965292,0.312397,0.233885,0.136364,0.000000,0.199174,0.000000,0.000000,3.579339,3.529753,2.099174,2.995868,0.000000,1.994215 -602017.555000,4612835.550000,6377,2755,143.618195,180.039658,161.337204,151.006622,135.808273,120.494232,119.411583,116.535553,116.262825,120.395058,115.841339,128.304153,145.890915,165.485947,178.080978,186.378510,184.601639,168.428085,144.874390,122.444641,112.609932,109.287621,104.527290,75.238029,57.386799,74.039680,87.618202,63.072750,29.676054,12.676050,9.502499,11.550429,7.147122,8.133071,6.937202,3.996703,0.704961,0.169422,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,8.119009,0.000000,0.000000,0.896694,1.158678,4.512397 -602029.555000,4612835.550000,6437,2755,162.598389,195.689255,169.879349,157.838043,138.970261,125.970261,123.590096,121.391747,121.681000,126.846291,120.557037,132.995056,150.333908,168.672745,181.846283,192.755386,188.647949,170.780167,147.499191,126.681000,115.292580,112.590103,107.400017,77.333900,61.705799,79.094231,91.400017,63.408279,32.342167,13.057868,9.763655,11.376048,7.436376,9.071916,8.578526,4.190092,1.335540,0.234712,0.123141,0.124794,0.000000,0.109918,0.000000,0.051240,0.000000,2.197521,1.078513,0.974380,0.000000,4.598347 -602048.555000,4612835.550000,6532,2755,114.164474,159.307449,162.001648,149.836395,135.935562,125.423149,124.216537,120.604965,121.282654,121.414886,122.770256,132.555374,153.067795,168.861145,181.613251,189.580154,187.745453,175.456223,150.125641,128.175217,116.819847,112.927284,108.563644,81.447952,64.952087,78.737206,92.266136,68.414902,32.439690,11.894233,9.869441,6.046294,6.952082,6.961171,7.653732,3.252072,0.192563,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.355000,4612835.550000,6686,2755,113.786797,161.906601,166.204132,155.766113,139.881851,130.435562,127.328117,125.344643,124.898361,127.609108,127.270264,138.005814,156.286774,172.790909,185.931396,194.278503,191.782639,179.650406,153.666931,132.881836,121.336380,115.898361,111.245476,84.262001,67.336388,82.427292,94.071922,69.823982,33.840515,12.767787,10.113243,6.042161,7.176049,7.591750,7.341335,2.506617,0.798349,0.272728,0.226447,0.052066,0.028099,0.028926,0.000000,0.000000,0.000000,2.280165,0.000000,0.000000,0.000000,0.000000 -602104.155000,4612835.550000,6810,2755,125.633896,163.658691,166.146286,155.121490,139.509933,130.890091,128.394226,127.898354,126.476868,129.857040,129.038849,139.708267,157.038849,174.171082,185.890091,194.700012,194.121490,180.799179,154.857040,132.501663,120.278519,116.914886,112.154556,85.311577,67.369446,80.890091,95.724800,70.369431,31.212416,12.428117,10.195887,5.004970,7.271090,7.323982,5.956210,3.292568,0.433885,0.119009,0.034711,0.058678,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.971075,0.000000,0.000000,0.000000 -602128.155000,4612835.550000,6930,2755,152.529770,175.595871,167.108261,159.571091,143.852066,132.100006,129.422333,128.827286,128.835556,131.190918,130.637207,141.645447,158.133072,175.174393,188.265305,196.885132,196.480179,183.323151,157.951233,134.678513,122.934723,120.653732,114.009102,86.959526,69.909935,83.455391,96.405800,72.571098,32.455387,13.734729,10.364483,6.556210,7.828115,8.401668,7.596710,1.808270,0.943803,0.333885,0.328100,0.124794,0.107438,0.113223,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602140.955000,4612835.550000,6994,2755,141.105789,186.535538,172.180161,161.957016,145.221481,132.651260,131.254562,128.444641,127.320679,130.560349,129.271088,140.279327,158.609909,176.824799,188.080994,197.262817,196.221497,182.874390,157.957016,135.502487,122.948776,119.378525,114.618195,86.461174,70.262825,84.147125,100.039680,73.163651,33.824810,13.862001,10.419854,7.281831,7.161997,8.347949,10.109106,5.040504,1.019010,0.115703,0.210744,0.121488,0.080992,0.044628,0.290909,0.062810,1.561984,0.000000,0.000000,0.000000,0.000000,2.208265 -602145.755000,4612835.550000,7018,2755,105.385963,179.852097,175.860367,159.645462,141.480179,127.447121,126.670258,123.471916,122.215714,124.025635,123.314888,137.066956,157.042160,173.504990,186.248795,197.025650,196.538040,180.083496,156.430588,133.587616,121.885139,117.893402,113.372742,85.157867,67.381020,84.488441,102.447121,72.959518,34.959530,11.938034,10.306630,9.834726,6.795882,7.697535,11.532247,4.356206,2.080169,0.317356,0.957026,0.060331,0.135537,0.177686,0.000000,0.142150,1.474380,0.000000,2.601653,1.707438,0.000000,2.165289 -602151.755000,4612835.550000,7048,2755,121.221504,178.830582,171.582642,154.921494,138.566132,127.491753,127.690102,124.227287,122.772743,124.318199,122.433899,135.847122,155.838837,173.880173,186.351242,195.309921,194.268600,179.351242,155.698349,132.590927,120.574394,118.764481,114.409103,84.574394,68.342995,84.243820,102.037209,75.202492,37.144650,12.766960,10.400846,9.591752,6.785965,7.081832,8.228941,5.216537,0.614878,0.134711,0.252067,0.295042,0.000000,0.036364,0.000000,0.138843,0.587604,0.000000,0.000000,1.126446,0.123141,0.000000 -602155.955000,4612835.550000,7069,2755,132.905807,179.228119,174.120697,159.145477,140.633087,129.071091,128.765305,125.740509,124.029762,124.947121,125.095879,137.980194,157.550430,175.856232,187.542145,197.492569,196.277695,180.467789,156.881012,134.757050,123.038033,119.376869,113.781830,84.236374,67.971924,84.814888,102.699188,72.947128,35.583488,13.995886,10.343821,10.266130,8.846295,7.869435,8.623155,4.343810,0.520662,0.427274,0.062810,0.266943,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.232232,0.000000,0.000000 -602159.955000,4612835.550000,7089,2755,132.206619,185.132248,175.909088,164.545456,143.338837,129.776871,130.446289,126.528931,125.041328,126.867775,124.314056,137.942169,159.132233,176.561981,188.545471,199.537201,197.371918,181.322311,157.404953,134.867783,122.115707,119.413231,114.272736,86.157043,69.115730,83.842995,101.314064,74.289284,35.355389,12.741340,10.388448,9.855388,8.694231,7.768609,10.815716,5.163644,1.064465,0.490910,0.086777,0.276034,0.066116,0.060331,0.266943,0.001653,1.364463,0.000000,0.000000,0.888430,0.000000,0.000000 -602165.355000,4612835.550000,7116,2755,129.639679,186.808273,179.485962,165.477676,143.915695,131.163635,130.337204,127.667778,125.882652,126.535545,126.328934,139.816513,158.940491,177.188431,189.419846,200.775208,199.114059,181.494217,159.262802,135.378525,123.014885,120.709099,116.527283,86.932236,70.031418,88.039673,102.890915,75.816544,36.469440,13.900018,10.593406,13.900843,8.136379,10.397535,9.473567,4.397529,1.525622,0.692563,0.659505,0.000000,0.092562,0.352067,0.010744,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.155000,4612835.550000,7150,2755,133.834732,190.004974,176.790100,164.277695,146.186783,131.517365,131.682663,125.823151,125.839684,128.211578,125.740509,137.723984,158.319016,176.533890,189.740509,200.145462,196.814896,182.302490,158.277695,135.095886,123.831421,121.790092,116.690926,87.186790,71.170258,87.583481,101.418198,74.352081,35.145477,15.109935,10.608282,13.995057,9.304148,10.477700,10.937206,6.429763,1.782647,0.724795,1.042150,0.300827,0.280166,0.000000,0.000000,0.270248,0.000000,1.314876,0.000000,4.885951,0.000000,0.000000 -602176.755000,4612835.550000,7173,2755,115.356216,167.430588,164.397537,153.860336,140.033890,126.678535,123.471924,119.488449,117.868614,120.215721,118.471924,130.662003,148.670258,167.496704,179.728119,190.628937,186.744644,171.827286,148.744644,127.232254,115.356216,112.306633,107.100021,80.389275,63.331425,81.116547,100.273575,74.959526,34.455395,11.234728,9.736383,6.190918,6.314064,6.599185,6.983483,3.442154,0.680167,0.168596,0.266942,0.135538,0.000000,0.113224,0.000000,0.000000,1.612397,2.914050,0.000000,1.109918,0.000000,0.000000 -602180.955000,4612835.550000,7194,2755,111.698364,170.491760,165.450439,155.376053,139.334747,125.103325,124.640511,121.607452,119.004150,121.185966,119.533073,131.111588,149.392578,167.458710,180.202515,191.095062,188.450424,172.789291,149.574402,128.276871,116.169441,112.309937,106.590927,81.268608,64.227295,82.359520,101.169441,75.590927,34.971092,14.171917,9.690102,5.300008,8.756214,8.083483,6.976871,3.691742,0.939671,0.219835,0.129752,0.052066,0.162810,0.060331,0.000000,0.296694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602187.355000,4612835.550000,7226,2755,119.871086,163.953735,163.912415,153.259521,140.069443,126.358688,123.722328,120.804970,119.424805,121.846291,119.466125,131.003311,150.424820,167.581833,180.433075,189.573578,188.028122,171.590103,148.606628,128.416534,116.242989,112.201668,108.036377,80.722336,65.391754,82.350433,99.366951,75.482666,36.466137,14.132250,9.821507,7.362821,7.592576,7.619020,7.213234,2.766946,0.947109,0.315703,0.040496,0.121488,0.021488,0.000000,0.157851,0.000000,0.000000,0.000000,3.749587,0.000000,0.000000,0.000000 -602196.955000,4612835.550000,7274,2755,100.919846,157.366119,161.126450,153.630585,136.870255,126.126457,123.035553,119.324806,117.787621,118.870262,117.671913,129.440506,146.721497,163.324799,176.630585,184.762817,182.622314,168.952896,146.027283,124.738029,114.060349,109.523155,105.663651,79.324806,64.671921,79.333069,96.804146,73.225639,33.349602,14.143821,9.605804,4.934721,6.804973,6.620673,5.759515,2.491740,0.618183,0.102480,0.100827,0.238017,0.101653,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.555000,4612835.550000,7317,2755,98.434731,155.284317,163.085938,152.920685,137.474380,125.895882,122.251251,119.276047,117.887611,118.135551,118.771912,127.796707,147.325638,162.780151,173.945480,182.598373,180.242996,168.631393,144.342163,123.069435,112.705795,108.284309,103.763649,79.598358,64.234734,79.647942,95.515717,71.441345,32.937206,12.252085,9.433078,5.121497,7.976874,6.044640,4.570257,3.142154,0.980168,0.008265,0.165289,0.066943,0.000000,0.000000,0.188430,0.423141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.555000,4612835.550000,7357,2755,100.979355,146.814072,153.830597,147.458694,130.880188,120.756218,116.805801,110.632248,110.177704,110.037209,108.756218,120.086792,137.995880,152.747955,162.822327,172.442169,171.400848,158.549606,138.334732,117.830597,106.747948,101.574394,94.136383,69.219032,57.028946,75.309937,94.409103,71.400848,32.855389,12.297538,8.557871,4.699181,6.398360,5.713233,4.239680,1.529755,0.583472,0.026447,0.176033,0.039670,0.000000,0.000000,0.441323,0.000000,0.000000,0.000000,1.161157,0.000000,0.000000,0.000000 -602217.755000,4612835.550000,7378,2755,77.850433,136.647949,156.209915,145.259521,130.730591,119.143822,116.490929,113.226463,110.730598,109.623161,109.482666,119.697540,137.499191,152.342148,162.796692,171.507462,170.573578,159.251236,137.755386,118.201675,106.565308,102.970261,96.854553,72.259521,56.887623,75.190933,95.232246,71.918205,33.777702,13.109936,8.804978,3.376041,5.824808,6.310755,5.985962,2.300830,0.834713,0.000000,0.104959,0.042976,0.031405,0.104133,0.038017,0.138017,0.000000,0.000000,0.000000,0.000000,0.078513,0.000000 -602222.955000,4612835.550000,7404,2755,92.533073,151.733063,159.468597,150.096710,134.138031,121.757866,119.245476,115.419029,112.460350,112.757866,112.262001,122.526466,140.865295,156.237198,167.179352,175.385956,173.642151,162.104965,140.402496,120.278534,109.443817,104.848778,98.063652,73.138031,59.964485,77.683487,96.592583,72.964478,33.509937,11.942992,8.914896,5.035546,7.322329,7.257864,6.406624,2.106616,0.638018,0.026447,0.049587,0.107438,0.000000,0.120661,0.259504,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.755000,4612835.550000,7428,2755,86.020683,140.442154,154.243805,146.855377,131.309921,121.293396,115.607445,110.962814,108.665298,108.144638,108.095047,117.888435,135.814072,151.582642,162.615707,172.863632,169.814056,157.566116,136.739670,116.053726,104.202484,99.334717,92.227280,68.268616,54.690102,73.838867,95.359512,70.896721,31.747952,11.679357,8.384317,4.419842,4.951253,6.303319,5.360340,1.995047,0.397522,0.254546,0.197521,0.009091,0.071075,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.161984 -602231.355000,4612835.550000,7446,2755,94.182655,149.911575,156.440506,147.713226,132.093399,120.903313,116.432243,112.159515,109.688446,109.085136,108.019020,118.465302,136.126465,151.390915,162.374390,172.671906,170.531418,158.357864,137.242172,116.795883,105.068604,100.919846,93.572739,67.985962,56.134724,74.250427,97.473572,72.977699,33.557869,12.606630,8.506631,4.408273,5.736377,8.297536,7.016541,2.960337,1.139672,0.396695,0.000000,0.120662,0.108265,0.061984,0.000000,0.537190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602236.555000,4612835.550000,7472,2755,86.171913,142.204987,154.849594,144.304138,128.328934,117.188438,114.874397,109.849594,107.328934,107.171913,106.262817,116.502495,134.981827,150.775208,161.072739,171.238022,169.295868,155.932236,135.750443,115.973572,102.700836,98.634720,92.709099,67.601669,54.130596,73.328941,94.081001,71.403320,32.866135,11.356215,8.428119,5.174388,6.011583,6.197534,4.465299,2.380997,0.428927,0.407439,0.073554,0.010744,0.020661,0.055372,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602245.155000,4612835.550000,7515,2755,74.942986,142.620667,159.240509,146.124802,130.951248,119.752907,115.480179,111.678528,109.331421,107.571091,107.562820,118.372742,135.769440,152.058685,164.182663,172.670242,171.025635,158.604141,136.885132,117.075218,104.620674,100.695053,94.645470,68.802490,54.620678,72.314888,95.182655,72.909927,31.397541,11.231421,8.604151,4.223975,5.953731,5.780178,5.095051,3.677693,0.588431,0.092562,0.092562,0.017356,0.109918,0.000000,0.120661,0.001653,0.000000,0.000000,0.000000,1.050413,0.000000,0.000000 -602253.355000,4612835.550000,7556,2755,77.584312,146.914902,157.890091,148.154572,130.658691,120.815712,116.881828,111.906624,109.642159,109.443810,108.749596,119.782654,137.906616,152.782669,163.377701,172.906601,170.625626,158.385956,136.485153,117.691742,105.642159,100.790916,94.336372,68.989273,55.567791,73.774399,93.848770,70.600845,32.352913,11.965307,8.576053,4.695876,6.048774,6.388443,7.202490,2.876864,1.105786,0.214050,0.123967,0.038017,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.355000,4612835.550000,7571,2755,76.564484,143.266968,156.506622,144.903336,131.019028,119.928123,115.944641,110.886795,108.291748,108.630592,106.878525,117.407455,135.035553,150.870255,160.647110,170.597534,169.622314,156.944641,135.721512,116.035553,104.151253,98.845467,91.663651,68.010765,55.564484,75.142990,92.754562,70.366135,32.333076,12.278530,8.333076,6.567779,5.243815,7.633071,6.502491,1.678517,0.412398,0.061984,0.000000,0.117356,0.022314,0.061984,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602259.755000,4612835.550000,7588,2755,76.900841,142.669418,158.421494,145.966949,131.380188,121.074394,116.462837,112.016556,109.710770,108.297546,107.760353,118.049606,135.528946,150.727280,161.867767,171.537186,170.421494,157.495865,137.603302,117.256226,104.140511,100.165306,92.818199,68.157051,54.735561,75.471100,95.966957,72.578537,33.677704,13.873572,8.438036,5.457034,6.913238,7.573568,6.207449,2.766122,0.291737,0.165290,0.084298,0.203306,0.000000,0.000000,0.059504,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602265.155000,4612835.550000,7615,2755,79.776054,143.007462,154.602493,142.726471,128.379349,116.776047,113.817368,109.652077,106.205795,104.883484,105.040504,116.048775,133.528107,148.156219,158.742996,168.742996,166.519852,153.205811,132.759521,113.445465,102.147942,97.222328,90.718201,66.114899,53.486797,71.627281,91.230591,69.214066,30.607458,10.066959,8.247127,4.933066,6.683486,5.815715,5.846290,4.380999,0.460332,0.142976,0.090083,0.077687,0.186777,0.057025,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602272.555000,4612835.550000,7652,2755,76.362831,142.817352,154.949585,146.858688,132.114883,121.974388,118.065300,114.338028,111.751251,110.767776,111.106621,121.214058,138.486786,155.172729,165.172729,174.015701,171.792572,159.007446,137.486786,118.800835,106.536377,103.495056,96.445465,72.222336,58.032249,74.181007,93.776047,69.329765,30.833902,13.642994,8.767788,5.630588,7.432246,6.104971,5.929763,2.364468,0.861985,0.083471,0.038017,0.105786,0.133885,0.000000,0.660331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602277.355000,4612835.550000,7676,2755,74.923981,146.353729,159.593399,146.990082,131.874390,123.386795,117.915718,114.147125,111.833069,111.948776,111.047951,121.502495,139.320663,153.684311,164.957031,173.560333,171.783478,159.510757,138.254547,117.576874,107.279350,101.998360,95.800018,70.659515,57.709110,75.039680,91.337204,70.171913,31.428118,12.652909,8.709110,5.201662,7.229767,8.802493,6.876044,2.546286,0.685126,0.001653,0.076860,0.180993,0.000000,0.062810,0.364464,0.620662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.355000,4612835.550000,7701,2755,84.248772,148.976044,158.827271,146.678513,129.711578,121.157867,116.430588,111.885139,110.207451,108.942986,109.248772,119.298363,137.331406,154.091736,164.414047,173.422318,172.133057,157.587601,137.819016,119.017365,106.083481,101.298363,94.463646,70.290092,56.728119,75.215714,93.124809,68.918198,31.876881,12.553736,8.587623,6.100837,6.300840,6.842161,7.187615,2.847114,0.871903,0.090910,0.104959,0.179340,0.147934,0.000000,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602288.955000,4612835.550000,7734,2755,88.204979,152.428101,154.833069,145.221497,129.766953,119.138863,114.386803,110.246307,106.998367,106.304153,106.023163,117.014900,135.246292,150.750427,161.047943,170.742157,168.948761,156.568604,134.915710,115.866135,104.130600,99.114067,92.163651,68.097534,53.138866,70.899185,91.568611,69.064484,30.857870,11.114066,8.378531,6.194224,7.059519,6.798360,5.747118,1.973559,0.538845,0.410745,0.048760,0.021488,0.089256,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.355000,4612835.550000,7766,2755,90.422333,146.538025,156.761169,145.414062,129.414078,117.959526,114.306633,110.397537,106.893402,106.852081,106.017365,116.736382,135.909927,151.728119,162.628937,172.017365,169.670258,157.124802,135.504974,115.752914,103.918198,99.967781,92.554558,68.628944,54.265308,72.199196,91.918198,68.695061,31.207457,12.031422,8.414068,5.065299,5.595881,7.183486,6.424805,2.786783,0.790085,0.475208,0.032232,0.017356,0.050413,0.000000,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602301.555000,4612835.550000,7797,2755,84.122330,146.923981,157.601654,147.965302,130.312408,118.923981,117.535553,111.841339,108.312408,108.386795,106.965302,119.238029,137.651245,152.833069,165.585129,173.932236,171.857864,156.659515,137.403305,115.990097,105.750427,100.444641,94.618195,68.593407,55.948784,73.527290,95.419846,69.766960,34.097542,13.453737,8.601672,7.565300,6.494230,8.303318,8.172739,4.061165,0.332233,0.000000,0.000000,0.295042,0.000000,0.000000,0.767770,0.383471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602306.955000,4612835.550000,7824,2755,87.421501,149.859528,157.140518,146.239685,129.140518,120.099190,115.363647,110.892570,108.099182,107.049591,106.157036,117.280998,136.330597,152.264481,163.512405,172.421509,170.380188,155.619858,135.735550,114.900833,103.272736,100.239677,92.727287,67.495888,53.793407,70.876053,92.057869,68.702492,30.272747,11.219851,8.429771,6.505795,6.811585,5.428111,6.471912,2.790088,0.361158,0.328926,0.128926,0.028926,0.127274,0.055372,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602311.555000,4612835.550000,7847,2755,91.326462,149.367783,156.458694,147.276871,129.458694,118.351257,115.731422,110.318199,109.020676,108.103325,107.342995,119.012413,137.665298,152.938034,164.367783,174.301682,172.326477,156.690094,135.979355,116.103325,103.863655,100.789276,93.500015,69.500015,54.334736,73.144646,92.698364,67.838860,30.747952,11.809936,8.500019,5.290918,4.810757,6.131417,5.390094,1.771078,0.666117,0.148761,0.331405,0.147935,0.107438,0.055372,0.000000,0.000000,0.000000,0.000000,1.405785,0.000000,0.000000,0.000000 -602317.955000,4612835.550000,7879,2755,83.371094,159.544647,160.354568,149.478531,131.585968,118.726463,118.238861,113.891754,111.759514,111.891747,109.371086,122.734734,140.181015,156.437210,167.676880,179.321503,175.313248,161.544647,138.842163,119.238861,106.205795,103.652077,97.081833,70.982666,57.123161,75.503326,95.602493,72.437210,32.387623,12.616544,8.825639,8.057862,7.692576,6.624805,7.871087,2.636369,0.541324,0.244629,0.178513,0.024794,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602322.955000,4612835.550000,7904,2755,82.093407,157.531433,158.680191,148.655396,131.333069,119.845459,117.415710,112.556206,109.895050,110.688438,108.052071,119.837204,138.647125,155.109940,166.349609,177.002502,174.399200,158.878540,137.316559,117.671906,105.498352,102.250420,94.390915,68.944633,55.688450,72.564468,94.002487,70.407455,32.283493,13.137208,8.581012,7.710755,7.449602,7.233072,6.659517,2.215708,0.377687,0.272728,0.000000,0.000000,0.000000,0.000000,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602326.755000,4612835.550000,7923,2755,84.651260,159.510788,159.006653,149.601669,135.775208,120.758690,118.527290,115.180183,111.676048,112.684311,109.948776,122.031418,139.428101,157.386795,167.890930,178.833099,176.180206,159.089279,137.965302,118.452904,106.808281,101.816544,96.618195,71.097542,55.122337,75.014893,94.742165,70.576881,33.204975,12.723159,8.783489,7.963648,8.284313,8.552081,7.383483,2.971081,0.545456,0.340497,0.038843,0.119836,0.097521,0.000000,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602332.355000,4612835.550000,7951,2755,80.254570,162.965317,160.576889,150.006638,132.841339,118.510757,116.642990,113.973572,110.576881,111.485962,109.403328,120.841339,138.998367,157.543823,167.816528,178.155380,174.147110,159.023163,137.328949,117.882660,105.709114,101.064484,95.163651,70.229767,54.766964,73.196709,92.138855,67.791756,31.047955,10.942993,8.651258,7.600837,6.514890,6.846293,7.004143,2.364468,0.756200,0.320661,0.127273,0.058678,0.211571,0.056199,0.113223,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602339.155000,4612835.550000,7985,2755,94.967789,169.356232,160.207458,150.389267,134.017380,118.538040,116.860352,114.207458,112.876892,113.810768,110.951263,121.562828,140.678543,159.207458,171.248795,180.728119,177.141342,159.835571,137.984329,118.587624,105.827301,101.314903,96.463654,70.843826,55.058693,74.678535,94.389275,69.042168,32.471920,13.996712,8.769440,8.934723,7.078526,6.904146,7.459516,2.761163,0.809093,0.180993,0.094215,0.011571,0.000000,0.000000,0.056199,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602343.355000,4612835.550000,8006,2755,95.458694,169.243820,159.359497,150.020660,133.995880,117.714890,116.524811,112.880180,112.590927,114.491753,110.615715,123.326462,141.285126,159.731400,171.574387,182.045456,178.252060,160.458679,138.516525,118.673569,107.119850,103.045471,98.227287,72.152916,55.500019,75.566139,93.855385,68.359528,32.516548,12.261175,8.929771,9.785963,8.941338,7.780180,8.295879,3.095047,0.567770,0.216530,0.169422,0.160331,0.033884,0.000000,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602349.155000,4612835.550000,8035,2755,96.752083,167.735565,161.173584,153.289291,133.000015,119.685966,117.636375,114.826454,112.173561,116.380173,111.388435,123.801659,140.859543,161.090942,173.041351,184.123993,178.231430,160.338882,138.859543,119.074387,106.983482,103.710754,98.818207,71.884315,56.553738,76.371918,94.281013,68.537209,32.661175,11.908282,8.983491,8.140507,6.528112,7.904974,6.306623,3.071080,0.608268,0.248761,0.000000,0.040496,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,1.725620,0.000000,0.000000,3.261157 -602352.555000,4612835.550000,8052,2755,109.784317,161.098343,160.619019,151.156204,134.511581,119.445465,117.924805,114.428940,113.271912,117.900009,111.941330,123.784309,142.668594,161.230576,174.883469,185.205795,180.379349,160.900009,141.247116,119.833893,108.346291,103.585960,100.809105,72.866959,57.701675,74.685143,95.404152,67.404152,32.908283,12.832248,9.164481,10.440509,6.954560,7.490097,7.866127,3.428932,0.285952,0.281819,0.000000,0.227273,0.195042,0.000000,0.311571,0.142975,0.000000,0.000000,0.000000,3.145455,0.000000,0.000000 -602355.555000,4612835.550000,8067,2755,108.911583,157.374390,158.845459,148.820663,129.828934,116.556213,114.341339,110.506622,111.258690,115.597534,108.547951,121.589272,140.490082,158.514877,172.242157,183.242157,176.696701,159.291748,136.779343,117.275223,105.341339,102.184311,98.754562,69.969437,55.118195,73.952904,93.374397,66.374397,28.341341,12.694231,8.977704,7.938854,5.857038,6.914891,7.009103,1.822318,0.141323,0.171901,0.015703,0.142976,0.000000,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602358.155000,4612835.550000,8080,2755,112.399193,169.167770,157.845459,152.514877,133.266968,118.961182,115.845474,112.928123,111.556221,115.457047,109.862007,121.647133,139.754562,158.390915,171.275208,181.771088,176.713226,159.795868,138.713242,118.696716,107.481842,102.572739,98.209106,70.457039,56.275227,74.696709,94.638855,68.300018,31.887623,14.284316,8.928119,11.410759,7.173569,6.513236,8.323153,3.654553,0.258680,0.235538,0.085951,0.235538,0.114876,0.000000,0.000000,0.640497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602362.555000,4612835.550000,8102,2755,118.139679,162.974380,158.660339,148.718185,129.767776,115.734734,114.205803,110.577705,109.701675,112.817368,106.709938,118.627289,137.379349,155.354553,166.966125,178.271881,173.759491,155.908264,135.139679,115.478531,104.147957,99.949608,94.718201,65.734734,53.263660,72.519852,90.486794,64.842171,30.437212,10.082662,8.610764,8.838856,4.723979,6.679351,7.300838,2.304963,0.538018,0.110744,0.043802,0.114877,0.000000,0.000000,0.000000,0.209091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602368.555000,4612835.550000,8132,2755,94.448776,134.465302,140.423996,129.151260,114.341339,103.266960,99.878525,97.366127,93.812408,95.531418,94.630592,106.605797,124.680183,141.382660,153.432251,162.407455,160.432251,148.159531,125.258690,105.126457,93.630592,90.101669,83.118195,58.622334,44.952911,62.994232,84.572739,63.903324,27.457869,9.652909,7.556218,3.883478,4.809927,5.451252,5.430587,3.238848,0.462811,0.216530,0.183472,0.010744,0.052066,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,1.551240,0.000000,0.000000 -602374.955000,4612835.550000,8164,2755,96.149597,135.620697,136.166122,129.504974,114.281830,102.083481,98.141335,94.480179,93.372742,93.141335,92.703316,104.339684,122.827286,140.587616,152.653748,160.934738,159.876892,146.215714,124.587616,104.728111,92.124809,89.248772,82.736374,59.141335,44.356216,62.108276,82.942986,64.620682,26.453739,9.530595,7.521508,4.738851,6.020673,6.497531,6.395878,2.030583,0.696697,0.205786,0.121488,0.000000,0.019835,0.000000,0.000000,0.375208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602384.555000,4612835.550000,8212,2755,88.023155,125.014893,134.659515,122.816544,109.469437,97.056213,95.312408,91.833069,90.857864,91.105797,91.072739,102.990097,121.469437,138.527298,152.138870,162.791763,160.304153,145.452911,122.816544,103.816544,91.667786,87.428116,82.527290,57.684315,43.403324,61.684315,83.816544,64.031425,28.395058,10.247125,7.502499,5.720671,6.978524,8.246293,7.445468,3.065296,0.347109,0.331406,0.197521,0.272728,0.000000,0.000000,0.302480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602397.755000,4612835.550000,8278,2755,100.881020,132.947128,132.029770,118.856209,102.748772,93.715714,89.401665,87.467781,85.600014,85.781830,86.170258,97.996704,116.500839,134.285965,146.839676,155.798355,151.905792,139.128952,117.021500,98.219849,86.434723,83.013237,79.145470,55.038033,39.236382,58.269440,79.566956,59.699192,25.562826,10.249602,7.195061,7.576871,7.338028,8.558688,7.752905,5.327282,1.967773,1.033886,0.770249,1.292563,1.226447,1.355372,1.585124,3.152066,7.942976,5.339670,5.795042,3.452893,4.239669,7.141322 -602404.355000,4612835.550000,8311,2755,44.102482,43.570255,32.433064,25.317362,19.332237,15.328931,14.405790,13.622319,13.501657,13.762815,13.897526,16.809923,21.670252,26.742983,30.635544,33.155380,32.934719,30.604139,26.147114,21.357857,18.010750,17.754553,18.400007,10.254552,5.794219,12.312402,28.748768,29.786783,15.305793,2.895873,1.672734,7.053727,21.650425,32.964478,44.805798,42.716541,46.392574,59.323978,65.559517,65.140511,69.670258,60.402485,55.927277,61.582657,43.901657,36.236370,93.637199,98.442986,132.238022,158.681000 -601673.155000,4612825.550000,4655,2805,153.820663,148.977692,131.118210,115.581017,99.440521,89.002502,85.316551,81.870270,81.349609,82.556221,82.862007,92.671921,112.176056,127.878532,139.729752,150.638855,149.547943,138.514877,117.605804,99.118202,88.242172,86.878532,80.118202,53.258698,36.324818,54.556217,71.076881,55.167786,23.779358,10.509931,7.283490,12.530594,9.261998,11.738858,16.418198,12.793402,4.978521,1.612401,1.694217,2.098350,0.771902,2.082649,1.395042,1.786780,28.815708,13.468596,16.143805,9.887606,12.311572,11.283472 -601676.355000,4612825.550000,4671,2805,150.991745,152.347122,138.041336,121.512413,106.305801,94.214890,91.619850,88.495880,87.347122,89.140511,88.867783,101.000015,119.487617,135.066132,147.272751,157.123978,156.347122,145.016541,122.909103,101.867783,92.281006,88.396713,82.909103,54.719028,39.033077,55.975227,70.636383,51.578533,22.495058,9.038857,7.537209,13.161172,8.597534,9.571088,11.838030,7.601664,1.842981,1.149590,0.374381,0.459505,0.886779,0.819009,0.741324,0.535538,12.164464,6.676861,4.714051,6.885952,5.751241,8.360332 -601680.555000,4612825.550000,4692,2805,145.119034,153.477692,136.890915,122.485962,108.204971,95.940514,93.469437,91.477699,90.494232,90.824806,91.965302,102.188446,121.163651,137.287613,151.014877,158.552078,157.849594,146.601654,123.345467,104.014893,93.593407,89.857864,82.981834,55.295891,39.659527,55.923988,72.370262,52.783493,23.523159,9.701670,7.543821,10.714893,7.389267,10.451256,10.183486,5.933893,1.072730,0.539673,0.509919,0.672728,0.487604,0.309091,1.066944,1.014051,12.669423,7.017356,7.632233,6.333059,3.507438,6.810744 -601686.355000,4612825.550000,4721,2805,130.529770,147.166122,140.447113,127.199196,109.604156,98.455383,94.785965,93.810760,92.124809,92.868607,93.455383,104.546303,123.207458,139.695053,152.306625,161.455383,159.835556,147.595886,124.810768,106.381012,94.926460,90.075226,84.463654,57.455395,40.852089,56.496716,72.381012,53.744648,23.876877,8.332247,7.678532,8.151252,7.625632,6.624807,7.784311,4.538851,0.906614,0.435539,0.107438,0.246281,0.125620,0.171901,0.327273,0.689257,2.829752,3.512397,5.716530,3.410744,4.320662,1.761157 -601694.955000,4612825.550000,4764,2805,113.060349,146.310776,142.393417,125.476051,113.219849,100.409935,99.170265,96.277710,96.178535,97.021507,97.616547,109.533897,127.360352,143.310776,156.046310,164.360367,163.054581,152.947144,127.633080,108.161995,96.682663,93.624817,87.327293,60.277702,43.434727,59.252914,72.633080,55.319031,23.806631,8.212413,7.938862,6.680178,6.990921,9.733071,7.967782,3.370253,0.685953,0.228100,0.459505,0.095042,0.379339,0.000000,0.657852,0.000000,0.000000,4.661158,0.790083,1.365289,0.000000,1.728099 -601706.355000,4612825.550000,4821,2805,110.447121,144.028946,139.838852,129.756210,114.764481,105.119850,102.384315,99.789276,99.466957,100.549606,102.268608,112.227287,131.227295,147.623978,159.979355,169.632248,167.516541,156.012405,131.681839,111.615715,100.574394,97.061996,90.863655,63.954567,47.632252,62.342995,77.012413,55.293407,26.169441,10.742990,8.260349,8.457864,9.102492,7.145467,8.906626,3.438023,0.476861,0.095868,0.178513,0.066942,0.000000,0.000000,0.111570,0.000000,0.000000,0.982645,1.591736,4.161984,1.624794,0.000000 -601715.955000,4612825.550000,4869,2805,101.586784,135.629761,140.538864,127.224808,113.224800,103.943817,101.753738,99.340515,99.530594,101.084312,101.638031,113.018188,131.638031,147.662842,160.852921,169.505814,167.489288,155.398376,130.745468,110.447952,98.712418,95.274399,90.836380,62.671093,47.125637,62.183487,73.571922,54.018200,23.952085,8.479357,8.257871,8.370261,5.485962,7.282658,6.498361,4.002487,0.749589,0.276033,0.548762,0.110744,0.151240,0.000000,0.084298,0.000000,3.088430,0.000000,0.000000,0.000000,0.994215,0.000000 -601724.155000,4612825.550000,4910,2805,114.104134,138.998352,141.238037,132.023148,116.593407,106.923981,103.659515,101.998360,101.395058,103.254562,104.353737,114.609932,134.031418,150.370270,162.634735,171.948776,169.345474,158.056213,133.618195,112.758690,101.552078,97.833069,92.800018,65.519028,48.163654,63.890926,77.304146,56.717373,26.366962,11.326464,8.436383,7.543816,7.677700,7.928112,7.926460,3.801661,0.620663,0.581819,0.026447,0.051240,0.350414,0.042976,0.486777,0.000000,1.899174,2.794215,2.554546,1.300827,1.753719,5.461157 -601732.155000,4612825.550000,4950,2805,104.910759,136.704132,137.514053,126.076050,111.332253,103.530602,100.150436,98.613251,97.737213,99.580193,100.001678,111.315720,128.927292,145.927261,159.018173,167.563629,165.894211,153.737183,129.381836,109.481010,97.621513,92.704155,88.109116,59.629768,44.464481,58.456215,71.472748,52.943821,24.815720,8.491752,8.009936,5.760341,7.171912,5.286788,6.939681,2.341328,0.558680,0.030579,0.294216,0.048760,0.000000,0.000000,0.234711,0.241322,0.000000,4.592563,0.000000,0.654546,2.372728,1.764463 -601741.155000,4612825.550000,4995,2805,107.147125,138.509949,139.741348,126.063652,113.121506,102.815720,100.501671,97.906631,97.187622,99.972748,100.121506,110.666962,129.600845,146.683502,158.865295,166.584305,164.344635,153.187622,129.212418,109.609108,96.278534,92.898361,87.336380,62.518200,43.865307,57.592579,71.749603,53.303322,21.444647,9.142164,7.939688,5.227285,6.530592,5.700013,5.440508,2.486783,0.343803,0.025620,0.137190,0.242149,0.000000,0.000000,0.133884,1.197521,4.752893,6.571075,2.357025,0.589256,3.740496,3.712397 -601748.755000,4612825.550000,5033,2805,114.498360,144.999191,141.999191,129.594238,116.197540,106.354568,104.453735,101.544647,100.751259,101.594231,102.957870,112.230598,131.271927,147.321503,160.313248,169.081833,166.767792,154.503311,131.486801,109.495064,98.470268,94.486794,88.263657,62.032246,45.461998,60.214066,72.552910,54.453735,25.413240,10.732247,8.023986,5.617368,8.520673,7.457862,9.671088,3.854552,0.512398,0.595043,0.036364,0.069422,0.052067,0.000000,0.487604,0.113223,2.890083,0.918182,2.624794,3.344629,4.904133,0.000000 -601753.755000,4612825.550000,5058,2805,110.725632,141.202499,139.962830,126.607452,113.706627,104.747948,101.706619,99.533066,97.450432,100.615715,100.888443,111.533073,129.020676,145.210754,158.210754,165.706635,165.847122,153.566132,129.640518,108.533073,97.500015,92.731422,87.227287,60.326466,43.648781,56.896713,72.648773,53.929771,21.814068,10.735553,7.929771,5.366127,6.499186,5.740507,7.242987,1.859509,0.614878,0.209092,0.195868,0.145455,0.409918,0.000000,0.783472,0.381819,4.101653,0.895041,5.438017,0.609091,3.757025,5.472727 -601756.955000,4612825.550000,5074,2805,108.574394,140.191742,140.662827,130.968613,115.505798,106.472740,102.266136,100.795059,100.208275,101.481010,102.200020,112.191750,130.365311,146.092575,159.340515,168.604980,166.621521,154.348770,131.092575,110.274399,97.381844,93.795067,88.109116,61.109108,45.117374,59.919025,72.315727,54.092579,23.908281,11.040511,8.009937,6.093399,7.200012,7.153731,8.269435,2.741328,1.268598,0.000000,0.099174,0.165290,0.095868,0.018182,0.321488,0.227273,0.000000,2.607439,2.135537,0.755372,2.012397,7.361984 -601761.555000,4612825.550000,5097,2805,110.471092,147.868607,147.959518,133.604141,116.157867,104.976044,101.199188,99.695053,98.496704,100.091751,100.587616,111.116539,129.058685,146.058685,158.356216,166.670258,165.372742,153.364471,129.678528,107.785965,97.100014,91.504974,86.190926,59.323158,42.361176,56.604149,70.248772,51.595886,22.051258,8.892578,7.835556,5.161167,7.551251,8.852906,8.651252,4.940502,2.838019,1.852895,2.198348,1.766117,2.530580,0.793389,0.059504,0.710744,4.674381,0.968595,5.388431,2.904959,0.909091,5.519835 -601768.955000,4612825.550000,5134,2805,134.227280,146.337204,139.159515,131.795868,117.407448,105.961166,102.804138,101.523148,99.605789,101.886780,102.349594,113.060333,130.572739,147.572739,160.870255,168.142975,168.308273,156.217361,131.556198,110.911575,98.861992,94.225624,90.481827,63.473572,46.010761,61.101673,73.126457,54.919853,22.671921,10.442992,8.225639,6.204971,7.203319,6.982658,8.184311,3.433891,0.401654,0.128926,0.089257,0.103306,0.000000,0.000000,0.394215,1.083472,4.944629,1.987604,1.385124,2.364463,2.865290,1.895868 -601780.155000,4612825.550000,5190,2805,137.869431,150.828110,142.233078,133.158691,118.695877,108.679352,104.695877,102.390091,101.662827,103.885971,104.299194,114.489265,131.745468,149.100845,160.208267,170.629761,168.613235,157.092575,131.828110,110.885963,99.100845,94.877701,88.563652,62.282661,43.795059,58.836380,72.472740,54.679356,23.175224,10.257867,8.051258,4.591745,7.634724,6.383483,5.990921,2.727278,0.491737,0.127273,0.318182,0.209918,0.000000,0.000000,0.129752,0.243802,3.167769,0.952066,0.000000,4.479340,4.036365,1.910744 -601787.955000,4612825.550000,5229,2805,128.930588,151.912399,142.953720,135.540512,120.573570,109.135559,105.557045,104.061180,102.986794,104.664482,103.689278,114.697540,131.433075,148.383469,160.697525,168.490906,167.986786,156.838013,132.176880,110.375229,97.672745,93.689278,88.763657,61.895885,45.763657,57.523987,73.102501,54.920681,22.647125,9.708282,8.069440,3.859513,6.791748,5.984309,7.006624,2.308270,0.600829,0.261158,0.000000,0.182645,0.069422,0.000000,0.000000,0.000000,4.143802,1.757025,3.461984,1.361984,1.924794,1.902479 -601792.955000,4612825.550000,5254,2805,140.987625,154.285950,145.186768,136.385132,121.401657,109.112404,106.905792,104.674385,103.732246,106.558685,104.145462,115.211578,133.434723,150.013214,162.071075,170.963638,169.319000,157.393387,133.352081,110.757027,99.839684,95.285965,89.327286,62.203323,46.649609,60.120678,73.104149,55.757042,23.145473,9.241339,8.120681,4.086786,6.498360,6.660343,6.685136,3.650420,0.233059,0.538019,0.164463,0.311571,0.147108,0.022314,0.603306,0.456199,2.038843,1.049587,3.523141,0.826446,2.047934,2.083471 -601797.955000,4612825.550000,5279,2805,136.004150,154.886780,144.349594,133.377701,121.493416,109.600845,108.862000,107.481834,105.366127,108.820679,106.647125,117.473579,134.856216,152.319016,164.707458,174.451248,171.393402,160.914062,136.087616,114.823151,102.765305,97.062820,91.963646,65.024811,47.694237,61.416546,75.735550,56.388451,22.247128,10.769439,8.360350,4.660339,7.899186,7.259516,6.872739,3.665295,1.314052,0.678514,0.506612,0.723968,0.603307,0.342976,0.352066,0.360331,1.049587,1.995041,2.233885,1.404132,3.180992,0.000000 -601802.355000,4612825.550000,5301,2805,140.902496,168.885956,148.109085,140.158676,126.274399,111.183487,109.662827,106.100845,105.216545,109.497536,106.514069,117.489273,134.985138,152.514053,164.613235,173.960327,172.257843,159.919022,135.241333,112.993408,100.679359,96.737206,92.109108,64.381836,46.505802,60.580185,75.125641,57.580185,22.852085,9.864481,8.373573,5.638854,7.503319,7.097533,7.617370,3.193394,1.390086,0.507440,0.438845,0.580166,0.128926,0.066116,0.527273,0.000000,4.490910,3.255372,1.620661,0.000000,3.545455,4.298347 -601806.155000,4612825.550000,5320,2805,150.407440,168.271927,151.048782,141.966141,123.693398,110.139679,108.238853,106.866951,104.428940,108.015717,106.214058,116.602493,133.536377,150.247131,164.007462,173.230591,170.627289,159.280182,134.924805,112.222328,101.172737,95.643814,91.445465,62.833900,46.610764,61.809105,75.784309,56.205803,22.081837,8.218197,8.313243,6.086787,7.401666,6.453731,6.671915,1.752896,0.615704,0.132233,0.195868,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,2.105785,0.900827,2.739670,0.000000,4.208264 -601810.155000,4612825.550000,5340,2805,125.408264,156.266129,150.241333,137.745468,119.861168,107.935547,107.514061,103.679352,102.315712,103.447945,103.200012,115.340508,133.282654,149.299179,160.150421,170.985138,168.638031,154.290924,131.348770,108.844635,98.224800,95.671082,90.381828,63.266136,46.216549,60.299194,75.621498,53.629772,24.240513,10.651257,8.216548,9.647947,7.124808,8.558691,8.374393,4.014057,0.756200,0.304959,0.212398,0.000000,0.085951,0.047108,0.111570,0.000000,4.328926,3.337190,1.142149,3.167769,1.008265,0.000000 -601815.955000,4612825.550000,5369,2805,135.898361,163.078506,151.648758,138.458679,122.045471,108.466957,107.442162,103.458687,102.045471,103.954552,102.929764,115.078522,132.648773,149.698349,161.648758,170.665283,168.590912,154.194214,130.623978,108.648766,99.037209,95.723160,89.590927,62.004158,47.086792,59.458702,76.475220,55.830605,24.566133,11.263653,8.144647,9.013237,7.525635,8.627285,7.732244,4.837198,1.042151,0.331406,0.578513,0.218183,0.314877,0.048761,0.352893,0.000000,1.062810,5.030579,0.903306,0.868595,7.097522,1.895041 -601824.155000,4612825.550000,5410,2805,134.454559,165.654556,151.580185,134.795044,120.720680,108.522331,107.952087,104.993408,103.505806,105.224808,103.158699,114.720680,133.720657,150.051270,161.737213,171.762009,169.381851,155.357056,130.555374,109.100845,98.076050,94.976875,88.836380,62.299191,45.109108,59.266132,75.042992,53.811588,23.129772,9.806627,8.076053,8.447947,5.777699,6.635548,6.689268,3.033890,0.514877,0.666943,0.148761,0.165290,0.041323,0.000000,0.383471,0.319008,0.000000,4.961157,6.605786,2.571075,1.034711,5.766116 -601832.355000,4612825.550000,5451,2805,129.009933,165.397537,154.471909,139.009109,121.083481,108.637199,109.240509,105.455383,104.843811,106.323151,104.430588,116.711586,135.273560,153.157867,164.389267,173.579346,170.868607,157.050430,131.976044,111.314888,99.199188,96.695053,91.736374,63.033905,46.992584,60.885143,77.843811,55.612419,23.047125,9.955389,8.339688,12.209933,7.604973,6.987617,7.251252,4.378519,0.639671,0.112397,0.245456,0.114876,0.372728,0.000000,0.000000,0.180992,6.674381,3.052067,2.465290,1.357852,3.027273,7.859504 -601840.955000,4612825.550000,5494,2805,127.695053,167.210754,149.657043,139.698364,122.367783,109.830597,110.161171,107.838860,107.219025,109.500015,106.888443,118.706627,135.574402,153.838852,165.871918,175.219009,172.070267,156.053741,131.871918,110.285141,98.326462,95.880180,89.681831,61.739685,44.698368,59.243820,74.086792,53.739689,22.496714,8.716545,8.152911,10.513238,6.216543,6.404969,7.729766,2.549593,0.809092,0.874381,0.123968,0.108265,0.000000,0.008265,0.247934,0.000000,0.000000,1.066116,1.538017,2.466943,0.000000,0.000000 -601846.155000,4612825.550000,5520,2805,137.625626,175.429749,156.008286,144.704971,127.366127,115.930603,117.211594,114.029770,113.834732,118.033081,113.057877,124.562004,142.275208,158.655380,172.019012,181.010757,177.035538,159.390915,135.209106,113.773575,102.657867,98.633072,91.963646,64.690933,47.930599,60.641342,75.448776,56.128948,23.780184,9.908282,8.360349,13.495885,6.635550,7.420673,8.357865,4.940505,1.239672,0.409919,0.937192,0.850414,0.878514,0.233884,0.109918,0.206612,1.027273,0.000000,2.908265,0.768595,0.000000,1.895868 -601852.555000,4612825.550000,5552,2805,158.551270,181.312424,154.890930,144.386795,125.457039,109.853737,109.973572,106.072739,105.783485,110.783485,106.502495,118.527290,135.428116,154.519028,165.643005,175.882660,171.552094,155.560349,132.370270,110.494232,99.411575,96.328934,92.436371,63.655388,47.134727,62.485966,78.097534,56.965305,25.386797,8.881834,8.403325,13.504976,8.887619,7.604145,9.457867,5.372736,1.419010,0.529753,1.185126,0.729753,0.561158,0.183472,0.238017,0.000000,3.203306,4.222314,6.071074,1.537190,0.000000,6.141323 -601862.555000,4612825.550000,5602,2805,172.624802,190.434723,162.095886,149.542160,128.360336,112.947113,111.442978,109.649590,109.277687,114.699181,108.029755,119.550415,136.980194,156.153732,170.542160,179.765305,175.616547,156.790100,133.938858,113.484299,101.170250,98.781822,92.781822,64.451263,47.319031,65.327293,79.285965,56.897541,26.327291,10.271918,8.434731,13.939686,9.162826,8.324807,8.463651,4.636373,0.570249,0.329753,0.214877,0.044628,0.039670,0.060331,0.299174,0.000000,0.000000,1.105785,0.000000,2.462811,4.828926,4.079339 -601870.555000,4612825.550000,5642,2805,115.239677,152.416550,147.945480,137.747131,123.201668,114.094223,111.309105,107.871086,108.135551,108.416542,108.912407,119.557037,138.788452,155.606628,167.433075,176.143814,174.160355,161.358704,137.011597,114.474388,104.854553,101.366951,96.763649,68.689270,53.565308,67.333900,83.003319,61.350433,27.565311,11.171092,8.796714,8.551253,7.042992,6.843816,7.152906,3.833066,0.590910,0.000000,0.186777,0.045455,0.017356,0.210745,0.000000,0.000000,2.188430,0.000000,0.000000,0.000000,0.000000,1.900000 -601873.755000,4612825.550000,5658,2805,105.304146,141.447952,140.119034,133.406631,119.646301,111.885963,110.323982,107.861168,108.672737,108.788445,110.143814,119.788445,139.920685,155.846298,168.358704,176.970245,176.747116,162.714066,139.408279,117.714058,106.482658,103.490921,97.400009,70.083488,55.257042,71.405807,85.961998,63.414066,28.281837,10.790099,8.854565,6.177699,4.925633,5.305798,6.817369,3.484304,0.779340,0.139670,0.081818,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.499174,0.000000,2.025620 -601877.555000,4612825.550000,5677,2805,101.728943,150.260330,148.243805,135.987625,122.904968,113.309937,110.028938,107.648773,107.293404,108.276878,108.334724,119.590919,138.095047,155.028931,167.309921,176.491730,175.400833,161.987610,136.871902,117.004143,105.012413,101.053726,96.590919,69.185966,52.822334,69.119843,83.103325,62.838860,28.607458,12.042991,8.781012,7.029765,7.482659,5.598361,7.984311,4.817364,0.952894,0.104133,0.070248,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,1.312397,0.000000,0.000000,0.000000,0.000000 -601881.755000,4612825.550000,5698,2805,102.918198,148.012405,146.508286,136.384308,122.045471,112.185966,109.590927,107.409103,106.557869,107.491753,106.615715,118.301666,137.070267,155.376053,166.285141,174.500015,174.475220,160.838852,136.731415,115.037209,103.838860,99.971092,95.409103,67.855385,51.161179,67.235550,83.219025,59.417374,27.491756,10.503324,8.673573,6.609102,6.017369,6.815716,6.766954,3.828106,0.471076,0.128926,0.169422,0.163637,0.000000,0.000000,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601888.355000,4612825.550000,5731,2805,108.283485,147.486786,143.842148,132.296707,119.255386,108.726456,106.007446,103.842163,104.131416,106.751251,105.023979,117.040504,136.172729,152.536362,166.106613,174.048767,172.519836,158.296692,135.081833,114.222328,102.164474,98.833893,93.263657,66.288445,50.594238,65.379356,81.114899,60.875229,25.466133,8.598365,8.478532,5.346291,7.258693,5.342988,7.509930,2.295872,0.371901,0.354546,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.057851,1.789256 -601891.355000,4612825.550000,5746,2805,101.785126,146.307449,145.472733,135.299179,120.257858,110.439682,107.852905,104.348770,105.100838,106.481003,107.051247,118.299187,137.530594,153.365295,166.481003,175.266129,171.885956,160.869431,135.555374,114.266129,103.530586,99.307449,95.927284,65.588455,51.414898,67.497536,83.323975,62.001675,28.241343,9.861172,8.720680,7.132244,6.257866,6.447120,6.515713,3.242155,1.040498,0.209092,0.034711,0.104959,0.096695,0.255373,0.000000,0.000000,1.157025,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.355000,4612825.550000,5771,2805,115.142982,144.209930,148.714066,136.168610,120.358688,111.176872,107.937202,106.466125,106.077698,106.705795,107.961998,118.747116,137.705811,155.143814,167.507462,176.185150,175.036377,161.069443,137.218201,115.242989,103.019844,101.011581,94.581833,66.242996,51.077705,66.457870,83.061165,62.482662,29.317375,11.469440,8.598367,6.371085,7.417369,8.672741,7.750425,3.265296,0.868597,0.247935,0.859506,0.164463,0.031405,0.075207,0.000000,0.293389,0.000000,0.000000,1.910744,0.673554,4.897521,1.967769 -601899.555000,4612825.550000,5787,2805,115.442154,147.861984,144.895050,133.217377,117.597534,108.820679,105.804146,103.300018,102.068611,103.060349,103.490097,114.928116,134.184311,149.903305,163.200836,172.233887,171.266953,157.605789,132.167786,111.060349,100.233902,96.944641,91.936378,65.076881,48.399197,64.134735,82.126457,60.052090,26.399193,9.684313,8.357870,4.778521,5.689272,6.590095,6.601664,3.288437,1.143804,0.187604,0.369423,0.210744,0.119009,0.003306,0.000000,0.000000,2.204959,2.143802,0.000000,2.384298,5.071075,1.885951 -601902.755000,4612825.550000,5803,2805,126.631416,149.476044,143.914062,133.079346,119.128937,108.790092,106.757034,103.980179,103.376869,104.914062,104.864479,115.533897,133.872742,151.847946,166.013229,173.955383,171.740509,159.352081,133.459518,112.542160,101.310760,97.922325,92.327293,65.600014,48.120682,64.566963,79.814896,60.633080,27.234730,10.223157,8.393408,6.356209,6.453732,6.442987,6.483481,5.033892,0.876035,0.260331,0.070249,0.087604,0.101653,0.097521,0.385951,0.000000,5.639669,3.227273,5.099174,5.152067,1.932232,3.988430 -601907.755000,4612825.550000,5828,2805,126.190102,153.934738,147.719864,136.215714,120.281830,110.414062,108.265305,105.637199,104.108276,105.736374,105.992577,116.901657,135.752899,154.124817,166.199188,174.339661,173.347931,159.124817,135.149597,113.025635,101.314888,98.513237,93.645470,66.273567,48.876884,64.761177,83.323151,61.587624,27.595888,11.008282,8.513242,8.089268,7.666131,9.194226,6.695052,5.981000,0.772729,0.212397,0.189257,0.048760,0.223968,0.350414,0.000000,0.859505,4.542150,0.000000,0.000000,3.852067,3.025620,0.000000 -601917.555000,4612825.550000,5877,2805,134.951248,150.519836,146.610764,132.271912,117.428940,106.280174,103.924805,101.313232,101.883484,102.395882,102.255386,113.693398,133.288437,149.511566,161.883469,171.866959,169.767792,156.850418,131.065308,109.685135,99.123154,96.536377,90.990929,64.288452,46.585968,63.585968,81.437210,59.635555,27.255392,10.123983,8.271919,7.438855,7.914891,8.818195,11.409932,6.853730,2.007441,0.641324,0.102480,0.414877,0.187605,0.119009,0.713224,0.295868,11.709092,3.717356,0.819835,6.651240,9.582645,2.014050 -601920.955000,4612825.550000,5894,2805,137.831436,149.988449,143.988449,131.062820,117.128929,107.211578,104.219841,101.509094,101.095871,102.352074,102.302483,113.137192,131.261169,149.963654,162.757034,169.823151,168.335556,156.277695,130.409927,109.335541,98.823143,93.269432,89.690926,62.674397,45.533901,62.360348,79.649597,59.393406,27.681837,10.587618,8.153738,8.119020,9.033899,9.814065,8.045466,6.606622,1.818185,0.368596,0.228926,0.236364,0.053719,0.397522,0.203306,1.450414,12.468596,4.943802,3.286777,0.879339,3.827273,7.558679 -601926.355000,4612825.550000,5921,2805,147.456223,156.179367,146.890106,137.187622,118.080185,108.972748,104.914894,104.410759,103.452087,104.262001,104.592583,115.493408,134.361160,151.121521,165.857056,174.493408,171.129776,157.584320,133.947937,111.600845,98.394234,95.534729,90.427292,63.121506,46.080185,62.344646,82.220680,62.501671,29.865309,10.838034,8.220681,6.776872,6.287618,7.290095,8.735551,5.567777,0.621489,0.468596,0.165290,0.133885,0.171075,0.195043,0.520661,0.317356,11.642150,7.430579,5.188431,3.066116,2.952893,1.933884 -601931.555000,4612825.550000,5947,2805,139.799179,166.203323,146.666138,134.302490,118.021500,106.674393,102.947121,100.583481,100.145470,102.649597,101.170258,113.137199,131.922333,149.533920,161.831421,171.244644,168.459518,155.690918,130.806625,109.467781,97.071091,93.740509,90.418198,61.806629,44.252911,61.319027,79.657883,61.104149,25.423159,9.374395,8.219853,4.638027,6.073567,5.362820,7.312409,3.752899,0.675208,0.411571,0.353720,0.208265,0.023141,0.023967,0.398348,0.000000,4.483471,4.114876,2.680166,2.454546,4.942976,5.881819 -601937.355000,4612825.550000,5976,2805,184.823975,168.021500,149.856232,134.616547,120.781830,106.558693,104.310760,101.211586,100.889267,102.947121,103.095879,113.732246,132.029770,149.872757,161.864487,171.492554,170.153732,156.897552,131.930588,109.740509,98.765305,94.831421,89.600014,63.806629,46.492588,64.153732,81.533897,63.062828,28.798368,10.161173,8.145474,7.589269,5.243815,7.961170,5.566953,4.754553,1.334713,0.206612,0.496695,0.474381,0.087604,0.383472,1.472729,1.296695,19.322315,17.530581,9.610745,15.088431,7.284299,9.845455 -601946.155000,4612825.550000,6020,2805,154.179352,160.990082,147.907455,137.287628,123.791748,110.213249,108.271088,106.923981,105.114067,107.419861,107.800018,118.312416,136.932251,155.519028,167.717361,176.163666,176.238037,162.808273,136.742157,114.601677,103.411583,98.882652,94.981827,67.271095,48.915722,65.419853,81.618195,63.262829,27.221508,10.987620,8.634729,5.000009,5.321501,8.102491,7.990921,3.111576,0.969424,0.323141,0.287604,0.000000,0.316530,0.278514,0.738843,0.000000,3.433885,5.534711,6.469423,3.387604,1.145455,1.969422 -601952.355000,4612825.550000,6051,2805,152.785126,165.738861,151.557022,140.995041,127.209930,113.400009,110.259514,108.763649,107.168610,110.342163,109.763649,120.300835,138.813232,157.292572,170.168610,178.862808,177.482651,164.697540,139.953720,117.871086,105.267776,101.656212,96.581833,69.532257,52.937214,67.714066,84.416550,64.738861,28.995060,11.072744,8.780186,6.131415,7.888445,6.708277,7.476046,3.622321,0.782646,0.371901,0.211572,0.366943,0.101654,0.571902,0.821488,0.000000,4.329753,2.146281,4.675207,0.929752,4.565289,0.000000 -601958.355000,4612825.550000,6081,2805,144.439682,166.654556,152.236359,142.649582,127.004974,113.175217,109.555382,109.323975,107.423149,111.009926,109.671082,119.662819,137.158691,156.257858,168.563644,176.704147,175.745468,164.952072,139.257858,116.778519,105.472740,100.505798,97.200012,69.208275,53.522335,67.728943,84.814888,63.195057,28.059525,11.706629,8.836383,5.372738,8.311586,7.925634,9.249599,3.066948,2.523144,0.102480,0.557853,0.200000,0.370249,0.309918,0.380166,0.059504,3.393389,1.121488,3.910744,0.957851,0.000000,2.245455 -601961.155000,4612825.550000,6095,2805,152.072739,164.585129,152.990082,145.543808,127.593407,116.907463,114.122337,112.204979,111.452911,114.295891,113.254570,124.312416,141.990082,160.642975,173.419846,182.750427,180.758682,167.626450,142.171906,121.006638,109.320686,105.576881,100.527298,72.973579,55.023163,69.882668,85.957047,66.097542,29.370266,10.526463,9.138862,6.888443,7.917370,6.484311,6.317368,3.456205,0.989258,0.403306,0.413225,0.276033,0.199174,0.410745,0.000000,0.000000,0.000000,3.433885,0.000000,0.898347,4.828926,4.398348 -601964.955000,4612825.550000,6114,2805,146.633072,175.971909,158.484314,146.740509,132.244644,116.831421,116.153732,114.699188,112.897537,117.261169,115.120674,125.310760,144.385132,162.376877,175.930588,185.583481,183.029770,170.872742,145.203323,123.310760,110.467781,107.004974,102.872742,74.004982,57.046303,71.996712,88.277710,65.914070,29.965307,11.963655,9.352085,6.101665,8.563653,8.137204,7.941336,4.261992,0.792564,0.735539,0.664465,0.206612,0.150414,0.444629,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,2.317356 -601971.155000,4612825.550000,6145,2805,117.195877,166.633896,156.179352,144.848770,128.567780,115.584305,112.898354,111.542984,111.195877,111.947945,111.509926,122.840508,141.823975,160.063644,171.823975,180.278519,179.972733,165.278519,140.435547,117.823975,106.617363,103.989265,98.336372,71.476875,54.154568,68.344643,84.708275,61.939690,27.559525,10.949603,8.939688,8.177697,7.088444,6.766955,7.011583,3.448767,0.680994,0.390084,0.200001,0.044628,0.130579,0.086777,0.000000,0.000000,2.566116,6.094215,0.000000,0.000000,0.000000,0.000000 -601974.755000,4612825.550000,6163,2805,118.863647,166.318207,156.202515,143.243835,127.384315,115.028931,113.632240,110.590919,109.904968,111.673561,110.648766,123.095047,142.095078,158.756226,171.896713,181.268616,178.086792,163.665329,139.615738,117.268600,106.714882,104.904976,97.954552,71.260353,55.409111,67.450432,85.136375,61.541340,29.053738,11.673572,8.904979,9.027287,6.518197,8.393403,8.789268,4.454556,0.446282,0.416530,0.435538,0.000000,0.145456,0.051240,0.000000,0.000000,1.133058,1.225620,0.866942,0.952893,0.000000,0.000000 -601980.355000,4612825.550000,6191,2805,142.776871,166.867783,157.000015,143.966965,129.247940,116.785133,115.768600,112.884308,111.247940,112.024811,111.884315,124.363647,143.338852,160.082657,171.760345,181.190094,179.611588,165.256210,140.082657,119.396706,108.041336,104.966957,100.181831,72.793404,55.074402,70.272743,86.264481,62.842995,26.834730,11.761173,9.107457,9.223156,7.642991,7.633900,8.448773,3.234718,0.460332,0.185125,0.318182,0.364464,0.335538,0.028099,0.000000,0.000000,2.355372,3.291736,0.961984,2.930579,1.085950,0.000000 -601989.155000,4612825.550000,6235,2805,143.742996,171.982666,161.643814,147.900024,130.850418,118.767776,117.742989,115.767776,115.552902,116.610756,114.619019,126.701668,147.164490,164.015717,175.734726,185.552917,183.313248,168.023987,144.164490,122.602493,111.214058,108.329765,103.627281,74.437202,57.709938,72.767776,88.519844,64.172752,29.949606,13.092580,9.420681,12.047123,7.173569,10.004148,10.285140,4.973563,0.861160,0.422315,0.029752,0.095868,0.100827,0.097521,0.000000,0.000000,3.577686,2.345455,0.000000,0.000000,1.138843,0.000000 -601994.955000,4612825.550000,6264,2805,128.123978,182.885971,161.266144,149.530609,131.613235,118.778519,118.216537,116.076042,115.216537,117.208275,116.315712,127.175217,146.431427,163.844650,177.555405,186.522339,183.398376,168.323990,143.786804,121.629761,110.943810,107.695877,104.018188,74.497536,57.803322,71.489273,87.695885,64.414894,29.704155,11.839687,9.456218,11.433901,7.294228,8.638032,6.700011,2.290915,1.564466,0.174381,0.222315,0.276034,0.086777,0.000000,0.000000,0.000000,0.000000,2.558678,2.365290,0.000000,4.772728,0.000000 -601997.555000,4612825.550000,6277,2805,135.996704,180.313248,159.561172,147.718216,133.296707,118.891747,118.065300,114.643814,115.280174,116.767776,116.090096,127.478523,146.205826,163.627289,176.247131,186.007462,183.263657,168.718201,143.114914,122.032242,110.313232,108.090096,102.263649,74.536377,58.883492,72.023979,86.850426,63.032246,28.544649,12.053738,9.296713,9.858693,6.661171,7.076874,7.188442,3.004966,0.419010,0.272728,0.259505,0.088430,0.000000,0.081818,0.000000,0.000000,0.000000,1.133058,0.000000,2.473554,0.000000,0.000000 -602001.955000,4612825.550000,6299,2805,155.715714,175.310760,160.781830,149.914062,132.831421,118.955383,118.616539,117.038033,116.319023,119.137199,115.682655,128.153732,146.434723,164.302490,178.004974,186.748779,183.872742,168.633072,144.335556,122.649597,111.525635,109.112411,103.872742,74.938858,58.186794,73.930588,88.963646,64.467789,29.600021,12.171092,9.442994,10.883487,6.965304,8.958694,7.656211,4.963645,1.060333,0.530580,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,1.247108,1.210744,1.940496,0.000000,1.202479,2.161157 -602007.155000,4612825.550000,6325,2805,147.326447,184.962814,163.334717,151.128098,135.103317,120.632248,120.161171,118.219025,117.417374,120.904976,117.061996,129.293411,147.053726,165.731400,178.929749,188.508270,184.549591,168.987610,145.037186,124.252083,112.929771,110.599190,104.045471,75.995880,60.053741,74.954559,89.607445,65.673576,29.235556,12.252911,9.458697,12.165306,7.925633,8.074395,8.784311,3.804140,0.574382,0.377687,0.023141,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.046281,0.000000,1.154546,0.000000 -602009.755000,4612825.550000,6338,2805,161.401688,185.310776,163.707474,151.393417,135.170258,119.219856,118.748779,116.228119,115.674400,119.823158,115.418205,128.790100,147.327301,163.038040,176.236389,186.757050,184.757050,168.004990,143.707474,123.723991,112.252914,108.600021,103.145477,74.319031,58.054562,74.352089,88.930603,63.831421,28.477705,10.937207,9.376880,11.198363,6.828941,7.117369,8.445467,4.276866,1.406613,1.295043,1.600001,1.887604,1.026447,0.522315,1.514050,0.238017,0.000000,3.607439,0.000000,0.000000,0.000000,0.000000 -602014.155000,4612825.550000,6360,2805,145.642181,189.443802,165.782639,153.104965,135.650421,122.146301,120.716545,119.228943,118.542992,123.080185,118.047127,130.022339,147.799179,167.187592,178.766113,190.121475,185.452057,169.733047,145.336380,125.228943,113.187622,109.708282,104.063652,75.782661,59.815727,75.005806,88.741341,64.154564,29.807457,11.959522,9.460349,11.766132,7.114890,8.313239,8.630592,3.114057,0.949588,0.183472,0.359505,0.057851,0.302480,0.093389,0.000000,0.000000,1.115703,0.000000,1.119008,4.953720,1.157851,0.000000 -602021.555000,4612825.550000,6397,2805,165.243820,199.152908,168.524811,158.582657,137.351273,123.838852,123.293396,120.161163,120.004143,125.144638,119.301659,131.747940,148.640533,167.384308,180.904953,190.797516,186.152893,168.789276,146.871933,126.028931,113.657036,110.764473,106.954552,75.896713,60.557869,76.276878,91.037201,63.285141,28.466963,11.069439,9.723160,10.471090,7.651253,7.564477,8.009104,3.966949,0.533885,0.000000,0.204133,0.601654,0.000000,0.000000,0.431405,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602033.755000,4612825.550000,6458,2805,119.000008,160.621521,165.299179,152.348770,138.266129,129.464478,126.919029,124.662827,124.340515,125.150429,125.456215,135.596725,155.728943,171.051254,184.125641,192.092590,189.960358,176.241348,150.919022,130.795059,118.464478,114.869438,110.381836,82.497536,65.464478,80.910759,95.571922,69.778534,32.646301,12.680182,10.034731,8.026462,7.977703,7.492578,7.814889,2.659511,0.619836,0.323968,0.149587,0.269422,0.000000,0.014050,0.166942,0.000000,0.000000,2.080992,0.000000,0.000000,0.000000,0.000000 -602054.355000,4612825.550000,6561,2805,122.246284,164.161179,162.268616,153.450424,139.169434,129.260345,127.904968,125.814056,124.789261,126.508270,126.896706,138.954559,156.210754,172.739685,185.260345,194.417374,192.260345,178.599182,154.111588,132.293396,120.169426,115.194221,110.681831,82.665306,66.417374,81.995880,94.119850,69.632248,32.376053,12.825636,10.062002,7.461170,7.800015,6.690096,5.705799,3.594222,0.313224,0.128099,0.206612,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.755000,4612825.550000,6733,2805,112.419022,159.964478,161.095062,151.681839,138.797531,128.847122,126.863655,127.078529,127.293404,129.128113,129.615723,140.128113,158.574402,174.260345,187.409103,196.037186,193.557846,181.086792,154.731415,132.673569,121.252083,116.987617,112.227287,86.012413,66.425636,81.863655,94.921501,71.632248,33.025639,13.807456,10.202498,6.067781,8.962000,6.172740,6.709929,3.390088,0.768597,0.916530,0.266116,0.094215,0.113223,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.168595,0.000000,0.000000 -602117.955000,4612825.550000,6879,2805,130.059509,172.323975,165.274384,157.274384,143.728943,132.497528,129.638031,126.869431,126.456207,129.084305,128.340500,138.745483,155.803314,172.695877,184.919022,192.844620,192.381805,181.133896,156.133896,135.398361,123.340508,118.770256,113.563644,86.679352,69.885971,83.092575,96.679352,72.447960,33.009937,14.457869,10.323987,5.247118,7.997535,8.984315,7.190098,2.695873,1.431407,0.338844,0.185124,0.000000,0.401654,0.127273,0.019008,0.429752,0.000000,1.267769,0.000000,0.000000,0.000000,0.000000 -602130.755000,4612825.550000,6943,2805,120.804985,180.538025,172.381012,162.538025,147.852081,134.612411,131.166138,130.265305,128.414078,131.389282,130.405807,140.513229,158.248779,175.116547,186.785965,196.075226,194.471909,183.257034,157.876877,134.835556,124.471924,119.306625,115.281830,85.695053,69.595879,84.190926,97.761169,73.141342,33.992584,13.597539,10.480185,4.877697,7.484313,7.193403,7.992576,2.423972,0.901655,0.516530,0.056199,0.000000,0.043802,0.186777,0.000000,0.128926,0.000000,0.000000,0.000000,2.123967,0.000000,0.000000 -602139.355000,4612825.550000,6986,2805,114.343811,175.178528,176.699188,160.294235,143.600006,130.418198,128.947113,127.195053,126.467781,127.236374,127.137199,139.823151,159.707458,177.004974,188.757034,198.542160,198.021500,182.054565,157.955383,135.773560,123.211586,120.236374,115.509102,86.128937,69.352081,86.095879,103.773567,74.451256,38.095890,15.009109,10.500845,8.996709,9.471917,10.143816,7.955387,3.858685,0.746283,0.409918,0.113224,0.173554,0.000000,0.013223,0.000000,0.017356,0.000000,0.000000,3.119835,0.000000,0.000000,0.000000 -602146.555000,4612825.550000,7022,2805,119.248772,178.952072,174.439682,159.646286,143.976868,129.373566,131.109116,126.274399,125.927292,126.224808,125.249603,138.373566,158.390091,176.910751,188.406616,197.166946,197.737198,180.910751,157.150421,134.638031,123.373573,119.919029,114.927292,85.084320,68.894241,86.076057,101.737213,75.489281,36.216549,14.262830,10.447952,10.335554,7.733901,7.740510,8.879354,4.766124,0.689258,0.121488,0.200000,0.347108,0.083471,0.000000,0.000000,0.126447,0.000000,1.130579,0.000000,0.000000,0.000000,0.000000 -602153.155000,4612825.550000,7055,2805,137.123978,187.991745,176.818192,160.752075,142.421509,129.975220,128.371918,126.074394,124.239685,125.090927,124.363655,137.553741,157.338852,175.074402,188.115723,197.561996,195.867783,180.347122,156.421509,134.289276,122.752083,119.033073,114.272743,85.611595,69.454567,84.479362,103.396713,73.165314,34.537209,12.790927,10.388449,9.668611,8.191751,8.904974,9.104973,3.877693,0.649589,0.576861,0.003306,0.059504,0.000000,0.116529,0.000000,0.007438,1.497521,0.000000,0.000000,2.577686,0.000000,4.348761 -602156.755000,4612825.550000,7073,2805,126.545471,185.421494,174.752060,159.355377,142.289261,129.545471,128.917374,125.512413,124.132248,126.603325,123.628113,136.735535,157.512390,175.057846,187.818176,197.677689,194.958679,180.661163,155.661163,134.702499,122.115715,119.528938,113.727287,83.173569,68.793404,84.462814,101.024803,72.909119,36.611591,13.780183,10.338862,11.646297,7.602495,9.278528,8.136377,5.642157,0.678514,0.137190,0.077686,0.142976,0.086777,0.000000,0.000000,0.015703,0.995041,0.000000,0.000000,0.000000,1.321488,0.000000 -602162.755000,4612825.550000,7103,2805,108.558693,185.042999,177.150421,160.208298,142.266129,129.745453,129.753723,125.753723,124.778511,127.117355,124.613228,137.563644,158.414886,174.390091,186.076065,197.059525,195.902512,179.307449,156.927277,134.447937,121.976860,120.067772,114.927277,85.398354,67.695885,85.695877,101.960335,75.133904,37.935555,14.011587,10.447953,13.851255,7.433072,7.200839,8.902493,5.226456,1.604962,0.106612,1.122316,0.367770,0.000000,0.489257,0.184298,0.056199,0.000000,3.028100,0.000000,0.000000,0.000000,0.000000 -602166.955000,4612825.550000,7124,2805,114.998367,175.690079,169.549591,159.326462,143.128113,128.557877,127.037216,124.500023,123.276886,125.128120,123.136391,135.384323,153.838852,172.491730,184.491730,194.954544,192.285126,176.772720,152.855392,130.384323,119.400848,116.392586,111.681839,84.458702,68.747955,84.847130,102.128120,74.483498,35.491756,13.366134,10.152912,8.921501,7.457039,8.411583,7.261169,3.338849,0.278513,0.504960,0.142149,0.000000,0.038017,0.000000,0.081818,0.222314,0.000000,0.000000,0.000000,0.000000,1.341322,0.000000 -602170.755000,4612825.550000,7143,2805,106.411575,169.717377,166.659531,158.081009,139.337219,127.295876,125.064468,122.882652,121.262817,124.279343,122.039673,132.494217,151.271103,170.320679,182.725647,193.238037,189.990112,174.345474,151.436386,129.436371,117.361992,113.981827,109.163643,81.618187,65.899193,81.345459,97.915726,73.056213,33.957043,11.506629,9.923985,5.214058,6.764479,6.488441,9.087615,2.803310,0.611571,0.539671,0.145455,0.071901,0.310744,0.304959,0.150413,0.000000,0.000000,1.444628,0.000000,0.000000,0.000000,0.000000 -602175.355000,4612825.550000,7166,2805,105.883492,164.701660,162.933075,152.304977,138.916534,124.660347,122.718201,120.784317,119.445473,121.147957,119.123161,131.817368,149.205811,167.354553,180.462006,189.974396,188.321503,173.329773,148.833908,127.296715,115.900017,112.147957,107.354568,81.519852,65.420677,81.478531,100.255394,73.891754,33.999191,13.205803,9.759522,5.531415,7.638030,6.180176,7.945467,3.387610,0.722315,0.000000,0.268596,0.228927,0.000000,0.178513,0.128926,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602182.555000,4612825.550000,7202,2805,100.542168,159.715714,163.145462,155.583481,138.376877,124.228119,122.426468,120.757050,118.798370,120.682663,119.525642,129.814896,147.806625,166.748779,178.244644,188.856216,185.748779,172.038025,149.211578,128.583496,116.509109,112.765312,108.872749,80.087624,65.021507,82.839691,99.343826,73.434731,36.004978,12.823158,9.897541,6.457035,7.355385,7.174394,8.081003,2.515706,1.466119,0.248761,0.390910,0.305786,0.826447,0.070248,0.000000,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.955000,4612825.550000,7249,2805,103.442154,157.805801,165.458694,156.640518,139.524811,129.384293,125.855370,121.706612,119.904961,120.533058,119.814049,131.185944,147.797531,166.268616,177.805801,187.144638,182.938034,171.152908,147.367783,125.971077,115.119835,112.780991,106.681824,80.210762,65.136383,81.119850,95.723137,71.929771,35.615723,14.214068,9.698366,5.943810,7.100015,7.661169,6.908275,4.981000,1.403308,0.398348,0.038843,0.032232,0.000000,0.264463,0.328926,0.305786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.155000,4612825.550000,7265,2805,85.980179,155.823151,160.376877,152.484314,137.203323,124.674393,121.608276,118.790092,117.013237,117.806625,117.112411,128.608276,145.219849,160.980179,171.905792,181.327286,179.418198,166.971909,144.079346,124.021500,112.649597,109.550423,103.781830,78.947121,63.178532,78.476044,94.550423,70.938858,32.233902,13.681009,9.434730,5.973565,7.730593,6.338856,6.360342,2.190089,0.639671,0.177686,0.042975,0.021488,0.000000,0.000000,0.306612,0.296694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.755000,4612825.550000,7278,2805,101.661171,155.056198,160.676041,150.709091,137.097534,126.469437,123.717369,119.056213,118.147125,118.642990,117.890923,128.337204,145.064468,161.080994,173.031418,182.014877,179.353729,168.990082,144.899185,125.552078,115.254562,108.651253,104.890923,79.585136,64.395058,79.866127,95.295883,70.246292,30.370266,12.661175,9.535557,3.505794,7.144642,7.577698,7.939680,2.471079,0.782647,0.504959,0.019008,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,1.227273,0.000000 -602202.155000,4612825.550000,7300,2805,89.659508,142.262817,159.833069,150.576859,135.535538,125.932236,121.452896,118.204964,116.485954,116.808273,116.378517,126.419838,144.287613,159.560333,171.064468,179.543808,178.204971,165.634720,144.428101,123.428108,112.246284,108.965294,104.436371,78.692566,63.700844,80.114067,93.039673,68.899185,32.890926,12.619024,9.494233,4.108273,6.708279,5.861996,6.431416,2.025625,0.772729,0.390910,0.049587,0.181819,0.000000,0.000000,0.736365,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.555000,4612825.550000,7337,2805,87.013245,146.328110,158.485138,145.518188,131.080185,121.237206,117.319862,112.708290,110.956223,110.642174,108.823990,120.328125,137.171082,152.261993,162.600845,172.476883,170.402512,158.633896,138.493393,118.534737,106.253746,101.972755,94.154572,69.906631,57.435551,76.270264,95.650436,73.766136,33.311584,12.286794,8.559524,5.995876,6.982658,6.387615,6.385135,2.696699,0.421488,0.718184,0.181819,0.000000,0.000000,0.000000,0.028099,0.499174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.955000,4612825.550000,7359,2805,84.607452,140.252075,154.582657,146.516541,132.830597,120.739685,116.971092,112.615715,110.194229,110.301666,110.268608,120.260345,137.293411,152.995880,162.632248,171.863647,170.475220,158.904968,137.466965,118.623985,106.557869,101.681824,95.590927,71.177704,56.962830,74.334724,94.747948,71.516548,31.376053,11.581007,8.690102,4.981826,6.406625,7.633898,5.446291,2.371080,0.845456,0.165290,0.080166,0.049587,0.181818,0.070248,0.000000,0.107438,0.000000,0.000000,0.000000,1.033884,0.000000,0.000000 -602217.355000,4612825.550000,7376,2805,76.485962,150.386780,158.510757,147.932236,131.535553,122.328941,117.072739,113.039696,110.337204,111.543816,110.659523,121.081009,137.709091,153.452896,162.568604,172.750427,170.510757,158.659515,137.700836,118.271088,106.452911,101.923981,94.981842,70.039696,56.386795,74.709106,94.791756,71.031425,33.014896,11.304150,8.634730,4.051247,6.881833,6.582657,5.649598,1.561988,0.238017,0.028099,0.033058,0.019835,0.000000,0.234711,0.363637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.355000,4612825.550000,7401,2805,83.470261,146.602493,156.247131,147.619034,132.296707,119.652077,116.751251,111.825630,109.437202,108.751251,108.693398,117.949600,136.544632,151.676880,162.338043,171.875229,169.999191,156.974396,137.255356,117.040504,105.536377,101.404144,94.536377,69.924805,55.627293,75.304970,95.114891,72.726456,34.577705,11.825636,8.594235,4.381000,6.014890,5.779351,6.037201,2.155378,0.813226,0.148761,0.074380,0.012397,0.000000,0.069422,0.000000,0.109091,0.000000,1.405785,0.000000,0.000000,0.000000,0.000000 -602229.955000,4612825.550000,7439,2805,70.779358,138.845459,156.357040,146.035538,130.985962,119.035553,116.266136,111.117371,110.604973,110.133904,110.249603,120.745476,138.175217,155.290924,165.745468,175.183487,171.580170,159.803314,139.348755,121.976875,106.464478,101.390099,95.654564,70.241341,55.919029,75.960350,95.489273,74.695885,32.638035,12.884315,8.695889,4.604967,6.137205,5.997533,6.273566,1.227276,0.295042,0.158678,0.000000,0.049587,0.000000,0.184298,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602237.355000,4612825.550000,7476,2805,75.603333,144.619827,155.404968,147.661179,131.809937,122.818199,117.669441,113.851257,109.446297,109.355385,109.297539,119.818199,137.933884,152.884308,163.578506,172.884293,170.355377,158.371902,137.685944,116.834724,105.884315,101.776878,95.545471,69.644653,56.562004,74.404984,94.842995,72.107460,33.074398,12.367785,8.685969,4.934720,5.761171,7.129765,6.439682,3.747943,0.593390,0.110744,0.093389,0.134711,0.000000,0.000000,0.255372,0.599174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.955000,4612825.550000,7529,2805,81.358704,142.590088,155.176865,143.854553,129.366959,119.433075,115.499191,109.978531,108.499191,108.052910,107.242996,117.606628,136.457855,151.714050,161.209915,171.945465,169.813232,156.201660,136.689255,116.846298,104.631424,100.251259,93.672745,68.309113,55.606632,73.590103,94.581841,70.813240,34.862823,12.227290,8.515722,4.745464,5.252905,6.317369,5.970259,2.857858,0.028100,0.408265,0.038017,0.156199,0.000000,0.000000,0.109091,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.155000,4612825.550000,7570,2805,90.786789,144.249603,156.299179,144.761993,130.216537,120.778519,116.555382,113.001663,110.927284,108.712410,107.935547,119.604965,136.216537,150.514053,162.621475,170.208252,169.340485,155.836380,135.117371,115.943810,104.216537,100.456207,94.472740,69.026466,54.811588,75.373573,92.489273,68.390091,30.208282,10.384313,8.588449,4.338851,5.870263,6.171913,5.785135,1.946285,0.150414,0.070248,0.000000,0.031405,0.220661,0.000000,0.169422,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.955000,4612825.550000,7584,2805,69.519852,146.329773,157.073578,148.090103,132.354553,122.495056,118.197525,114.164467,111.776047,110.718193,110.990921,121.536377,138.900024,153.073578,164.825638,173.015717,171.949600,159.329773,137.197540,117.891739,106.131416,103.057037,96.536377,71.800842,57.123161,74.354568,91.304970,69.222328,32.255390,12.200018,8.776052,4.546290,6.790925,5.788441,5.192574,2.481822,0.169422,0.079339,0.037190,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.755000,4612825.550000,7598,2805,77.315720,139.423157,161.728958,146.596710,134.042984,123.166954,119.836372,115.340508,113.745461,113.059517,112.737198,123.828110,141.076050,156.943832,166.505814,175.076065,173.555405,161.927292,138.307434,119.646294,107.489265,105.092575,99.381828,72.910767,59.489273,75.348778,92.142159,68.960350,31.431425,12.309107,9.034731,6.271086,7.652907,7.012409,7.164477,2.721493,0.444629,0.000000,0.000000,0.149588,0.180165,0.000000,0.292562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602266.355000,4612825.550000,7621,2805,86.219017,148.566132,161.723175,149.855392,134.103317,124.574387,120.285133,115.516541,114.070259,113.095047,113.533066,124.326454,141.880173,156.516541,167.500031,175.987625,175.665298,161.450439,137.632233,119.392570,108.442154,104.086784,99.500008,74.442162,59.219025,75.888435,92.929764,68.309937,32.053741,11.885968,9.045475,5.376044,7.771090,8.300015,7.716542,1.900005,0.314877,0.202480,0.119835,0.051240,0.000000,0.132232,0.127273,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602275.155000,4612825.550000,7665,2805,76.756218,149.086792,157.657028,148.772720,133.111572,122.028931,118.458687,113.607445,111.789261,109.913231,110.070259,121.144638,139.202499,155.690079,165.929749,174.590927,172.797531,158.690079,138.466965,119.921494,107.095047,103.657043,96.227287,70.623985,57.615723,76.491753,95.450424,70.450432,32.789276,13.407455,8.747953,6.583481,7.817371,9.200016,7.612408,2.689262,1.677689,0.307439,0.202480,0.145455,0.059504,0.000000,0.000000,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602277.955000,4612825.550000,7679,2805,87.825638,149.040497,157.007446,147.866943,130.668610,119.023987,116.767792,111.833900,110.404152,109.354568,108.073570,120.536385,136.974396,153.759506,164.280167,173.957870,171.230591,159.057022,137.172729,118.271919,105.569443,102.395889,94.627289,70.172745,55.321503,74.420677,93.685143,70.205803,32.966137,10.607455,8.602498,4.781827,5.914890,6.024807,7.234723,2.325626,0.538845,0.000000,0.000000,0.049587,0.043802,0.106612,0.514877,0.157851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.355000,4612825.550000,7701,2805,74.462830,147.768631,155.272766,141.376068,128.757858,119.286789,117.896706,114.227280,111.764473,110.888435,110.466949,120.334717,137.706635,153.493408,164.228958,173.228958,170.782669,158.253738,137.121521,118.377693,105.453728,101.941330,94.081833,70.536385,56.222332,74.404152,95.833893,70.585960,34.544647,11.804150,8.552912,6.383481,5.995882,6.214890,5.293398,2.595873,0.370249,0.085125,0.041322,0.116529,0.014876,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602286.155000,4612825.550000,7720,2805,93.731430,149.739685,156.929764,147.756210,131.830597,120.392578,116.004150,112.252083,109.756218,108.128113,109.326462,119.665306,138.260345,153.235550,164.020676,174.252075,172.764481,158.599182,138.053741,118.574394,106.987617,100.747948,94.500015,69.971100,55.665310,74.524818,94.475220,70.062004,34.781013,15.550430,8.590928,6.120672,6.658692,8.350428,8.720674,2.252898,0.105786,0.487604,0.398349,0.042149,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.755000,4612825.550000,7738,2805,80.019035,150.580994,157.390915,149.324799,131.118195,119.589272,115.184311,110.812408,108.010757,107.357864,105.663651,118.506622,135.547943,151.985962,162.209091,172.490082,171.415710,157.928101,137.481827,116.374397,104.878525,99.828941,93.118195,68.217377,54.614071,72.399185,94.043816,72.316544,32.457043,11.673570,8.465309,6.118190,6.066957,5.447945,5.276869,1.990915,0.200827,0.444629,0.247108,0.020661,0.027273,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602292.755000,4612825.550000,7753,2805,79.613243,151.644623,155.537186,146.809921,131.975220,120.933891,115.933891,111.223152,108.512405,107.793396,107.628105,118.561989,137.355377,152.545456,164.528931,173.214874,172.057846,157.578506,136.677689,117.396706,105.338852,99.719017,94.545464,68.099190,54.330593,72.743828,93.669426,71.314072,32.537209,12.065308,8.595060,6.525630,7.089269,7.040508,7.356210,2.283477,0.385952,0.421489,0.000000,0.303307,0.000000,0.130579,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.555000,4612825.550000,7767,2805,94.236374,153.442993,157.434723,145.996704,130.872726,119.029755,116.285965,111.723976,108.930588,108.575218,107.641335,118.699181,137.368607,153.641342,163.988449,174.319016,171.219849,157.914062,137.046295,117.261162,104.748772,100.864479,93.781830,68.244652,54.641338,74.302498,93.847946,70.996712,33.152084,11.882661,8.525639,6.568606,6.160344,7.370260,6.358688,3.794223,0.709919,0.170248,0.074380,0.085951,0.033884,0.057025,0.237191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602300.155000,4612825.550000,7790,2805,93.243828,151.623978,157.549606,147.260345,131.797531,119.896713,116.871918,112.483490,110.574394,109.351257,108.615715,120.086792,138.351257,153.665298,165.351257,174.896729,173.343002,158.433899,137.053726,118.177704,106.202492,101.566132,95.772743,69.830597,56.012417,73.268608,94.888443,70.657043,32.797539,12.987621,8.706632,5.439678,6.610758,7.702494,7.100839,2.481823,0.434713,0.018182,0.078513,0.167770,0.100000,0.099174,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602307.755000,4612825.550000,7828,2805,93.552917,153.619034,159.354568,148.900024,133.726471,121.784317,118.114899,113.933075,111.280182,111.214066,109.792580,121.139687,139.387619,155.478531,165.850433,176.891754,174.098373,159.197540,137.933075,118.147957,105.767792,102.833900,96.263657,70.189278,55.685143,75.172752,94.660347,71.255394,33.602497,13.419853,8.751259,6.889266,7.771915,6.838029,8.423980,3.003310,0.510745,0.000000,0.073554,0.353720,0.047108,0.000000,0.566116,0.328926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602314.555000,4612825.550000,7862,2805,93.451263,152.897552,161.195068,147.988464,133.459518,120.137199,118.236374,114.021500,111.319023,111.029762,109.013237,121.442986,139.955399,155.690933,167.955399,177.170258,174.715714,159.806641,138.740524,117.170258,106.467781,102.905800,95.872742,70.492584,55.905807,73.327293,94.434723,71.451256,33.211586,12.522333,8.715722,7.776871,6.995055,6.933071,7.554557,1.670254,0.067770,0.339671,0.104959,0.023967,0.095868,0.061157,0.260331,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602317.955000,4612825.550000,7879,2805,90.659515,165.097534,156.304138,149.981827,134.857864,117.667778,115.775215,113.312401,110.923973,110.709099,108.593391,120.552071,140.031418,155.064468,166.725632,177.684326,174.229782,158.023148,137.320663,117.519012,106.163643,99.899178,96.163643,68.221512,56.006630,72.386795,94.138847,69.238029,33.766960,13.146298,8.742168,10.553732,7.395056,6.120673,7.380178,3.240501,0.809093,0.000000,0.000000,0.198347,0.000000,0.000000,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602323.955000,4612825.550000,7909,2805,82.909935,152.777710,158.695068,149.405792,131.381012,119.009102,115.347946,111.885139,110.703316,111.364479,108.091751,119.785965,138.066971,155.612427,167.207474,177.066971,174.604156,158.587631,136.934738,116.538033,104.984314,101.033897,94.918198,69.091759,55.769444,71.860352,92.918198,68.926468,31.496714,11.257044,8.628945,7.852903,6.599189,7.922328,5.951250,2.309095,0.703307,0.466943,0.275207,0.270248,0.007438,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602327.955000,4612825.550000,7929,2805,86.985153,161.241333,160.662827,147.952087,131.976883,119.307465,117.067795,112.778542,111.001678,111.885979,109.464485,121.183495,139.175232,156.745468,168.869431,178.092575,174.960342,158.687607,136.580185,116.795067,106.340523,101.571930,96.836388,69.753746,54.902496,72.778542,91.943825,68.935562,32.307457,11.619024,8.803325,7.502491,7.043815,7.397533,6.309928,2.848765,0.685952,0.171075,0.114877,0.183472,0.231405,0.000000,0.357852,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602334.755000,4612825.550000,7963,2805,108.122337,167.089279,160.915726,149.800018,133.452911,118.295883,116.981834,111.990097,110.940514,112.411583,108.023155,119.932243,137.990128,156.089279,169.419861,179.899200,174.750443,159.246307,137.783508,116.866127,105.940514,101.262825,95.527290,68.428116,53.576878,73.295883,93.593407,68.560349,31.647125,11.538860,8.684317,10.085136,7.069437,7.452907,7.780178,1.779343,1.049588,0.195042,0.000000,0.000000,0.023141,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602340.555000,4612825.550000,7992,2805,103.445473,168.718201,160.387619,152.701675,132.742981,118.734718,116.718193,112.627281,110.395889,113.462006,107.726463,121.147942,137.800842,156.214066,168.941345,180.329773,175.668610,157.891754,136.023987,117.470261,104.445473,101.685143,95.354568,68.701675,53.544647,74.751259,93.131424,69.313232,32.916550,11.762000,8.668614,9.432244,7.372742,7.547947,6.459515,3.715708,0.499175,0.364464,0.109918,0.035538,0.338017,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,1.655372,0.000000,0.000000 -602346.355000,4612825.550000,8021,2805,122.431419,167.638046,160.183502,153.894241,135.530609,120.960350,119.059525,114.902504,113.133911,117.175232,111.737213,123.233086,140.315735,160.770279,171.976883,181.009949,179.084320,159.489288,139.538864,119.588455,108.133911,103.472755,98.109108,70.737206,56.819851,76.067787,94.307457,68.604973,33.919025,13.158695,8.919028,9.692573,8.137205,8.218196,7.782656,3.370253,0.335538,0.677687,0.057852,0.085951,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.990909,0.000000,0.000000 -602352.555000,4612825.550000,8052,2805,107.133904,155.662827,159.175217,146.761993,130.241333,117.555389,114.018196,110.348778,107.274399,111.505806,105.216545,117.728943,135.224792,153.728943,166.282654,176.638031,173.059509,153.671082,134.927277,114.117371,101.778534,98.406631,91.472748,64.439690,52.274399,73.852913,89.646301,65.348778,28.753738,9.876050,8.315722,8.129765,4.450425,4.949596,6.027283,1.688433,0.394216,0.171901,0.082645,0.041323,0.104132,0.000000,0.000000,0.280993,0.000000,0.000000,0.000000,1.038843,0.000000,0.000000 -602358.755000,4612825.550000,8083,2805,91.307457,137.613251,139.985153,131.282669,118.175224,105.621506,102.869438,98.712418,96.059525,96.902496,96.191750,107.522331,125.910759,142.629776,154.505814,163.654572,161.555405,148.406631,126.233078,106.596710,95.728943,90.993408,85.381836,61.042992,44.753738,65.142166,85.390091,64.795059,28.746300,10.682660,7.762003,3.560337,5.909931,5.793401,6.056209,2.033062,0.484300,0.140497,0.123141,0.021488,0.038017,0.000000,0.058678,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602367.555000,4612825.550000,8127,2805,93.657875,141.740524,139.385147,129.459518,115.699188,103.624809,99.765305,96.352081,94.765305,94.467781,94.897537,106.352081,123.666130,142.674408,154.781845,163.715729,161.872757,148.294250,126.013245,105.930588,95.657867,91.104149,84.054565,59.583492,45.467789,64.145477,86.723976,67.509109,27.052086,10.648776,7.641341,5.995050,7.928940,4.967780,6.725630,1.411574,0.552895,0.043802,0.014876,0.011570,0.018182,0.000000,0.052066,0.326447,0.000000,0.000000,1.911570,0.000000,0.000000,0.000000 -602380.155000,4612825.550000,8190,2805,95.522331,129.104980,138.939697,127.460335,112.542984,100.394226,97.857033,94.600838,93.270256,93.848770,95.088440,106.476868,125.278519,142.303329,155.262009,165.088455,162.683487,148.914902,125.567780,105.782654,94.146294,89.790924,85.700020,60.352909,44.427292,64.096710,85.303322,66.642166,29.129772,10.922331,7.790929,4.544638,7.538857,7.107449,7.041335,3.609924,0.728927,0.224794,0.258679,0.528100,0.090083,0.286777,0.125620,0.548761,0.000000,0.000000,0.000000,2.951240,0.000000,0.000000 -602390.955000,4612825.550000,8244,2805,124.115715,132.157028,131.471085,121.206619,103.801659,92.752083,90.363655,87.603325,85.652908,87.355385,86.363655,98.413239,116.619843,135.735550,147.454559,155.404968,153.876053,139.355392,116.619843,97.545471,87.082664,84.537209,79.363647,54.165310,39.429771,59.090931,79.198357,60.446301,26.834728,9.997536,7.214896,6.647944,8.028938,8.850425,9.688443,6.172737,1.890087,0.532233,0.619010,0.336366,0.555373,1.380993,0.000000,0.100827,4.100000,11.452893,3.154546,1.406612,1.675207,2.934711 -602396.355000,4612825.550000,8271,2805,88.166969,101.885971,85.226463,72.280174,59.481010,50.161175,47.855385,46.871910,45.714886,45.749596,46.302494,54.904968,67.711586,80.290932,89.117378,94.137215,93.988449,86.745483,73.333900,61.579353,54.926460,53.133072,54.100014,35.516544,22.140509,39.999184,71.422325,65.328941,31.686794,5.975218,4.918197,10.189267,13.180179,23.531422,33.582661,28.881006,17.520672,20.813231,17.576866,16.710749,19.222319,17.567772,16.490913,17.902483,27.087606,11.724795,24.085129,27.584303,20.661983,40.591736 -601653.155000,4612815.550000,4555,2855,146.640518,155.781006,137.466965,124.673569,108.293396,94.896706,94.053726,90.177704,89.904976,91.202492,90.772743,102.847115,120.814064,138.913239,150.847122,161.045471,160.392578,148.161179,125.714890,106.119843,94.599190,92.367783,84.772743,57.425640,41.086796,57.673573,73.227295,54.781013,24.896713,10.867784,7.706631,14.153736,11.098364,11.715718,14.957868,10.872740,3.980174,0.740499,1.137192,0.403307,0.178513,0.154546,0.447936,1.141324,14.838845,7.275208,10.536365,4.363637,3.266116,6.895868 -601657.955000,4612815.550000,4579,2855,133.315720,151.194229,135.177704,124.045471,108.987617,97.243820,95.665306,92.243820,91.516548,93.665306,93.219025,104.450432,122.954559,139.623978,151.987625,161.665298,161.830597,150.599182,126.855385,106.400841,95.235550,92.128113,85.227287,58.078533,41.863655,57.830597,73.194229,54.433903,22.582663,9.555387,7.747953,13.011585,9.016542,11.024809,12.223155,8.105796,1.757030,1.665294,1.262812,0.161984,0.205786,1.182646,1.472730,0.699174,18.845457,8.461159,5.185125,4.685951,8.317356,3.586777 -601662.355000,4612815.550000,4601,2855,134.460342,157.942169,141.446274,127.735542,111.950432,100.867783,99.363655,96.818199,95.322327,96.041336,97.140511,108.595055,127.314056,143.578506,154.595062,165.586792,163.479355,152.281006,129.231415,108.710762,98.710762,95.024811,88.000015,60.909111,46.694237,58.867790,76.942162,56.066135,25.373573,9.705799,8.000019,12.934726,7.104971,9.293402,8.910756,6.803317,2.671907,0.987606,0.495869,0.131405,0.626447,0.207438,0.314877,0.965290,7.704134,5.456199,7.328927,0.687603,1.768595,0.000000 -601668.155000,4612815.550000,4630,2855,134.408279,150.904129,142.788437,128.788437,114.573563,102.763657,100.052910,98.499191,96.780182,98.234734,98.730598,110.573563,128.267776,144.829758,157.135544,166.160339,165.614883,153.697525,130.011581,109.912407,98.846298,96.309105,89.400017,61.234726,45.375221,60.242992,75.689278,56.590099,24.995060,9.344644,8.127292,9.002492,8.166128,8.545469,9.271914,6.602489,0.823970,0.601654,0.600001,0.146281,0.000000,0.239670,0.728927,0.394215,3.952893,4.542150,5.461158,1.917356,5.283472,3.521488 -601675.355000,4612815.550000,4666,2855,128.589264,151.605789,143.490082,129.423981,115.754562,103.928116,102.093407,99.746292,98.250427,99.432243,99.828941,111.324806,130.333069,146.217361,157.556198,167.399185,167.019012,154.556198,131.506622,111.101669,99.465302,96.622330,90.663651,62.523155,46.622330,60.936378,76.101669,57.862000,24.933079,9.471918,8.242168,9.981006,8.209105,8.882659,8.494229,4.941330,1.110747,0.765291,0.417356,0.150414,0.242976,0.173554,0.317356,0.314050,2.890909,3.937191,3.831406,1.530579,0.885951,3.587604 -601684.755000,4612815.550000,4713,2855,116.245476,146.723160,140.458694,127.896721,113.871918,103.871918,100.731415,98.458687,97.904968,99.433891,100.012405,110.946297,130.152908,146.144638,158.450424,166.971085,165.185974,153.954559,131.144638,109.549606,97.690094,94.632240,88.136375,61.466957,44.508282,60.739685,76.483490,56.475224,24.386795,9.009933,8.012416,7.113235,7.339682,7.884311,5.936376,2.354551,0.227273,0.285951,0.291736,0.084298,0.000000,0.000000,0.519009,0.236364,9.764464,6.693389,1.582645,6.925621,0.000000,1.821488 -601697.555000,4612815.550000,4777,2855,120.475212,147.678528,142.587616,129.802490,116.339684,106.240509,102.339684,102.124809,100.554558,101.455383,102.761169,113.926460,132.736374,147.777695,160.744644,169.653732,169.182663,156.876877,132.538025,112.066956,100.248772,96.496704,91.009102,64.323151,47.827290,64.182655,77.513237,56.108276,25.166134,9.594233,8.273573,7.033072,7.379352,7.059515,7.029766,4.249594,0.804134,0.360332,0.385952,0.047108,0.054546,0.020661,0.492563,0.247934,2.152893,2.873554,3.226447,0.739670,1.000000,0.000000 -601702.555000,4612815.550000,4802,2855,106.900841,139.780167,143.804962,131.309097,117.433060,107.474380,105.061157,102.953720,103.267769,103.590088,104.044632,115.507439,134.499176,149.953720,162.656204,171.466125,169.672729,157.433060,134.003311,112.796700,101.755379,97.928940,92.490921,64.416550,47.614899,63.366959,77.019844,57.879356,25.507458,11.348777,8.408284,8.843815,7.893404,8.236377,8.157865,3.354552,0.820663,0.509918,0.679340,0.354546,0.000000,0.011570,0.111570,0.000000,3.860331,4.688430,1.695868,0.712397,2.995042,0.000000 -601706.155000,4612815.550000,4820,2855,108.190926,141.274399,143.233078,129.762009,116.100845,106.538864,103.059525,100.869438,101.076050,101.547127,102.588448,112.844643,131.109116,147.530609,160.117386,168.340515,167.795074,155.481018,131.976883,110.993408,100.770264,96.299194,90.200020,62.423157,46.629768,62.100845,76.505806,55.638035,23.307457,7.937206,8.200019,6.462821,5.710756,6.566127,7.368608,2.095045,0.304133,0.000000,0.000000,0.098347,0.114050,0.014876,0.256199,0.000000,0.900000,0.923967,0.000000,2.211571,0.000000,3.598347 -601711.355000,4612815.550000,4846,2855,107.783485,141.462006,144.156219,130.776047,118.842163,108.379349,105.296707,102.891747,103.015717,103.536377,104.371086,115.238853,133.842163,148.445480,161.247131,170.742981,168.428925,156.660355,133.652084,113.015717,100.709930,97.668610,91.263649,64.379356,47.602497,62.371090,76.404144,56.957867,24.464483,11.130595,8.296714,6.777698,7.625635,7.681004,6.514887,3.693395,0.128100,0.067769,0.054546,0.043802,0.017356,0.040496,0.282645,0.296694,1.068595,1.040496,0.000000,1.389256,0.816529,1.795041 -601714.555000,4612815.550000,4862,2855,98.624809,142.207458,141.504974,132.992584,117.554565,108.199196,105.488449,103.033905,102.141342,103.686798,104.083488,115.223991,133.719849,149.546295,161.116547,168.976044,168.447113,155.909927,132.918198,112.785973,101.133080,96.215721,90.645477,62.447128,47.174400,62.323162,75.653740,56.777706,25.450432,9.259520,8.240516,5.833068,7.566956,6.787616,6.137201,3.593395,0.385125,0.289257,0.080992,0.000000,0.028926,0.000000,0.252066,0.227273,0.999174,0.000000,0.000000,0.706612,1.859504,1.880992 -601717.355000,4612815.550000,4876,2855,102.307449,143.923996,144.552094,132.849609,119.692581,109.998367,106.535561,103.758698,104.138863,104.667793,105.147133,116.510765,134.370270,150.238037,162.362000,171.023163,169.560349,157.849609,134.816559,112.998367,102.238037,97.899193,92.072746,65.560349,48.700844,64.477707,77.824814,57.411591,25.800018,11.221505,8.370268,5.772739,7.995054,8.457037,7.366955,2.876040,0.490910,0.348762,0.181819,0.040496,0.011570,0.010744,0.530579,0.000000,0.932232,0.985124,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612815.550000,4899,2855,100.018196,142.866943,143.007462,131.569443,117.189278,107.428947,104.709938,102.073570,101.023987,102.966133,102.982666,114.015724,131.990921,147.495056,160.371094,168.172745,167.098373,154.933075,132.395889,111.759521,98.767792,95.610764,90.081841,62.321507,46.676876,61.759525,75.329773,56.048779,23.883490,9.725635,8.189276,6.795055,7.041337,7.698358,8.015716,3.496701,1.298350,0.000000,0.571076,0.627273,0.000000,0.044628,0.343802,0.237190,0.000000,0.000000,0.864463,2.964463,0.869422,0.000000 -601727.955000,4612815.550000,4929,2855,97.796707,136.406631,140.662827,131.357040,116.538849,108.753731,104.728935,100.720673,101.315712,101.497528,101.208275,113.224800,130.762009,147.009933,159.117371,167.679352,167.001663,154.092575,131.067780,111.299187,100.142159,94.828110,89.290916,62.861179,46.158699,61.142170,75.555382,57.018204,24.142166,10.385139,8.117374,5.232241,6.419847,6.840508,6.778524,3.008270,0.683473,0.217356,0.184298,0.000000,0.024794,0.000000,0.348761,0.000000,0.000000,1.945455,1.738843,0.789256,3.810744,0.000000 -601730.755000,4612815.550000,4943,2855,97.628944,138.871902,143.450409,130.847122,117.425644,106.309937,103.359520,100.433899,99.037216,101.177704,101.334724,111.681831,129.929779,146.086777,158.293396,166.516525,164.822311,154.334717,129.723160,110.326462,97.747948,94.863655,88.318199,60.938038,45.210770,59.747955,74.334724,56.574402,24.873571,8.647124,8.028945,4.303316,5.940508,6.431420,5.968607,2.588434,0.784299,0.342150,0.292562,0.137191,0.000000,0.000000,0.131405,0.000000,2.013223,0.963636,1.628099,0.000000,2.826447,0.000000 -601735.555000,4612815.550000,4967,2855,99.966125,132.934723,140.381012,128.405792,115.066956,104.670258,103.331421,99.504974,99.976044,101.050423,100.141335,111.174393,129.893387,145.893402,158.777695,166.166122,164.893402,153.819016,131.422318,108.959518,97.364479,93.471916,88.372742,60.248783,43.992580,59.232254,73.100014,54.976055,24.066135,9.686792,8.033904,5.012408,6.447120,6.598361,5.633071,2.733889,0.508265,0.363637,0.179339,0.135538,0.028926,0.361158,0.258678,0.000000,0.929752,0.904132,0.821488,0.000000,0.000000,0.000000 -601742.355000,4612815.550000,5001,2855,113.369431,147.428925,141.668594,130.891739,116.734718,107.379341,104.900009,102.809097,101.470261,102.420662,102.057037,113.230583,132.445465,147.635559,159.371078,167.635544,166.304962,155.081818,131.693390,111.205788,99.759514,95.205795,88.990929,62.147949,46.916553,60.759525,76.428947,56.660355,25.233902,11.866132,8.090102,6.570260,7.661171,8.002492,6.288442,3.223974,0.839671,0.300001,0.076033,0.034711,0.072727,0.215703,0.000000,0.478513,3.098347,0.000000,0.000000,1.334711,1.828926,5.373554 -601746.755000,4612815.550000,5023,2855,112.876053,142.861984,140.622314,130.547943,115.837212,105.738037,102.523163,100.795891,98.655396,101.068619,101.002502,112.589279,129.886795,146.605789,157.919846,166.853729,165.225632,155.101654,130.382660,109.498367,97.465309,94.151260,88.845467,60.771088,43.481838,58.547947,74.738037,55.721508,24.366957,8.913239,8.076880,5.545466,7.923154,6.399185,6.771087,2.960336,0.635539,0.136364,0.186777,0.046281,0.055372,0.030579,0.775208,0.000000,1.014876,0.000000,0.000000,2.277687,0.949587,0.000000 -601750.355000,4612815.550000,5041,2855,115.656212,147.961166,141.729752,131.523148,118.787621,107.622330,105.225632,102.630592,101.283485,103.275223,103.101669,113.200844,131.382660,148.448761,159.969421,168.531418,167.688431,156.283478,132.845474,110.994232,99.729767,95.581009,90.390923,61.688450,45.200848,60.283493,76.002495,55.994236,24.436382,10.023157,8.217375,5.849598,5.695880,6.040507,6.130591,2.988435,0.378514,0.079339,0.113223,0.114876,0.497521,0.000000,0.152066,0.000000,1.071075,0.000000,2.564463,0.734711,3.976860,1.916529 -601755.955000,4612815.550000,5069,2855,102.147957,143.676865,142.594223,132.825638,116.726456,106.288452,104.106621,101.652084,100.329773,102.900017,102.453735,113.023979,129.966125,147.404129,158.784302,167.668594,166.247116,154.123138,131.131409,109.924812,98.205803,94.114899,87.990929,61.470264,43.701668,58.114891,73.734741,53.767784,21.595060,8.911586,7.999193,4.725630,6.571086,5.972740,5.059514,2.933890,0.417356,0.085124,0.253719,0.087604,0.011570,0.247108,0.239670,0.000000,3.083471,0.000000,2.449587,0.000000,3.691736,0.000000 -601763.755000,4612815.550000,5108,2855,113.700012,145.010757,142.019012,134.167770,120.209099,107.465302,104.035553,102.581009,100.903320,103.680183,103.481834,113.911575,131.043808,146.828934,159.564468,168.192566,166.886780,155.159515,132.200836,110.704971,97.961174,94.622330,88.936378,61.109940,44.928123,59.159519,75.002502,55.895058,23.002499,9.468611,8.085142,4.552074,6.295053,7.293402,6.490095,2.004963,0.657853,0.240497,0.054546,0.024794,0.000000,0.000000,0.000000,0.261984,1.064463,2.048760,0.859504,3.968596,1.932232,3.740496 -601772.555000,4612815.550000,5152,2855,114.024803,151.311600,144.691742,133.385956,121.154556,110.121498,107.394226,104.569435,103.519844,106.048775,105.726456,115.972740,132.666946,148.625641,161.319855,169.658707,168.493408,157.369446,133.749603,112.947945,100.197533,97.495056,91.718193,64.982666,48.486797,62.585968,76.617371,57.633904,25.271917,10.605801,8.338036,6.303318,7.745469,7.443815,7.759518,2.751245,0.976035,0.903307,0.823141,0.676034,1.017356,1.249588,0.522315,0.776860,0.000000,1.012397,2.171075,0.712397,5.064464,0.000000 -601781.555000,4612815.550000,5197,2855,125.385147,153.807449,148.336380,139.419022,124.749603,112.352913,108.832253,108.328117,106.245476,109.055389,107.873573,118.179359,136.038849,151.989273,164.733063,172.972733,171.534714,159.187607,136.311584,113.328117,102.435555,98.625641,92.881836,65.972748,47.476879,61.361176,76.782661,57.625637,25.419027,10.339686,8.443820,6.260341,6.900014,7.085962,8.072740,2.114881,0.241324,0.062810,0.252067,0.000827,0.372728,0.009091,0.266942,0.743802,2.172728,0.668595,2.541323,2.638843,2.229753,0.000000 -601787.355000,4612815.550000,5226,2855,123.128937,163.114059,149.849594,141.816528,126.444641,113.461174,110.775223,109.428116,107.560349,110.461174,109.155388,120.320679,136.998352,153.403305,165.147110,175.204971,172.824799,161.824799,137.791748,115.477699,102.890923,98.138855,94.163651,66.188446,48.866138,63.064484,77.824806,58.667786,23.560349,10.846298,8.560350,4.575215,7.517367,6.067781,7.114063,2.382650,0.671077,0.105786,0.115703,0.189257,0.000000,0.032232,0.127273,0.398347,0.000000,0.000000,0.875207,0.000000,4.224794,6.022315 -601792.755000,4612815.550000,5253,2855,133.167786,165.198364,150.776871,141.413239,125.801666,111.966957,110.198364,109.082664,107.528938,110.479355,109.206627,118.942162,136.818192,154.438034,167.157043,175.157043,173.008286,162.355392,137.214890,115.727287,104.049606,98.586792,93.454559,66.157043,49.876053,62.223160,76.561996,57.958698,24.090927,9.585967,8.495887,5.295051,6.828938,5.994226,6.053730,2.551244,0.219010,0.174381,0.176861,0.114876,0.000000,0.029752,0.267769,0.000000,1.180165,3.238843,1.836364,0.000000,2.295041,0.000000 -601798.355000,4612815.550000,5281,2855,125.534721,170.919037,154.224823,143.489288,127.629761,115.009926,111.803314,110.852905,109.249596,113.348770,110.398354,121.299187,138.588455,156.249619,168.505814,177.505814,176.233078,163.067795,138.852921,116.307449,105.257858,100.828117,95.563652,67.514061,49.762009,64.960350,77.753731,58.009945,25.024813,9.023158,8.687622,5.358687,7.324806,5.962822,5.701663,2.266946,0.271902,0.085125,0.043802,0.000000,0.240497,0.000000,0.215703,0.000000,0.000000,2.226446,0.905785,1.025620,1.096694,0.000000 -601802.555000,4612815.550000,5302,2855,115.333084,161.019852,153.730591,139.738861,125.532242,113.664474,112.333893,110.102493,107.796707,108.804970,108.838028,120.573563,138.433075,155.267792,166.185150,175.523987,173.854568,159.829773,135.019852,114.937202,103.474396,101.135559,95.127289,67.838036,51.209942,62.738861,78.317368,57.366962,22.656218,9.995059,8.647953,8.549599,6.438856,8.029765,7.834723,3.160339,0.985126,0.355373,0.114050,0.000000,0.333059,0.114050,0.000000,0.000000,1.060331,1.085950,0.000000,0.866116,0.000000,0.000000 -601807.155000,4612815.550000,5325,2855,121.774406,154.630600,153.250443,140.002502,124.333084,113.952911,110.903328,107.465309,106.944649,107.531425,107.366135,118.597542,136.688446,153.068619,164.787628,174.415726,172.448776,158.283493,133.903336,113.250435,102.134735,99.291756,92.754570,67.506630,49.440514,63.250431,77.812416,55.614067,22.638861,10.291752,8.432250,8.501664,7.738857,7.695880,7.111581,2.952899,0.977688,0.043802,0.382646,0.200827,0.252067,0.122315,0.250413,0.000000,1.069422,0.000000,1.018182,3.407439,0.000000,0.000000 -601811.955000,4612815.550000,5349,2855,125.933899,160.509109,152.930588,140.203323,126.071091,113.211594,111.071098,108.558701,107.418205,108.881012,108.236382,119.128937,137.575226,153.872742,165.930588,173.963654,172.401672,159.484314,133.459518,113.261177,102.302490,98.451256,93.418198,66.674400,50.343819,62.393406,77.062820,56.608280,24.497538,8.518199,8.492581,7.398359,7.409104,7.830590,6.466954,3.212403,1.304135,0.448761,0.933060,0.624794,0.203306,0.991737,0.000000,0.000000,0.000000,0.000000,0.000000,0.929752,1.130579,0.000000 -601817.555000,4612815.550000,5377,2855,117.114067,167.027283,153.275208,140.473557,123.961174,111.895058,111.671913,107.324806,106.704964,108.572731,106.523148,119.407455,136.192581,153.969421,165.721497,175.134720,173.448761,158.300003,133.415726,112.688446,101.134720,97.944641,92.936378,65.746307,48.853741,61.448780,76.845474,55.663658,23.176052,9.062825,8.448779,8.222327,5.850427,7.311582,7.162822,2.394220,0.942976,0.311571,0.209091,0.228926,0.028926,0.002479,0.000000,0.000000,2.234711,1.108265,0.000000,2.482645,2.071074,1.894215 -601826.155000,4612815.550000,5420,2855,135.910751,166.835541,154.182648,142.909943,126.397537,113.438858,111.215714,110.463646,108.240509,110.868607,109.405800,120.504974,139.174408,156.438843,168.463638,176.323135,174.405777,159.992554,134.703323,113.942986,103.323151,99.066956,94.372742,66.124809,49.628952,63.240513,78.504974,58.347950,24.356216,9.755389,8.579357,10.146296,7.614065,8.422329,7.019022,4.642158,1.208267,0.137191,0.010744,0.475207,0.059505,0.034711,0.186777,0.000000,2.217356,0.000000,0.867769,2.421488,0.000000,1.964463 -601836.755000,4612815.550000,5473,2855,126.710770,179.066116,154.760330,144.446274,128.239685,112.966965,113.619858,110.165314,109.983498,112.264488,108.628120,121.355392,138.537186,156.471069,169.272720,178.900833,174.099167,159.578506,133.966965,114.157051,102.247955,99.628113,94.272743,65.471100,50.049610,63.214901,77.504150,56.421513,24.768616,10.457870,8.570267,11.204148,7.770262,7.330591,6.976046,4.077694,0.956200,0.342150,0.401654,0.097521,0.096695,0.000000,0.000000,0.322314,0.000000,0.000000,1.874380,1.866942,0.000000,2.091736 -601845.955000,4612815.550000,5519,2855,149.238037,180.334732,157.152908,147.921509,129.673569,114.657043,112.863655,110.549606,110.623985,114.334724,110.243820,121.830597,139.756210,157.698364,170.243820,180.855392,176.243820,160.004150,135.830597,114.194229,102.681831,99.235550,94.045471,66.582664,50.243820,65.640518,78.657043,56.797543,25.347950,10.180182,8.549606,13.953735,7.294230,7.806624,9.341337,3.662817,0.424795,0.109918,0.000827,0.058678,0.106613,0.183472,0.000000,0.000000,4.519009,4.321488,0.000000,0.000000,3.463637,0.000000 -601848.955000,4612815.550000,5534,2855,155.700012,185.220673,161.394226,149.129761,130.295044,115.030586,114.394226,111.675217,111.881828,116.964470,110.724800,123.609100,139.129761,159.129761,171.873566,181.542984,177.923157,160.534714,136.154556,114.898354,102.534721,99.625633,96.609100,66.501678,50.691757,66.038864,79.733070,56.881840,24.757872,10.463655,8.782663,13.895058,7.025634,8.644641,7.767782,2.616536,0.709093,0.304133,0.005785,0.000000,0.028099,0.036364,0.308265,0.000000,2.299174,1.064463,0.000000,0.812397,1.041322,0.000000 -601853.955000,4612815.550000,5559,2855,148.598373,184.209930,158.631424,149.962006,130.714066,116.565300,114.862823,113.234718,111.895882,118.085960,111.127281,123.879349,140.986801,158.928940,173.003326,182.771927,177.738861,160.160355,136.218185,114.747116,103.623154,100.548775,95.854553,65.879356,50.209938,67.119026,80.416542,55.490929,24.771917,10.759521,8.714069,13.929769,7.409106,7.797533,6.441335,3.142155,0.301654,0.185951,0.189257,0.173554,0.184298,0.164463,0.355372,0.000000,4.684298,0.000000,0.966116,0.952893,1.055372,0.000000 -601858.355000,4612815.550000,5581,2855,127.660339,168.710770,156.752106,147.694244,127.611580,114.528931,113.380173,111.719017,111.950424,115.041328,110.958687,122.049591,141.429779,158.256226,171.768631,180.578552,177.082672,162.305817,136.933914,116.033066,104.983482,102.140503,96.545464,68.876053,52.181839,67.603325,82.768600,57.421509,25.752085,10.120679,8.776878,9.007452,5.912411,5.971914,7.122327,3.436371,0.318182,0.566117,0.293389,0.000000,0.027273,0.013223,0.000000,0.000000,0.000000,1.103306,0.000000,0.000000,0.000000,0.000000 -601863.355000,4612815.550000,5606,2855,86.651253,151.619873,152.413254,141.760361,124.826454,115.743820,112.396713,111.181831,110.685966,110.694229,111.685966,123.611580,142.099213,158.942184,171.033081,180.909103,179.685974,164.570282,140.562012,118.603317,108.347122,105.694229,98.818199,71.702492,56.016544,70.173569,84.578529,62.876049,29.694237,11.938034,8.983490,6.737204,7.458692,7.973568,7.490923,3.121493,0.204133,0.366117,0.080166,0.079339,0.000000,0.000000,0.000000,0.071075,1.210744,0.000000,0.000000,0.000000,2.175207,0.000000 -601867.955000,4612815.550000,5629,2855,98.836380,149.794235,152.909927,139.645462,125.281830,115.314888,113.083488,110.058701,110.554565,110.893410,111.091759,122.942986,142.265305,158.455383,170.298355,180.083481,177.852081,165.182663,140.273560,118.571091,108.620682,103.918205,99.190933,72.810768,56.273575,69.934731,84.984322,61.843822,30.538036,11.186795,9.017375,5.301664,7.355387,6.090096,7.036377,3.768602,0.313224,0.225620,0.166116,0.000000,0.352067,0.149587,0.227273,0.000000,0.000000,0.000000,0.952066,0.000000,0.000000,0.000000 -601874.355000,4612815.550000,5661,2855,103.519844,144.036377,146.747131,137.284317,123.400009,116.358688,112.986786,111.548775,112.474388,112.581833,113.606621,124.755386,143.986801,162.763657,173.912415,182.548782,181.300842,167.540512,142.887619,121.400009,109.234718,105.771912,100.127281,72.110756,55.887619,69.681000,84.738853,61.333900,29.557047,10.754562,9.102499,6.905798,6.871090,6.947947,5.741333,2.014054,0.249588,0.000000,0.080992,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.555000,4612815.550000,5692,2855,99.470253,151.061996,151.227295,140.070267,127.053726,116.880173,113.400841,111.334724,111.987617,112.128113,112.756218,125.219025,143.466965,160.318192,172.500015,180.929764,179.764481,165.962830,141.111588,119.086784,107.756218,104.301666,100.772743,72.962830,55.665310,71.731422,87.566124,63.731426,29.938036,12.153737,9.161176,7.750426,8.552908,9.352907,8.780180,3.938025,1.543805,0.280993,0.245455,0.052066,0.447108,0.247108,0.000000,0.000000,0.000000,0.000000,0.933058,1.000000,0.000000,0.000000 -601883.355000,4612815.550000,5706,2855,113.381004,152.224823,150.133911,138.662796,125.299194,113.935555,111.323982,109.704147,109.695885,110.266136,110.943817,121.704147,141.200012,157.762009,170.588455,179.390106,177.943832,164.819855,139.365280,117.299194,107.844643,102.712418,97.381836,70.233078,53.307461,69.266144,85.241341,62.869438,28.472748,11.192579,8.852911,5.828938,7.223155,6.723981,6.274392,3.880172,0.318183,0.247934,0.069422,0.000000,0.000000,0.230579,0.000000,0.000000,1.151240,0.000000,3.600001,0.000000,0.000000,0.000000 -601886.955000,4612815.550000,5724,2855,101.803314,151.861984,150.985962,139.209091,125.390923,116.407455,113.308281,111.010757,109.928116,111.432243,112.647125,122.283485,141.762817,159.027283,171.936371,180.333069,177.994217,164.704971,140.366119,117.498360,106.680183,103.465302,97.845467,71.233902,54.217377,70.176048,84.828941,63.101677,28.655392,11.647952,8.895061,7.033898,5.828114,5.763648,7.366129,1.961162,1.108266,0.126447,0.231406,0.000000,0.080992,0.190083,0.000000,0.000000,1.204959,0.000000,1.773554,0.000000,0.000000,0.000000 -601889.755000,4612815.550000,5738,2855,104.545471,145.379364,148.875229,137.941345,124.032242,114.949600,111.908279,110.362823,109.461998,111.321503,111.561165,122.536377,141.759521,158.032257,170.742996,180.404144,177.040512,164.114899,139.247131,117.585960,107.189270,103.594223,98.172737,71.189270,53.304977,70.205795,85.900009,63.106632,27.825640,9.636380,8.924812,4.729764,7.100841,5.835552,6.895054,3.033064,0.274381,0.254546,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,2.110744,0.932232,0.000000,0.000000,0.000000 -601894.155000,4612815.550000,5760,2855,101.828117,148.868607,150.190918,139.240509,125.604134,115.918190,113.463638,111.529755,112.157860,113.000832,113.529755,124.604134,143.323151,160.901672,172.414062,181.736374,179.695053,165.719849,141.157867,118.091743,107.967773,103.736366,100.100006,71.918205,55.339691,69.711586,86.033897,63.546303,29.673573,12.088448,9.100019,5.347945,6.775221,5.718194,6.937202,4.618188,0.431406,0.426447,0.164463,0.054546,0.000000,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.955000,4612815.550000,5784,2855,99.622330,151.448761,149.845459,138.985962,124.399185,115.109932,111.762825,110.746292,110.820679,111.547951,111.985962,123.630592,142.349594,160.176025,171.655365,181.531403,178.448746,166.167755,140.085129,118.316544,107.448776,103.663651,98.754562,72.258690,54.952911,70.539680,85.787621,63.266960,28.754564,12.175225,8.977706,6.147119,6.908278,7.272740,7.430591,1.888435,0.490084,0.249588,0.043802,0.102480,0.000000,0.049587,0.624794,0.256198,0.000000,0.000000,0.000000,0.000000,1.077686,0.000000 -601901.755000,4612815.550000,5798,2855,112.169441,145.011597,149.358704,137.276047,123.515724,112.763657,110.400017,108.730598,108.242996,109.962006,110.127289,122.730598,141.168610,157.490921,170.540512,177.829773,177.672745,164.218201,139.226471,116.119026,105.962006,102.523987,97.218201,69.325638,53.044647,68.705803,83.614899,60.358696,28.466135,10.109108,8.838036,6.354558,5.687618,6.579351,6.594224,2.320667,0.476860,0.428100,0.133059,0.000000,0.527273,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.955000,4612815.550000,5819,2855,102.170258,138.495056,143.925629,132.809937,121.132248,114.057869,109.942162,108.520676,107.214890,109.388443,110.057869,120.520676,138.140518,155.842987,168.925629,176.859528,174.975220,162.140518,138.760345,117.702492,107.487617,104.347122,99.818199,72.454559,55.942169,69.975227,85.471092,61.933903,28.003325,10.285968,9.074399,5.055380,6.576047,7.174392,8.504143,5.316535,3.597523,3.322315,2.976861,2.989258,2.173554,2.193390,0.133885,1.297522,0.681818,0.000000,0.000000,3.761984,2.662810,5.365289 -601911.555000,4612815.550000,5847,2855,118.920670,147.616531,147.228088,136.054535,122.550423,113.641335,109.046295,109.062820,108.707451,109.228111,110.352081,119.467781,139.046280,157.715698,169.509109,178.343796,176.442978,163.236359,138.013214,115.195053,105.112411,100.798363,95.690933,69.476051,51.484322,65.806633,82.938866,62.145477,26.558697,10.591752,8.699194,4.761166,4.860343,6.395053,5.585134,1.748765,0.641324,0.636365,0.297523,0.110744,0.395869,0.042149,0.000000,0.000000,0.000000,2.923141,0.000000,1.713223,0.000000,0.000000 -601917.155000,4612815.550000,5875,2855,114.945465,153.392563,150.268600,137.103302,125.814064,113.904976,112.128105,110.508270,109.690094,112.037201,111.706619,123.772743,142.871902,159.805786,171.657028,180.103302,178.623962,165.516525,139.814056,118.004143,106.690094,101.590919,97.409103,69.871925,52.144650,66.574402,83.574394,62.648785,29.262003,10.769438,8.855392,6.255383,7.820675,9.074394,9.056212,4.247940,1.216531,1.330580,0.920663,0.495869,0.628101,0.548762,0.328100,0.000000,2.568595,2.989257,0.000000,3.400001,2.057025,1.874380 -601922.755000,4612815.550000,5903,2855,119.814056,149.580170,149.200012,138.885956,124.753731,113.919022,110.067780,108.406624,108.704140,109.613235,109.836372,121.927284,139.861160,157.753723,170.365295,178.538849,176.588440,164.505798,139.423157,116.365295,104.596703,101.208275,95.200012,70.191750,51.250431,66.819855,84.001663,62.373577,27.067789,11.136381,8.654564,5.491747,7.305800,7.857038,7.939682,3.395048,1.616532,0.944629,0.539672,0.393390,0.657027,0.395869,0.535538,0.000000,2.693389,0.000000,2.742149,1.328926,1.768595,4.039670 -601926.155000,4612815.550000,5920,2855,136.851242,153.990082,148.353729,139.717361,125.461174,114.031418,110.651253,108.957039,107.155388,110.271088,110.609932,121.866127,140.080994,157.948761,170.775208,178.345459,177.196701,164.766953,139.039673,117.196709,105.477699,101.866127,97.527290,69.890930,53.188454,66.932251,85.155388,63.841347,28.568613,11.803324,8.866136,5.647120,6.395884,8.269437,7.429765,2.388436,0.545456,0.076860,0.323143,0.000000,0.104133,0.052893,0.530579,0.000000,0.000000,4.433059,1.856199,6.037191,0.000000,0.000000 -601931.755000,4612815.550000,5948,2855,116.705795,156.491745,153.268616,139.739700,125.252083,110.987617,109.508278,108.252083,107.847122,110.698364,110.252083,121.450432,140.004166,157.475220,170.516541,179.781006,178.433899,165.789276,140.309952,117.764481,107.483490,103.566124,98.500008,70.929779,52.764484,67.731430,85.458694,65.574402,28.987621,11.426463,8.954566,5.691746,8.749602,6.765303,5.728111,3.014883,0.348761,0.792563,0.403307,0.091736,0.917358,0.600002,0.195041,0.000000,0.000000,2.423141,0.385124,2.817356,2.933058,7.608265 -601941.155000,4612815.550000,5995,2855,147.857056,163.617386,153.055405,143.914902,128.997528,114.691742,112.881828,112.014061,110.419022,114.014061,113.485130,123.534721,142.823990,160.576065,173.352921,182.204163,180.253738,167.055405,141.757874,120.154556,106.823975,103.774391,98.245476,71.365311,54.547127,68.530594,84.534729,63.691753,27.895889,11.197538,8.931425,4.249596,6.819023,7.331419,8.174393,3.511578,0.703307,0.402480,0.542977,0.047108,0.132233,0.447935,0.213223,0.000000,0.000000,0.000000,2.054546,0.448760,2.380166,0.000000 -601952.555000,4612815.550000,6052,2855,154.337204,170.666107,156.905777,143.029755,129.459518,116.095879,113.988441,112.310760,112.004974,114.757034,114.112411,124.715714,143.277679,161.633057,174.261154,183.360321,181.211563,168.690903,143.029755,121.153732,108.161995,104.748772,99.600014,72.310760,53.823158,69.790092,84.343811,63.550430,28.624815,10.728115,9.054564,5.533068,5.547946,8.011583,7.677698,3.191742,0.846283,0.145455,0.462811,0.053719,0.126447,0.195042,0.554546,0.000000,0.000000,5.542976,2.900827,3.470248,4.795042,2.168595 -601960.155000,4612815.550000,6090,2855,163.058685,167.738861,156.819016,147.637207,133.837204,119.308273,119.167778,120.134720,119.647118,125.961166,124.300003,135.192566,152.795868,171.779343,183.539673,192.109924,188.589264,174.457031,149.266953,125.738022,114.300003,108.655380,104.663651,75.977707,58.628948,72.257034,86.595879,66.265312,29.329771,10.767785,9.514894,5.738027,7.822328,7.600011,7.889269,4.049593,2.677689,1.400828,1.014051,0.823142,1.147109,0.260331,0.378513,0.000000,1.280992,1.258678,3.351240,0.000000,0.000000,6.876034 -601967.955000,4612815.550000,6129,2855,121.522324,163.514053,159.720673,142.852921,129.439682,118.001663,115.968605,113.530586,112.671082,114.191742,113.894226,125.695877,145.390106,161.009933,176.067795,182.530609,181.679367,165.919022,142.092590,119.489265,108.249596,106.357033,101.927284,74.100845,56.464481,70.695885,86.340515,63.894234,27.855392,12.579356,9.266135,9.831420,8.103319,8.078526,6.963648,3.779347,1.803308,0.209092,0.000000,0.184298,0.494216,0.007438,0.000000,0.000000,0.000000,2.469422,3.511571,0.000000,0.000000,0.000000 -601974.355000,4612815.550000,6161,2855,120.544647,164.923157,159.212402,143.030624,128.452087,115.377708,115.749611,112.964485,111.840523,113.526474,112.807465,124.898361,144.038879,161.311584,172.187607,182.542984,181.600830,166.344635,140.419052,120.138031,108.460358,104.790932,100.700027,72.204155,55.394234,69.427299,85.559532,60.782661,28.476877,10.500842,9.154564,6.404972,5.555386,6.983485,8.257039,3.254552,0.757027,0.281819,0.095042,0.057025,0.019835,0.214050,0.000000,0.000000,1.208265,0.000000,0.000000,2.620661,0.000000,0.000000 -601978.355000,4612815.550000,6181,2855,110.569443,171.850433,158.222336,145.379364,130.718201,117.164474,117.247116,113.842163,113.759514,115.379349,113.908279,126.139679,145.585953,162.866959,174.957870,184.387619,182.346298,167.255386,142.230576,121.594223,108.652084,106.321510,101.263657,73.552910,56.858696,71.057045,87.280182,62.296715,28.833904,10.618198,9.205805,9.772741,6.790923,7.613237,8.262823,3.387611,0.651241,0.269422,0.351240,0.080992,0.000000,0.011570,0.000000,0.107438,0.000000,0.000000,0.000000,2.777686,0.000000,0.000000 -601982.955000,4612815.550000,6204,2855,117.399185,167.134720,159.961166,147.068604,129.630600,117.911583,115.820679,114.142990,114.423981,115.795883,115.275223,127.142990,146.118195,163.027283,175.225632,184.349594,182.589264,168.614059,142.771088,121.349602,109.572739,107.324806,101.936378,73.812416,57.473576,71.696716,87.936378,63.597542,29.744648,11.762828,9.266962,10.464479,6.748775,8.454561,6.611582,3.157030,0.740498,0.148761,0.573555,0.042975,0.000000,0.517356,0.000000,0.000000,0.000000,1.166942,0.000000,0.000000,0.000000,3.962810 -601987.955000,4612815.550000,6229,2855,138.319839,172.402496,161.154556,149.518188,131.989273,118.427284,118.724800,116.807449,115.658684,117.906624,115.625633,128.923157,147.774384,165.228943,177.369431,186.187607,184.468597,169.212402,144.576050,121.989265,111.361168,108.121498,103.245461,75.419022,59.567791,71.923149,88.526459,63.906631,30.179359,11.965308,9.385969,9.873569,6.728940,6.733898,7.848773,3.533890,0.762812,0.353720,0.135538,0.257025,0.090083,0.082645,0.000000,0.000000,1.252893,0.000000,2.078513,0.000000,1.227273,4.137190 -601993.355000,4612815.550000,6256,2855,148.357040,175.613235,159.522324,147.398376,131.927277,118.935547,118.555382,116.563644,116.183479,118.133896,116.142159,127.166954,146.216537,164.224808,176.679352,185.481003,184.241333,170.051254,143.414902,122.604965,111.919022,107.869431,103.472740,75.117378,58.481010,73.233086,88.555389,63.910763,29.100843,10.729770,9.406631,9.097536,5.923980,6.694229,7.795880,2.929760,0.714051,0.038843,0.168595,0.038843,0.026447,0.000000,0.000000,0.000000,0.000000,1.132231,0.000000,0.968595,1.259504,0.000000 -602001.555000,4612815.550000,6297,2855,142.990112,184.527298,166.188446,152.295883,134.833084,121.064484,120.791756,118.279358,118.452911,121.502502,118.477707,130.841339,148.403336,166.295883,178.783493,189.692581,185.552094,170.014893,144.766968,124.601677,114.138863,110.461182,104.345474,76.196716,59.163658,75.221512,88.948784,64.031425,27.775225,9.914893,9.485969,12.634727,7.339684,6.943815,7.676873,4.207446,0.385952,0.155373,0.563638,0.101653,0.000000,0.000000,0.000000,0.000000,3.755372,0.000000,2.092562,0.000000,0.000000,2.064463 -602008.555000,4612815.550000,6332,2855,152.665298,189.417358,166.764465,156.632233,137.938034,124.772743,122.863663,121.508278,120.938034,125.706627,120.136383,133.227295,150.020676,169.161163,182.706604,191.433884,187.946274,171.252060,147.747955,127.913246,115.384315,112.070274,107.227295,77.946304,62.111595,78.524818,91.723167,65.946304,30.442167,13.601671,9.747954,13.142993,7.726460,8.768610,8.659516,3.744636,0.584299,0.319836,0.284298,0.338844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.355000,4612815.550000,6371,2855,170.017380,195.281845,168.777710,159.331436,139.157867,124.166130,123.918198,121.100014,121.686790,128.290100,122.372742,133.430588,150.653748,169.116562,182.918213,192.645477,189.976059,172.248795,148.347961,128.463654,115.802490,111.736374,109.554558,79.257050,62.843822,80.174400,92.744644,64.042168,28.735556,12.184314,9.959523,12.958693,7.652906,6.859517,6.710756,3.363644,0.995043,0.504960,0.126447,0.252893,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602027.955000,4612815.550000,6429,2855,116.901665,164.731400,168.103302,155.698349,140.747940,130.913239,128.119858,125.632248,125.640511,126.599190,126.863655,137.747940,156.929749,172.896698,185.590912,194.318176,192.764465,179.227280,153.979340,132.582657,121.004150,117.640511,112.590927,83.185966,67.235558,82.400841,97.095047,71.045479,33.805801,14.312414,10.235557,8.458693,9.464478,8.286791,8.395056,3.307446,0.852068,0.233059,0.010744,0.166116,0.000827,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.155000,4612815.550000,6520,2855,105.101662,159.661179,166.041336,155.069443,140.132248,128.685974,126.710762,124.540512,124.375229,125.722336,126.061180,136.904144,155.457870,171.127289,183.705811,191.664490,191.119034,176.689270,152.958694,131.867783,121.314064,116.702492,112.181831,85.107452,68.338860,83.966957,96.214890,71.231422,32.074402,13.342994,10.198365,7.564476,8.022329,8.409932,8.106626,3.075213,1.186779,0.266943,1.128928,0.333885,0.386778,0.267769,0.007438,0.000000,1.952066,0.000000,0.690083,0.000000,0.000000,0.000000 -602075.955000,4612815.550000,6669,2855,116.561996,166.177704,166.128113,154.855392,140.789261,132.061996,128.979355,127.690102,127.450432,128.433899,128.524811,139.871902,156.590927,174.028931,186.458679,195.698334,193.971054,181.433884,156.508286,134.847122,123.458694,118.078529,113.954552,86.929771,69.119850,85.268608,97.177704,71.954559,33.334732,13.314068,10.359524,6.941335,7.629767,7.318196,8.343816,2.978519,0.567770,0.202480,0.087604,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.948761,0.000000,0.000000 -602111.355000,4612815.550000,6846,2855,121.629761,161.176041,160.981003,154.865295,141.237198,131.220673,132.460342,132.937195,133.449585,136.730576,135.829758,145.460342,162.179352,178.757858,189.336380,198.642151,195.906616,183.923157,159.526459,136.336380,124.757866,119.790924,114.245476,85.278534,67.419029,82.063652,94.749603,73.055389,32.278534,14.115720,10.385969,4.819845,7.208278,7.550426,8.337203,3.670255,2.034714,1.038018,0.442150,0.333059,0.721488,0.337191,0.000000,0.414876,0.000000,0.000000,0.000000,0.000000,2.038017,0.000000 -602123.955000,4612815.550000,6909,2855,140.547943,178.812408,172.151245,160.357864,146.052078,131.638855,129.845474,127.390923,125.407455,127.886795,126.523155,137.547943,155.167770,173.118195,184.233887,194.539673,191.878525,179.291748,155.853729,134.473572,121.837204,118.250427,113.027290,84.407455,67.977699,82.225632,97.250427,72.936378,32.622334,12.938861,10.275227,6.257036,7.166131,6.639682,5.953731,2.366121,0.736365,0.014050,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.955000,4612815.550000,6934,2855,97.477692,176.295868,175.973557,160.361984,143.047943,130.386780,129.940506,127.940506,125.585129,126.370255,126.857857,139.353729,160.056198,177.461166,189.254547,199.031418,197.857864,182.758682,159.733887,136.923981,124.981827,121.618187,117.345467,87.510750,71.014885,88.039673,104.700836,76.816536,37.899197,14.626464,10.667788,9.100842,8.840511,11.847949,10.263650,6.273562,1.478514,0.536365,0.693391,0.063637,0.000000,0.152893,0.086777,0.085951,0.000000,0.000000,1.196694,0.000000,0.000000,0.000000 -602133.355000,4612815.550000,6956,2855,113.828941,179.382645,177.423981,163.498352,142.614059,129.109924,130.167786,125.481834,124.101669,126.597534,126.085136,138.630585,159.142975,177.291748,189.506622,198.804138,198.382645,182.465302,158.217361,136.275223,124.795883,120.308281,115.300018,86.250435,68.696716,86.250427,104.142990,74.514893,37.233906,14.128943,10.481836,11.730594,8.885139,9.564477,11.493403,5.900011,1.722316,1.239671,0.734711,0.871902,0.831405,0.968596,0.838843,0.416529,1.182645,0.000000,0.000000,2.211571,0.000000,3.752066 -602136.555000,4612815.550000,6972,2855,110.223976,168.736389,175.571091,157.124802,143.298355,130.290100,128.356216,123.653732,124.091751,124.496704,124.124809,137.562820,157.215714,176.339676,187.075226,197.959518,194.447113,179.397552,157.628937,133.769440,123.066956,119.166130,114.463646,85.042160,70.257034,86.339684,103.199188,73.595886,35.017376,13.289273,10.405804,9.553732,7.877697,8.491748,10.802491,4.398354,2.041326,0.838844,0.602481,0.000000,0.004132,0.000000,1.025621,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.555000,4612815.550000,6987,2855,115.637192,179.893402,174.472748,159.869446,140.509125,127.641342,129.360352,124.798370,124.228119,125.988449,125.732254,138.269455,159.170258,176.426468,188.269455,200.038040,198.368622,183.153748,158.451248,135.798370,124.872749,121.054565,115.872742,86.732254,69.277710,85.814896,101.790092,76.046303,36.021507,13.700018,10.533904,9.316545,7.566131,10.105801,9.014062,5.866127,1.676035,2.365291,0.469423,1.554546,0.812397,0.600827,0.010744,0.000000,1.542149,0.000000,0.000000,0.000000,2.502480,0.000000 -602142.755000,4612815.550000,7003,2855,107.688438,179.660339,169.445480,158.167786,140.366119,127.866951,128.057037,124.842163,123.619019,124.197533,123.569435,136.445480,157.362839,175.858688,186.982651,197.106613,194.114883,179.288437,155.718201,133.561172,121.172737,119.090096,114.354553,85.255386,69.197533,84.023979,101.825630,73.594231,34.933083,13.541339,10.395886,11.357867,7.949601,7.912411,8.938856,4.463644,1.030580,0.652068,0.376860,0.180992,0.173554,0.178513,0.000000,0.142149,0.000000,0.000000,0.000000,1.086777,0.000000,0.000000 -602146.355000,4612815.550000,7021,2855,122.026466,181.404984,178.429779,161.115738,145.471100,131.066132,130.553741,126.933899,126.537209,128.082657,126.247948,139.049622,159.413254,176.983505,190.016541,199.884308,197.545471,182.206650,158.281021,135.859528,124.528938,121.297539,116.000015,86.421501,69.107452,86.066132,102.074394,73.735550,36.801670,13.920678,10.545475,11.163651,7.994230,10.804148,8.961172,4.765296,1.813226,0.850414,0.521489,0.000000,0.361158,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.955000,4612815.550000,7039,2855,119.251259,183.135559,176.945480,163.267792,147.623154,132.804977,134.209930,130.490921,129.325638,130.474396,128.780182,142.871094,161.590103,179.887619,190.606628,201.796707,198.862823,183.201675,158.755386,136.598373,125.565308,122.110764,117.036385,86.226463,71.747124,86.052910,103.383492,74.325638,35.995060,13.344646,10.639688,10.785965,9.292578,9.490099,8.719023,4.706620,1.328101,0.178513,0.297522,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,1.351240,0.000000,0.000000,0.000000,0.000000 -602152.955000,4612815.550000,7054,2855,109.195885,175.519852,172.767792,157.123154,140.536377,128.247116,128.544632,124.800835,124.189270,126.718193,124.288445,137.123154,156.065308,174.990921,187.189270,198.147949,195.726471,180.693405,155.280182,132.726456,123.214058,119.643814,114.081833,85.478531,69.081841,85.718193,101.230591,72.825630,35.544647,13.767786,10.371094,11.264479,6.263651,8.488444,7.418195,5.032240,1.344631,0.219835,0.000000,0.009091,0.000000,0.000000,0.020661,0.000000,0.000000,2.895868,0.000000,0.000000,0.000000,0.000000 -602156.155000,4612815.550000,7070,2855,115.533905,188.220688,178.055405,164.923172,147.220688,130.749603,131.162827,127.270248,127.080177,128.989273,127.063644,139.691757,158.600845,176.741348,189.410767,198.666946,195.633896,180.815735,157.452087,134.790924,124.509933,121.964470,114.518188,85.055382,68.757866,85.749596,101.848778,74.096703,34.807457,14.231423,10.410764,13.005801,7.587618,8.553733,10.295057,4.741331,1.163639,0.684298,1.119010,0.708265,0.113223,0.129752,0.382645,0.000000,0.000000,0.000000,0.000000,0.000000,1.193388,0.000000 -602160.755000,4612815.550000,7093,2855,108.557045,170.474411,171.887634,157.540527,141.441360,128.846298,126.961998,124.152077,122.284309,125.978523,122.482658,134.152084,152.937225,170.730591,180.705811,191.755386,188.978531,174.887619,151.920700,129.573563,118.565300,114.920670,110.945465,83.267792,65.953735,83.201683,98.879356,74.400024,35.986794,15.183489,10.085970,6.949599,7.118198,9.457866,7.808278,2.768600,1.106613,1.077688,0.247935,0.031405,0.019835,1.351241,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.155000,4612815.550000,7130,2855,123.057037,163.470261,161.957870,153.916550,139.627289,127.858696,124.544647,121.800842,119.966133,123.015724,120.238861,131.172745,149.528122,166.395889,178.395889,187.445480,185.404144,171.321503,147.470261,127.916550,116.445473,113.040512,107.536385,82.048782,66.792580,81.073570,97.321510,71.288452,33.470268,13.257869,9.776052,6.110754,6.810758,8.105798,6.447119,3.254552,0.955373,0.462811,0.180992,0.139670,0.000000,0.127273,0.090909,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.155000,4612815.550000,7150,2855,102.330597,163.958679,165.231400,158.371902,140.537201,127.933899,125.404976,121.975220,120.181831,122.628113,120.520676,132.223160,149.752075,166.024796,176.776855,187.446274,185.842972,172.429749,149.173569,128.041336,117.066132,112.545471,108.636383,81.545471,66.214890,82.909103,95.983490,73.983490,35.206627,12.385968,9.876052,5.952903,7.278527,5.571083,7.669433,2.896699,0.171075,0.000000,0.310744,0.304133,0.000000,0.119835,0.014876,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.955000,4612815.550000,7164,2855,96.479355,160.247971,163.768631,156.892593,140.760361,127.429771,125.355385,122.636383,120.049606,122.371918,122.000015,133.099182,148.479370,166.206650,178.016556,186.347122,185.214890,171.892593,147.644653,128.099182,116.636383,113.454559,109.363655,82.942162,67.438034,83.090927,98.388443,72.214890,34.735554,13.871091,9.942167,6.501664,7.053732,7.471086,9.007451,2.175210,0.472728,0.624794,0.451241,0.168596,0.004959,0.056199,0.718182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602177.755000,4612815.550000,7178,2855,116.079353,163.938858,166.583481,157.385132,141.881012,128.542160,125.872742,123.376869,121.682655,123.236374,122.104149,131.905792,148.269424,165.996704,177.443008,187.038040,184.583496,171.748795,150.054535,128.525635,117.864479,114.889267,109.690926,82.996704,67.228119,84.269432,98.806625,71.195053,33.682667,14.680182,9.971920,7.233895,7.663651,6.776045,7.460343,3.210749,0.627274,0.176034,0.214877,0.035537,0.033884,0.145455,0.464463,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,3.440496 -602182.355000,4612815.550000,7201,2855,100.264473,157.859528,160.289276,152.752106,137.049606,125.471085,122.479347,119.256203,117.363647,118.793396,118.396706,128.206619,145.429779,161.421509,172.066147,181.942184,181.157059,168.421509,146.462845,125.586784,115.107445,111.297531,105.181824,79.545471,65.471092,81.057869,96.958694,71.363663,32.909107,13.039687,9.562002,5.466952,6.685965,7.126458,5.858689,3.203310,0.447935,0.407439,0.247935,0.095042,0.000000,0.000000,0.295042,0.341323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.155000,4612815.550000,7240,2855,85.295891,154.758698,160.576889,152.981842,137.923996,126.618195,123.105797,120.370262,118.519020,119.932243,119.287621,130.204971,147.527298,162.659531,173.651245,182.328934,183.171906,170.626465,147.643005,126.882660,117.064476,113.816544,108.163651,83.138863,66.667786,82.180191,95.725624,70.180191,34.147125,14.585142,9.833077,5.300012,8.625637,6.271912,5.717367,2.364467,0.399174,0.266943,0.082645,0.285951,0.000000,0.057851,0.285124,0.561984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602199.355000,4612815.550000,7286,2855,89.542999,146.733063,158.220673,149.782654,134.146286,122.873566,119.187614,115.022324,112.947945,112.452072,111.642159,122.898354,140.005798,155.559509,166.741333,174.873566,174.080170,162.452072,140.576050,120.989265,110.303314,105.088440,97.700012,73.493408,58.865307,78.014069,94.419022,72.741341,32.352909,12.412414,8.881837,4.184307,5.685138,6.890923,5.792572,2.730585,0.765291,0.162810,0.115703,0.138843,0.103306,0.306612,0.000000,0.286777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602207.355000,4612815.550000,7326,2855,92.749611,142.807465,155.526474,144.129776,127.890091,117.617371,113.038864,111.253738,107.104973,107.700020,107.088448,117.700020,134.485138,149.551270,160.691742,171.435532,169.047119,156.443817,137.385971,117.493408,106.691750,100.708282,93.972740,69.022339,54.766132,73.600853,94.865295,72.642174,32.278530,11.745470,8.542995,4.202488,6.181006,5.761168,6.961170,1.528103,0.866944,0.128927,0.054546,0.060331,0.013223,0.058678,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.555000,4612815.550000,7347,2855,83.077705,141.846298,155.383484,147.011597,131.119019,121.226456,116.490921,112.548775,110.408279,109.185135,108.928940,119.697533,136.871094,152.209930,163.309113,172.036377,169.813248,159.110764,137.763657,118.681000,106.714058,101.085960,95.400009,70.738853,56.449608,75.813232,97.986786,73.747116,34.036381,12.875224,8.672747,3.689263,7.369435,6.411583,5.848771,2.367774,0.621489,0.051240,0.084298,0.080166,0.026446,0.095042,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.755000,4612815.550000,7373,2855,91.347954,137.763641,155.647934,145.292572,129.738861,118.573563,115.011581,109.681000,106.722328,105.631416,105.309105,116.110756,133.094223,148.813232,160.433060,170.796692,169.557022,156.780167,136.069427,116.400009,103.912407,99.449600,92.309105,67.160347,53.598370,73.441345,95.391747,73.490929,35.251259,12.477703,8.391755,4.426454,6.276047,6.576873,6.159513,1.972732,0.571902,0.471075,0.000000,0.228927,0.000000,0.000000,0.125620,0.123967,2.314876,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.155000,4612815.550000,7415,2855,86.524811,143.450424,155.285141,143.252075,129.425629,117.673569,113.582664,109.053734,106.318192,106.508270,104.772736,116.185966,133.301666,147.913239,158.582657,168.078522,166.351257,153.657043,134.508286,115.128113,102.111580,98.128105,90.681824,66.822334,52.450432,72.309937,94.442154,72.392578,33.301674,11.697537,8.243821,4.295049,6.445468,6.163649,6.159514,2.691741,0.591737,0.083471,0.069422,0.013223,0.000000,0.057851,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.355000,4612815.550000,7481,2855,70.101669,138.490082,157.622314,146.101654,130.977692,121.490089,116.167778,110.820671,109.415710,108.382652,107.886780,118.052071,137.308273,151.109924,162.944641,171.043808,169.200836,156.952896,135.589264,116.167778,106.101662,101.374390,94.209099,69.118195,55.085144,74.713234,93.399185,70.407455,31.258698,11.841339,8.564482,3.209925,4.527286,6.433897,4.811581,3.690916,0.249587,0.162810,0.274381,0.012397,0.019008,0.061984,0.105785,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602250.955000,4612815.550000,7544,2855,68.566139,142.086792,158.904984,144.045471,130.805786,121.574387,119.020668,114.400833,112.640503,111.681824,111.194221,122.640503,139.442169,154.665298,164.971100,173.557877,172.814087,160.095078,138.285141,118.392570,106.367775,103.756203,97.772736,72.086792,58.516548,74.938034,89.954552,67.747955,30.938036,10.923985,8.888450,5.136373,5.609931,5.573564,5.426456,2.759509,0.649589,0.013223,0.000000,0.256199,0.000000,0.000000,0.000000,0.000000,1.481818,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.755000,4612815.550000,7573,2855,85.207451,151.215714,157.695053,147.612411,133.364471,124.232246,118.934723,115.141335,113.571091,113.554558,112.794228,123.339684,141.207458,156.248779,167.513229,176.240509,173.893402,161.653732,140.257034,119.331421,108.992577,104.934723,98.918198,74.257034,59.777699,76.298363,93.058693,68.918198,31.670269,11.352908,8.992581,6.334720,6.879353,6.123980,7.311584,2.414881,0.171076,0.266943,0.227273,0.214877,0.110744,0.000000,0.000000,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602263.955000,4612815.550000,7609,2855,87.907455,149.312424,160.180191,151.238037,136.841339,126.494232,121.634727,117.890923,115.882660,114.882660,114.923981,126.262825,143.419861,159.204987,169.775223,177.419861,175.725647,162.899200,141.907455,122.023155,110.998360,106.618195,102.254562,75.593407,62.527287,79.204971,95.188446,71.362000,34.857868,14.532248,9.295887,7.750426,8.271091,8.885962,10.106625,4.871083,1.396696,0.467769,0.172728,0.190910,0.000000,0.107438,0.152893,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602269.155000,4612815.550000,7635,2855,85.791748,149.105804,159.915726,148.477707,132.890930,122.155388,119.114067,114.940514,112.651253,111.841339,111.279350,122.494232,139.874405,155.791763,166.362000,176.320679,173.874405,160.634735,138.750443,119.692574,107.419846,103.328941,96.709106,71.204971,58.552082,76.072739,94.081009,70.403320,32.543819,12.428117,8.791755,5.295051,5.817370,7.034724,7.186789,2.963644,0.608266,0.111571,0.000000,0.141323,0.023141,0.171901,0.175207,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602272.155000,4612815.550000,7650,2855,86.839684,149.905807,156.963654,147.484314,131.616547,118.418198,117.310760,112.038033,110.500839,109.831421,108.442986,119.781830,139.806641,153.186783,164.583481,175.087631,171.153748,157.823151,137.451248,117.418198,106.261169,102.244644,95.145470,69.872749,55.624809,75.360344,92.897537,70.459526,32.343822,10.381009,8.649607,4.647943,5.303321,5.813238,6.281829,2.098352,0.104133,0.097521,0.591737,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602275.955000,4612815.550000,7669,2855,79.091751,141.934723,156.430603,147.562836,132.149597,120.100014,115.711586,111.761169,108.951256,108.645470,107.901665,119.174393,137.257050,153.587631,164.951248,173.976059,172.298370,158.579346,137.157883,117.248772,105.736374,101.901665,95.190926,70.347946,54.752918,73.124809,94.951256,71.190926,32.314896,13.662002,8.653738,4.692571,7.318196,7.082658,7.139681,2.374385,0.219835,0.719836,0.310744,0.099174,0.134711,0.065289,0.324794,0.501653,2.232232,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.355000,4612815.550000,7696,2855,86.761177,145.744644,155.248779,146.769440,130.174408,117.976036,115.058685,110.290085,107.223969,107.405792,106.199181,117.166122,136.554565,152.323151,162.909927,172.405792,170.976044,157.480179,136.215714,117.149590,104.835541,99.926453,93.736366,69.108284,54.000847,72.744652,93.199188,71.628944,32.761177,11.816545,8.521506,6.285134,7.238857,6.485963,7.740508,2.739676,0.415704,0.198348,0.000000,0.119835,0.000000,0.173554,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602287.155000,4612815.550000,7725,2855,98.991753,149.512436,160.760345,147.859543,131.198349,119.570259,117.570267,112.628113,110.570267,109.479347,109.066124,119.545464,138.272751,154.611588,165.214890,175.049606,173.074402,159.107468,137.512405,118.586784,106.239677,101.933891,95.090919,70.049591,55.867786,73.305794,94.619843,72.396713,32.942169,13.409109,8.644648,6.800011,5.181006,6.563650,6.844641,2.071080,0.441324,0.325621,0.000000,0.202481,0.122314,0.000000,0.175207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602290.955000,4612815.550000,7744,2855,82.948784,153.304138,158.957031,147.857864,133.469421,120.089264,117.039673,112.469429,109.899185,109.403320,109.072739,120.560333,137.733887,154.766953,165.816528,174.915710,173.593399,158.857864,136.849594,117.419838,106.188446,102.609932,95.072739,69.750427,55.659527,74.816544,94.766960,70.056221,31.362003,12.991753,8.642994,6.285960,6.697534,5.302490,6.091747,2.804964,0.607439,0.448761,0.172728,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.118182,0.000000,0.000000 -602293.755000,4612815.550000,7758,2855,85.180191,150.064468,158.998367,147.477707,132.634720,119.990105,117.634735,112.328949,109.874405,108.642998,108.056221,119.742172,137.097534,153.618210,164.890930,173.915726,172.998367,158.155396,136.932236,116.155396,105.601677,100.907463,93.890930,68.138863,55.105808,73.890930,94.204979,70.171921,32.123985,11.748778,8.535557,5.559515,6.569435,7.115715,6.684309,2.894219,0.511571,0.265290,0.089257,0.163637,0.031405,0.000000,0.248761,0.000000,0.000000,0.000000,1.319008,0.000000,0.000000,0.000000 -602297.755000,4612815.550000,7778,2855,101.755386,153.176880,158.449600,148.383484,133.242981,120.962006,117.515717,113.143814,110.672737,110.928940,109.697533,120.838036,138.408279,155.102493,165.788452,175.978531,174.300858,160.755386,138.771927,119.102501,106.185135,102.466125,97.036377,70.647957,55.829777,75.366959,94.226456,71.986794,33.647953,13.283488,8.821508,8.011582,6.976048,7.368608,7.552078,3.936369,0.539671,0.085951,0.085951,0.235538,0.009091,0.119009,0.000000,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,3.170248 -602304.155000,4612815.550000,7810,2855,83.815720,152.030579,159.493393,148.890076,133.038864,118.832253,116.055389,111.509933,108.881836,108.865311,106.385971,118.865311,137.642151,153.435532,164.162827,174.551254,172.700012,157.493378,135.964478,116.898361,104.799194,101.220680,94.245476,69.790924,54.716557,72.807457,92.600845,69.666962,32.609112,12.333076,8.567787,8.333897,6.848774,6.799186,5.919845,2.844634,0.257852,0.166942,0.200001,0.000000,0.000000,0.052066,0.185124,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602310.155000,4612815.550000,7840,2855,89.558693,152.178528,157.360336,148.277695,131.806625,117.484314,115.104149,109.409927,106.624809,106.823151,104.674393,115.781830,134.352081,151.566956,163.211578,173.360336,170.583481,156.120667,135.409927,113.955383,101.839684,98.600014,91.963646,65.054565,52.087627,70.781830,92.641335,69.203316,31.301674,11.519853,8.360350,6.685961,5.982658,6.843814,5.758688,2.051245,0.610745,0.293389,0.032232,0.052067,0.347934,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602314.355000,4612815.550000,7861,2855,80.905800,155.120697,159.558685,146.558685,131.608276,116.674400,114.360352,108.847946,106.186790,106.500839,105.459518,117.021507,135.079346,152.054565,162.814911,174.277710,171.095901,154.881027,134.864471,115.459526,102.938858,99.360344,91.690926,66.352081,52.533905,70.657875,92.484314,71.690933,32.980186,12.852083,8.335557,5.823976,7.552907,7.426460,5.052904,3.276038,1.143804,0.112397,0.133059,0.017356,0.017356,0.000000,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602319.555000,4612815.550000,7887,2855,95.660355,161.139694,159.073578,151.106628,134.073578,119.238869,115.999199,112.809120,110.304985,110.825645,108.040520,119.842178,138.023987,155.098373,165.792587,175.908279,173.536377,157.974396,136.974396,117.734741,105.924820,100.503334,94.445480,67.536385,53.660351,72.081841,95.156227,72.379356,32.610764,12.710762,8.585970,6.605795,7.400014,7.978526,7.800012,1.877689,0.547109,0.139670,0.114877,0.256199,0.027273,0.000000,0.190909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602325.355000,4612815.550000,7916,2855,95.144646,158.384293,156.037201,147.781006,130.607452,118.442162,115.219025,111.665306,109.946297,111.632248,107.177704,119.276878,137.144638,153.772751,165.566116,176.185974,171.756210,155.500015,134.541336,115.169441,103.896713,98.706627,93.318199,67.086800,53.252087,72.615730,91.863655,66.342995,29.731422,9.958694,8.483490,5.300835,4.395055,6.304146,6.578524,2.084301,0.394217,0.043802,0.027273,0.023141,0.135538,0.071901,0.289257,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602328.955000,4612815.550000,7934,2855,100.067780,166.084320,162.142181,150.621521,132.770264,118.398354,116.943810,112.357033,110.555382,112.960342,109.183479,120.621498,139.836395,156.662842,169.100845,179.563660,175.340515,158.687622,138.241348,118.613235,106.778519,102.538864,96.927292,70.357040,54.985146,74.770264,94.009933,69.770264,31.348780,12.671918,8.811590,7.934722,7.826460,7.422329,8.110756,3.072733,0.733886,0.564464,0.019008,0.047934,0.000000,0.000000,0.047934,0.233885,0.000000,0.000000,1.314050,0.000000,0.000000,0.000000 -602332.755000,4612815.550000,7953,2855,99.206635,164.876053,159.859528,151.008286,133.652924,118.413246,115.000023,112.553741,111.545479,113.669449,108.289284,121.165314,138.578552,156.743820,169.917374,179.438034,175.082657,157.528946,137.619873,118.305809,107.512421,101.471100,96.636391,70.314072,54.958698,74.181854,93.181839,70.396729,35.115719,14.276877,8.785143,10.999186,8.082660,6.861998,8.927284,2.033890,0.729755,1.091738,0.242976,0.142976,0.027273,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602335.555000,4612815.550000,7967,2855,100.279358,164.147125,161.014893,151.180191,131.436386,116.750435,116.246307,111.923988,111.238037,112.519028,107.634735,118.552086,137.800018,155.262833,166.841339,178.155396,173.527298,156.998367,136.585144,116.700851,105.213249,100.147133,94.709114,67.907463,54.535557,74.254570,94.502502,70.436386,33.066135,12.934728,8.609936,10.260343,9.259520,7.972740,8.328113,2.537195,1.195870,0.049587,0.152067,0.160331,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602338.955000,4612815.550000,7984,2855,96.046295,163.013229,160.641342,150.095886,132.261185,117.426476,115.310776,110.418213,109.500854,111.583504,106.319038,118.864494,136.641357,155.145462,166.128937,178.517365,173.889267,157.451248,136.550446,115.558708,104.608292,100.451263,93.327293,66.021507,53.046303,72.459526,93.393410,69.765312,33.939686,14.357042,8.484317,10.282658,7.142163,9.469436,8.162822,4.478519,0.257852,0.730580,0.000000,0.104959,0.000000,0.000000,0.000000,0.500827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602344.155000,4612815.550000,8010,2855,103.567787,159.121475,157.658676,151.452072,132.270264,118.815720,115.468613,112.270264,109.906631,113.047127,108.642166,120.129768,138.691742,156.890076,169.030579,180.080154,175.699997,159.336365,138.055374,118.080185,105.377701,102.146301,95.972748,69.633904,55.352913,74.600845,93.815720,69.840515,33.840515,13.623985,8.724813,10.061996,7.990098,7.648771,8.126458,3.266120,0.733886,0.024794,0.191736,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,1.481818,0.000000,0.000000,0.000000,0.000000 -602351.355000,4612815.550000,8046,2855,99.882668,135.056213,142.477707,132.114075,118.676056,105.849609,102.196716,99.312416,97.089279,97.271095,96.965309,107.585144,124.981842,142.370270,153.353745,163.717377,160.766968,148.122330,126.428123,107.899193,95.709114,91.477707,85.890930,60.849609,46.370270,63.932255,85.328949,64.676056,28.990929,11.445472,7.808283,3.459511,6.296707,6.277699,6.400010,1.428929,0.546283,0.454546,0.075207,0.000000,0.028099,0.000000,0.116529,0.507439,0.000000,0.000000,1.897521,0.000000,0.000000,6.306612 -602362.955000,4612815.550000,8104,2855,102.668617,139.561172,141.610764,127.759521,113.833900,102.982666,99.090096,95.263649,92.900009,93.825630,93.338028,104.809113,124.040512,140.999191,153.296707,163.528122,161.189270,147.478531,125.817375,106.296715,94.486794,90.949600,83.354568,60.040516,44.511589,62.949612,85.544640,66.949608,29.313240,10.360348,7.577705,4.552902,7.309931,5.952077,6.714058,2.508270,0.630581,0.147935,0.280993,0.023141,0.054546,0.000000,0.267769,0.282645,0.000000,0.000000,1.872727,0.000000,0.000000,3.047108 -602377.555000,4612815.550000,8177,2855,91.004150,135.673569,138.433899,126.681831,110.433899,101.128113,96.632248,94.070267,93.095055,91.987617,93.425636,103.334724,121.723160,139.409103,152.376053,161.376053,160.351257,145.524811,123.400841,102.987617,92.954559,88.623985,83.681831,59.070267,43.690102,61.623985,83.590927,61.466961,28.433903,9.706628,7.607458,5.590919,7.257864,7.683483,7.498360,5.218191,1.087607,0.278513,0.123968,0.112397,0.000000,0.163637,0.055372,0.222315,3.385951,0.000000,0.000000,2.420661,0.000000,0.000000 -602384.955000,4612815.550000,8214,2855,102.070274,139.690079,134.475220,119.318192,105.971085,93.805801,90.615730,87.376060,87.466965,87.739693,87.962837,99.714890,118.764473,135.772751,148.243805,155.210739,152.119827,139.061981,116.871910,97.946297,87.657051,83.458702,80.681839,55.971096,39.739689,59.103325,81.772751,61.822334,27.844646,9.970265,7.334730,8.704972,9.204973,10.155385,11.118196,6.180175,2.367774,1.409094,0.413225,0.170249,0.404959,0.952894,0.509917,0.256199,6.276034,3.552066,1.700000,0.000000,4.924794,2.928926 -601625.555000,4612805.550000,4417,2905,136.134720,165.500839,139.418198,130.360336,112.476044,100.914062,98.674393,95.847946,94.930588,97.806625,96.079353,106.013237,123.401665,140.831421,151.666122,162.476044,162.509109,151.343811,133.079346,115.393402,105.319023,101.823151,96.600014,67.641342,50.451260,66.814896,87.690926,67.442993,28.616550,10.401669,8.781837,15.056216,9.582659,12.114065,13.238033,8.413235,1.142979,0.752894,0.703307,0.055372,0.569422,0.228099,0.141322,0.378513,0.000000,0.000000,0.000000,0.699174,1.014050,0.000000 -601629.355000,4612805.550000,4436,2905,123.297539,159.625641,144.187622,132.592575,117.774391,104.104973,105.187622,102.063652,99.576050,102.617371,100.171089,112.435547,129.964478,146.237213,158.220688,170.361176,168.328125,155.625641,133.848770,114.212410,102.162827,100.088448,92.245476,65.063652,48.625641,63.171093,78.642166,57.807457,24.625637,10.720676,8.385969,11.756212,8.451253,11.147950,9.919024,5.159513,0.933886,0.328926,0.471075,0.117356,0.000000,0.265289,0.109091,0.252893,2.023141,3.007438,0.000000,0.776860,1.013223,2.002480 -601635.155000,4612805.550000,4465,2905,122.606613,156.038010,141.327271,130.591736,116.509102,103.971916,101.914062,100.145470,98.376869,100.980179,98.947121,110.302490,129.203308,146.004959,157.980164,168.203308,166.980164,154.310745,133.021500,112.434723,102.393402,97.591751,89.872742,62.228115,47.228119,62.600018,79.120674,59.195061,25.409937,10.600016,8.170267,13.699190,9.106627,8.529769,9.651256,5.940505,2.280996,0.674381,0.119008,0.000000,0.011571,0.000000,0.114876,0.000000,0.000000,2.004959,3.270248,0.695041,2.138843,0.000000 -601643.355000,4612805.550000,4506,2905,122.123154,152.421509,143.231415,132.735550,116.876053,107.363655,105.809937,101.619850,100.495880,102.925636,101.710762,113.438034,132.446304,149.388443,159.694244,169.958710,168.471100,156.314072,133.694229,114.198364,102.281006,99.066132,92.454559,64.008278,49.123981,63.132248,80.008278,58.611588,24.714897,10.922331,8.404978,8.887616,7.823154,8.357040,9.449601,4.561990,1.041325,0.339670,0.199174,0.303307,0.066943,0.051240,0.596695,0.000000,0.940496,0.000000,0.000000,0.000000,1.814876,0.000000 -601651.155000,4612805.550000,4545,2905,138.232239,155.331421,147.108276,132.843811,117.372742,105.653732,104.298363,101.670258,99.959511,101.521500,101.513237,113.133072,131.116547,146.868607,158.199188,168.926453,167.670258,155.298355,133.587601,113.678528,101.422325,97.843803,91.918190,63.306629,49.298367,63.529770,79.885139,60.248783,27.463657,10.763653,8.356217,11.639685,8.499187,8.722328,8.595056,5.166951,0.971077,0.433885,0.400828,0.190910,0.036364,0.045455,0.477686,0.229752,1.932232,2.076860,4.852893,1.633058,1.007438,1.849587 -601660.955000,4612805.550000,4594,2905,136.748779,150.401657,144.988449,133.186783,117.757034,107.071091,104.798363,102.790092,100.963646,102.484314,102.525635,113.558693,132.740509,148.335541,160.566940,170.517349,169.013214,156.740494,134.145462,113.500839,101.682655,98.252907,92.054558,64.542168,48.781837,63.971920,78.038040,58.897537,25.757044,9.561174,8.368614,7.934724,8.937204,7.438029,8.882658,5.297529,0.271075,0.080166,0.323141,0.044628,0.086777,0.286777,0.128926,0.000000,2.024794,2.942976,3.329752,0.000000,2.906612,0.000000 -601672.355000,4612805.550000,4651,2905,116.743820,150.190094,143.471085,134.363647,117.735550,108.710762,105.388443,103.793404,102.421501,103.247948,104.685966,116.677704,135.628113,151.049606,163.090927,171.438034,170.801666,159.074402,135.586792,115.942162,104.322327,100.826462,94.545471,66.338860,50.421509,64.462830,80.347122,60.057873,26.338861,10.742991,8.595060,7.706625,7.329765,8.082658,9.976874,3.936371,0.480993,0.200000,0.196695,0.184298,0.220662,0.036364,0.044628,0.246281,0.000000,3.187603,0.000000,0.000000,0.000000,1.947934 -601685.555000,4612805.550000,4717,2905,104.925629,143.019852,145.813248,131.358688,117.838028,108.755386,105.813232,103.218193,104.176872,103.862823,105.879349,115.705795,134.152084,150.400024,163.350433,172.284317,171.094238,158.928940,135.003311,115.449600,102.879349,98.755386,93.763649,66.408279,48.747124,63.961998,78.532242,57.879353,25.909111,10.160346,8.523986,7.200839,6.635550,9.153732,6.522325,2.557030,0.767770,0.159505,0.051240,0.032232,0.000000,0.000000,0.000000,0.000000,1.012397,0.000000,0.791736,0.000000,0.866116,0.000000 -601691.955000,4612805.550000,4749,2905,105.852081,148.012405,143.640518,130.987610,118.293396,107.764473,105.252075,102.714882,103.342987,103.739677,105.037201,114.979347,134.376038,150.202499,161.814087,171.913239,169.557877,158.210770,134.524796,113.169426,102.739677,98.260338,93.227280,65.194237,48.450432,64.781013,77.243820,58.342995,26.342993,10.466957,8.475225,8.400840,7.519021,7.571913,8.184312,3.601659,0.604960,0.469423,0.337191,0.032232,0.244629,0.000000,0.143802,0.000000,3.804959,0.915703,0.789256,4.246282,0.987603,0.000000 -601698.755000,4612805.550000,4783,2905,93.144638,146.291763,144.547958,131.589264,118.647125,108.936378,105.919846,103.448776,103.473572,103.547951,103.944641,115.837204,133.928116,150.258698,161.556213,170.572754,170.200851,156.895065,133.903320,113.192574,101.928116,98.076874,91.936378,64.862000,48.101677,64.333076,78.952904,57.266960,26.275227,10.785966,8.357871,7.528939,7.123154,8.615715,6.409928,3.208271,0.571902,0.121488,0.203307,0.115703,0.172728,0.000000,0.037190,0.000000,0.000000,0.000000,0.822314,2.338017,2.765290,1.891736 -601705.955000,4612805.550000,4819,2905,106.136383,139.148773,143.330597,133.421509,119.661171,110.396713,108.801666,105.735550,104.842995,105.049606,105.694229,116.495880,135.661163,150.123978,162.619858,171.272751,169.719025,158.495880,134.454559,113.966957,102.933899,98.115715,92.545471,64.909103,49.562000,64.537209,79.586792,57.809937,26.242994,11.487620,8.413242,5.905796,8.175221,8.977698,9.338856,4.094222,0.637192,0.505786,0.270248,0.046281,0.111571,0.032232,0.000000,0.000000,0.000000,0.773554,1.706612,0.790083,1.055372,1.872727 -601712.355000,4612805.550000,4851,2905,101.832253,141.623978,144.409103,133.863647,118.367783,109.516548,106.268608,103.425636,102.144646,102.847122,103.781006,114.731422,133.557861,148.880188,161.409103,170.177704,167.913239,157.128113,133.516541,112.351257,101.012413,97.921501,91.954559,63.566128,47.822334,63.450432,76.789276,57.739685,25.757870,10.701668,8.359524,7.431419,6.535550,6.907450,6.395053,2.304137,0.216530,0.082645,0.024794,0.000000,0.037190,0.223967,0.206612,0.385951,0.717356,0.000000,0.856198,2.055372,0.000000,0.000000 -601715.955000,4612805.550000,4869,2905,108.357040,145.640518,143.814072,133.243820,118.698364,108.714890,106.863655,103.632248,102.657043,103.351257,103.880180,114.516548,133.599182,148.921509,161.880188,169.177704,168.995880,156.194229,133.475220,113.665306,100.351257,97.318199,91.500015,64.243820,47.524815,62.665314,77.384315,58.169445,25.714897,9.826462,8.318201,5.914888,6.410757,6.434721,7.809930,3.668602,0.555373,0.074380,0.033058,0.125620,0.085951,0.000000,0.309091,0.000000,0.995868,0.860331,2.580992,1.547108,0.000000,0.000000 -601720.755000,4612805.550000,4893,2905,98.611580,142.293411,145.458694,133.747940,118.987617,108.814064,105.706627,103.260345,102.590927,103.541336,103.714890,113.822327,132.781006,148.326462,161.086792,168.202499,167.632248,155.665298,133.020676,111.318199,99.987617,96.962830,90.500015,63.260349,47.062004,62.351261,76.483482,56.896713,25.785145,9.934727,8.227292,5.339679,6.773567,5.094224,5.629763,2.305790,0.426447,0.544629,0.271902,0.138843,0.455373,0.028099,0.000000,0.383471,1.072727,0.000000,0.000000,0.000000,0.000000,1.890909 -601725.955000,4612805.550000,4919,2905,110.957863,143.353729,145.444641,134.138855,120.105797,109.461174,105.907455,103.667786,103.634727,103.965302,104.899185,114.626457,133.105804,148.609924,161.626450,169.204971,166.940506,156.725632,134.006622,111.725632,99.651253,97.758690,91.254562,62.221508,45.973576,61.907459,77.957039,57.742168,26.396713,10.780182,8.295887,6.185135,7.223154,7.371914,6.457862,3.518188,0.787606,0.442976,0.070249,0.000000,0.046281,0.000000,0.000000,0.000000,1.071075,0.960331,2.547934,0.729752,1.084298,0.000000 -601731.755000,4612805.550000,4948,2905,105.848770,141.615723,143.880188,132.714890,119.177696,107.541328,104.904968,102.318199,101.789276,103.334717,101.921501,113.252075,131.425629,147.871918,160.260345,168.409103,165.764481,154.847122,132.367783,111.896706,100.392570,95.913239,89.409103,62.144650,45.590931,61.690102,77.260345,58.037209,25.508286,9.574395,8.128119,5.868608,6.657864,5.084308,7.418195,2.294219,1.104960,0.134711,0.052893,0.000000,0.023141,0.000000,0.200827,0.000000,0.000000,0.000000,1.677686,4.672728,4.004959,1.744628 -601736.155000,4612805.550000,4970,2905,110.128113,145.830597,141.946304,132.830597,118.863655,108.723160,104.409103,101.863655,101.524811,102.681831,102.772743,113.020676,131.483490,146.376053,158.070267,167.285141,165.276871,153.152908,131.384323,109.913239,98.805801,95.053734,89.409103,60.855392,44.904980,60.938038,77.028938,57.797543,25.508282,10.143818,8.128119,6.185962,6.528113,6.020670,6.014887,2.745460,0.980167,0.141323,0.000000,0.025620,0.019008,0.053719,0.000000,0.000000,1.003306,0.000000,0.000000,1.647934,0.000000,1.915703 -601741.955000,4612805.550000,4999,2905,113.935555,141.192566,143.060333,132.878525,119.746292,109.209106,105.423981,102.804146,101.622330,103.779350,103.134727,113.481834,131.795883,147.209091,158.779343,166.845474,165.944641,154.928101,131.787613,110.655388,98.167786,95.167786,89.027290,61.242172,45.101677,59.481842,76.142990,57.630600,25.015720,10.381835,8.093408,4.323150,6.787616,5.224802,6.510756,2.543808,0.189257,0.203307,0.069422,0.161984,0.070248,0.045455,0.272728,0.000000,0.000000,1.038017,0.000000,1.627273,0.000000,0.000000 -601751.355000,4612805.550000,5046,2905,116.150429,144.158707,145.927292,134.390106,120.332253,109.629768,106.662827,104.183487,102.613243,104.935555,104.968613,115.547127,132.712418,149.522339,160.489288,169.530609,167.770279,156.604965,133.621490,112.910759,101.885971,95.604973,90.290924,62.604977,46.357044,63.084316,77.200020,58.993404,25.156218,9.410761,8.208283,5.794226,7.002494,6.466954,7.412408,2.438848,0.526447,0.196695,0.474381,0.180992,0.074380,0.020661,0.319835,0.260331,1.080992,1.076860,0.000000,0.759504,0.000000,0.000000 -601757.755000,4612805.550000,5078,2905,117.095055,152.771912,143.573563,135.953720,121.647934,110.780167,106.953720,105.383476,103.639671,105.069435,104.813225,115.747108,133.738846,148.854553,161.581818,170.292572,167.416534,156.763641,133.152069,111.507439,99.953728,96.061165,89.854546,62.441341,45.763660,61.672745,77.176872,56.771919,25.102499,9.520677,8.168614,4.230587,6.570261,7.162821,4.536374,1.752896,0.270249,0.152893,0.000000,0.183472,0.028099,0.000000,0.205785,0.257851,3.208265,1.020661,0.000000,1.639670,0.000000,1.914050 -601760.355000,4612805.550000,5091,2905,112.844643,144.588440,144.150421,132.852905,120.538864,110.117371,105.828117,102.695885,102.357040,103.762001,103.704147,114.018196,132.555389,147.894226,159.629761,168.018188,166.836380,155.976868,132.299194,110.910759,99.869438,95.365311,90.018196,61.927292,44.414898,61.571918,77.001671,58.365307,25.155390,9.870264,8.183491,3.981826,6.856212,5.879352,5.836374,2.393393,0.579340,0.610745,0.305786,0.100827,0.114877,0.100827,0.000000,0.327273,0.000000,0.000000,0.000000,0.826446,2.057025,1.848760 -601763.755000,4612805.550000,5108,2905,112.566956,152.252060,147.805786,136.929764,122.979347,110.599190,107.904968,105.012405,104.020668,106.995872,106.971085,116.789261,134.392563,150.367767,162.260330,170.698349,169.202484,158.590912,134.698349,113.921494,102.152893,97.301659,92.409096,64.070267,47.557873,62.169437,78.309937,59.433899,26.177706,10.795884,8.400846,4.093399,7.242162,7.159515,7.114061,3.320667,0.271075,0.211571,0.312398,0.000000,0.000000,0.096695,0.000000,0.000000,0.000000,1.080165,0.891736,0.780165,1.002479,0.000000 -601769.355000,4612805.550000,5136,2905,122.112404,150.870270,146.886795,139.142975,125.159515,111.903320,109.357864,107.060349,105.779350,108.002495,107.589272,118.870262,134.630585,151.283493,162.804153,171.580994,169.589279,158.994232,135.275208,114.283485,101.060349,98.085136,92.481834,65.192581,48.085140,62.399193,77.647125,60.399197,24.605804,11.322331,8.407457,4.101661,6.300013,6.957863,5.941334,2.162815,0.799175,0.316530,0.606612,0.137190,0.076034,0.061984,0.059504,0.000000,0.000000,0.000000,0.851240,1.556199,0.000000,0.000000 -601779.755000,4612805.550000,5188,2905,116.272743,166.013229,156.616531,144.277679,128.649612,116.087624,113.360352,111.219856,110.509109,113.674400,112.881012,123.674393,141.525620,157.401657,168.806625,177.922333,176.566956,164.633072,140.211563,117.905800,105.930603,102.170265,97.690933,68.723991,51.633080,66.682663,81.046303,60.550434,24.715721,12.265307,8.881012,5.115712,7.272739,8.297535,8.095881,2.343807,1.369425,1.346284,1.050415,1.001654,0.555373,0.454547,0.685125,0.000000,0.000000,0.000000,2.025620,3.878513,1.055372,1.082645 -601782.755000,4612805.550000,5203,2905,142.309952,166.753738,151.869431,142.323975,126.100830,113.166946,110.704132,108.563644,107.092575,109.885956,108.919006,119.340500,136.671082,153.638031,165.034729,174.960358,172.282669,161.092590,137.538849,115.646294,105.092575,100.571907,95.109100,67.092583,49.530602,64.051254,79.985138,59.927292,25.373571,10.922333,8.646300,6.691747,8.656214,7.571087,7.502493,3.323973,0.704961,0.070248,0.155373,0.133058,0.143802,0.020661,0.410744,0.278513,1.135537,2.242975,0.000000,0.867769,1.149587,4.248760 -601787.355000,4612805.550000,5226,2905,129.827286,172.733887,154.593414,143.684326,129.171906,115.948776,111.857864,110.676048,108.857864,113.320679,110.163651,120.725624,138.370270,155.990112,166.973557,175.519012,174.254547,162.072739,138.370270,116.246284,104.626457,101.188446,94.890915,66.824806,50.056213,65.692574,79.519020,60.634724,25.097540,11.517374,8.626467,4.755381,8.378527,7.567783,7.993403,3.155377,0.301654,0.225621,0.578514,0.066116,0.206613,0.000000,0.285951,0.000000,0.000000,1.066942,0.000000,0.000000,1.061157,0.000000 -601791.355000,4612805.550000,5246,2905,118.324814,167.842148,156.296692,143.090103,126.519844,114.412407,112.660339,110.156212,108.561165,110.866951,109.519844,119.759514,137.181015,155.065292,166.594223,174.073563,173.544632,161.263641,136.974396,116.602493,104.503319,99.131416,94.990921,66.015724,48.734730,63.767792,78.866959,57.462006,23.785969,9.135554,8.635556,3.333066,5.800838,4.629761,5.886787,1.594219,0.291736,0.006612,0.247108,0.000000,0.038017,0.149587,0.000000,0.000000,2.334711,1.155372,0.997521,1.002479,0.000000,0.000000 -601795.155000,4612805.550000,5265,2905,113.564476,161.913223,157.574387,143.301651,128.070251,117.359512,115.491745,111.623978,110.491745,111.359512,112.392570,122.640503,141.152893,157.111572,167.756195,176.938019,174.946274,161.285126,137.764465,117.607445,105.938026,102.318199,97.500023,69.202507,53.863655,66.938034,82.747955,60.863655,25.523159,11.168613,8.863657,8.785139,6.781006,8.401668,6.987616,5.228935,0.441323,0.166116,0.000827,0.040496,0.154546,0.028926,0.000000,0.000000,1.195042,0.000000,1.023967,0.000000,0.000000,0.000000 -601799.955000,4612805.550000,5289,2905,109.047951,161.165298,157.371918,144.768600,129.834717,116.082649,115.280998,112.462814,111.553726,112.595047,111.157036,122.677696,141.099182,158.462830,169.545471,178.454559,175.074402,162.355392,138.495880,117.297531,106.603317,103.520668,96.545464,69.512421,53.322330,67.404976,83.487610,61.462826,26.462830,11.615721,8.776878,9.437204,7.578527,8.466130,7.184311,3.217362,0.290084,0.257025,0.272728,0.076033,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.950413,1.172727,1.966942 -601804.355000,4612805.550000,5311,2905,125.064468,161.725632,157.684311,144.981827,129.072739,116.221497,115.361992,111.428108,110.535545,111.692566,110.494225,122.659508,141.899185,157.651245,168.857864,177.907440,175.428101,162.552078,136.923981,116.535545,105.890915,103.527283,97.345474,68.494232,53.428123,66.494232,81.295876,60.510757,28.089275,12.415720,8.849606,9.933901,7.221504,7.936378,8.186790,3.701660,0.900828,0.000000,0.275207,0.334711,0.017356,0.366116,0.000000,0.000000,2.229752,3.385124,0.868595,0.000000,0.000000,0.000000 -601810.155000,4612805.550000,5340,2905,116.467781,164.359497,156.500015,143.078522,127.433891,115.880173,114.061989,111.384308,109.384308,111.756203,109.714882,121.557861,140.276871,156.136383,167.888428,176.896698,175.285126,160.524796,136.359528,115.260338,103.590919,100.995880,95.409103,66.376053,51.028946,64.260353,79.714890,57.657043,24.706633,9.247950,8.673573,8.090921,6.628113,7.861171,6.820673,3.114884,0.682646,0.120661,0.161158,0.000000,0.000000,0.026446,0.000000,0.000000,0.000000,1.108265,0.000000,1.223141,0.000000,1.930579 -601818.755000,4612805.550000,5383,2905,112.706627,170.128113,156.466965,143.673569,128.756210,115.078529,114.136383,112.028938,110.921501,112.913239,109.962830,122.020676,139.714890,157.772751,169.582657,177.342987,175.235550,160.425629,136.219025,115.417374,104.483490,101.483490,95.863655,67.078529,51.483490,65.400848,80.698364,58.342995,25.645475,11.479356,8.714895,10.672741,7.623981,8.159518,7.241335,3.001660,0.656200,0.404959,0.095868,0.000000,0.099174,0.100000,0.000000,0.000000,2.428926,1.173554,1.667769,0.000000,0.000000,0.000000 -601823.555000,4612805.550000,5407,2905,124.671082,169.909927,157.885132,144.502487,130.097534,115.081001,114.808281,112.204971,111.411583,114.105797,111.428116,123.816544,141.312408,159.320663,171.907440,179.899185,176.758682,161.262817,137.808273,115.130585,105.395058,102.766960,96.981834,68.981834,52.601677,67.642990,80.370262,57.469440,25.546301,11.044645,8.816547,9.747121,7.605800,7.021501,7.025632,2.891742,0.210744,0.138843,0.151240,0.003306,0.288430,0.317356,0.000000,0.000000,1.182645,0.000000,1.018182,0.893389,1.062810,0.000000 -601828.355000,4612805.550000,5431,2905,127.261993,179.956223,158.328125,147.633911,130.526459,116.790924,115.650429,113.171089,112.485138,116.625641,112.493408,123.997536,142.121521,160.625641,172.038864,181.394241,178.295074,161.997543,138.625641,117.823982,106.096710,101.931419,97.154564,67.939697,53.104977,66.344643,79.187622,59.410763,26.377705,11.081010,8.832251,11.924809,6.898362,8.046294,7.252078,3.865297,0.390084,0.098347,0.214051,0.000000,0.128100,0.006612,0.000000,0.000000,0.000000,0.000000,2.010744,0.895868,0.000000,0.000000 -601833.955000,4612805.550000,5459,2905,140.007462,184.585953,159.908264,149.470261,132.404144,118.379356,116.404152,113.924812,113.759521,118.635559,112.933075,124.519852,142.172745,161.420670,174.321487,182.329773,179.007462,162.767776,139.833908,119.032249,106.106628,103.585968,98.354568,70.205803,53.652084,68.792580,81.619026,60.610764,26.825640,12.728942,8.941342,12.995885,6.880178,8.579351,9.612411,3.302486,1.309095,0.563638,0.213225,0.241323,0.106613,0.496695,0.146281,1.148761,1.183471,1.133058,1.966942,0.000000,0.000000,1.972727 -601836.755000,4612805.550000,5473,2905,138.821487,182.618179,159.618195,149.204971,131.552078,117.031418,116.039680,113.940514,113.229767,117.618195,113.279350,124.428116,142.395050,160.502487,172.378525,182.932236,178.783478,162.056198,138.271088,116.849602,103.890923,102.023155,96.890923,68.056221,51.056217,66.543823,80.378525,56.279358,24.890928,9.923985,8.808284,11.918197,5.938030,6.238855,8.904973,3.150421,0.515704,0.221488,0.110744,0.000000,0.042976,0.108265,0.267769,0.000000,1.113223,0.000000,0.925620,0.867769,1.116529,0.000000 -601839.555000,4612805.550000,5487,2905,149.398361,186.838852,162.342987,151.219025,132.376053,117.409119,116.789284,114.260345,114.301666,118.574402,113.690102,124.623993,143.334732,161.590927,174.144638,183.847122,178.475220,162.607452,138.822327,118.623993,106.194229,103.037209,97.772743,68.252090,53.508286,67.913246,81.607452,57.533073,26.938032,12.047952,8.888449,13.375223,8.238858,7.910757,7.756211,5.366126,0.751242,0.557026,0.197521,0.147934,0.052893,0.000000,0.000000,0.000000,1.247108,1.066942,0.000000,0.000000,0.000000,0.000000 -601844.155000,4612805.550000,5510,2905,150.827286,188.389267,162.736374,150.381012,131.835556,117.000839,115.926460,114.000839,112.661995,119.480179,112.926460,125.075218,141.777695,160.628937,173.447113,182.356216,179.190918,161.695053,137.959518,117.381004,105.976044,102.157867,98.372742,67.744644,51.860352,67.463654,80.761169,57.471920,25.075228,10.048777,8.942994,12.228114,7.451254,7.147120,6.333896,2.932238,0.395043,0.101653,0.004132,0.045455,0.148761,0.323141,0.194215,0.000000,0.000000,1.169422,0.000000,2.923967,2.358678,0.000000 -601850.155000,4612805.550000,5540,2905,156.859528,188.644638,165.570267,154.776871,135.561996,120.214890,118.595055,116.264481,116.322327,122.520676,116.603325,127.694229,145.652908,164.231415,177.553741,187.743820,182.322327,164.314072,140.545471,119.305801,108.281006,105.256218,101.363655,71.603325,55.553734,70.925636,84.281006,58.743816,28.553738,12.457870,9.214895,13.879355,8.463653,7.704971,7.148774,4.788439,0.912399,0.228100,0.340497,0.002479,0.047934,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.990909,0.000000,0.000000 -601854.355000,4612805.550000,5561,2905,103.482658,149.171082,154.146286,143.559509,128.683487,116.906624,115.509926,113.212410,113.220673,114.410751,115.146294,127.410751,145.410751,162.096710,175.840500,182.592575,181.733063,168.476868,143.270264,122.187614,111.286789,106.766129,101.881828,75.377701,58.047131,73.237198,86.427284,64.592583,30.270269,12.005803,9.262002,6.187617,6.533072,7.021501,9.395055,3.918190,0.202480,0.577687,0.164463,0.028926,0.000000,0.005785,0.000000,0.032232,0.000000,2.254546,0.000000,0.000000,0.000000,0.000000 -601859.155000,4612805.550000,5585,2905,103.889267,149.047119,153.518188,142.212402,130.063644,118.435547,115.914886,114.675217,114.377693,116.295052,115.815712,125.716537,145.592575,162.774384,175.270264,182.939682,182.989273,168.675217,143.080170,122.179352,109.972740,108.228935,104.336372,75.204147,56.584316,74.228943,87.129761,64.228951,31.096712,13.471091,9.485143,6.553732,7.433899,8.229766,6.504971,3.107446,1.346285,0.133885,0.099174,0.062810,0.000000,0.557852,0.000000,0.000000,0.000000,0.000000,4.036364,0.000000,0.000000,0.000000 -601861.755000,4612805.550000,5598,2905,103.181000,146.170258,150.707458,143.864456,128.558685,118.765312,115.707458,113.657875,113.558693,115.409927,115.914070,126.897537,146.162003,162.649597,175.682648,183.558670,182.285950,168.566940,143.740494,121.988449,110.542168,107.814896,102.963654,75.467789,59.319031,73.128944,86.732254,63.566963,29.566961,12.585141,9.360351,6.509105,6.573567,9.781007,6.558691,3.970255,0.602481,0.404960,0.152893,0.042975,0.000000,0.025620,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.755000,4612805.550000,5618,2905,92.491753,139.558701,146.839676,138.343826,126.038033,115.442986,113.104149,110.600014,111.897537,112.583481,113.186790,124.591751,143.550430,160.765305,172.442993,181.277695,180.145462,167.219849,141.203323,119.021500,109.550423,104.988441,100.509102,73.938858,56.790100,71.773567,84.360344,62.690926,27.649605,11.033074,9.137209,5.193400,5.632245,6.061169,6.611581,3.209923,0.835539,0.484298,0.485125,0.431406,0.186777,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.755000,4612805.550000,5648,2905,87.833893,148.252075,151.466965,142.061996,127.433891,116.615707,116.144638,112.896706,113.673561,116.582649,115.400833,126.921494,145.706635,162.797531,175.995880,183.987625,183.508286,169.599182,143.665298,121.161163,110.400833,107.276871,103.227280,75.252083,59.152912,72.433899,87.466949,64.475227,30.566135,9.519025,9.384316,5.050426,7.317371,8.289272,7.331418,2.643808,0.216530,0.114876,0.021488,0.110744,0.152893,0.117356,0.000000,0.000000,1.204132,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.755000,4612805.550000,5663,2905,104.502502,146.759521,151.941345,141.123154,129.296707,117.866951,115.676872,114.776047,114.147942,115.528107,116.982658,128.015717,146.511597,165.263657,176.420685,185.536377,183.280182,169.742996,143.949600,121.395882,111.552902,108.247116,103.172737,76.800842,58.098366,75.048782,87.255394,64.040512,29.197538,12.141339,9.379358,5.946294,6.852908,7.738858,6.583482,4.866952,0.842977,0.157026,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.030579 -601877.555000,4612805.550000,5677,2905,100.473557,144.342163,150.441330,141.449585,127.342163,117.846291,114.904144,113.647957,113.928947,115.143814,115.333893,126.714058,145.937195,163.019852,175.854568,184.515717,183.069443,168.160355,144.226456,121.656212,110.631424,107.383492,103.309113,75.143822,58.804977,72.664482,86.424812,64.664482,29.631424,11.952910,9.391754,6.138031,7.849603,7.900840,5.191745,4.500834,0.618183,0.132232,0.068595,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.755000,4612805.550000,5698,2905,110.237198,150.712402,156.150421,142.613235,130.357040,122.307457,119.224808,115.952087,117.117371,118.059525,118.720680,130.786789,148.216537,166.142151,178.753723,187.778519,185.819839,172.315720,146.976868,124.489265,113.795059,109.538864,105.290924,77.084320,60.704151,73.877701,89.852913,67.092583,31.776878,14.696713,9.571920,5.500839,8.982660,8.441336,9.541336,4.547117,1.012401,0.089257,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,1.185951,0.000000,0.799174,0.000000,4.034711 -601886.555000,4612805.550000,5722,2905,101.095047,147.890091,154.592575,142.468597,126.394218,119.402481,116.047119,114.245461,114.468605,116.071907,116.848770,128.138016,147.377701,163.526459,176.534729,186.212418,184.270279,170.030609,143.038849,122.220665,112.344635,107.286797,103.518196,75.038864,58.113239,73.964478,88.336372,65.419029,30.361177,12.027290,9.410764,4.906624,8.247124,8.290924,5.834722,3.422320,0.587606,0.436365,0.283472,0.104133,0.000000,0.833059,0.000000,0.000000,0.000000,0.000000,0.000000,1.050413,0.000000,0.000000 -601892.755000,4612805.550000,5753,2905,101.360344,149.839676,152.509109,143.087616,127.236374,116.484314,114.128937,112.881004,112.409927,115.004974,115.178528,126.748772,146.897537,163.269440,176.327286,184.740509,182.666122,169.550430,143.682663,121.393402,110.864479,107.451256,102.509102,75.087616,58.079361,72.393402,86.682655,64.690926,30.170267,12.420677,9.319027,5.291749,6.931420,6.360344,7.805796,3.923147,0.435539,0.000000,0.328926,0.101653,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.105785,0.000000 -601897.955000,4612805.550000,5779,2905,110.895889,154.646286,150.952072,140.423157,125.613235,117.456207,113.737206,111.538864,112.249603,113.365311,114.613243,125.563644,145.051254,161.770264,174.646286,184.241333,181.786789,168.472733,142.960342,121.125633,109.613243,105.464478,101.200020,75.323982,58.018200,71.067780,85.985130,64.621506,29.745474,10.617373,9.200019,5.355384,6.866131,6.950428,7.742989,2.319014,0.185124,0.290083,0.156199,0.107438,0.000000,0.091736,0.379339,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.355000,4612805.550000,5806,2905,108.758698,149.817368,152.420685,140.866959,127.321510,116.412415,114.685143,112.916550,113.404152,115.123161,115.214066,126.379356,145.709930,163.354568,176.354568,184.181015,182.445480,169.734726,143.181015,120.800842,109.850433,106.503326,102.263657,73.767792,57.643822,73.073570,87.098366,64.701675,29.521507,10.949604,9.296714,4.134722,5.845468,9.124806,7.262823,1.812402,0.226447,0.251240,0.561984,0.057025,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,1.803306,1.113223,0.000000 -601908.355000,4612805.550000,5831,2905,117.229774,152.771927,152.755386,141.499191,130.424820,119.209938,116.945473,115.003326,114.466133,117.176880,117.962006,127.846298,147.342163,164.821487,177.656219,185.804977,185.375229,170.780182,143.730591,122.829773,110.904152,107.780182,103.763649,77.697540,58.110764,73.094231,86.581841,65.656219,30.629770,12.124811,9.433077,5.731414,7.369435,7.017367,7.573565,3.835545,0.627274,0.439670,0.483472,0.185951,0.214877,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.355000,4612805.550000,5856,2905,99.424812,150.427292,149.658707,140.774399,129.245468,117.344643,115.733078,115.204155,114.394241,117.146301,116.567787,127.840508,146.997543,163.385956,176.468597,184.460342,182.757858,169.807449,144.427292,121.493408,110.964478,107.650429,102.063652,74.708290,56.427288,73.080193,86.022339,64.733070,29.443819,11.472746,9.278532,4.809929,6.523155,6.448772,5.613235,2.843808,1.321490,0.434712,0.038017,0.226447,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.355000,4612805.550000,5886,2905,97.528107,151.484314,151.558685,142.236374,129.195068,118.847946,115.905800,114.922325,114.343811,116.649597,116.781830,128.905792,145.004974,163.856216,177.781830,184.831421,182.814896,168.715714,144.112411,121.616539,110.153732,106.186790,102.145470,75.847946,57.583496,71.881004,87.186790,65.657875,31.583492,13.309936,9.285970,4.459516,7.369436,6.637204,6.591748,3.192569,0.233885,0.161158,0.000000,0.000000,0.313224,0.461158,0.000000,0.000000,2.231405,0.000000,0.000000,5.320662,0.000000,0.000000 -601925.755000,4612805.550000,5918,2905,98.165298,140.188431,139.403290,135.370255,126.014885,115.543808,117.854553,121.813232,123.540504,128.433075,127.623154,139.540497,157.276031,173.441330,184.888443,192.433899,190.293411,176.417374,151.414062,126.802490,115.992577,111.909927,106.190926,77.995880,60.045471,73.114891,87.128113,65.814072,29.318201,12.150430,9.653737,4.138026,7.483486,8.158689,8.376871,4.852073,1.583474,1.124795,2.534713,0.644630,0.438017,0.000000,0.428100,0.000000,0.000000,3.411571,0.000000,1.851240,2.068595,0.000000 -601933.955000,4612805.550000,5959,2905,129.280182,165.169418,157.095062,143.673569,129.871918,117.582664,114.987617,112.871918,114.020676,116.987617,116.417374,127.185966,146.202499,163.252060,175.673553,185.351242,182.590912,170.103302,144.384308,121.756218,109.814064,105.731422,101.954559,74.574394,56.012413,70.615715,86.061996,65.111588,29.533077,12.045473,9.268614,4.116538,6.993402,6.565300,8.215714,2.686784,0.608267,0.258678,0.142149,0.452893,0.056199,0.250414,0.294215,0.000000,0.000000,0.000000,1.054546,0.511570,0.000000,2.052893 -601938.755000,4612805.550000,5983,2905,123.609108,159.637207,150.620667,145.149597,129.000854,116.785973,113.868614,113.174400,111.504974,115.562828,113.984322,125.471924,144.372742,161.488449,175.025620,182.471893,181.099991,168.414062,142.562820,120.182663,108.885139,106.455383,100.190933,73.653740,55.149609,70.612419,85.075226,63.480186,26.347954,10.071918,9.108283,4.441331,6.599187,6.554557,7.409104,1.310747,0.049587,0.552894,0.323968,0.057851,0.038017,0.209918,0.492562,0.000000,2.360331,0.808265,0.909091,0.821488,0.000000,2.003306 -601943.155000,4612805.550000,6005,2905,154.034714,168.866959,160.007477,149.395889,133.776047,121.544647,119.147942,118.866959,117.065308,120.718201,120.139679,130.106628,149.280182,167.015717,180.007446,188.222321,185.776031,174.007446,148.040527,125.519852,112.685143,109.081841,105.536377,77.114899,58.379356,73.734734,87.652077,66.081833,29.428944,12.239687,9.594234,6.342160,7.450428,6.194226,7.657038,3.322321,0.714052,0.507439,0.155373,0.216530,0.091736,0.116530,0.000000,0.005785,0.000000,0.000000,1.748760,0.957025,0.653719,0.000000 -601949.155000,4612805.550000,6035,2905,120.251259,166.804962,153.639679,146.284302,130.647949,118.970268,116.218193,114.755386,113.557037,118.433067,116.143814,128.895889,145.482666,164.119019,177.375214,185.738846,182.499176,171.036362,144.978531,123.193405,111.201668,107.614891,102.581841,76.069435,56.970268,72.069443,86.160347,66.176880,27.590099,10.105803,9.325639,4.611579,6.566130,6.032244,7.652904,2.557857,0.732233,0.000000,0.148760,0.000000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,1.993389,0.000000,2.180992 -601956.555000,4612805.550000,6072,2905,119.377693,165.569427,163.263641,149.065292,132.437195,121.602486,119.569427,115.974380,115.098351,116.387604,116.230583,128.660339,148.660339,164.900009,177.015701,185.470245,184.338013,170.098343,144.139679,123.040497,110.668602,109.139671,103.900002,76.709930,59.767792,74.495064,88.114891,63.800850,29.709936,12.199191,9.445473,9.246297,7.747121,8.262825,6.969433,2.630585,0.609093,0.258679,0.180166,0.271902,0.322315,0.000000,0.000000,0.000000,0.000000,4.595869,0.000000,0.000000,0.000000,0.000000 -601959.755000,4612805.550000,6088,2905,140.225647,166.614059,161.870270,147.093399,132.853729,120.242165,118.647125,116.399185,116.217369,116.655388,117.043816,129.886795,148.142975,164.795883,177.878525,185.432236,184.506622,169.572754,143.465302,122.895058,111.101669,109.010757,103.845467,76.523155,59.729771,74.589272,88.316544,64.052086,29.118202,11.619853,9.440516,8.692576,7.722328,8.778527,6.463647,3.567775,0.995871,0.621489,0.129753,0.276860,0.000000,0.005785,0.000000,0.000000,1.200000,6.102480,0.000000,0.000000,2.309918,0.000000 -601964.355000,4612805.550000,6111,2905,143.639694,173.309113,164.614899,149.069443,134.350433,122.499184,119.879349,118.292572,117.309105,118.722328,117.912407,130.036377,149.416550,166.333908,178.185150,187.325638,186.507462,170.639694,145.499191,124.242989,113.920670,110.292572,107.218193,78.226456,61.234730,74.730598,89.193398,65.804977,31.639688,14.059522,9.747127,11.979356,9.616544,11.781836,9.825635,4.676869,0.681821,0.688432,0.123141,0.104133,0.294215,0.445455,0.000000,0.050413,0.000000,0.000000,0.855372,0.887603,2.333058,0.000000 -601967.355000,4612805.550000,6126,2905,142.543808,174.238022,161.114059,147.990082,131.750427,118.535553,117.791748,115.816544,114.733902,115.667786,114.866127,127.328941,146.990082,164.056198,176.361984,184.915710,183.709091,168.436371,143.552078,121.634727,110.601669,107.378525,103.163651,76.271088,59.659527,72.180183,87.014893,64.502502,29.487623,11.189273,9.378531,8.625635,6.321501,8.109931,7.633897,3.623975,0.512398,0.228926,0.432233,0.204133,0.190910,0.349588,0.320661,0.050413,0.000000,2.333058,1.035537,2.769422,1.140496,0.000000 -601971.155000,4612805.550000,6145,2905,134.880997,170.633057,159.715714,148.228119,133.004974,119.442986,118.285965,116.128937,116.484314,117.566956,115.616539,128.029770,147.302490,164.558670,176.930573,186.236359,183.682648,169.451233,143.525635,122.285965,111.666130,108.021500,102.963646,74.847954,58.368614,73.038040,88.740509,63.558701,30.715719,12.054564,9.360351,10.119852,6.363651,7.139683,8.105797,3.418188,0.544630,0.490084,0.221488,0.095868,0.080992,0.040496,0.000000,0.000000,3.688430,1.169422,0.954546,0.605785,1.147934,0.000000 -601976.755000,4612805.550000,6173,2905,132.065308,172.833908,160.420685,148.866959,133.552917,119.676880,119.420677,116.304977,116.106628,118.379356,117.660347,129.685150,148.569443,166.379364,178.271927,187.280182,185.288452,169.643814,144.734726,122.858696,111.445473,108.470268,103.809113,75.486794,59.718201,73.412415,89.238861,64.057037,28.924812,11.777703,9.437209,9.423155,7.931421,8.785964,8.034723,3.561165,0.636366,0.192563,0.328926,0.099174,0.000000,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.962810,1.196694,0.000000 -601983.155000,4612805.550000,6205,2905,138.273560,171.174393,164.223984,151.306625,134.265289,121.504974,120.918190,117.571075,117.752899,120.587608,118.066948,131.232239,149.240509,166.314896,178.678528,188.058685,186.166122,171.471909,145.918198,125.174385,112.546295,109.298363,105.554558,75.810768,59.529774,74.339691,89.645470,65.744652,28.529770,11.317372,9.595887,8.366130,7.589270,6.628939,8.749600,3.683477,0.603308,0.290083,0.037190,0.263637,0.000000,0.168596,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,1.032232,0.000000 -601986.955000,4612805.550000,6224,2905,138.856216,182.905777,162.335556,153.517365,135.947113,123.029762,122.054558,120.368607,119.467781,121.988441,119.244644,130.442993,149.633072,168.046295,178.856201,189.600006,185.765289,169.856216,146.550430,125.798363,113.905800,111.071091,105.600014,78.426460,59.814892,74.517365,90.880997,65.195061,29.583490,12.449604,9.600019,11.159521,6.867783,10.426462,9.450427,3.478520,0.582646,0.363637,0.246281,0.000000,0.000000,0.307439,0.057851,0.056199,3.714877,0.000000,0.000000,0.000000,0.000000,0.000000 -601990.555000,4612805.550000,6242,2905,149.027283,179.457031,164.027283,153.242157,136.804138,121.192574,120.886795,119.068611,119.142990,121.820679,117.754562,130.209106,148.440506,167.432236,178.721497,188.886780,185.506622,171.085129,145.580994,124.704971,113.258690,109.795883,105.209106,75.787628,60.895061,75.820686,90.266968,65.671921,30.184317,11.059522,9.564483,10.990099,6.954558,6.461172,7.581831,2.723974,0.567770,0.190083,0.305786,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.804959,0.000000,4.373554 -601996.355000,4612805.550000,6271,2905,143.464478,182.357025,165.919006,156.836380,137.067780,122.737198,121.836372,120.009926,119.654556,123.943810,119.175217,131.877701,149.786789,167.761978,179.985123,189.877686,186.993378,170.604950,146.662827,125.464470,113.076042,110.877693,106.472740,77.505798,59.976879,75.092575,91.770256,63.943821,29.323988,10.780182,9.679358,10.850430,6.487617,7.328113,7.402492,3.253725,0.632233,0.341323,0.047934,0.000000,0.000000,0.180166,0.000000,0.000000,2.505785,0.000000,1.009917,2.034711,3.840496,0.000000 -602005.755000,4612805.550000,6318,2905,164.885971,191.638046,169.158707,159.687622,139.481018,124.381828,124.514061,120.852905,121.803314,126.960342,121.034721,133.042984,150.588455,168.439697,182.505814,192.348785,188.290939,171.133911,147.381851,127.365311,115.224800,112.282661,108.654564,77.142174,62.431423,78.076042,91.497536,64.555389,29.332251,11.762827,9.877705,11.104147,7.262825,7.688442,7.285136,3.713231,0.843804,0.429753,0.089257,0.162810,0.000000,0.000000,0.342149,0.000000,0.000000,1.245455,1.071901,1.028099,0.000000,6.515703 -602019.355000,4612805.550000,6386,2905,114.672737,160.411575,163.948761,153.436371,138.667770,127.882668,124.023155,122.477699,121.750435,122.312408,123.593407,135.089279,153.932236,170.337204,183.171906,191.130585,189.461166,176.138855,150.386780,128.618210,119.056213,114.047951,108.163651,81.180191,65.362000,79.990105,93.494240,68.444649,30.047953,12.845473,9.833076,6.785139,7.578527,6.720675,7.359519,3.329759,0.876861,0.225620,0.241323,0.000000,0.169422,0.385125,0.000000,0.000000,0.000000,0.000000,0.967769,0.860331,0.000000,0.000000 -602036.955000,4612805.550000,6474,2905,110.721504,161.590927,162.681839,152.516541,137.756210,128.723160,125.971092,123.756218,123.805801,125.318199,125.822327,136.640518,155.384308,171.541351,183.053741,192.516556,190.731430,176.566132,152.623978,130.995880,119.409103,115.268608,110.500015,82.500015,65.739693,81.376060,93.177711,69.202492,30.623985,12.615720,10.045474,6.195054,5.820676,7.237205,6.336376,1.712402,0.921490,0.257026,0.107438,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.755000,4612805.550000,6608,2905,117.616547,164.401672,166.806625,154.674393,141.881012,131.583481,128.252899,126.905792,126.319016,127.740501,128.649597,139.269440,158.079346,173.930588,187.137192,195.963638,194.277679,181.566956,157.418198,135.335556,123.327286,119.459518,114.145470,86.492584,69.178535,83.914070,97.368599,71.484322,33.616547,14.487622,10.376880,7.100012,7.757867,7.934725,7.900014,3.097527,0.521489,0.157852,0.024794,0.000000,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.959504,0.000000,0.000000 -602097.555000,4612805.550000,6777,2905,131.553726,163.238022,159.180176,149.494217,138.395050,126.444633,124.593391,122.502487,122.403313,124.056206,124.238022,133.841324,151.006622,167.634720,180.519012,189.601654,189.089264,178.155380,153.072739,132.370255,120.064468,117.204964,109.345459,83.535545,66.221504,81.659508,94.328934,69.775215,31.345472,12.553736,9.940515,4.001662,5.132245,5.429763,5.190919,1.506616,0.276034,0.192562,0.088430,0.218182,0.112397,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.955000,4612805.550000,6879,2905,138.164490,178.900024,171.916550,159.693405,146.205811,130.462006,128.561172,128.048782,124.577705,128.850433,126.941345,136.767792,155.007462,171.767792,184.594238,192.437210,191.577698,180.462006,155.371094,134.792587,122.346298,117.908287,112.263657,84.015724,67.371094,83.304977,96.189278,74.023987,33.387623,13.470265,10.205805,3.304968,7.952907,7.795056,6.473567,2.841327,0.576035,0.143802,0.000000,0.000000,0.000000,0.029752,0.000000,0.003306,0.000000,3.785951,0.000000,0.000000,0.000000,0.000000 -602125.155000,4612805.550000,6915,2905,99.065300,168.898361,172.857040,160.059525,141.949600,130.602493,129.299179,126.175217,125.784309,126.999184,126.528107,139.065308,158.668610,176.222336,189.222336,198.004135,196.962814,183.230591,159.784317,137.734726,127.139679,125.751251,119.354553,90.858688,74.032249,89.216537,105.974396,78.106628,39.117374,15.776051,10.850431,10.716545,10.166958,8.233897,11.370262,5.352902,1.510746,0.972729,1.314878,0.300000,0.253719,2.205787,0.100827,0.077686,0.000000,0.000000,2.595868,0.000000,0.000000,0.000000 -602128.555000,4612805.550000,6932,2905,104.995064,180.218185,173.515701,159.003311,142.656204,131.300842,130.821503,128.829758,126.408279,127.094223,126.490921,140.077682,158.218185,176.581818,188.829758,198.127274,196.862808,182.003311,156.499176,135.945465,124.085960,120.573563,115.581833,85.474396,69.796715,86.441345,102.598358,75.077705,36.028122,14.304150,10.507457,10.902494,6.967783,8.029767,8.946296,3.286784,0.676035,0.438017,0.176860,0.042975,0.000000,0.000000,0.000000,0.072727,1.371074,0.000000,5.592563,0.000000,0.000000,0.000000 -602132.555000,4612805.550000,6952,2905,115.242165,175.027283,174.539673,160.176056,143.374405,130.473557,130.655380,126.043816,126.118187,126.870255,126.027283,138.407440,158.531433,176.300003,188.250427,198.580994,196.605789,181.366119,157.638855,135.101654,123.779343,120.688446,116.209106,85.680168,70.217369,85.473557,103.192574,74.853737,36.043819,15.433076,10.564482,11.390099,7.907453,8.021502,8.481830,5.054555,0.829754,0.268596,0.052893,0.183471,0.000000,0.000000,0.056199,0.153720,0.000000,0.000000,1.247934,1.184298,0.000000,0.000000 -602138.355000,4612805.550000,6981,2905,103.992577,169.807449,170.185974,158.763657,141.466125,126.838036,126.829773,122.829773,122.482666,123.135559,123.400017,136.598373,156.780182,175.515717,187.953720,198.424789,197.755371,182.135544,159.804977,138.242996,126.763657,123.879356,119.490929,89.526466,73.906639,89.647957,105.416550,77.375229,37.518204,15.364481,10.862828,13.264480,9.583487,11.277700,12.112411,8.447944,2.732236,1.457026,2.447936,1.233886,0.740497,0.315703,0.613224,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.155000,4612805.550000,7000,2905,104.270264,181.949600,175.446304,163.895050,146.380188,132.024811,132.876053,129.719025,128.148773,130.942169,128.685974,140.661179,159.688431,177.556198,189.316528,199.299179,198.373566,182.381821,158.993393,138.042999,126.505806,122.365311,118.472740,87.854568,71.681007,87.051254,103.364479,76.992584,36.647125,13.977702,10.770267,10.918199,9.410759,10.215715,10.662824,6.779347,1.290084,1.235538,1.756200,1.286778,0.800001,0.014876,0.074380,0.419009,0.809091,0.000000,0.000000,0.000000,1.216529,0.000000 -602145.355000,4612805.550000,7016,2905,109.481010,185.068604,178.975204,165.396698,146.264481,131.498367,132.498367,128.994232,128.487625,129.738037,129.159531,140.735550,160.696701,179.572739,190.258682,201.605789,199.605789,183.564468,159.126450,138.837204,125.771088,122.911583,117.572739,87.291748,72.300026,85.853737,103.176048,77.308289,37.242172,14.319026,10.688449,12.023983,9.697537,10.619852,10.701667,6.182655,1.657854,0.980994,1.008266,0.500828,1.093390,0.100000,0.000000,0.077686,0.000000,1.357851,0.000000,0.641322,0.000000,0.000000 -602147.955000,4612805.550000,7029,2905,111.416542,186.380188,174.520660,161.677689,143.264465,131.181824,131.016541,126.892570,127.380173,128.834717,127.677696,139.983475,158.702484,177.289261,189.338852,199.173569,197.892578,181.611588,159.165283,136.107452,124.495872,121.669426,116.181824,85.842987,71.958694,87.016541,102.942154,75.975220,37.917374,14.718199,10.562001,10.711585,7.935550,8.219022,8.500014,5.047116,1.491738,0.347935,0.304959,0.000000,0.001653,0.000000,0.035538,0.348761,0.000000,0.000000,0.000000,0.958678,0.000000,0.000000 -602152.355000,4612805.550000,7051,2905,115.143822,169.172745,165.189270,159.800842,141.412415,125.379349,123.172737,120.610756,118.395882,120.900009,118.759514,129.602493,146.949600,165.536377,177.114899,185.197540,184.478531,170.346298,148.263657,127.734718,116.197533,112.924805,107.809113,80.420670,63.957870,81.131416,98.123161,73.685135,33.032253,12.163653,9.800846,6.410753,6.321503,7.100838,7.010756,2.390088,0.334711,0.376034,0.072727,0.006612,0.264463,0.092562,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.955000,4612805.550000,7074,2905,111.242989,161.276031,164.829758,158.581818,141.953735,128.738861,125.813232,123.143814,121.408279,122.614891,120.978523,130.714066,148.540497,165.457855,176.218185,186.796692,185.325623,171.887604,149.011566,129.904144,117.416542,114.143814,108.672737,82.069443,66.350433,84.705803,100.763649,74.722336,36.970272,13.274398,9.879357,7.574391,8.048775,8.052905,6.648773,2.723144,0.195042,0.447108,0.270249,0.131405,0.000000,0.085124,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.355000,4612805.550000,7101,2905,103.659508,159.940506,166.907440,155.477692,138.676041,125.114059,123.221497,119.419838,117.593391,119.361992,117.444633,128.824799,144.601654,161.824799,172.890930,183.733902,181.733902,168.609924,146.345459,126.461166,114.328934,111.180168,104.981827,79.419838,64.791756,80.444633,97.130585,72.915726,33.841343,13.013240,9.543820,6.391745,6.680179,7.005797,6.799185,3.037196,0.336365,0.083471,0.191736,0.065290,0.000000,0.000000,0.538844,0.277686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.355000,4612805.550000,7116,2905,105.351257,162.723145,165.756195,157.995865,138.938019,126.673569,123.334732,120.979362,118.929779,120.516556,118.962837,130.582657,147.243805,163.814056,175.714874,185.177689,183.855377,170.020660,149.177689,128.450424,116.665314,112.425644,107.772751,80.723167,66.260353,81.549614,98.078537,72.871925,35.202496,12.590101,9.797540,7.155382,7.747121,8.860344,7.163649,1.921492,0.976861,0.021488,0.234712,0.235538,0.084298,0.115703,0.179339,0.455372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602167.955000,4612805.550000,7129,2905,113.780174,165.507462,162.879364,154.912415,138.507462,127.102493,124.193398,121.548775,119.366951,121.449600,119.714058,129.375214,147.565308,162.986801,175.862823,184.945480,183.689270,170.259521,149.218201,128.284302,116.193398,112.862823,106.854553,79.672737,64.755394,82.507446,96.862823,73.441345,33.771919,13.590100,9.714069,5.950422,6.131419,5.696706,6.897532,1.722317,0.973555,0.300827,0.243802,0.000000,0.132232,0.000000,0.243802,0.000000,0.000000,1.448761,0.000000,0.000000,0.000000,0.000000 -602172.355000,4612805.550000,7151,2905,101.684311,156.907471,164.171936,152.006638,138.791763,125.568611,121.370262,119.072739,116.618195,118.709106,117.998360,128.155380,144.973572,160.229797,171.362000,182.246307,179.874405,167.940536,146.353745,125.882660,114.742165,110.411583,104.163651,78.899185,63.709114,79.923981,96.254562,70.709106,32.560349,13.497538,9.469441,5.477695,6.183484,7.697533,6.492573,2.500004,0.639670,0.081818,0.140496,0.166943,0.000000,0.061984,0.687604,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602177.555000,4612805.550000,7177,2905,93.762825,157.166122,163.736374,149.802490,135.736359,124.661995,120.728104,118.240501,116.248764,118.562813,116.876862,128.025620,143.719849,160.124802,171.124802,181.587616,180.670258,167.843811,145.290100,123.538033,113.190910,109.728111,104.918198,78.612419,63.364483,80.662003,93.455391,68.554565,31.620680,11.729770,9.538036,5.396704,5.890923,6.520673,5.759515,1.932235,0.646282,0.041322,0.256199,0.206612,0.000000,0.122314,0.307438,0.000000,1.477686,0.000000,0.000000,0.000000,0.000000,0.000000 -602183.355000,4612805.550000,7206,2905,87.316544,150.349609,164.184326,153.448776,140.498367,128.060333,125.804138,121.465294,121.258682,121.605789,121.423973,132.589264,147.878540,163.754562,175.490082,184.324799,184.589279,172.919846,149.680191,130.159515,119.200836,115.275215,109.572731,84.283485,69.432251,84.539680,97.622322,72.093407,35.176056,14.462828,9.961176,5.547945,7.932245,7.069433,6.827285,2.166120,1.327274,0.000000,0.222314,0.000000,0.000000,0.000000,0.164463,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.155000,4612805.550000,7240,2905,89.544640,148.238861,157.999191,151.131424,136.147949,127.329765,122.230591,120.123154,116.974388,118.346291,117.742989,129.073563,145.742996,161.809113,173.205811,181.900024,182.098373,170.420685,147.503326,128.709930,116.528107,113.933067,106.627281,81.883484,66.966133,82.858688,99.247116,75.652077,36.131424,12.766958,9.693408,3.667777,7.851256,6.107451,7.467780,2.280170,0.281819,0.034711,0.000000,0.050414,0.000000,0.000000,0.384298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602193.555000,4612805.550000,7257,2905,78.667786,148.634720,156.072739,149.097534,134.733902,122.469437,119.031418,115.659515,113.147125,113.948776,113.775223,123.238029,141.039673,157.485962,167.312408,177.180176,176.163635,164.312408,143.320663,123.386795,112.403320,107.254562,101.345467,75.543816,62.469444,79.229767,97.386795,73.775223,33.436386,12.401670,9.213243,5.000009,6.623981,6.150425,6.742160,2.490915,0.336365,0.009918,0.037190,0.099174,0.000000,0.000000,0.000000,0.258678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.955000,4612805.550000,7279,2905,78.933899,141.768600,155.281006,144.504135,131.314072,121.388443,117.446297,114.272743,111.809937,112.115715,112.190102,122.939682,139.121521,154.443817,165.295074,175.113251,173.328125,162.220688,141.559509,122.385963,110.261993,106.104965,100.790924,74.493408,60.617378,78.873573,97.088448,74.245476,33.104977,12.606629,9.162829,4.624803,6.054559,6.128939,5.021498,1.844633,0.144629,0.513224,0.148761,0.034711,0.000000,0.000000,0.204959,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.155000,4612805.550000,7315,2905,90.095055,143.028931,159.640503,148.475204,132.409103,121.086792,116.979355,112.739685,111.450432,109.574394,110.078529,120.359520,138.194214,155.128098,164.772720,174.392578,172.731400,160.045456,140.202484,120.103325,107.971092,104.797539,98.227287,72.458694,58.384323,75.095055,96.847122,75.128113,36.062000,12.876049,8.929771,5.114883,7.435553,7.409930,6.935548,3.135543,0.696696,0.423968,0.495869,0.271901,0.429752,0.353720,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.555000,4612805.550000,7347,2905,92.470261,140.660355,154.189270,148.842163,131.015717,122.362823,116.552902,110.602493,109.643814,108.015717,107.172737,117.858688,136.214066,151.379364,162.809113,172.387619,169.404144,156.883484,138.164490,117.966125,107.561165,100.933067,95.445465,69.652077,57.081833,75.395882,97.900009,73.668610,36.486797,13.872746,8.676879,3.852901,6.604973,9.280180,5.723153,3.083477,0.580167,0.000000,0.000000,0.093389,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.355000,4612805.550000,7381,2905,80.030586,137.524811,153.136383,142.045471,127.238022,115.502487,109.552078,105.940506,103.196709,103.014893,102.552078,112.965302,131.227280,145.731415,157.268616,166.888443,165.103317,152.334732,132.541336,113.568611,99.725632,96.114067,89.072746,64.907455,51.403324,71.890923,93.932243,71.246292,32.481838,11.287619,8.097540,5.195050,6.600840,6.699188,6.946291,2.030583,0.645456,0.449588,0.360331,0.116529,0.091736,0.095868,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602226.555000,4612805.550000,7422,2905,71.357880,138.465302,157.019012,145.118195,128.688446,119.704971,115.746292,110.068611,108.514893,107.200844,107.374397,118.176048,136.291748,150.647110,161.597534,171.589264,169.283478,157.432236,136.787613,116.109932,105.151253,100.035553,94.572739,68.052086,54.291756,74.300018,97.209106,73.713234,34.043819,11.733902,8.597540,4.505795,5.990922,5.842988,6.886790,2.647940,0.254547,0.375207,0.133885,0.066943,0.057851,0.162810,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.755000,4612805.550000,7458,2905,78.299194,149.563660,161.514069,149.621521,133.745468,123.125633,117.514061,115.299187,112.505798,111.538849,111.861168,120.819847,139.844650,154.489288,166.009949,175.844650,173.828125,161.646301,140.464493,120.514061,108.142159,103.910751,98.290916,71.952072,58.423161,76.927292,96.596703,72.844643,37.365307,13.609935,8.935556,6.446291,8.211586,7.439683,7.080177,3.509098,0.397522,0.158678,0.133885,0.033058,0.000000,0.069422,0.450414,0.000000,1.501653,2.099174,0.000000,0.000000,0.000000,0.000000 -602239.155000,4612805.550000,7485,2905,89.484322,139.740509,156.095886,146.360336,131.509109,122.418198,117.319023,112.996704,110.319023,110.806625,110.128937,121.095879,139.104141,152.897537,165.236374,173.575226,171.740509,157.839676,136.533890,117.319023,106.095879,102.699188,96.690926,71.335548,58.021503,75.442986,92.203316,68.814888,29.882666,10.052083,8.790102,4.877694,5.944643,6.477697,6.270257,1.750418,0.447935,0.176034,0.028926,0.119835,0.000000,0.000000,0.062810,0.573554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.555000,4612805.550000,7522,2905,77.801666,147.545471,159.231400,147.115707,132.462830,122.206627,119.033073,114.851257,112.900841,113.537209,112.314064,122.950432,141.123962,156.280991,167.537201,175.628113,173.495880,162.247955,140.148758,120.247948,109.000015,104.413239,98.363655,74.165306,60.371922,77.214890,92.900841,70.347122,32.677708,11.523158,8.942168,4.412406,6.406627,6.319021,6.131417,2.706618,0.605786,0.266943,0.118182,0.081819,0.000000,0.066942,0.000000,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602255.555000,4612805.550000,7567,2905,91.396721,146.611588,160.239685,149.165298,133.966949,123.429764,118.942154,116.024803,112.727280,112.396706,111.363647,122.785133,140.330597,156.355392,167.471085,175.429749,173.636368,161.347122,139.842987,119.702484,108.818192,104.107445,98.636383,72.446297,59.206631,76.264488,95.404976,69.404984,31.900845,12.545474,8.966962,6.395877,5.507453,8.097533,6.965302,2.749594,0.329754,0.131405,0.133885,0.019835,0.000000,0.000000,0.054546,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.355000,4612805.550000,7596,2905,96.564484,150.655380,159.316528,151.977692,133.167770,122.448776,119.919838,114.341331,112.142990,111.614067,111.903320,123.316536,140.242157,156.184311,166.374390,175.399185,174.498367,161.539673,137.911575,119.118187,108.283485,104.374397,99.118195,70.919861,58.870266,76.845474,94.432243,70.911591,34.002499,11.433903,9.010762,6.774391,7.875219,9.092576,5.861993,3.314883,0.724795,0.086778,0.191736,0.368596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602268.755000,4612805.550000,7633,2905,86.079353,148.476044,159.219849,146.195053,133.319016,120.938858,116.790092,112.393402,109.500839,110.087616,109.707451,120.699188,138.095886,154.195053,165.360336,175.128937,173.120667,159.352081,138.327286,117.418198,107.021500,101.773567,95.963646,70.079353,55.814896,74.509102,93.872742,70.252907,32.638866,12.895886,8.723986,4.266124,7.685966,7.875221,6.674393,2.057030,0.355373,0.192563,0.082645,0.069422,0.206612,0.000000,0.074380,0.252066,0.000000,0.000000,3.752066,0.000000,0.000000,0.000000 -602273.755000,4612805.550000,7658,2905,92.857872,149.643005,159.353745,150.353745,131.601669,121.056213,115.750427,112.618195,109.279350,108.841339,107.659515,119.700844,137.601669,154.659531,164.370270,175.378510,172.039658,158.072754,137.816559,117.601669,105.527290,101.543816,94.345467,68.097534,53.973572,72.816551,94.403320,72.006638,32.130596,10.619024,8.576880,5.888441,5.368610,5.267782,5.956208,2.671081,0.762813,0.243802,0.037190,0.047108,0.022314,0.061984,0.228099,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602278.355000,4612805.550000,7681,2905,85.604973,149.712387,159.034714,150.340485,132.307449,119.836372,116.638023,114.373573,110.555389,111.398361,109.497536,120.687622,139.679337,154.514038,165.968628,176.555405,174.803329,160.687622,139.166931,118.638023,108.067787,102.109108,95.745476,71.076050,57.332249,75.290924,95.348778,72.100845,33.753738,13.631423,8.704151,7.599184,8.023156,7.995881,6.986789,4.127281,0.567770,0.451240,0.000000,0.020661,0.000000,0.000000,0.047934,0.585124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602285.555000,4612805.550000,7717,2905,87.504982,151.918198,159.232239,148.719849,132.141342,120.215721,116.769440,112.843826,109.893410,109.199196,109.033905,120.471924,138.736374,154.281830,165.331421,175.025635,172.480179,159.116547,137.133072,116.637215,105.637215,101.381012,94.918205,68.918205,56.728123,74.223991,94.852089,69.381012,32.091755,11.682659,8.628945,4.894223,6.163651,8.033071,6.385961,2.672732,0.434712,0.168595,0.243802,0.043802,0.026447,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.355000,4612805.550000,7736,2905,88.725639,153.535583,160.626465,152.436401,134.097534,122.733902,119.056213,114.444641,111.552078,111.634727,110.271088,122.031418,140.436386,156.411606,168.874405,177.345474,174.535553,161.171921,138.246323,119.700844,107.138855,104.353737,97.163651,70.750427,56.973576,74.395058,95.155388,71.700844,33.436386,12.275226,8.833076,7.400012,7.509932,8.978526,7.355386,3.299179,0.395869,0.331405,0.126447,0.066943,0.043802,0.104133,0.142975,0.603306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.555000,4612805.550000,7767,2905,86.947952,151.584320,158.947952,147.691757,132.303329,119.047119,116.981003,111.377701,108.923157,107.981010,107.840515,119.344635,137.576065,153.939697,165.328125,174.799194,172.476883,157.319855,136.956207,117.088440,104.997536,101.873573,93.972748,67.981018,55.394238,72.708282,93.700020,70.708282,32.104977,11.901670,8.542994,6.507446,6.814890,6.438854,5.831416,1.739673,0.797522,0.123967,0.000000,0.058678,0.014876,0.000000,0.347108,0.203306,0.000000,0.000000,0.000000,1.593389,0.000000,0.000000 -602302.955000,4612805.550000,7804,2905,94.117363,155.406616,159.191742,146.861160,129.571915,117.795052,115.704140,111.001663,107.315712,106.976868,105.555382,117.150421,135.629776,151.877701,164.290939,173.481003,170.323990,156.274384,135.547119,116.894226,103.481003,99.241333,91.563644,66.018204,52.431427,71.497528,93.985130,70.059525,33.018200,11.521503,8.323986,7.556209,6.370262,6.066954,6.336376,2.535541,0.443802,0.393389,0.162811,0.084298,0.116529,0.000000,0.654546,0.000000,0.000000,0.000000,0.000000,1.220661,0.000000,0.000000 -602306.355000,4612805.550000,7821,2905,88.979355,153.640533,156.855408,147.392593,132.219009,117.632240,115.392570,111.103325,107.995880,107.417374,105.805801,117.805794,136.028946,152.136398,163.450439,173.549622,171.896729,157.615738,135.698364,115.557861,103.880180,100.045471,93.045464,67.078529,54.524811,72.500015,93.847115,71.929771,33.078529,12.123158,8.458697,6.398357,6.494229,7.492574,6.868608,2.617361,0.674381,0.444629,0.034711,0.144629,0.000000,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602309.755000,4612805.550000,7838,2905,82.084312,155.472733,161.414886,147.960342,130.712418,117.423157,116.034729,111.786797,109.894234,109.390099,107.712418,118.274399,137.158691,153.547119,165.935547,175.960342,173.340500,156.902496,136.340500,115.795059,104.902496,100.092583,94.018196,67.629776,54.497543,72.885971,93.216545,70.481010,31.059525,11.387620,8.547127,6.780174,5.962824,5.974391,7.096705,2.383476,0.285951,0.233885,0.035537,0.021488,0.000000,0.000000,0.197521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602313.755000,4612805.550000,7858,2905,83.573570,164.689285,162.276062,151.193420,136.532257,121.854576,120.028130,115.838043,113.763664,115.028130,111.689285,125.119034,142.003342,158.755402,169.102478,180.044632,175.292572,160.168625,139.243011,119.639694,107.449615,103.267799,99.490936,71.069443,57.127296,75.557053,93.978539,69.821518,33.259525,11.745471,9.044647,7.640507,6.938030,7.165301,7.784309,3.136369,1.214878,0.649588,0.236364,0.214877,0.000000,0.000000,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602317.755000,4612805.550000,7878,2905,107.710762,163.223145,159.016525,149.297516,132.206635,118.603333,116.843002,112.991760,111.115730,111.471100,107.247955,120.380188,139.314056,156.280991,167.471069,177.380173,173.165283,158.132233,137.206604,117.983498,105.462837,101.595055,95.818199,69.165314,55.173576,75.644653,95.173569,71.454567,32.165306,11.728944,8.710763,7.071912,6.970262,7.909103,7.827284,2.715708,0.464464,0.213224,0.114877,0.000000,0.000000,0.000000,0.000000,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602324.355000,4612805.550000,7911,2905,95.408295,160.862823,155.755386,150.457870,132.474396,116.623161,113.978531,110.135559,108.970268,110.383492,105.590103,118.119026,136.375229,153.887619,165.358704,175.813248,171.763657,155.780182,134.995056,116.358696,103.309113,99.242996,93.127289,66.061180,53.342167,72.193405,91.995064,69.829773,32.722332,11.669437,8.466135,7.786787,6.465304,8.406626,6.337202,3.458683,0.268596,0.000000,0.048760,0.072728,0.029752,0.000000,0.000000,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602327.955000,4612805.550000,7929,2905,99.480186,170.678528,159.174393,151.794235,131.116547,117.860352,115.579361,110.471924,107.149605,110.174400,107.422333,118.504982,135.785965,152.885132,165.843811,175.116547,170.992569,154.372742,134.794235,114.612419,103.381012,98.926468,92.372749,66.587624,53.100021,73.190933,94.273575,69.182663,33.579357,12.495886,8.397540,11.044642,7.103319,8.608278,6.370259,2.836370,0.861160,0.145455,0.000000,0.028100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602333.955000,4612805.550000,7959,2905,89.959526,160.463654,158.471909,149.662003,132.414078,117.761177,115.207458,112.033905,108.430603,111.645477,105.562828,117.810768,136.496704,154.728119,165.752899,176.893402,172.868607,155.554565,135.389282,116.802498,104.381012,99.653740,94.372749,66.835556,53.075226,73.926468,94.860352,70.562828,32.356216,12.816545,8.579359,10.154558,6.845470,8.704972,6.956210,3.138848,0.533059,0.477687,0.077686,0.031405,0.138843,0.000000,0.328100,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602337.555000,4612805.550000,7977,2905,104.747124,162.375229,157.036377,150.771912,130.788452,118.862831,114.391754,110.242996,109.581841,111.433075,106.300842,119.036385,137.325638,154.647934,168.416550,177.953720,173.945465,156.689255,136.234726,116.267792,104.780182,99.722336,93.400017,66.904144,54.226471,73.441353,94.854568,69.771927,34.358700,13.075225,8.490928,9.133070,8.156214,7.912410,7.042987,3.680171,0.752894,0.180992,0.040496,0.385125,0.000000,0.000000,0.098347,0.201653,0.000000,0.000000,0.000000,0.000000,1.076860,0.000000 -602342.355000,4612805.550000,8001,2905,111.552895,162.218185,161.185120,151.433060,130.623138,118.499176,114.755379,109.325623,108.251244,111.135544,104.928932,115.970253,134.904129,152.069427,164.375214,175.176865,170.267776,152.928925,134.168594,113.895874,102.449593,97.466118,91.490913,64.333900,51.912411,73.457863,91.912399,68.978523,32.397541,12.261173,8.317374,10.446293,5.155385,6.505797,7.304144,2.418187,0.670251,0.087604,0.129753,0.068596,0.037190,0.077686,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,1.114876,0.000000 -602350.155000,4612805.550000,8040,2905,106.518196,145.625641,140.096725,130.509933,116.262001,105.625641,100.162827,96.757866,93.460350,95.030594,93.890099,104.567787,123.551254,140.071930,152.534729,162.468628,159.253738,146.361176,125.385971,105.600845,94.419029,89.295059,82.700027,58.394238,44.038860,62.088451,84.989281,65.766136,27.906630,11.204150,7.518201,4.511579,6.485964,7.205799,6.456210,1.479344,0.345456,0.131406,0.218182,0.414877,0.104959,0.000000,0.147108,0.399174,0.000000,0.000000,0.000000,1.614876,1.907438,0.000000 -602362.955000,4612805.550000,8104,2905,110.181839,135.991745,139.429764,127.735565,114.562004,103.454559,98.768608,95.958694,94.206627,94.570267,94.504150,104.933899,123.925644,139.950424,153.644638,164.305801,162.148773,148.107452,124.909119,105.495880,94.446297,89.330597,84.363655,59.991756,44.801674,63.000019,84.297539,65.933899,26.928944,10.778530,7.669441,5.752903,7.039682,8.502490,7.829764,4.423148,0.769425,0.368596,0.240497,0.114876,0.128100,0.000000,0.054546,0.613224,2.167769,0.000000,0.000000,0.000000,0.000000,0.000000 -602372.955000,4612805.550000,8154,2905,120.345467,136.642975,132.923981,122.849602,106.411591,95.849602,92.353737,89.775223,88.841339,89.932243,89.957039,101.163651,120.998360,138.519012,150.816528,159.163635,156.461166,141.122314,120.320679,98.568611,89.568611,85.717369,80.890930,57.345478,41.923988,59.882668,80.403320,60.775230,26.412415,8.066958,7.353738,5.890093,6.947119,6.890092,6.503316,3.110751,0.985126,0.527275,0.117356,0.225621,0.037190,0.000000,0.000000,0.177687,0.000000,0.000000,0.000000,1.476860,0.000000,2.937190 -601623.155000,4612795.550000,4405,2955,143.177704,169.834732,151.975220,137.595062,120.363655,106.834724,106.479355,103.900841,103.322327,104.115715,103.247948,115.132248,132.231415,150.603317,161.363647,173.793411,171.016541,158.677704,135.355392,117.107452,105.033073,100.909103,95.909103,68.049614,50.024815,66.090927,80.983490,61.181839,26.347128,11.305800,8.719028,14.076875,10.293403,11.959522,11.362826,9.238028,2.048764,1.409919,0.179340,0.105785,0.000000,0.000000,0.044628,0.000000,1.971075,1.829752,5.483472,1.553719,0.000000,0.000000 -601629.355000,4612795.550000,4436,2955,117.100006,158.500839,145.955383,133.277695,119.401657,106.128929,105.170258,102.310760,101.310760,104.153725,101.823151,114.310745,133.203308,150.294250,161.575226,170.781830,170.120667,157.145462,135.509109,115.170250,103.757027,100.517365,92.872742,64.938858,49.649605,65.781837,81.211578,59.839687,24.510761,8.214892,8.442995,10.533074,9.115717,7.779353,8.774394,4.993397,0.352894,0.322315,0.101654,0.049587,0.087604,0.000000,0.000000,0.000000,2.231405,0.000000,1.618182,1.363637,0.996694,1.979339 -601638.755000,4612795.550000,4483,2955,101.252907,156.701675,149.023987,138.825638,124.404144,111.338028,110.428940,108.057037,105.023979,108.528107,107.470261,118.189270,136.643814,153.949600,165.329773,175.371094,173.486801,161.238861,137.817368,117.387611,104.866951,101.883484,95.536377,67.544647,52.065308,64.338036,83.015724,60.503323,26.592583,11.823985,8.685143,7.831417,7.966956,9.592577,8.630593,2.985954,0.576861,0.274381,0.016529,0.047108,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,1.785951,5.916530,2.104959,0.000000 -601650.355000,4612795.550000,4541,2955,99.243820,148.773560,147.963654,140.500839,122.004974,112.418198,112.550423,107.203316,106.161995,108.228111,108.219849,120.740509,138.690918,155.054565,166.715714,175.889267,173.798355,161.980179,138.872742,118.757034,106.938858,104.566956,97.690926,69.178535,54.112423,67.277710,83.839691,61.971928,27.814896,12.139687,8.881012,8.342160,8.481008,7.335550,7.551253,3.733064,0.717357,0.056199,0.128099,0.061157,0.409919,0.038017,0.398347,0.000000,1.129752,0.000000,0.000000,0.869422,2.148761,0.000000 -601656.155000,4612795.550000,4570,2955,110.418198,143.406616,149.761993,135.282669,120.919029,110.406631,108.290924,105.373573,104.720680,105.927292,105.257866,117.803322,136.208267,153.671082,164.431412,173.224808,172.852905,160.142151,137.836380,117.596710,105.059525,101.191750,95.745476,67.059525,52.001671,65.894234,82.340523,61.943821,27.233076,10.296712,8.704151,6.340507,8.233073,7.643814,8.568607,3.684304,0.853720,0.247934,0.020661,0.177686,0.023141,0.000000,0.488430,0.000000,1.061984,0.000000,0.000000,0.000000,2.011570,0.000000 -601660.355000,4612795.550000,4591,2955,103.481842,151.910751,148.249603,136.009949,124.522339,112.588455,110.175232,108.282669,106.423164,108.671097,108.704155,119.547134,138.720688,154.811584,167.381851,175.472748,176.150436,162.365311,139.216553,119.266144,108.249611,104.514076,98.563660,69.555397,54.249607,67.654564,83.679367,62.315723,27.722334,13.595884,8.960349,9.006625,8.816544,9.070262,7.946296,4.038023,1.185953,0.324794,0.775208,0.631406,0.375208,0.010744,0.177686,0.000000,1.076860,0.000000,0.000000,0.000000,1.015703,0.000000 -601666.155000,4612795.550000,4620,2955,108.437210,152.166931,147.497513,135.671082,121.547119,111.423157,107.910759,106.852913,104.183487,107.910759,106.175224,118.001663,136.877686,152.761978,164.530594,173.067764,173.166931,160.224808,137.076019,117.414886,105.481010,102.414894,95.018196,68.935562,51.257874,68.357048,82.770271,61.497547,28.443819,12.038860,8.638037,8.782656,8.145469,9.053733,8.562823,2.738850,1.480994,0.257852,0.188431,0.332232,0.000000,0.060331,0.000000,0.000000,0.000000,2.079339,1.985124,0.000000,1.902480,0.000000 -601675.355000,4612795.550000,4666,2955,123.555389,149.354568,148.247131,135.693405,121.751259,112.172737,109.891747,107.685135,107.238853,108.106621,108.643814,119.974388,137.949600,153.594238,165.850433,175.800842,174.428940,161.602493,138.412415,116.957863,106.577698,102.387611,96.263649,69.767776,53.304974,66.974388,82.230591,61.007454,28.800846,11.766961,8.751259,8.054559,7.697536,9.161170,10.137204,4.128107,0.805787,0.061984,0.059505,0.101653,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612795.550000,4715,2955,103.957870,145.440521,147.093414,134.052094,121.118202,111.052086,107.696716,105.853745,105.068619,106.225639,106.903328,118.019028,136.333084,151.638870,163.663666,173.465317,171.539688,160.853745,136.465317,115.217377,104.721512,101.275230,93.845474,67.060349,51.382664,67.035553,80.382668,58.357868,25.853737,10.391753,8.531425,6.630590,5.957865,7.387615,6.647945,2.454551,0.329753,0.211571,0.176034,0.000000,0.000000,0.000000,0.120661,0.000000,0.000000,0.973554,0.814876,1.545455,0.000000,0.000000 -601689.355000,4612795.550000,4736,2955,111.340508,144.744644,147.323151,136.240494,120.447121,110.810768,109.926468,106.339691,105.918205,106.868614,108.124817,118.273567,137.017365,152.785965,165.066940,173.504959,173.240494,159.571075,138.785965,116.306625,105.347954,101.670265,95.463654,68.116547,52.265308,66.025642,80.777710,59.934731,26.977705,11.566132,8.678533,7.819846,6.794228,6.322324,6.834723,4.265296,0.811572,0.218182,0.115703,0.077686,0.107438,0.019835,0.171901,0.000000,2.008265,2.936364,0.000000,2.205786,0.000000,0.000000 -601693.755000,4612795.550000,4758,2955,111.572739,138.852905,144.720673,133.497528,119.538849,109.489273,107.828117,104.885971,104.373573,104.456215,105.976875,117.042984,135.109085,151.224808,162.704147,171.828125,170.704163,158.621490,135.307434,113.762001,102.555389,100.233078,93.654564,65.307457,48.505802,63.885967,79.208282,58.447952,25.290930,9.918199,8.514069,4.892572,5.766129,7.095880,8.209104,2.413228,0.301654,0.176034,0.034711,0.225620,0.034711,0.000000,0.000000,0.000000,0.000000,2.209918,0.853719,0.000000,0.000000,0.000000 -601699.955000,4612795.550000,4789,2955,91.312401,142.615723,144.615723,135.376053,121.566132,112.161171,108.053734,106.574394,105.152908,107.566132,107.508278,117.458694,136.409103,152.318192,165.045471,174.020676,171.508286,160.004150,136.904968,115.574394,104.450432,99.690102,94.954559,67.334732,50.871922,65.880188,81.599190,59.425640,26.838863,10.040512,8.632250,5.278522,5.785138,7.366129,6.985137,2.618187,0.329753,0.007438,0.023141,0.000000,0.186777,0.000000,0.192562,0.000000,0.999174,0.000000,0.000000,0.698347,0.983471,0.000000 -601709.155000,4612795.550000,4835,2955,108.975220,146.329773,147.131424,138.023987,122.949608,112.238861,110.280182,107.900017,107.040512,107.668617,108.346298,119.354568,137.784317,153.833908,165.395889,175.147934,172.916534,162.462006,137.767792,116.759521,105.875229,101.924812,95.172745,68.114891,51.404152,68.404152,83.800842,62.313244,29.640514,11.573569,8.652085,7.912409,8.819023,6.311582,8.858691,3.814884,0.692564,0.423142,0.243803,0.072728,0.000000,0.214878,0.000000,0.761984,0.000000,1.908265,0.000000,0.000000,0.000000,0.000000 -601712.355000,4612795.550000,4851,2955,104.557869,142.687592,144.530579,134.819839,120.563644,112.092575,107.282654,105.638023,104.852905,106.778519,107.067780,117.133896,135.993393,152.067764,163.679352,172.042969,171.018173,159.249603,136.307449,113.927284,103.604965,99.216537,93.018188,66.158699,50.671097,65.109108,78.067787,59.290928,27.133902,9.817370,8.456217,5.642986,5.832243,6.497530,5.864473,2.123971,0.565291,0.161158,0.113224,0.111570,0.000000,0.080992,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.555000,4612795.550000,4867,2955,104.358696,144.865295,145.956223,136.179352,121.047127,109.121506,107.658699,105.162827,104.402496,106.642166,105.452087,116.823982,134.435547,150.493393,163.146286,171.493393,169.352905,158.063644,135.113235,114.964478,102.014069,99.030594,92.245476,64.452087,48.253738,64.832253,79.518211,59.857044,24.162828,11.301669,8.385970,5.394225,5.952077,8.378526,4.511580,3.357857,0.323968,0.345455,0.175208,0.046281,0.098347,0.009091,0.000000,0.242149,0.000000,1.816529,2.813224,0.000000,0.000000,0.000000 -601718.955000,4612795.550000,4884,2955,107.464470,146.609940,149.271103,136.262833,122.089279,111.849609,109.444649,107.378532,105.717377,106.791756,107.089279,117.494240,136.676056,152.039688,164.304138,171.609924,170.758682,159.899185,136.618210,115.147133,103.436386,99.709114,93.254570,66.180183,48.304150,66.362000,80.378532,59.502499,26.378531,11.749604,8.477704,7.575218,7.731419,7.775218,6.502490,3.452072,0.482646,0.117356,0.254546,0.104133,0.000000,0.341323,0.530579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.684298 -601722.355000,4612795.550000,4901,2955,96.939682,147.819839,147.712418,136.745483,122.786797,114.530586,110.538849,107.720673,107.522324,107.968605,108.621498,118.067787,136.315720,152.100845,162.571915,172.481018,171.059525,159.257874,136.216537,115.580177,104.894226,100.249596,92.745476,65.166962,49.191753,66.142166,81.613235,60.233070,27.183493,11.965305,8.431424,6.718193,7.110757,8.076045,6.581830,2.571079,0.671076,0.007439,0.033058,0.119008,0.000000,0.059504,0.000000,0.000000,0.995868,0.000000,0.000000,0.000000,1.041322,1.892562 -601727.555000,4612795.550000,4927,2955,97.519020,149.067795,145.191757,136.819855,122.067787,112.902496,107.266136,104.580185,103.439690,105.414894,105.935555,116.216545,134.423157,150.596725,161.943832,171.109116,168.745483,158.671097,134.902496,113.894234,101.348778,98.464478,91.290924,64.695885,47.646297,63.836384,79.381836,58.257874,25.629772,10.847950,8.299193,6.055383,5.842988,6.583481,5.739680,3.150419,0.414877,0.079339,0.089257,0.067769,0.046281,0.019835,0.000000,0.480992,2.008265,0.000000,0.000000,0.744628,0.000000,0.000000 -601734.155000,4612795.550000,4960,2955,109.335548,144.438019,140.504135,132.793396,117.652908,106.884323,102.619858,100.892586,99.509109,100.533905,101.385147,110.996712,129.528931,145.421494,157.495865,165.462814,165.115707,152.504135,129.371902,108.479362,96.471100,92.950439,87.727295,59.652912,42.479362,60.363651,75.247955,55.661179,21.383490,7.728938,7.975226,4.642159,5.277696,5.484308,5.439679,2.169425,0.633059,0.202480,0.000000,0.185124,0.024794,0.000000,0.133884,0.000000,0.000000,0.979339,0.000000,0.000000,0.000000,0.000000 -601739.955000,4612795.550000,4989,2955,104.919861,146.375214,143.052902,135.102493,119.854568,111.168617,106.690102,104.565308,103.879356,104.821510,105.317375,115.672745,132.829773,149.995041,161.755371,170.036362,168.276031,156.738846,133.763657,112.127289,99.904976,96.053734,90.772743,63.450428,46.268616,62.326466,78.557045,57.433903,25.566133,10.223985,8.252086,4.857035,7.381005,6.257862,6.832243,2.183476,0.686778,0.398348,0.382646,0.125620,0.024794,0.047934,0.000000,0.000000,0.106612,0.000000,0.745455,1.480992,0.000000,0.000000 -601742.555000,4612795.550000,5002,2955,105.761169,144.276047,148.003326,137.085968,121.218193,110.276047,107.532242,106.656212,104.242989,105.656212,106.094223,117.052902,135.201660,151.085968,162.400024,172.623154,168.705811,158.350433,134.590088,114.069435,101.771912,98.019844,91.309105,63.457867,46.697536,62.292576,79.523979,60.490925,26.494236,11.278528,8.300846,4.590091,6.481829,5.800837,6.167779,1.638020,0.824795,0.137191,0.036364,0.084298,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.534711,0.000000,0.000000 -601746.155000,4612795.550000,5020,2955,135.433899,150.869431,146.257858,137.770264,122.737206,111.373573,109.059525,105.753738,105.877701,107.737206,106.704147,117.340515,134.423157,151.505798,164.233063,171.844635,170.042984,159.175217,135.398361,114.125641,102.216545,98.365311,92.290932,64.365311,48.762005,62.761997,79.489281,58.786789,26.004976,11.224811,8.390101,5.071084,6.685964,6.179351,6.128935,3.600006,0.919836,0.131405,0.122315,0.233058,0.000000,0.000000,0.266116,0.000000,1.048760,0.000000,0.000000,1.641323,0.000000,3.902480 -601750.555000,4612795.550000,5042,2955,117.741333,145.185974,147.723160,136.814072,122.326462,111.739685,108.227287,105.318199,104.797539,107.235550,105.971092,116.690102,134.285141,151.450424,163.458694,171.053741,169.516541,158.805801,136.086792,114.210762,101.285141,98.442162,91.136383,64.764481,47.871918,62.392578,79.549606,60.814064,25.951258,9.147950,8.285143,5.283482,6.628113,5.399184,6.476871,2.433062,0.644629,0.299175,0.090083,0.000000,0.000000,0.033884,0.094215,0.000000,0.000000,0.000000,0.000000,2.257852,0.000000,3.974380 -601756.555000,4612795.550000,5072,2955,104.647942,155.504135,149.760330,141.074387,125.231422,114.049606,110.479355,108.834724,107.479355,109.570267,108.809937,118.454559,135.743820,151.776855,165.008270,173.049591,171.454544,159.603302,136.867767,114.958694,102.950432,98.363655,92.272751,64.471100,49.429775,63.446304,81.033081,60.173576,25.099192,11.235555,8.388449,4.086785,6.889270,7.807451,6.010756,3.202485,0.461158,0.131405,0.195042,0.190083,0.110744,0.063637,0.270248,0.000000,0.000000,0.000000,0.903306,0.000000,2.076033,2.019008 -601761.355000,4612795.550000,5096,2955,129.121490,157.053741,149.723160,139.714890,123.772743,112.508278,110.433899,108.078529,107.285141,109.615715,108.623985,118.252083,135.227295,151.946304,164.681839,173.425613,170.979355,160.095062,136.805801,112.673569,101.632248,98.533073,92.409103,65.623985,46.987625,63.623985,77.979355,58.623985,22.781010,9.124808,8.400846,3.375214,6.730591,5.936375,4.053728,1.698351,0.284299,0.000000,0.044628,0.502480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.281819,0.000000,2.178513,0.000000 -601768.355000,4612795.550000,5131,2955,132.753723,157.656219,152.647949,141.185150,127.466125,114.755386,112.771912,109.755386,109.333893,111.325630,110.259514,121.218193,138.069443,154.276047,167.242996,175.300842,175.036377,162.771927,139.160355,117.457863,104.259514,99.664474,94.763649,67.259521,50.011589,64.871094,80.433067,61.044647,26.419855,11.190100,8.614896,4.130585,6.918196,6.674392,7.628111,3.218187,0.457026,0.163637,0.438017,0.000000,0.000000,0.000000,0.000000,0.000000,1.113223,0.000000,0.000000,3.370249,0.000000,2.071901 -601771.955000,4612795.550000,5149,2955,102.184311,165.028107,152.540497,142.647949,127.466133,113.970261,111.937202,110.457863,108.441330,111.606621,109.970261,120.201675,138.945480,156.375214,167.490906,177.218185,174.391739,163.466125,138.160355,116.143822,104.325630,99.160339,94.581833,66.606628,48.540516,63.681011,80.507446,59.862831,24.962004,9.095885,8.598368,3.871083,5.587615,5.590093,5.921499,1.580995,1.242976,0.073554,0.031405,0.163637,0.000000,0.000000,0.268595,0.000000,3.338017,0.000000,0.000000,1.816529,0.000000,0.000000 -601777.955000,4612795.550000,5179,2955,127.356209,167.974380,154.511566,145.040497,129.817368,115.610756,112.181000,110.875221,109.652077,113.536377,111.362823,122.032242,138.941345,157.131409,170.263641,177.379349,174.495041,163.668594,138.652084,117.255386,105.197533,101.288452,94.718201,67.800842,51.561180,65.528122,80.139679,61.073578,27.795061,10.372745,8.610763,4.388439,7.471913,8.640508,7.261168,3.119840,0.857854,0.704134,0.123141,0.000000,0.031405,0.046281,0.000000,0.000000,0.000000,0.000000,0.957025,0.000000,0.000000,0.000000 -601786.155000,4612795.550000,5220,2955,113.127289,160.533890,157.368607,144.162003,129.533890,117.252907,115.971916,112.591759,111.558701,111.980186,111.550438,122.558693,142.327286,158.368607,170.228119,177.657867,177.038025,163.319016,138.641342,118.186790,105.600021,103.302498,97.963646,69.178528,53.897541,67.178535,82.905800,61.120682,27.930597,10.929769,8.905804,7.015715,6.195880,7.364476,6.086789,2.508271,0.165290,0.063637,0.316530,0.000000,0.105786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.032232,1.198347,2.312397 -601788.955000,4612795.550000,5234,2955,108.124802,155.563660,156.910767,143.365311,127.604965,116.695877,113.728935,110.555382,109.943810,111.142159,111.299187,122.588440,141.993408,157.530609,168.795074,177.596710,175.819855,162.596725,137.662842,116.613235,105.629761,102.241333,96.836372,68.993408,53.001671,66.340515,82.910759,59.431423,27.166962,9.751257,8.803326,7.252905,5.561172,8.032247,6.361169,2.396701,0.747109,0.085124,0.042976,0.049587,0.009091,0.000000,0.000000,0.000000,2.289256,0.000000,0.630579,0.000000,0.000000,0.000000 -601793.555000,4612795.550000,5257,2955,103.952904,158.682663,157.186783,142.980164,127.608276,116.600006,115.509094,111.633064,111.112404,112.451248,111.533890,122.732239,141.558670,158.335556,170.153732,177.649597,175.723984,162.046295,137.938843,117.046288,105.294220,103.583481,97.509102,69.319031,53.591755,67.004982,81.484314,60.798367,24.952909,10.238860,8.864483,8.502494,7.403319,7.142162,7.647120,3.263643,0.328100,0.076860,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.125620 -601800.955000,4612795.550000,5294,2955,99.714058,163.933899,157.925629,144.000015,130.057861,117.925636,116.851257,114.347115,111.950424,113.115707,111.785133,124.247948,144.181839,159.884308,171.710754,179.818192,177.404968,162.710754,139.719025,118.033073,105.933891,103.702484,96.727280,70.223160,53.545475,67.388451,82.851257,62.388451,28.628119,11.305802,8.793407,8.872740,8.493404,7.514890,7.559516,3.739677,0.271075,0.458679,0.000000,0.000000,0.011570,0.005785,0.000000,0.000000,0.000000,1.107438,0.000000,2.030579,1.057851,0.000000 -601804.355000,4612795.550000,5311,2955,112.634727,166.715714,159.335556,147.285965,130.583481,118.385139,117.360344,113.765305,113.368607,114.988441,112.765305,125.451248,145.021500,161.864471,172.608276,181.319016,178.368607,163.459518,139.261169,119.219849,107.533897,104.757034,99.600014,70.649597,55.690929,66.881004,84.285965,61.360352,29.244648,12.287620,9.054564,9.070262,7.889271,9.690098,8.519849,3.475213,0.719010,0.299175,0.160331,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.904959,0.000000,0.000000,0.000000 -601807.955000,4612795.550000,5329,2955,120.485130,167.795853,154.473541,142.597534,129.035538,116.762817,116.448769,112.845459,111.052071,113.002487,112.779343,123.308273,142.490082,159.738007,170.448761,179.663620,177.209076,162.853714,138.308273,116.787613,105.283485,102.928108,95.663643,68.473572,52.845474,66.886795,83.035545,60.308285,25.849606,11.354562,8.696713,10.578527,6.561997,6.473566,4.658689,3.657858,0.202480,0.281819,0.006612,0.092562,0.109092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.155000,4612795.550000,5365,2955,112.103325,171.778534,157.819855,146.323990,127.563652,115.547127,115.728943,111.489273,111.067787,112.795059,111.158699,122.026466,141.125641,158.547134,170.538864,179.299194,176.323990,160.828125,136.100845,116.919029,104.770264,102.084312,95.836380,68.844650,51.290932,66.819862,82.348778,60.786800,25.290926,10.929770,8.712416,10.693404,6.268609,8.085138,6.628112,1.961163,0.354547,0.038017,0.164463,0.049587,0.287604,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601818.355000,4612795.550000,5381,2955,122.575218,172.095886,156.930588,146.666122,129.591736,115.748772,114.930588,112.046295,110.690926,114.352081,111.459518,123.145470,141.847946,159.079346,171.219864,179.500854,176.368622,160.633072,136.897522,116.484314,104.715714,101.583481,95.690926,67.947128,51.922337,66.823158,82.492577,60.236385,26.087624,10.473571,8.699194,12.329768,6.023982,7.032245,7.405798,3.793396,0.499174,0.090083,0.098348,0.000000,0.106612,0.000000,0.000000,0.000000,1.185124,2.341323,0.000000,0.000000,1.121488,0.000000 -601821.955000,4612795.550000,5399,2955,132.097549,172.436371,158.659531,148.973557,131.089264,115.271088,114.990097,112.849609,112.411591,114.337212,110.783493,123.609932,142.114059,159.618210,171.238037,179.361984,177.957031,161.056213,137.171906,117.130592,104.204979,101.725639,97.254570,68.345474,52.717377,67.560349,81.527298,60.684315,28.180183,11.301670,8.841341,12.077700,5.952079,9.248774,6.207449,3.697529,0.817358,0.527274,1.057853,0.000000,0.085124,0.000000,0.000000,0.000000,1.113223,0.000000,0.000000,0.000000,2.310744,0.000000 -601824.955000,4612795.550000,5414,2955,127.474388,172.405792,159.918198,147.017365,130.595886,115.199188,115.025635,112.893402,112.281830,115.166130,110.967781,122.579353,141.926453,159.728119,171.926453,180.819016,178.050430,161.810760,139.108276,116.785965,105.166130,102.893402,98.645470,68.116539,52.992584,68.149605,82.893402,59.992584,27.199192,11.174397,8.967788,10.449602,6.276047,7.584310,7.371914,2.680997,0.914877,0.000000,0.106612,0.047108,0.333059,0.006612,0.000000,0.000000,1.122314,2.272727,0.979339,0.000000,0.000000,3.927273 -601829.355000,4612795.550000,5436,2955,129.100830,180.185989,161.847137,149.400864,133.574387,118.681824,117.731415,114.574387,115.136375,117.318192,112.524803,124.888435,143.466980,161.177719,173.268631,182.797546,178.921524,162.442184,139.433914,117.533066,105.805794,102.921494,97.590919,69.640518,53.194229,67.954559,82.566132,59.318199,26.772745,10.617374,8.871921,10.651255,5.529766,7.546295,6.455384,2.731412,0.523969,0.182645,0.015703,0.094215,0.000000,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.897521,0.000000,0.000000 -601832.555000,4612795.550000,5452,2955,147.895065,181.622314,161.093399,151.415710,132.895050,118.109932,118.225632,115.027290,116.010757,119.762825,114.118195,126.225632,144.019012,162.886780,174.845459,184.564468,179.638855,163.217361,139.514877,117.961174,107.457039,103.771088,98.936378,69.019020,53.390930,67.779350,84.614067,60.052082,27.299192,11.310762,8.994233,12.148776,6.304973,6.628112,7.456211,3.432239,0.875208,0.098347,0.332232,0.000000,0.009918,0.025620,0.000000,0.000000,1.236364,1.117355,0.000000,0.946281,1.337190,0.000000 -601835.755000,4612795.550000,5468,2955,142.649612,185.881012,166.343811,154.021500,135.864471,121.856209,119.228111,118.029762,117.161995,122.343811,115.723976,128.889267,146.773560,164.087616,178.021500,186.922333,183.021500,164.732239,141.699188,121.120674,107.856209,106.517365,101.054558,72.302490,55.533905,72.847946,85.517365,60.963654,27.654566,12.385968,9.186796,13.523155,8.547122,8.409932,9.679353,3.395874,0.386778,0.327274,0.085951,0.058678,0.023141,0.010744,0.000000,0.000000,0.000000,0.000000,0.999174,0.000000,1.266116,0.000000 -601840.955000,4612795.550000,5494,2955,140.433060,183.747116,164.532242,155.490906,135.540497,123.441322,122.527283,120.573555,120.829758,126.970253,121.135544,132.664459,149.634735,168.047943,181.213211,190.213226,187.353714,168.023132,145.609940,122.709099,110.874390,107.519012,102.527283,74.554558,58.405804,75.130585,86.452896,60.766960,30.529772,12.224811,9.320681,16.385969,8.179354,7.863651,8.933071,4.014057,1.442152,1.059505,0.330579,0.857027,0.793391,0.039670,0.000000,0.000000,1.239670,0.000000,0.933884,0.000000,0.000000,0.000000 -601847.155000,4612795.550000,5525,2955,99.962814,146.301682,154.516541,144.144653,128.549591,118.797531,116.342987,114.574387,114.285133,115.012405,116.714882,128.070251,147.086792,163.301666,175.004150,184.367783,182.367783,168.500015,143.301682,122.508270,111.979347,107.070259,103.500008,75.210770,59.342991,73.615730,87.128105,62.475224,29.995888,12.879357,9.409110,7.749602,6.760345,8.384314,6.565301,3.597529,0.683473,0.139670,0.042149,0.086777,0.000000,0.000000,0.000000,0.042149,2.404959,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.555000,4612795.550000,5542,2955,91.228943,149.019012,156.200836,144.729782,129.266953,118.605797,117.068611,115.473572,115.680183,116.638855,117.614067,128.969437,148.192581,163.622314,176.440506,184.994217,183.399185,169.118195,144.233902,122.812408,112.167786,108.862000,103.663651,77.052078,59.779358,74.275223,88.266960,65.192581,30.870266,12.900845,9.423985,7.801668,7.322328,7.328938,7.067781,3.110749,0.400001,0.068595,0.201654,0.184298,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,1.090909,0.000000 -601855.755000,4612795.550000,5568,2955,96.870255,142.907455,149.999176,144.784302,131.131409,122.470261,120.271912,119.197533,119.040504,120.032242,120.866951,131.784302,151.412399,168.461990,180.809097,190.189255,188.957855,174.825623,149.387604,128.181000,117.511581,113.280174,108.900009,81.577698,63.483490,78.693398,89.271912,65.569443,30.638863,11.109933,9.900019,5.691747,6.105799,7.005798,6.594228,3.108271,0.765291,0.416530,0.139670,0.083471,0.165290,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.355000,4612795.550000,5591,2955,88.252090,153.765289,154.757019,144.723984,130.079346,120.319023,118.674393,116.500839,115.823151,118.732246,118.765305,129.881012,148.839661,165.145447,177.872726,186.748764,184.657852,171.038010,145.765305,123.079353,113.509102,110.781830,105.418198,77.310760,61.434727,76.492577,89.244644,63.616547,30.847956,12.938034,9.583489,5.954557,8.267784,7.657037,8.858691,4.266123,0.473555,0.386779,0.498348,0.057025,0.000000,0.740497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.555000,4612795.550000,5607,2955,94.250435,148.626450,155.171906,144.039673,131.039673,119.923973,117.576866,115.890915,115.114059,115.601662,116.890915,129.428101,148.072739,164.709091,178.213226,185.981812,183.047943,170.213226,144.461166,123.056206,112.485954,109.072731,104.890915,76.857864,59.337208,75.419846,86.609932,64.742172,29.899195,12.425637,9.535556,5.123980,7.078528,6.390922,7.868609,5.866126,0.319836,0.131406,0.172728,0.099174,0.427274,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601867.155000,4612795.550000,5625,2955,99.150429,148.456207,155.613235,143.902496,130.662827,120.481003,118.555382,116.158684,116.423149,118.266129,118.365295,130.051254,148.695877,165.728912,178.910751,186.497528,185.084305,172.315720,146.332245,123.712410,113.332245,109.671082,105.745461,77.613243,60.241344,76.233078,88.952087,64.009941,29.927292,12.107456,9.613242,5.998360,7.485967,7.666956,8.395054,2.018189,0.182645,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.955000,4612795.550000,5639,2955,93.749596,145.695877,156.720673,143.753723,129.381821,120.638023,117.852905,116.034721,115.638023,117.439682,118.357033,130.150421,148.051254,164.365295,178.580170,185.373566,184.183487,169.745468,144.266129,123.687614,112.538849,108.497528,103.836372,76.885971,59.274403,74.522331,87.836372,63.919029,28.786797,13.567786,9.439688,6.041336,6.963651,5.769434,6.320673,3.114057,0.493390,0.122315,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.143802,0.000000,0.784298,0.000000,0.000000 -601873.755000,4612795.550000,5658,2955,98.309113,152.095901,156.905807,145.500854,128.352081,120.451263,118.558701,117.459526,116.558701,118.872749,118.897545,131.071091,149.285980,167.095901,179.988464,188.137207,186.038040,172.765320,145.302505,125.566963,113.062828,109.864487,106.600021,78.509109,61.674397,76.889275,88.616539,63.566959,30.715719,12.285969,9.690928,5.057039,7.776875,6.774394,8.571088,2.880173,0.269422,0.218183,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,1.140496,0.000000,0.000000,0.000000,1.133884,0.000000 -601878.955000,4612795.550000,5684,2955,92.623161,149.557846,151.921494,143.483475,130.004135,119.252083,117.574394,115.971092,115.599190,118.772743,118.756218,130.194229,150.020660,167.268600,180.252060,187.739670,186.045456,173.111572,146.904953,124.896713,113.326462,109.921501,105.318199,79.508278,59.805805,75.640518,89.458694,64.938034,30.533075,13.584316,9.574399,5.611582,7.851254,7.648774,6.809101,3.709097,1.119837,0.679341,0.318183,0.057025,0.134711,0.180992,0.000000,0.000000,0.000000,0.000000,0.993389,0.000000,0.000000,0.000000 -601883.555000,4612795.550000,5707,2955,99.528938,152.285950,153.451233,142.401672,130.071091,118.591751,116.980179,116.219849,116.748772,118.583481,119.277702,129.649597,150.269424,166.558670,179.137192,187.955368,185.798340,172.814880,147.178513,124.550423,114.385139,111.161995,105.963646,78.806625,62.434731,75.128937,88.641335,65.980186,32.128944,13.362828,9.633077,5.328938,8.728942,8.879354,8.213237,3.637197,0.971076,0.334712,0.165290,0.000000,0.252066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.555000,4612795.550000,5727,2955,100.504974,152.442184,153.632263,143.938034,129.243820,120.004150,118.276878,118.045471,116.913239,119.202492,119.739685,131.433899,150.822342,168.152924,181.028961,188.665329,186.062012,174.599213,146.533081,125.078529,114.309937,109.830597,106.045471,77.425629,61.971092,74.880173,89.805794,64.648773,30.723160,12.725638,9.640515,6.061168,8.014065,7.114063,7.422328,4.409925,0.568597,0.525621,0.356199,0.052893,0.258678,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.355000,4612795.550000,5756,2955,99.103325,153.874390,157.733887,142.601654,130.064484,118.814888,116.674393,115.310760,116.079353,117.866135,118.419861,130.229782,149.213226,166.618195,180.634720,187.279343,185.155380,172.874390,146.923981,122.081017,111.469437,110.295883,104.163651,77.370262,60.874401,74.742165,88.444641,65.262825,29.411589,11.245472,9.469440,6.286789,7.636379,7.386790,7.880177,2.920667,0.340497,0.210745,0.301654,0.078513,0.000000,0.390083,0.000000,0.000000,1.150413,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.355000,4612795.550000,5776,2955,107.804977,153.184326,154.225647,144.052094,130.349594,119.291748,117.316544,115.547951,116.060349,119.729767,118.473572,129.688446,148.589279,165.762833,178.597549,188.143005,186.556213,171.812424,145.738037,123.870262,112.837204,108.828949,105.027298,78.738037,60.349606,76.704979,89.985970,66.853737,30.564482,13.671092,9.547954,5.488442,8.528115,8.689271,6.370260,1.562815,1.010746,0.228100,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.955000,4612795.550000,5804,2955,99.795883,148.727295,153.396713,143.347137,129.057861,119.272736,116.619843,115.330589,115.479347,117.925629,118.033066,129.281006,148.958694,166.892593,180.768616,187.925629,186.396698,171.851273,146.942184,123.429764,111.727280,108.768600,104.727280,77.446304,58.685966,74.446297,88.479347,64.743820,30.545475,12.467788,9.520681,4.025630,6.355389,6.414062,5.814888,1.959508,0.163637,0.180166,0.093389,0.167769,0.000000,0.093389,0.333058,0.000000,0.000000,3.527273,0.000000,0.000000,0.000000,0.000000 -601907.355000,4612795.550000,5826,2955,104.377693,156.411591,152.171921,144.064484,130.320679,121.337204,117.419846,116.948776,116.783485,118.130592,118.510757,129.742157,148.750443,167.576859,180.593414,189.064468,186.395050,173.089279,146.461182,124.461174,112.370262,109.320679,104.800018,77.353737,59.923981,74.328941,89.246292,65.419846,31.130600,11.730596,9.527292,5.414889,7.338859,7.232245,7.517368,3.528932,0.361985,0.223968,0.115703,0.060331,0.034711,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.416529,0.000000 -601914.155000,4612795.550000,5860,2955,124.299187,155.492569,153.533890,143.814896,129.897537,118.699188,116.963646,116.533897,116.062820,118.682655,117.971916,128.682663,148.112411,165.360336,177.963654,187.137207,185.319016,171.360336,145.649597,122.294228,110.434723,106.872742,102.054558,75.128937,57.211590,71.806625,86.666130,66.087624,28.533901,11.115720,9.277705,4.854556,5.995055,5.759516,6.907451,3.076865,0.459506,0.159505,0.000000,0.000000,0.011570,0.200000,0.525620,0.000000,1.200827,0.000000,0.000000,1.912397,2.366942,0.000000 -601917.555000,4612795.550000,5877,2955,124.912415,155.287613,153.452896,146.361984,132.064468,119.981834,118.403320,116.890923,116.345467,119.824806,119.163651,130.866135,149.766953,167.634720,180.246292,188.841324,186.833069,173.609924,146.395050,124.428116,112.014893,109.890923,105.527290,77.882660,60.047958,74.965302,87.651253,66.419861,31.262829,13.560349,9.593408,6.776872,7.067783,7.981832,8.311584,3.182652,0.123141,0.271902,0.206612,0.221488,0.057852,0.102480,0.274380,0.000000,0.000000,0.000000,0.000000,0.000000,2.533885,0.000000 -601921.555000,4612795.550000,5897,2955,120.233902,158.507462,156.383469,146.226471,132.879349,120.532242,118.887611,116.647942,116.672737,119.143814,119.069435,130.656204,149.102493,167.077682,179.358688,187.705795,186.937195,172.523972,146.920685,124.168610,111.689270,108.557037,105.490921,76.879356,58.829773,73.523987,88.209930,67.474396,29.681011,11.955390,9.590102,4.839680,7.548775,7.848774,7.404147,3.135545,0.422315,0.551241,0.000000,0.175207,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.955000,4612795.550000,5919,2955,114.386803,156.766968,155.791763,145.114075,129.800018,118.271088,116.510757,114.849602,115.304146,117.849602,118.436378,127.998360,147.378540,165.370270,178.692581,186.684326,184.841339,171.328949,145.543823,122.634727,110.651253,107.990097,104.163658,76.221512,57.436378,71.857872,86.609940,63.742168,30.089275,11.896710,9.469440,3.764474,7.038032,6.997533,6.647947,2.661163,0.310744,0.000000,0.024794,0.000000,0.225620,0.363637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.555000,4612795.550000,5937,2955,118.620674,158.686768,156.612396,147.199173,132.918182,120.232246,118.199188,117.141335,116.108276,119.124809,119.447121,130.595871,148.133057,167.719833,179.711578,187.810760,186.769440,173.356216,147.182648,123.075218,111.785965,109.356209,104.736374,78.033897,58.670265,72.769432,86.480179,64.347954,29.744650,11.085967,9.521506,5.196704,6.051255,6.176044,5.985962,2.568600,0.730580,0.093389,0.088430,0.214877,0.000000,0.023141,0.000000,0.000000,1.128099,0.000000,0.000000,0.985124,1.119008,0.000000 -601934.555000,4612795.550000,5962,2955,131.783493,168.659515,159.634720,148.709091,133.833069,123.386780,119.312401,120.155380,119.122322,123.411575,122.593391,132.709106,150.361984,169.378525,182.667770,191.188431,190.204971,176.717361,149.866119,127.295891,114.485954,112.733894,107.618187,79.692574,61.800018,75.204979,89.932243,68.403328,31.114069,13.303324,9.783489,5.390922,8.158693,7.381833,6.988444,3.566122,0.377687,0.104959,0.000000,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.955000,4612795.550000,5984,2955,142.839676,166.856216,160.616547,151.790100,135.641342,122.409927,121.418198,119.666130,118.128937,122.352081,122.236374,133.310760,150.219849,169.228119,181.252899,190.071091,189.517365,176.128937,149.128937,125.856209,113.930588,111.608276,106.145470,78.715721,59.814892,74.500839,89.013237,67.004982,29.277702,10.590102,9.649606,4.248771,5.535552,7.265304,7.466129,2.723973,0.892563,0.000000,0.000000,0.280993,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.028926,0.000000,0.000000,0.000000 -601941.955000,4612795.550000,5999,2955,140.824799,175.171906,160.246292,151.328934,136.328949,123.196716,120.791756,120.138863,119.882668,122.345474,119.808289,131.816559,149.990082,168.923981,180.890915,189.676041,187.857864,174.056198,149.213226,126.477707,113.816551,110.766968,106.709114,78.469437,59.014900,74.105797,87.552078,65.857872,28.047953,11.737207,9.700845,5.011582,5.709106,6.560345,4.973565,2.881823,0.707440,0.263637,0.558679,0.000000,0.098347,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.902479,0.000000,0.000000 -601947.755000,4612795.550000,6028,2955,127.963654,168.723984,162.533890,150.418198,137.285965,123.451256,124.360344,121.451256,120.814888,124.633072,123.839684,135.195053,151.881012,170.467789,184.236374,191.657867,190.054565,176.955383,149.881012,126.690926,116.269432,112.153740,109.509109,80.517380,62.434727,76.352089,89.831429,67.666130,31.740517,13.857042,9.955391,5.281003,9.400017,8.067782,7.345468,3.467776,0.854548,0.214877,0.000000,0.175207,0.000000,0.096694,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.555000,4612795.550000,6047,2955,131.269440,167.335556,162.897522,152.401688,137.707474,123.856209,122.996704,120.062820,120.905800,122.624809,122.971916,135.294235,153.823166,170.021500,182.732239,191.790100,189.889267,174.657867,149.550430,127.319023,114.881004,113.765305,108.781830,80.897537,63.137207,77.757034,90.881004,66.666130,31.117374,13.041340,9.889276,8.088443,9.248776,8.640511,7.185963,3.404140,1.257028,0.558679,0.280992,0.323141,0.000000,0.142149,0.000000,0.112397,0.000000,0.000000,0.000000,0.868595,0.000000,0.000000 -601957.355000,4612795.550000,6076,2955,118.456215,166.811569,164.877686,152.257843,136.563644,124.117371,123.638031,121.505806,121.373573,122.877701,122.910759,133.530594,153.348755,169.869415,181.100815,191.307434,190.084290,174.307434,148.224792,126.745476,115.200020,113.216545,108.109108,80.613243,62.009937,75.704147,90.704147,65.497536,30.175226,12.214068,9.828119,9.572742,7.073566,8.367783,7.676871,2.343809,0.576861,0.128099,0.131405,0.000000,0.000000,0.295868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.955000,4612795.550000,6104,2955,122.673569,169.390915,162.977692,149.878525,135.225632,121.713226,121.192566,119.316536,119.845459,120.531410,119.713226,131.374390,150.944641,167.308273,179.572739,188.911575,188.002487,172.432236,146.415710,124.861992,113.209099,110.556206,106.390915,78.696716,61.795891,74.828941,89.663658,63.275223,29.144648,12.071092,9.671921,8.599187,5.836376,7.071087,8.010756,4.195874,0.607440,0.240497,0.043802,0.000000,0.000000,0.000000,0.009918,0.000000,1.202479,3.385951,0.000000,1.353719,0.000000,0.000000 -601967.355000,4612795.550000,6126,2955,126.664474,172.127258,166.408279,153.242966,136.119034,123.730591,122.920670,121.400009,120.391747,121.780174,121.317368,134.614883,152.672729,169.523987,181.523972,191.466125,189.209915,173.474380,148.284302,126.532242,114.722328,112.664474,108.581833,80.416542,63.474400,76.962006,91.474388,64.796715,32.705799,13.901671,9.871093,9.409108,7.650428,8.957868,7.933071,3.498353,0.714878,0.168595,0.091736,0.247108,0.000000,0.086777,0.004132,0.000000,0.000000,0.000000,0.000000,0.941322,0.000000,2.071074 -601972.955000,4612795.550000,6154,2955,131.168610,178.358704,163.647949,151.573578,134.846298,120.912407,121.028107,118.813232,118.309105,121.102493,118.755386,131.581833,149.656219,167.590103,178.813248,189.242996,186.185150,171.209930,146.474396,124.854553,113.383484,111.135551,105.309105,78.110756,61.515720,74.581833,88.408279,64.614899,28.102499,11.562828,9.573573,9.005801,6.242989,6.990924,7.068605,2.963644,0.515704,0.132232,0.000000,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.355000,4612795.550000,6171,2955,142.164490,181.726456,168.809097,154.964478,142.609100,128.014053,128.319839,126.336372,125.419022,128.625626,124.981003,138.014053,156.410751,174.319839,186.336380,196.005798,192.518188,177.666946,151.187607,129.666962,119.022324,115.286789,108.790924,80.564476,64.556213,77.845467,92.605789,66.531418,30.448778,13.028944,9.890101,11.487619,7.355384,8.090099,9.129766,3.493396,1.433061,0.770249,0.399175,0.457852,0.493389,0.533885,0.253719,0.054546,0.000000,1.197521,0.964463,0.000000,0.000000,0.000000 -601979.955000,4612795.550000,6189,2955,145.793411,180.289276,168.165298,156.785141,138.074402,124.842995,125.008278,122.669441,121.404976,124.644646,122.876053,133.570267,152.710754,169.909103,182.396713,192.066116,188.876038,173.495880,148.950424,127.429771,116.214890,113.991753,108.454559,80.140511,62.950428,78.371918,93.173569,67.801674,31.933905,13.109935,9.859524,12.240512,8.641337,9.150429,10.669436,4.301662,0.709093,0.161158,0.574381,0.041322,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,1.087603,0.966942,2.523967,2.142975 -601985.755000,4612795.550000,6218,2955,147.988434,180.723969,165.814880,154.376862,136.120667,122.566956,121.467781,119.269432,119.352081,123.914062,120.170258,131.905792,150.145447,167.467758,180.385117,189.798340,187.137192,171.707428,146.996689,124.996704,114.500839,112.186790,106.145470,76.790092,62.104153,76.740509,90.128937,65.376877,30.451258,11.564481,9.649605,11.942991,6.618197,7.663651,7.436375,4.292569,0.541324,0.366117,0.108265,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,2.260331,1.119008,0.971901,0.000000,0.000000 -601992.755000,4612795.550000,6253,2955,167.857056,188.914886,168.022324,155.741348,139.385971,125.245476,123.658699,121.419029,121.625641,125.666962,121.840515,134.377716,150.997543,169.476868,181.766144,192.328110,188.352905,171.766129,148.369446,127.683487,115.576050,111.576050,107.972748,78.146301,62.361176,77.832253,91.666962,64.518196,29.534731,11.768612,9.815721,12.797537,7.816544,7.429766,7.940508,2.455379,0.709093,0.584299,0.252893,0.052893,0.000000,0.163637,0.000000,0.000000,1.173554,0.000000,1.048760,0.000000,0.000000,0.000000 -602001.755000,4612795.550000,6298,2955,153.620697,198.579330,172.455368,161.066940,140.273590,127.050423,125.703316,124.488441,123.777702,129.785965,123.331421,136.199188,152.843796,170.612396,184.661987,194.984299,191.223969,172.876862,150.149582,129.157867,116.736389,113.364494,109.190941,79.587631,63.562828,79.695053,92.926468,64.471916,30.488451,13.434729,9.926466,14.414893,8.179352,7.610757,7.390096,3.976869,0.346282,0.526447,0.119009,0.281819,0.000000,0.317356,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,4.039670,0.000000 -602015.755000,4612795.550000,6368,2955,99.727280,161.615738,165.309952,153.128113,138.351257,127.896706,126.111580,123.962814,124.574387,125.665298,125.450424,136.772751,155.425629,171.475235,184.045486,191.838882,190.516556,177.293427,153.392578,130.904968,120.648766,116.962814,111.590919,83.318192,66.632240,82.681824,95.607445,69.888435,33.409107,13.657870,10.144648,6.567780,7.819849,7.421500,6.964476,3.433892,1.136366,0.291737,0.072728,0.000000,0.257025,0.000000,0.000000,0.000000,0.000000,2.307438,0.000000,0.000000,0.000000,0.000000 -602037.755000,4612795.550000,6478,2955,109.014893,155.886780,165.134720,152.680176,137.762817,128.333069,125.804146,123.266960,122.754562,125.374397,125.539680,135.539673,154.580994,171.283478,182.812408,191.762833,189.713242,178.382645,153.109924,132.068604,120.209106,116.159515,111.754562,84.266960,67.109940,81.481842,95.184311,70.068619,31.547953,12.529770,10.159523,5.635549,7.086790,8.242990,6.287616,3.056205,0.366944,0.294216,0.063637,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602068.955000,4612795.550000,6634,2955,102.938858,161.474380,166.300827,156.978516,143.242981,132.102493,129.433075,128.796692,127.317368,128.821487,128.714050,139.499176,157.011566,173.557022,185.788437,194.201660,191.854553,182.143799,157.912399,136.069443,123.680992,119.771904,113.672737,86.416542,69.647957,84.342171,96.722328,71.829773,32.259525,13.956217,10.333902,4.938025,7.842990,7.592575,7.287616,4.151247,0.865291,0.400001,0.000000,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,1.189256,0.000000 -602095.155000,4612795.550000,6765,2955,120.494232,169.966110,166.362808,156.131409,143.057022,131.966125,129.594223,128.445465,126.098358,129.247116,129.156204,138.891739,156.949585,172.676849,185.197510,194.164444,192.453705,181.767761,157.230576,135.594223,122.784309,119.164482,112.809113,85.007454,68.619026,83.982666,95.362831,73.172745,32.106628,13.228117,10.255392,4.428936,6.582657,6.347946,7.247120,2.233063,0.800828,0.225620,0.035538,0.080992,0.075207,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,1.109091,0.000000,2.142149 -602112.155000,4612795.550000,6850,2955,146.277710,186.337219,172.543823,161.353745,144.568619,129.444656,127.585144,125.519028,123.568619,128.262833,125.411591,136.395065,153.138870,171.651260,183.932251,192.667786,191.494232,178.981842,154.304153,134.593414,122.320686,118.403328,112.981842,84.213249,68.709114,84.238037,97.915726,73.312416,33.659523,13.757870,10.271094,8.119849,8.490926,9.539685,7.678526,4.485134,0.657854,0.123142,0.413224,0.386778,0.219835,0.106612,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.955000,4612795.550000,6894,2955,116.023987,175.795044,170.315720,157.538849,141.456207,128.439682,130.762009,125.588448,125.026466,127.051254,124.885971,137.059509,156.183487,172.373566,185.390091,195.018188,193.142151,178.398361,153.902496,133.233078,121.745476,118.530594,114.200020,84.745476,68.373573,85.018188,101.390091,73.712410,35.233078,14.510761,10.381837,11.217371,7.498361,8.154560,8.513235,4.610751,0.651242,0.352893,0.184298,0.110744,0.219835,0.180992,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.155000,4612795.550000,6910,2955,115.583481,178.295074,173.807465,160.542984,143.104965,130.947937,129.443817,126.427284,124.981003,126.410751,125.840508,139.220673,158.534714,175.906631,188.220688,198.138046,196.890106,181.997543,157.642151,136.303314,123.253731,121.369431,115.336372,85.799187,69.881844,86.377693,102.782654,74.981018,36.733074,15.766960,10.485144,11.401669,7.920675,8.512410,8.925634,3.764471,1.356201,0.275207,0.109918,0.084298,0.060331,0.000000,0.016529,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.355000,4612795.550000,6926,2955,122.583481,178.798340,176.419846,159.130585,142.948761,131.444641,130.923981,128.287613,126.519020,128.304153,127.378525,139.568604,159.957031,177.163635,188.295868,199.072739,197.014877,181.733887,158.279343,134.692581,124.973572,120.824806,116.981834,87.535553,70.857864,87.990097,103.808281,77.238029,36.274399,14.457869,10.634729,11.604975,7.996709,8.432246,9.871915,4.932240,1.284301,0.855374,0.358678,0.556199,0.085951,0.108265,0.001653,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.355000,4612795.550000,6941,2955,99.385963,185.643799,179.214050,162.999176,143.883469,130.495056,129.123154,125.817368,124.652077,126.602493,125.759514,139.900009,159.528107,176.164459,188.610748,198.238846,196.999176,181.891739,157.891739,136.288437,124.800835,120.205795,116.990921,86.676872,69.916550,86.817368,102.189270,74.263657,35.544643,13.101670,10.635555,9.846297,8.285139,8.581006,11.706626,5.641331,2.094218,1.134712,0.874381,1.849589,0.557026,0.623141,0.237190,0.103306,0.000000,0.000000,1.063636,1.064463,0.000000,0.000000 -602133.355000,4612795.550000,6956,2955,112.396706,175.666107,173.699173,156.087601,139.138870,125.411575,125.295876,121.593391,121.608276,123.798363,121.219849,134.800018,154.857880,172.056198,184.857864,196.485962,195.023148,180.312408,155.890915,135.535538,124.502487,120.576866,115.436371,85.355385,69.800835,85.510750,103.452896,74.658684,36.873577,14.426464,10.494234,11.365303,8.329767,8.797535,10.709931,5.960341,1.004960,0.257852,0.608266,0.451240,0.117356,0.000000,0.026446,0.152066,0.000000,1.419835,0.000000,0.000000,0.000000,0.000000 -602138.155000,4612795.550000,6980,2955,103.990097,182.337204,176.105789,161.585129,145.791763,132.452896,133.634720,131.824799,130.072739,131.651245,130.833069,142.609940,161.907440,180.378525,192.543823,201.345474,200.461182,184.452896,159.700836,138.213226,126.386780,123.386780,117.800003,89.213234,71.948769,86.171913,103.271080,74.998360,35.345478,13.200842,10.709109,11.025634,9.045468,10.412413,9.285137,5.071908,1.265292,0.238017,0.388431,0.250414,0.125620,0.000000,0.033058,0.099174,0.000000,1.422314,0.000000,1.017355,0.000000,0.000000 -602146.155000,4612795.550000,7020,2955,113.191750,172.208267,170.208267,160.175232,144.695877,130.489273,128.191757,124.150429,123.042992,124.489273,122.423157,133.233078,150.935562,168.373581,180.414886,190.613235,188.175217,175.414886,151.456223,131.555389,120.051254,115.836380,110.200020,82.943817,66.704147,84.514069,99.629768,74.034729,36.456215,14.562827,10.018201,8.374391,7.400015,7.243813,8.371087,3.325624,0.580167,0.151240,0.332233,0.032232,0.000000,0.001653,0.165289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.228926 -602148.955000,4612795.550000,7034,2955,112.026466,168.307449,162.447937,156.051254,138.414902,124.604996,122.902512,120.200035,117.803337,120.191772,117.092598,129.133911,146.150436,163.960342,174.489273,185.067780,183.100830,169.761993,147.323990,126.563667,116.481026,112.018219,107.018196,79.927292,64.067787,80.778534,97.423157,72.076050,32.910763,11.091752,9.728945,5.995877,5.989269,4.877695,6.577697,1.442979,0.651241,0.132233,0.104133,0.145455,0.000000,0.000000,0.376860,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,3.779339 -602153.155000,4612795.550000,7055,2955,98.901665,162.033890,162.595886,155.281830,138.430588,125.571091,124.513237,120.868607,118.248772,120.744644,118.339684,129.728119,145.422333,162.471909,175.703323,184.538025,182.504974,170.604141,148.240509,126.852081,115.670258,113.058693,108.372749,79.761177,65.843826,81.199196,98.017380,73.339691,34.488449,12.729770,9.852085,5.918193,8.475222,7.238028,7.280177,2.149591,0.479340,0.332232,0.149587,0.109091,0.129753,0.135538,0.476860,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.555000,4612795.550000,7072,2955,102.956207,164.666946,163.559509,156.055374,138.328110,125.906624,123.609100,119.038849,118.154556,118.551247,117.931412,127.964470,145.790924,163.104965,173.303314,183.939682,182.014053,169.642151,146.724808,126.369431,115.931412,111.658684,106.336372,79.385963,64.642174,80.799187,95.947945,72.080177,32.848782,12.476051,9.666961,5.223976,6.336378,6.447946,6.552903,2.477690,0.577687,0.424794,0.142149,0.149587,0.000000,0.152893,0.246281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.155000,4612795.550000,7095,2955,104.187614,158.964493,162.509949,152.534729,138.989288,125.675224,124.104973,120.947952,118.576050,121.038864,120.005806,129.799179,146.162842,163.071930,175.212418,184.609116,182.683502,169.799194,147.757874,127.989265,116.964478,112.311577,107.881828,82.022324,64.906631,82.485138,97.402489,71.253738,34.014069,13.166962,9.807458,5.400836,6.077701,6.491746,7.320673,2.675211,0.232232,0.078513,0.240496,0.000000,0.196694,0.060331,0.081819,0.000000,1.470248,0.000000,0.000000,0.000000,0.000000,0.000000 -602164.355000,4612795.550000,7111,2955,96.810760,161.480194,165.662018,153.942993,138.480194,126.182655,124.100014,121.843811,119.290092,122.108276,118.827286,129.810760,147.405792,163.116562,174.595886,184.290115,182.438873,170.405807,149.620667,128.587616,115.942986,114.257034,107.645470,82.116539,66.686798,82.504974,98.397537,74.876869,32.276875,15.258696,9.785970,6.098358,6.264477,7.291747,6.325632,3.057029,0.293389,0.000000,0.041322,0.661985,0.000000,0.166116,0.000000,0.400000,0.000000,0.000000,0.000000,1.223967,0.000000,0.000000 -602167.555000,4612795.550000,7127,2955,90.499184,156.639694,161.185150,152.780167,137.185120,126.862823,123.424797,119.804962,117.961990,119.879341,118.110748,128.780182,145.317352,160.672745,173.234711,182.424789,180.862808,169.639694,146.317352,126.061157,116.424797,111.606613,106.400002,80.061180,65.052910,82.590103,96.953728,72.358696,33.132252,12.983489,9.672747,5.476869,6.636377,7.180177,6.142987,3.227278,0.293389,0.191736,0.306613,0.175208,0.000000,0.135538,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.755000,4612795.550000,7153,2955,96.334724,162.152908,163.557861,152.830597,139.086792,126.483482,122.260338,119.533066,118.706619,119.698357,118.822319,129.037201,145.623978,161.590927,174.111588,183.012405,182.615723,170.012405,147.971085,127.574387,117.243813,113.541328,107.409096,81.781006,66.772743,82.185966,95.979355,71.615730,33.475227,12.978530,9.764483,5.335547,6.905798,6.855384,5.108276,3.148766,0.835539,0.233884,0.168596,0.090910,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.555000,4612795.550000,7172,2955,99.214058,151.883469,161.304962,152.395874,139.090088,127.627274,123.197533,120.941330,119.255386,120.263649,119.875221,130.098343,147.139679,161.957855,173.709915,183.701660,183.032242,171.387604,149.073563,128.643799,117.891747,113.709930,108.718185,82.519844,66.990921,83.428940,96.098351,70.900009,34.926468,12.804977,9.883490,5.689269,7.000842,7.263649,6.230590,2.990089,0.806613,0.079339,0.096695,0.090910,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602180.955000,4612795.550000,7194,2955,94.964478,151.997543,163.658707,152.972748,139.286804,127.724808,125.402496,122.509933,121.228943,122.666962,122.319855,133.253738,150.088455,166.559525,177.609116,186.923157,186.881821,176.228958,152.997543,132.154556,121.716545,117.914894,113.063652,85.658699,71.774399,87.840515,98.642166,71.815720,34.096710,15.685142,10.278532,6.635548,7.094229,8.361997,6.735549,3.412402,0.980993,0.110744,0.223141,0.053719,0.000000,0.069422,0.062810,0.000000,1.552893,0.000000,0.000000,0.000000,1.288430,0.000000 -602187.755000,4612795.550000,7228,2955,82.589279,148.977707,161.035553,153.258698,139.126465,128.432251,126.002495,122.795883,121.159515,123.498360,123.448776,134.862000,150.506638,166.457047,178.853745,190.118210,188.167786,177.581009,155.167786,135.093414,125.870262,119.209106,114.663651,89.002502,72.903328,87.506638,100.911583,75.415726,34.357868,13.471918,10.423985,5.278523,8.900015,6.632244,7.388441,4.151248,0.538018,0.001653,0.117356,0.080992,0.000000,0.000000,0.174380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.555000,4612795.550000,7247,2955,81.152908,141.862000,158.622314,152.374405,136.258698,129.804153,126.655388,122.729759,121.035545,121.217361,121.994225,133.109924,149.167786,165.506607,177.341339,187.828949,186.721512,175.985977,152.713242,132.572739,122.597527,119.423973,113.572731,87.126450,70.556213,87.415710,97.399178,74.052071,31.994238,11.561998,10.324813,5.838028,6.591746,8.590096,4.876869,3.322321,0.361158,0.229752,0.215703,0.048761,0.000000,0.000000,0.558678,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.555000,4612795.550000,7267,2955,86.437210,148.924820,162.718201,152.313248,139.866959,128.577698,125.214066,123.114899,121.577705,122.139687,123.594231,134.189270,150.081833,165.536377,178.032257,187.453735,186.536377,175.428940,154.313248,132.825638,122.081833,118.924812,113.900017,87.420677,72.561180,88.189278,100.734734,75.181007,37.147953,13.870264,10.354565,5.300012,6.838857,8.420676,7.342161,2.946288,0.703309,0.129753,0.061157,0.075207,0.045455,0.000000,0.064463,0.470248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.755000,4612795.550000,7298,2955,94.599197,148.392578,161.004150,150.979355,135.541336,125.913239,122.235550,119.706627,116.987617,117.367783,117.921501,127.896713,146.095062,160.177704,171.946304,181.789276,180.285141,168.904968,147.582657,127.219025,115.987617,111.607452,105.772743,80.235565,65.739685,83.185974,101.276878,75.814072,36.466961,13.800845,9.615722,4.715714,7.409932,8.521502,7.228110,3.214056,0.350415,0.274381,0.157025,0.031405,0.147108,0.076860,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.755000,4612795.550000,7338,2955,82.246292,142.436371,157.833084,146.560349,133.395050,122.841339,119.097534,115.585136,113.163651,113.147125,113.510757,123.824806,141.370270,155.378540,166.833084,176.700851,175.477707,164.254562,142.411591,122.105797,111.262825,107.634727,100.981834,76.494232,61.642994,79.494232,96.576874,71.940514,33.089275,12.113241,9.180183,5.114058,5.595881,6.635550,6.173563,2.454551,0.379340,0.176033,0.176033,0.060331,0.000000,0.000000,0.164463,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.355000,4612795.550000,7371,2955,79.826469,136.057861,156.586792,145.785141,130.528931,118.793396,115.421501,111.314064,108.578529,107.818199,106.677704,117.735550,135.818192,151.041336,162.694229,171.446304,169.966965,157.603317,137.859543,118.628105,105.214882,102.305794,94.636383,69.363663,56.305801,75.148781,96.727280,74.809944,34.314064,13.099191,8.603325,4.496702,7.355386,6.581831,6.752904,2.161988,0.266943,0.097521,0.000000,0.017356,0.000000,0.000000,0.166116,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.955000,4612795.550000,7404,2955,75.181007,144.304977,154.470261,146.114899,131.238846,119.280167,116.156204,110.726448,108.809097,108.073555,106.825623,117.900002,137.387619,152.238861,162.205811,171.296707,170.238861,157.751266,137.032257,117.850418,105.924797,100.536377,94.354568,69.371094,55.767788,75.346298,96.271919,72.817375,34.453739,12.823984,8.577705,4.816538,5.207452,6.653733,5.599185,2.584303,0.279340,0.082645,0.000000,0.114877,0.000000,0.000000,0.106612,0.720662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.955000,4612795.550000,7419,2955,69.052910,145.085953,156.829758,145.077682,130.391754,121.176872,116.499184,113.325630,110.871086,109.854553,109.152077,119.466125,138.209915,152.333893,164.242996,172.730591,170.879364,158.904144,138.176865,117.573563,107.003319,101.804970,95.763649,69.804985,55.953743,76.052910,93.895882,71.424812,33.763653,12.054564,8.705805,4.742984,5.166129,5.419846,5.442985,2.015707,0.695869,0.275208,0.041322,0.085951,0.107438,0.000000,0.109091,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.755000,4612795.550000,7438,2955,86.000023,148.710739,159.842987,150.429749,132.719009,121.380180,117.685966,114.355385,111.495880,111.710762,112.173561,121.256218,140.107437,154.669418,165.685974,175.132248,172.396713,160.760345,138.355377,119.512413,108.520668,103.396706,97.818192,72.851265,59.421509,76.702507,94.628105,69.628120,32.107456,12.273572,8.892581,4.802488,4.880178,6.727284,6.678524,3.037196,0.676861,0.256199,0.000000,0.100000,0.000000,0.000000,0.053719,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602235.355000,4612795.550000,7466,2955,84.551247,143.113235,155.947937,148.881821,134.476868,123.865295,120.542984,116.923149,113.303314,114.328110,113.848770,123.559517,141.997528,156.708267,168.749603,176.947937,174.352905,161.204147,140.005798,120.881828,109.757858,104.385963,98.881828,74.328110,59.551262,77.501663,93.848770,70.179352,32.832253,12.266960,8.989275,4.904141,4.923154,7.393401,5.128109,2.705791,0.453720,0.329753,0.041322,0.248761,0.121488,0.000000,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,1.896694,0.000000 -602240.755000,4612795.550000,7493,2955,71.671089,150.600845,161.204163,148.972748,134.823975,124.228935,119.923149,115.981003,114.295052,114.295052,114.311577,123.857033,141.452087,158.104980,167.675232,176.931412,175.782654,162.815735,141.460358,121.642159,109.336372,106.138023,99.700020,74.518211,60.873573,77.633904,94.675217,71.741348,32.080185,13.952910,9.063656,6.846291,7.436378,6.679351,8.017368,3.378520,0.241323,0.091736,0.000000,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602243.555000,4612795.550000,7507,2955,80.488449,140.926453,155.951248,147.736374,134.405807,120.587624,117.595886,114.157875,111.529770,111.248779,110.331429,121.405807,139.240509,155.042160,165.273560,174.414062,172.579346,160.628937,139.273560,119.901672,107.050438,103.513245,96.554565,71.571098,58.000847,75.017380,93.405807,70.100021,31.538036,12.300017,8.777706,5.350422,6.972741,6.319847,5.414887,2.673560,0.242976,0.256199,0.000000,0.037190,0.136364,0.000000,0.000000,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.355000,4612795.550000,7521,2955,85.000015,150.842972,161.123962,150.438019,133.950424,123.371918,120.148773,115.636383,113.421501,113.355385,112.652908,123.305801,141.727295,157.066116,168.933884,177.727295,175.256210,162.396698,141.752075,122.165306,110.206627,105.223160,99.545471,74.371918,59.305805,78.272743,95.785141,70.347122,35.429771,13.597538,9.049605,4.415713,6.965305,7.243814,6.939682,2.593395,0.592563,0.266116,0.137191,0.040496,0.000000,0.066116,0.379339,0.006612,2.249587,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.955000,4612795.550000,7554,2955,99.118187,149.919846,160.903305,150.043808,133.812408,122.167778,119.432236,114.581001,113.035545,111.779343,110.738022,122.415710,140.680176,156.721497,167.258682,176.655380,173.696701,161.812408,139.853729,120.052071,107.853729,104.514885,98.209106,72.407455,58.531422,75.771088,94.828941,71.060349,33.033905,12.666959,8.928118,5.719843,6.838857,7.185138,7.670260,3.713231,0.628101,0.451241,0.033884,0.225620,0.022314,0.061157,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602255.755000,4612795.550000,7568,2955,82.179352,150.311584,160.245468,149.261993,135.047119,123.493401,119.220673,114.485130,112.171082,111.782654,110.733070,122.675217,141.113235,156.055374,166.865295,176.344635,175.336380,161.369431,139.617371,120.402489,107.509926,103.369431,98.336372,72.956207,58.179359,76.220673,94.815712,72.947945,34.559525,11.726462,8.939688,6.985137,5.694229,6.195879,6.300013,2.735544,0.346282,0.014876,0.108265,0.174381,0.000000,0.000000,0.179339,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.555000,4612795.550000,7582,2955,92.853745,148.779343,162.415710,148.019028,133.738037,121.283493,116.895065,113.126472,110.423988,109.762833,110.192581,120.605804,140.349594,154.721497,166.068604,175.903336,173.531433,160.564468,139.266953,119.498367,107.159523,103.043823,96.845467,70.977699,57.671925,75.176048,94.870262,71.250427,33.493412,12.049603,8.804151,5.904968,7.610760,6.791749,5.957862,3.015709,0.515704,0.247935,0.214050,0.068596,0.000000,0.057851,0.190910,0.336364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602262.155000,4612795.550000,7600,2955,85.949608,151.776047,157.933075,147.197540,132.040512,121.222328,117.387611,112.214058,109.875221,109.445465,108.610756,120.073563,138.296707,154.387619,165.073578,175.197540,173.255386,159.338043,138.966141,118.668610,106.247116,102.809105,94.627281,69.197540,56.453739,75.156212,95.900009,71.957863,34.466137,12.613241,8.602499,6.509102,5.790097,8.096707,6.920673,2.525625,0.809919,0.077686,0.005785,0.066943,0.000000,0.000000,0.400827,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602270.955000,4612795.550000,7644,2955,92.984314,157.273560,160.893402,148.314896,132.083466,120.852074,118.141327,113.620674,110.959518,110.513237,108.703316,120.546288,139.273560,154.719849,165.934723,177.058685,174.546295,159.951248,138.488434,118.290085,106.893402,101.232246,94.827286,68.810760,56.414066,73.645470,95.504974,71.050423,33.364483,11.858694,8.620680,4.904141,6.976047,7.526459,6.416541,3.569431,0.244629,0.082645,0.654546,0.276034,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602274.155000,4612795.550000,7660,2955,90.089272,149.750443,160.295883,150.874405,134.494232,121.345467,119.642990,114.494232,112.957039,111.948776,111.171913,123.353737,141.386795,157.824814,168.609940,178.659515,176.519012,163.056213,139.907455,120.147125,108.808281,104.130592,97.436378,73.031418,58.163654,75.890923,96.312408,72.105797,34.609940,12.942993,8.857870,7.314888,8.137205,8.126458,7.409931,3.028932,1.031407,0.298348,0.053719,0.168596,0.129753,0.057851,0.124794,0.425620,2.246281,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.155000,4612795.550000,7695,2955,90.821518,152.565308,160.978531,152.094238,134.160355,122.953743,120.573578,115.590111,114.003334,112.705811,111.408295,123.441353,141.052917,157.986801,168.193405,178.631424,176.350433,161.895889,140.813248,119.028130,107.804985,104.325645,98.218208,72.532242,58.119026,75.019844,95.160355,72.044647,32.639690,12.581837,8.928945,7.684308,8.019850,7.304144,6.252905,3.880998,0.567770,0.475207,0.048760,0.117356,0.000000,0.065289,0.446282,0.540497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602284.755000,4612795.550000,7713,2955,92.723160,151.549622,159.194244,146.805801,131.425629,119.400833,116.706619,113.037201,110.706619,109.673561,108.541328,119.971085,138.582672,154.888458,165.301682,175.483505,173.185989,159.781021,137.070282,118.037201,105.508270,102.500008,94.863647,70.557877,55.623981,73.954567,93.483482,69.673576,32.913242,12.019026,8.623987,6.456209,6.152081,6.077695,6.671912,1.500830,0.194216,0.039670,0.045455,0.069422,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602288.755000,4612795.550000,7733,2955,88.462837,153.454575,161.347122,147.752106,132.710754,121.256218,117.785141,112.719025,109.719025,109.801666,109.404976,119.892578,138.669434,155.421524,166.289276,175.537201,172.876053,159.355392,137.876053,117.942162,104.933899,101.132248,95.363655,69.950432,56.512417,73.661171,95.272743,72.148773,32.347126,13.412414,8.669440,7.594226,8.206625,4.952904,8.477698,1.520665,1.158681,0.008265,0.000000,0.032232,0.000000,0.063637,0.274380,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602293.155000,4612795.550000,7755,2955,91.572746,159.109116,160.662842,150.125641,133.142151,121.902489,118.191742,114.067780,111.067780,110.927284,110.191742,120.695877,139.985153,155.414902,166.695892,176.414902,174.489288,159.629776,139.018204,118.051247,105.869431,102.695877,95.290916,70.489273,56.745472,74.241341,95.596710,71.861176,34.137211,14.349605,8.662827,8.692575,7.280179,10.153732,8.309931,3.252073,0.247108,0.251240,0.199174,0.028926,0.116529,0.000000,0.438844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.955000,4612795.550000,7769,2955,81.681831,156.690094,159.111588,148.673553,132.334717,119.210754,116.847115,112.533066,109.789261,110.119843,108.789261,119.417366,137.309937,154.665298,165.623993,176.648788,173.450439,158.136398,136.342987,117.301659,105.078522,101.698364,94.409103,69.020676,55.566135,73.400841,94.475220,70.946297,30.968615,13.414067,8.582664,7.902490,7.778527,8.356212,6.811583,2.953725,0.532233,0.367770,0.277686,0.021488,0.097521,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,1.708265,0.000000,0.000000 -602298.755000,4612795.550000,7783,2955,89.586800,159.933884,158.190079,149.520660,132.429764,119.933899,118.016541,113.289276,111.438034,111.677704,109.950432,120.909103,139.462814,155.479340,165.561981,176.628098,172.776855,157.909088,136.826447,116.694229,105.223160,102.024811,96.090927,70.000023,56.016548,72.206635,92.867783,68.520683,30.391754,10.847125,8.735557,5.887613,6.670263,6.640508,7.166954,3.577693,0.995870,0.101653,0.169422,0.338017,0.000000,0.000000,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602301.355000,4612795.550000,7796,2955,82.382660,161.448761,158.911575,149.399185,133.176041,120.217369,118.878532,114.035553,111.019028,112.729767,109.622330,121.614067,139.597549,156.076889,167.614075,178.754547,175.101654,159.556213,137.448776,117.895058,105.225632,102.043816,96.209106,70.176048,56.969444,74.556213,93.886795,68.994232,31.312416,12.333901,8.746300,8.654557,6.028940,7.190095,6.679350,2.794219,0.466943,0.256199,0.116529,0.188431,0.000000,0.057851,0.128099,0.023967,0.000000,0.000000,0.000000,0.000000,1.351240,0.000000 -602305.755000,4612795.550000,7818,2955,92.957886,166.750443,160.965317,152.643005,134.601685,120.791763,119.436394,115.337219,112.725647,114.180199,110.295898,123.147141,140.196716,157.378540,168.246307,179.444656,174.923996,160.246307,139.428116,119.229782,107.213257,103.328957,97.345482,71.601685,56.643002,76.386810,95.072762,70.386810,33.023159,13.575225,8.849607,7.702491,8.781834,7.679353,9.494227,3.260336,0.118182,0.082645,0.208265,0.044628,0.118182,0.112397,0.935538,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602312.155000,4612795.550000,7850,2955,91.020683,162.904953,159.475204,149.061981,131.913239,119.433907,115.136391,112.359528,109.781013,111.863663,106.128120,119.450439,137.202484,154.946274,166.037186,175.855377,173.847107,157.714874,136.252075,116.483498,105.037216,100.409119,94.500023,69.004158,54.491760,73.706635,93.417381,69.425644,30.814068,11.385967,8.590928,8.545467,6.872741,6.348773,6.317367,2.652898,1.171077,0.219009,0.023967,0.019835,0.027273,0.000000,0.237190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602318.355000,4612795.550000,7881,2955,100.610764,160.883484,157.453735,151.040512,131.941345,117.668617,114.809113,111.635559,109.139687,112.255394,107.346298,119.230598,136.428940,154.999191,166.197540,176.660355,173.230591,155.850433,134.900024,117.156219,104.999191,100.214066,93.536385,67.354568,54.106632,72.461998,94.462006,69.569443,32.767792,10.103324,8.503325,7.990921,7.209931,6.129764,6.042988,2.276865,0.392562,0.600001,0.000000,0.014876,0.000000,0.100000,0.124794,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602321.155000,4612795.550000,7895,2955,93.597534,162.746323,161.283508,151.266983,133.076874,118.142990,115.952904,112.242165,109.837204,112.572739,106.762825,118.911583,136.928131,154.366150,166.010788,177.035583,172.911606,155.663681,135.638870,115.994232,104.994232,100.423981,94.390923,67.713249,53.266960,74.374405,94.432243,68.233910,31.531425,12.384315,8.581012,9.729765,6.834724,5.726459,6.866127,1.517360,0.835539,0.242976,0.043802,0.102480,0.113223,0.000000,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602325.955000,4612795.550000,7919,2955,94.589272,168.886780,155.250443,150.994232,131.539688,115.423981,114.531418,110.581009,109.498360,111.523155,106.944641,118.622330,136.167786,154.316559,166.547943,176.465317,171.828949,155.002502,134.961166,116.713234,103.556213,98.845467,93.118202,66.134735,52.779362,72.895065,92.151253,68.052086,30.911591,11.633902,8.465308,7.933897,5.848774,5.547946,6.293397,2.679344,0.196695,0.002479,0.024794,0.094216,0.027273,0.000000,0.511571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602333.955000,4612795.550000,7959,2955,112.539680,165.200836,160.498352,149.903305,130.333069,117.333069,114.680183,110.738029,108.225632,111.944641,104.928116,118.316544,134.886795,152.118195,165.142975,176.093399,172.622314,153.804138,134.291748,115.142990,103.655388,98.696709,92.300018,65.556213,54.068611,74.738029,96.977699,70.010765,34.498371,13.245473,8.390927,9.614063,6.316543,7.305798,7.428111,3.828932,0.561158,0.361158,0.000000,0.020661,0.167769,0.000000,0.097521,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602344.355000,4612795.550000,8011,2955,103.323982,142.654556,139.852905,130.224808,114.282661,103.770264,99.522331,96.927292,94.357040,94.753738,94.555389,104.993408,124.009933,140.497528,153.340500,161.538864,160.150421,147.439682,125.191750,106.282661,93.580185,89.861176,83.472748,60.282665,45.133907,63.390106,84.257866,64.671097,28.340513,9.199190,7.588449,5.336373,6.598360,5.302491,4.320670,2.365294,0.401655,0.108265,0.171075,0.112397,0.030579,0.000000,0.208265,0.395869,2.257852,2.002480,5.315703,1.555372,1.880165,3.109917 -602357.155000,4612795.550000,8075,2955,129.512405,141.289261,140.239670,126.586792,111.181831,101.198364,96.595055,93.264481,92.148773,92.256218,92.404976,103.834724,122.041336,139.338837,152.388428,161.289261,158.528931,145.578506,122.950432,103.685966,92.925636,88.049606,83.090927,58.553734,44.793404,62.355389,83.404976,63.181835,28.277702,11.172745,7.553738,6.697532,7.800841,8.630591,10.031420,4.381828,1.086780,0.903307,0.085952,0.371075,0.282645,0.248760,0.000000,0.713225,3.995042,3.945455,3.467769,0.000000,1.746281,2.927273 -602365.355000,4612795.550000,8116,2955,144.702499,145.553726,133.479340,120.636383,104.842995,95.421501,90.388443,87.380173,86.322327,87.016548,87.636375,100.082664,115.694229,132.165298,143.867767,152.363632,148.033051,135.561981,116.033073,96.173569,84.528938,82.694229,80.181831,56.438038,40.223164,58.900841,79.644646,61.983490,28.966961,10.279355,7.289275,10.405800,7.928937,9.644641,9.151255,7.290092,1.666121,0.732233,1.138845,1.274383,0.372728,1.033886,0.176034,0.699174,12.048761,7.251240,1.704132,12.661160,3.267769,0.000000 -601595.555000,4612785.550000,4267,3005,221.612427,185.157867,142.868607,126.835541,108.463638,94.066963,93.794220,90.281837,90.050438,95.868614,91.075226,100.496696,116.091743,132.670258,147.199188,155.438858,154.323151,142.389267,124.942978,106.190910,97.480179,95.083488,90.372749,65.513237,48.728119,64.480179,81.066956,61.653736,27.314896,10.517371,8.215721,22.358696,11.181832,15.067785,18.082663,18.572742,5.224802,1.834715,1.439672,0.826448,0.887604,0.633058,0.252894,0.295868,23.377689,13.905788,12.014051,3.157026,5.673555,0.000000 -601598.355000,4612785.550000,4281,3005,203.753738,184.613251,142.704163,132.018204,111.175232,97.390091,95.844643,93.613243,93.795067,98.861168,94.604988,105.456215,123.084312,140.861176,153.109116,164.150436,162.844650,149.472748,129.481003,110.092583,100.439682,97.629761,91.200027,63.803329,47.910767,63.406628,77.497536,54.489277,26.299191,9.436378,8.290929,21.627289,10.519849,10.652081,13.676048,16.167782,3.688439,1.621493,1.135539,0.472728,0.310745,0.212397,0.778515,1.421489,8.856199,7.946282,8.761158,2.666116,3.652893,5.743802 -601601.755000,4612785.550000,4298,3005,180.657867,179.123154,145.858704,134.792572,117.048775,101.883484,100.090096,97.536377,96.271912,101.007446,98.519844,110.015717,126.825630,144.875229,157.271927,169.007462,168.238861,153.271927,131.800842,111.866951,101.933067,98.321503,93.445465,65.106628,50.461998,64.238861,76.189270,55.800842,25.470268,9.161998,8.495060,17.143820,9.274393,12.424809,13.023157,11.336375,3.199181,1.363640,1.196697,0.379340,0.377687,0.571075,0.552067,0.123141,11.396696,6.506612,0.857025,4.759505,3.608265,0.000000 -601605.955000,4612785.550000,4319,3005,181.707458,172.162003,143.740509,133.418182,115.013229,101.757050,99.740517,99.889267,98.186798,102.335556,100.310768,110.757050,128.847946,146.393402,159.500839,170.798355,170.914062,155.484314,132.856201,113.790092,103.079353,100.484322,95.236382,65.872742,50.492584,66.352081,78.509109,57.484318,25.071093,9.462826,8.657870,16.513243,8.266129,12.418198,13.499190,9.086788,3.455379,0.432233,0.658680,0.232232,0.282645,0.256198,0.624795,0.000000,3.170248,4.820662,4.471901,1.580992,0.000000,1.991736 -601611.155000,4612785.550000,4345,3005,149.803314,174.380981,151.124786,139.083466,122.190926,107.777702,107.083481,104.149597,104.819023,107.298363,105.670258,117.306625,134.480179,151.967758,164.240494,175.529755,174.257019,160.389252,139.025620,118.471916,107.430588,104.480179,97.736374,69.637199,53.951260,68.025642,81.860336,58.744648,26.257046,10.131421,8.885143,13.636380,8.647949,9.750429,10.561999,5.164471,1.314879,0.336365,0.159505,0.173554,0.000000,0.252066,0.255372,0.000000,3.041323,1.011570,0.000000,1.538843,0.000000,0.000000 -601616.155000,4612785.550000,4370,3005,188.013229,179.506622,149.341324,141.019012,122.481827,110.531418,109.415718,106.878525,105.498360,109.415718,106.853737,117.746292,135.994217,153.481827,165.291748,175.564468,174.861984,161.258682,138.936371,119.415710,108.704971,104.795876,98.300003,70.564484,54.919853,69.465309,83.027298,61.068615,28.750431,10.931420,8.936382,14.238033,10.086791,10.129766,13.321504,7.285135,1.666946,0.907440,0.623143,0.400827,0.233885,0.661158,0.724794,0.000000,5.514050,3.150414,2.713223,2.427273,0.000000,5.614876 -601623.155000,4612785.550000,4405,3005,127.728943,161.775208,149.130585,139.808273,121.601669,110.932243,110.097534,105.758690,106.990097,108.676048,107.593407,119.081009,136.419846,153.585129,165.436371,175.742157,173.568604,161.824799,138.535538,117.998360,106.725632,104.353737,97.345467,69.634727,54.163654,67.841339,81.560356,59.221512,26.304152,11.564481,8.849607,10.276875,8.184311,8.363649,8.823980,4.412404,1.146284,0.282645,0.373555,0.169422,0.054546,0.023141,0.109091,0.000000,2.101653,2.289256,2.121488,0.752066,0.000000,0.000000 -601633.755000,4612785.550000,4458,3005,104.742989,159.028931,150.458694,136.119858,122.185966,109.822319,109.095047,104.657036,103.880173,105.847115,105.847115,117.301659,136.169434,151.590912,163.648758,174.615707,172.309921,159.756195,138.632233,116.483482,105.020668,102.623978,95.409096,66.962830,50.913242,65.293411,80.466949,60.516548,25.714893,10.328943,8.673573,7.333070,6.024806,8.184311,7.445467,3.433889,1.110746,0.261158,0.000000,0.116529,0.038017,0.000000,0.000000,0.000000,1.004959,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.555000,4612785.550000,4512,3005,103.381004,150.214066,151.164490,138.247131,123.090103,112.916550,110.346298,108.189278,106.759521,108.238853,108.304970,119.577705,138.181015,154.718201,166.751266,175.784317,175.321503,162.495056,139.453735,118.990929,107.304970,103.065300,96.718193,69.081841,53.296715,66.503319,84.147942,62.081837,29.247128,10.703324,8.792582,8.663650,6.638857,7.609929,7.314062,2.616534,0.678513,0.126447,0.095042,0.204133,0.032232,0.009091,0.000000,0.000000,0.000000,0.000000,0.580992,0.790083,1.032232,0.000000 -601648.355000,4612785.550000,4531,3005,96.168610,151.453735,151.503326,137.114899,122.271919,111.668617,110.131424,106.866959,106.214066,106.486794,107.726463,119.495064,137.660355,153.792587,165.941345,175.362823,174.023987,161.296707,138.693405,117.999191,106.437210,103.875229,97.718201,69.164482,53.577709,65.280182,82.850433,60.825642,26.573570,10.802496,8.883492,8.033895,5.983486,8.400013,6.404142,2.717361,0.224794,0.064463,0.176034,0.000000,0.084298,0.060331,0.000000,0.000000,1.062810,0.000000,0.960331,0.795868,1.083471,0.000000 -601654.555000,4612785.550000,4562,3005,109.900841,152.397522,151.504959,138.976028,123.257034,113.728111,111.281830,109.058693,107.909927,108.620674,109.546295,120.637199,139.620651,155.538010,167.529770,177.157867,175.909927,162.480179,140.546280,118.579353,106.967781,104.223976,97.281830,70.595879,54.083492,68.025635,83.901665,61.141342,26.339691,10.742992,8.843821,7.482657,8.145470,7.909930,7.776046,4.142983,0.450414,0.205786,0.075207,0.161984,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.871074,0.000000,0.000000 -601657.755000,4612785.550000,4578,3005,97.014900,148.757858,149.179352,136.997528,123.228951,112.931427,111.683495,109.476883,108.245483,109.733086,110.171097,121.038872,140.237198,155.113235,167.807449,176.857040,174.138031,162.724808,139.204147,118.708290,107.914902,104.063660,97.881844,71.047134,54.402496,69.245483,83.923164,62.113239,27.509935,11.686794,8.898366,7.414062,8.138859,7.652079,7.207450,3.454551,0.424794,0.156199,0.316530,0.023141,0.119835,0.014050,0.321488,0.000000,0.000000,0.960331,0.000000,0.000000,0.000000,0.000000 -601664.555000,4612785.550000,4612,3005,102.716545,149.542160,147.847946,137.971909,122.533890,112.393394,110.765297,107.963638,107.872734,108.302483,109.401657,120.277687,138.707458,154.963654,166.616547,175.492569,175.492569,162.285965,139.566956,118.335541,106.566948,103.682648,96.963646,70.649597,52.864483,67.947128,82.963646,60.558693,25.765308,9.957869,8.814895,6.543813,6.794229,8.076872,7.271913,3.147940,0.774382,0.189257,0.190084,0.040496,0.107438,0.195042,0.000000,0.000000,0.000000,1.112397,0.000000,0.000000,1.158678,1.861984 -601667.955000,4612785.550000,4629,3005,114.569435,147.332245,150.042999,138.646286,124.191742,114.580177,111.679352,108.919022,108.629761,109.770256,111.538849,121.869431,139.200012,155.481003,167.753723,177.100830,174.852905,162.910751,139.902496,118.968605,107.919022,104.150421,98.018188,70.753731,53.968613,68.274399,81.869438,60.745472,28.957043,10.470264,8.910763,8.331417,7.560345,7.096706,9.350426,4.071908,0.781820,0.195042,0.130579,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.991736,0.000000,0.000000,2.122314,0.000000 -601673.755000,4612785.550000,4658,3005,108.670258,144.542984,149.146286,138.972733,124.774391,113.832245,112.261993,108.542984,109.162819,109.584305,110.857033,122.220673,139.658691,155.476883,168.724823,176.005814,176.038864,163.906631,141.030594,120.030586,107.947945,103.261993,98.245461,71.592583,54.666965,68.724808,84.493408,60.047127,28.476879,10.871916,8.931424,7.580179,7.853734,8.234723,6.504145,1.990915,0.612398,0.071901,0.128100,0.000000,0.061158,0.000000,0.253719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.955000,4612785.550000,4704,3005,98.809097,145.968597,148.695877,137.828110,124.538849,114.266129,111.233070,109.084305,109.059517,109.638023,110.158684,121.233070,140.505798,155.431412,167.819839,177.117355,174.547104,163.150421,139.960342,119.133896,108.109100,104.803314,96.927284,70.142159,53.935558,68.274391,82.208275,60.745472,27.142170,10.676876,8.811589,6.809929,7.579353,7.341335,5.960343,2.164468,0.523142,0.269422,0.216530,0.223141,0.038843,0.010744,0.000000,0.374380,2.072727,0.987603,0.000000,0.773554,0.000000,1.797521 -601690.155000,4612785.550000,4740,3005,97.955376,146.255386,147.197540,137.313248,123.321503,112.395882,110.949600,107.858688,107.660339,108.544640,109.032242,119.346291,136.949600,150.999191,163.222336,171.974396,169.776047,158.321503,136.114899,115.247116,104.379349,100.404144,94.536377,68.395882,52.602497,66.552910,81.255386,59.387623,26.544647,10.500018,8.594234,7.165301,7.023156,6.550424,7.086790,2.852072,0.764465,0.061984,0.084298,0.000000,0.023141,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.790083,1.976860,0.000000 -601697.155000,4612785.550000,4775,3005,105.167786,152.399185,149.490082,137.969421,123.581001,114.374390,111.952896,107.870255,109.035545,109.787613,110.134720,120.738022,138.630585,155.283478,166.597534,176.837204,174.333069,163.250427,139.556198,117.977692,106.680168,102.432236,96.754570,69.985970,53.448784,69.357872,81.746292,59.713245,27.225639,10.612413,8.795886,4.913232,7.743816,6.958689,7.045468,2.869427,0.605787,0.074380,0.135538,0.105785,0.020661,0.015703,0.000000,0.000000,1.094215,0.000000,0.800000,0.000000,0.000000,1.909091 -601701.155000,4612785.550000,4795,3005,101.419029,142.280182,147.652084,136.809113,122.974396,113.875229,110.734734,107.643822,106.900017,108.065308,108.966133,119.602501,137.999191,154.280182,165.602493,174.759521,173.610764,161.817368,138.495056,116.751259,105.825638,101.933075,95.627289,67.792580,53.181011,67.676872,81.561180,59.495060,25.470264,10.551256,8.693408,6.066127,6.124806,6.248771,6.890094,2.976040,0.673555,0.215703,0.117356,0.000000,0.137191,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612785.550000,4813,3005,110.802490,145.251236,145.887604,138.838013,123.920670,112.871086,110.895882,109.358688,109.011581,109.176872,109.705795,119.490921,137.457855,153.672729,166.209915,175.036362,173.970245,161.085953,137.565292,116.821503,105.474388,101.697533,95.309105,67.325638,52.176880,66.416542,81.937210,60.945469,26.193405,10.804976,8.664481,5.494225,6.571087,5.942159,6.654558,3.344633,0.405786,0.396695,0.371902,0.029752,0.190083,0.017356,0.000000,0.380992,0.000000,2.249587,0.937190,0.000000,0.000000,5.743802 -601708.955000,4612785.550000,4834,3005,103.785141,145.919861,146.804153,137.853745,123.771095,113.440521,111.225639,108.233910,107.746307,108.895065,109.556221,118.936386,137.308289,153.754562,165.506638,174.738037,172.283493,161.828949,137.423996,117.027298,105.390930,100.903328,95.209114,67.762833,50.911591,67.118202,83.085144,62.010761,28.473572,10.276052,8.655392,5.170257,7.174394,5.659517,7.023153,2.856205,0.631406,0.416530,0.059505,0.000000,0.070249,0.047934,0.000000,0.000000,1.068595,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.955000,4612785.550000,4849,3005,112.098366,143.335556,147.566956,138.178528,122.914070,113.996712,110.079353,107.963646,107.219849,108.451256,108.095879,118.806633,136.558685,153.368607,164.905792,173.492569,171.732239,160.418198,138.352081,116.781837,105.509102,100.757034,94.600014,67.252914,50.748783,66.823158,82.393410,60.699196,28.267786,11.352909,8.600020,5.717366,8.465304,6.724804,5.921498,3.599180,0.446282,0.289257,0.108265,0.119835,0.040496,0.062810,0.000000,0.000000,0.000000,1.102479,0.889256,0.000000,0.000000,0.000000 -601716.555000,4612785.550000,4872,3005,100.193413,149.856216,146.732224,137.839676,122.509102,113.327286,110.608276,107.162003,106.971924,107.657875,107.905807,118.641335,137.955383,152.641312,165.591736,173.261154,172.674377,160.790085,136.864471,116.905800,104.558701,100.013245,94.690933,66.228119,49.971920,67.294235,82.360352,61.004978,27.633078,10.974398,8.608283,5.542159,6.943815,7.804972,7.665300,4.483477,1.009920,0.204133,0.046281,0.000000,0.148761,0.052066,0.122314,0.604959,0.000000,1.808265,0.000000,0.000000,1.114050,0.000000 -601723.955000,4612785.550000,4909,3005,109.958694,151.009949,147.233078,138.315735,123.638031,114.472748,110.274399,108.290924,106.100845,107.538864,107.885971,118.307457,136.803329,152.588455,164.497543,173.869446,172.166962,160.737213,137.481018,116.274399,104.679359,99.968613,93.927292,66.373566,51.026463,66.266129,82.571922,61.728943,27.885971,10.355389,8.538861,6.295051,7.157864,7.229764,6.500837,2.875212,0.618183,0.281819,0.058678,0.000000,0.028099,0.377687,0.000000,0.353719,0.000000,0.000000,0.000000,0.000000,0.000000,3.827273 -601732.955000,4612785.550000,4954,3005,97.795052,145.406631,147.819855,137.381851,122.654564,113.348778,108.819855,106.671082,105.604965,107.952072,107.100838,118.175224,136.282669,151.869446,163.712418,173.051270,171.067795,159.811600,136.712418,114.803322,103.357033,98.976868,93.200005,66.026466,48.233074,63.745472,80.604973,60.175224,25.347954,9.533075,8.472746,6.090919,5.918194,6.268606,5.276044,3.167774,0.412398,0.216530,0.257852,0.164463,0.285124,0.314050,0.133884,0.000000,0.000000,0.000000,1.711571,0.897521,0.000000,0.000000 -601744.155000,4612785.550000,5010,3005,127.653732,151.952911,151.614075,142.143005,128.465302,116.316544,112.316544,110.333069,110.200844,112.828941,112.390923,123.349602,140.870255,157.167770,169.936371,178.506622,177.118210,165.547943,140.506622,117.547951,106.630592,100.490105,96.845474,67.704979,49.209110,65.638863,82.027290,60.605804,27.910763,10.317371,8.804152,4.265297,8.234724,8.013237,6.928938,3.501660,0.398348,0.571901,0.408265,0.147108,0.017356,0.353719,0.198347,0.000000,1.066116,1.009091,0.814050,3.351240,0.999174,0.000000 -601748.355000,4612785.550000,5031,3005,125.774391,151.462006,148.767776,139.338043,126.296707,115.032249,111.255394,109.544647,108.048782,110.519852,109.742996,120.147957,138.437210,154.511566,166.619034,175.040497,173.048767,162.205811,138.734726,116.709938,104.230598,99.470268,95.081841,66.461998,50.453739,65.106628,81.627289,60.982658,26.453739,11.384315,8.643821,5.242984,6.828113,6.679350,5.676044,1.614879,0.530579,0.171901,0.089257,0.000000,0.101653,0.031405,0.000000,0.000000,0.000000,0.000000,0.867769,2.511571,2.053719,0.000000 -601754.755000,4612785.550000,5063,3005,120.843811,151.409088,149.822311,141.004135,126.202484,114.235550,111.144646,108.739685,108.508278,109.946297,110.252083,119.714890,137.599167,153.913223,167.252060,175.152893,173.070251,160.838837,136.665283,115.814064,103.764481,100.210754,94.318199,66.004150,49.301670,63.400841,78.822327,60.342991,25.880184,9.857040,8.574399,3.299181,5.880177,6.057036,6.509103,1.779342,0.124794,0.088430,0.160332,0.119835,0.000000,0.100827,0.261984,0.000000,0.000000,0.000000,0.000000,1.561157,1.068595,0.000000 -601757.555000,4612785.550000,5077,3005,105.101669,146.652893,145.547943,138.574387,124.599197,116.723167,113.789284,112.285149,111.034729,113.018196,112.224808,122.400848,140.150421,155.276855,167.500000,175.037186,173.589264,161.896698,138.764481,117.202507,104.268608,101.433899,95.045479,68.012413,51.134735,65.680191,80.225632,61.399197,26.146301,10.644646,8.640515,3.800007,6.230590,4.980175,5.391745,1.951243,0.777688,0.499174,0.762811,0.363637,0.588430,0.367769,0.631406,0.000000,0.000000,1.149587,1.700000,3.920662,2.188430,0.000000 -601761.355000,4612785.550000,5096,3005,112.342987,155.393417,151.765320,142.971924,128.335556,115.153732,114.112411,110.699188,109.525635,111.955383,111.781830,122.476044,139.029785,156.285980,168.426468,176.542160,175.004974,164.128952,139.285980,117.897537,105.112411,101.178528,95.963646,68.856216,51.401672,66.128944,80.616547,60.335560,27.641342,10.289273,8.723986,3.742157,6.261169,6.377697,4.843812,1.474384,0.338844,0.374381,0.202479,0.110744,0.103306,0.028926,0.000000,0.000000,1.119835,0.000000,0.000000,0.000000,0.000000,1.841322 -601764.155000,4612785.550000,5110,3005,126.302490,160.186813,152.633087,146.087631,131.459518,117.690933,115.525642,113.046303,112.038040,114.773567,113.550438,123.715721,141.418213,158.765320,170.831436,179.219849,178.137207,165.905807,141.732254,119.715721,107.071091,102.575218,97.418198,71.038040,53.087620,67.947128,82.376877,63.095886,29.228117,11.328943,8.856217,4.771084,7.836380,7.809103,7.638031,3.570255,0.618183,0.228100,0.019009,0.122314,0.038017,0.171901,0.000000,0.000000,1.121488,0.000000,0.000000,0.934711,1.189256,0.000000 -601768.555000,4612785.550000,5132,3005,127.948784,163.427292,153.262009,144.526474,130.708282,116.956215,114.468613,112.683495,111.253746,113.807457,113.642166,123.443817,141.171097,158.162842,170.815735,178.947937,178.675217,165.311600,142.245483,118.452087,107.063660,102.063652,96.609108,69.377701,51.947956,67.427292,80.394234,61.625641,26.025640,10.671091,8.782663,4.997530,7.076873,5.553730,6.611581,3.378518,0.241323,0.298348,0.440497,0.050414,0.103306,0.028926,0.000000,0.517356,0.000000,0.000000,0.000000,0.762810,0.000000,0.000000 -601772.555000,4612785.550000,5152,3005,115.991753,163.809937,153.338852,146.578522,130.297531,118.950432,115.785141,114.041336,111.611588,115.694229,113.793404,124.611588,141.066132,160.404968,171.157043,180.041321,177.347107,165.719025,142.099182,120.661171,107.181831,102.958694,98.181831,70.768608,52.347126,67.388451,83.033073,62.198368,27.041342,10.956217,8.925639,4.700009,6.665303,6.024806,6.147119,2.231410,0.576034,0.289257,0.220662,0.061157,0.054546,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.660331,0.000000 -601776.755000,4612785.550000,5173,3005,127.214890,158.794235,157.265305,145.827286,128.455383,117.166130,116.810760,114.108276,112.223976,113.455383,113.314888,124.215714,143.794235,160.108276,171.835556,180.728119,178.480179,163.885132,140.711578,119.876869,108.422325,104.827286,99.372742,71.538040,54.794235,69.868607,84.480186,62.033905,27.323162,10.773571,9.033903,7.467782,6.307453,8.364478,6.619020,3.128106,0.152067,0.284298,0.239670,0.199174,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.955000,4612785.550000,5204,3005,104.903320,154.729752,153.977692,142.605789,126.886795,116.812408,113.597534,111.266960,110.134727,111.523155,110.118195,121.845467,140.861984,157.308273,169.159515,176.828934,175.382645,161.952896,137.349594,116.473572,105.622330,101.812408,96.209106,69.440514,51.895065,66.225639,81.944641,59.176056,25.886795,9.651258,8.746301,5.414061,5.279352,5.582657,5.456210,3.102485,0.440497,0.081818,0.088430,0.000000,0.000000,0.244629,0.000000,0.000000,1.195042,0.000000,2.914877,0.000000,0.000000,0.000000 -601785.955000,4612785.550000,5219,3005,105.616531,156.037201,154.681839,145.086792,128.037186,117.764465,115.095039,112.450417,112.020660,113.004135,111.995865,124.367767,143.012405,159.227295,170.781006,178.822327,177.028946,164.202499,139.252075,117.458679,106.574387,103.946289,98.863655,70.285141,53.648781,67.260353,84.103325,60.185970,27.822332,10.224811,8.987622,8.327287,5.216542,6.453732,5.990094,3.078518,0.206613,0.250414,0.093389,0.000000,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.755000,4612785.550000,5238,3005,119.435555,160.600830,157.014069,145.873581,129.005798,117.237206,117.385963,113.898354,111.733078,113.584312,112.848778,125.146294,142.906631,159.328110,171.468597,179.121490,177.237198,163.427277,139.815735,117.956207,106.584312,103.724808,98.972748,70.295059,53.931423,68.923157,83.402496,60.815720,26.344648,11.270266,8.997540,9.201668,6.038032,6.695879,5.480174,3.055378,0.465290,0.116529,0.142149,0.042975,0.006612,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.240496,0.000000 -601797.155000,4612785.550000,5275,3005,104.620682,168.827286,159.223984,147.133072,130.984314,118.538033,118.257034,115.265305,113.661995,115.719849,113.876869,126.050423,145.207458,161.314896,174.000824,182.695038,180.298340,166.182663,140.637207,119.554558,108.951256,105.207451,100.736374,70.951256,55.232254,69.397537,85.157867,62.314896,28.141344,10.939686,9.157870,9.976046,7.632246,7.471087,7.495881,3.416535,0.670250,0.279340,0.279339,0.000000,0.000000,0.069422,0.641323,0.000000,1.266116,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.755000,4612785.550000,5288,3005,105.782661,170.718185,161.098343,146.974396,130.825638,117.949608,118.412415,115.247124,113.354568,115.462006,114.156219,126.346298,144.106628,160.792572,173.561157,181.486786,178.883469,164.643799,139.569443,118.304977,107.114899,104.842171,98.900017,71.610764,55.238865,67.643822,85.792587,61.891758,27.048779,11.389273,8.990929,7.695881,7.361171,7.738856,8.672740,3.424799,0.300001,0.168595,0.023141,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.555000,4612785.550000,5302,3005,120.585960,167.444641,158.609924,146.246292,129.221497,119.056206,118.328934,115.709099,113.304138,115.833061,113.163643,125.304138,143.940506,162.353729,173.047928,182.196686,179.981812,165.601654,140.246292,118.444633,107.866119,105.229759,99.072731,70.700844,54.899193,68.857864,84.940514,62.014896,28.882666,10.722331,9.006631,9.622330,5.783485,5.995055,6.293400,2.627278,0.394216,0.087604,0.020661,0.000000,0.000000,0.076033,0.000000,0.000000,1.145455,0.000000,0.000000,0.000000,0.000000,2.114876 -601807.155000,4612785.550000,5325,3005,109.467781,169.698364,160.723160,149.161179,131.979355,119.053734,118.037209,116.045471,114.921501,117.466957,115.128113,126.640511,145.169434,161.797531,173.880188,182.714890,179.615723,165.409103,139.747955,119.640511,107.822327,105.276878,99.045471,71.475220,55.971096,69.260345,83.028931,61.623985,27.962830,10.981835,9.004151,10.336378,6.630593,7.390924,6.616542,2.704966,0.284298,0.085951,0.000000,0.052893,0.099174,0.000000,0.000000,0.000000,0.000000,2.406612,1.046281,0.000000,1.057851,0.000000 -601812.355000,4612785.550000,5351,3005,116.643822,176.819016,159.620667,146.364471,131.976044,115.306625,115.802490,113.777702,113.496704,116.562820,112.108276,124.447121,141.992569,159.488449,171.926453,181.066956,177.769440,162.207458,137.538025,116.942986,105.381004,102.232246,97.645470,69.091759,52.339691,68.620682,81.595886,59.645470,25.461176,9.204976,8.876880,8.042991,5.770262,5.801666,5.725631,2.858683,0.348761,0.000000,0.000000,0.049587,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.967769,0.000000,0.000000,0.000000 -601816.755000,4612785.550000,5373,3005,117.124809,176.257034,162.918198,151.033890,133.100006,119.050438,118.166138,115.777710,115.273575,118.761177,114.405807,126.223976,143.769440,162.298355,173.810760,182.290100,179.835556,164.149597,139.926453,119.174400,108.083488,104.628944,98.827293,69.810776,54.810760,69.769440,84.405807,60.347950,27.488449,11.283488,8.984318,11.680181,6.957041,6.259519,7.468607,3.045463,0.357853,0.127273,0.190910,0.166943,0.000000,0.000000,0.000000,0.000000,1.256199,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.955000,4612785.550000,5394,3005,149.751266,182.982666,161.957870,153.255386,132.883484,119.966125,118.660339,116.643814,115.552902,119.371086,114.643814,127.247116,144.875229,162.569443,175.718201,184.800842,180.362823,164.371094,140.106628,120.470261,108.247116,105.247116,100.081833,71.379349,54.982658,70.362823,85.139679,63.023983,27.839689,12.348778,9.098367,12.771916,7.182659,8.490924,6.799186,2.985956,0.566944,0.364464,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.912397,0.000000,0.000000,0.000000 -601827.755000,4612785.550000,5428,3005,142.456207,182.563629,164.480988,154.745453,134.786789,119.753738,119.365311,116.935555,115.720680,121.555389,115.125641,127.092583,144.753708,162.638016,176.216522,184.943802,179.976852,163.059494,140.522308,119.861176,108.084312,104.423157,100.200020,70.530594,54.530602,70.695885,85.183487,61.414894,26.852911,11.407455,9.109110,11.642991,6.897535,8.045467,5.773565,3.038023,0.359505,0.200001,0.079339,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.555000,4612785.550000,5447,3005,141.780182,193.251266,166.507462,156.160355,136.102493,121.631416,119.920670,117.218193,117.656212,123.590096,116.606621,128.689270,146.581833,163.953735,178.614899,186.631424,182.201675,164.358704,141.813248,121.218193,109.763649,106.102493,101.763649,70.623154,55.176880,72.474388,86.284309,60.606632,29.011589,12.976878,9.251259,13.203321,8.033072,8.185964,7.538856,4.714057,0.780167,0.186778,0.140496,0.049587,0.090909,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.355000,4612785.550000,5466,3005,129.622330,182.457031,165.308273,154.721512,135.176041,121.787621,119.316544,116.432243,116.176048,121.961174,116.952904,128.151260,147.010773,164.597534,178.027283,186.498352,181.663635,166.217361,142.233902,121.324806,108.969437,106.564476,101.936378,72.349602,55.399193,73.539680,87.250427,61.514889,30.002501,12.766132,9.266961,11.302496,6.790923,8.217369,6.837203,2.728932,0.657026,0.312398,0.092562,0.060331,0.000000,0.014050,0.000000,0.000000,2.379339,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.155000,4612785.550000,5480,3005,107.038040,150.533096,154.665329,144.888458,128.334732,119.252083,117.995880,114.392578,115.202492,115.781006,116.706627,126.574394,147.045486,163.450424,174.681839,183.095062,181.235550,167.805801,142.161194,120.177704,110.508278,105.508270,102.772736,74.458694,58.979355,72.243820,87.227287,63.962822,28.320683,12.345472,9.342995,7.789270,7.559517,7.716543,6.366127,3.361163,1.538846,0.185125,0.165290,0.000000,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601840.955000,4612785.550000,5494,3005,102.328117,150.823151,155.649597,143.839676,130.071091,120.542168,117.988449,115.839691,115.509109,116.591759,116.955391,128.244644,147.930588,164.038025,176.599991,185.409912,182.195038,168.071091,144.600006,124.104156,111.558693,109.054558,104.872742,76.434731,59.682667,75.277710,89.624817,67.947128,30.426466,13.180183,9.533903,7.428940,7.861998,9.290924,8.523982,4.221498,0.554548,0.103306,0.248761,0.042975,0.000000,0.077686,0.000000,0.000000,0.000000,1.122314,0.000000,0.000000,0.000000,0.000000 -601847.355000,4612785.550000,5526,3005,101.733070,151.725632,156.221512,143.750443,130.965302,118.138847,116.535545,114.006615,114.700836,115.436371,116.155380,127.957031,148.114090,163.593399,176.477692,183.221497,181.519012,168.419846,143.271103,122.097527,110.957031,106.775215,103.800003,74.932243,58.196716,74.014893,88.775215,65.130592,30.816549,10.528943,9.436382,6.557038,7.528113,7.952906,7.198360,3.622323,0.337191,0.021488,0.384298,0.410745,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.755000,4612785.550000,5543,3005,96.942162,149.262817,156.147110,144.213226,129.444641,119.692574,117.229767,115.039680,115.138855,116.494232,117.254562,128.502487,147.651245,164.370255,177.328934,184.659515,183.345459,169.866119,144.163635,122.742165,111.543816,108.469437,104.436378,75.502495,59.238041,74.428116,89.477699,65.047951,29.609938,13.196712,9.494233,7.396709,7.353733,6.807452,6.409104,2.661990,0.281819,0.246282,0.071075,0.048760,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.923967,0.000000,0.000000,1.935537 -601856.355000,4612785.550000,5571,3005,98.923973,151.586777,157.148758,146.148758,130.247940,119.677689,118.148758,115.537201,115.082642,116.396706,116.545464,128.338837,148.661163,164.818176,177.132233,185.322311,182.900833,170.008270,145.057846,123.099174,111.057861,108.330597,104.181831,76.892578,59.223156,75.157043,90.206627,64.983490,29.024813,13.132249,9.471092,6.190095,7.087619,6.135550,7.345468,2.823147,0.649589,0.120662,0.271901,0.124794,0.000000,0.138843,0.047934,0.000000,0.000000,1.175207,0.000000,0.000000,2.383471,0.000000 -601859.755000,4612785.550000,5588,3005,94.389267,150.131409,155.143799,145.714050,133.065308,123.437210,120.181000,118.404144,118.982658,121.189270,120.982658,132.697540,152.325638,169.970245,182.581833,190.639709,187.953735,174.978516,149.755386,127.577698,116.486786,113.015717,107.354568,79.643829,60.784321,75.123169,90.247131,65.933075,29.577703,13.300017,9.759522,5.589270,7.148775,7.100840,6.851250,3.111575,1.164465,0.452893,0.065289,0.004132,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.755000,4612785.550000,5603,3005,98.190102,152.159515,156.126450,146.233887,132.399185,121.721497,118.415710,116.928108,115.787621,117.812401,118.275215,130.142975,149.076859,167.704971,179.440506,186.936371,185.539673,171.721497,145.184311,123.597527,112.498360,107.895058,104.663643,76.870262,58.911591,73.713234,89.076874,65.440514,30.805805,12.719027,9.514894,7.810757,7.254559,6.916542,7.368607,2.485958,1.133060,0.785125,0.541323,0.357025,0.360331,0.393389,0.000000,0.050413,0.000000,1.127273,0.000000,0.000000,0.000000,0.000000 -601870.155000,4612785.550000,5640,3005,100.226463,148.514053,155.439682,143.704147,127.001671,116.183487,114.786797,112.580185,113.001671,115.200020,117.166962,127.588448,146.613235,164.638016,178.092560,186.051239,182.266113,170.067764,144.009933,122.489273,112.398361,109.646301,105.381836,77.861176,60.175224,76.662827,92.092583,65.315720,30.707457,13.815722,9.580184,6.100837,7.903321,8.433072,6.757036,5.468605,2.719012,1.522315,1.570249,1.123968,1.223141,1.404960,0.138017,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601872.955000,4612785.550000,5654,3005,95.183479,150.186783,156.269440,144.542160,128.319016,118.180183,114.591751,113.254555,113.657867,114.856209,114.988441,126.971916,146.120667,163.219849,177.054565,183.864471,181.715714,168.162003,143.624802,120.765305,109.046295,105.409927,101.054558,75.302490,56.616550,73.608276,89.310760,64.732254,28.789276,11.951257,9.186796,5.383483,7.928114,8.125632,8.809102,5.292570,2.079342,1.128101,0.863638,0.360331,0.042976,0.052893,0.000000,0.227273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601876.555000,4612785.550000,5672,3005,97.883484,146.785156,154.099213,146.677719,131.462814,120.330589,117.677696,116.115707,115.082649,117.396706,118.413231,130.776871,148.528961,166.272766,178.925659,188.256226,185.363663,172.239700,144.925629,124.495880,112.652908,108.909103,104.545471,77.297539,58.768612,74.388443,90.247940,67.000015,29.150433,13.431423,9.504152,6.194228,7.066131,7.456213,8.498361,2.521495,0.538845,0.281819,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.755000,4612785.550000,5693,3005,115.317375,151.398376,156.976883,147.299194,133.489288,122.927299,119.109116,117.894241,117.720688,119.745483,120.456223,131.836395,150.861176,169.274384,182.414886,190.704147,188.852905,175.191742,148.695892,125.852921,113.894234,111.125648,107.109116,79.018211,61.183487,76.042999,92.026466,68.166962,32.373573,14.037208,9.737209,6.678525,8.482660,7.720675,9.409103,3.208271,0.770251,0.403307,0.176034,0.109918,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.755000,4612785.550000,5718,3005,111.706627,154.214050,157.131409,145.379349,129.453735,118.982666,117.065308,114.900017,116.073570,116.329773,118.503326,129.891754,148.800827,166.999176,179.842148,187.445465,186.023972,172.354553,145.726456,121.825638,111.949608,107.990929,105.354568,76.916542,58.280186,73.809113,89.057037,64.453735,28.481012,11.923159,9.577704,5.857864,6.047123,5.738030,4.743814,2.395046,0.466943,0.037190,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,1.084298,0.000000,0.000000,0.000000,0.000000,2.039670 -601890.155000,4612785.550000,5740,3005,109.263657,154.793411,156.834732,145.281006,132.396713,120.677704,119.305801,116.917374,116.628113,120.198364,118.801666,130.834732,150.049606,169.132248,181.561996,188.429764,187.909103,173.446304,147.297531,124.752083,114.628113,109.479355,106.818199,78.140511,61.537209,75.652908,92.297539,65.950432,30.892582,13.802497,9.710763,3.752078,8.619022,5.352078,5.460343,2.006617,0.190910,0.037190,0.046281,0.133058,0.000000,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.955000,4612785.550000,5759,3005,103.330597,154.344635,155.377701,147.146286,132.807434,120.840508,119.600838,118.485130,118.997528,120.096703,121.121498,132.600830,151.204147,168.749603,183.278519,191.526459,188.501663,174.766129,147.857040,125.592575,114.807449,110.972740,108.063644,79.609100,61.658695,74.890091,90.782654,67.600845,31.047125,11.692579,9.823986,5.760343,7.421503,6.831420,6.895882,4.280172,0.447109,0.233058,0.000000,0.158678,0.000000,0.302480,0.000000,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.755000,4612785.550000,5778,3005,99.729767,152.729736,155.861969,146.853714,131.787613,120.994232,118.324806,117.514893,117.771088,120.283485,120.787621,131.341324,151.176025,168.597504,182.878525,190.605789,188.936371,175.200836,148.341309,124.754562,113.581009,110.704971,106.754562,78.440521,60.457047,75.209114,90.746292,66.076881,30.688448,11.605803,9.704978,3.948773,6.463650,6.292575,6.342161,3.407444,0.253720,0.157852,0.000000,0.052066,0.076033,0.000000,0.000000,0.367769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601901.155000,4612785.550000,5795,3005,91.527290,160.285126,157.061981,145.442154,131.227295,120.276878,119.202492,116.367783,118.433899,119.904976,120.210762,132.161179,150.962814,169.599167,182.805786,190.442154,189.004135,174.847107,148.285126,124.938034,113.913239,110.409103,107.954559,79.458694,60.541344,76.210770,89.706627,68.219025,32.475224,12.442167,9.814070,5.040508,7.475223,8.199187,7.734725,3.516536,0.480993,0.242149,0.124794,0.055372,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601906.555000,4612785.550000,5822,3005,109.115715,154.809937,156.413239,146.834732,132.966949,121.512405,120.404968,119.933891,119.305794,122.396706,122.818192,134.388443,153.586792,172.272766,184.991745,193.809937,193.000015,178.289291,151.231415,126.314056,115.421501,112.446297,107.727287,79.834724,62.793404,75.876053,90.611588,65.900848,29.041340,12.648779,9.793408,4.357036,6.723980,7.140510,6.323153,3.114882,0.571902,0.264463,0.277686,0.000000,0.000000,0.193389,0.000000,0.000000,0.000000,0.000000,0.884298,0.000000,0.000000,0.000000 -601914.755000,4612785.550000,5863,3005,116.215714,163.118210,159.787628,149.771103,136.324799,124.556206,124.010750,122.994225,123.630585,126.820671,127.514885,139.159531,157.308289,175.556198,189.878525,198.828934,197.085129,182.630569,152.498367,129.853729,118.192566,114.473557,110.845459,82.514900,63.614067,77.539673,91.820671,68.696716,32.473572,12.764480,10.076880,3.643812,6.766132,7.171915,7.289271,3.100006,0.849589,0.350414,0.334712,0.020661,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,2.801653,1.157851,0.000000 -601919.555000,4612785.550000,5887,3005,115.209114,159.187622,157.716553,148.030609,132.939682,122.733078,119.303322,117.898361,119.228943,120.823982,122.030594,133.220673,151.964493,171.030609,184.286804,193.716553,192.319839,178.344650,149.162842,126.700020,114.782661,110.452087,107.245476,81.204147,61.757870,75.534729,88.947952,67.914894,31.832249,13.058696,9.749605,4.933069,6.686791,7.012410,6.814063,2.033062,0.631406,0.880166,0.042976,0.518182,0.146281,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.755000,4612785.550000,5903,3005,119.274399,170.023148,163.072739,151.353729,135.651260,122.932243,121.287621,120.709106,121.155388,123.171913,124.221504,135.643005,153.676041,173.188431,186.461166,195.733887,193.676041,179.238022,151.361984,128.023148,116.023155,112.485962,108.345467,81.576874,62.163654,76.560349,90.634720,68.287621,31.224813,14.677703,9.849606,5.902491,7.935552,7.924806,6.039681,2.901658,0.902481,0.233885,0.000000,0.068596,0.161984,0.041323,0.000000,0.000000,2.517356,2.290910,0.000000,1.019008,0.000000,0.000000 -601925.955000,4612785.550000,5919,3005,107.610764,162.114075,158.262833,150.957047,137.783493,125.717369,125.684319,126.469444,126.907463,128.461182,128.866135,140.709106,158.659531,177.618210,190.833084,199.328949,197.783493,183.204987,155.783493,132.419846,119.229774,116.213249,111.072746,84.585144,65.403328,78.345474,92.634735,69.494240,31.874399,13.080184,10.097540,6.044638,7.465305,9.114063,7.137202,3.682651,1.162812,1.088432,0.564464,0.055372,0.027273,0.000000,0.019835,0.000000,3.011571,0.000000,0.000000,0.000000,0.000000,1.608265 -601929.155000,4612785.550000,5935,3005,122.842163,171.666122,162.790100,154.013229,138.451248,125.161995,123.963646,123.236374,123.137199,126.112411,125.732246,137.302490,156.509109,174.079346,188.079346,197.575226,195.162003,182.616547,153.814896,130.186783,117.914062,114.955383,110.781830,83.988441,64.319031,78.947121,92.525635,70.112419,31.657869,14.508283,10.071095,5.592573,7.062825,7.619023,8.152906,2.421493,1.352896,0.576861,0.290083,0.130579,0.000000,0.025620,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,1.260331,0.000000 -601934.355000,4612785.550000,5961,3005,129.531418,170.600830,157.485138,150.435547,135.047104,124.733070,122.559517,123.237198,122.468613,126.485130,125.584305,136.691757,154.468597,174.088440,186.311584,196.138031,193.369431,179.394226,152.931412,129.774399,116.526466,113.501671,110.063652,81.245476,62.542992,77.666962,90.691750,68.394234,30.121508,12.345472,10.005805,4.229762,7.978528,7.443814,6.257865,2.017359,0.425621,0.195042,0.390910,0.112397,0.488431,0.108265,0.000000,0.000827,0.000000,0.000000,0.000000,0.907438,0.000000,0.000000 -601938.955000,4612785.550000,5984,3005,115.558693,171.764481,161.838043,155.193405,137.958710,125.140511,124.636375,125.710754,126.735542,131.223145,130.785126,141.404984,159.404984,177.823151,191.209930,199.284317,198.325638,184.606628,156.320679,133.229767,121.105797,116.626457,111.981834,83.733902,65.089272,79.783485,92.598358,68.912415,30.667788,11.637209,10.180183,5.181828,7.761172,9.023980,8.288442,5.359512,2.695044,2.209093,2.111572,2.319836,1.933059,2.227274,0.289256,0.376860,0.000000,2.544628,0.000000,0.000000,0.000000,0.000000 -601941.755000,4612785.550000,5998,3005,128.526459,169.352905,166.146286,151.939697,136.857056,126.113235,123.443810,122.716537,122.162819,123.584297,123.989265,136.195877,155.129776,173.113235,185.038849,194.129776,193.501678,177.460342,150.972748,128.245453,117.666954,114.807449,109.790916,82.303322,65.542992,78.113243,91.295059,64.964478,31.303326,13.460348,9.981011,7.650427,7.898363,7.818198,6.633069,1.997527,0.717357,0.157026,0.279340,0.185951,0.000000,0.229752,0.004132,0.000000,0.000000,0.000000,2.153719,0.000000,0.000000,0.000000 -601945.155000,4612785.550000,6015,3005,110.897537,168.616562,163.971909,154.674393,136.434738,126.666130,125.889267,123.500847,124.104149,125.302498,125.054558,138.145462,155.674393,174.591766,185.385147,195.566956,193.137207,177.732254,151.004974,128.558685,118.881012,115.889267,111.600014,82.195053,66.153732,79.294228,92.327286,67.558693,30.211590,13.833076,10.145473,9.612411,7.509933,10.256214,7.269433,4.900009,1.587606,1.115704,0.464464,0.000000,0.000000,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601949.555000,4612785.550000,6037,3005,111.366959,169.138840,165.890915,153.783478,138.130585,127.370255,124.791740,123.676041,121.568604,124.915710,124.089264,136.320663,154.915710,172.452881,184.882629,194.304123,190.742142,176.899170,150.229752,128.353729,118.171906,114.618187,108.709099,82.122330,64.882660,76.841347,90.915710,66.642990,30.535555,13.400019,9.882664,7.460344,6.893403,6.720674,9.587617,2.947115,0.646283,0.168595,0.101653,0.000000,0.000000,0.141322,0.000000,0.000000,0.000000,0.000000,1.090909,0.000000,0.000000,0.000000 -601955.755000,4612785.550000,6068,3005,114.385139,174.552902,163.379349,154.197525,138.131424,125.131416,125.866951,123.924805,123.156212,124.321503,123.338028,135.974396,154.271912,171.594223,183.321487,193.495041,191.238846,176.635544,150.420670,128.280182,117.635551,115.238853,109.081833,82.313240,65.164482,78.470268,91.701675,67.081841,29.007458,13.226464,9.916547,11.106627,8.304149,7.518197,8.546293,2.669430,0.438845,0.441323,0.185125,0.206612,0.000000,0.037190,0.079339,0.000000,0.000000,0.000000,0.962810,0.000000,0.000000,0.000000 -601959.355000,4612785.550000,6086,3005,126.064468,169.638840,163.101654,152.556183,136.969421,124.043808,124.035545,122.019012,122.233894,122.671906,121.994225,134.134720,152.465286,170.903305,182.283493,192.233887,189.952896,174.771103,149.126434,127.291740,116.300003,113.696701,107.118187,79.845459,63.886795,77.118187,90.680168,65.184319,29.481838,12.356215,9.738036,9.662824,5.701666,6.984311,7.249599,2.369428,0.678515,0.142149,0.132232,0.000000,0.000000,0.337190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.955000,4612785.550000,6114,3005,119.378525,171.262817,165.238022,154.585129,137.932236,125.469437,127.403320,124.370262,123.990097,126.287621,125.031418,136.634720,154.816528,172.097534,183.709091,193.337204,190.031418,174.791748,149.676041,128.485962,116.642990,115.196709,108.709106,81.188446,64.130600,76.899185,90.874397,65.676056,30.452911,11.561174,9.882663,7.942163,7.181006,7.619022,8.324806,3.171908,0.845457,0.400000,0.253719,0.302480,0.038017,0.000000,0.000000,0.418182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.755000,4612785.550000,6148,3005,126.692574,173.777695,161.918198,151.331421,133.447113,120.405792,120.645462,118.042152,117.058685,120.688438,117.093391,129.176041,148.655380,166.126450,178.547943,188.556198,184.473557,170.027283,144.936371,124.438858,113.100006,111.785965,105.754555,79.174393,62.810760,75.192566,88.704964,63.333073,28.319855,11.410761,9.614068,7.369435,6.220674,7.905799,8.184309,3.387611,1.015705,0.619010,0.200827,0.093389,0.563637,0.513224,0.388430,0.447934,1.180165,0.000000,0.000000,1.947108,1.138843,0.000000 -601975.355000,4612785.550000,6166,3005,127.400833,179.908279,163.602493,152.767792,136.974396,122.453728,122.288445,119.866951,119.660339,123.205795,119.338028,131.585968,148.792587,167.718201,180.486801,189.412415,186.742996,171.131424,148.007462,126.420670,114.652077,112.668610,108.081833,78.329765,62.676880,76.577698,91.032242,65.387619,30.247126,11.842168,9.825639,9.865305,7.216543,8.577702,7.771914,3.178519,1.204961,0.157026,0.190083,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.859504,0.000000,0.000000 -601980.155000,4612785.550000,6190,3005,127.752907,184.033890,166.397537,154.314896,138.761169,121.571091,122.372742,119.976044,119.017365,123.166130,119.331421,131.331421,149.223984,167.124802,178.967789,189.703323,185.992569,170.141342,146.529770,125.819023,115.529762,111.653732,107.100014,77.341331,60.481838,77.399178,89.232246,64.876877,28.960352,11.218200,9.736382,11.242165,6.838857,6.924807,6.444640,3.542155,1.466117,1.255373,1.132232,0.958678,0.586777,0.332232,0.704132,0.114050,1.191736,0.000000,2.098347,0.000000,0.000000,0.000000 -601987.955000,4612785.550000,6229,3005,154.481827,194.843811,166.802490,156.166122,138.290100,123.397537,122.215714,119.447121,119.414062,124.802490,119.645470,131.992569,148.819016,167.504974,180.232239,190.149597,186.091751,170.141342,146.571091,127.347946,113.794228,111.331421,106.645470,77.473579,61.291759,78.339684,91.529762,64.885147,31.108282,12.285968,9.695061,11.488446,7.347122,8.889272,7.833070,5.411577,1.280168,0.523141,0.031405,0.042149,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,1.048760,0.000000,1.289256,0.000000 -602000.555000,4612785.550000,6292,3005,113.069435,162.172745,166.420685,154.825638,137.891754,125.486794,124.395889,121.685143,121.619026,122.627289,122.833900,134.685135,152.974396,169.875229,181.379364,190.247131,188.933075,176.313248,152.338043,129.594238,119.428940,114.718193,107.445465,81.280174,65.182663,79.263649,95.428940,68.891747,31.652086,12.692579,9.767788,5.527286,7.809933,9.594231,8.948773,3.817365,1.319837,0.756199,1.268596,0.671075,0.774381,0.184298,0.000000,0.000000,0.585124,0.000000,0.936364,0.000000,0.000000,0.000000 -602018.555000,4612785.550000,6382,3005,114.510757,158.963654,161.426453,152.583481,137.443008,127.186798,124.740517,122.881012,121.864487,123.228119,123.905807,134.748779,153.806625,170.707458,183.145462,190.352081,189.889267,176.120667,151.765305,130.633072,119.922333,115.542168,109.236382,82.525642,65.666138,80.120682,94.740517,69.600021,33.376881,10.798364,9.930597,5.999186,5.727288,6.999186,6.460344,2.515709,0.473555,0.090909,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.355000,4612785.550000,6521,3005,123.114891,157.480179,164.529770,152.199188,139.579330,129.777695,127.298363,124.918198,124.653732,125.273567,126.100014,136.752884,155.133072,170.744644,182.711578,191.711578,190.133072,178.058685,154.835556,133.521500,121.504974,117.447121,111.918198,84.405800,67.678535,83.562820,96.306625,71.075218,33.314896,12.438035,10.174399,5.600012,7.393404,6.821503,5.880178,2.817361,0.256199,0.168596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.179339,0.000000,0.000000,1.154546,0.000000 -602081.355000,4612785.550000,6696,3005,123.849609,163.667770,164.295868,152.957031,140.494232,129.965317,127.171921,126.188454,125.667793,128.519028,128.535553,138.552078,156.973557,171.775208,184.378525,192.593399,192.428101,180.469421,157.039673,135.948776,123.452911,119.651260,113.527298,86.651260,69.229774,83.642998,98.411591,73.684319,33.403324,14.119853,10.320680,5.388440,8.028114,6.757863,7.284311,2.370253,0.874382,0.240497,0.136364,0.063637,0.000000,0.174380,0.000000,0.000000,0.000000,0.000000,1.065289,1.000000,0.000000,0.000000 -602097.755000,4612785.550000,6778,3005,125.734718,178.453735,169.437210,159.437210,144.602493,131.784302,129.709930,128.015717,126.619019,129.957855,127.643814,138.023987,156.362823,172.866959,184.941345,194.338043,192.751266,181.577698,157.280182,136.412415,124.891747,120.040504,113.809105,85.643814,68.528107,84.015717,98.023979,75.222328,35.552914,15.000845,10.346300,5.742987,7.067783,8.215716,7.211584,3.098353,0.287604,0.229753,0.000000,0.004132,0.000000,0.000000,0.000000,0.011570,0.000000,0.000000,1.026446,0.000000,0.000000,0.000000 -602108.955000,4612785.550000,6834,3005,150.685120,188.073578,162.825623,156.726456,138.412399,123.941330,123.404144,121.908279,121.759514,126.569435,119.676872,131.371078,148.296692,165.263641,177.271927,187.933075,184.792587,169.990906,146.990906,128.561172,117.767776,114.214058,109.809105,80.470261,67.081833,82.255386,94.461998,67.561180,31.842171,12.459522,9.982663,11.282660,6.757039,7.899189,7.480177,4.030588,0.445456,0.282645,0.212397,0.042149,0.172727,0.000000,0.000000,0.000000,1.318182,1.314876,0.000000,1.071901,0.000000,0.000000 -602115.155000,4612785.550000,6865,3005,139.059525,183.373581,164.034714,157.398361,139.092575,128.166962,125.646301,124.084312,122.481010,127.439690,121.439690,132.191757,149.175217,166.869431,178.935562,189.621490,187.001678,170.365295,150.803314,129.894241,118.208282,116.431419,110.472748,81.332260,66.613243,83.943825,96.348778,68.819862,33.109108,13.049605,10.042994,12.259521,8.539684,7.579352,7.081004,4.636372,0.800002,0.315703,0.233058,0.000000,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.755000,4612785.550000,6898,3005,146.761993,190.163635,172.403305,161.147110,141.287613,128.543823,128.213242,124.890923,123.849602,127.081009,123.609932,135.890915,154.031418,170.576859,183.915710,193.676041,191.568604,176.138855,154.056198,132.998367,121.180183,117.973572,114.527290,83.816544,68.998360,85.857864,99.609932,71.783485,35.808289,14.512416,10.411590,12.556216,6.338031,9.361999,8.038029,3.892570,1.067771,0.510745,0.311571,0.317356,0.000000,0.000000,0.000000,0.061984,1.294215,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.555000,4612785.550000,6927,3005,106.943810,179.755371,173.333893,162.904129,146.416550,132.284302,132.573563,128.714050,128.292572,130.292572,128.011566,140.813248,160.507446,177.548767,188.689255,198.441330,197.300827,182.433060,158.449600,136.391754,124.928932,121.614876,116.763641,86.862823,70.557037,86.152077,102.680992,74.259514,35.581837,13.464479,10.614895,11.086791,8.545469,8.348775,9.241335,4.519842,0.656200,0.440497,0.056199,0.142976,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.755000,4612785.550000,6943,3005,102.719032,181.252060,174.607437,161.533081,143.979340,128.880188,131.293396,126.896713,126.227287,128.516556,127.260345,138.318176,157.541321,174.293396,186.855377,196.797516,195.615707,179.458679,157.756195,134.723160,124.425636,120.202492,115.045471,86.888435,69.871918,87.210754,103.161163,72.342995,34.095062,14.233075,10.458697,13.473571,8.268611,8.985966,6.961995,3.790916,0.800828,0.401654,0.096695,0.040496,0.000000,0.000000,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602134.155000,4612785.550000,6960,3005,113.352913,182.245453,172.030579,158.063629,141.071899,127.262001,127.361176,124.857040,123.204147,126.468613,123.179359,135.914871,155.452057,173.228912,184.923141,195.278503,192.237183,178.642136,156.212387,133.658691,122.576050,119.956215,113.245476,84.848778,68.617371,84.328117,101.410759,72.551254,34.080185,11.697537,10.295060,10.144643,8.040509,7.802493,8.590097,4.667777,1.025621,0.309092,0.048760,0.255372,0.098347,0.106612,0.035538,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.155000,4612785.550000,6985,3005,116.523987,165.961990,166.962006,156.061157,140.515701,126.813240,124.333900,120.771919,118.986801,122.201675,118.515724,129.705811,147.251236,164.069427,176.135544,185.474380,184.383469,170.267776,148.614883,127.548782,117.457870,113.044647,107.036385,81.366959,64.895882,80.945473,97.838036,73.003326,33.242996,12.157869,9.730597,4.437200,6.130592,5.290918,7.380178,1.866947,0.398348,0.051240,0.139670,0.023967,0.000000,0.081818,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.555000,4612785.550000,7002,3005,109.431419,170.109100,164.009933,154.869431,140.208267,126.836380,125.200020,120.728943,118.133904,122.175224,119.216545,130.555389,147.695877,164.249603,176.795044,185.051254,185.051254,171.009933,148.761993,128.257874,117.638031,112.985138,108.927292,81.795067,66.687622,84.357040,97.117371,72.497543,33.753738,13.457868,9.902498,5.935546,7.568610,6.634723,6.946293,2.576036,0.868596,0.801654,0.477687,0.107438,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.955000,4612785.550000,7039,3005,104.314888,163.546295,166.827286,154.678528,138.976044,125.678535,122.761177,119.992584,118.298370,119.976051,117.571098,129.248779,145.447113,162.356216,173.538025,183.719849,181.984314,169.273560,146.678528,126.744652,116.480186,111.116547,105.918205,79.174400,63.744644,81.868614,98.934731,72.364487,34.835556,13.579356,9.628945,5.560339,7.315716,6.934724,5.638027,2.574385,0.320662,0.138843,0.094215,0.161984,0.000000,0.120661,0.376860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.155000,4612785.550000,7055,3005,98.798363,162.252899,163.666122,155.980179,141.145462,127.186790,123.748772,121.211586,119.550423,121.046295,119.079353,130.723984,145.897537,162.029770,172.608276,183.525635,181.674393,169.790100,146.831421,127.600014,115.872742,112.467781,106.509102,80.748772,65.657875,83.219849,97.467781,72.881004,35.434731,12.563654,9.682664,5.853731,8.385139,7.738853,7.552080,2.838021,0.957026,0.098347,0.174381,0.052066,0.000000,0.166942,0.000000,0.000000,0.000000,4.590083,0.000000,0.000000,0.000000,0.000000 -602158.555000,4612785.550000,7082,3005,108.604156,164.560349,156.824799,153.733887,136.667786,125.593407,121.932243,118.461174,116.064476,117.378525,115.973557,126.609924,142.800018,159.295883,170.502502,182.841339,180.419861,168.700851,146.130600,125.758690,115.444641,109.775223,104.618195,78.097542,64.287628,80.295891,97.436386,71.758698,33.378529,11.757867,9.510762,5.774390,5.786792,6.316540,4.098356,2.081822,0.134712,0.000000,0.000000,0.096695,0.000000,0.128099,0.000000,0.934712,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.355000,4612785.550000,7121,3005,86.200851,154.614059,162.423981,152.903305,136.713226,126.002487,123.738022,120.101662,118.622322,119.787613,118.870255,128.795868,145.382645,162.035538,174.366119,183.704987,183.828934,171.266953,149.142975,127.985954,118.680168,112.779350,106.845467,82.167786,65.514900,82.539680,97.176048,72.407455,33.812416,12.515718,9.713242,6.166951,6.670262,6.960342,7.766953,2.528930,0.747109,0.229753,0.436364,0.140496,0.000000,0.186777,0.000000,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,3.314050 -602173.955000,4612785.550000,7159,3005,90.843811,156.124802,163.587616,153.761169,139.719849,127.777687,126.157867,123.645470,120.347946,121.951256,122.157867,132.480164,149.513229,165.827286,177.339676,186.951248,187.174393,174.447113,153.298355,132.033890,121.471916,117.827286,111.645470,85.405800,70.885139,86.199188,99.075218,74.240509,35.794235,15.032250,10.149606,6.146292,8.391752,7.583483,8.233070,3.772734,1.090911,0.096695,0.048760,0.228099,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.155000,4612785.550000,7185,3005,83.391754,155.705811,165.738861,154.780182,139.672760,128.970261,127.052910,124.986794,122.871094,123.185143,123.119026,134.209930,151.201675,166.466141,179.474396,189.317352,188.614883,177.069443,154.557037,135.557037,123.780182,119.515724,115.218201,88.788452,72.887619,87.813240,100.019852,75.829773,35.945473,14.758696,10.474399,7.847946,8.182659,7.600838,6.071911,2.170251,0.939672,0.314050,0.000000,0.123967,0.000000,0.425621,0.613224,0.437190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.155000,4612785.550000,7220,3005,90.035561,149.242172,161.134735,155.134735,140.085144,130.531418,128.159515,125.382660,123.415718,125.068611,125.523155,136.151260,153.614075,168.762833,181.209106,191.233902,191.432251,180.655396,156.804153,137.820679,126.556213,123.457039,116.118195,90.787621,75.027290,90.936378,102.432243,74.804146,35.374397,13.394233,10.556218,4.971912,8.102496,8.971917,6.609103,3.088435,0.848762,0.274382,0.060331,0.031405,0.000000,0.077686,0.357852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602193.155000,4612785.550000,7255,3005,92.271095,146.552094,159.081009,151.560349,136.849609,126.147133,122.246307,119.800026,118.808289,119.948784,120.461182,131.023163,148.188446,164.039688,176.775223,185.775223,185.328949,174.064484,151.089279,131.692581,120.386803,116.395065,111.527298,84.700851,70.089279,85.543823,99.370270,74.171921,33.725639,14.162827,10.138862,4.723151,7.753732,8.469434,6.370259,2.933065,0.938019,0.122315,0.258678,0.140496,0.109918,0.000000,0.123967,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602200.755000,4612785.550000,7293,3005,91.429771,147.586792,159.041336,150.826447,137.256210,125.471085,122.900833,119.355377,117.041328,118.355377,119.024803,128.818192,146.528946,162.504150,173.206650,182.925659,182.743835,171.619873,149.264465,128.859512,118.760338,114.595047,108.545464,81.752075,67.371918,84.826454,100.198357,74.801659,34.743816,13.036381,9.867788,5.690920,6.323981,6.387616,6.505797,2.397527,0.405786,0.000000,0.140496,0.000000,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602207.955000,4612785.550000,7329,3005,86.879356,149.573578,163.168610,147.590088,135.276047,123.804977,120.408287,116.565308,115.763657,115.689278,114.697540,126.259521,142.631424,158.408264,170.325638,179.449600,177.226471,165.408279,143.606628,124.722336,111.647957,109.276054,102.581841,77.119026,61.986794,80.565308,99.441345,72.317375,34.681011,13.266133,9.325639,6.469431,6.729766,6.735551,4.824804,1.779346,0.235538,0.212398,0.000000,0.000000,0.000000,0.244629,0.512397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.955000,4612785.550000,7349,3005,78.753738,138.357040,158.266113,148.828094,131.133881,121.257858,117.985123,114.514053,113.067772,112.166946,111.919006,121.414879,139.332230,154.092560,166.976852,174.357025,173.993378,161.423141,139.596695,120.778511,109.836365,105.646286,99.018196,72.464478,59.233078,76.737206,95.704147,72.249603,35.447956,10.749604,9.001673,4.214883,6.688446,6.001667,6.355383,2.657857,0.518184,0.000000,0.000000,0.136364,0.000000,0.000000,0.051240,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602217.155000,4612785.550000,7375,3005,92.417374,144.285126,158.293396,147.152893,134.227280,121.607445,119.128105,114.466949,113.119843,112.673561,111.268600,122.136375,140.665283,155.119827,166.475204,174.888428,172.417358,160.665283,140.863632,120.086784,109.252075,104.392570,97.954552,72.384315,59.276878,77.260345,95.938034,73.797539,35.037209,12.847952,8.904978,5.070257,6.475222,6.502493,7.276871,2.965297,0.625621,0.065290,0.040496,0.120662,0.000000,0.000000,0.415703,0.290909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.155000,4612785.550000,7415,3005,72.988441,148.352081,159.773560,146.608276,130.922333,121.550423,118.723976,114.120674,110.608276,111.252907,109.748772,121.682655,139.980179,154.790100,165.244644,174.922333,174.186783,160.252899,139.914062,119.657867,107.773567,103.682655,97.690926,71.021500,57.839691,76.988441,95.847946,72.765305,33.343819,12.329769,8.881011,4.514884,6.109932,6.655385,6.865300,2.171907,0.318183,0.171901,0.000000,0.014876,0.104132,0.055372,0.209091,0.123141,0.000000,0.000000,3.776860,3.071075,0.000000,0.000000 -602232.955000,4612785.550000,7454,3005,76.189278,143.371078,159.544632,148.643799,134.304962,123.114876,120.197525,113.164467,112.247108,111.941322,111.263641,122.313225,139.726456,155.833893,166.404129,175.966125,172.908264,161.701660,140.238846,119.304962,108.445457,103.800827,98.718185,73.271919,58.676884,77.263657,94.519836,72.437210,32.519855,11.986794,8.974399,5.110753,6.800015,7.705799,7.187615,3.012402,0.528100,0.166942,0.227273,0.065290,0.100000,0.110744,0.124794,0.423141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602243.155000,4612785.550000,7505,3005,82.656219,147.614883,160.854553,149.846283,133.044632,120.482651,118.400002,113.945457,112.796700,110.383476,110.912399,122.052895,141.127289,156.094223,166.995041,176.482651,174.557022,162.457855,140.052917,120.548767,108.862816,105.375214,98.309113,72.433075,58.094234,76.705803,94.614899,70.953735,33.714069,12.343820,8.937208,6.185960,6.508279,6.284310,7.940510,2.542154,0.924796,0.000000,0.057025,0.024794,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.355000,4612785.550000,7521,3005,101.833084,149.849609,159.816559,150.717377,134.312408,121.998352,119.543808,114.659508,113.403313,112.130592,111.576874,121.510750,141.213242,156.213242,167.147110,177.932236,174.857864,162.254547,140.527298,119.957031,109.056213,103.494232,96.345474,72.585144,58.378532,74.899193,94.155396,71.006638,32.717373,13.238034,8.758698,5.620672,5.500840,7.357039,5.572739,2.680998,0.906614,0.166943,0.107438,0.126447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602248.955000,4612785.550000,7534,3005,93.966957,148.396713,157.644638,148.834732,132.000015,120.958687,115.867783,112.297539,109.834724,109.355385,108.173569,120.801666,138.561996,154.388443,164.760345,174.512405,172.801666,159.652908,138.247955,118.628113,105.826462,102.305801,94.818199,68.462830,54.867790,73.710762,93.760345,71.950432,31.495888,10.342993,8.619854,4.376042,6.091747,5.102490,6.421499,2.310749,0.379341,0.071901,0.000000,0.085125,0.023141,0.069422,0.629753,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.155000,4612785.550000,7550,3005,93.805801,147.524811,159.376053,147.979355,131.805786,120.640503,116.004143,111.252075,109.607445,108.954552,108.516541,119.194221,138.590927,153.904968,165.136368,174.698349,173.582642,159.987610,137.458694,118.111580,106.557861,101.698357,94.136375,68.723160,54.103325,74.111588,94.805794,70.830597,31.971094,11.687620,8.557871,5.063645,6.772742,6.309103,4.971910,3.160336,0.536365,0.313224,0.107438,0.157852,0.000000,0.000000,0.274381,0.928100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.555000,4612785.550000,7572,3005,89.875229,143.503311,157.957855,144.833893,131.825638,118.999184,114.701668,111.387611,108.404144,107.238853,107.453728,118.693398,136.643799,152.503311,164.519836,173.594223,171.057022,158.685120,137.536362,118.511581,105.098358,100.742989,94.445465,67.561180,53.767792,74.974396,95.825630,72.933075,34.866966,13.373570,8.585969,6.972737,6.095056,5.552903,5.035548,2.571079,0.013223,0.104959,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602260.355000,4612785.550000,7591,3005,92.797531,147.772751,159.161179,147.219025,131.359512,118.979347,115.756203,110.979347,108.681824,107.599182,106.574387,118.351250,137.400848,153.888443,164.913239,175.822342,173.797546,159.698364,138.500015,118.285133,105.847115,101.764473,93.318192,68.582664,54.896713,74.070259,97.128105,73.657036,34.657043,12.719026,8.483490,5.061166,5.467783,7.478527,5.254556,2.503312,0.406613,0.351240,0.086777,0.140496,0.019008,0.000000,0.188430,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602264.355000,4612785.550000,7611,3005,78.119026,146.738846,156.664459,144.515701,132.127289,118.333893,116.052902,111.209930,108.466125,108.705795,107.110756,118.102493,137.135544,154.061157,163.871094,175.185150,173.350433,158.796707,137.681000,117.937202,106.780174,100.904144,94.036377,68.689270,53.714069,74.887611,93.449600,70.160339,31.482664,10.864480,8.548779,5.440506,6.397534,6.650427,6.590922,2.533890,0.485125,0.380993,0.039670,0.110745,0.000000,0.000000,0.489257,0.000000,0.000000,0.000000,1.304132,0.000000,0.000000,0.000000 -602268.155000,4612785.550000,7630,3005,89.166138,148.025650,158.860336,149.967789,134.223984,122.538040,119.885147,114.554565,112.785973,112.124809,110.901665,123.050438,141.802505,156.777695,168.670258,177.992569,176.678528,162.604141,140.802505,119.182663,107.438858,102.207458,97.190933,71.835556,57.248783,75.662003,95.248779,73.207458,31.802500,13.680182,8.835556,6.272737,6.911583,6.250426,6.147946,2.830585,0.257852,0.204959,0.102480,0.048761,0.434712,0.000000,0.678514,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602272.555000,4612785.550000,7652,3005,83.365311,152.109116,159.728958,148.092590,132.166962,119.522331,117.968613,113.026466,110.745476,110.555389,108.885971,120.654564,140.406631,156.373581,165.952087,176.051270,174.778534,160.208298,137.695892,117.208282,106.811584,101.431419,94.381836,70.390099,57.158695,74.009933,93.638031,69.687622,29.898365,11.388448,8.580185,5.184307,6.569436,6.554556,5.475218,2.695046,0.176034,0.168595,0.081818,0.029752,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602275.755000,4612785.550000,7668,3005,82.814896,156.608276,161.244644,151.162003,135.591751,124.244652,119.740509,114.988441,114.029762,113.170258,111.583481,123.170258,142.162003,157.980179,169.707458,178.790100,176.938858,162.996704,139.889267,119.170265,108.591751,103.476044,98.145470,71.889275,58.153740,74.963654,95.806625,71.054565,32.572746,12.757043,8.922334,7.019018,7.700842,7.654557,7.982657,3.275213,0.581819,0.164463,0.400827,0.035538,0.240496,0.048760,0.061984,0.455372,0.000000,0.000000,1.485124,0.000000,0.000000,0.000000 -602279.755000,4612785.550000,7688,3005,85.468613,159.104965,157.485138,148.493393,131.799194,120.270264,116.642166,111.749603,109.121506,109.071922,107.733078,120.716545,139.724808,155.286789,166.650421,176.385956,174.576050,159.600830,137.551254,117.369438,106.518196,101.592583,95.154564,69.162827,55.104980,75.055389,95.542992,71.881836,33.042168,12.295885,8.650432,7.157034,7.454560,7.245467,6.641335,2.450418,0.390084,0.283472,0.120662,0.403306,0.198347,0.000000,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602283.555000,4612785.550000,7707,3005,94.329773,154.751266,159.528122,147.726471,130.858688,117.875221,115.900009,110.990921,108.577698,107.759514,105.701668,118.453728,137.594238,153.197540,164.511597,174.362823,172.139694,157.462006,136.875229,116.387611,104.230591,99.701668,93.354553,67.569443,54.172741,73.023994,92.602493,71.486794,32.969440,12.057867,8.486796,6.280175,7.216543,5.151251,6.536374,2.978519,0.206613,0.197521,0.000000,0.130579,0.000000,0.000000,0.199174,0.345455,0.000000,0.000000,1.728099,0.000000,0.000000,0.000000 -602289.555000,4612785.550000,7737,3005,86.476875,159.452072,158.088440,150.493393,132.088440,119.080185,116.757866,112.212418,109.683487,109.782661,106.385971,119.303322,138.096710,154.419022,165.617371,175.394226,172.815720,158.394226,137.675217,116.724808,104.823982,101.063652,94.245476,67.947952,54.633911,72.600845,95.055389,71.385971,33.986801,11.758696,8.567788,7.817366,6.783485,7.325634,6.197533,1.957856,0.429753,0.238843,0.000000,0.017356,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602294.555000,4612785.550000,7762,3005,80.135567,153.127289,157.416550,150.780182,132.656219,118.970268,117.672745,112.523994,110.507469,111.482674,108.416557,119.879356,137.416550,155.011597,166.664490,177.466141,172.705811,157.391754,137.416550,118.193405,104.970276,101.482674,96.218201,68.689270,54.317371,72.424805,94.036377,70.697533,32.266136,12.979357,8.747127,8.466127,8.380181,7.285964,5.169432,2.459509,1.190085,0.009918,0.126447,0.000000,0.218182,0.000000,0.000000,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602298.355000,4612785.550000,7781,3005,87.870277,162.688446,159.225647,148.473572,131.457047,117.043831,115.779373,110.655403,110.647141,110.481850,106.928131,118.151268,136.663666,153.490112,164.184326,175.316559,172.655396,156.581009,134.795883,116.283501,104.159538,100.109947,93.754578,67.275230,53.539696,71.804161,93.465317,69.275238,30.458694,10.269439,8.523159,7.590919,5.426459,6.552906,6.885135,2.615707,0.355373,0.000000,0.000000,0.226447,0.031405,0.000000,0.039670,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602301.755000,4612785.550000,7798,3005,103.845474,163.465332,160.432251,151.242172,131.316559,118.333084,115.994240,112.862007,110.192581,111.936386,107.498367,118.779358,138.076889,154.564484,165.547958,176.068619,172.547958,158.126465,136.638885,116.167793,105.043823,102.019028,93.936386,67.151260,53.076878,73.333092,92.886803,69.514908,31.845474,11.219851,8.539689,8.354556,5.434724,5.823153,6.532242,2.414881,0.209092,0.000000,0.000000,0.155373,0.000000,0.000000,0.338017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602304.555000,4612785.550000,7812,3005,93.881844,159.427292,157.468628,153.361176,133.551270,119.402504,116.071930,112.352921,109.311600,110.518211,106.204155,118.981018,136.534729,154.931427,164.385971,175.534729,171.972748,154.873581,135.832260,115.642174,102.848785,98.823990,92.154572,66.047127,52.890106,71.262009,92.435562,68.319862,29.526466,10.433902,8.377705,7.583482,5.669434,7.277700,7.541333,2.367773,0.658679,0.076860,0.128099,0.081819,0.000000,0.000000,0.266943,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602307.355000,4612785.550000,7826,3005,100.581009,155.742188,160.188446,151.196716,134.684326,119.948776,116.626457,112.254562,110.006622,110.543816,107.295883,118.899185,136.742188,153.957047,165.593414,177.023148,171.626450,156.932251,136.998383,117.246292,106.642990,101.535553,95.709106,68.204971,55.204971,73.428116,95.114067,71.114067,32.262829,12.385967,8.700845,11.624807,7.742164,8.170263,8.622327,3.797528,0.450415,0.076860,0.033058,0.000000,0.000000,0.000000,0.426447,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602310.755000,4612785.550000,7843,3005,85.505806,162.332260,159.018204,151.481018,133.993408,120.191750,116.737206,112.200020,110.109108,112.555389,107.770264,120.208282,138.133911,154.456223,166.390106,176.613251,171.927292,156.687622,136.555405,116.968613,103.935555,101.001671,95.472748,68.092583,54.431423,74.985138,93.704147,70.191750,32.398365,11.438861,8.679358,7.905797,6.482659,6.835550,7.967780,2.899180,0.730580,0.269422,0.000000,0.119835,0.000000,0.000000,0.401653,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602316.355000,4612785.550000,7871,3005,94.324814,159.002502,162.407455,149.589279,131.721512,119.010773,115.151268,111.622345,109.027306,112.357880,107.432259,118.804161,136.440521,155.217377,167.176056,177.994232,173.820679,156.828949,136.333084,116.448792,104.671928,99.729774,93.572746,67.052086,53.638863,75.399193,96.399193,71.085144,35.399193,13.661174,8.506630,11.109930,7.371915,8.671914,7.001664,3.176865,0.771076,0.160331,0.168596,0.153719,0.000000,0.056199,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602323.555000,4612785.550000,7907,3005,108.519852,167.478516,159.081818,152.131409,131.057037,118.329773,115.106628,111.321510,109.470268,112.635559,106.908287,119.800842,137.263641,154.544632,168.329758,178.759506,174.619019,157.552902,136.718185,117.081841,104.875229,101.833900,94.990929,67.338043,53.800846,74.809113,95.528122,71.222336,32.982666,14.408283,8.635555,8.632242,7.180178,5.503315,8.472740,2.052070,0.768596,0.107439,0.000000,0.000000,0.000000,0.223967,0.279339,0.060331,0.000000,0.000000,1.142149,0.000000,1.924793,0.000000 -602333.755000,4612785.550000,7958,3005,119.502502,139.634735,142.593414,130.031418,114.601669,104.750427,99.857872,96.866135,94.775230,95.353745,94.957047,106.692574,125.097534,141.998367,153.643005,162.535553,160.742172,147.122330,125.700844,105.899185,94.948784,89.568619,82.981842,60.238045,45.403324,63.824818,85.725639,64.932259,29.112417,11.032248,7.543821,4.051248,5.884309,6.350427,5.112406,2.000005,0.239671,0.513225,0.291736,0.233058,0.000000,0.000000,0.361984,0.346282,2.164463,1.328926,0.000000,0.000000,1.782645,3.107438 -602340.755000,4612785.550000,7993,3005,117.326469,144.392563,141.756195,132.012405,115.954552,104.830589,101.929764,97.797539,96.351257,97.152908,95.871918,108.442154,126.351250,144.194214,155.921494,165.880173,163.797516,149.838837,127.152901,107.524803,96.524811,91.995880,87.409119,62.235558,47.351261,66.028946,86.326462,64.640518,30.252083,10.356215,7.946300,6.090093,7.095880,7.373567,7.617367,4.289264,1.291739,0.113224,0.392563,0.022314,0.095042,0.070248,0.206612,0.555373,2.253719,0.000000,0.000000,1.432232,0.000000,0.000000 -602349.155000,4612785.550000,8035,3005,126.551247,143.352905,137.443817,126.063644,113.005798,101.195877,97.022324,93.981003,92.799187,92.865295,93.534721,105.881828,124.038849,141.047119,153.898361,163.600830,161.195877,147.790924,125.956207,103.997528,93.939682,89.121498,85.609100,61.452087,45.600849,65.038864,83.336372,64.030602,27.446301,9.702497,7.782664,5.891748,7.371913,6.942160,8.159517,4.283480,0.738845,0.299174,0.760334,0.259505,0.092562,0.000000,0.058678,0.337191,4.334711,1.860331,3.563637,2.890909,3.423967,2.930579 -602356.755000,4612785.550000,8073,3005,151.200012,136.902496,128.695877,118.026459,103.158684,90.464470,86.125633,83.902489,82.530586,82.282654,83.042984,93.563644,110.009926,124.811577,133.786789,141.340500,138.373566,128.332245,109.530586,92.257858,83.084305,80.596703,78.745461,55.266136,39.216549,58.745472,80.985130,64.266136,26.447956,8.161999,7.158697,7.949600,6.974391,9.614062,9.980179,6.389267,1.965294,0.990912,0.609918,0.119009,0.223967,0.428100,1.081819,0.066942,6.108265,10.976860,8.185124,7.984298,7.672728,8.161984 -601573.155000,4612775.550000,4155,3055,167.895889,136.242981,115.474388,103.052902,89.366959,78.970261,76.143829,73.614906,73.300858,76.970268,77.383484,87.226456,105.234718,121.325630,133.780182,144.953735,144.705811,135.317383,114.284309,95.375229,85.573563,81.829765,77.309105,51.953739,33.738861,50.771919,66.978531,51.061176,20.879356,6.372738,7.028118,14.044644,11.262000,12.343819,16.660347,16.990925,7.578524,2.703312,2.737195,1.552069,1.168597,2.212399,5.448764,2.881822,53.276867,45.367783,29.074387,25.623150,24.095873,31.717360 -601576.555000,4612775.550000,4172,3055,165.086777,140.376038,118.995880,106.896706,92.822327,81.285141,77.954559,76.921501,76.367783,79.103325,80.095055,90.673569,108.012405,125.309929,138.392563,148.516525,150.657028,141.780991,117.871910,97.781006,87.475220,84.466957,78.318199,52.392582,35.954571,52.772747,66.524811,49.657043,21.770267,7.049599,7.119853,10.711586,10.304148,12.715719,16.231422,16.277702,7.161167,2.427277,3.249591,0.782647,1.766119,2.053723,1.866943,2.828930,42.771080,37.452900,24.597525,16.641327,22.409096,28.013226 -601580.355000,4612775.550000,4191,3055,160.451248,157.203323,134.914047,121.847954,106.294228,94.459518,91.327293,90.368614,89.434731,93.591759,91.996712,102.608276,120.211594,137.699188,152.360336,162.162003,162.525635,151.988449,129.310760,108.757050,97.071091,94.327293,88.327293,60.707458,43.757042,59.608280,73.988449,55.252911,22.814896,9.072742,8.029772,10.631420,9.005801,7.873568,12.261173,10.007450,2.385955,0.766117,0.930580,0.594216,0.569423,1.802482,2.076035,1.637194,19.928928,19.769426,12.989258,10.308267,7.775208,10.715703 -601584.755000,4612775.550000,4213,3055,140.397537,179.504974,154.017365,143.314911,124.033897,112.488441,109.843811,107.100014,106.926460,113.529762,108.025635,118.827286,135.860336,153.835556,168.265305,178.637207,176.273560,162.133072,141.893417,121.347946,108.232246,107.009102,101.918198,72.571091,57.248775,72.314888,83.628937,59.918198,27.101673,12.349605,9.265309,15.587620,10.371090,8.542988,8.966131,6.009101,1.193391,0.223968,0.067769,0.001653,0.000000,0.052893,0.000000,0.000000,0.857025,2.652066,0.000000,0.505785,1.483471,1.741322 -601590.955000,4612775.550000,4244,3055,145.288452,170.847122,150.392578,140.871918,122.359520,107.888451,107.243828,105.549614,104.979362,109.847130,105.409119,117.681831,133.971100,151.946304,165.880188,176.442169,173.971085,160.012405,138.235550,118.789276,107.690109,103.227295,98.772751,68.797546,53.508286,69.557877,83.144653,58.904980,27.090927,10.406629,8.979358,13.486794,8.039684,9.523154,8.700013,4.740504,0.623142,0.268596,0.022315,0.000000,0.047108,0.052066,0.324794,0.000000,1.188430,0.000000,0.978513,0.000000,1.137190,0.000000 -601598.955000,4612775.550000,4284,3055,138.125626,166.563660,150.910767,140.224823,123.960342,109.910751,109.481003,106.456207,105.340508,109.489265,106.034721,117.365295,134.695862,153.018204,165.332260,176.332260,173.828125,161.323990,138.216553,119.712410,106.803314,104.613235,98.109100,68.547127,54.646301,67.869438,83.919029,61.398365,28.985144,11.344646,8.919027,12.885139,7.725635,9.119022,8.947122,3.868602,0.309092,0.129752,0.094216,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,1.071901,0.000000,0.868595,0.000000,0.000000 -601605.155000,4612775.550000,4315,3055,127.293396,170.155380,149.552094,140.122330,124.642982,110.238022,110.138847,106.510750,106.180168,109.122322,106.163643,117.436371,135.940521,153.204987,165.469421,176.130600,173.973572,161.221497,138.593414,119.097527,106.378517,103.328934,97.527283,69.411591,52.667786,68.378525,84.519012,61.998367,26.147127,9.829767,8.866135,12.048777,6.831420,7.691747,9.989270,4.218190,1.117358,0.171075,0.076034,0.053719,0.031405,0.009918,0.123967,0.000000,4.393389,0.000000,1.935538,0.000000,1.091736,0.000000 -601613.755000,4612775.550000,4358,3055,137.781006,163.276855,154.442169,141.202499,124.681816,111.871918,111.830597,107.946297,107.896713,110.260345,109.293404,120.772728,139.061996,155.921509,167.665283,178.045456,176.789261,162.805786,140.921509,121.260330,108.863655,106.194214,97.954544,70.838860,55.516548,70.326462,83.971092,63.161179,28.400846,11.384315,8.904978,11.080180,8.403321,7.739683,8.320674,4.147115,0.661985,0.165290,0.273555,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.867769,0.000000,0.000000,1.966942 -601617.755000,4612775.550000,4378,3055,129.148773,167.429764,151.487625,141.347122,123.859520,113.380180,112.727287,109.586792,109.206627,110.438034,109.454559,121.148773,139.454559,156.049606,167.652908,177.206635,175.545471,163.165298,139.917374,120.033073,109.462830,105.429771,98.909103,70.677704,55.562004,68.082664,83.900841,61.991756,28.293409,10.799191,8.991754,10.147122,7.286792,8.731418,7.989270,3.576039,0.727274,0.257852,0.461159,0.175207,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.823967,0.000000,0.000000 -601622.155000,4612775.550000,4400,3055,128.419022,162.578506,154.041321,142.099182,125.727287,113.950432,112.685966,110.090927,109.000015,110.652908,110.066132,121.876053,139.462830,155.876038,167.512390,178.537186,176.049591,164.074387,140.685974,120.917374,108.702492,105.429771,100.000015,71.272751,55.016552,69.867790,83.950439,62.479359,27.635557,10.342166,9.090928,8.249599,8.843818,9.461998,9.645469,3.675214,0.374381,0.140496,0.735539,0.000000,0.155373,0.061984,0.000000,0.000000,1.140496,0.000000,0.000000,1.653719,0.994215,1.890083 -601628.955000,4612775.550000,4434,3055,119.538040,157.780182,153.887619,142.176880,127.474388,116.044640,114.838028,112.400009,112.234718,112.300835,112.003319,124.242989,141.871094,158.532257,170.036377,179.796707,178.085968,166.507462,141.796707,122.449600,110.813232,107.209930,100.854553,73.895882,57.383492,70.862823,86.375221,64.920677,29.482666,12.845473,9.168614,9.465302,9.253735,8.965302,8.920675,4.538025,1.040498,0.624794,0.133886,0.038017,0.134711,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,1.773554,1.033884,0.000000 -601636.155000,4612775.550000,4470,3055,119.976044,161.804962,154.259506,141.722321,127.424812,115.788445,114.019852,111.747124,110.532249,111.895889,111.895889,123.548775,142.829758,158.747116,169.614883,179.309097,178.102478,165.581818,141.565292,120.689270,110.143822,106.127289,100.218193,73.176880,56.879356,69.259521,85.738853,62.201672,29.011589,11.937208,9.110764,9.445466,7.713238,8.612410,9.193400,3.625627,0.879340,0.421488,0.287605,0.428926,0.014876,0.000000,0.000000,0.000000,0.000000,2.280992,0.000000,0.000000,0.000000,0.000000 -601641.355000,4612775.550000,4496,3055,108.939674,151.888443,150.690094,139.623962,126.243820,114.020676,112.541336,110.004150,109.095055,110.161171,110.136383,122.210762,139.954544,155.863647,168.037201,176.400848,175.466965,163.657043,139.896698,118.524811,108.830597,104.376053,98.863647,71.004150,54.045471,68.929771,84.161171,61.095062,27.053740,10.803323,8.987622,6.838028,6.513239,6.883484,8.716543,3.592568,0.442150,0.066943,0.022314,0.000000,0.000000,0.013223,0.000000,0.000000,1.074380,1.111570,0.000000,0.000000,1.016529,1.959504 -601648.555000,4612775.550000,4532,3055,99.193405,152.606628,156.573578,142.201675,126.581833,116.201668,113.548775,109.961998,109.920670,111.234718,111.730591,123.730591,141.300842,156.714066,169.490921,178.647934,178.052902,165.019852,140.110764,119.961998,110.019844,106.714066,100.218201,72.127289,55.623161,71.028122,85.466133,62.747128,28.495060,11.406630,9.110764,8.408276,7.455386,7.430589,5.936374,2.677692,0.538018,0.472728,0.247110,0.053719,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.791736,0.000000,0.000000,0.000000 -601651.955000,4612775.550000,4549,3055,102.909927,148.300827,150.705795,139.986786,124.573570,114.110756,111.813240,109.375221,108.912407,109.614891,111.003319,121.581841,139.920670,155.490906,167.466125,176.912399,175.590088,163.953720,139.565292,118.986794,108.044640,103.920670,97.945465,70.796707,54.664486,68.532249,81.961998,60.276058,25.381838,10.098364,8.904151,6.761167,6.822328,7.763649,6.604144,2.595874,0.519835,0.000000,0.118183,0.029752,0.026446,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.014050,0.000000 -601655.555000,4612775.550000,4567,3055,93.646294,152.743820,153.611588,142.603317,128.677704,118.586792,115.553734,112.355385,112.553734,112.661171,114.041336,125.702492,143.702499,160.132248,171.115723,180.801666,179.752075,167.760345,145.314072,123.347122,111.628113,108.595055,102.818199,74.958694,58.471096,72.553734,87.330597,64.355392,29.768616,12.107456,9.347127,8.650428,8.890924,10.265302,8.565303,5.125628,0.881820,0.434712,0.403307,0.000000,0.076034,0.000000,0.000000,0.000000,1.141322,0.000000,0.000000,0.000000,2.900827,0.000000 -601661.355000,4612775.550000,4596,3055,100.151253,149.555374,150.274384,140.447937,125.985130,115.885963,113.084305,110.323975,110.067780,111.505798,112.241333,123.497528,140.985138,157.671082,170.381821,179.844635,177.836380,165.547119,141.803314,121.009926,110.042984,106.166954,101.200012,73.208275,55.547127,70.811577,83.753731,62.654564,29.348782,10.965305,9.200019,6.628936,7.176874,7.953732,7.427284,2.294221,0.821489,0.070248,0.161985,0.052066,0.026446,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.555000,4612775.550000,4617,3055,95.538864,148.718201,149.255386,140.470261,126.437210,116.619026,113.982666,110.627289,110.577705,112.321510,113.040512,122.569443,141.916550,157.329773,170.329773,179.073578,178.329773,166.304977,142.833908,120.924812,109.470268,106.701675,100.172745,72.255394,55.619022,71.346298,84.908287,61.478531,28.362829,11.496711,9.106631,8.943813,7.623982,6.765301,8.345469,3.007445,1.076035,0.748761,0.228100,0.133058,0.145455,0.161984,0.000000,0.000000,0.000000,0.000000,1.778513,0.000000,0.000000,0.000000 -601672.755000,4612775.550000,4653,3055,94.688446,147.930573,148.335541,140.748764,123.980179,115.186790,113.203316,109.649597,109.765305,111.244644,111.608276,122.823151,141.757019,156.947098,168.509094,177.922318,176.880981,164.806610,140.740494,119.963646,109.087616,105.674393,99.872742,71.575218,54.996719,70.128937,83.864479,62.773575,27.558697,10.252908,9.079358,5.783480,5.977699,6.556209,6.104970,1.361987,0.081818,0.194215,0.114876,0.000000,0.019835,0.008265,0.318182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.955000,4612775.550000,4669,3055,101.342171,148.442169,150.409103,138.384308,125.541336,115.847122,113.690102,111.590927,110.590927,112.351257,112.681831,123.128113,142.053741,157.119858,170.326462,179.028946,178.260345,165.483490,141.632248,121.161171,109.293404,106.252083,100.318199,72.177711,55.946301,70.293411,84.739685,62.268616,28.095060,10.951257,9.119854,7.660343,7.619849,6.534723,6.821500,1.976865,0.304133,0.198348,0.087604,0.178513,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.773554,0.000000,0.000000 -601681.355000,4612775.550000,4696,3055,92.671913,147.580994,148.341324,138.233887,124.746292,114.919846,112.407455,110.465302,109.291748,110.589272,111.250427,121.671913,140.663635,156.423981,168.324799,177.085129,176.440506,164.316528,140.250427,119.663651,106.985962,104.225632,98.663651,70.622337,54.101677,69.589272,83.266960,61.258701,26.002499,10.312414,8.969441,5.536374,5.823154,5.450425,7.457037,1.801657,0.353720,0.069422,0.122315,0.119008,0.052066,0.000000,0.000000,0.000000,1.074380,1.038017,0.000000,0.000000,0.000000,2.000827 -601689.555000,4612775.550000,4737,3055,99.224800,151.231415,151.487625,141.041336,126.132248,115.652908,113.975220,111.082664,110.586792,111.809937,111.991753,122.727287,141.628113,158.421509,169.669434,178.404968,177.281006,164.537201,141.652908,120.636383,109.247948,104.157043,98.909103,71.867783,55.281013,69.512413,85.743820,62.446297,28.677706,11.658694,8.991755,5.280176,6.545469,7.204143,6.517364,2.345460,0.361984,0.192563,0.142976,0.123141,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.871074 -601692.755000,4612775.550000,4753,3055,107.464478,146.113251,149.865311,139.047134,124.410759,116.501671,113.220680,110.253738,109.600845,111.749603,111.700020,122.700020,140.700027,155.881821,168.344635,176.989288,175.559525,163.989273,140.848785,119.385971,108.228943,103.609108,98.245476,69.617371,53.022331,69.303322,84.766136,61.394234,25.371920,9.898364,8.931425,5.653730,5.340508,6.694226,6.018192,2.292566,0.770249,0.196695,0.103306,0.000000,0.028926,0.022314,0.429752,0.000000,0.953719,0.990909,0.852066,0.000000,0.976033,0.000000 -601697.155000,4612775.550000,4775,3055,109.179359,141.232239,149.554565,139.885132,123.876877,115.761177,113.091759,110.017380,109.662003,110.893410,110.455391,120.976051,140.050430,155.827286,167.744644,177.223984,175.306625,163.761169,139.802490,118.637215,107.620682,103.182663,97.009109,69.529770,53.678532,68.843826,84.885147,63.232254,28.320681,11.604976,8.819027,6.990094,5.842162,6.584310,6.710755,2.056204,0.657026,0.126447,0.055372,0.107438,0.062810,0.056199,0.000000,0.000000,0.000000,0.000000,0.931405,0.000000,0.000000,1.860331 -601701.955000,4612775.550000,4799,3055,103.541328,146.680176,148.415710,138.432236,124.614067,115.523155,111.721504,109.911583,108.324806,109.333069,109.961174,120.481834,138.828934,154.498352,167.126450,175.820679,174.837219,162.498352,139.415710,118.118195,106.490097,102.729767,98.027290,68.721504,52.101677,68.275223,84.076874,62.696712,27.746302,10.776876,8.911590,5.478521,7.643816,7.842988,5.988440,3.287610,0.575208,0.003306,0.095868,0.000000,0.176860,0.091736,0.334711,0.000000,0.000000,0.000000,0.000000,1.478513,1.008265,1.864463 -601707.755000,4612775.550000,4828,3055,103.383484,145.004974,150.368607,139.087616,123.740501,114.161987,112.062813,109.376862,107.930580,109.880997,109.641327,120.600006,138.872742,154.633072,167.360336,175.244644,173.715714,162.004974,139.038025,118.046288,107.748764,101.897537,96.418198,68.732254,50.137211,67.558693,83.137215,63.087620,27.674398,10.728944,8.765308,6.785134,7.010758,7.071914,6.105795,2.042153,0.466943,0.193389,0.098348,0.116529,0.014876,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.798347,0.000000,0.000000 -601714.955000,4612775.550000,4864,3055,99.451263,148.931412,152.890091,140.228958,126.518188,116.295052,113.303314,110.245476,110.014069,110.551254,111.542992,122.038849,140.096725,155.468597,168.179352,176.567780,174.559525,163.278519,139.823990,119.171082,107.534729,103.104973,97.609108,69.385979,53.154564,69.427299,85.262001,64.361176,27.790930,11.389272,8.873572,6.358688,7.565302,7.480176,7.359515,2.576864,0.770249,0.144629,0.280166,0.257025,0.000000,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.755000,4612775.550000,4903,3055,100.635559,148.434738,147.831436,138.252914,123.732246,114.352081,110.723976,108.740509,108.211586,108.773567,109.079353,119.409927,138.558701,153.558701,165.699203,173.600037,171.930603,160.864487,137.690933,117.038033,104.905800,100.814888,95.145470,66.046303,50.641338,65.955391,82.302490,61.467785,25.994234,12.004974,8.649607,4.951248,6.457038,5.722325,5.536375,1.782648,0.895043,0.351240,0.183472,0.097521,0.025620,0.029752,0.000000,0.000000,0.000000,0.000000,1.747108,0.000000,0.000000,0.000000 -601729.955000,4612775.550000,4939,3055,99.017365,154.538849,150.001663,141.092575,125.381836,114.398361,111.993408,109.671089,108.968613,110.571922,110.456215,120.894234,138.216537,155.042984,167.580170,176.100830,173.795044,162.183487,138.770264,117.662827,106.786797,101.216545,95.927292,67.563660,51.315723,68.100853,82.200027,63.183495,28.150431,11.222332,8.720680,4.096704,7.128112,6.306623,5.749598,2.496700,0.487605,0.140496,0.063637,0.000000,0.052066,0.109092,0.000000,0.000000,0.000000,0.000000,1.776860,0.823141,0.000000,1.957851 -601733.355000,4612775.550000,4956,3055,108.651253,149.614059,150.316528,139.151245,125.076866,114.630585,111.985954,109.142982,108.399178,110.547943,109.465294,120.638847,138.192566,153.795868,166.333069,175.547943,174.258682,162.225632,139.283478,117.200836,105.870255,101.085129,94.572739,67.837212,51.225643,66.333076,82.547958,63.085144,25.696712,10.444646,8.597539,5.339678,6.848774,7.447119,5.400836,2.612401,0.370249,0.082645,0.095042,0.087604,0.019835,0.034711,0.000000,0.331405,0.000000,0.000000,1.847934,0.818182,2.053719,0.000000 -601738.955000,4612775.550000,4984,3055,117.092583,152.414062,147.761169,140.447113,126.628929,116.430580,112.232239,109.852074,108.752899,110.661987,111.356201,121.116531,139.240509,154.645462,168.174393,176.430588,174.942993,162.810760,139.719849,117.372734,106.149590,101.785965,95.918198,68.207458,51.025642,66.810768,82.967773,61.372746,27.690928,10.090100,8.719853,5.509927,7.100840,6.029763,5.958690,2.638021,0.576034,0.485952,0.286778,0.191736,0.154546,0.029752,0.257025,0.000000,0.000000,1.003306,0.886777,0.000000,2.187603,1.988430 -601746.555000,4612775.550000,5022,3055,115.661995,152.966965,146.487625,139.371918,125.859520,115.965309,113.494240,112.072746,111.138863,113.213249,112.089279,122.659523,140.041336,158.322327,169.719025,177.206635,176.115723,164.958694,140.157043,119.289276,106.925636,102.016548,96.454559,68.917374,50.848782,66.107460,82.198364,61.975227,25.413244,9.243819,8.768614,5.295876,7.225632,6.181002,6.820674,2.093392,0.562812,0.000000,0.150414,0.127273,0.059505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.305785,0.000000 -601749.555000,4612775.550000,5037,3055,115.490105,162.691742,153.666946,142.757858,128.939682,117.509926,113.741333,111.526466,109.567787,113.212410,112.766136,123.328117,141.369431,157.014053,169.369431,177.179352,176.733063,164.989273,141.088440,119.071907,106.526466,102.823982,97.154564,68.964478,51.352913,68.047127,83.154572,62.542992,27.447126,10.967787,8.832251,5.892571,7.972742,6.996706,7.028112,2.008269,0.538018,0.498348,0.033058,0.054546,0.000000,0.095042,0.000000,0.000000,1.204959,2.226446,1.011570,0.000000,0.000000,0.000000 -601753.155000,4612775.550000,5055,3055,119.733070,156.598373,152.061172,144.771927,128.408279,114.928940,111.763649,108.995056,107.986786,110.763649,109.350426,120.565300,137.681015,155.251266,166.747131,175.366943,174.226456,162.309113,137.449600,116.565300,104.416542,99.961998,94.854553,67.119026,49.333904,65.375221,80.986786,61.085964,25.763657,9.281834,8.623159,3.920668,6.484309,5.494224,4.111579,2.298352,0.780994,0.285125,0.245455,0.283472,0.025620,0.064463,0.000000,0.000000,0.000000,0.000000,0.954546,0.000000,0.000000,0.000000 -601756.155000,4612775.550000,5070,3055,135.817368,166.685150,157.817368,145.470261,130.081833,117.420670,115.734718,112.916542,112.561165,114.974388,113.569435,123.627281,142.478531,158.850433,170.850433,179.371094,178.048782,165.891754,141.420685,120.569435,108.007446,103.817368,98.990921,70.090096,53.561176,69.205795,85.147942,64.048775,28.809111,12.228944,8.999193,5.995050,8.628115,6.932243,7.009103,1.557029,1.087606,0.097521,0.176034,0.000827,0.019835,0.000000,0.000000,0.000000,0.000000,1.152893,0.000000,0.000000,1.097521,0.000000 -601758.755000,4612775.550000,5083,3055,115.409119,165.460342,153.435547,143.278519,129.336380,117.146294,115.195885,111.931419,111.270264,112.799194,112.939682,122.997528,140.427277,157.757858,169.096710,178.220673,176.700012,164.666946,139.063644,118.840508,105.906631,102.311584,95.790924,69.633911,50.956219,67.989281,83.576050,63.278534,25.782665,10.027291,8.708283,4.380172,6.129766,6.376871,5.181828,1.166120,0.063637,0.105786,0.059505,0.057025,0.041323,0.309092,0.000000,0.000000,0.000000,0.000000,0.000000,2.506612,0.000000,0.000000 -601762.555000,4612775.550000,5102,3055,116.138023,162.390915,157.473557,147.523132,133.969421,120.895050,118.804138,116.812401,115.432236,117.828934,115.886780,126.845459,144.060318,161.589264,174.068604,183.308289,180.845459,168.713226,144.324783,123.192566,108.969429,105.837196,100.663643,72.407455,54.473576,70.994232,86.514885,65.936378,29.680187,12.659524,9.151259,4.739678,7.173568,7.581005,6.763649,3.107443,0.622316,0.435538,0.192563,0.136364,0.206612,0.113223,0.208265,0.000000,0.000000,0.000000,0.000000,0.902479,1.055372,0.000000 -601767.755000,4612775.550000,5128,3055,119.397537,168.091751,159.587616,150.959518,133.802490,119.430588,117.893402,116.843811,114.438858,117.926460,116.273567,126.397537,143.992569,162.538025,174.149597,183.447113,181.075226,169.422333,143.860336,122.587616,110.174393,105.463646,100.918198,72.257050,54.752918,68.769440,85.091751,64.133080,27.529772,10.887621,9.174400,5.768605,7.702495,7.166954,7.665303,2.453725,0.190910,0.219009,0.095042,0.064463,0.195868,0.032232,0.000000,0.000000,0.000000,0.000000,0.939670,0.000000,1.248760,0.000000 -601770.955000,4612775.550000,5144,3055,107.395065,172.998367,161.254562,150.585144,135.271088,121.510765,119.585144,116.733910,114.419861,119.386803,116.568619,126.742172,143.915726,161.882660,174.940521,182.940521,181.419861,168.320679,144.328949,122.874405,110.560356,104.824814,100.709114,73.056221,54.105804,69.543823,84.246307,64.047951,28.242994,10.011587,9.155392,3.582652,6.798361,5.290919,5.011581,1.997526,0.809093,0.005785,0.062810,0.285124,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.189256,2.362810 -601774.755000,4612775.550000,5163,3055,114.133896,161.323990,159.580185,146.175232,130.976883,119.580177,118.431412,115.332245,114.175217,114.695877,114.877693,126.687622,145.786804,161.613251,173.852921,182.720688,180.811600,167.059525,142.638046,121.704140,109.770256,107.323975,100.745461,73.687622,57.142170,70.042992,87.340515,63.133907,28.384315,11.441340,9.158698,7.449601,7.532247,8.121501,6.990921,2.004138,0.314877,0.132232,0.234711,0.000000,0.000000,0.295868,0.646281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.755000,4612775.550000,5178,3055,118.389267,158.782654,157.419022,147.898361,131.691742,119.361168,118.187614,114.823975,113.939682,114.485130,115.187614,126.700012,145.493408,161.633896,173.204132,181.088425,178.898346,165.997528,141.865295,120.311577,109.427284,106.832245,99.790916,72.377701,56.741341,70.981010,85.774391,62.749603,27.840515,10.596710,9.071918,6.222327,6.744642,6.201666,6.316540,2.485957,0.595870,0.387605,0.073554,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.355000,4612775.550000,5221,3055,100.496704,169.922333,161.095886,146.029770,131.566956,120.071091,119.624809,115.657867,114.723976,115.690926,115.856209,126.732246,146.666122,162.376877,173.897537,183.674393,181.442993,167.360336,141.633072,120.757034,110.054558,105.980179,101.145470,73.624817,57.938866,71.112411,86.302490,63.120682,28.236382,11.138035,9.195062,10.716545,7.128941,6.768608,7.029765,3.052072,0.755374,0.221488,0.000000,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.155000,4612775.550000,5240,3055,106.379349,172.117371,160.042984,147.563644,131.489273,119.315712,117.786789,114.456207,115.200012,116.357033,115.522324,126.803314,144.646286,162.067780,173.183487,183.092575,180.481003,166.241333,142.166946,120.737198,108.671082,105.836372,100.472740,73.216537,55.365311,69.472740,84.985130,62.447956,27.051260,11.119852,9.133904,6.719848,5.749601,6.614063,6.240508,3.222320,0.157025,0.097521,0.000000,0.051240,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.955000,4612775.550000,5269,3055,107.939690,168.865295,160.898361,148.212402,133.030594,121.509926,120.848778,117.931419,117.567787,119.096710,117.419029,129.228943,147.245468,165.683487,176.419022,186.014053,183.443817,168.427277,144.460342,122.567780,111.303322,107.807457,102.700020,74.402504,58.377708,72.559532,87.724808,62.733078,30.286795,13.034730,9.336384,9.922330,7.107454,8.132245,7.065301,2.819841,1.152895,0.071075,0.368596,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000,0.000000,0.000000,0.000000 -601799.355000,4612775.550000,5286,3055,107.042984,164.826447,162.132248,150.190094,133.851242,119.479340,120.462807,118.000000,117.190086,120.198349,116.942146,129.925629,148.429764,164.561996,176.917358,185.785126,183.570251,168.066132,143.975220,123.165291,111.148766,108.157043,102.818199,74.322327,58.338863,71.735550,87.471092,63.000019,28.520681,12.198364,9.347126,8.893402,7.749602,8.130595,8.507451,3.663643,0.295869,0.619010,0.043802,0.206612,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.155000,4612775.550000,5305,3055,118.568611,172.552094,161.262833,149.866135,135.651260,121.213234,120.601669,118.618195,117.543816,120.469437,116.337204,129.130600,147.072754,164.444656,175.775223,185.006638,181.609940,167.188446,142.601669,122.833069,110.428116,108.609932,101.890923,73.543816,56.915722,72.593407,88.130592,63.328945,29.254564,11.888448,9.262830,8.833899,8.034726,8.009105,8.858693,2.191741,0.475208,0.175207,0.026447,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.995041 -601806.355000,4612775.550000,5321,3055,125.825638,175.800842,161.833908,151.900024,134.792587,120.181007,119.048782,118.255394,115.767792,119.065308,116.181007,127.833900,145.742996,163.685150,175.412415,184.404144,181.304977,165.982666,141.883484,120.982666,109.073570,105.858696,100.172745,71.420677,54.602497,71.941345,85.073570,62.023987,27.247128,9.614068,9.106631,9.314064,5.641336,8.853733,6.054558,2.034717,0.404960,0.109918,0.000000,0.000000,0.000000,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.755000,4612775.550000,5353,3055,135.368622,179.823135,162.178513,153.798355,134.666122,120.558693,120.434723,117.649597,116.409927,119.517365,116.360344,128.327286,145.823151,163.244629,175.707428,185.112396,181.294205,165.723969,142.236374,122.195053,109.426460,106.120674,101.600014,72.955383,55.170269,71.310760,85.608276,61.674397,28.608286,11.889275,9.236382,12.672744,6.520676,7.606626,9.185965,2.752898,1.128101,0.160331,0.075207,0.200001,0.000000,0.116529,0.000000,0.000000,0.000000,1.066116,0.000000,0.000000,0.000000,0.000000 -601815.755000,4612775.550000,5368,3055,135.236389,183.657883,162.343826,153.740524,135.773560,121.153732,119.360344,117.955383,116.095879,119.947121,116.104149,128.228119,144.674408,163.682678,175.566971,185.575241,181.327301,164.699203,141.153748,121.723976,109.699188,106.442986,100.145470,72.798370,55.773571,70.211594,86.071098,62.790100,29.294233,11.338033,9.104151,10.269438,6.410757,7.712410,7.329766,3.419015,1.245457,0.189257,0.088430,0.665290,0.267769,0.106612,0.000000,0.000000,1.174380,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.955000,4612775.550000,5399,3055,149.295044,185.914886,163.981003,151.171082,134.410751,119.675217,118.410751,115.890091,115.501663,120.171082,113.823975,126.220673,143.253723,162.997528,173.947937,184.576050,180.220673,162.055374,141.138031,118.914886,108.154556,104.708275,99.427284,70.666962,54.584320,70.633904,83.683479,59.154568,28.212416,10.452910,9.038861,9.768608,6.059519,5.754558,5.265301,3.094221,0.188430,0.165290,0.000000,0.042149,0.142150,0.000000,0.000000,0.000000,0.000000,1.175207,0.000000,0.000000,0.000000,0.000000 -601824.955000,4612775.550000,5414,3055,151.671921,188.233902,169.944641,159.118195,136.655380,123.605789,122.837196,119.564468,119.052071,125.514885,119.399178,130.614059,147.961166,166.357864,179.390930,188.746307,184.762833,167.498352,144.142975,123.225624,111.027283,108.481827,103.845459,73.258682,58.704979,75.655380,89.035545,63.688450,30.085142,13.614067,9.440516,13.946299,7.275222,8.373569,7.444642,4.307448,0.411572,0.042975,0.166943,0.000000,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.555000,4612775.550000,5437,3055,110.659515,157.292572,156.317352,146.474380,132.003311,122.003319,119.160339,117.003319,116.871086,118.433067,118.300835,129.391754,148.838013,166.689255,177.747116,186.449585,183.474380,170.069427,146.557022,124.317368,114.242989,109.532242,105.400009,77.697548,61.127293,75.846306,90.317368,67.945473,32.358700,12.810762,9.581839,7.606626,6.671915,6.116541,7.346294,2.385958,0.537191,0.298348,0.041322,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.555000,4612775.550000,5462,3055,106.282661,146.530594,156.786789,142.828110,127.588448,119.183495,117.034737,115.522339,115.109116,116.018211,116.844650,128.034729,147.323975,163.629761,176.456207,184.084305,183.042984,169.943817,145.026459,123.373581,111.514076,109.183495,103.654572,76.720680,59.687622,73.836380,88.943817,64.819855,28.596712,11.809935,9.423160,6.793403,6.559517,7.266956,6.326458,1.844634,0.660332,0.378513,0.181819,0.000000,0.000000,0.137190,0.000000,0.000000,0.000000,1.187603,0.000000,0.000000,0.000000,0.000000 -601837.755000,4612775.550000,5478,3055,95.164482,149.723145,154.888428,144.466949,130.070267,121.185966,118.392578,115.004150,115.657043,116.731422,117.450432,128.384308,148.020660,165.037186,176.417358,184.838837,183.491730,169.838837,145.475204,123.359520,112.384315,109.921509,103.409119,76.466957,59.896713,76.425636,90.880188,64.665306,29.888449,13.013241,9.400846,5.653733,6.495055,6.792574,6.669432,2.966122,0.519010,0.033884,0.202479,0.000000,0.158678,0.145455,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601840.955000,4612775.550000,5494,3055,100.735550,145.330582,152.553726,144.876038,130.206635,120.462830,119.165306,115.826462,116.561996,116.909103,117.512413,129.132248,147.983475,163.628098,176.628113,186.190079,183.933884,170.148773,145.371902,122.991753,112.140511,109.727287,105.090927,76.347122,60.809933,75.619850,90.528938,65.867783,30.239687,12.176049,9.553738,5.176870,6.456211,7.747123,8.500013,2.855380,0.364464,0.092562,0.095868,0.096695,0.045455,0.000000,0.000000,0.020661,0.000000,1.200827,0.000000,0.000000,1.147934,0.000000 -601846.355000,4612775.550000,5521,3055,102.581017,151.547958,156.085144,146.407455,130.944656,122.572746,120.870270,117.531425,117.200851,118.333084,119.729774,130.944656,150.035553,166.308289,178.357880,187.969437,185.126465,171.498367,146.870270,124.837212,114.027298,110.886795,105.663651,78.283493,62.019028,76.390930,91.498360,66.209106,32.985970,12.204151,9.605804,6.137202,5.876873,6.954561,8.476871,2.077692,0.796696,0.038017,0.027273,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.955000,4612775.550000,5539,3055,102.580185,145.726456,152.040497,141.561157,127.957863,117.577698,116.784309,114.668610,112.792572,115.172737,116.486786,127.205795,146.453720,163.660339,175.561157,184.833893,183.073563,168.321487,143.759506,123.569435,111.296707,107.916542,103.536377,77.048782,60.742992,75.776054,90.569427,65.048775,30.916550,11.652908,9.412416,5.046292,7.531419,8.452906,6.291748,1.955377,0.191737,0.040496,0.041322,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.171901,0.000000 -601855.955000,4612775.550000,5569,3055,90.102501,140.715714,147.269424,143.113235,135.129776,131.152084,129.119034,124.978531,123.928947,123.218201,123.656219,134.639694,153.879349,169.094223,183.328110,191.862808,189.829758,177.904129,154.028107,132.606628,122.515724,118.135559,114.036385,85.697540,67.866959,80.799202,94.156219,68.933075,31.672747,13.864480,10.366961,8.007451,8.127287,7.619849,8.249600,4.870255,2.373556,1.938019,2.043803,1.740498,1.234711,0.436365,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.755000,4612775.550000,5603,3055,83.455391,151.200836,155.795868,145.804138,131.754547,121.151245,119.010750,116.118187,115.969429,116.845459,117.572731,129.556198,149.085129,164.994217,178.341339,186.614075,184.721512,171.903305,145.878525,124.060333,113.812408,110.225632,105.118195,77.506622,60.283485,76.052078,89.242165,65.886795,30.498367,11.431421,9.556217,5.069432,6.951254,6.773568,7.896708,4.120671,1.184300,0.519836,0.618183,0.565290,0.000000,0.157025,0.000000,0.431405,0.000000,0.000000,0.000000,0.180165,0.000000,0.000000 -601867.955000,4612775.550000,5629,3055,103.747124,155.391754,157.854568,147.441345,133.094223,121.573570,119.937210,118.416550,117.581841,120.672745,121.350433,132.127289,150.342163,167.970261,180.623154,189.433075,188.581833,173.664490,148.036377,126.185143,115.160347,110.738861,105.945473,80.499191,61.383492,75.606628,90.796715,67.862831,30.813242,11.694232,9.631424,5.329764,8.214066,7.236378,8.271915,3.912405,0.436365,0.214050,0.000000,0.255373,0.147934,0.000000,0.000000,0.050413,0.000000,1.178513,0.000000,0.000000,0.000000,0.000000 -601870.955000,4612775.550000,5644,3055,94.381004,154.207428,155.364456,145.926453,130.761169,119.918198,117.463646,116.777702,116.810760,119.347946,119.678528,130.339676,149.835556,167.141312,180.389252,188.050415,187.653717,174.339661,148.091751,125.017357,113.182655,110.579353,106.281830,78.141342,61.967789,76.331429,91.628937,66.628944,30.331425,11.959522,9.662003,5.859517,6.826460,7.375221,6.423980,3.019842,0.660333,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.032232,0.000000,0.000000,0.000000 -601873.955000,4612775.550000,5659,3055,105.843811,152.149582,155.554535,146.876862,132.339676,122.447121,119.050423,117.777702,117.744644,120.670258,120.942986,132.480179,151.628922,169.455368,181.860321,190.736359,189.133057,176.017349,148.736359,125.885139,114.116539,111.488441,106.918198,79.166130,60.100025,75.711586,90.381004,67.496719,29.777704,11.623984,9.719853,6.193402,6.471090,7.229766,7.738030,3.047939,0.914051,0.742150,0.578513,0.079339,0.178513,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.355000,4612775.550000,5681,3055,110.807457,151.195892,154.476883,145.981018,132.179352,122.121506,120.113243,118.733078,119.237206,121.014069,122.419029,133.435562,152.782669,170.542999,183.923172,192.014069,189.972748,176.658707,149.914902,127.650429,116.063652,112.319855,108.245476,81.527290,62.909107,76.196709,90.823982,68.452904,30.411591,13.162827,9.840516,4.758689,7.323155,6.493401,6.797534,2.227278,0.594216,0.833059,0.508265,0.190083,0.097521,0.077686,0.000000,0.000000,0.495868,0.000000,0.131405,0.000000,0.000000,0.000000 -601881.755000,4612775.550000,5698,3055,111.077698,152.622330,159.498367,149.017380,132.595886,122.002495,119.333069,119.795891,119.539680,120.820679,122.481842,135.052078,152.738037,170.564468,184.159515,193.083466,190.976028,177.754547,151.704987,127.969437,117.713234,112.828941,109.100014,82.967781,62.215721,79.941345,93.620682,67.438858,33.255390,12.480184,9.918201,4.636374,8.538031,7.513235,7.485962,4.919844,1.684299,1.648762,1.212397,1.111572,0.822315,0.449587,0.718183,0.000000,0.000000,0.918182,0.000000,0.664463,0.000000,0.000000 -601885.355000,4612775.550000,5716,3055,101.726456,151.566147,153.450439,145.921524,132.681839,121.301666,118.830597,118.276878,118.111588,121.409103,123.880180,133.938034,152.805817,170.847137,184.177704,192.202499,191.896713,177.913239,150.706650,128.376053,116.500015,113.243820,107.590927,81.293404,63.285141,77.723160,91.351257,68.417374,31.078533,11.900018,9.781011,3.583482,6.566957,8.745470,8.169436,3.013230,0.399175,0.414877,0.119835,0.395869,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601888.955000,4612775.550000,5734,3055,104.704147,155.224808,159.604965,148.753723,133.323975,123.869431,121.745461,120.604965,122.257858,123.348770,124.547119,134.761993,153.877701,171.274384,186.199997,195.051239,192.390076,178.166931,152.828110,130.282654,118.166954,113.332245,110.927284,83.282654,64.447952,78.993401,92.910751,68.158699,32.762001,12.239688,10.084316,3.635547,6.681007,5.712411,6.461998,3.558685,0.211571,0.167769,0.000000,0.000000,0.084298,0.165289,0.000000,0.000000,0.000000,1.164463,0.000000,0.000000,0.000000,2.039670 -601896.355000,4612775.550000,5771,3055,104.985130,150.582642,157.086777,149.342972,134.483475,124.557869,122.541336,122.541336,123.458694,124.805801,126.706627,138.268600,156.136368,173.351242,187.896713,196.632263,195.698364,181.417358,154.334717,131.698364,118.822327,116.384315,111.863655,85.086792,64.913246,80.500015,94.177704,70.483490,31.359524,12.562001,10.169440,4.392572,7.324808,7.371089,8.373568,2.197526,0.316530,0.145455,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.355000,4612775.550000,5791,3055,108.254570,166.303314,161.270264,150.394226,135.228943,124.741348,122.295067,121.187630,121.774406,124.245483,125.195892,136.790924,155.881821,173.228943,186.700012,196.600830,194.815720,180.220673,153.567780,129.278534,118.162834,114.063652,111.518196,82.766136,64.675224,79.369446,94.609108,66.807449,31.452085,11.503325,10.138035,4.641333,7.584313,6.603319,6.997535,3.653725,0.408266,0.240496,0.000000,0.000000,0.053720,0.000000,0.000000,0.000000,0.000000,1.295868,1.032232,0.000000,0.000000,0.000000 -601906.755000,4612775.550000,5823,3055,112.010750,166.263657,158.164490,152.007462,139.627289,124.966125,123.742989,121.486786,122.123154,126.015717,125.784309,136.966141,155.462006,173.015717,187.321503,196.106628,195.032257,180.313248,154.982666,129.263641,118.850426,114.767776,112.081833,83.800842,64.230598,78.304970,92.776047,68.966133,30.420683,10.985967,10.189276,4.435546,6.377702,7.115716,5.509105,2.128105,0.718183,0.581820,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601912.155000,4612775.550000,5850,3055,114.906631,161.162796,157.559494,149.195862,136.435547,127.080185,126.468613,124.551254,122.402496,126.377701,126.162827,137.402466,154.997513,174.311569,187.790909,196.295029,194.749573,181.088425,153.898346,130.823990,119.435547,116.683479,110.972740,84.014069,65.534729,79.526466,94.138031,69.724808,30.848780,11.913239,10.088449,3.743810,8.189272,5.795053,5.632242,2.592567,0.793390,0.347935,0.109918,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.355000,4612775.550000,5866,3055,100.995064,160.858688,160.536377,151.701675,138.222336,124.271919,123.015724,121.462006,121.990929,125.594231,124.949608,136.123154,153.990921,173.420670,186.569427,195.742981,194.511566,180.181000,152.858704,131.941345,118.726463,116.346298,112.718201,82.891754,65.850426,79.412415,93.585968,71.338036,33.470268,14.092579,10.247126,6.157039,8.747949,9.583486,7.440510,3.785131,0.619010,1.124796,0.023141,0.497522,0.302480,0.000000,0.074380,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.155000,4612775.550000,5890,3055,105.348778,162.202484,154.657028,149.384293,136.524811,126.541328,124.169426,124.243813,124.491745,128.599182,127.053726,138.847122,156.615707,174.847107,189.285126,198.698349,197.326447,184.243805,158.648758,135.508286,122.400833,118.690094,114.590919,85.309937,68.384323,81.904976,95.276878,71.450432,33.169441,12.809936,10.417376,4.924805,8.527287,7.647121,7.204973,3.837196,1.088432,0.120661,0.095868,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.155000,4612775.550000,5910,3055,126.398354,168.795029,162.414871,150.514053,137.042984,122.844643,121.795059,121.133904,119.654564,123.547127,122.076050,133.067780,151.720673,170.150406,182.778503,192.290909,190.960327,177.968582,152.819824,130.472748,118.530594,114.059525,108.927292,81.753738,65.158699,79.357040,94.580177,69.811584,31.588449,12.674398,9.902498,4.037202,6.539683,7.658691,8.296707,3.909924,0.361158,0.494216,0.020661,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601927.355000,4612775.550000,5926,3055,110.046295,156.334732,154.714890,148.351257,138.161179,123.913239,123.053734,121.739685,120.681831,122.417374,120.640511,131.450424,150.326462,167.268616,179.516541,189.417374,188.111588,176.838852,152.037201,129.640518,117.301666,112.764481,108.954559,81.268608,63.037209,79.838860,94.946297,70.219025,32.648781,13.947950,9.904978,4.914062,8.118196,7.285139,8.661997,3.024800,0.627274,0.366116,0.164463,0.000000,0.027273,0.581819,0.140496,0.002480,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000 -601930.955000,4612775.550000,5944,3055,114.944641,158.159531,155.506622,149.969437,137.300003,125.754555,125.870255,124.771080,123.614059,126.738022,126.597527,138.985977,156.862000,173.514877,186.184311,194.324799,194.490082,181.151245,155.911591,134.176041,121.605789,119.126450,113.572731,85.283485,67.630600,83.283478,97.126450,72.333069,34.952915,15.713241,10.324812,6.962822,8.562825,7.516541,6.053730,3.161990,0.380993,0.435539,0.277687,0.054546,0.104133,0.334711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.385124 -601936.755000,4612775.550000,5973,3055,110.275230,166.423996,164.233887,150.919846,136.283493,125.118187,123.465294,121.300003,121.118187,120.944633,120.944633,133.506622,151.564468,168.266968,179.779358,189.812424,188.952911,174.440521,149.564468,127.853737,117.349594,114.498352,109.027290,81.440521,63.795887,78.266968,94.010757,67.151260,30.738035,12.510761,9.911590,7.345468,7.406626,7.632246,8.819021,3.235543,0.133059,0.038017,0.298348,0.000000,0.449587,0.000000,0.004959,0.153719,0.000000,1.318182,0.000000,0.000000,0.000000,0.000000 -601939.555000,4612775.550000,5987,3055,108.719849,163.515701,163.937195,151.375214,136.160339,123.821503,123.656212,119.978523,119.846291,121.557037,122.251251,132.391754,152.201660,168.813232,180.490906,189.358688,188.730576,174.581818,149.821487,128.482651,117.689270,113.838028,108.036377,81.003326,64.284325,78.242996,93.350426,67.730598,30.606630,12.685967,9.821506,7.566128,6.779352,7.457038,7.773565,2.783478,0.578514,0.268596,0.148761,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,1.166942,0.000000,0.000000,0.000000,0.000000 -601944.555000,4612775.550000,6012,3055,106.779343,159.878540,163.357880,151.828934,135.523148,123.547943,122.308273,120.258682,119.374390,119.952896,120.721497,132.283478,150.837204,166.820663,179.176041,188.762817,186.729752,173.861984,147.448761,127.324799,116.415710,113.779343,107.300003,79.457031,62.399193,78.019012,93.126450,67.465309,30.192581,12.237207,9.754564,8.276047,5.747946,6.729765,6.034721,3.102488,0.390084,0.318183,0.171901,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601948.155000,4612775.550000,6030,3055,118.269432,172.385132,167.079346,153.674393,136.492569,125.285965,124.550423,121.104149,120.558693,121.112411,121.633072,132.657867,151.467789,168.542160,180.533890,189.517349,187.599991,173.550430,148.087616,127.517365,116.542160,111.806625,108.418198,78.591751,62.682667,76.748772,91.195053,66.277710,29.335558,10.813240,9.856217,6.160344,6.507453,6.553732,8.114061,2.620667,0.932234,0.400000,0.168595,0.277687,0.052893,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,1.945455,0.000000,0.000000 -601952.355000,4612775.550000,6051,3055,100.292572,164.846283,161.664459,154.333893,138.487625,126.545464,124.727280,122.545464,122.057861,124.375221,122.961998,134.991745,153.421509,170.099182,181.652893,193.717346,191.378525,177.223160,151.818192,131.123978,119.859512,116.155380,110.072731,82.014900,66.386795,79.585129,94.246284,70.477699,32.328949,14.585968,10.006630,9.890924,7.684312,8.457039,7.892574,4.117363,0.822316,0.500001,0.484298,0.277686,0.450414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601958.555000,4612775.550000,6082,3055,132.996704,170.376862,164.500839,156.442993,138.186783,124.426460,125.682655,122.963646,121.046295,123.798363,121.484314,133.930588,152.757034,171.021484,181.591751,190.814880,190.120651,174.442993,150.616547,128.922333,119.186790,114.897537,110.145470,78.641342,65.112419,77.996712,93.930588,70.236382,33.376877,12.195061,10.013243,6.578527,5.876873,7.106626,7.546293,2.916535,0.608266,0.247935,0.219009,0.000000,0.099174,0.082645,0.000000,0.045455,0.000000,0.000000,3.155372,0.000000,0.000000,0.000000 -601962.155000,4612775.550000,6100,3055,131.937195,183.838043,165.862823,155.573578,138.829773,125.730591,125.714058,122.375221,121.557037,124.714058,122.548775,134.573563,151.424820,170.085968,181.796707,191.730591,188.482666,172.532257,150.457870,130.259521,118.160339,114.945465,109.036377,80.813232,63.317368,79.598358,95.507446,69.317375,31.499195,13.245472,9.912416,9.211585,8.562825,7.446295,7.442988,2.930587,0.271902,0.465290,0.161984,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.955000,4612775.550000,6114,3055,125.783493,181.618195,167.196701,157.477692,140.419846,127.436378,125.816551,124.155388,123.130592,125.543816,122.312416,134.965317,152.940506,171.097534,183.692566,193.130585,190.047943,175.485962,151.833069,132.163651,120.056221,116.808289,110.890930,82.907463,66.609940,81.469444,97.221504,71.824814,33.520679,15.958697,10.081012,12.404976,8.545469,9.764478,9.179354,3.495051,0.328100,0.209092,0.109918,0.098347,0.000000,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.755000,4612775.550000,6133,3055,135.110764,180.052917,166.507462,156.953735,138.267792,125.829765,124.424805,120.804970,121.705795,124.664474,121.350426,133.267776,152.259521,168.160355,180.614899,189.821503,187.540512,172.482666,148.738861,128.714066,116.714058,113.094223,108.490921,77.854553,62.350433,78.044640,92.474388,66.978531,29.383488,9.676049,9.862829,9.289272,5.369434,6.343814,7.522327,1.765295,0.278513,0.000000,0.143802,0.154546,0.000000,0.000000,0.624794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.155000,4612775.550000,6165,3055,155.180191,174.171097,160.857056,154.220688,137.270279,123.419029,122.840515,119.460350,118.782661,122.658699,118.104973,130.509933,148.419037,167.262009,179.162842,189.452087,186.914902,172.237213,148.972733,128.914886,117.956215,114.080185,109.063652,79.675224,64.733078,80.427292,93.766129,68.146301,30.691753,12.090100,9.914896,10.272743,6.242160,8.219025,7.187613,4.086785,0.560332,0.254546,0.183471,0.000000,0.018182,0.081818,0.000000,0.000000,0.000000,0.000000,1.043802,0.000000,1.200827,0.000000 -601982.155000,4612775.550000,6200,3055,172.129776,194.708298,170.766129,161.972733,143.237213,129.460342,128.204147,124.691750,124.964478,130.377701,123.352913,136.832260,154.014069,172.650421,184.352921,194.468628,192.121521,176.228943,151.576065,131.708267,119.981003,116.592575,112.063644,82.195885,65.790924,83.179359,94.509933,68.179359,33.774399,15.300019,10.187623,12.078529,10.995057,9.849605,8.746293,3.171081,1.170251,0.000000,0.332233,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.555000,4612775.550000,6252,3055,106.425636,164.855377,165.442154,154.549591,139.318176,128.640518,126.136391,123.491760,122.962837,123.235565,123.400848,135.623978,153.516525,168.995865,181.475204,189.690079,188.103302,176.260330,151.475204,130.739700,119.103333,115.607460,109.863663,81.904976,65.681839,80.797539,95.326469,69.086800,32.119854,12.967788,9.987622,7.033898,6.233898,7.248775,6.630591,2.680998,0.557853,0.211571,0.038843,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602009.555000,4612775.550000,6337,3055,107.163643,155.378540,162.742172,153.097549,138.816559,130.056198,127.485954,124.915718,124.246292,125.461174,125.899185,137.213242,155.700851,171.882629,183.246277,192.461151,191.419830,179.072723,153.535553,132.196701,120.676048,116.899185,110.709099,83.923973,67.899185,82.618187,95.626450,70.519012,32.238041,11.995885,10.064482,6.883484,7.871915,7.522328,8.021501,3.457031,0.196695,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.355372,0.000000,0.000000,0.000000,0.000000 -602036.755000,4612775.550000,6473,3055,109.242165,157.015701,164.387619,153.428940,141.858704,130.304977,128.536377,125.255386,125.288445,126.619019,126.387611,138.602493,156.164490,171.404144,184.172745,192.131424,190.800842,179.205811,154.536377,133.842163,122.437202,119.057037,112.263649,84.709930,68.280182,83.123161,97.362823,72.933075,33.181007,13.481836,10.205805,6.086789,7.363652,6.503320,6.595881,2.071079,0.532233,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.038843,1.270248,0.985951,0.000000,0.000000,0.000000,0.000000 -602073.755000,4612775.550000,6658,3055,120.071922,170.808273,170.130585,160.857864,144.700836,130.295883,128.221512,124.940521,123.899200,128.089279,128.452927,138.618195,157.568604,172.585129,185.403275,194.932220,192.899170,181.130554,157.254547,135.105804,123.626480,118.932259,114.163666,85.047958,68.535561,84.238037,98.014900,73.527298,34.808289,13.542168,10.378532,5.259515,7.235553,7.139684,7.326459,3.532238,1.790911,1.417357,1.204960,1.311572,0.096695,0.400001,0.221488,0.112397,0.000000,0.000000,1.090909,0.000000,0.000000,0.000000 -602088.555000,4612775.550000,6732,3055,108.469444,163.409927,159.955383,154.327286,141.244644,128.363647,126.760345,127.272743,128.041336,133.826462,132.008270,143.388428,159.867767,176.608276,188.327286,197.905792,195.872742,184.434723,161.393402,138.922333,125.715714,122.525635,116.509102,88.211586,71.228119,85.624817,100.294228,77.748779,35.046303,14.533901,10.591755,5.786787,8.560346,8.493402,9.338857,4.117362,1.402483,0.852068,0.335538,0.390910,0.297521,0.533885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.755000,4612775.550000,6773,3055,119.956215,181.931412,171.047134,161.890106,146.138046,133.030594,131.278534,129.534729,126.749596,131.518204,128.981003,138.733078,156.650436,173.212418,184.534714,194.005798,193.724808,181.815720,158.881851,137.005814,124.526459,120.452072,114.427284,87.088448,69.567787,84.377701,97.014061,75.063652,34.319851,12.674397,10.402499,6.146292,8.095056,6.811583,7.462822,2.614881,0.828927,0.315704,0.163637,0.197521,0.128099,0.319835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.955000,4612775.550000,6799,3055,117.411583,169.114059,174.560333,160.444641,144.411575,129.890915,128.700836,126.444641,125.188438,125.874397,126.659508,138.758682,159.180176,175.659515,187.932236,197.461166,197.014877,182.684311,157.155380,134.709106,124.626450,120.229767,116.709106,85.973579,70.353745,85.204971,101.833069,74.965309,35.535557,12.906630,10.609936,8.760345,7.060344,9.133900,9.111585,4.136371,0.819010,0.117356,0.303306,0.213224,0.000000,0.000000,0.021488,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.355000,4612775.550000,6821,3055,105.508278,172.531433,175.039688,159.775223,140.907455,129.634720,128.601669,124.816544,124.097534,125.246292,125.957039,138.998367,159.271103,175.428116,187.841324,197.725632,195.304138,181.485977,157.709106,134.047943,124.031418,119.535553,114.618195,85.221504,69.072739,84.973572,101.444641,72.097534,36.081009,12.694232,10.419853,10.171915,7.957866,8.407452,8.567780,4.136372,2.035540,1.075208,1.056199,0.300827,0.525620,0.542149,0.028926,0.000000,1.474380,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.355000,4612775.550000,6856,3055,110.014900,177.709091,174.907440,162.031418,144.469421,130.659515,130.089264,126.056213,125.428116,126.089272,124.700844,138.130585,158.519012,174.221497,185.494217,196.725632,195.064468,180.279343,156.791748,135.064484,122.816544,120.023155,116.345467,87.196709,70.147133,85.923981,103.196709,75.527298,36.295891,13.457045,10.576880,11.128116,7.228113,8.426459,9.193404,3.642156,0.717357,0.214051,0.702481,0.442149,0.118182,0.164463,0.052066,0.066116,1.561984,0.000000,4.415703,0.000000,0.000000,0.000000 -602117.555000,4612775.550000,6877,3055,118.306633,183.976044,176.579346,163.182663,145.447113,131.595886,131.579361,128.347961,126.306633,129.521515,127.058701,138.827286,159.488449,176.389267,188.182663,198.066956,195.992569,181.852081,157.653732,136.794235,124.033905,120.794235,116.190933,86.744652,70.604156,86.182663,103.835556,74.876877,35.951260,13.342167,10.562829,9.690925,7.581834,8.776050,9.706626,6.057035,0.769423,0.089257,0.050413,0.000000,0.000000,0.000000,0.000000,0.005785,0.000000,0.000000,1.188430,0.771075,0.000000,0.000000 -602124.755000,4612775.550000,6913,3055,109.636383,182.267792,178.474396,164.581833,146.193405,132.796707,132.631424,128.325638,127.672745,129.267792,127.416550,140.838043,160.379349,178.164490,188.495056,199.007462,197.800842,182.065308,159.346283,137.251266,125.647957,121.681007,115.672745,86.681007,69.738861,86.887634,102.540512,73.040512,35.871090,14.019853,10.515720,12.218198,8.116545,10.646296,12.014891,5.916539,2.386780,1.430580,0.836364,1.404134,0.663637,0.000000,0.034711,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.555000,4612775.550000,6932,3055,116.761169,177.553726,170.553726,156.628113,139.669449,127.578522,126.140503,124.710754,123.297531,125.173561,123.446289,135.016541,153.462830,171.626450,183.758682,194.246292,192.452896,177.833069,156.320663,134.552078,123.618187,121.494225,116.981827,86.031418,71.692574,88.279350,104.527290,76.973572,35.899189,14.391753,10.634729,9.761171,8.136376,7.521500,9.644642,4.555383,1.039671,0.457026,0.710745,0.264464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.271901,0.000000 -602131.555000,4612775.550000,6947,3055,110.914902,165.749603,164.666946,158.567780,140.947937,127.989281,125.138039,121.567795,119.369446,122.270271,119.419037,130.501678,147.890091,165.410751,176.733063,186.452072,183.790924,170.956207,148.104965,128.104980,117.104988,114.055397,108.245483,81.047134,65.063660,81.361183,97.336388,72.088455,33.914898,12.762001,9.840514,6.041332,6.729765,5.872737,6.759516,2.462815,0.523142,0.300001,0.188430,0.123141,0.000000,0.002479,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.755000,4612775.550000,6968,3055,115.033073,165.851257,162.396713,157.636383,140.727295,127.049606,124.347122,121.752083,120.347122,122.057869,119.190102,130.140518,147.867783,165.652908,176.809937,185.553741,185.057861,172.454559,149.801666,128.628113,116.884323,113.925636,109.363655,82.033073,67.264488,82.471092,96.487625,71.991760,34.330597,12.728942,9.942168,5.709101,8.379354,7.714062,6.960343,2.680997,0.455373,0.172728,0.157852,0.121488,0.055372,0.067769,0.000000,0.240496,0.000000,0.000000,0.000000,2.343802,0.000000,0.000000 -602141.555000,4612775.550000,6997,3055,97.658699,163.344635,165.138031,157.071915,140.683487,126.336380,123.617371,120.228943,118.262001,119.369438,117.790924,128.617371,145.658691,162.162827,173.476868,183.179352,180.807449,170.923157,148.352905,128.237213,115.708282,112.923157,107.245476,80.757866,66.096710,82.931419,99.584312,73.518196,35.278530,12.992580,9.749606,7.004143,7.726461,6.717367,7.205797,2.719841,0.358679,0.168596,0.133058,0.675207,0.118182,0.063637,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.555000,4612775.550000,7027,3055,104.500847,156.847946,161.666122,152.641342,138.021515,124.897545,120.971924,118.277710,115.781837,117.294235,116.004982,126.839691,143.211594,160.467789,171.451263,181.071106,179.492584,168.120667,146.145462,126.492584,116.004982,112.071098,105.509109,79.186798,64.442993,81.352089,98.401672,73.922333,35.955387,12.214068,9.591756,4.762818,7.076873,6.339680,6.567780,2.961162,1.055374,0.102480,0.300001,0.172728,0.000000,0.000000,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602150.155000,4612775.550000,7040,3055,99.426468,164.029785,164.195068,155.038040,139.649612,126.963654,123.757050,120.426460,117.211586,119.971916,116.790092,128.847961,144.591766,162.021515,173.790115,182.996719,180.434738,169.707474,148.806641,128.211594,116.757034,112.492577,106.600014,78.905800,65.195061,81.814888,100.186790,74.550423,35.856216,12.455390,9.690928,6.882655,7.000841,8.216540,7.349599,3.204137,0.693390,0.000000,0.085951,0.119835,0.000000,0.061984,0.308265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.955000,4612775.550000,7059,3055,92.440514,158.333069,161.928101,152.283478,136.663635,124.357864,122.118195,119.052078,116.217369,118.895058,117.440514,127.638855,144.333069,160.448761,171.052078,180.870255,180.853729,168.308273,147.911575,127.076874,115.804146,111.688446,105.754562,80.184311,64.333084,83.019020,96.399185,73.812416,33.804150,13.449604,9.614069,5.312405,7.659518,6.854557,7.380177,3.593393,0.999174,0.657026,0.400000,0.157852,0.184298,0.333058,0.000000,0.650414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602160.355000,4612775.550000,7091,3055,93.712410,148.075211,159.389252,151.124786,136.686783,123.794228,121.009102,117.893402,114.893402,115.819023,115.769432,126.133072,144.273560,160.389252,171.207428,180.926437,179.967758,168.480164,146.496689,126.017365,114.942986,111.372742,105.554558,79.728111,63.777702,79.785965,95.777702,71.438858,32.100021,12.940513,9.595887,4.814060,6.693402,5.518193,5.780176,2.109096,0.473555,0.093389,0.000000,0.052066,0.000000,0.069422,0.325620,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602163.755000,4612775.550000,7108,3055,95.371086,152.776031,160.040497,150.594238,137.189270,126.379349,122.420670,119.957863,117.189270,118.800835,118.032242,128.693405,146.032257,161.412399,172.709915,182.288437,182.511566,171.329758,148.263657,127.585960,117.263649,112.379349,106.627281,81.643806,65.916542,81.982658,97.280167,71.999184,34.123165,13.130596,9.693407,5.200010,8.450429,6.019845,5.760341,2.485129,0.319009,0.000000,0.181819,0.000000,0.000000,0.072727,0.439670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602167.355000,4612775.550000,7126,3055,99.196709,153.775192,161.395050,154.072739,138.585129,128.419846,124.742165,121.709106,119.395058,120.519020,120.527290,130.502487,147.733871,164.543823,175.816528,184.386780,184.461151,173.766953,150.733871,129.866135,118.932243,114.519020,108.800003,83.238029,66.700844,83.196709,98.494225,74.337204,34.064484,14.094234,9.890927,5.662821,7.843819,7.155385,7.670261,3.387611,1.010746,0.157025,0.128926,0.036364,0.000000,0.145455,0.000000,0.409918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602173.155000,4612775.550000,7155,3055,85.009109,156.207458,161.992569,154.662003,139.538025,128.761185,126.100021,124.091759,120.785973,123.215721,122.240517,132.942993,149.728119,165.091751,177.843796,187.488449,187.488449,176.447098,152.504974,132.471924,122.504982,118.050438,112.645477,86.794235,70.802498,86.554565,97.951263,73.785973,35.678532,14.136382,10.240516,6.998360,8.338032,7.180177,7.616541,3.059509,0.618184,0.188431,0.204959,0.142149,0.000000,0.313224,0.606612,0.400000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602180.155000,4612775.550000,7190,3055,98.640503,155.995865,163.409103,153.657028,140.797531,129.987610,126.533066,122.747940,122.433891,123.623978,123.888435,135.309921,151.954544,167.855392,179.491745,190.367783,190.227295,178.962830,155.243805,135.136368,124.400833,120.417366,114.409096,88.797539,73.359528,87.938034,100.293396,73.830597,34.062004,14.202497,10.400846,5.690093,8.449602,8.719023,7.822327,2.852072,0.764465,0.033059,0.257026,0.103306,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.155000,4612775.550000,7215,3055,93.312408,151.692566,166.700851,155.998352,140.998352,131.014893,128.171921,126.271088,123.750427,125.642990,126.824806,138.494217,154.816528,171.097549,182.643005,193.122314,193.031418,181.626465,158.742157,138.841324,127.651253,123.692574,118.345467,91.766960,75.957039,91.213234,102.659515,77.196709,36.932255,13.833901,10.758698,7.498359,8.285140,8.581835,8.109104,4.273561,0.820664,0.276035,0.179339,0.205786,0.038017,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602188.755000,4612775.550000,7233,3055,86.828117,148.241348,161.960358,152.753738,137.795074,129.018204,126.357040,123.307457,121.654564,123.241341,124.042992,134.885971,152.249619,167.398376,180.431427,190.365295,189.662827,178.447952,155.555405,135.894241,125.588448,121.266136,115.745476,90.489273,74.233078,89.753738,102.497536,76.646301,37.249603,15.295059,10.522334,5.687614,8.458694,8.414062,8.558692,3.623148,0.272729,0.133885,0.000000,0.187604,0.114050,0.000000,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602193.155000,4612775.550000,7255,3055,95.457039,148.895050,158.969421,150.184311,136.845459,125.225632,123.779350,120.316544,119.994232,118.589272,120.655388,131.812408,148.506622,163.514877,176.333069,185.762817,185.093399,173.663635,152.382645,131.341339,121.754562,116.333069,111.572739,85.572739,69.671921,87.300018,100.936378,75.531418,36.002502,14.173573,10.142995,5.319020,8.143816,5.769433,6.993401,2.881824,0.235538,0.196695,0.000000,0.033884,0.004959,0.072727,0.342149,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.355000,4612775.550000,7271,3055,83.405800,144.802490,159.967789,147.893402,134.273560,125.455383,121.728111,119.157867,117.504974,118.199188,118.405800,129.463654,145.653732,162.199188,173.025635,182.835556,181.372742,170.100006,149.852081,129.546295,117.926460,112.190926,107.736374,82.480179,67.257042,84.868607,101.422325,74.637199,34.042175,11.620678,9.794234,5.395053,8.726460,7.460343,5.924804,2.295874,0.580993,0.001653,0.000000,0.137190,0.000000,0.000000,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602199.555000,4612775.550000,7287,3055,87.748779,150.434723,160.484314,150.376877,135.054550,125.905792,122.806625,119.418198,117.806625,118.484314,117.914062,128.757034,146.707458,161.533890,173.178528,182.798355,182.732239,170.343811,148.476044,129.137192,116.608276,113.145470,108.145470,81.459518,67.798363,84.963646,101.740509,75.624809,35.814896,15.323158,9.831424,6.718193,7.720675,9.561998,8.595881,2.660337,0.610746,0.859506,0.160331,0.067769,0.192562,0.353720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602204.755000,4612775.550000,7313,3055,76.025642,142.323135,158.496689,150.323135,135.703323,124.265305,121.100006,116.339676,113.769432,113.918190,114.620667,124.934723,142.670242,157.934708,169.133057,178.323135,177.075211,165.033875,143.066940,123.075211,111.661995,106.728111,101.554558,76.397537,61.538033,79.149597,99.223976,74.124809,33.736385,12.550430,9.232249,4.853729,6.766131,6.464474,5.758688,3.493397,0.438018,0.194216,0.094215,0.059505,0.085951,0.000000,0.266116,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.555000,4612775.550000,7357,3055,83.185966,147.673553,156.384293,146.533051,131.028931,119.384308,116.409096,111.623978,109.367775,109.359512,108.533066,119.433891,137.235535,153.020660,164.318176,173.384293,172.061981,159.500000,138.913223,118.500008,107.078522,102.582649,96.409096,70.913239,57.285149,77.326462,96.781006,72.425636,34.260349,11.506629,8.764482,4.913232,5.867783,6.745468,5.424803,2.081823,0.726448,0.144629,0.044628,0.057851,0.120661,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602220.355000,4612775.550000,7391,3055,81.684311,142.461182,157.543823,145.352097,133.360336,126.872734,123.104134,116.748764,114.104134,111.319016,111.145462,121.864471,140.525635,155.649597,166.905792,176.219864,174.013245,163.062820,142.385132,122.781822,111.013229,106.955376,99.781830,74.393410,60.360352,80.153732,100.004974,74.699196,34.980186,14.667787,9.071094,4.931415,6.939685,5.923152,6.739682,1.965294,0.714878,0.124794,0.132232,0.066943,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,1.888430,0.000000 -602223.355000,4612775.550000,7406,3055,79.105804,150.951248,163.422348,148.653732,132.728119,123.711586,119.091751,114.752899,113.356209,112.380997,112.009094,124.166130,141.389267,155.926453,167.389282,177.298386,175.612442,162.794250,140.612411,122.364479,109.471909,105.752907,100.009094,74.637215,60.728119,80.529762,95.314880,71.719856,33.182663,14.174398,9.091756,6.340507,6.967783,6.649599,6.636377,2.535544,0.320663,0.199174,0.076033,0.026447,0.000000,0.000000,0.122314,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.155000,4612775.550000,7425,3055,77.144653,147.128113,161.243820,150.698364,136.260345,125.731422,120.731422,117.384315,115.144646,114.392578,114.665306,126.219025,144.210754,157.929764,168.607452,179.169434,176.342987,163.351257,142.070267,121.549606,110.301666,105.615715,101.772743,74.855385,60.987621,78.400841,95.607452,71.706635,33.268612,11.419024,9.252086,7.031416,8.385139,7.980178,5.725631,2.204136,0.387605,0.176034,0.104959,0.026447,0.097521,0.057025,0.411571,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.155000,4612775.550000,7455,3055,91.067787,146.778519,158.497528,147.778503,131.778534,121.266136,116.985138,113.059525,111.059525,109.828117,110.621506,121.472748,139.472733,154.348755,166.621490,176.712387,174.357025,160.869415,139.100830,120.514069,108.051254,103.795059,97.927292,70.745476,57.381840,75.803322,97.282661,72.332253,33.885971,11.900843,8.902500,5.520670,6.585138,6.932244,6.618193,2.690089,0.673556,0.295869,0.126447,0.031405,0.000000,0.069422,0.314877,0.138017,0.000000,0.000000,0.000000,1.595868,0.000000,0.000000 -602241.355000,4612775.550000,7496,3055,76.977707,145.853714,157.589279,146.481827,131.804138,120.804138,116.589264,112.291740,109.820671,109.490089,108.738022,119.605789,138.597534,154.936386,166.242172,174.944656,173.275223,160.457047,138.258682,119.019012,106.614067,101.581009,96.209106,69.895058,56.324814,75.176041,96.233902,71.762817,32.719852,11.881835,8.746301,5.043812,5.857038,7.977700,6.147119,2.267775,0.173555,0.252067,0.000000,0.295868,0.127273,0.000000,0.274380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602244.155000,4612775.550000,7510,3055,72.812408,143.842163,159.098373,148.271927,131.065292,121.552902,116.445465,112.668617,109.462006,109.536385,108.147957,119.577698,138.693405,154.966141,165.420685,176.065308,174.065308,158.916550,138.619034,118.238853,107.172745,102.486794,95.081833,69.652084,55.916550,74.404144,95.222328,72.371086,33.164478,11.882661,8.643821,6.779348,5.194228,5.620674,6.605797,2.599180,0.225620,0.173555,0.000000,0.061158,0.000000,0.000000,0.214050,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.155000,4612775.550000,7525,3055,103.129768,143.815735,159.898376,150.138046,135.336380,122.468613,120.121506,114.832253,113.179359,112.030594,111.534729,122.154564,141.055405,156.559525,167.402512,178.179367,175.749619,161.675232,139.832260,120.187622,108.171089,105.253738,97.700020,72.055389,57.385967,76.485138,97.022331,73.716545,34.410763,12.638034,8.881837,6.426455,8.104147,6.710757,7.747121,3.185131,0.552894,0.276034,0.041322,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.155000,4612775.550000,7550,3055,76.651260,150.700836,160.047943,148.312408,130.634720,120.204971,116.238029,110.874397,108.965302,107.436378,106.378525,118.238029,137.684311,152.866119,165.386780,176.618195,173.808273,159.576859,139.642975,118.998360,106.866127,101.320679,93.800018,67.717369,54.436386,75.287621,98.081009,73.700844,33.064484,13.495061,8.527292,4.580173,6.833074,7.532244,8.517368,2.165295,0.470249,0.116530,0.000000,0.300827,0.000000,0.062810,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602257.955000,4612775.550000,7579,3055,80.518211,151.790924,159.402496,148.286789,131.716537,120.857033,117.890091,112.096703,109.551247,108.972740,108.311577,120.270256,138.609100,156.592575,166.443817,177.542984,176.088440,160.361160,138.790924,119.352905,107.328110,102.865295,93.336372,70.278534,55.807457,74.526459,95.956207,73.245461,32.658695,12.529768,8.485143,6.640506,6.989271,5.229763,6.756209,2.566121,0.249588,0.118182,0.010744,0.030579,0.000000,0.057025,0.000000,0.000000,0.000000,8.000001,0.000000,0.000000,0.000000,0.000000 -602264.555000,4612775.550000,7612,3055,84.012413,151.541351,157.466980,148.764496,131.524811,122.012413,117.458694,113.210762,110.326462,108.690102,108.607452,120.351257,139.260361,155.847137,167.442184,177.516556,175.433914,160.491760,138.640533,118.219025,105.987617,102.144646,93.863655,68.979355,55.161175,74.053734,93.772743,71.243820,30.128119,10.418200,8.533077,5.603315,4.793402,4.499186,6.008275,2.920666,0.216530,0.382646,0.008265,0.024794,0.291736,0.000000,0.128099,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602269.355000,4612775.550000,7636,3055,101.461182,149.882645,158.403336,148.452896,131.452896,119.965294,117.866119,113.345467,109.874397,110.618187,109.601669,121.370255,140.023148,156.221512,169.147125,178.337219,175.948776,160.238037,138.742157,118.411575,105.510750,102.138847,94.618195,68.023155,55.155392,73.072739,94.502495,68.031418,30.136383,9.561998,8.601672,5.556207,4.995882,6.116541,5.107448,2.157855,0.397523,0.427274,0.000000,0.024794,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602276.155000,4612775.550000,7670,3055,97.160347,153.813232,162.011566,150.069427,133.590088,121.771912,120.755386,115.366951,112.300842,111.928940,111.821510,124.102493,142.474380,159.209915,170.953720,180.366943,178.978516,163.300827,140.325623,120.639679,109.011589,105.052910,97.672737,72.259529,57.928947,76.127296,97.986794,73.532257,34.160351,12.751258,8.879359,7.555383,8.219850,8.309103,6.747945,4.101659,0.269422,0.246281,0.118182,0.156199,0.214050,0.000000,0.339670,0.941323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.155000,4612775.550000,7700,3055,95.680191,155.382645,163.853745,154.919861,136.539673,121.903320,119.862000,114.961174,113.399185,114.638855,112.415718,124.341339,144.242157,160.275208,171.159515,182.324814,179.762833,162.936371,141.382645,121.985962,110.192574,106.390923,98.027298,73.192581,58.457043,75.704979,98.035561,72.647133,34.754562,13.927292,8.911590,7.977697,7.919023,6.573566,7.671915,2.635543,0.952894,0.437191,0.066116,0.042976,0.000000,0.160331,0.169422,0.099174,0.000000,0.000000,0.000000,0.000000,3.778513,0.000000 -602285.955000,4612775.550000,7719,3055,94.157867,152.347946,162.678528,152.215714,135.033890,121.628937,119.281830,114.463646,111.455383,112.488441,110.595879,122.678528,141.083481,157.876877,170.190918,180.133072,177.645462,161.529770,139.728119,120.257034,107.579353,104.934723,97.100014,71.893402,56.992584,75.794228,94.546295,71.711586,34.612415,13.138860,8.827291,8.875217,6.915715,7.383485,6.762821,2.117361,0.395042,0.000000,0.017356,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.955000,4612775.550000,7739,3055,89.895065,162.919861,158.895065,150.432251,135.233902,119.481842,118.581017,114.713249,112.473579,113.126472,110.870270,123.275230,141.523163,158.490112,170.870255,180.886795,178.010773,161.688446,140.060349,120.523163,108.423988,103.787628,97.845474,71.911591,58.167786,77.118202,96.928123,72.382668,33.239689,12.288447,8.895061,7.189267,7.710760,7.277700,6.636375,2.643806,0.264463,0.333885,0.000000,0.036364,0.109091,0.000000,0.197521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.155000,4612775.550000,7765,3055,91.049614,165.140518,161.198364,150.611588,133.281006,119.818207,116.380188,113.537209,112.446304,112.049606,108.586792,121.702507,139.818192,157.181839,170.223160,180.454559,176.958694,159.644638,139.561996,120.190109,107.190102,102.595055,96.545471,70.685966,55.719028,75.586792,96.388443,72.743828,34.810760,11.373569,8.776878,8.356210,6.093402,7.995056,7.821500,2.428104,0.971903,0.219009,0.131405,0.052893,0.254546,0.000000,0.138843,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602299.755000,4612775.550000,7788,3055,103.580185,167.133911,159.704147,150.778534,133.423157,119.290924,116.745476,111.406631,109.828117,111.943817,107.530594,119.051254,137.935547,155.687607,167.505798,178.819839,173.943817,157.877701,136.795044,117.927292,104.547127,100.604973,93.563652,68.183495,54.447956,73.580193,95.175224,71.224808,32.619026,10.304149,8.505804,7.839680,7.107452,7.552080,6.829764,3.016535,0.277687,0.179339,0.042975,0.026446,0.000000,0.000000,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602303.555000,4612775.550000,7807,3055,103.212425,167.700012,159.319839,149.989288,132.328125,116.476883,115.815727,111.361183,107.997543,110.956223,106.402504,118.691765,137.187607,155.121521,166.997528,177.807449,174.014053,156.220673,135.890091,116.245483,104.906639,100.080193,93.972755,66.559525,52.650436,74.782669,94.584320,71.146309,32.821507,12.336380,8.542994,8.623152,7.214890,7.270263,6.620672,3.179344,1.201656,0.152893,0.079339,0.147934,0.000000,0.060331,0.142975,0.438017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602307.155000,4612775.550000,7825,3055,122.929771,170.037201,163.095078,152.855408,136.929779,120.061996,117.665306,114.128113,111.962830,115.152908,109.574394,122.268608,140.053757,158.219040,169.533096,180.409103,177.152908,159.334747,138.954575,120.243820,107.632248,102.557869,95.681831,69.202507,56.194237,76.979362,97.400841,73.500023,36.342991,13.981010,8.698367,10.627286,8.228941,8.412411,7.711582,3.499179,0.770250,0.002479,0.014050,0.143803,0.323967,0.119835,0.000000,0.409918,0.000000,0.000000,1.185951,0.000000,1.146281,0.000000 -602312.155000,4612775.550000,7850,3055,115.847130,157.119858,158.781006,151.210754,133.152908,116.913239,114.508278,109.822327,108.747948,111.781006,104.987617,117.623985,135.119858,152.764481,166.161179,177.384308,172.285141,154.913239,136.152908,116.367783,102.929779,98.739693,93.045471,67.376053,52.243820,70.557869,94.987617,70.483490,33.768616,14.214067,8.458696,10.773565,7.605799,5.115715,7.143814,2.247938,0.819837,0.042149,0.173554,0.043802,0.404133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602316.755000,4612775.550000,7873,3055,115.615715,165.673569,160.533081,153.400848,133.095062,120.657043,116.516548,113.243820,110.838860,113.500015,107.417374,120.458694,137.566132,155.144638,168.764481,179.442154,174.789276,157.698364,137.392578,118.665306,106.268608,101.111588,94.409103,67.673576,54.797535,75.665306,96.458694,72.425636,33.169441,14.189274,8.582663,10.700015,6.190097,8.761168,6.714887,2.900006,0.984300,0.174381,0.118182,0.168596,0.103306,0.000000,0.200000,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602319.955000,4612775.550000,7889,3055,111.761162,167.390915,161.242157,150.837204,130.539688,119.663651,114.944641,111.349602,109.523155,112.713234,107.142990,119.151253,137.076859,154.944641,168.539673,179.176041,175.580994,157.068604,137.473557,117.250427,105.820679,100.828941,95.663651,67.300018,54.266964,75.490105,96.275223,69.523163,33.066959,12.136382,8.696713,9.956210,7.139684,6.142987,7.913235,2.735543,0.751242,0.001653,0.191736,0.181819,0.113223,0.000000,0.489257,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602324.955000,4612775.550000,7914,3055,109.691750,144.559494,144.683472,135.328110,119.741341,107.939690,104.625641,101.055389,99.212418,100.328117,99.443817,110.749603,129.865311,147.567764,158.600815,168.923172,166.815735,153.766113,130.576050,110.385971,99.022331,94.972748,88.972748,64.526466,49.567787,69.774399,90.551254,67.055397,29.708284,11.682663,8.088449,4.490918,8.073568,6.895880,7.671911,2.803313,0.490911,0.546283,0.124794,0.033885,0.129753,0.000000,0.242149,0.523142,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602333.155000,4612775.550000,7955,3055,133.147949,151.338013,143.073563,131.742981,117.536377,104.900002,102.602486,99.478516,98.065292,97.660332,99.180992,109.784317,128.247116,146.238846,158.057022,167.809097,165.147934,151.503311,127.999184,108.776047,97.875214,95.180992,88.990921,64.106628,50.147953,66.974396,87.181000,66.271919,27.713242,10.501671,8.090102,5.141332,6.904971,6.891749,6.895882,2.615708,1.044632,0.153721,0.270249,0.000000,0.313225,0.000000,0.000000,0.562811,0.000000,0.000000,1.774380,0.000000,0.000000,0.000000 -602336.955000,4612775.550000,7974,3055,122.403320,139.411575,142.709106,131.618195,115.800003,106.535545,103.114059,99.849594,98.254555,98.824799,99.246284,110.386780,128.783478,145.841339,158.362000,168.733902,166.519028,153.733902,131.692566,111.428108,99.882652,95.899178,91.618187,66.725639,52.287621,70.899185,89.700836,69.006622,32.061176,11.144646,8.328945,6.445467,8.080179,6.466955,8.128112,4.185133,0.499176,0.789258,0.181819,0.019008,0.100000,0.555372,0.060331,0.224794,2.091736,2.016529,0.000000,5.752893,0.000000,0.000000 -602340.955000,4612775.550000,7994,3055,130.057037,144.147949,138.858704,128.437195,114.792580,103.974396,99.073570,97.346298,95.189278,95.966133,96.718201,108.635559,126.709930,143.470261,154.974396,166.288452,163.751266,151.751266,130.338028,110.048782,98.891754,94.866959,90.354568,65.619026,49.470268,69.296715,90.040512,68.048782,29.709936,11.061174,8.214069,6.210754,8.698361,6.994226,7.770261,3.516536,0.848763,0.423142,0.590911,0.000000,0.067769,0.393389,0.323141,0.371075,0.000000,3.970248,0.000000,0.000000,0.000000,0.000000 -602347.355000,4612775.550000,8026,3055,129.109924,140.308289,133.680191,119.333069,104.547958,95.159523,90.820686,87.977707,85.630600,87.167793,86.523163,97.109940,114.853745,129.581009,140.895065,149.903336,147.928116,139.374405,121.589272,103.209114,94.209114,91.068619,87.481842,62.828941,46.547951,66.754562,90.928123,71.878532,31.994234,10.329767,7.952912,7.746294,8.004144,11.140510,12.392576,8.090093,1.043804,0.676035,0.589258,0.539671,0.083471,0.579339,0.344628,0.057851,0.000000,10.753719,0.000000,2.724793,1.675207,2.490909 -601553.155000,4612765.550000,4055,3105,119.099190,123.474388,111.259506,101.234711,88.317368,77.928940,74.912407,72.755386,73.152077,75.350426,76.614891,87.978523,105.854553,121.309113,135.176865,147.300842,147.796707,138.110764,116.441330,96.730591,87.639679,83.325630,77.854568,53.209938,34.185143,51.234730,65.044647,48.895885,19.823984,7.081830,7.077705,10.289270,8.971916,11.742164,14.986793,14.646296,5.567776,2.128930,2.710748,0.702481,3.385128,1.266944,3.521490,4.195045,48.599182,41.096703,27.195873,17.702484,19.285954,23.628927 -601556.755000,4612765.550000,4073,3105,110.830597,126.161995,119.352081,109.219849,94.930603,84.641342,81.302498,80.426468,80.666138,83.352089,84.864487,95.732254,112.310760,130.211578,143.740509,154.608276,156.120667,146.004974,123.219849,102.178528,92.327293,89.790100,82.781837,56.021503,37.500847,54.137207,67.641342,51.335556,20.894232,7.569434,7.525639,9.838029,10.345470,11.314892,11.521502,7.371913,4.238024,1.472731,1.123143,1.861986,0.648762,1.493391,0.743804,1.476863,25.547937,23.292564,11.260335,14.084301,15.007442,11.061984 -601562.355000,4612765.550000,4101,3105,146.179352,141.286789,126.245476,118.394234,102.559525,92.014069,90.080185,88.518196,87.708282,89.733078,91.121506,101.063652,118.923157,137.154556,150.832245,159.567764,161.435532,151.286789,128.328110,108.047127,97.154564,94.402496,88.154564,60.063656,42.857048,58.840515,74.071922,56.171093,24.238035,9.129766,8.014069,8.729767,9.571090,9.776874,12.813242,8.619020,2.967774,1.220663,1.482647,0.600001,0.336364,1.398349,0.538018,2.069424,10.816530,10.253720,7.232233,6.516531,9.521488,5.543802 -601568.755000,4612765.550000,4133,3105,141.746292,147.843811,132.058701,121.686798,109.529770,99.463654,96.695061,94.471924,94.166138,97.372749,97.678535,106.885147,124.405807,142.033890,155.397537,164.868607,164.959518,154.876877,131.166138,111.984322,98.777710,96.885147,90.372742,61.637207,43.785973,60.149601,74.951263,57.405804,23.900019,10.265304,8.215721,7.414063,8.735551,9.697534,10.459518,6.646289,1.870252,1.433887,0.827275,0.182645,0.438844,0.613224,1.161987,1.209093,4.351240,5.271075,5.126447,7.676034,5.483472,4.373554 -601575.955000,4612765.550000,4169,3105,146.188431,174.957031,148.378525,137.742157,121.874397,109.072739,106.180183,104.568611,103.948776,108.345467,104.717369,115.527290,133.320679,149.874390,163.981827,174.444641,171.585129,158.874390,138.229752,118.337204,106.725632,103.477699,96.890930,67.824814,51.519032,68.642998,81.725639,61.155396,25.615721,12.281836,8.808283,11.595882,7.570262,9.254560,7.628938,6.101662,1.189258,0.873555,1.304134,0.999174,2.523968,2.897521,3.842150,5.815703,12.987603,6.063637,10.915703,4.655372,8.682646,13.172729 -601580.955000,4612765.550000,4194,3105,127.786789,172.894226,151.290924,143.092575,124.836365,111.100838,110.158684,108.357033,107.431412,113.142159,108.728935,119.282654,136.679352,154.819839,166.687607,176.753723,173.737198,159.728943,140.100830,119.943810,108.927284,105.695877,98.290924,69.365295,53.538864,70.200012,85.117363,60.563660,28.580185,11.376877,8.935556,11.424809,7.180180,6.197532,8.353734,3.852900,0.923142,0.276860,0.152893,0.019009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.955000,4612765.550000,4219,3105,110.876877,168.347946,150.025635,143.265305,125.488441,111.075218,111.331421,109.223976,107.066956,112.133072,108.414062,119.695053,137.265305,155.488449,166.562820,178.083481,175.190918,161.414062,140.934723,120.934723,107.951256,105.876869,100.009102,70.364479,54.331425,70.769432,85.703316,64.083488,29.257044,11.599190,9.091755,10.718195,7.838857,9.178525,9.024805,4.842983,1.283473,0.000000,0.359505,0.055372,0.099174,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.955000,4612765.550000,4254,3105,96.828941,168.352890,149.997513,141.468582,124.609100,110.981003,111.261993,108.534721,106.187614,111.104965,107.104965,118.807449,135.832245,154.220657,165.931396,173.956192,173.071899,159.245453,137.980988,117.336372,107.799187,103.402489,97.700012,67.823982,54.088451,69.410759,83.344643,61.088448,25.311590,9.921506,8.881837,8.177700,6.932245,6.548773,7.709105,3.357859,0.303307,0.000000,0.012397,0.000000,0.050414,0.000000,0.000000,0.000000,1.128099,0.997521,0.000000,0.000000,0.000000,0.000000 -601596.555000,4612765.550000,4272,3105,114.823151,165.980194,153.095886,140.988449,127.186783,112.823143,112.071075,109.186783,109.294220,111.781822,108.641327,120.682655,137.500839,155.583481,167.021500,177.343826,174.062836,161.723984,139.302490,120.161995,107.699181,104.748764,98.872734,70.517365,56.327290,70.509102,84.112411,61.252911,27.682663,11.294232,8.988450,9.809932,6.993403,8.797535,9.117369,3.193397,0.450414,0.338844,0.183472,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.913223,0.000000,0.000000,0.000000 -601600.555000,4612765.550000,4292,3105,120.126457,169.043808,151.035553,142.019028,126.423981,112.382660,112.903320,110.490097,109.481834,112.564476,110.795883,122.060356,139.250443,155.630600,168.225632,179.142975,175.704971,163.118195,140.771103,121.300026,108.754562,106.903320,99.481834,70.390923,56.109940,68.804153,84.589272,63.225643,26.622335,11.138862,9.043820,9.219023,6.988445,7.481831,7.281831,3.461165,0.770249,0.414051,0.284298,0.102480,0.070249,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.555000,4612765.550000,4327,3105,101.871086,158.189270,151.577698,142.032257,126.338028,114.503319,113.329765,110.883484,108.833893,111.461998,111.189270,121.776047,140.966141,157.280182,168.486801,178.858704,176.428940,164.759521,142.379364,121.222328,110.288445,107.164474,99.445465,72.247116,55.668613,70.007454,85.238853,61.784317,27.833904,9.664480,9.040515,8.392575,6.909933,7.398360,8.878527,2.589263,0.503307,0.375207,0.094215,0.000000,0.117356,0.052067,0.000000,0.000000,0.000000,0.000000,0.000000,0.909917,0.000000,0.000000 -601610.555000,4612765.550000,4342,3105,108.487617,162.614059,154.804153,142.200851,125.655380,112.787613,112.192566,110.200836,110.176041,111.002487,109.985954,121.266945,139.853745,156.366135,168.233902,178.101654,175.936371,164.101669,140.019028,120.572731,108.357857,106.581001,100.118187,72.498352,55.308285,69.465302,83.936371,62.795887,27.440514,10.666958,9.101671,7.664474,7.159518,7.520673,8.969434,2.928932,0.686778,0.249587,0.245455,0.178513,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.817356,0.000000,2.015702 -601613.755000,4612765.550000,4358,3105,94.630585,162.866119,154.766953,141.775208,126.758682,114.543808,114.254555,110.973557,110.039673,111.461166,110.915710,123.089264,141.998352,157.717361,169.328949,178.890930,176.874405,165.114059,142.378525,122.312401,110.428108,106.452896,100.072739,72.783485,56.023163,69.254562,86.229767,62.601673,28.727293,9.987621,9.097540,8.318194,6.550427,8.230592,8.806623,2.461988,0.586778,0.157025,0.065290,0.124794,0.014050,0.048761,0.000000,0.000000,1.002479,0.000000,0.000000,0.814876,0.000000,0.000000 -601617.555000,4612765.550000,4377,3105,118.838028,164.080994,153.907440,145.642975,128.395050,117.337204,115.147125,112.651253,111.841339,113.890923,112.147125,123.171913,142.279343,159.510757,169.957031,180.262802,178.642960,166.246292,142.659515,123.064476,111.287621,108.105797,102.527298,73.998360,56.469437,71.221504,86.138855,63.692577,29.560350,11.647951,9.320680,8.114062,8.254560,9.984312,9.571091,3.388436,0.710745,0.139670,0.581819,0.041322,0.065290,0.000000,0.000000,0.000000,1.077686,0.000000,0.000000,0.538843,0.000000,0.000000 -601622.555000,4612765.550000,4402,3105,117.621506,159.077698,154.226471,141.391754,127.094231,116.036385,114.069443,110.598366,110.557045,111.705803,110.755394,122.995064,142.333908,158.003326,168.887619,178.523987,177.036377,165.342163,142.193405,121.267792,110.821510,106.333900,100.490929,73.788452,56.061176,69.143822,85.044647,63.829769,28.862827,11.377704,9.135556,9.704144,7.138857,8.908277,6.918196,3.509924,1.053721,0.401653,0.283472,0.000000,0.000000,0.166942,0.000000,0.000000,0.000000,1.109918,2.442149,0.000000,1.028926,2.063637 -601629.955000,4612765.550000,4439,3105,113.765312,161.062820,157.732239,144.368607,127.657867,116.922325,115.847946,112.765305,112.624809,113.302490,113.079353,124.533897,143.360336,158.914062,171.748779,180.186783,179.988449,167.566956,143.732239,122.467781,111.244644,107.889267,102.236374,74.252914,58.624813,71.236382,84.690926,63.451260,29.302498,12.443818,9.294234,9.198359,7.318196,7.685136,9.004147,2.787610,0.608266,0.153719,0.458679,0.183471,0.085124,0.026446,0.000000,0.000000,0.000000,0.000000,0.876033,0.000000,0.000000,0.000000 -601635.555000,4612765.550000,4467,3105,109.198357,149.370255,154.353729,140.907440,127.155373,114.370247,114.783470,112.213219,109.948761,110.857849,112.477684,123.477684,142.733887,157.502487,168.700851,179.122360,177.568634,165.857880,141.866119,120.576859,109.378510,105.543800,99.436378,72.419846,55.667786,71.006622,85.345467,61.899193,27.874399,10.957869,9.039689,7.158689,5.998362,6.653731,8.635550,3.628932,0.388431,0.000000,0.159505,0.000000,0.042149,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.272727,0.000000 -601639.955000,4612765.550000,4489,3105,112.619850,153.408279,155.722336,143.895889,126.581833,117.846291,115.127281,113.300835,112.705795,113.499184,114.028107,125.499184,144.110764,160.342163,171.862823,180.780182,180.738861,167.656219,144.350433,124.854553,112.069435,109.234718,103.490921,75.234718,58.532249,72.449608,87.523979,64.714066,29.061176,11.501671,9.408284,9.239681,8.315717,8.038030,9.313236,3.523973,0.563637,0.205786,0.431406,0.000000,0.016529,0.000000,0.000000,0.000000,1.140496,1.043802,0.000000,0.780992,0.000000,0.000000 -601642.955000,4612765.550000,4504,3105,118.681000,148.466141,154.771927,142.441345,128.284302,118.152077,116.300835,113.391747,112.887611,113.028107,113.945465,124.300835,143.309113,158.681015,171.780182,180.408279,178.325638,167.639694,143.259521,122.523979,112.052902,107.590096,101.854553,75.069435,57.705803,72.788445,87.061165,63.730598,30.623159,11.986794,9.259523,7.210756,8.230594,8.774393,8.100013,3.434718,0.707439,0.000000,0.824795,0.395042,0.247108,0.140496,0.000000,0.000000,1.143802,0.000000,0.000000,0.000000,2.077686,2.015702 -601647.555000,4612765.550000,4527,3105,114.946297,149.442154,151.541321,141.367783,125.855385,114.557869,112.871918,110.640511,109.648773,110.995880,111.450432,122.599190,141.128113,156.723145,168.590912,177.789276,176.781006,164.119827,141.814072,120.549606,109.409103,105.309937,99.772743,71.830605,55.442173,70.012421,83.921501,61.880188,26.814068,10.902495,9.070266,6.966128,6.595880,6.883482,6.990921,2.543807,0.944630,0.000000,0.029752,0.000000,0.017356,0.127273,0.000000,0.000000,1.145455,0.000000,1.639670,0.000000,0.000000,0.000000 -601653.955000,4612765.550000,4559,3105,121.176872,156.174393,151.009109,141.033890,125.695053,116.571091,114.166130,111.909927,110.290092,112.232246,111.785965,124.199188,142.124802,158.959518,171.314896,179.157867,177.984314,165.637207,142.695053,121.100014,110.108276,106.083481,100.827286,72.777702,55.893410,70.083481,85.769432,61.967789,29.199194,11.319851,9.166135,7.326458,8.266957,6.964475,7.744641,3.989265,0.609919,0.280166,0.374381,0.238017,0.086777,0.018182,0.000000,0.000000,0.000000,0.000000,0.929752,0.847108,0.000000,0.000000 -601661.555000,4612765.550000,4597,3105,103.600014,154.723984,155.765320,143.740509,128.690918,118.814888,116.955383,113.608276,113.856209,114.781830,116.038033,127.161995,144.203308,160.905807,171.757050,182.013245,181.112427,168.922348,144.467789,123.864479,111.690926,108.988441,102.145470,75.806625,57.889275,73.434723,87.484314,64.442993,30.244648,11.129770,9.285971,7.398359,7.795056,10.358692,7.757038,3.487610,0.774382,0.128926,0.071902,0.000000,0.000000,0.025620,0.000000,0.000000,2.158678,0.000000,0.000000,0.000000,0.000000,0.000000 -601664.355000,4612765.550000,4611,3105,109.819855,151.565292,152.705795,138.970245,125.003319,115.755386,114.523987,111.722343,110.804985,112.366966,112.391762,123.928940,142.416534,157.887604,169.267776,179.970245,178.366943,166.234711,142.482651,121.028107,109.672752,106.457870,100.309113,72.366951,56.102497,71.391754,85.887611,63.763653,29.829771,9.957870,9.119028,6.694225,6.476047,5.851250,6.726458,2.874386,0.281819,0.136364,0.014876,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.814050 -601667.955000,4612765.550000,4629,3105,97.795876,154.562805,153.463638,143.290085,128.265305,117.215714,115.653732,113.166130,113.414062,114.571091,114.314888,125.372742,144.438843,160.752884,171.678543,181.108292,180.290115,168.108276,144.290085,122.951256,112.422325,108.752907,102.827286,74.529762,57.554565,73.703316,87.885139,65.075233,29.637211,12.969440,9.347954,7.138029,8.431419,6.822328,6.832243,3.378519,0.676861,0.127273,0.127274,0.042975,0.335538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.798347,1.063636,0.000000 -601671.955000,4612765.550000,4649,3105,100.403313,149.401672,152.335556,141.674393,128.806625,118.798363,116.583481,114.013245,113.360344,114.492577,114.814888,125.823151,144.062820,160.881012,172.575241,181.145477,180.112427,168.401672,145.145462,124.310760,110.401665,108.583481,101.872742,74.426468,58.203323,72.963654,87.674393,64.409935,30.046301,12.458695,9.261176,7.985134,8.674394,7.859516,8.068608,2.974386,1.037192,0.267769,0.216530,0.122314,0.000000,0.009091,0.000000,0.000000,0.000000,1.108265,0.000000,0.000000,1.150413,0.000000 -601674.955000,4612765.550000,4664,3105,90.623985,149.568619,152.543823,139.593399,127.081009,117.130600,114.733910,112.824806,112.560349,113.229767,113.973572,124.998367,142.163635,158.866135,171.527283,179.882645,179.089264,166.271103,142.527298,121.568611,110.709106,106.304146,99.436378,73.345474,56.196716,72.833084,86.411583,62.519032,29.072746,11.809937,9.039689,6.771086,6.428941,7.933070,6.547945,3.304140,0.866944,0.040496,0.016529,0.000000,0.020661,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.755000,4612765.550000,4678,3105,97.649597,146.233047,153.505783,142.183472,128.547119,119.200020,117.472748,114.481010,112.695885,114.092583,114.877701,125.282661,144.257843,159.571899,172.654541,180.456192,179.852890,168.100815,144.166931,122.728943,111.315720,106.150429,101.927292,73.001671,56.530598,72.778534,87.092583,64.332253,29.811590,12.957044,9.266134,8.576870,6.319021,8.175219,6.214061,3.239676,0.849588,0.133885,0.016529,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.118182,0.000000,0.000000 -601681.755000,4612765.550000,4698,3105,91.819847,148.519836,153.503311,141.181000,127.933067,116.676872,114.933067,112.288445,111.412407,113.569435,113.817368,123.883484,142.338013,158.676865,171.073563,179.619019,178.784302,165.123138,142.048767,121.552902,110.709930,105.247116,100.081833,72.800842,56.147957,72.329773,87.123154,63.552917,29.205805,12.047124,9.098366,6.150424,6.981833,6.943813,8.867783,2.046287,0.305786,0.314050,0.085951,0.004959,0.022314,0.087604,0.000000,0.000000,0.000000,0.000000,2.568595,0.000000,0.000000,0.000000 -601687.355000,4612765.550000,4726,3105,95.271912,147.281830,151.389267,142.447113,126.521492,118.942978,114.645462,113.124802,112.480171,112.777687,113.356201,124.736366,142.843811,158.571091,171.389267,179.372742,178.356216,166.257034,142.967789,121.604134,109.471909,106.083473,100.100006,71.670265,56.703323,72.447128,87.934715,64.827293,29.050432,11.775226,9.100020,8.139681,6.712411,7.782657,8.052906,2.785130,0.415703,0.095042,0.025620,0.052066,0.086777,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612765.550000,4745,3105,94.950432,148.808273,150.849594,140.386780,127.213234,117.601669,113.717369,112.295883,111.147125,113.023155,112.510757,123.304146,141.709091,157.766953,169.667786,179.147125,176.362000,165.428116,141.717361,120.328941,108.659515,105.163651,100.345467,71.014893,55.271088,70.436378,86.279350,64.370262,28.403324,10.924810,9.122334,5.672737,8.198361,6.266953,5.161995,2.484304,0.104959,0.155372,0.019835,0.000000,0.033884,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.355000,4612765.550000,4766,3105,100.079361,143.518204,154.022339,142.228958,128.121506,119.319855,115.857040,113.468613,111.964478,112.865311,113.187622,124.344643,142.394241,157.708298,170.774399,178.642181,176.823990,165.518204,143.303329,121.080185,109.138031,106.096710,99.881836,71.262001,55.088448,69.931419,87.956215,65.369438,29.162830,11.558696,9.080185,4.766125,7.352081,6.338028,8.195881,2.695873,1.000002,0.293389,0.123967,0.000000,0.142149,0.087604,0.246281,0.000000,0.000000,1.114050,0.000000,0.000000,0.000000,0.000000 -601700.555000,4612765.550000,4792,3105,104.081833,154.371902,154.396698,142.760330,128.966949,118.553726,115.363647,112.586784,111.661163,112.297531,113.272736,123.801659,141.305786,158.429749,171.049591,178.975204,177.198349,164.776855,142.066116,120.355377,108.553726,105.115715,99.090927,71.487617,54.231430,71.041344,85.578529,64.760353,29.760349,10.781009,9.008284,4.217364,7.135551,6.821498,7.454558,3.223147,0.227274,0.058678,0.067769,0.000000,0.046281,0.000000,0.272727,0.000000,0.000000,0.000000,0.877686,0.000000,0.000000,0.000000 -601706.755000,4612765.550000,4823,3105,101.944641,151.887619,151.887619,141.176880,127.457863,117.152077,113.292572,111.069435,109.978523,112.085960,111.920670,122.565300,141.358704,157.838043,170.309113,177.912415,175.672745,164.904144,142.135574,120.614891,108.681000,104.623161,98.490929,70.573570,53.548775,68.962006,85.160339,63.135551,27.592583,10.965305,8.953738,5.844639,6.742989,6.802492,5.790095,2.655378,0.443803,0.271901,0.104959,0.000000,0.000000,0.062810,0.000000,0.000000,2.257025,0.000000,0.000000,0.000000,3.342149,0.000000 -601710.755000,4612765.550000,4843,3105,110.719017,150.547119,154.373566,143.472733,128.241333,117.398354,115.720673,113.018188,112.943810,114.042984,114.340508,124.514061,142.431412,159.042984,170.563644,179.431396,178.133881,164.464478,143.390091,121.456207,110.786789,104.613235,100.472740,72.621506,54.580185,71.365311,87.100838,65.051254,28.613241,11.323158,9.133904,4.333894,6.101667,7.933070,7.011583,2.111576,0.585126,0.186778,0.201654,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.355000,4612765.550000,4861,3105,100.583481,150.329758,150.114883,142.032257,126.098366,116.602501,113.354568,111.453735,111.048782,114.057045,114.371094,125.048782,142.908279,158.676865,170.404129,178.544632,176.792572,165.238846,141.379364,120.346298,107.908287,104.123161,98.718201,70.321510,53.891754,70.313240,84.734734,63.131424,28.800846,9.998364,8.974400,5.791745,7.586791,6.802490,7.450425,2.338847,0.528927,0.447108,0.633059,0.041322,0.098347,0.342149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.923967,1.743802 -601719.355000,4612765.550000,4886,3105,110.692566,150.976868,153.563644,143.976868,128.869431,119.671082,115.943810,114.042984,112.092575,114.671082,114.332245,124.894226,143.175217,158.439682,170.646286,178.728943,177.423157,165.439682,142.026459,120.274391,109.224800,104.497528,99.472740,71.357033,54.224815,70.737198,85.398354,63.481014,28.447954,10.860348,9.042994,4.192570,6.706625,6.029763,5.566952,2.372732,0.533885,0.221488,0.085951,0.000000,0.020661,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.827273,1.172727,0.000000 -601725.555000,4612765.550000,4917,3105,114.006622,155.126450,155.176041,143.019012,127.605797,117.514893,114.333069,112.771088,111.903320,113.804146,113.746292,124.035553,142.647110,158.316528,170.919846,179.374390,178.002487,166.746292,141.861984,120.828941,108.804146,104.878525,99.209106,70.506638,54.217377,69.167793,84.952904,64.374405,27.886795,11.355389,9.019028,5.190919,6.581831,6.946292,6.398358,3.023146,0.823969,0.214877,0.121489,0.048760,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.555000,4612765.550000,4937,3105,121.432243,153.802490,151.736374,143.860336,130.075226,118.976044,116.058693,113.372742,113.529762,114.852081,113.934723,123.885139,142.157867,158.100006,169.967789,178.653732,177.447113,166.199188,142.397537,120.463646,108.166138,104.521500,98.281830,69.265305,53.769440,68.934723,85.240509,63.992584,27.356220,12.028942,8.934730,4.261166,6.856213,7.118194,6.425631,2.317361,0.563638,0.005785,0.059505,0.000000,0.084298,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.061157,0.000000 -601736.355000,4612765.550000,4971,3105,112.019020,155.944641,153.043808,143.804138,128.911591,117.944633,114.258682,113.085129,111.638847,113.696701,113.572731,123.382652,141.200836,157.688431,170.316528,178.217361,177.738022,165.275208,142.258682,120.556206,107.465294,104.101662,99.209114,70.283493,53.911594,67.663658,85.812416,64.713242,26.845472,12.317373,9.019027,4.727281,6.700841,5.697533,6.752903,2.165294,0.257852,0.002479,0.096695,0.094215,0.079339,0.000000,0.000000,0.397521,1.133058,0.000000,2.003306,0.000000,2.132232,0.000000 -601741.955000,4612765.550000,4999,3105,113.432251,153.345474,155.047958,145.643005,130.213242,119.609940,116.089279,114.510765,113.444649,115.841347,113.866135,125.287628,142.791763,160.196716,171.915726,180.700851,178.841339,167.469437,143.039688,121.047958,108.469452,105.560364,99.618202,72.320686,54.386795,69.163658,85.733910,64.642990,28.709110,11.585967,9.056218,5.157860,7.266129,7.457037,7.409102,3.585957,0.504960,0.071075,0.238018,0.059505,0.200827,0.122314,0.000000,0.000000,1.124794,0.000000,0.000000,3.765290,0.000000,0.000000 -601745.355000,4612765.550000,5016,3105,112.757027,155.282654,152.695877,144.885956,130.150421,117.770264,116.315720,113.009933,111.745476,114.720680,112.960350,124.423157,141.505814,158.621490,171.175232,180.638046,177.778534,166.671082,141.910767,119.208282,108.183487,104.447952,98.745461,70.125641,53.695885,69.200020,84.191750,63.563656,27.723986,10.229769,8.976879,3.889263,7.428113,6.468606,5.311580,1.487607,0.384299,0.066942,0.028926,0.000000,0.035537,0.009918,0.000000,0.000000,1.209091,0.000000,2.904959,0.876860,0.000000,0.000000 -601748.155000,4612765.550000,5030,3105,128.040512,163.294235,156.930588,147.575226,131.872742,121.426460,117.963646,116.558693,114.517365,117.856209,115.955383,126.046295,143.971909,160.881012,173.195053,182.409927,180.352081,169.186783,144.137207,123.401665,110.095879,105.971916,101.145470,73.641350,56.360348,72.228111,86.674393,66.616547,29.922331,13.471919,9.195061,7.109102,8.157866,9.257865,8.838030,3.483478,1.120663,0.007438,0.059505,0.000000,0.208265,0.028926,0.273554,0.000000,0.000000,1.189256,0.000000,0.000000,1.099174,0.000000 -601753.955000,4612765.550000,5059,3105,111.426460,155.219009,146.064468,141.403305,129.014893,118.219849,118.153732,116.996704,117.570267,119.768608,119.272743,128.975220,145.407455,163.948761,177.477692,187.428101,187.519012,176.130585,152.238022,130.328934,120.023155,114.940514,109.527290,80.337204,63.477703,75.841347,89.816544,68.833084,30.086798,14.234727,9.957044,5.583479,7.535552,5.755383,5.845465,2.945460,0.555374,0.708266,0.113224,0.063637,0.119835,0.000000,0.000000,0.277686,0.000000,0.000000,0.000000,0.000000,0.000000,2.081818 -601757.155000,4612765.550000,5075,3105,124.204964,162.540512,154.705811,146.168610,131.945465,119.102486,116.937195,115.251244,113.895874,117.879341,115.375214,126.185135,144.449600,162.515717,172.623154,182.309097,180.548767,168.829773,144.383484,122.309097,109.234711,105.631409,100.400002,72.804977,54.441345,69.267792,85.267776,64.176880,27.127293,9.748776,9.127292,5.048770,5.944641,5.604144,4.989266,1.849591,0.286778,0.079339,0.271076,0.000000,0.200000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.963636,2.242975,2.128926 -601759.755000,4612765.550000,5088,3105,120.447128,169.339676,163.852081,151.529770,134.025620,121.926468,118.976051,118.356209,116.984314,119.992577,118.149597,129.298355,146.257034,163.802490,174.331421,184.752899,183.488449,170.628937,146.736374,123.893402,111.942993,106.695061,102.554565,74.686798,56.967785,72.331421,87.868614,64.223976,27.937212,11.640514,9.323159,4.418192,6.760346,6.983484,6.028937,2.684304,0.628101,0.067769,0.385125,0.058678,0.111571,0.000000,0.000000,0.000000,1.183471,1.122314,0.000000,0.000000,0.000000,0.000000 -601764.155000,4612765.550000,5110,3105,120.395882,167.924820,161.131424,148.817368,134.519852,121.247116,119.503319,117.800835,116.271912,119.106621,117.916542,127.866951,146.726471,164.197540,175.395889,185.478531,183.610764,169.544647,145.676880,124.428940,112.081833,108.916542,102.900009,75.585960,58.544647,72.933067,87.718193,64.891754,31.234732,12.393408,9.354565,6.920673,8.336377,6.409104,7.016541,1.647937,0.840497,0.193389,0.198347,0.119009,0.080992,0.000000,0.000000,0.000000,1.166116,0.000000,0.712397,0.000000,0.000000,0.000000 -601770.155000,4612765.550000,5140,3105,105.587624,156.838013,157.176849,146.052917,131.821503,120.581833,119.028122,115.019852,115.796715,115.433075,116.094231,126.945473,145.804977,162.366943,174.474396,182.127274,181.788437,168.052917,141.441345,122.019844,110.540512,108.317375,102.309105,74.433067,58.804977,71.317375,87.391754,62.854565,27.598366,11.666959,9.300847,7.590923,5.700012,5.993400,6.004969,2.875213,0.308266,0.044628,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.355000,4612765.550000,5156,3105,115.767776,164.491745,160.987625,147.533081,133.640518,120.185959,119.318199,116.830597,116.078529,116.789276,116.929771,128.541336,146.880203,163.731415,175.425629,183.847122,181.500015,168.797531,143.690109,123.070267,112.623985,108.318199,103.318199,74.384315,58.714893,73.119850,87.475220,64.309937,27.954565,12.396712,9.392581,7.214064,7.783487,7.789271,6.607448,3.283479,0.574382,0.220662,0.000000,0.047108,0.259505,0.146281,0.647934,0.000000,0.000000,0.000000,0.000000,0.926446,0.000000,0.000000 -601777.355000,4612765.550000,5176,3105,112.575218,166.358688,161.044632,148.490906,132.995041,121.028099,120.672729,115.309097,116.548767,116.747108,116.168602,127.970253,147.276031,163.160339,174.664459,183.945465,181.052902,168.176865,142.416534,123.482651,110.813225,108.011574,102.490913,74.804970,58.201668,71.565308,86.523987,63.887619,27.490929,11.219851,9.317373,6.845469,5.473566,7.400841,4.954555,3.863643,0.479341,0.303307,0.052066,0.045455,0.000000,0.312397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.955000,4612765.550000,5194,3105,96.237213,162.657043,161.789276,146.995880,132.557861,119.962830,118.962830,115.690102,115.252083,116.896713,116.491753,128.161179,146.351257,163.541336,174.425629,183.210754,181.475220,166.847122,142.367783,121.111588,110.210762,107.276878,101.136383,74.045479,57.847122,70.971100,84.797546,61.103321,26.747952,10.385967,9.194234,7.592575,5.121500,8.031420,6.274391,2.218187,0.293389,0.000000,0.000000,0.109091,0.014050,0.000000,0.000000,0.000000,2.461984,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.155000,4612765.550000,5230,3105,112.805801,171.318176,158.409088,148.723145,133.334732,121.979355,120.690102,118.285141,117.086792,119.252083,116.979355,129.814072,147.789261,164.904953,176.673569,185.938034,184.144638,169.433884,144.888428,123.541336,112.458694,110.450432,103.227287,75.243820,59.078533,72.863655,87.632248,64.095062,29.795061,12.528116,9.384316,8.567782,7.570261,8.145469,8.071913,4.023976,0.390084,0.308266,0.053719,0.099174,0.000000,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.955000,4612765.550000,5244,3105,116.820686,171.324814,162.440521,149.870270,134.382660,121.936386,120.944649,118.324814,117.399193,120.440521,117.919861,129.498367,147.498367,165.217377,176.878540,185.936386,184.109940,169.258698,144.845474,123.787628,111.217377,108.696716,104.118202,73.052086,58.754562,72.448784,88.457047,64.266960,28.027290,11.789273,9.465309,10.581835,7.887618,6.993403,9.074393,4.156206,0.128100,0.271902,0.301654,0.049587,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,1.041322,0.000000,0.000000,0.000000 -601800.755000,4612765.550000,5293,3105,118.775223,176.552078,164.576859,152.436371,135.783478,121.519020,121.651253,119.428116,118.155388,120.907455,117.485962,129.816544,148.444641,166.105789,177.915710,186.477692,183.064468,168.667770,144.692566,123.295883,111.849602,108.981834,103.163651,73.725632,59.180187,72.031418,89.238029,62.659527,29.198366,12.334728,9.378532,11.223983,7.123153,8.470263,6.809102,3.163644,0.429753,0.071075,0.000000,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,1.038843,0.000000,0.000000,0.000000 -601803.955000,4612765.550000,5309,3105,119.844643,172.348770,161.348770,152.786789,135.125626,119.348778,120.778534,116.704147,116.357040,120.472748,116.390099,128.315720,146.423157,164.638031,176.109100,186.092575,181.447937,166.166946,142.803314,121.282661,111.257866,107.357040,102.018196,73.109108,56.943825,71.894234,85.695885,62.406631,28.348778,9.576050,9.274399,9.804975,5.767781,5.757038,6.957863,2.129758,0.585951,0.200001,0.000000,0.000000,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.414876,0.000000,0.000000 -601808.955000,4612765.550000,5334,3105,124.038033,179.660355,163.255386,151.528122,135.767792,123.552895,120.362816,118.693390,118.825623,122.346283,117.371078,129.247116,147.536377,165.635559,177.511597,187.114883,184.048782,166.982666,143.511597,123.800827,111.933060,108.478516,102.627281,74.470268,58.784317,73.420677,88.792580,64.263657,29.214067,10.986794,9.329771,12.008280,6.512411,7.075220,7.919848,2.275213,0.637192,0.223968,0.072728,0.283472,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,3.364463,0.000000,0.000000,0.000000 -601812.555000,4612765.550000,5352,3105,138.700851,187.747131,165.284317,158.433075,138.590103,123.127281,123.523979,121.085960,121.292572,124.664474,119.201668,132.052902,149.813248,167.110764,180.358704,189.631424,185.507462,168.292587,145.532257,124.565300,113.358688,111.036377,105.218193,75.185135,59.581837,75.639687,88.986786,62.879356,30.267788,13.062001,9.565309,12.315720,7.429766,8.038857,7.419021,4.495877,0.505787,0.423142,0.160331,0.090909,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.955000,4612765.550000,5374,3105,139.959534,188.050446,168.587616,156.347946,137.967789,124.000839,122.587616,120.612411,119.951256,126.149597,119.273567,131.852081,149.752884,167.984314,180.686783,189.984314,185.463654,168.612411,145.025620,124.645470,113.066956,109.529762,104.463646,75.091759,59.223984,76.876877,89.066956,62.521503,29.290100,11.942166,9.496715,11.976049,7.863649,7.982658,7.371913,3.381826,0.680993,0.133885,0.042975,0.049587,0.162810,0.009918,0.000000,0.496694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.555000,4612765.550000,5407,3105,91.808281,159.574402,158.318192,147.152908,130.855377,119.855385,118.590927,116.805801,115.847122,116.847122,116.318199,128.458679,147.367783,164.252060,176.045456,184.987625,183.268616,168.400833,145.185974,123.384308,113.285133,108.896706,104.590927,76.450424,59.764484,75.913231,91.433899,65.623985,29.615723,11.924810,9.508284,5.360343,6.961170,8.040510,5.419018,3.604141,0.456199,0.376861,0.038843,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.955000,4612765.550000,5429,3105,95.352081,159.242996,158.466141,146.573578,132.143814,121.383484,120.176872,117.747116,117.176872,118.276047,119.763649,130.631409,149.019852,165.755386,177.490921,186.705811,184.152084,171.152084,146.350433,126.416542,114.614891,111.069435,105.400009,77.887611,60.606632,76.887611,91.309105,68.019852,30.565311,12.862002,9.581838,5.940510,7.707453,8.797536,6.969435,3.357033,0.812399,0.231406,0.092562,0.119009,0.000000,0.436364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.755000,4612765.550000,5453,3105,107.285141,152.326462,158.781006,147.524811,133.855392,121.764481,120.061996,117.739685,116.508278,118.524811,119.442162,130.276871,150.152908,166.888443,179.384293,186.888428,186.185944,172.590912,148.202499,125.797539,114.723160,111.392578,106.772743,78.028931,61.309937,76.384315,92.202492,66.078529,31.896715,14.645473,9.706631,6.433896,7.273568,7.063650,8.429767,3.145464,0.659506,0.110744,0.099174,0.000000,0.000000,0.000000,0.000000,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.355000,4612765.550000,5471,3105,111.424812,155.175217,157.778503,145.869431,130.638031,122.811577,119.166954,117.133896,116.216537,117.786789,118.505798,129.836380,148.753723,166.034698,177.687592,186.290909,185.042969,172.208252,147.563644,125.414886,114.472740,110.687614,105.290916,78.076050,60.952084,76.092583,90.406631,66.836380,32.009937,12.348778,9.571919,5.410755,6.314889,7.171087,6.528111,2.280173,0.462811,0.057852,0.087604,0.000000,0.000000,0.000000,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.955000,4612765.550000,5489,3105,94.698357,149.481003,158.406616,146.423157,131.175217,122.233063,120.447937,118.282646,118.580170,118.828102,119.704132,131.638031,150.150421,166.481003,178.985138,187.894226,185.299179,172.704147,147.588440,126.257851,115.315704,111.828102,107.109093,78.580185,62.613243,75.935555,90.026466,66.348785,32.299191,12.592580,9.737210,6.848772,7.673566,8.694229,7.884311,4.205794,0.379340,0.105786,0.148761,0.000000,0.057025,0.152893,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.755000,4612765.550000,5508,3105,83.584305,152.300003,158.366119,147.423981,132.506622,123.448769,122.002487,119.432236,118.217361,120.837196,121.209099,131.614059,151.828934,168.159515,181.068619,189.721512,188.258698,174.341324,148.498352,127.225624,115.324799,112.366119,107.936371,81.390923,63.490105,79.167793,92.374397,67.473579,32.002499,12.301670,9.812416,6.985963,8.222328,8.257866,7.295882,1.836369,0.566117,0.071901,0.000000,0.133058,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.955000,4612765.550000,5524,3105,86.794235,154.931427,160.964478,148.104980,133.947937,123.038849,121.195877,119.402489,120.377693,121.427284,122.476868,133.228943,152.286804,170.857056,181.766129,190.906631,189.609116,175.964478,149.857056,128.410751,117.914886,114.088440,109.700020,82.179352,64.402504,80.865295,94.402496,68.650421,32.700024,13.903323,9.972746,7.949601,8.020677,10.453734,7.973566,2.601660,1.011573,0.538845,0.192562,0.105785,0.166942,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,1.006612,0.000000,0.000000 -601851.355000,4612765.550000,5546,3105,107.333893,157.647125,154.928116,144.597549,131.465302,121.994232,121.027290,117.961174,117.399185,119.630592,120.473572,131.415710,150.068619,168.556244,180.448792,189.225662,187.680206,174.093430,148.019028,126.209106,114.581009,110.374397,107.481834,79.589272,61.060345,78.043816,90.308281,66.043823,29.225639,12.050430,9.771094,5.381006,6.797536,5.992574,7.052080,3.319015,0.438017,0.498348,0.352893,0.112397,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601857.555000,4612765.550000,5577,3105,101.919022,148.164490,155.544647,145.652084,131.990921,121.701675,118.776054,119.734734,119.255394,122.354568,121.966133,133.685135,152.139694,169.313248,182.081833,191.594238,189.908279,175.412415,148.990921,128.090088,116.313240,113.784317,107.081833,79.941330,63.015720,76.850433,92.999184,67.858696,30.842169,12.059522,9.734730,5.622324,7.413237,7.061171,5.833069,5.059511,0.855374,0.467770,0.322315,0.000000,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.555000,4612765.550000,5597,3105,88.239677,141.190109,149.560349,141.279358,128.295883,120.653740,119.529770,119.455391,118.108284,119.752914,121.471924,131.279343,150.328949,166.998352,179.800003,189.651245,188.014877,174.824799,148.700851,127.014893,116.246292,113.279350,110.254562,82.849602,64.885971,79.328941,94.692574,68.204971,31.279360,12.671092,10.023159,5.070259,6.586791,6.094227,7.395053,3.343807,1.113225,0.337191,0.166943,0.103306,0.523967,0.174380,0.000000,0.028099,0.000000,0.000000,0.000000,1.604133,0.000000,0.000000 -601865.755000,4612765.550000,5618,3105,98.699188,160.141342,157.827286,146.372742,131.215714,123.058693,122.009102,120.835548,119.042160,122.422325,122.182655,134.265305,153.504974,171.232239,183.546295,191.934723,190.893402,176.678528,150.207458,128.364471,115.868607,113.306625,109.100014,80.852081,63.976055,78.091751,93.075226,69.628937,31.141342,12.415720,9.918200,6.428112,7.678528,6.958691,6.444641,2.701660,0.667770,0.219009,0.047108,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.355000,4612765.550000,5641,3105,119.909103,152.692581,162.791748,150.585129,135.725632,124.196716,122.337212,121.766968,121.849609,123.742172,124.890930,135.766953,155.080994,171.262817,184.957031,194.147110,191.651245,178.667770,153.676041,130.717377,119.403328,115.246307,112.436386,83.469444,65.733902,80.494240,94.758698,68.783493,32.585144,13.586794,10.221507,5.698358,8.328115,8.271916,8.329767,3.493396,1.134713,0.828927,0.857852,0.085951,0.084298,0.332232,0.904959,0.000000,0.000000,0.000000,0.855372,0.000000,0.000000,0.000000 -601876.355000,4612765.550000,5671,3105,88.293404,158.394226,158.369431,148.468597,133.650421,124.898354,122.146294,119.625633,120.220673,123.162819,123.576042,134.584305,153.162827,171.030594,183.452072,194.633896,191.700012,178.270264,151.749603,128.857040,117.898354,113.080177,109.336372,82.344635,64.567787,79.890091,94.361168,68.154564,33.138035,11.308281,9.939688,4.777696,6.727288,7.092577,5.389268,2.005792,0.180992,0.442150,0.177686,0.235538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.955000,4612765.550000,5689,3105,99.072746,154.189270,159.007462,146.891754,132.809097,124.627281,122.495056,120.544640,121.544640,123.147942,123.519844,136.123154,153.544647,170.924820,183.751266,193.552917,191.842163,178.098373,151.718201,130.106628,117.495056,114.478523,110.445465,82.354553,64.313240,80.114891,94.478523,70.255386,31.685143,12.384315,10.040515,5.179349,6.950428,7.385965,6.497534,2.490089,0.780167,0.036364,0.044628,0.000000,0.000000,0.095041,0.000000,0.000000,0.000000,0.000000,1.037190,0.000000,0.000000,0.000000 -601883.355000,4612765.550000,5706,3105,89.533897,146.488449,156.843811,146.678528,132.323151,121.918198,120.215714,119.232246,119.661995,123.075218,123.133072,133.893402,152.017365,170.918198,183.554565,193.372742,191.141342,178.579346,153.058685,129.414062,117.752907,113.257034,110.645470,83.628937,65.463654,79.463646,93.951256,69.794228,31.166134,11.505803,10.058697,5.029763,6.283484,6.796707,8.271088,2.066120,0.460332,0.496695,0.182645,0.365290,0.000000,0.000000,0.332232,0.464463,0.000000,0.000000,0.838017,0.000000,0.000000,0.000000 -601887.555000,4612765.550000,5727,3105,112.334724,161.268616,163.260345,150.681839,135.681839,126.095055,123.219025,123.119850,122.781006,125.805801,125.103325,137.533081,155.425629,172.822327,187.309937,196.946304,193.764481,180.086792,154.070267,131.524811,120.144646,115.623985,111.318199,84.747948,66.979362,81.673569,96.954559,70.888443,33.243820,14.640514,10.119854,6.657864,8.061173,8.004972,9.670260,4.455380,1.040498,0.305786,0.134711,0.336364,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601892.755000,4612765.550000,5753,3105,101.764481,150.042999,154.556213,148.010773,136.407455,126.374397,123.696709,123.886795,123.333069,126.688446,126.242165,138.423996,156.531433,173.159531,186.415726,195.787628,192.704987,178.820679,151.820679,128.432251,117.969437,115.217369,110.845467,84.109932,66.680191,79.423981,94.919846,71.374397,33.432251,14.028944,10.076880,5.319020,8.212413,8.035552,9.068608,4.409924,1.494218,0.341323,0.663637,0.225620,0.223141,0.261984,0.243802,0.806612,0.000000,0.000000,2.871075,0.000000,0.000000,0.000000 -601895.755000,4612765.550000,5768,3105,102.570267,147.788452,157.153732,152.583481,140.578522,132.900848,130.942169,130.008286,129.975220,134.809937,135.041336,145.661194,164.611588,182.115723,195.120667,203.881012,203.319016,188.393402,162.247971,140.752075,128.429764,123.140503,117.363647,89.355385,70.545479,82.619850,96.628105,73.203323,34.264481,13.669437,10.669439,4.089266,9.571090,8.376873,9.067781,6.239678,2.903309,1.741324,1.752894,1.090084,1.996696,0.119009,0.426447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.538017 -601899.755000,4612765.550000,5788,3105,113.665298,161.293411,160.946304,153.045471,138.028946,126.731422,124.913239,124.326462,123.458687,127.508278,126.946297,137.574402,155.764481,173.648758,187.681808,197.400818,193.433868,181.417343,155.475220,132.119858,119.491745,116.566124,112.772736,85.500008,67.219025,81.673561,95.838852,72.252083,32.268616,14.686795,10.252086,5.052906,7.836380,8.417371,7.873567,2.264468,0.309092,0.116529,0.052893,0.189256,0.136364,0.107438,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,1.216529,0.000000 -601904.555000,4612765.550000,5812,3105,109.568611,157.118195,155.746292,150.324799,139.316574,128.985962,128.010757,126.382660,126.209106,129.671921,130.134720,140.531433,157.258682,175.671906,187.746292,196.498352,195.746292,182.547943,156.490082,133.283493,120.771088,116.936378,111.936378,84.704971,66.523155,79.341339,94.837204,71.572739,32.514896,12.709107,10.176053,3.495878,7.085138,7.499187,6.060343,2.061163,0.528101,0.331406,0.680993,0.106612,0.465290,0.166942,0.202479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601907.955000,4612765.550000,5829,3105,102.728943,161.445465,160.495041,150.776031,137.032242,123.693398,123.594223,122.850426,121.280174,124.643814,125.338028,135.784302,154.461990,172.437195,186.329758,195.610748,194.685120,181.048767,155.114883,133.999191,121.098358,117.842163,112.900009,86.379349,67.420677,82.205795,94.635551,72.957870,34.065311,13.738861,10.263657,3.974390,8.295057,6.338029,7.906626,3.731411,0.601654,0.053719,0.141323,0.078513,0.484298,0.094215,0.000000,0.420661,1.128099,3.367769,0.000000,0.000000,0.000000,0.000000 -601912.755000,4612765.550000,5853,3105,116.214066,164.833893,163.924789,152.676865,138.817368,125.528107,124.990921,124.404144,123.470261,126.503319,126.561165,136.900024,155.329758,172.809097,186.610748,195.230576,192.652069,180.883469,154.428925,132.048767,119.668610,115.156212,112.900009,83.181007,66.701675,81.511589,94.486794,72.114899,32.924812,13.566134,10.263655,4.303318,7.994231,6.101667,7.687619,2.482650,0.104133,0.220662,0.090909,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.155000,4612765.550000,5870,3105,97.857048,160.470261,158.503326,151.842163,138.602493,128.875229,127.404152,125.428947,123.668617,127.164482,125.081841,136.205811,154.420685,171.511566,184.478516,193.577682,192.073563,180.354553,154.833908,133.552917,121.536385,118.544647,112.990929,84.478531,67.304977,80.842171,97.536385,72.833900,32.495060,14.126465,10.271920,4.566951,7.613239,7.244641,7.676872,2.661990,0.535539,0.297522,0.596695,0.138017,0.000000,0.174380,0.000000,0.006612,1.266942,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.155000,4612765.550000,5890,3105,136.133072,163.281830,156.835556,154.356216,139.992569,125.769432,124.637199,124.438858,123.364479,127.381004,126.645470,135.422333,152.405792,170.579346,184.529770,191.108276,190.959518,178.843811,153.827286,131.926453,118.331421,117.207451,111.372742,82.000839,64.802498,79.182663,94.744652,72.785973,32.058697,15.104978,10.124812,4.302489,7.785139,6.264476,8.553732,3.685131,1.261159,0.429753,0.056199,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601923.955000,4612765.550000,5909,3105,120.696701,169.888443,162.814072,154.904968,139.417358,126.293404,124.665298,123.516548,122.285133,127.028938,124.888435,134.896713,153.309937,170.789276,182.888443,192.450424,191.541336,178.533081,154.657043,132.921509,120.533066,116.888435,110.318192,83.954552,66.260353,80.590927,96.739677,70.772743,32.706631,12.499190,10.028944,4.164472,7.338032,6.386790,6.338029,2.609097,0.549589,0.057025,0.133058,0.000000,0.049587,0.170248,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,1.390083,0.000000 -601927.355000,4612765.550000,5926,3105,124.284309,177.234726,164.152084,154.152084,138.978531,124.895882,122.474388,121.375221,120.681000,124.333893,122.771912,133.631409,151.821503,168.904144,181.069443,190.656219,188.581833,177.110764,152.176880,130.581833,117.441330,114.755386,110.127281,82.052902,64.747124,80.548775,94.722328,71.771919,32.755390,13.481836,10.011590,6.407450,6.466956,6.519847,8.027287,3.047113,0.266116,0.121488,0.286778,0.213224,0.000000,0.098347,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601932.155000,4612765.550000,5950,3105,102.438034,164.264465,163.768600,152.727280,135.214890,125.603325,124.743820,122.421501,121.859520,122.636383,122.677704,133.380188,153.190079,169.355377,181.033051,190.669418,188.413223,175.041321,150.314056,129.380188,117.793404,116.272743,110.000015,80.760345,65.057869,81.223160,94.553726,69.123985,31.486795,12.333901,10.000018,8.593404,7.129767,8.845466,8.858689,3.346290,0.942151,0.170248,0.134711,0.095042,0.041323,0.000000,0.000000,0.024794,0.000000,0.000000,2.163636,0.000000,0.000000,0.000000 -601936.755000,4612765.550000,5973,3105,106.757034,167.137192,162.666107,151.261154,134.806625,124.723976,123.376869,121.029762,119.914062,120.434723,120.252907,131.748779,149.467758,166.401672,177.897507,187.707413,185.674362,171.550400,148.368607,127.393402,117.120674,113.252907,107.600014,78.798363,63.748783,76.748772,91.509102,66.021507,28.922331,11.138861,9.781838,6.709104,5.711583,6.166128,6.075216,2.690090,0.561159,0.168596,0.047108,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.955000,4612765.550000,5989,3105,113.211586,166.614059,164.446274,149.986801,137.639694,127.838036,124.763657,122.245476,121.319855,121.518196,121.600845,133.402496,152.179337,168.237183,179.642136,190.047104,188.832230,175.650406,153.005798,131.724808,120.617371,116.584312,111.154564,83.405807,66.736382,79.956215,94.609108,68.493408,30.827291,12.310761,10.104979,8.598361,6.448772,7.373567,8.404145,2.227280,0.745456,0.583472,0.104133,0.177686,0.000000,0.000000,0.000000,0.423967,0.000000,0.000000,0.000000,0.954546,0.261157,0.000000 -601944.355000,4612765.550000,6011,3105,124.293396,176.144638,167.822327,152.574402,137.789276,126.822319,125.516541,121.946289,122.318192,124.136375,123.037201,135.053726,153.896698,170.128098,181.665298,190.582657,189.086792,175.508286,150.987610,130.541336,118.367775,115.119843,108.500008,81.392570,64.896713,79.392578,95.177696,69.557861,31.204979,13.775226,9.863657,11.978530,8.570263,9.614064,7.946293,4.500835,1.018185,1.356201,0.809920,0.291736,0.318182,0.086777,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.355000,4612765.550000,6041,3105,116.131424,173.880188,166.632248,156.409103,139.227295,126.557877,125.210770,123.607452,122.557877,124.714897,122.500015,135.136383,153.938034,171.210754,182.880188,192.210754,189.913239,175.938034,151.293411,130.714905,118.367783,115.177711,108.863663,81.111595,64.797539,79.425644,95.615715,69.020683,31.648779,11.573570,9.896713,7.938858,6.274394,8.157038,7.831418,4.400008,0.385952,0.175207,0.125620,0.129753,0.003306,0.000000,0.000000,0.000000,0.000000,1.170248,0.000000,0.000000,0.000000,0.000000 -601953.555000,4612765.550000,6057,3105,116.483482,169.161179,166.128113,154.615723,138.491745,126.938026,125.640503,122.524803,121.789261,123.830589,122.301659,134.268600,153.814072,169.971085,181.144638,190.574402,190.095062,175.342987,151.252075,129.739685,119.276871,115.805794,110.227280,81.185966,66.632248,79.276878,94.731415,70.384315,32.111591,13.760348,10.020680,7.510758,5.557036,6.997534,6.442987,3.054552,0.971077,0.227274,0.035537,0.000000,0.000000,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.355000,4612765.550000,6071,3105,112.946297,175.139679,163.346298,152.461990,136.338043,123.338028,124.048775,121.081833,120.685135,122.544640,120.428940,132.511581,151.470245,168.908279,179.544632,190.486801,186.602478,172.966125,149.040497,128.255386,116.990921,112.709930,108.718193,78.999184,62.875229,78.057045,92.627281,67.007462,29.470268,10.896711,9.883490,8.404145,5.637201,7.507452,6.706623,2.761164,0.357026,0.114050,0.052893,0.151240,0.000000,0.000000,0.066942,0.000000,1.323967,0.000000,0.000000,0.000000,0.000000,0.000000 -601959.355000,4612765.550000,6086,3105,120.368607,174.766129,166.989273,158.225632,141.664490,125.134720,124.572731,122.895050,121.283478,124.490089,122.027283,134.473557,152.952911,170.746292,181.771103,191.928116,190.382660,175.787628,151.457047,132.027283,121.035545,117.093391,110.027283,82.911583,65.423988,81.283485,94.333069,68.771088,31.762831,13.691753,10.002498,10.730594,6.858690,8.264477,7.120673,4.516538,1.470250,0.907440,0.450414,0.514877,0.000000,0.013223,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000 -601962.155000,4612765.550000,6100,3105,135.737198,182.850403,168.313217,158.635544,140.280182,126.908287,126.891754,124.602501,123.891754,125.792580,123.346298,135.470261,153.495041,169.842133,183.040482,191.751221,189.949570,173.280151,150.461990,130.313232,118.924812,115.561180,109.718201,81.503326,65.065308,81.619026,93.007446,68.883492,31.379358,12.484315,9.974400,11.266957,7.514063,8.305799,6.130589,2.958685,0.395869,0.209918,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.755000,4612765.550000,6113,3105,112.134727,175.689270,165.953735,155.515717,139.209930,124.077705,124.664482,122.135559,122.730598,125.573570,122.176880,133.705811,151.796707,169.449600,181.416534,191.110748,188.738846,172.747131,150.267792,129.218201,118.127289,113.904152,109.036385,79.895889,63.664482,79.499191,91.763657,67.201675,31.449606,10.542165,9.912416,8.812413,5.867781,5.749599,6.807449,2.495874,0.360332,0.310744,0.000000,0.055372,0.000000,0.000000,0.000000,0.031405,0.000000,1.272727,0.000000,0.000000,0.000000,0.000000 -601969.155000,4612765.550000,6135,3105,134.733078,190.825623,170.982666,161.222336,143.643814,130.858704,128.247131,127.726463,127.850433,131.875229,127.214066,137.982666,155.990921,174.048767,185.718185,195.825623,193.263641,176.809097,154.263657,131.900024,121.189278,118.205803,112.718201,83.577705,67.957870,83.445473,95.676880,70.585968,32.022331,13.919026,10.247127,11.062824,8.509106,9.767782,10.148774,4.185134,0.807439,0.635539,0.201653,0.269422,0.087603,0.000000,0.071075,0.000000,1.328099,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.355000,4612765.550000,6166,3105,137.281021,190.213242,169.138870,162.370270,141.659515,127.204964,129.345459,125.568604,123.684303,130.444641,124.494225,137.312408,153.122330,171.180191,184.271103,193.155396,190.957047,174.477707,151.461182,130.800003,120.337189,116.254562,110.890915,80.378525,65.271088,82.800018,95.056206,68.089272,29.626467,13.416546,10.081010,13.511585,8.497535,8.831420,7.966128,4.357862,0.752068,0.366943,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.555000,4612765.550000,6217,3105,111.769432,162.653717,166.653717,156.066940,139.662003,130.686783,126.934723,124.769432,124.273567,125.000839,124.513237,137.290100,155.314880,170.149582,182.777679,191.852066,189.728088,177.744629,153.719833,132.992569,121.017365,117.587616,111.554558,84.265305,67.992577,83.149597,96.199188,71.860344,33.488449,14.190928,10.141340,6.731419,7.290926,8.970263,7.523981,2.550420,0.629753,0.164463,0.176860,0.000000,0.000000,0.138017,0.000000,0.000000,1.154546,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.355000,4612765.550000,6301,3105,114.791748,162.784317,163.693405,153.709930,139.354568,129.643814,126.569435,123.833893,123.916542,124.933067,125.643814,137.552917,156.090103,171.329773,183.040512,190.949600,190.709930,177.197540,154.685150,134.800842,122.156212,117.916542,112.445465,85.817368,68.478531,85.404144,98.313232,71.420670,35.627293,14.315721,10.222333,7.614063,8.393404,7.813235,8.419022,4.396702,0.744630,0.292563,0.000000,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.355000,4612765.550000,6431,3105,108.162827,164.328110,164.997528,153.154556,139.476868,128.939682,127.080185,124.179359,123.493408,124.873573,125.873573,136.633896,153.799179,170.559525,182.923172,191.171112,189.741364,177.724823,154.617371,133.683487,122.642166,118.104973,112.518196,84.485138,68.311600,84.195885,97.526466,72.666969,32.369442,13.022332,10.228945,6.267780,7.118196,7.566956,7.091749,2.400833,0.574382,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602064.955000,4612765.550000,6614,3105,127.347122,161.517380,160.756210,154.381027,141.926468,131.100006,128.959518,126.587616,125.257034,127.100014,126.794228,137.785965,154.166138,171.166138,183.843826,192.761185,193.785980,181.521515,159.199203,137.240509,127.257034,121.091751,116.736374,88.976044,69.951271,87.397537,99.637199,75.265312,35.116547,13.771091,10.612416,4.530589,8.209106,8.795883,6.640509,3.728933,1.021490,0.143802,0.223141,0.197521,0.159505,0.000000,0.024794,0.195041,0.000000,0.000000,0.000000,1.087604,2.451240,0.564463 -602081.555000,4612765.550000,6697,3105,119.786789,168.631409,163.424789,158.085953,140.110748,126.085960,123.466125,122.747116,120.887611,126.061165,125.590096,136.061172,153.986786,171.821487,184.110748,193.069427,191.904129,181.780167,157.647934,136.424820,125.937202,120.226456,114.763649,86.085960,69.168610,84.639679,97.557037,74.061165,32.788448,13.582664,10.433076,5.624805,7.919849,8.800014,7.704144,5.576867,2.959509,1.955375,1.513225,1.734714,0.681819,0.251240,0.157851,0.000000,0.000000,0.715703,0.000000,0.000000,0.406612,0.000000 -602091.955000,4612765.550000,6749,3105,112.755394,178.912399,175.590103,161.507462,142.681015,132.953735,131.681000,127.639679,125.895882,127.259514,128.094223,139.044647,159.441345,176.499176,189.185150,198.259521,197.242996,182.383469,158.168610,136.325638,123.887611,120.606621,115.672737,86.267776,71.565308,85.986786,102.904144,74.813232,35.557045,12.914893,10.515722,8.561998,7.033899,6.684313,8.572742,3.994223,0.758680,0.040496,0.050413,0.000000,0.000000,0.000000,0.145455,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.955000,4612765.550000,6764,3105,101.657875,172.209091,175.440506,160.820663,143.647110,132.019012,132.126450,128.878525,126.366127,127.985954,128.680176,140.870255,160.870255,177.308273,188.580994,198.828934,198.093399,183.142975,159.399185,136.060333,125.961174,122.010757,118.027290,86.465309,70.688446,87.440514,102.746292,74.531425,36.985970,14.072744,10.729771,10.200015,8.047948,8.942988,7.106624,4.733893,0.581820,0.177687,0.255373,0.125620,0.289257,0.000000,0.056199,0.067769,0.000000,0.000000,0.000000,1.193388,2.438017,2.117356 -602098.155000,4612765.550000,6780,3105,118.895882,180.755371,175.176865,161.424789,144.937210,132.515717,130.862823,128.019852,126.011589,127.912415,127.581841,140.127289,161.722321,177.135544,188.672729,199.358688,197.036362,182.656204,159.747116,137.408264,125.433067,122.945473,117.036377,87.424812,71.441345,88.871094,106.242996,76.052910,39.457870,15.442168,10.639688,9.797535,9.244643,10.142164,10.586792,5.309099,1.838846,0.413224,0.585952,0.000000,0.112397,0.247934,0.081818,0.080992,0.000000,0.000000,0.921488,0.000000,0.000000,0.000000 -602101.555000,4612765.550000,6797,3105,102.139687,174.045471,169.285141,158.797531,142.144638,130.367783,130.318192,127.185966,124.632248,126.566132,124.987617,138.243820,157.227295,175.665298,187.756210,197.078522,194.805801,180.285141,157.904968,135.747940,124.037209,121.524811,116.136383,86.004150,71.285141,85.351257,102.946297,73.929771,35.929771,12.456216,10.557871,9.721502,7.503319,7.847122,8.355385,4.151247,0.282646,0.259505,0.128926,0.247934,0.047934,0.090909,0.042149,0.000000,0.000000,0.000000,0.930579,0.000000,0.000000,0.000000 -602105.155000,4612765.550000,6815,3105,108.757050,169.718170,171.957855,160.255371,145.156204,133.503311,131.635544,127.544640,127.528107,128.098358,126.800842,140.486771,159.280167,176.949585,188.941345,198.619034,197.552917,183.147934,159.338013,136.742981,126.643822,123.933075,116.990929,88.511589,72.313248,86.858688,103.445473,75.230606,35.660351,15.451259,10.635557,9.818195,7.264476,9.579353,9.794230,2.491742,0.982647,0.121488,0.147108,0.117356,0.143802,0.496695,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.155000,4612765.550000,6830,3105,108.711586,183.546295,174.471924,161.538040,142.430588,130.347946,130.471909,126.331421,125.058685,127.066956,125.513237,138.843811,157.761185,175.504974,187.306625,196.430573,195.232224,179.513229,157.100037,133.967789,124.488441,120.628937,115.190926,86.124809,69.926460,85.232246,102.306625,74.455383,36.752914,13.699191,10.471919,9.304146,9.933073,9.638858,8.976047,3.295875,0.683473,0.000000,0.000000,0.000000,0.000000,0.108265,0.000000,0.008265,1.498347,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.355000,4612765.550000,6856,3105,111.251251,183.501648,181.419006,165.179337,147.542969,131.914886,131.790924,127.964478,127.187622,129.576050,127.774399,140.014038,159.609085,176.295029,188.303299,199.162796,196.435532,181.551239,158.823959,136.162827,125.245476,120.790924,117.336380,85.947952,70.600845,87.047127,103.733078,75.534729,35.749603,14.347126,10.666961,11.758694,8.804975,9.332247,9.290098,6.895051,0.708266,0.738018,0.467769,0.059504,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.389256,0.000000 -602116.355000,4612765.550000,6871,3105,124.854568,186.578506,176.355377,158.652893,144.950424,130.537201,131.479355,128.661179,127.057869,128.008286,126.570267,139.066132,158.421494,175.851242,187.909088,196.636368,194.933884,181.495865,157.239670,135.611588,123.966957,120.396713,114.727287,85.495880,70.396713,83.495880,101.008278,73.586792,34.991753,14.123983,10.429770,10.872743,7.588443,8.798361,8.766129,5.290090,0.871903,0.568597,0.500828,0.132232,0.000000,0.000000,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.355000,4612765.550000,6896,3105,113.696709,183.560333,179.138855,169.074387,151.305786,135.107452,134.396713,129.520676,128.677704,133.082657,129.479355,142.661163,161.859528,178.677689,190.140503,200.264465,198.293396,183.739670,161.276855,139.309921,127.582664,123.747948,117.318199,86.855385,70.152908,84.863655,100.921501,73.409103,34.822334,13.188448,10.665308,14.750429,10.972742,12.011582,12.835553,10.309101,4.698349,5.923143,5.380167,4.819011,4.504134,2.361158,1.066117,2.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.555000,4612765.550000,6917,3105,108.136383,178.628113,172.264481,160.462830,142.694244,129.834732,126.735542,123.661163,123.305794,125.421501,122.487610,134.702499,151.859543,170.396713,181.371918,191.429779,190.347137,174.966965,152.859543,132.223160,120.760338,117.603317,112.000008,83.793396,68.281006,83.603317,99.752075,72.760345,34.542164,11.272743,10.181838,7.928937,6.661171,7.589268,9.969436,3.739676,0.703307,0.152067,0.514877,0.109918,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.755000,4612765.550000,6933,3105,115.524803,170.566147,167.599182,159.078552,141.508301,129.549606,126.103317,124.103317,120.491745,123.847115,120.987617,131.954575,149.822342,167.781006,178.599213,188.566132,185.095062,172.838882,150.929779,130.078522,118.194229,115.194221,109.227280,82.351250,65.384315,82.805794,98.086784,72.409096,32.549606,13.715719,9.929771,6.487615,6.033072,6.497532,9.409932,2.678516,0.308265,0.508266,0.266117,0.000000,0.000000,0.090909,0.785125,0.363637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602134.555000,4612765.550000,6962,3105,113.446297,164.311569,165.005783,155.138016,139.047104,125.675224,124.427292,119.030594,117.121506,119.328117,117.997536,128.823990,145.724792,162.873550,174.286774,183.799164,181.898346,169.972717,147.501648,128.179352,116.592583,111.724808,106.154564,80.609108,66.427292,82.658699,99.394234,75.038864,35.253738,14.174399,9.650432,6.168606,6.852908,5.714059,6.128938,3.490089,0.409092,0.146281,0.305785,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.155000,4612765.550000,6980,3105,103.023987,164.552917,165.610764,154.809113,138.288452,127.495064,123.304977,119.536385,117.784317,119.412415,118.371094,128.850433,144.709930,161.751266,172.090103,181.850433,181.296707,168.734726,147.346298,127.073570,114.668617,110.842171,106.536385,80.288452,64.313240,83.230598,98.462006,72.916550,34.081837,13.725637,9.685143,6.593398,7.335552,6.695877,8.021500,2.500830,1.276035,0.432232,0.042149,0.238017,0.000000,0.005785,0.000000,0.000000,0.000000,1.593389,0.000000,0.000000,0.000000,0.000000 -602141.355000,4612765.550000,6996,3105,108.538033,160.898361,164.518188,152.361160,138.873566,124.733070,121.757858,118.724800,116.832245,118.666954,116.906624,128.071915,144.683487,161.914886,172.700012,182.262009,181.286804,167.997528,146.716537,127.716537,117.319847,113.328110,107.700012,81.286804,65.633904,82.030602,98.452072,72.840523,34.405804,12.112414,9.790928,6.865301,6.514892,5.043810,7.058690,2.464467,0.639670,0.371901,0.448761,0.196694,0.000000,0.110744,0.157025,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602146.355000,4612765.550000,7021,3105,96.815712,152.782654,157.518188,150.212402,135.526459,122.815712,120.518188,115.576042,113.592575,115.840508,113.749596,124.410751,141.303314,158.005798,169.344635,178.923157,177.642151,166.245468,144.931412,123.716537,114.344635,108.733070,102.609100,77.088440,61.427296,80.939690,99.347946,73.777702,33.782665,13.425638,9.328118,5.338851,7.255386,5.471084,6.510754,2.752071,0.511572,0.576033,0.489257,0.352066,0.329752,0.043802,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.155000,4612765.550000,7055,3105,93.876869,152.273560,158.480164,150.099991,134.538025,123.174393,120.182655,116.653732,114.496704,114.133072,115.843811,125.480179,143.711563,159.124786,170.240494,180.455383,180.347946,167.752884,146.314880,125.918198,115.033897,112.323151,104.918198,78.042160,64.207458,82.554558,98.521500,72.182655,33.893410,13.767786,9.538035,5.210753,6.570262,6.704145,5.414887,2.990089,0.052893,0.000000,0.035537,0.000000,0.000000,0.070248,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.755000,4612765.550000,7098,3105,94.635551,149.453735,162.131424,152.569443,137.280182,126.412407,123.007446,119.668610,118.627281,119.238853,119.329765,129.949600,146.858704,162.255386,174.486801,184.164490,184.304977,173.040512,150.321503,130.114883,119.048775,115.189270,108.718193,82.420670,67.776054,85.048775,98.900009,74.387611,35.974400,13.398366,9.883491,5.488440,7.407454,6.699185,7.699186,2.342980,0.748762,0.712398,0.357026,0.067769,0.000000,0.122314,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.955000,4612765.550000,7139,3105,84.638031,155.522324,162.464493,152.489273,138.530594,128.811584,126.910751,122.588440,122.076042,122.877693,122.340508,132.629761,150.282654,166.373566,178.266144,187.117386,188.216553,177.530609,153.728943,132.662827,122.282654,118.489265,112.472740,85.778534,70.695885,88.018188,99.398361,74.026459,36.133904,13.772745,10.224813,5.508274,8.018196,5.977697,6.858689,1.695045,0.451241,0.282645,0.080992,0.100827,0.000000,0.064463,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602173.155000,4612765.550000,7155,3105,92.840515,153.443817,162.088440,155.939682,140.088440,131.088440,127.633904,124.733078,123.774399,124.435555,126.923157,136.253723,152.873566,168.956207,180.749603,191.857056,191.592590,180.741333,157.195877,136.162827,126.617371,121.708282,117.700020,90.005806,75.088448,90.865311,101.468613,76.476883,36.344650,15.611589,10.700020,6.463648,8.224809,8.903319,7.419847,4.103313,0.682647,0.081820,0.114050,0.173554,0.116529,0.076860,0.000000,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.955000,4612765.550000,7174,3105,88.957047,150.882645,161.461166,155.130585,138.750427,129.527283,126.957039,123.254562,122.618195,122.692574,124.304146,135.122330,151.105789,168.444641,181.014877,190.064468,190.295868,180.196701,156.659515,135.932251,126.122330,121.238029,116.254562,89.271095,74.527298,89.213249,99.238029,75.213249,33.841339,13.583488,10.568614,5.518192,7.819849,8.504148,6.888440,2.762816,0.621490,0.483473,0.157025,0.149587,0.000000,0.071901,0.552067,0.045455,0.000000,0.000000,1.885951,0.000000,0.000000,0.000000 -602180.555000,4612765.550000,7192,3105,86.647133,150.176041,162.985962,152.886780,138.952896,129.779358,127.647125,124.043816,122.985962,123.680183,124.754562,134.605804,152.738022,168.200836,181.423996,190.870270,190.514893,179.076889,156.622314,136.680176,126.002495,122.795883,115.572739,90.283485,73.250435,89.729767,101.647125,75.027290,33.886799,14.690101,10.506630,5.738854,7.451254,9.622330,7.314887,3.426454,0.398349,0.426448,0.050413,0.061157,0.047934,0.000000,0.000000,0.260331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.155000,4612765.550000,7220,3105,98.192574,146.556198,159.589264,151.655380,136.853745,128.704971,124.936378,121.870262,119.985962,120.605797,122.002495,132.688446,148.994217,164.614059,176.333069,187.432236,186.432236,175.713226,152.597534,132.399185,121.985962,118.630592,111.754562,86.390930,71.390930,87.911591,103.217369,75.779358,35.176052,13.407455,10.159525,5.374391,7.866130,8.740509,9.018195,3.500833,0.390083,0.404960,0.096695,0.276034,0.000000,0.000000,0.301653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.355000,4612765.550000,7241,3105,75.975220,150.942169,158.586792,150.330597,135.950424,126.140511,123.413239,119.479355,117.776878,118.694229,119.074394,129.595047,148.090927,163.834732,175.272751,185.768616,183.628113,172.041336,151.181839,130.429764,119.570267,116.636383,110.727287,84.041336,68.479355,84.892578,100.388443,74.479355,34.299194,12.545472,10.066134,6.023977,7.366956,6.943815,7.023978,3.166949,0.223141,0.400827,0.104959,0.281819,0.000000,0.000000,0.328926,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.555000,4612765.550000,7267,3105,89.454559,146.165298,160.884308,149.396713,136.727295,124.917374,121.826462,117.892578,116.520676,116.785141,116.834724,129.504150,145.925629,161.090927,172.123978,182.380188,181.553741,168.553741,147.330597,127.123985,116.239685,111.694229,107.000015,80.545471,65.884315,84.264481,100.487617,75.404976,35.950432,14.320679,9.727292,5.945467,7.889270,7.965303,7.421500,3.980999,0.695043,0.231406,0.372728,0.117356,0.009091,0.122314,0.198347,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.155000,4612765.550000,7305,3105,76.920677,148.953735,160.771927,149.912415,135.400009,124.647942,120.003319,117.276047,115.242989,115.590096,114.325630,124.838028,142.515717,158.094238,169.003326,178.953735,176.904144,165.350433,143.614899,122.970261,112.871086,108.044640,102.490921,75.400009,63.590103,81.424805,99.069435,75.333900,36.292580,12.908284,9.317375,5.798357,7.801669,7.748773,6.411582,3.200835,0.678514,0.104959,0.187604,0.127274,0.030579,0.069422,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.355000,4612765.550000,7356,3105,82.780182,142.234711,156.879364,148.019836,131.912415,121.532242,119.499184,114.788445,112.722328,112.375221,113.085960,123.871086,142.862808,156.507462,167.507462,177.325638,174.829773,163.887619,142.135544,122.829765,109.920670,106.961998,100.309105,74.788452,61.664482,78.152084,96.705795,72.771919,33.234730,13.881836,9.119028,6.679348,7.300841,6.229764,6.085960,1.220665,0.552067,0.017356,0.034711,0.080166,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.755000,4612765.550000,7373,3105,79.887611,145.689255,156.309097,147.441330,133.590088,122.656212,118.061165,114.102493,111.433067,112.375221,111.540504,122.846291,139.862808,155.457855,167.102478,175.515701,174.540497,162.557022,140.218185,120.590096,110.003319,104.251251,99.763649,74.424805,60.011593,77.846291,97.350426,71.606621,33.747128,12.500017,9.069440,5.596705,5.998361,5.630590,6.414888,2.435543,0.554547,0.035538,0.044628,0.222315,0.000000,0.000000,0.385951,0.438843,0.000000,2.034711,1.944628,0.000000,0.000000,0.000000 -602219.555000,4612765.550000,7387,3105,80.849602,148.477692,160.163635,150.105789,133.411591,124.320679,118.849602,115.915718,114.287621,113.626457,114.006622,124.560349,143.039673,158.386780,168.047943,177.808273,176.998352,164.609924,141.899185,123.229767,110.700844,107.973572,101.890923,75.642998,61.436386,79.337204,96.262825,71.915726,35.130600,13.686797,9.262830,5.904970,6.860343,7.819020,8.557038,3.385958,0.442977,0.409918,0.112397,0.242150,0.000000,0.000000,0.457025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602224.155000,4612765.550000,7410,3105,79.306633,144.562805,156.430573,148.852066,132.967789,123.000847,119.728119,115.604156,113.166138,112.513245,112.215721,123.174400,140.257034,157.075180,167.298340,176.116547,174.009109,161.273529,139.885132,120.926468,109.513245,103.695061,98.372749,73.604156,58.984318,77.471924,93.100021,71.033905,32.190929,13.357042,8.942995,4.811580,6.307453,6.399186,5.595052,2.756204,0.878514,0.232232,0.342150,0.235538,0.191736,0.111571,0.062810,0.000000,2.160331,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.755000,4612765.550000,7438,3105,84.942162,146.223160,157.884308,147.909103,131.471085,120.099182,116.900833,111.537201,110.107445,109.115707,108.289261,120.322319,139.107452,154.413239,165.611588,175.975220,173.305801,160.214890,139.107452,119.495872,107.239677,102.528931,95.363647,70.256218,56.256218,75.140511,97.371910,72.157043,32.628120,13.279356,8.669440,5.402489,4.916544,6.799187,5.333896,1.921494,0.372728,0.087603,0.192562,0.168596,0.001653,0.000000,0.000000,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602234.555000,4612765.550000,7462,3105,80.990929,148.875229,161.528122,148.189270,133.470261,121.247124,116.519852,114.462006,110.106628,110.214066,110.445473,122.329773,140.023987,156.238861,168.238861,177.453735,175.569443,161.916550,140.949600,119.751259,108.007454,104.585968,97.263657,71.420677,57.693409,76.734734,98.048782,71.800842,33.594234,11.723158,8.842168,6.009102,7.495883,6.795053,5.193400,3.360338,0.108266,0.021488,0.000000,0.069422,0.000000,0.000000,0.389257,0.583472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602241.155000,4612765.550000,7495,3105,90.422325,148.754547,158.622330,146.961182,131.043823,121.333061,116.713226,111.919838,110.985962,110.349602,109.374397,120.820671,139.473572,154.820679,165.853745,176.085144,174.225647,161.159531,138.291763,119.556206,106.630592,103.333069,95.027298,71.754562,58.366138,74.589272,96.316551,72.258690,34.109936,13.417373,8.638862,6.348772,6.422329,5.682656,6.038027,1.952072,0.647935,0.136364,0.371902,0.000000,0.000000,0.000000,0.009091,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602245.155000,4612765.550000,7515,3105,94.195885,152.724808,160.815720,151.245468,135.509933,123.666962,120.096710,116.931419,113.567787,113.790924,112.939690,124.452087,143.328110,158.278519,169.038849,179.237198,177.220673,162.964478,142.253723,121.774399,110.600845,105.733070,98.972748,73.799194,59.749603,77.171089,95.848778,70.691750,32.947952,13.224813,8.997540,7.310754,6.424808,6.236377,6.972740,2.571907,0.579340,0.076860,0.126446,0.169422,0.054546,0.000000,0.123141,0.428926,0.000000,1.637190,0.000000,0.000000,0.000000,0.000000 -602251.955000,4612765.550000,7549,3105,87.226471,150.463654,157.405792,148.124802,131.852081,118.885139,117.769432,113.447121,111.149597,110.339684,109.984314,121.719856,140.075226,156.728119,167.926453,176.992569,177.083481,161.777695,140.843811,119.951256,107.711586,104.207451,97.281830,69.860344,56.182667,74.876877,94.157867,71.686798,31.447126,11.424809,8.843822,5.362820,7.321501,7.070259,6.854556,3.208271,0.247935,0.000000,0.131405,0.406613,0.000000,0.000000,0.552067,0.365290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602260.155000,4612765.550000,7590,3105,88.012413,156.161179,162.756210,151.136383,135.392578,124.723160,119.921501,116.384315,113.797531,114.400841,112.946289,126.078522,144.574402,161.367783,171.376053,182.607452,180.516541,164.938034,143.508286,122.599190,110.483482,106.772736,100.045464,74.177704,60.979359,76.830597,96.929764,73.615715,34.830597,13.050430,9.095060,8.601665,7.904975,7.302493,7.633071,2.652897,0.462811,0.428100,0.194216,0.081819,0.189257,0.000000,0.564463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602266.555000,4612765.550000,7622,3105,102.242996,159.383499,161.623169,154.028137,136.838043,124.970268,122.796715,118.193405,115.904152,116.639687,114.920677,126.102501,145.036392,161.466156,172.044662,183.325653,179.441360,165.879379,143.400024,123.813240,111.342171,107.995064,101.309113,75.085968,60.342171,77.722336,95.350433,70.862839,33.614895,13.381837,9.209937,6.704142,7.581832,6.566128,7.796708,2.747938,0.763638,0.342149,0.117356,0.092562,0.485951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602269.955000,4612765.550000,7639,3105,94.966133,159.214050,161.511566,151.610764,138.131424,124.280182,123.247124,118.486794,117.098366,117.197540,116.048782,127.205803,145.825638,161.891739,174.453720,183.792572,181.255371,166.817352,143.990921,122.850433,112.114899,108.635559,101.263657,76.883492,62.189274,78.453735,95.561180,70.313240,32.505802,13.564481,9.205804,7.427283,7.437204,7.520674,6.664475,2.237195,0.261984,0.086777,0.082645,0.219836,0.000000,0.000000,0.124794,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602273.355000,4612765.550000,7656,3105,96.935562,159.467789,164.831421,153.971909,135.773560,122.426460,121.252907,117.790092,115.856209,115.905800,115.285965,127.426460,146.261169,162.525635,174.145462,184.294235,180.930588,167.459518,142.682678,123.013237,111.897537,107.690926,103.236374,75.575226,61.806633,78.170258,95.707451,69.294243,31.228117,13.232249,9.385144,6.578525,7.156213,7.149599,8.617369,3.988437,1.053721,0.254546,0.090083,0.020661,0.000000,0.057851,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,2.657851,0.000000 -602276.955000,4612765.550000,7674,3105,100.399185,155.952896,159.415710,154.043808,133.754562,124.076874,121.911583,117.928116,116.250427,117.316544,115.597534,127.423981,144.704971,162.167770,174.779343,184.093399,181.696701,167.316528,144.052078,122.217369,111.688446,107.481834,102.936378,75.804146,63.109936,77.680183,96.200844,70.506622,31.308285,13.349606,9.357870,7.731416,4.933898,7.552080,6.602493,2.633063,0.334712,0.104959,0.075207,0.000000,0.257025,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.755000,4612765.550000,7703,3105,95.848778,163.195877,162.138031,153.683487,135.650421,124.584312,122.931419,119.460350,117.906631,118.766136,116.476875,129.311584,147.600830,164.708267,176.633896,186.187607,184.187607,167.542984,145.336380,124.171089,112.956215,108.716545,103.700020,77.989265,61.187622,78.286789,95.617371,70.724823,32.782661,14.572743,9.427292,7.695879,6.415717,7.260343,7.230591,3.883477,0.577688,0.161984,0.256199,0.027273,0.003306,0.000000,0.000000,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602286.555000,4612765.550000,7722,3105,93.738861,162.185150,164.052917,150.251266,133.697540,121.738861,119.482666,117.697540,114.953735,117.804977,114.978531,126.672745,144.887619,162.350433,174.838043,183.854568,180.110764,164.515717,142.300842,121.804977,110.771919,107.160347,101.218201,74.937210,61.201675,76.102501,93.218201,69.325638,32.226463,11.495057,9.201673,8.838853,6.213237,7.175220,7.196705,3.261163,0.762812,0.000000,0.000000,0.030579,0.000000,0.000000,0.205786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602291.355000,4612765.550000,7746,3105,102.594231,172.908279,162.048782,155.784317,135.023987,121.470268,119.495064,116.552910,114.842171,117.280182,112.792580,126.544647,144.139694,162.999191,174.652084,184.900024,181.288452,165.404144,142.057037,123.858696,110.247124,107.883492,101.718201,73.817375,59.007454,77.941345,97.908287,69.437210,31.858696,13.449604,9.247126,8.004971,7.438857,6.685138,6.400837,2.630584,0.615705,0.237191,0.000000,0.364464,0.069422,0.056199,0.000827,0.000000,1.532231,0.000000,0.000000,0.000000,0.000000,0.000000 -602296.755000,4612765.550000,7773,3105,98.566132,165.533051,159.557846,152.417374,133.929764,121.202492,118.714890,116.723160,115.210762,117.425636,113.004150,125.582664,143.549591,161.971069,173.995865,184.392563,180.780991,163.351242,140.904953,122.582664,109.607452,106.657043,100.318199,73.863655,59.045475,77.979355,93.830597,69.334724,32.971096,11.375223,9.119854,10.166128,6.852080,6.776873,7.395879,2.531410,0.424794,0.065289,0.000000,0.338017,0.000000,0.000000,0.000000,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602303.755000,4612765.550000,7808,3105,113.704964,165.614075,161.109940,150.275223,135.448761,119.481827,116.390915,114.448769,112.903313,116.225624,111.622322,124.771080,143.076889,161.738037,174.192581,184.390930,180.622330,162.159531,140.101669,121.225624,108.944633,104.275215,99.663643,73.886795,58.275227,76.382660,96.779343,69.936378,30.729773,10.474397,9.060350,7.393399,6.787618,6.200838,5.875217,2.118185,0.375208,0.136364,0.100827,0.058678,0.067769,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602307.355000,4612765.550000,7826,3105,107.150436,164.431412,159.927277,153.514053,135.522324,121.976875,120.447952,116.241341,115.290924,119.431419,113.745476,126.985138,144.100830,163.720673,177.514053,187.447937,184.009933,165.795044,143.142151,123.935555,112.266136,107.695885,103.109108,75.538872,60.175224,79.654572,98.249603,70.555397,32.315720,12.462002,9.373572,8.857863,7.157867,6.723154,8.628938,3.766949,1.413226,0.283472,0.252893,0.389257,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.439670 -602312.755000,4612765.550000,7853,3105,122.947952,169.261993,162.923157,153.295029,135.394226,122.956215,119.700020,117.022331,115.452087,119.906631,114.460350,127.179359,145.187607,163.419022,177.823975,187.972733,184.129761,166.476868,145.427277,123.981010,112.650429,109.666962,104.336380,76.055389,61.658699,81.956215,96.468613,70.055389,35.394238,13.159522,9.485144,9.229768,7.944642,7.378525,6.881829,3.556206,0.901655,0.281819,0.119835,0.000000,0.000000,0.314050,0.180992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602319.955000,4612765.550000,7889,3105,121.485962,148.560349,147.609940,135.535538,120.221504,108.750427,104.163651,101.609932,99.444641,100.246292,100.130592,110.733902,130.510757,146.684326,159.568619,168.626465,167.254562,153.907455,132.295868,111.138855,99.990097,96.072739,91.436378,66.031425,51.064480,68.419846,88.915710,68.023155,30.444649,10.496712,8.312416,5.657036,9.101665,7.127285,7.829766,4.588439,0.490912,0.450415,0.307439,0.328100,0.042149,0.000000,0.185952,1.071903,0.000000,0.000000,0.000000,1.520661,0.000000,3.200827 -602328.155000,4612765.550000,7930,3105,138.134735,142.977692,139.316528,130.266953,115.605797,104.564476,98.597534,95.258690,94.514893,93.845467,93.862000,105.374397,124.192574,141.928101,152.738022,165.002502,163.085144,151.448761,129.043823,109.903320,100.738029,94.068611,87.390923,63.399193,49.324818,68.209106,88.795883,67.308281,32.002495,10.447950,7.944647,6.400836,8.242161,8.217367,8.076873,5.032242,1.854549,0.269423,0.059505,0.123967,0.089257,0.000000,0.303307,0.566943,6.344629,2.085950,6.714050,7.452067,5.258678,6.148761 -602336.755000,4612765.550000,7973,3105,138.900024,143.503326,132.205795,120.106621,106.321503,94.941330,90.999184,87.280174,86.726456,87.081833,86.652077,98.329765,115.453728,130.924805,141.569443,151.486801,151.329773,141.652084,122.362823,104.561165,94.949600,91.412407,86.627281,61.643818,46.123161,67.205803,89.313232,69.222328,31.910763,10.793406,7.875226,6.455384,7.091748,7.951252,10.533899,5.412406,1.111574,0.443804,0.242149,0.335539,0.000000,0.589257,0.120661,0.261984,4.193388,1.937190,1.800827,2.729753,4.685124,8.900827 -601553.155000,4612755.550000,4055,3155,117.813232,134.728119,129.273560,118.852081,102.868607,93.091751,90.050423,87.926460,86.835548,89.926460,90.083481,101.000839,118.761169,135.372742,149.554565,158.926453,158.893402,149.885132,127.141335,105.157867,94.356209,90.909927,84.918198,57.480183,41.058693,57.042164,73.133072,55.223984,23.629774,8.206625,7.719854,9.083483,8.404146,11.033898,11.015718,8.933895,3.244636,1.394218,0.846284,0.674381,0.866118,0.543803,0.190084,1.166117,13.953720,10.330581,9.128926,7.793390,11.528100,10.402481 -601558.555000,4612755.550000,4082,3155,109.718193,142.885971,133.018204,125.547127,110.125641,102.571922,100.538864,98.852913,97.299194,100.439690,100.125641,110.125641,127.745476,144.175232,157.332260,166.365311,166.563660,157.514069,134.720673,113.910759,102.654564,97.381836,91.381836,63.026463,46.472744,62.100845,77.646301,59.290928,25.406631,9.961999,8.307458,6.942987,7.759515,8.444642,10.169436,5.232239,0.806615,1.124797,0.473555,0.948761,0.677687,0.601654,0.928928,1.883472,3.253720,2.695868,5.276861,5.204134,5.338017,1.863636 -601567.355000,4612755.550000,4126,3155,128.614899,172.251266,153.482666,148.400024,130.912415,114.978523,114.251244,112.408264,111.771904,116.763649,111.647934,122.317368,139.614899,156.234726,169.325638,180.639694,177.606628,162.317368,142.763657,123.300842,110.714050,107.242981,101.309097,72.408287,58.581837,74.375229,86.920670,61.656219,28.697542,12.910762,9.209936,11.740510,8.432247,7.875220,6.548772,3.009924,0.414877,0.090909,0.275207,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612755.550000,4166,3155,126.855385,175.177689,153.822327,145.838852,127.929771,114.681831,112.103325,111.227287,110.185966,116.144646,110.615715,121.673569,138.880188,156.252075,168.855377,178.342972,176.334717,161.880188,140.359528,121.367783,110.161171,107.731422,99.590927,71.946297,57.615723,72.764481,86.037209,62.466961,27.301674,10.971918,9.053738,10.799189,8.334727,7.846294,7.685964,3.870256,0.400001,0.063637,0.004959,0.095868,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.155000,4612755.550000,4205,3155,105.976868,165.261169,151.310760,141.285965,126.566948,112.029755,111.806618,108.938850,108.715706,113.368599,108.938850,121.161987,138.500839,155.302490,168.087616,177.285965,174.285965,161.641342,139.261169,120.393394,108.525627,105.087608,99.145462,70.930588,55.352081,70.492584,83.674400,60.327290,26.376879,9.973573,9.013242,11.084313,6.498362,7.066130,6.110756,2.645461,0.302480,0.107438,0.031405,0.122314,0.122315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.155000,4612755.550000,4220,3155,99.912415,167.557037,153.317368,143.565308,126.424812,114.325638,113.879356,111.895889,110.424812,114.110764,111.218201,122.995064,139.606628,157.672745,168.887619,179.309113,176.912415,163.871094,141.358704,121.226463,111.185143,107.102501,100.672745,72.391754,56.424812,70.259521,84.490929,62.160351,26.697540,11.881010,9.152085,9.770262,7.156214,8.565304,7.171088,3.985134,0.930580,0.107438,0.018182,0.056199,0.036364,0.082645,0.000000,0.000000,0.000000,0.000000,0.976033,0.000000,2.272727,2.000000 -601590.155000,4612755.550000,4240,3155,114.852913,163.940506,152.279343,142.841324,127.800018,113.271088,113.634727,111.527290,109.998360,113.378525,110.692574,122.444641,140.122314,156.866119,168.882645,178.866119,175.899185,162.593399,141.824799,122.254562,110.114067,106.659515,101.072739,72.576874,55.800022,72.238029,85.171913,62.816551,29.097540,10.913240,9.188448,11.661173,7.733074,9.093403,7.691749,3.897529,0.533059,0.095042,0.159504,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.355000,4612755.550000,4256,3155,109.702492,163.352921,153.295044,143.708267,128.526459,115.815712,115.576042,112.047119,112.700012,113.914886,112.096703,124.212410,142.600830,159.460358,170.650436,180.774399,178.972748,164.683502,143.460342,122.972740,112.088440,108.865295,101.609100,74.592583,57.815720,72.063652,85.485138,64.187622,29.171093,12.498365,9.237210,9.700841,6.503320,8.772741,9.400841,3.719843,0.144629,0.094215,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.145455 -601597.955000,4612755.550000,4279,3155,106.456215,164.146286,155.857040,143.385971,127.245476,115.104965,114.303314,113.104965,111.666954,113.757858,112.435547,124.419029,142.427292,159.848770,172.286804,180.832260,178.906631,166.584305,142.633911,123.344635,112.617363,108.228935,103.336372,73.914902,58.377705,72.295059,85.857040,64.642166,27.617374,11.953736,9.394234,8.529765,7.339685,7.732245,7.162823,3.414057,0.232232,0.000000,0.009091,0.000000,0.017356,0.152066,0.000000,0.000000,1.259504,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.955000,4612755.550000,4314,3155,110.833893,161.961166,154.985962,143.580994,126.762825,114.721504,115.895058,112.060349,111.457039,113.019020,112.250427,123.514893,142.415710,158.382645,171.176041,179.721497,178.952896,165.547943,143.597534,123.432243,111.184311,108.539680,101.390923,74.564484,56.663654,71.473579,87.200851,63.969440,28.523159,11.800017,9.217375,7.252903,7.355387,8.147947,8.776873,2.890916,0.120661,0.000000,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.955000,4612755.550000,4339,3155,112.228119,158.960342,155.662842,145.208298,130.133896,118.613235,117.150429,114.208275,112.869431,114.555382,113.952072,125.621506,144.646301,160.646286,172.406616,182.340500,179.985138,167.877701,143.869446,124.481018,112.943810,109.993401,103.290916,75.051247,59.109108,71.770256,87.092583,65.158699,29.151258,12.747952,9.390101,7.695054,8.448776,9.828113,9.182659,3.934719,0.735539,0.134711,0.023967,0.001653,0.124794,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.614876,1.116529,0.000000 -601613.355000,4612755.550000,4356,3155,115.247948,159.834717,157.933884,143.586807,131.082657,117.264481,115.851257,113.165306,112.925636,113.719025,113.578529,125.247948,143.619873,160.495865,171.793396,181.297516,179.842972,166.264465,144.785156,123.107452,112.371918,109.371918,102.545471,74.735550,58.735554,72.520676,85.752083,66.033073,29.954563,13.085141,9.322333,7.679351,8.029767,8.533073,8.528112,4.285959,0.861159,0.128099,0.448762,0.000000,0.184298,0.191736,0.195868,0.000000,0.000000,0.000000,0.000000,0.477686,0.000000,0.000000 -601617.955000,4612755.550000,4379,3155,109.447937,159.923981,153.114059,140.841339,127.105797,114.527290,114.072739,111.196709,110.328941,112.229767,112.287621,122.857864,142.742172,159.171906,170.684311,179.039673,178.196701,165.791748,142.750443,121.312408,111.188446,107.576866,101.436378,73.965302,56.923981,70.345467,85.857864,63.436378,30.213243,11.882661,9.221506,8.594228,7.287618,7.562823,7.582657,3.181824,0.548762,0.380166,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,1.090909,0.000000,0.952893,0.000000,0.000000 -601623.555000,4612755.550000,4407,3155,102.390923,152.227295,157.152908,144.913239,128.169434,117.987610,116.227280,113.037201,111.847115,113.243813,113.805794,126.169426,143.376053,159.665298,172.764481,181.962830,179.913239,167.871918,144.913239,123.723152,112.673561,109.590919,102.772736,74.144646,59.210758,73.243820,88.475220,65.442162,30.144646,12.700018,9.342996,8.866128,9.572743,8.649600,9.509106,2.754552,1.105787,0.114050,0.191736,0.115703,0.000000,0.086777,0.000000,0.000000,0.000000,1.180992,1.925620,0.000000,0.000000,2.048760 -601628.555000,4612755.550000,4432,3155,98.444641,154.535538,152.874390,141.775208,127.221512,116.634735,114.816551,112.362007,112.047958,112.750435,112.651260,124.841347,143.692566,158.403305,170.287613,180.626450,177.998352,166.064468,142.312408,122.469444,111.014900,107.163658,101.800026,73.403328,57.419853,71.337212,87.188446,63.849606,28.452911,10.596712,9.254564,6.115712,6.167782,8.442989,7.530592,3.832238,0.169422,0.071075,0.000000,0.000000,0.023967,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.755000,4612755.550000,4448,3155,93.576874,160.838043,156.978516,142.623154,129.110764,118.623154,114.945465,112.771912,112.796707,113.697533,113.408279,125.160347,143.763657,159.259521,171.251236,180.424820,179.565308,167.077667,143.838043,122.995056,111.358688,108.449600,102.945473,74.416550,58.813244,74.218201,87.416542,63.383492,29.722334,11.423984,9.358697,7.200012,7.511585,7.255386,7.851254,3.118188,0.427274,0.194215,0.371902,0.000000,0.002479,0.086777,0.000000,0.000000,0.000000,1.050413,0.891736,0.000000,0.000000,0.000000 -601635.555000,4612755.550000,4467,3155,102.914886,156.278519,154.939682,145.402496,128.014069,118.724800,116.493401,113.319855,113.633904,113.840515,114.857040,125.939690,144.493393,161.708267,172.873566,182.873566,181.104965,168.658691,145.906616,124.022331,113.047134,109.385971,103.336380,75.642166,58.724812,74.336380,88.427292,67.055389,30.138037,12.369440,9.394234,7.484310,8.123981,8.222328,8.903319,3.666123,0.487604,0.165290,0.234712,0.122314,0.095868,0.093389,0.000000,0.000000,1.067769,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.155000,4612755.550000,4480,3155,97.316551,154.265305,154.959518,141.000839,126.463646,115.546295,115.190926,111.174393,111.273575,110.868607,112.571091,124.108276,143.389267,158.397537,169.860336,179.422333,179.438858,166.521500,143.265305,122.149597,111.025635,106.653732,101.100014,73.612411,57.281837,72.719849,86.414062,64.116547,29.282665,12.062827,9.190928,8.746295,7.371916,7.757037,7.271087,3.096699,0.400827,0.176033,0.135538,0.000000,0.109918,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.355000,4612755.550000,4501,3155,103.017365,156.799194,155.419037,144.286804,128.633896,116.485130,115.642159,112.807449,111.848770,113.369431,114.328110,124.675217,142.865311,159.898361,170.476883,180.931427,179.881851,168.154556,143.129776,122.691742,110.452072,107.443810,101.427284,74.063644,57.410763,73.195877,86.956207,64.840515,30.055389,11.269439,9.220680,7.500012,7.615717,8.030592,8.156212,3.285957,1.144630,0.064463,0.061158,0.060331,0.317356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.155000,4612755.550000,4525,3155,110.244644,154.150421,152.695877,140.580170,126.679352,116.390099,114.505806,112.216545,111.795059,112.811584,112.852913,123.555389,142.563644,158.819839,169.761993,179.563660,178.150436,166.166946,143.348770,121.290924,109.976875,106.737206,100.018196,71.952087,56.638039,71.604973,86.687622,64.456215,28.381838,9.057869,9.092582,6.580175,6.702495,5.940507,7.076873,2.805791,0.761985,0.000000,0.119009,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,1.047108,0.000000,0.000000,0.000000,0.000000 -601652.555000,4612755.550000,4552,3155,100.900848,154.057861,154.727295,141.652908,126.950432,118.694229,114.983490,112.685966,112.487617,112.851257,113.710762,124.462830,143.239685,158.818192,171.165298,180.016541,178.537201,165.884308,143.239685,121.024811,111.057869,106.834724,101.454559,72.776878,56.289276,72.487625,85.479355,64.305809,28.371922,10.797538,9.223160,6.070259,6.901668,6.195879,7.025633,2.647940,0.677687,0.075207,0.070248,0.061984,0.022314,0.204133,0.000000,0.000000,0.000000,0.000000,0.000000,0.882645,0.000000,0.000000 -601660.955000,4612755.550000,4594,3155,117.314880,148.959518,156.058685,144.976044,130.670258,120.670250,119.066948,116.744637,116.298355,115.455376,117.058685,126.918190,145.761169,162.009109,172.909927,182.190918,180.281830,168.662003,145.852081,124.050415,112.777687,108.587608,103.190926,76.604156,59.149609,74.124817,89.364487,66.471916,30.521507,12.902498,9.381011,6.500839,8.414892,8.659518,9.400843,2.520668,1.580995,0.074380,0.115703,0.160331,0.076033,0.110744,0.233884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.555000,4612755.550000,4642,3155,99.690933,151.873581,152.154556,142.666962,127.906639,118.468620,115.328125,112.749611,112.799202,113.030602,113.799202,125.600853,142.914902,159.096710,171.261993,179.733063,177.576050,165.724808,143.410751,121.898376,109.443825,106.848785,100.881844,72.567795,56.402496,72.518211,86.328117,65.567787,29.551258,10.681836,9.171094,5.480175,6.738856,7.738029,6.193400,2.917361,0.827275,0.158678,0.145455,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.161157,0.000000 -601678.755000,4612755.550000,4683,3155,92.677696,150.361176,150.435562,141.435562,127.096703,117.361168,114.311577,112.162819,111.220673,111.914886,113.452072,124.179352,142.204163,157.377716,169.567795,179.014069,177.278534,166.121521,142.361176,120.848770,109.857033,105.865295,98.700012,72.228943,54.642166,70.443817,87.344635,64.848778,29.319855,10.166959,8.972747,6.553730,5.976045,6.669433,6.261995,2.269427,0.359505,0.000000,0.103307,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.955000,4612755.550000,4699,3155,93.662827,148.695892,154.373581,142.522339,127.282661,117.464478,114.423157,112.456215,112.191750,113.621506,113.233078,124.447952,142.952087,158.505814,170.373581,179.687622,178.009949,165.307465,143.315735,121.968613,109.852913,106.828117,100.200020,72.299194,55.910767,71.067787,87.059525,64.786797,29.332251,10.881009,9.109111,5.428110,6.339684,5.858689,5.916541,3.611578,0.295868,0.002479,0.000000,0.000000,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,1.024794,0.000000,1.849587,0.000000 -601685.755000,4612755.550000,4718,3155,103.936378,147.984329,154.133087,142.232239,127.215714,118.703316,116.686790,113.471916,112.414062,113.901665,113.323151,124.215714,141.926453,158.860367,170.653748,179.860367,177.810776,166.331436,142.620667,121.529762,110.042160,106.728111,100.463646,72.397545,56.042164,71.719856,87.926460,65.066956,29.023985,11.190100,9.133078,5.570258,6.987618,6.064473,7.234724,3.966122,0.789258,0.331406,0.155372,0.000000,0.204959,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612755.550000,4731,3155,100.471916,147.075241,152.248795,143.058701,128.257050,118.298370,114.430603,112.480179,112.248772,113.538040,113.083481,124.000847,141.579361,157.744659,170.306641,179.554565,177.447113,165.273590,141.571106,121.017380,110.546295,105.785965,99.827286,72.488457,54.587624,71.686806,86.744644,65.100021,27.984314,11.247125,9.075226,5.543813,6.371915,6.623978,6.273565,2.489262,0.281819,0.063637,0.046281,0.000000,0.016529,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,1.572728,0.000000,0.000000 -601691.155000,4612755.550000,4745,3155,100.685143,154.726456,153.966125,143.511566,128.635559,120.354568,117.007454,114.966133,114.040512,115.709938,115.503326,126.379356,144.387604,159.900009,172.428925,180.933060,178.561157,167.784302,144.437195,123.784317,112.048782,107.280182,101.809113,74.255394,56.313244,72.726463,90.073570,67.106628,30.693407,12.134729,9.255391,6.572740,6.759520,7.451252,8.456211,2.232236,0.168595,0.040496,0.116529,0.000000,0.223967,0.038017,0.460331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.155000,4612755.550000,4765,3155,95.171089,153.126465,154.779358,145.242172,130.101669,120.862000,118.630592,115.250427,114.647125,114.969437,116.101669,125.886795,145.366135,159.895065,172.258682,181.308273,177.936371,166.928116,144.308289,121.961174,111.390923,107.258690,102.118195,73.572739,56.787621,72.605797,88.680183,67.035553,29.619028,12.131422,9.283490,6.653731,9.364479,7.255384,7.890096,3.479345,0.435538,0.178513,0.052066,0.000000,0.101653,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.186777,0.000000 -601699.555000,4612755.550000,4787,3155,110.421501,151.142151,153.819839,144.786789,131.208282,121.208282,118.166962,115.762001,114.547127,116.894234,116.009933,126.712418,145.456207,160.919022,172.199997,180.671066,179.323959,167.844620,144.935547,122.985138,112.770264,107.274399,103.109108,73.952087,57.158703,72.704147,88.125641,66.067795,30.957870,12.560350,9.373573,5.190919,6.957039,7.673567,7.152079,3.061990,0.783472,0.211570,0.251241,0.000000,0.021488,0.404133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.555000,4612755.550000,4807,3155,104.076881,148.609100,153.443817,144.088455,130.964478,121.534721,117.162819,114.741333,113.625633,115.832245,115.981003,125.328110,144.262009,160.278519,172.567780,180.096695,179.005798,167.972733,144.898376,122.625633,112.071907,106.807449,101.427284,73.881828,56.600845,72.724808,88.609100,66.336380,28.852915,12.441339,9.220680,4.753729,6.775220,6.866953,6.296707,3.061162,0.214877,0.031405,0.219835,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.355000,4612755.550000,4821,3155,108.842155,151.796692,153.160339,143.738846,129.383469,118.995056,116.209930,113.523979,113.036377,115.185135,115.193398,125.342155,143.466125,159.515701,171.358688,180.011566,178.234711,166.887604,143.606613,121.019844,110.813232,106.209930,101.490921,73.185143,55.631424,72.424812,87.069435,65.821503,29.428946,12.205803,9.226464,5.611581,7.082659,6.360343,6.742988,2.241327,0.200000,0.000000,0.071075,0.000000,0.000000,0.084298,0.270248,0.000000,0.000000,1.113223,0.000000,0.000000,0.000000,0.000000 -601710.155000,4612755.550000,4840,3155,104.081009,152.687622,155.266144,145.935547,130.877701,121.208282,117.423157,114.952087,114.332253,116.993408,116.009933,127.282661,145.266144,161.390106,172.447952,180.762009,179.563660,168.695892,145.695892,123.547127,112.233078,108.538864,101.927292,74.646301,57.935558,73.828117,87.762001,67.555389,30.175226,12.578530,9.266135,6.220672,7.766958,7.042988,8.178526,2.951245,0.138017,0.066942,0.142149,0.001653,0.123141,0.119835,0.000000,0.000000,0.000000,2.052893,0.976033,0.000000,0.000000,0.000000 -601714.155000,4612755.550000,4860,3155,104.236374,153.728958,154.274399,143.877716,130.464478,120.481010,117.770264,115.786797,115.282661,116.481010,116.266136,126.762001,144.968628,161.679367,173.588455,182.274399,180.125641,168.671097,146.117386,123.257866,112.208282,107.935547,101.745461,74.150429,57.505802,72.638031,87.059517,65.505806,29.514896,12.636381,9.249606,4.637199,6.376874,6.476046,6.890921,3.337196,0.333885,0.000000,0.119009,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,1.930579,0.000000,0.000000,0.000000 -601717.755000,4612755.550000,4878,3155,108.285141,152.904144,155.879364,145.069443,131.416550,121.441345,118.267792,115.036385,115.292580,116.995064,117.077705,126.887619,146.400024,161.433060,173.796692,182.350418,179.705795,168.573563,145.838043,124.424812,111.995064,108.796715,102.309113,74.466133,58.069443,73.276054,88.796715,67.077705,32.457870,13.115721,9.300846,5.852076,7.857866,8.688443,8.477698,4.250421,0.656200,0.000000,0.067769,0.119008,0.000000,0.052066,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612755.550000,4899,3155,110.793404,151.123138,152.594223,143.652069,130.957855,119.412407,116.503319,113.585960,112.842163,114.858688,115.503319,124.957863,143.461990,159.817352,171.652069,180.362808,179.156204,167.230576,142.916534,122.007446,110.594223,105.900009,100.990921,72.197533,54.701675,69.362839,85.519844,64.561180,26.437208,10.027291,9.181011,4.884306,6.583484,6.431416,5.974391,2.185955,0.127273,0.423141,0.093389,0.505786,0.085124,0.000000,0.531405,0.000000,0.000000,0.000000,0.966942,0.000000,0.000000,0.000000 -601725.755000,4612755.550000,4918,3155,111.848778,157.523972,154.887604,146.242981,132.242996,120.771919,117.143822,116.085968,114.829773,117.515724,117.185143,128.102493,144.846283,161.019836,174.631409,182.532242,181.284302,169.862808,145.730576,124.242996,111.854568,108.019852,102.036377,74.342163,57.895889,73.052902,88.523979,66.234734,30.061176,11.545472,9.276052,4.934720,7.279352,6.271911,6.452905,2.812403,0.650415,0.072727,0.226447,0.177686,0.020661,0.082645,0.000000,0.000000,1.014050,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.355000,4612755.550000,4936,3155,103.289261,155.486801,155.726471,147.238861,132.610748,120.247116,117.784309,116.552902,115.552902,117.371086,117.338028,127.470261,146.280182,162.288452,173.891754,183.519852,181.685150,170.528122,145.643814,124.172737,112.536377,109.404144,102.627281,74.387619,57.189274,72.949608,87.924805,67.065308,31.214067,12.607456,9.329771,5.538027,8.712413,7.057863,7.412408,2.790915,0.575208,0.228927,0.104133,0.109918,0.159504,0.000000,0.000000,0.328099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.755000,4612755.550000,4958,3155,127.076050,155.729782,153.820679,146.886795,132.316544,121.804146,118.696709,116.068611,115.581009,116.845467,116.514893,127.539680,144.787628,161.787613,174.779343,182.729752,180.490082,169.184326,145.812424,123.415718,109.944641,108.423981,101.754562,74.283485,56.787624,70.729767,86.895058,64.415726,28.961178,10.802496,9.250432,4.465297,6.146295,6.756209,6.857037,2.399179,0.137191,0.341323,0.030579,0.000000,0.000000,0.077686,0.000000,0.000000,1.200000,0.000000,0.000000,0.000000,2.241323,2.011570 -601739.155000,4612755.550000,4985,3155,114.501671,163.463669,154.438873,146.298370,133.009109,118.571091,116.752907,115.422325,113.736374,116.447121,115.546295,126.463646,143.992584,160.637222,174.075241,181.819031,180.389282,168.959534,145.116562,121.678528,109.918198,106.463646,101.009102,72.942986,55.595886,70.157875,85.141342,64.298363,26.971092,10.514067,9.182665,4.685958,5.912410,5.714885,6.670260,2.280169,0.862812,0.149587,0.012397,0.000000,0.138843,0.113223,0.000000,0.000000,2.225620,1.077686,0.000000,1.024794,1.242149,2.138843 -601746.155000,4612755.550000,5020,3155,116.647934,172.165283,158.355377,149.421494,133.983475,120.876030,119.793388,118.256195,117.198357,119.033058,117.735535,129.099167,147.190079,164.504135,176.066116,185.842972,184.305786,172.768600,147.330582,124.884308,111.570267,108.628113,103.727280,74.702492,57.421509,72.297539,87.421501,67.404976,29.082664,13.266961,9.429770,5.443812,6.079354,7.256210,6.587615,2.823974,0.666117,0.289257,0.242976,0.557852,0.452893,0.200001,0.000000,0.000000,1.182645,0.000000,0.926446,1.879339,0.000000,2.081818 -601750.955000,4612755.550000,5044,3155,124.673576,171.450409,158.458679,151.194214,134.847122,123.185966,120.623985,118.549606,118.095055,120.582664,118.962830,128.772751,146.557846,164.847107,176.780991,186.524796,184.466949,170.938019,147.177689,125.359520,113.086792,108.772743,103.681831,76.111588,58.500023,72.491753,87.475220,65.830605,29.409109,11.617374,9.425639,5.081828,7.294229,6.157036,7.333070,2.817360,0.655373,0.479340,0.012397,0.001653,0.216529,0.026446,0.000000,0.000000,0.000000,0.000000,0.976033,0.000000,0.000000,0.000000 -601757.555000,4612755.550000,5077,3155,110.385971,164.547134,159.679367,148.993408,133.563644,123.175217,122.290916,118.282654,117.902489,119.026459,119.059517,130.753723,149.142181,165.613251,177.323990,185.117386,184.538864,170.059525,145.968628,124.728935,113.547119,110.795052,104.745461,77.671089,61.588448,75.166962,91.257858,65.828117,31.026466,13.472745,9.522334,8.012411,8.114891,8.509933,8.949601,3.904966,0.427274,0.347108,0.159505,0.000000,0.000000,0.150413,0.000000,0.041322,1.261157,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.755000,4612755.550000,5093,3155,114.228111,165.955383,159.170258,148.029755,132.707458,122.186790,120.616539,117.500839,116.500839,116.988441,116.996704,128.715714,147.930573,164.335556,175.352066,183.971893,182.244629,169.095886,144.988434,123.773567,112.021500,109.806625,103.872742,75.525642,59.806633,73.790092,89.054558,64.467789,29.862001,11.926464,9.442994,8.378528,6.624806,7.900842,5.282654,3.020669,0.440498,0.138843,0.029752,0.000000,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.355000,4612755.550000,5126,3155,125.959526,165.042175,161.199203,149.223984,133.066956,121.885147,120.033905,118.513245,116.951263,118.157875,117.265312,128.653748,148.339691,164.257050,176.091736,185.661987,182.686768,168.488449,144.703339,123.612419,112.860352,109.752914,102.645477,74.711594,59.166134,73.306633,87.595886,64.604149,29.050434,11.189274,9.331425,8.754560,7.338030,7.409105,8.076873,2.374387,0.946284,0.185125,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.755000,4612755.550000,5158,3155,101.116539,167.604141,161.033890,149.058685,134.860336,120.951256,120.612411,117.240509,116.620674,118.777702,117.422325,129.091751,148.562820,165.554565,176.876877,185.265305,183.777695,168.909927,144.587616,124.984314,112.381004,109.199188,104.009102,74.810760,59.339691,73.942986,90.157867,65.083488,28.909937,11.856216,9.455391,8.132247,6.347122,6.726460,6.032243,2.794220,0.347935,0.186777,0.154546,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.219835,0.000000 -601779.155000,4612755.550000,5185,3155,109.800018,168.552078,163.667770,150.361984,134.990097,123.163651,121.857864,119.411583,119.180183,120.824806,118.907455,131.014893,149.866119,166.899185,179.122314,187.593399,185.056198,170.494217,146.452896,125.411583,113.642990,110.998360,105.527290,76.304146,60.833080,75.452904,90.006622,67.089279,31.403326,13.764482,9.593408,10.030595,8.889272,7.970262,8.285136,2.816537,0.807441,0.074380,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.950413,0.000000,0.000000 -601781.955000,4612755.550000,5199,3155,117.052071,168.147934,160.594223,151.123138,136.478516,120.296707,121.263649,118.495056,117.304970,118.643814,117.296707,129.726456,148.594223,164.395874,176.511566,185.759506,183.875214,168.147934,145.478516,123.759514,112.197533,108.197533,103.354553,74.288452,58.676884,73.139687,87.470261,65.304985,28.791754,10.561999,9.395886,8.447121,6.954559,6.073568,6.545466,1.513229,0.399175,0.000000,0.000000,0.147934,0.145455,0.148760,0.000000,0.000000,0.000000,1.013223,0.000000,0.000000,0.000000,0.000000 -601785.355000,4612755.550000,5216,3155,120.971092,174.855377,163.913223,153.301666,137.177704,123.004150,123.466957,120.508278,119.400841,122.334724,119.004150,131.450424,150.450424,167.582642,179.847122,188.549606,185.723160,170.508270,146.582657,124.491753,114.276878,110.524811,105.409103,76.946297,61.318203,75.152908,90.781006,66.797539,30.202499,12.585968,9.582664,10.003323,8.735553,7.992577,6.991747,3.331413,0.433886,0.165290,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.555000,4612755.550000,5247,3155,127.742989,179.842148,163.866943,152.090088,137.933060,122.850418,122.924797,120.263641,118.933060,121.635544,118.139671,131.189270,149.635544,166.652069,178.023972,188.255371,185.123138,169.585953,145.437195,124.346283,113.850418,109.825623,104.718185,74.908279,58.478531,74.395882,89.321487,64.602501,30.304977,11.679356,9.519853,10.578528,5.648772,7.515716,6.227284,2.952074,0.467770,0.290084,0.030579,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.555000,4612755.550000,5267,3155,125.485962,173.576859,162.312408,153.122314,136.791748,120.800018,121.254562,119.262825,118.452904,121.560349,118.204971,130.874390,147.626450,166.849594,178.419846,187.370255,184.279343,167.800003,144.320663,123.601669,112.510757,108.510757,103.527290,75.535553,59.973576,74.014893,88.585136,65.047958,29.502499,11.554564,9.411590,11.383488,6.755385,8.284312,6.228109,2.373560,0.657026,0.291737,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.974380,0.000000,0.000000 -601801.755000,4612755.550000,5298,3155,123.153740,182.633057,166.409912,155.649582,138.327271,123.757034,121.616539,120.930588,120.765305,124.079353,118.930588,131.170258,149.484299,167.021484,181.013214,189.517349,186.542145,169.095871,146.525620,125.145470,112.451263,109.938866,104.600021,75.583488,58.600021,75.732254,88.955391,64.732254,29.806631,10.795885,9.509109,9.611587,6.533071,6.758692,6.433069,4.138024,0.414878,0.091736,0.048760,0.166116,0.000000,0.000000,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.755000,4612755.550000,5333,3155,136.281830,185.885117,167.496689,158.984299,139.174377,124.628937,124.273567,122.719849,122.190926,126.645470,121.405800,132.959518,150.240494,168.893387,181.703308,191.967758,187.521484,170.645447,146.339661,126.215714,112.604149,110.852081,107.281830,76.058701,59.554565,75.182663,90.223991,64.091759,29.323160,12.157042,9.752912,10.092579,8.074396,7.163651,6.518194,4.045462,0.247935,0.093389,0.000000,0.044628,0.000000,0.000000,0.337190,0.000000,0.000000,1.175207,0.000000,0.000000,0.000000,0.000000 -601811.955000,4612755.550000,5349,3155,151.642151,190.030594,171.377686,160.782639,141.452057,127.245476,125.427292,123.947952,124.014069,129.179352,123.344643,135.171097,153.121475,171.592575,183.997528,193.799179,190.815720,172.832245,149.138016,127.931419,116.385971,113.187622,107.790924,78.138031,61.642166,78.592583,92.518196,65.947952,30.642166,13.174398,9.799194,13.209108,7.947122,7.933898,7.478525,3.483479,1.138845,0.177687,0.038017,0.150414,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.355000,4612755.550000,5371,3155,141.750443,190.824799,171.155380,162.642975,141.742157,127.866119,127.023148,124.684311,124.188438,130.725632,124.171913,135.196701,152.998352,170.659515,184.775208,194.163635,189.353729,171.428101,149.246292,126.618187,115.147118,113.634720,107.890915,79.072739,61.800018,79.667793,90.890923,64.560349,31.667788,12.128117,9.808283,12.710761,7.282659,9.165304,7.447948,4.027280,0.980995,0.207439,0.000000,0.274381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.355000,4612755.550000,5396,3155,96.075218,154.548767,157.185120,145.747116,130.226456,122.474380,120.416534,118.028099,118.639671,118.672729,118.961990,131.433060,150.846283,167.003311,179.788437,188.441330,186.069427,174.193390,148.044632,126.350418,115.557030,112.333885,107.672737,78.771912,62.424809,76.986794,92.573563,68.854568,30.651258,11.409935,9.788448,6.271911,7.971089,7.477699,7.649599,3.364472,0.373555,0.068595,0.077686,0.303307,0.000000,0.710745,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.155000,4612755.550000,5420,3155,102.940514,154.576889,160.742172,150.345474,135.411591,124.171921,122.469437,120.386795,120.568611,120.824806,122.469437,133.527298,152.725647,169.890930,182.444656,190.560349,188.064484,175.676056,150.485977,128.023163,116.684311,113.039680,109.345467,81.378532,64.568611,79.031425,94.171913,69.370270,33.130600,14.773570,9.940516,6.970260,8.994230,8.408278,7.717366,3.994226,0.668597,0.000000,0.128926,0.000000,0.000000,0.000000,0.090909,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.755000,4612755.550000,5443,3155,102.867783,144.638855,150.134720,141.035538,129.258682,120.334724,119.772743,117.871918,117.491753,119.053734,119.665306,130.500015,150.285126,168.342972,178.797516,188.252060,187.500000,172.739670,147.392563,126.086792,116.104965,112.435547,108.972740,83.038849,66.245476,80.666954,94.286789,69.542992,33.001671,14.675224,9.906630,5.573568,7.775220,7.243815,8.957864,3.291741,1.750416,0.960332,0.752893,0.482645,0.851240,0.524794,0.387604,0.375207,0.000000,0.000000,0.000000,0.657025,0.000000,0.000000 -601834.755000,4612755.550000,5463,3155,96.488449,159.042999,162.447952,151.770279,137.704163,126.762001,126.315712,123.695885,123.547119,125.489273,126.175224,137.158707,156.464493,172.869431,186.704163,195.629776,193.514069,180.158691,154.985153,132.266129,121.902489,117.249603,111.654564,83.326454,67.210762,82.522324,95.877701,69.704147,33.781010,13.957869,10.150432,7.304147,7.928940,8.937204,11.309105,6.873564,0.652069,1.183472,1.957027,1.566944,1.614051,0.780166,0.474380,0.000000,0.000000,0.000000,0.000000,0.000000,0.579339,0.000000 -601838.155000,4612755.550000,5480,3155,102.791740,155.262817,159.312408,146.047943,133.304153,124.229759,121.568604,120.370255,119.709099,122.171906,122.221497,133.552078,152.428101,170.047943,182.097534,190.733887,189.502487,175.105789,149.990082,128.444641,116.775215,113.262817,109.854553,82.490921,65.077713,80.490929,95.647934,69.598358,32.606632,13.277704,9.986796,6.146293,7.576048,8.109933,6.208276,2.726454,0.739672,0.073554,0.307439,0.052066,0.297521,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601842.755000,4612755.550000,5503,3155,89.679352,147.737198,150.975204,143.702484,134.626450,126.072731,123.634727,122.155388,121.766968,120.783493,122.362007,132.775223,152.487625,168.785141,182.826462,190.281006,189.115723,176.438034,152.882660,131.403336,121.238029,117.469437,113.254562,86.081009,67.833900,81.875229,96.296715,70.587616,33.197540,14.747952,10.295886,5.746292,8.312410,9.752080,8.124804,3.514056,2.678515,1.888431,2.278513,1.297522,1.117356,0.556199,0.340496,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601845.955000,4612755.550000,5519,3155,99.571907,155.533081,158.723160,149.483490,133.962830,124.450432,121.756218,121.037209,119.458694,122.061996,122.747948,134.185974,152.714890,169.731415,183.103317,191.243820,190.673569,176.194229,149.764481,128.450424,117.301666,113.665306,109.772743,80.301666,62.814072,78.789284,94.318199,68.334732,32.392582,12.729769,9.979357,5.726457,7.131419,8.170262,7.133072,2.241328,0.884299,0.142976,0.000000,0.232232,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.155000,4612755.550000,5545,3155,104.001678,154.022324,159.751236,149.900009,136.247116,124.395889,122.065308,121.404152,120.619026,123.222336,124.123161,134.602493,155.147934,170.709915,184.123138,193.685120,190.800827,176.800827,151.189255,128.387619,117.296715,114.610764,109.263657,81.817375,63.908279,78.817375,94.875229,69.156219,33.585968,14.231422,9.933076,6.128938,8.372741,8.486790,7.528111,4.121496,1.107441,0.285125,0.233059,0.249588,0.078513,0.254546,0.000000,0.000000,0.000000,0.000000,1.026446,0.000000,1.185951,0.000000 -601853.755000,4612755.550000,5558,3155,100.451263,150.815735,152.526474,146.015717,136.627289,129.395874,128.966125,127.114891,125.090096,125.974388,126.081833,136.329773,155.676880,172.552917,185.081818,195.329758,193.288437,181.156204,155.354568,132.197525,120.676872,116.164474,111.081833,84.329765,65.771095,79.561165,93.964478,69.774399,32.017376,12.177703,10.098367,4.723979,7.837204,9.766131,9.528114,6.490091,2.597522,2.689259,2.175208,2.991737,2.809919,0.734712,0.263637,2.106612,0.000000,0.000000,0.000000,0.866942,0.000000,0.000000 -601856.555000,4612755.550000,5572,3155,112.788445,154.754547,160.126450,148.985962,135.812424,123.895058,123.729767,122.101669,122.027290,123.630592,124.754562,135.597549,154.928101,172.010757,184.969421,193.101654,191.556198,178.300003,152.680176,130.374390,118.457039,116.630592,111.481834,83.539680,66.209114,80.787628,95.440514,70.242172,33.721508,14.845473,10.134729,7.276044,8.696709,7.039683,6.633070,4.181000,0.793391,0.609093,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.915703,0.000000,0.000000 -601862.955000,4612755.550000,5604,3155,104.014893,157.200027,160.919022,148.662842,135.332245,124.266129,120.464470,119.142159,120.522324,121.770256,123.241333,133.034714,152.423157,169.150421,182.001663,192.257858,190.423157,175.753723,149.952072,127.522324,116.588440,112.671089,109.381836,81.737198,64.340515,79.439690,94.472748,68.828117,31.695887,12.122333,9.943821,5.553733,8.075223,7.533897,7.432245,2.638848,1.128928,0.000000,0.275207,0.055372,0.000000,0.245455,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601867.355000,4612755.550000,5626,3155,103.050423,152.190918,160.951248,151.504974,136.513229,126.108276,123.017365,121.455383,122.901665,124.496704,125.372742,136.942993,156.223984,171.810760,185.645462,194.951248,192.984314,180.042160,153.909927,131.323151,120.182655,117.323151,112.554558,84.976044,65.058693,81.538033,95.513237,70.504982,32.835560,12.815720,10.232250,7.456213,8.042166,7.663650,8.155388,3.628108,0.294216,0.037190,0.057851,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.487604,0.000000 -601871.955000,4612755.550000,5649,3155,114.973557,153.328934,158.097534,150.056198,137.626450,122.692566,123.717361,122.031410,121.700836,124.452896,125.791740,136.485962,155.386780,173.204971,185.783478,195.494202,192.833054,179.833069,154.395050,130.477692,119.717361,115.841331,111.981827,83.023155,65.824814,80.899178,94.990089,70.527283,32.932251,14.662827,10.180182,4.942160,7.538034,6.966128,6.584309,3.088436,0.686778,0.166116,0.320661,0.000000,0.091736,0.237190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.955000,4612755.550000,5679,3155,102.339684,150.318192,155.979355,148.623978,135.500015,127.334724,124.103325,123.028938,124.227287,127.053734,127.805801,139.037201,157.954559,174.690094,188.731415,197.574402,195.475220,181.863647,154.855392,131.161179,120.466957,115.772743,111.318199,83.558701,65.920677,80.640511,94.293404,70.946297,32.500847,12.363654,10.119854,5.336374,7.452908,8.639684,6.233896,3.331412,0.818184,0.571902,0.076860,0.180166,0.021488,0.092562,0.005785,0.000000,0.000000,0.423141,0.000000,0.000000,0.395868,0.000000 -601881.755000,4612755.550000,5698,3155,116.733894,153.593414,159.576889,151.576889,136.353729,124.866119,124.601662,123.180168,123.593391,127.585129,128.469421,139.312424,157.676056,175.981842,187.626450,196.171921,195.866119,181.428101,154.444656,131.816528,119.295876,115.709099,111.436378,83.056206,65.750435,79.552071,95.089264,68.188446,31.070269,11.477703,10.130597,5.892573,6.922329,7.038030,7.181830,3.573561,0.790085,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.108265,0.000000,0.000000,0.000000,0.000000 -601886.955000,4612755.550000,5724,3155,109.827286,161.662003,162.860367,150.835571,136.463654,127.455383,124.108276,123.389267,124.017365,127.207451,126.695053,139.662018,156.488464,174.744659,187.356232,196.430588,195.190918,181.967804,154.852097,132.265305,119.752907,117.422325,111.918198,82.777702,66.909935,82.058693,94.819023,70.686798,32.372746,12.986794,10.174398,5.000011,7.134726,6.727288,7.712411,1.978517,0.217356,0.207439,0.371075,0.048760,0.000000,0.104132,0.000000,0.000000,1.283471,0.000000,1.020661,0.000000,0.000000,0.000000 -601892.955000,4612755.550000,5754,3155,97.525635,156.572754,157.969437,149.167786,135.605804,122.865295,120.427284,119.063644,118.956207,122.716537,123.220673,133.584305,152.250443,168.919846,182.043793,192.200821,189.977676,176.837173,152.258698,128.316528,117.506615,113.597527,109.300018,81.779350,65.104973,77.762825,94.465309,69.828941,32.134727,11.116545,9.936382,4.410752,6.140511,7.414062,7.290095,3.108270,1.157853,0.128926,0.885951,0.000000,0.542149,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.755000,4612755.550000,5788,3155,107.850433,162.682663,159.624802,151.856216,138.963654,126.418198,123.947121,124.013237,122.252907,126.542160,125.649597,136.393402,154.203323,172.922333,185.195053,194.963654,192.955383,180.451248,154.071091,132.856216,120.277702,117.343811,112.327286,85.285973,66.996712,82.120682,95.790100,71.641342,33.856220,13.108282,10.211590,4.564472,5.731419,7.362824,6.687615,2.748766,1.030581,0.187604,0.000000,0.000000,0.000000,0.000000,0.215703,0.000000,0.000000,0.000000,0.982645,0.989256,1.264463,0.000000 -601903.555000,4612755.550000,5807,3155,112.722328,164.499191,162.714066,155.672745,139.705826,128.433075,126.342163,124.681000,125.102493,128.127289,128.408279,138.581848,155.928940,174.251266,187.333908,195.970261,194.970261,182.507462,156.937210,133.780182,121.763649,117.945465,113.400009,85.639679,66.953735,81.639679,96.953728,73.862823,35.780182,14.595887,10.309111,5.821500,8.178527,8.218196,7.781005,2.537197,0.419836,0.150414,0.055372,0.046281,0.000000,0.128099,0.279339,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601906.355000,4612755.550000,5821,3155,106.224808,159.357040,157.009933,151.530594,139.150421,127.596710,126.365311,123.762009,122.133911,124.034737,124.819862,135.786789,153.381821,171.976868,184.795044,194.447937,193.373566,181.910751,155.811584,134.398361,122.968620,120.381844,115.200027,86.464485,68.778542,83.505814,97.009941,74.183495,33.406628,13.264480,10.472746,6.660343,8.353732,8.747122,8.344642,4.409925,1.303309,0.644630,0.574382,0.459505,1.315704,0.000000,0.007438,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.355000,4612755.550000,5836,3155,110.290924,166.238846,160.718185,152.445465,138.106613,123.709930,122.668610,120.908279,119.123161,123.296707,122.685135,133.106613,151.552902,168.916534,182.007446,191.635559,189.271912,179.015701,152.461990,130.718201,119.189270,115.478523,110.081833,82.585968,66.668617,79.842171,95.900009,71.313240,32.035557,11.215718,10.007457,5.050424,6.915718,7.448773,5.966955,2.474385,0.707440,0.253719,0.028926,0.322315,0.000000,0.000000,0.000000,0.031406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601912.555000,4612755.550000,5852,3155,103.837204,162.714050,158.209915,151.598343,136.309097,123.441330,124.218193,122.515717,122.763649,127.102486,124.995056,135.928925,154.193390,171.036362,184.755371,192.829758,191.722321,180.003311,154.747116,131.904129,118.300835,115.631416,110.672737,80.714058,66.242996,80.135559,95.077698,69.168610,29.978535,12.114068,10.061175,2.926456,5.813237,5.853732,5.559517,2.059509,0.341323,0.125620,0.059504,0.000000,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.155000,4612755.550000,5865,3155,128.356216,171.869446,164.646301,153.100845,141.026459,126.381836,124.976875,125.166962,121.985138,126.844643,124.869438,136.224808,152.836395,170.753738,184.282669,193.290939,192.067795,178.671097,154.720688,132.166962,121.042992,117.671089,113.018211,83.638039,65.902504,81.398376,95.952095,72.249611,31.282661,11.968612,10.274399,4.510753,6.220675,7.081004,6.566130,2.718189,0.292563,0.175208,0.042975,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.955000,4612755.550000,5894,3155,113.448784,170.457855,173.201660,159.532242,142.441345,129.978531,129.995056,127.085968,125.424805,126.995056,126.730598,137.747131,155.904129,172.011566,183.548767,192.953720,190.185120,176.854553,152.325623,131.375229,120.656212,116.895882,110.945465,82.284317,66.920677,81.309113,95.416550,69.821510,33.771915,13.566960,10.085969,8.711586,8.804973,10.464478,9.281005,4.470259,1.098349,0.956200,0.778514,0.481819,0.264463,0.000000,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601926.355000,4612755.550000,5921,3155,114.346298,169.263641,165.189255,153.230576,137.189270,127.776054,126.164482,123.156219,122.437210,123.048782,122.990929,134.709930,153.891739,169.362808,181.205795,190.214050,189.205795,174.982651,150.974380,129.676880,118.552910,115.329773,109.172745,81.404152,64.966133,80.081841,95.172745,70.106628,32.214069,12.177704,9.924812,7.803319,6.486789,7.904972,7.117367,3.532240,0.630581,0.300001,0.078513,0.179339,0.000000,0.000000,0.067769,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601930.155000,4612755.550000,5940,3155,115.826462,169.516525,165.152893,151.855377,135.483490,124.524803,123.285149,120.359512,119.061989,121.111580,120.177696,132.409103,151.037186,167.359497,178.111572,187.070251,186.714874,172.896713,149.061981,127.351265,116.326454,113.739677,108.136375,79.541344,64.227295,77.309944,94.442162,68.185966,31.293407,11.662827,9.830599,7.147120,6.246293,6.790095,6.712408,2.118189,0.353720,0.189257,0.000000,0.000000,0.000000,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601934.955000,4612755.550000,5964,3155,113.566956,171.550430,167.434708,155.517365,138.426453,126.442986,125.947121,123.285965,122.715714,123.839684,123.004974,134.723984,153.162003,168.765289,180.690918,190.244644,188.947113,175.492569,151.087616,130.335556,118.823151,114.757034,109.690926,81.409927,64.418205,80.029762,95.153732,68.889267,32.558701,13.379356,9.971920,8.381006,6.891750,7.972741,7.750426,2.863644,0.611572,0.114050,0.148761,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.499174,0.000000,0.000000 -601937.955000,4612755.550000,5979,3155,116.897545,171.313217,167.354538,155.263641,139.073578,126.875221,126.304970,122.205795,122.900009,124.445465,123.057037,134.610748,153.569427,170.511551,182.214035,191.007431,189.742966,175.453705,152.916534,130.668610,119.090096,116.065300,111.172737,80.767792,66.214066,79.924812,95.685143,69.329773,32.648781,12.812415,10.106632,8.790097,7.848773,7.128111,8.000013,4.021495,0.478514,0.718183,0.216530,0.000000,0.007438,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.355000,4612755.550000,5996,3155,116.839691,174.798355,165.451248,155.451248,139.401672,125.971916,125.401665,123.327286,122.500839,124.277702,123.104149,134.955383,153.327286,170.566956,182.128937,191.343811,189.889267,176.360336,151.988449,130.955383,119.914062,116.467781,111.600014,81.971931,66.732254,82.319038,96.021500,69.649612,31.500847,13.673571,10.145473,9.595882,7.633071,7.273567,6.985962,2.959512,0.569423,0.086777,0.235538,0.096694,0.093389,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.355000,4612755.550000,6026,3155,112.417381,176.275223,164.688446,154.399200,139.787628,127.076881,126.572746,123.663658,122.390930,124.985970,122.845474,134.969437,153.928116,170.233902,182.597549,192.390930,189.514893,175.928116,152.192581,131.283493,120.118202,117.572746,110.754570,82.671921,67.357872,80.638863,95.019028,69.853745,32.258698,14.047125,10.068615,10.204973,7.236376,8.147946,8.718196,3.658686,0.866118,0.405786,0.400827,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.761157,0.000000,0.000000,0.000000,0.000000 -601950.955000,4612755.550000,6044,3155,113.238029,180.377701,169.999176,163.858688,148.643799,135.933075,135.635559,133.792572,132.809097,135.825623,133.047943,145.056198,161.940506,179.560333,189.857864,200.452896,196.238022,180.684311,155.957031,134.941330,122.255379,117.023972,110.809113,81.792580,65.784309,81.288452,94.750427,68.758690,30.809111,13.582662,10.073572,12.279354,8.233898,8.609104,9.124805,4.845464,1.714878,1.274382,1.319009,0.800827,1.338018,0.138017,0.128926,0.276033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.155000,4612755.550000,6070,3155,116.138023,184.426453,167.352081,156.451233,138.509109,124.352074,123.928116,121.460350,120.947952,124.104973,121.022331,133.014069,150.476868,168.396698,179.991730,190.123962,188.537186,173.595047,150.787613,130.862000,120.151253,117.324806,112.118195,83.572739,68.407455,83.258690,97.134727,71.870262,33.862007,14.966132,10.192581,13.539685,8.745468,10.857039,10.579351,6.694224,2.947938,1.569423,1.561159,0.648761,0.594216,0.423967,0.000000,0.130579,0.000000,0.000000,0.000000,1.010744,0.000000,0.000000 -601962.555000,4612755.550000,6102,3155,122.409103,186.062012,167.979355,158.838852,140.681839,125.483482,125.789261,123.425629,123.483482,127.929764,124.227280,135.582657,153.822327,170.524811,183.706650,192.987640,190.351273,175.698364,150.574402,130.433899,119.037201,116.508270,110.863647,81.706627,64.962830,81.466957,94.731415,68.376053,31.789274,12.876051,10.078532,10.915718,7.776873,8.369436,9.330591,3.876866,1.312400,0.855373,0.251240,0.619009,0.485125,0.378513,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,2.441323,0.000000 -601971.355000,4612755.550000,6146,3155,140.662827,197.225632,173.035538,162.374405,144.903336,131.060349,129.655396,127.308289,127.184319,132.531433,127.043823,138.647125,156.283493,173.266953,186.109924,196.192566,192.977692,176.233887,153.498367,132.655396,122.109940,118.795891,113.481842,84.415726,68.688454,85.093414,96.366135,68.465309,33.225639,14.019853,10.316547,11.595884,7.067782,8.709105,8.703320,2.545462,0.749588,0.320662,0.047934,0.000000,0.000000,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.155000,4612755.550000,6205,3155,97.038033,163.787613,166.589264,153.936386,141.663635,131.200836,128.333069,126.192566,126.159508,125.977692,127.109924,137.754547,156.432251,171.176041,183.671906,192.671906,190.597534,178.390915,155.258698,133.754547,122.713226,117.944633,112.481827,84.746292,68.366127,83.366127,95.779350,71.316544,32.258701,14.785969,10.225638,7.050426,8.018196,8.717369,8.144641,3.087610,0.633887,0.045455,0.132232,0.123967,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.804959,0.000000,0.000000 -602001.355000,4612755.550000,6296,3155,108.395882,160.671906,165.167770,152.804138,138.432236,130.076874,126.622330,124.911583,123.729767,125.746292,126.316544,137.399185,155.473557,172.266953,183.258682,191.804138,189.721497,178.994217,154.366119,133.779358,122.159515,118.688446,112.481834,84.862000,68.895065,85.390923,97.878525,72.134735,34.275230,14.288448,10.225639,7.418196,7.804147,7.637204,7.574393,2.338022,0.218182,0.147108,0.047108,0.054546,0.000000,0.000000,0.000000,0.041322,0.000000,1.071901,0.000000,0.980165,1.272727,2.039670 -602030.755000,4612755.550000,6443,3155,115.644653,159.470276,161.536392,153.453751,140.131424,129.329773,126.420677,123.850433,123.313240,125.098366,125.457047,136.610764,154.495071,170.784332,183.462006,191.395889,190.090103,179.462021,155.147964,133.395889,122.949608,117.057045,112.627289,83.313240,67.371094,83.833900,97.428940,73.156227,34.776051,13.971093,10.238861,7.135549,7.995884,6.315715,7.426461,3.088436,0.729754,0.490085,0.082645,0.119835,0.297521,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602060.555000,4612755.550000,6592,3155,117.320671,165.052902,159.383469,155.085953,142.938019,134.442154,133.971069,131.599182,132.243805,132.450424,132.194229,142.293396,159.590912,175.358688,188.267776,196.565292,195.722321,184.242981,160.366943,139.887604,128.003311,121.647942,116.854553,89.647957,71.813240,87.755394,100.424805,76.490921,33.102501,14.485142,10.623158,4.766951,7.578526,7.205797,7.694226,4.342154,1.692566,0.435538,0.650414,0.627273,0.001653,0.491736,0.000000,0.000000,0.000000,0.000000,0.000000,1.704132,0.000000,0.000000 -602077.955000,4612755.550000,6679,3155,113.157867,176.123138,166.214050,155.346298,139.561172,127.214058,126.891747,125.048775,123.627281,128.131409,125.597534,137.602493,154.023987,171.321503,183.453720,192.536362,192.751236,182.338013,158.594223,137.569427,125.461998,121.420670,115.900009,86.032242,70.445473,85.090096,99.048775,73.643822,34.594231,13.362828,10.536383,4.711580,8.157039,5.620672,8.283484,2.836369,0.900002,0.403307,0.113223,0.161158,0.255373,0.057852,0.000000,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602083.355000,4612755.550000,6706,3155,114.634735,169.609924,172.775208,159.519012,141.626450,129.271088,128.469437,125.593407,123.684311,124.841339,125.130592,136.882645,156.047943,172.841324,185.560333,195.221497,193.923981,180.907440,157.684311,135.866119,123.419846,119.634727,114.527290,85.262825,69.056221,85.328949,102.783485,74.304153,34.271095,12.267786,10.411590,6.758689,7.063651,6.633072,7.123980,2.271080,0.618183,0.129753,0.169422,0.000000,0.000000,0.000000,0.000000,0.075207,1.495041,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.155000,4612755.550000,6720,3155,101.606628,175.028107,174.482651,159.152069,142.457855,131.482651,131.176865,127.259506,127.209923,127.168610,127.052902,138.978516,159.747116,176.606613,188.647934,197.970245,196.523972,181.540497,158.540497,136.978516,125.259514,121.631409,115.309097,87.234734,71.631424,86.664482,104.052902,75.094231,36.796719,14.774398,10.482663,8.719849,7.887619,9.175221,9.078527,5.059513,0.589258,0.322315,0.330579,0.137190,0.056199,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.555000,4612755.550000,6737,3155,107.229774,175.915710,174.436386,158.841339,140.857880,129.345474,128.932251,125.973579,125.328949,125.618202,125.717377,138.370270,157.585144,175.651260,187.105774,196.824783,195.923950,180.444656,156.758698,135.353745,124.328949,121.510765,115.709114,86.014900,71.014900,85.709114,102.105804,73.907463,35.262829,13.908283,10.519027,9.715716,8.118196,7.797535,7.546296,5.219843,0.260332,0.266943,0.049587,0.000000,0.052066,0.000000,0.021488,0.071075,0.000000,0.000000,1.082645,1.123967,2.211571,0.000000 -602095.555000,4612755.550000,6767,3155,102.323158,171.283478,177.019012,162.680176,145.886780,134.390930,133.870270,130.052078,129.663666,130.614075,129.258698,142.564468,163.109924,179.895050,190.870255,200.696701,198.266953,183.878525,159.622314,137.729752,124.680191,121.919846,118.390930,87.266968,71.514069,86.275223,102.647125,75.052086,35.837212,13.708282,10.762830,11.931421,9.273567,8.729768,9.766129,3.773561,1.498350,0.729754,1.348763,0.747935,0.304133,0.834711,0.379339,0.190083,0.000000,0.000000,0.000000,3.295041,0.000000,0.000000 -602101.155000,4612755.550000,6795,3155,112.147133,180.849625,175.725647,161.849609,143.543823,130.940521,130.684326,126.312416,125.403328,127.089279,125.428123,138.419861,158.180191,175.535553,186.725647,197.411591,195.130600,180.510773,157.089279,135.560349,124.651253,120.047951,116.163651,86.758690,69.766960,85.419846,103.452896,75.461174,34.626465,13.679357,10.560349,9.200013,7.246295,10.830593,8.759516,3.381826,0.416530,0.112397,0.267769,0.000000,0.009091,0.000000,0.052893,0.128926,0.000000,1.475207,0.000000,0.000000,0.000000,0.000000 -602103.955000,4612755.550000,6809,3155,96.803322,179.690094,175.979355,161.243820,142.971085,131.458679,131.648773,127.252075,126.533066,127.599182,126.673561,139.028946,158.541336,175.921509,187.863647,198.004150,196.425629,182.549606,159.466965,136.863647,125.640503,122.268600,117.045464,87.400833,71.012413,88.384308,102.169426,76.227280,37.227291,14.104149,10.640514,11.157041,8.743815,8.839684,9.199187,3.811578,0.460332,0.394216,0.128099,0.000000,0.000000,0.000000,0.000000,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.555000,4612755.550000,6822,3155,104.461998,183.382660,177.828934,159.762817,144.638870,130.349594,129.928116,126.911583,125.423981,127.300018,126.845467,138.308289,158.159531,175.928101,188.729782,197.151260,195.994232,180.151245,157.399200,135.085144,124.167786,121.440514,114.118195,85.572739,69.663651,86.142990,102.423981,74.779350,36.382664,13.065307,10.374399,10.609106,8.214891,8.569437,8.836379,4.344636,0.666117,0.254546,0.000000,0.060331,0.000000,0.000000,0.020661,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.755000,4612755.550000,6838,3155,111.727287,184.250427,177.663635,164.614059,146.977692,134.076889,132.680191,129.209106,128.870270,130.795883,128.233902,142.143005,161.192566,178.085129,190.746277,199.638840,199.266937,183.630585,160.837204,138.002502,127.142998,123.399193,119.754570,89.225639,72.713249,88.589279,103.680191,74.928123,37.845474,15.801671,10.886796,13.446297,8.295056,9.973568,9.828939,5.458687,1.179341,0.177686,0.158678,0.000000,0.000000,0.000000,0.052893,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602112.755000,4612755.550000,6853,3155,119.090927,185.506622,181.622314,166.878525,147.134720,132.663666,130.688446,128.159531,128.680191,130.349609,128.762833,141.820679,161.222336,177.908264,189.544632,200.354553,198.139679,183.048767,159.842163,137.990921,124.767792,122.134735,116.754570,85.696716,70.453735,86.321510,103.552910,74.503326,37.106632,15.010760,10.614068,12.106626,9.961998,9.967784,11.203321,7.654557,3.729757,2.282647,2.021490,1.077687,0.561158,0.905786,0.362811,0.552893,0.000000,0.000000,0.000000,0.000000,0.912397,0.000000 -602118.555000,4612755.550000,6882,3155,109.427299,169.592560,168.014038,159.055374,142.104980,129.336380,127.212418,124.609108,122.708282,125.311584,123.311584,134.361176,151.906616,168.939667,180.914871,190.452057,188.576019,174.567764,151.683487,131.493408,119.981010,115.675224,111.518211,84.931419,69.394241,84.501671,97.509933,72.286804,34.642166,12.844645,10.138035,5.824803,8.604146,6.737201,7.235550,2.849592,0.220662,0.040497,0.096695,0.119008,0.000000,0.060331,0.415703,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.755000,4612755.550000,6903,3155,111.275223,165.349594,165.870255,158.738022,141.374390,127.630592,125.985962,123.837204,121.019020,123.506622,122.680183,133.498367,148.911575,167.300003,178.754547,189.184311,185.704971,172.324799,149.696701,128.399185,118.762825,114.531425,110.118202,83.713234,68.457047,82.308289,95.060356,71.994240,32.762829,13.659523,10.010762,7.016540,6.845468,6.526456,7.481004,2.323971,0.537191,0.402480,0.053719,0.071075,0.000000,0.059504,0.157851,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602129.355000,4612755.550000,6936,3155,100.359520,161.496704,162.248779,153.670258,136.670273,125.058701,123.199196,119.984322,118.149605,120.414070,118.281837,129.182663,145.314896,161.298355,172.984314,182.025635,180.752899,168.331421,147.471909,126.009109,114.918205,110.802498,106.190933,79.108284,65.761177,80.909927,96.405807,71.314896,33.166134,10.649605,9.653738,5.763645,6.366958,4.752902,6.061168,3.011576,0.561985,0.000000,0.089257,0.089257,0.000000,0.000000,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.755000,4612755.550000,6968,3155,110.738037,164.448776,164.527298,155.122330,141.403336,126.709114,123.990105,119.940521,117.196716,119.155396,116.824814,128.105804,145.824814,162.254562,173.345474,183.593414,182.221512,170.147125,149.047958,129.312424,117.320686,114.262833,108.618202,81.775230,67.023155,82.527298,99.105804,74.957047,34.762005,13.819025,9.874400,6.357035,7.582660,7.381828,6.676870,5.606618,2.163637,2.111571,2.138017,1.903306,1.733058,1.094216,1.514877,0.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.555000,4612755.550000,7002,3155,93.426468,157.905792,163.368607,152.571930,134.704147,123.869431,120.128929,117.186783,114.649590,117.980171,116.112404,127.195045,144.038025,159.095886,170.869446,180.745483,179.439697,167.257874,145.828110,125.902489,114.042984,112.018188,104.836380,78.257866,64.067787,80.687622,98.051254,73.216545,34.530598,12.775223,9.530598,5.532241,6.098361,7.101665,6.832242,3.890914,0.952894,0.661158,0.238017,0.571902,0.210744,0.000000,0.215703,0.000000,0.000000,2.236364,0.000000,0.000000,0.000000,0.000000 -602145.755000,4612755.550000,7018,3155,97.703316,155.058685,161.513229,151.199188,136.942993,125.752907,122.595879,118.843811,117.248772,117.860344,117.083481,128.389267,146.149597,162.372742,173.951248,182.397537,182.083481,170.678528,149.347946,128.843811,117.248772,112.381004,107.463646,79.661995,66.273567,83.695053,99.174393,77.728111,36.984318,15.385141,9.769441,7.117367,6.927288,7.597533,8.257865,2.870254,0.397521,0.144628,0.000000,0.165290,0.000000,0.061984,0.152893,0.347934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.555000,4612755.550000,7037,3155,81.190102,149.074402,159.876053,149.652908,134.801666,124.859520,120.727280,117.057861,115.545464,115.768600,115.735542,126.157036,144.347122,160.123978,171.206635,181.818192,181.000015,169.487625,147.289276,127.066132,115.925629,112.132240,104.909096,79.115707,64.115723,82.289276,99.165298,74.090927,35.330597,13.133901,9.537210,6.004143,7.589272,6.591747,6.989268,2.402484,0.557853,0.164464,0.041322,0.285124,0.000000,0.000000,0.247934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.155000,4612755.550000,7060,3155,103.754570,151.069427,161.854553,151.565292,137.763657,127.565300,123.986786,120.854553,117.730591,120.143814,119.366951,128.829758,146.449600,162.689255,174.507446,184.036362,183.598343,171.854553,149.573563,128.209930,118.267776,113.846291,107.490921,82.342163,66.565308,83.110764,99.251251,74.226463,35.234730,13.695886,9.771919,5.919018,7.100841,7.812409,6.425632,3.463642,0.936365,0.415703,0.176034,0.344629,0.000000,0.128099,0.371075,0.257852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.155000,4612755.550000,7100,3155,97.434723,147.426468,161.740509,150.327286,136.740524,127.922325,123.823151,120.236374,119.137199,119.244644,120.624809,131.038025,147.971924,163.533890,175.922348,186.649582,184.856201,173.236389,151.170273,130.831421,119.467781,116.327286,109.963646,84.285965,68.947128,85.137199,98.533897,73.170265,33.294235,13.886795,9.996712,3.938025,7.940509,5.625629,6.290921,1.861987,0.371902,0.314051,0.052066,0.256199,0.104132,0.000000,0.070248,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.755000,4612755.550000,7118,3155,93.896713,152.465317,163.911575,155.002487,138.481827,128.093414,126.060356,122.837212,122.432251,122.919861,123.671921,134.465317,151.944641,167.895065,178.696701,190.010757,189.754547,178.068604,155.242157,133.655396,124.308289,120.448784,114.027298,86.862007,72.779358,89.134735,101.093414,77.002502,35.663654,15.023159,10.366135,5.329763,9.143818,8.463650,7.081006,2.370254,1.125623,0.314877,0.395042,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602171.755000,4612755.550000,7148,3155,85.547951,153.324799,162.944641,153.490112,138.085129,128.713242,124.308281,122.349602,120.498360,121.895058,122.481834,133.961166,150.655396,165.895050,178.928101,188.349594,188.324799,176.671906,154.060349,133.787613,124.374397,118.655388,114.027290,87.432243,71.919846,87.043816,99.316544,72.564476,33.283493,13.408282,10.366136,4.582655,8.662000,7.021500,7.007451,2.970255,1.038846,0.149588,0.123967,0.033884,0.000000,0.004132,0.057851,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.755000,4612755.550000,7198,3155,79.844643,151.679352,161.976868,149.580170,137.852905,128.009933,125.571907,121.919022,120.753731,120.753738,121.571922,132.877701,150.241333,165.687607,177.836380,187.604950,186.125610,175.357040,153.919022,132.993393,122.290924,117.935547,111.927292,86.340515,71.390099,88.051254,103.241341,75.150429,35.200024,12.871093,10.175225,5.841334,8.847122,7.357864,7.454556,2.990089,0.641324,0.045455,0.055372,0.290083,0.038017,0.072727,0.135537,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.755000,4612755.550000,7218,3155,83.062828,148.087616,162.170258,151.104141,139.038025,126.847946,123.773567,121.170258,119.236374,120.418198,120.186790,130.657867,149.550430,164.335556,176.930588,185.352081,183.947113,173.145462,151.682663,130.781830,119.170258,115.467781,110.509102,82.947128,69.484322,87.600021,101.608276,76.327293,36.195061,14.423160,10.046301,4.745466,8.911587,8.471916,8.504146,4.778521,0.875208,0.052893,0.385124,0.024794,0.000000,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.955000,4612755.550000,7239,3155,78.501678,143.708267,161.096710,150.295044,134.865311,125.443810,122.245461,119.658684,116.823975,118.080177,117.567780,129.228943,146.584305,161.823975,173.319839,181.873566,180.956207,170.311584,147.683487,127.592575,115.956207,112.121498,107.700012,81.427292,66.063660,84.096718,97.534729,72.295067,34.468616,14.008284,9.790929,3.879349,6.219022,7.423979,5.857862,3.535546,0.539671,0.366117,0.048760,0.247108,0.110744,0.000000,0.255372,0.892563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.555000,4612755.550000,7272,3155,83.772743,150.723160,161.500015,152.938034,138.070267,126.566132,123.384315,120.103325,117.549606,118.276878,118.359520,130.169434,146.904968,161.615723,173.103317,182.376053,181.152908,169.995880,146.549606,126.566132,116.301666,111.814064,107.681831,80.657043,65.896713,84.260345,99.615715,75.061996,36.062004,14.002497,9.789275,6.019019,7.596709,8.519023,8.981006,2.819016,1.114051,0.000827,0.047934,0.143802,0.079339,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.555000,4612755.550000,7317,3155,79.590927,150.566116,157.971069,149.789261,134.334717,124.144638,121.590919,117.830589,115.392570,115.657036,116.367775,126.028931,144.946274,159.880173,170.491730,179.425613,178.095047,165.681824,143.929749,124.061989,112.814056,108.450424,103.863647,77.235565,63.219032,82.070267,97.888435,74.070274,33.789280,13.179358,9.442168,5.733068,7.619849,6.383484,5.614059,2.933891,1.269424,0.003306,0.049587,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.355000,4612755.550000,7336,3155,86.326462,146.400848,161.086792,150.285141,135.648773,124.648773,122.491753,118.409103,115.863655,116.012413,115.764481,127.326462,145.219025,159.557861,171.103317,180.814072,178.772751,166.797531,144.458694,124.623985,113.219025,108.632248,104.409103,78.557869,63.731426,80.954559,97.119850,73.318199,35.516548,14.115721,9.491755,6.777698,7.382658,8.153732,7.381831,2.575212,0.388431,0.232232,0.000000,0.153719,0.290910,0.000000,0.000000,0.300000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.755000,4612755.550000,7358,3155,89.618195,153.279343,160.395050,149.378525,135.849594,123.395058,120.246292,116.585136,114.742165,114.527290,113.543816,125.568611,143.395050,158.667770,169.552078,179.246292,178.006622,166.543808,143.783478,122.477699,112.345467,108.733902,101.890923,76.105797,60.981842,80.940514,98.287621,72.370270,36.097542,14.519027,9.262830,4.806621,8.560345,6.386790,6.976045,3.285131,0.682646,0.335538,0.050414,0.033885,0.000000,0.053719,0.367769,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602220.755000,4612755.550000,7393,3155,78.169441,148.136368,155.681824,146.301651,130.690094,118.921501,117.723160,112.855385,109.954559,110.004150,109.764481,121.450432,138.326447,155.004135,165.648758,174.731400,173.095047,160.888428,139.351242,119.913239,108.392578,103.962830,97.954567,71.830597,58.500023,76.723167,94.880180,71.061996,32.151260,11.175224,8.904978,5.448770,5.712409,6.180178,6.169433,2.236369,0.229753,0.128926,0.073554,0.123967,0.133058,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.555000,4612755.550000,7417,3155,80.988441,148.732239,161.219849,150.211578,134.542160,122.600014,120.153732,115.079353,113.442986,113.244644,112.476044,124.963646,142.228119,158.360336,169.244644,178.269440,176.418198,162.451248,141.162003,121.228111,110.451256,106.352081,100.054558,75.476044,60.897537,78.104149,94.674393,71.236374,34.112419,13.728116,9.095887,6.266953,6.714891,8.575222,6.624804,2.219841,0.933886,0.148761,0.089257,0.315704,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602228.755000,4612755.550000,7433,3155,84.178528,144.905792,157.955383,148.600006,132.790100,120.269432,117.261169,111.707451,109.269432,108.550423,108.211586,119.426460,138.385132,154.004974,165.335556,176.195053,174.302490,160.723984,139.128937,118.847946,106.814888,102.500839,94.781830,69.674393,56.269444,75.947121,96.228111,73.211586,36.054565,13.942992,8.616548,8.572740,7.227287,7.657037,7.184310,3.017361,0.520662,0.098347,0.085951,0.066943,0.000000,0.109091,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602231.755000,4612755.550000,7448,3155,90.633080,147.914078,157.649597,147.087616,131.723984,118.930580,115.095879,110.740509,108.699188,107.616539,107.285965,118.682648,137.021500,153.120667,165.467789,176.310760,174.079346,159.798355,137.798355,118.153725,106.823151,102.203316,94.872749,68.120682,55.153740,74.120682,96.112411,72.029770,32.004978,10.524812,8.624813,3.811577,5.906626,5.405798,6.519021,2.281824,0.398349,0.090083,0.000000,0.033885,0.000000,0.000000,0.000000,0.574381,0.000000,0.000000,1.934711,0.000000,0.000000,0.000000 -602234.755000,4612755.550000,7463,3155,86.118195,151.729752,158.952896,147.085129,133.159515,120.663651,116.862000,113.390923,110.704971,110.655388,109.911583,122.159515,141.068604,157.085129,166.919846,177.919846,176.068604,162.514877,141.903305,121.713234,109.233902,104.448776,97.118195,72.209114,57.919857,77.126472,97.514893,74.126472,33.845474,13.492581,8.828945,5.661167,7.701668,7.248773,6.634723,3.236370,0.600827,0.040496,0.236364,0.155373,0.000000,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.955000,4612755.550000,7484,3155,82.557869,152.921494,161.268616,150.822311,133.219025,123.425636,119.301666,115.516548,113.235550,112.714890,112.285141,125.111588,142.739670,159.070267,170.706635,180.012405,178.731415,164.334732,142.566116,123.004150,110.632248,106.508278,99.954559,74.243820,60.028946,78.086792,96.896713,73.392578,32.566139,12.421506,9.086796,6.840507,6.580180,7.093401,7.264475,2.277692,0.538018,0.108265,0.050413,0.023967,0.102480,0.160331,0.125620,0.517356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602243.755000,4612755.550000,7508,3155,90.809937,154.024811,162.826462,151.140518,134.677689,123.520668,120.570259,116.462814,114.479347,114.264473,113.008270,124.917366,143.851257,159.917358,170.685944,180.595047,179.074387,164.950409,141.925629,121.760338,110.619843,106.479347,99.363655,73.652908,60.289272,78.198364,97.173569,70.826462,32.520679,12.400018,9.033078,6.418192,6.658691,8.113238,6.142160,2.711579,0.242150,0.086777,0.077686,0.233886,0.000000,0.057025,0.185124,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602251.355000,4612755.550000,7546,3155,78.240509,152.438843,162.777710,150.414047,133.843811,123.819023,120.281830,116.719849,114.050423,112.909927,113.389267,124.752907,144.248764,160.529770,171.695068,181.711594,179.124817,164.009125,142.356201,122.579353,110.257034,105.695053,99.463646,73.686790,59.306637,77.083481,96.100014,70.728111,31.331425,12.437207,9.042168,7.420672,6.804973,6.881831,5.571913,4.065295,0.649589,0.000000,0.000000,0.000000,0.000000,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602256.755000,4612755.550000,7573,3155,83.775223,159.833069,165.485962,150.717361,135.039688,123.527290,121.684311,116.147125,116.229767,115.609932,115.089272,126.238029,145.535538,162.246292,172.990082,183.072739,180.254547,166.097534,143.361984,123.105797,111.973572,107.717369,101.709106,74.907463,61.568615,78.502495,96.568611,70.890930,32.833076,11.875224,9.246301,7.933894,6.349602,7.273565,5.345467,1.960334,1.100003,0.000000,0.118182,0.434712,0.000000,0.244629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602259.755000,4612755.550000,7588,3155,93.592575,158.443817,163.179352,151.997528,135.104965,124.766129,122.873566,118.642159,116.716537,116.385963,115.228935,127.683479,146.352905,163.047119,174.212402,184.551254,181.584305,166.881821,144.187607,124.509926,113.873566,109.261993,104.154556,77.485130,62.807461,79.336372,97.361168,71.650421,34.253742,13.266960,9.468614,8.349598,8.276048,10.385139,8.066954,2.889261,0.615704,0.169422,0.132232,0.021488,0.000000,0.055372,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602264.355000,4612755.550000,7611,3155,97.082664,158.090927,165.033081,153.247955,136.454559,124.297531,121.355377,116.892570,116.181824,116.297531,114.760338,128.198349,146.553741,163.123978,173.793411,182.909103,180.669434,166.958694,142.876053,122.471085,111.719017,109.049591,103.454552,76.909103,61.380180,76.925636,95.388435,69.900841,32.636383,11.336380,9.404977,6.833069,6.978527,6.144639,6.289268,2.050419,0.382646,0.017356,0.132232,0.048761,0.009091,0.371901,0.066942,0.000000,0.000000,0.000000,0.000000,2.447934,0.000000,0.000000 -602270.555000,4612755.550000,7642,3155,89.487617,158.578522,159.578522,152.537201,136.198364,123.206627,121.123985,117.438034,116.528938,117.198364,115.000015,127.305801,146.008286,163.487625,174.330597,184.842972,181.578522,166.446304,144.735550,123.380180,112.603325,109.289276,103.272743,77.041336,62.462826,77.115715,95.842995,69.388443,32.694237,12.404977,9.388449,5.868607,7.494229,6.401665,5.943812,3.029757,0.566117,0.000000,0.000000,0.054546,0.000000,0.061157,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602274.755000,4612755.550000,7663,3155,89.242172,160.680176,159.242157,151.002487,134.407455,121.217361,120.804138,116.076874,115.300003,115.944633,113.217369,125.704964,145.209091,162.027283,173.101654,182.407440,181.448761,164.845459,143.258682,123.126450,111.250427,107.266960,101.936378,75.523163,59.928116,76.961182,93.680191,68.407463,32.220680,11.386793,9.266961,7.270257,4.776872,6.242162,6.590094,2.476037,0.907440,0.000827,0.115703,0.071075,0.223967,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602280.755000,4612755.550000,7693,3155,109.828941,165.928116,162.556213,155.721512,137.605804,125.250427,122.870262,118.184311,117.845467,119.109932,116.704971,128.820679,147.085144,164.275223,175.514893,185.977707,183.895065,167.019028,144.333084,124.762825,113.713234,110.771088,104.754562,78.283485,63.928112,80.233902,96.300018,71.407455,34.523159,12.624810,9.523160,7.546292,7.572742,7.421500,8.103319,3.274386,0.441324,0.285125,0.319836,0.071075,0.071901,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602287.155000,4612755.550000,7725,3155,110.485130,168.096725,161.633911,153.972748,136.138031,121.377693,120.766129,117.410751,115.881828,119.138023,114.997528,127.278519,145.518204,163.493408,175.187622,186.195892,182.311600,167.303329,144.270279,125.146294,114.410751,109.394226,105.336372,76.931419,63.138035,80.452087,95.584305,69.848778,34.840515,12.954563,9.576053,10.936377,7.724808,7.141334,7.054558,2.550419,0.419009,0.047935,0.000000,0.236364,0.127273,0.000000,0.529753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602295.355000,4612755.550000,7766,3155,107.516541,171.946320,162.731430,153.954575,136.541336,124.904968,122.706619,118.731415,117.202484,120.475212,116.508270,128.714890,145.161194,163.665329,176.756210,187.723160,184.698364,167.814087,147.045486,127.888435,115.491745,112.384308,106.681824,79.888435,64.747948,81.921494,97.871910,72.706627,35.772743,12.938860,9.698365,9.947121,7.545470,9.214065,9.535550,3.920669,0.811572,0.349587,0.591737,0.042149,0.033884,0.158678,0.365290,0.347108,0.000000,0.000000,1.153719,0.000000,0.000000,0.000000 -602298.555000,4612755.550000,7782,3155,114.736374,170.752914,163.480194,152.951248,136.860336,121.604149,120.504974,117.075218,116.405800,119.430588,115.554558,127.389267,145.265320,164.207474,176.066940,186.389267,182.819016,167.926468,147.075226,125.901665,114.868607,111.918198,105.918198,78.265305,62.918198,81.248772,97.843811,71.422325,34.240513,13.424809,9.628944,11.034723,7.269437,9.785139,9.471087,3.796700,0.758679,0.373554,0.000000,0.157025,0.226447,0.062810,0.643802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602303.755000,4612755.550000,7808,3155,113.161995,162.546295,163.306625,150.587616,132.628937,120.463646,118.926460,114.009102,112.976044,117.091751,112.215714,124.802490,143.728119,161.323151,174.703323,185.331421,181.471909,165.463654,145.645462,126.587616,114.339684,109.083481,103.918198,75.612411,61.595894,81.571091,99.331421,72.942986,33.422337,13.245471,9.447126,11.426459,6.286791,7.487618,9.321501,4.404967,0.555373,0.102480,0.131405,0.367769,0.042976,0.378513,0.730579,0.229752,0.000000,0.000000,1.229752,0.000000,0.000000,0.000000 -602311.155000,4612755.550000,7845,3155,128.845474,148.366135,145.209106,135.589279,120.837204,109.060333,103.820671,101.647118,99.242157,99.655380,98.663643,109.944641,128.771088,144.481842,156.531433,167.225647,167.366135,155.423996,132.886795,113.473572,102.200836,96.746292,90.118195,65.671921,50.911591,71.622330,90.440514,69.622330,31.597540,12.338861,8.192581,6.047117,6.778524,6.458690,7.704971,4.338850,0.442978,0.199175,0.395869,0.248761,0.100001,0.000000,0.675208,0.347108,2.180166,0.000000,0.000000,0.000000,0.000000,3.128099 -602322.355000,4612755.550000,7901,3155,122.625648,146.981003,140.997528,129.923157,115.716545,103.898361,100.989273,96.774399,94.700020,94.262001,96.270264,107.237206,124.989265,141.766129,153.113220,163.923141,161.757843,151.261978,129.939682,110.782661,99.774399,95.286797,90.245476,65.394234,50.286804,69.600845,90.509933,68.592583,29.931425,11.428117,8.204151,6.755383,6.960342,7.919020,8.768608,3.774390,1.659508,0.466944,0.071902,0.130579,0.042149,0.266942,0.052893,1.252894,2.177686,0.000000,0.000000,1.409917,0.000000,0.000000 -602328.955000,4612755.550000,7934,3155,124.496704,106.515717,83.280174,71.358688,58.374393,52.447121,48.248772,44.430592,44.620674,44.422325,45.265301,53.086792,66.383484,78.483482,88.848770,99.098366,101.164482,97.833893,89.990921,79.387611,71.162819,70.526459,68.745461,46.818199,29.829767,54.289272,97.862831,94.866959,50.281834,9.636375,6.249602,9.009103,15.603322,26.937208,39.767788,32.728119,8.733065,5.138846,4.130581,5.782647,4.279341,3.203308,3.149588,1.262811,11.238844,4.768596,15.700828,8.701654,8.121489,1.218182 -601535.555000,4612745.550000,3967,3205,160.538025,139.240509,123.719841,109.240501,95.430580,84.595879,82.281837,78.513245,78.926468,80.984314,82.438858,93.529762,110.835541,128.149597,142.033890,151.819016,152.595886,143.843811,121.513229,100.546288,90.959518,86.579346,81.645477,54.744640,37.934731,54.868607,70.108284,52.066959,23.982664,9.005801,7.422334,12.777700,11.605802,13.779356,16.211588,15.923156,7.510753,4.074385,2.102483,0.700829,1.177688,1.658680,2.649589,2.142978,41.322319,25.261162,18.937195,16.990089,18.835541,33.409924 -601538.755000,4612745.550000,3983,3205,151.242157,140.663635,125.473557,112.713234,98.473572,87.784309,83.547943,81.916542,81.052071,84.329765,84.660339,96.002495,113.961174,130.374390,143.109924,155.101654,155.308273,145.605789,121.721497,101.142990,90.680168,88.581001,82.118187,56.275230,39.473572,55.440517,71.870255,52.878536,22.647953,8.384312,7.465308,9.691751,7.878527,9.706625,10.410756,10.819020,1.709096,1.652896,2.107441,1.000002,0.781820,1.617358,1.241324,1.066944,28.396698,24.006617,11.861986,13.823971,13.589258,20.924795 -601543.355000,4612745.550000,4006,3205,141.604965,141.736374,132.901672,122.174400,108.091759,97.802498,93.463654,92.967789,91.488449,94.124817,94.992584,105.414070,123.447128,138.587616,152.628937,164.190918,163.422333,153.976044,130.744644,109.215721,100.042168,94.942993,89.645477,62.100021,44.471920,61.339691,76.025642,57.141342,26.339689,8.835553,8.149606,9.504148,8.335551,10.430593,10.576048,7.367780,1.747111,0.365291,0.830581,0.332233,0.442150,0.735538,0.661159,1.929755,16.380993,9.390084,8.837192,6.411572,11.873556,5.144629 -601549.555000,4612745.550000,4037,3205,134.771088,149.908264,135.916550,129.222336,114.445465,102.255394,100.131424,98.329773,96.908287,100.015724,100.172745,110.660339,128.734726,145.131424,156.784317,167.106628,167.065308,157.462006,134.437210,113.511589,103.057045,98.114899,91.809113,65.057045,46.949608,63.255390,78.982666,60.627293,24.999193,11.145470,8.346299,6.734722,9.685138,8.728938,9.798360,6.515712,2.124798,0.664466,1.040498,0.477687,1.511572,0.986778,0.342150,1.025621,1.947108,3.779339,3.547935,2.866116,2.952066,0.000000 -601557.355000,4612745.550000,4076,3205,115.375229,149.891754,145.023987,132.271927,117.462006,105.131424,103.371094,101.304977,101.123154,104.742996,103.081841,114.362831,130.767792,147.321503,159.891754,169.172745,169.552917,158.073578,135.304977,115.015724,104.015724,100.023987,93.627289,66.172745,49.809109,63.519855,78.230591,58.495060,24.611591,9.067783,8.511589,6.691747,7.214889,8.787617,7.365303,4.098354,0.764467,0.275208,0.436364,0.170248,0.267769,0.000000,0.606612,0.461157,8.065289,0.000000,3.080992,0.714050,2.246281,3.841323 -601566.155000,4612745.550000,4120,3205,112.626472,169.163635,155.114075,146.519028,128.957047,115.064476,113.841339,111.362000,110.849602,116.560356,111.072739,123.543823,140.576889,157.171921,169.229782,179.907455,177.014893,162.800018,141.105804,122.362007,110.105797,107.295883,100.890930,73.510765,57.337208,73.320686,84.990105,60.370266,27.320681,11.587622,9.171921,10.653734,7.452908,8.814891,7.249599,3.455381,0.596696,0.321488,0.090909,0.000000,0.023141,0.000000,0.000000,0.000000,1.111570,0.000000,0.000000,0.885124,0.000000,0.000000 -601569.555000,4612745.550000,4137,3205,124.489273,170.130585,154.014877,145.312408,127.576874,114.320679,114.411583,109.981834,110.320679,115.866127,111.130592,121.899185,139.816528,157.725632,169.510757,179.403305,176.973557,162.097534,142.353729,121.766960,110.105797,107.362000,100.618195,72.576881,56.890926,72.163658,85.287621,60.006630,26.899193,11.324811,9.147127,9.634725,5.991748,8.320674,7.167782,3.087609,0.680167,0.346282,0.085951,0.204959,0.097521,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.555000,4612745.550000,4157,3205,109.768608,172.256195,153.611572,144.603302,128.636368,115.669441,113.652908,111.446297,111.008278,115.884315,111.462830,123.669441,140.454544,156.876038,170.595047,180.760330,177.553726,164.000000,144.504135,123.305801,112.008278,108.123985,102.636383,73.421509,58.479362,72.611595,86.677711,63.264484,27.909109,10.429770,9.330598,9.919024,7.980179,7.324806,8.430593,4.013233,0.403307,0.312398,0.029752,0.000000,0.000000,0.181819,0.265289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.755000,4612745.550000,4188,3205,108.220680,162.419037,150.179367,144.741348,127.352913,113.881836,113.104973,110.733078,110.666962,113.509933,110.352913,122.344643,139.807465,157.171097,168.617386,179.138046,176.898376,163.377716,141.377716,121.600845,111.063652,107.204147,100.609108,72.716545,57.129768,70.311584,84.295059,61.220680,25.567789,10.491754,9.146300,8.900014,6.690924,6.942161,7.221500,2.747115,0.945456,0.184298,0.001653,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.955000,4612745.550000,4219,3205,111.957870,158.736374,153.471893,144.670258,128.653732,115.364479,116.488441,113.298363,111.976044,114.182655,113.281830,124.447121,142.926453,159.223984,170.852081,181.645462,178.554565,165.885132,143.719849,124.257034,113.166130,110.604149,104.281830,74.711594,58.827293,72.108284,87.587624,64.885147,29.934731,12.085969,9.480185,8.562824,8.071091,7.314890,7.925633,3.396701,0.101653,0.427273,0.182645,0.000000,0.000000,0.097521,0.000000,0.000000,4.743802,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.755000,4612745.550000,4238,3205,100.633896,157.747116,151.771912,141.895874,125.730591,114.681000,115.557037,113.028107,112.085960,114.110756,112.499184,124.300835,142.259506,159.284317,170.920670,180.061157,177.548767,166.119034,142.755371,122.416542,112.251251,108.970261,101.218193,74.829773,57.854565,71.358696,86.928947,64.697540,28.193407,10.203322,9.201673,8.281005,9.113239,8.251252,7.647946,2.282650,0.576034,0.133885,0.165290,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.014876 -601595.755000,4612745.550000,4268,3205,97.943817,159.676880,155.048782,145.172745,129.296707,116.990929,116.313240,112.891754,111.742996,115.040512,113.759521,125.065308,143.742996,160.536377,172.536377,181.949600,179.957870,167.916550,144.875229,125.495064,113.371094,109.866959,103.445473,75.990929,58.569447,73.445473,88.073570,64.759529,31.205805,12.626465,9.404152,9.495882,8.035553,8.228112,8.699187,4.546289,0.635539,0.287604,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.555000,4612745.550000,4282,3205,96.493401,159.269440,155.095886,143.236374,127.360352,117.244652,115.409935,112.699196,111.856216,112.682663,112.806633,124.542168,143.244644,159.021500,171.269440,180.955383,179.781830,166.170258,142.533890,123.162003,110.641342,108.137215,102.236382,74.186798,58.244648,71.029770,87.310768,63.682667,28.971920,10.199190,9.294235,7.463649,7.530594,7.878526,7.995054,2.752072,0.357852,0.448761,0.056199,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601601.555000,4612745.550000,4297,3205,106.523155,160.179367,154.361176,143.609116,128.782654,117.286789,117.063644,113.014061,112.245461,114.071907,112.989265,124.947945,144.030609,160.741333,171.204147,181.328110,179.675217,166.906616,144.204163,124.129761,112.261993,108.526459,102.881828,74.435555,58.576050,72.435555,87.782661,64.815720,28.567789,12.111588,9.352912,6.581831,7.812413,8.019022,6.778526,1.995873,0.476860,0.000000,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.678513,0.000000,0.000000 -601605.155000,4612745.550000,4315,3205,104.477699,157.066956,156.356216,141.273560,129.190918,115.967773,115.364479,113.521492,111.546295,113.546295,112.604134,124.215714,143.901672,160.215714,172.248779,180.926453,179.215714,167.116547,144.306625,123.174393,110.670258,109.108276,103.009102,74.827293,57.546303,72.356216,86.967773,65.248779,29.133078,11.445472,9.364483,7.903318,6.289269,7.628113,7.109104,3.311576,0.258678,0.000000,0.222315,0.000000,0.000000,0.126447,0.000000,0.000000,1.216529,0.000000,0.000000,0.609091,1.109091,0.000000 -601609.355000,4612745.550000,4336,3205,108.355385,160.482651,155.738846,143.953735,129.895874,118.978531,118.094231,113.986794,114.036385,114.871094,115.557045,126.523987,144.904144,161.168594,172.920670,181.796692,181.226456,168.135544,145.325638,124.433075,113.928947,111.094231,103.581841,75.573570,59.722328,74.681007,90.152084,67.416542,30.804977,14.422334,9.416549,8.006625,8.503321,9.240510,10.056212,3.460338,0.530580,0.310745,0.235538,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.155000,4612745.550000,4350,3205,107.309113,160.317368,153.160355,143.036377,127.937210,115.003326,115.226463,112.449608,111.995064,113.416550,112.763657,124.358696,143.209930,158.590103,170.292572,180.821503,178.548782,166.945480,143.490921,122.945473,111.821510,107.928947,102.127289,73.904152,57.317371,72.507454,88.044647,65.928940,29.532251,11.738861,9.284316,7.000012,5.927287,7.204145,7.452081,2.520666,0.355373,0.289257,0.266943,0.000000,0.033058,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.173554,0.000000 -601618.555000,4612745.550000,4382,3205,103.934723,153.523987,153.838043,144.631424,129.507446,119.457863,117.168610,113.970261,113.242989,113.920670,114.540504,125.466125,144.647949,160.606613,172.879349,181.127274,180.523972,168.102478,144.358704,123.532242,112.796707,110.119019,104.127281,74.771919,59.962002,73.003326,90.573563,65.548782,30.813242,12.408282,9.466135,9.433071,8.133900,8.884312,8.035551,4.026454,0.627274,0.285951,0.019835,0.307439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.955000,4612745.550000,4399,3205,96.685135,153.696716,156.506638,142.795883,130.341339,118.019020,117.266960,114.151253,113.266960,113.481834,114.440514,126.547951,145.043823,160.581009,172.671921,181.779358,180.614075,168.308289,144.779358,123.837204,112.977699,108.903320,102.845467,74.126472,57.787621,72.704979,89.357864,65.713249,30.952913,12.352910,9.349606,5.613235,7.814891,8.109105,6.237203,3.000007,0.476034,0.114050,0.084298,0.000000,0.142149,0.038017,0.000000,0.000000,0.000000,0.000000,0.965289,0.000000,0.000000,0.000000 -601625.955000,4612745.550000,4419,3205,103.634720,152.802475,153.926437,143.000824,128.513229,117.422325,116.025635,112.579353,111.909927,113.199188,113.248772,123.959518,142.951233,158.827286,170.546280,179.604126,178.248764,166.827286,144.017365,122.521500,111.042160,107.529762,101.281830,73.273567,57.827293,71.166138,86.984314,64.488449,28.901674,11.082662,9.207456,6.519019,6.085138,5.405796,6.974392,3.012403,0.558679,0.463637,0.066943,0.000000,0.019835,0.081818,0.000000,0.000000,0.000000,0.000000,1.023967,0.860331,0.000000,0.000000 -601630.955000,4612745.550000,4444,3205,113.042992,154.871902,153.995865,144.194214,127.227280,118.847115,115.971085,113.814056,112.202484,114.433891,115.128105,125.425629,144.822311,159.863632,171.607437,180.979340,179.549591,167.409088,143.904953,123.772736,112.632240,109.111580,102.954559,75.863655,58.657043,72.764488,89.128113,66.425636,30.342995,11.464481,9.359524,6.696707,7.178527,6.218194,8.352907,4.652902,0.930580,0.000000,0.129753,0.000000,0.302480,0.184298,0.000000,0.000000,1.141322,1.133884,0.000000,0.000000,0.000000,0.000000 -601636.155000,4612745.550000,4470,3205,99.240509,156.783478,155.238022,145.196701,128.320679,117.717361,117.295876,113.328934,113.337196,114.626450,115.733894,126.337196,144.998352,160.618195,173.618195,181.692566,180.080994,168.444641,145.568604,124.047951,113.461166,109.560333,103.890915,74.998367,59.312416,74.105804,89.560349,65.866135,30.692581,12.254563,9.444647,7.445466,7.652081,9.971088,7.816542,4.141330,0.578514,0.135538,0.577687,0.000000,0.187604,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.755000,4612745.550000,4488,3205,110.776047,153.283478,156.010757,145.019012,130.101669,119.142990,116.680183,114.382660,113.985962,115.291748,115.547951,126.688446,145.151245,161.192566,173.217361,182.184311,180.952896,167.614059,145.556198,124.374397,112.762825,108.473572,103.936378,75.985962,59.209114,73.762833,89.539680,66.300018,30.357870,12.424812,9.448779,5.926458,7.244643,7.715715,7.688444,3.247941,0.910746,0.061157,0.118182,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.927273,0.000000,0.000000,0.000000 -601644.355000,4612745.550000,4511,3205,94.705803,151.120667,155.575226,144.261169,131.046295,119.682655,117.054558,115.624809,114.269432,115.847946,115.393402,127.542160,146.104141,161.806625,174.285965,182.996704,181.732239,168.723984,146.748779,125.633072,113.104149,108.930588,104.690926,75.294228,59.451260,74.517365,89.128937,65.641342,30.533903,12.223985,9.517374,8.262821,7.005799,8.851253,9.796707,2.471906,0.321489,0.169422,0.117356,0.290909,0.109918,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.555000,4612745.550000,4532,3205,100.785141,153.175217,156.580170,144.464478,132.406616,123.431412,119.373566,116.638023,115.712410,117.514061,117.604965,128.695877,148.150421,163.018188,175.009933,183.447937,182.621490,171.092590,147.571915,125.935547,114.704140,111.009933,105.381836,76.555389,61.166962,76.117371,91.902496,68.109108,31.819857,14.304151,9.580184,9.561172,8.843817,9.374394,9.559519,4.115711,1.099176,0.135538,0.163637,0.000000,0.110744,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.955000,4612745.550000,4559,3205,105.049606,147.604980,155.447952,144.414902,130.357040,119.786797,116.861176,115.241341,113.208282,115.671089,116.224808,126.654564,145.638046,161.133911,173.249603,181.695877,180.241333,167.638046,145.290939,123.018196,112.604973,108.439690,103.472748,75.357040,58.604977,73.522331,89.447952,66.001671,30.406631,12.554564,9.406631,7.277697,6.981832,5.980178,6.904145,2.935544,0.845456,0.174381,0.118182,0.000000,0.114876,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.984298,0.000000,0.000000 -601659.155000,4612745.550000,4585,3205,114.561180,149.609100,153.716537,144.542984,131.278534,120.022339,118.377708,116.228951,113.906639,115.534737,116.526474,126.766144,144.733063,161.204147,173.113235,182.113235,180.096710,168.104965,145.410751,123.501678,112.873581,108.691765,102.700027,74.146309,59.633907,74.228951,89.427299,64.766136,31.295059,12.267786,9.336383,5.353730,7.779354,7.071913,7.189269,2.664469,0.504960,0.128099,0.071075,0.000000,0.000000,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612745.550000,4605,3205,114.405807,154.828934,156.349594,145.556198,130.614059,120.952904,118.614067,116.151253,115.291748,116.374397,116.994232,128.308273,146.093399,162.060333,174.341324,183.035538,180.159515,169.514877,146.977692,125.828941,112.399185,109.184311,103.845474,76.366135,59.762833,73.961182,89.250427,66.374405,30.704977,11.473573,9.440516,7.557863,7.309933,8.093403,7.747121,2.502484,0.976862,0.385124,0.063637,0.000000,0.042976,0.014050,0.000000,0.000000,0.000000,0.000000,0.856198,0.000000,2.165289,0.000000 -601669.155000,4612745.550000,4635,3205,100.214890,150.670258,153.901672,143.124802,128.240509,117.108276,113.695053,111.438858,111.546295,112.909927,114.083481,123.480179,142.463654,157.769440,170.447098,178.480179,177.810760,164.752884,142.133072,121.381004,109.133072,106.480179,100.190926,71.546295,55.587620,72.984314,85.579353,65.843819,29.447128,9.836381,9.108283,4.782653,6.536378,6.056208,6.000011,2.195873,0.118182,0.138843,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.755000,4612745.550000,4663,3205,107.559525,153.682678,156.211578,146.550446,131.095886,121.467781,117.533897,114.872742,114.715714,115.550423,116.302490,127.236374,145.608292,160.938858,173.550430,181.947113,179.732239,168.310760,145.914062,124.418198,112.004974,109.120674,102.781830,74.996712,58.467789,74.781837,89.211586,67.872749,31.170267,12.942169,9.343821,6.130589,8.141337,6.489269,7.160343,2.900007,0.599175,0.401654,0.187604,0.000000,0.071075,0.000000,0.252066,0.000000,0.000000,0.000000,0.000000,0.786777,0.000000,0.000000 -601677.955000,4612745.550000,4679,3205,107.077698,151.671890,153.663620,144.514862,130.994217,119.696701,115.366119,114.556206,113.721497,115.060333,115.308273,126.324799,144.068588,160.225616,171.531418,181.043793,179.696686,166.886765,144.936356,123.242157,111.680168,108.200836,101.936371,74.597534,56.308292,72.886795,89.729759,66.316551,29.985970,11.546298,9.266961,5.457860,7.119849,7.530592,7.669435,3.111578,0.669423,0.315703,0.045455,0.003306,0.062810,0.335538,0.000000,0.000000,0.000000,0.000000,0.939670,0.821488,0.000000,3.885951 -601681.355000,4612745.550000,4696,3205,100.957039,154.446274,156.314056,144.198349,129.586792,120.528938,116.834724,115.471092,114.876053,115.264481,114.851257,125.628105,144.892563,160.322311,171.611572,180.024796,179.991730,168.438019,144.677689,123.595055,112.371918,107.702492,103.090927,73.950439,58.297546,74.603333,89.727287,67.206635,30.884315,11.971092,9.371920,6.452904,6.507452,7.401666,7.090919,3.447942,0.539671,0.002479,0.028099,0.000000,0.017356,0.160331,0.000000,0.000000,0.000000,1.040496,0.000000,0.000000,0.988430,0.000000 -601686.155000,4612745.550000,4720,3205,112.223152,149.779358,155.762817,144.746307,131.828934,120.572739,117.556213,114.630592,113.663651,115.432243,115.225632,126.977699,143.820679,160.903305,173.655396,180.837219,179.969437,167.812408,144.143005,122.870262,110.919846,107.266960,101.572739,74.060349,57.010761,73.093407,88.101669,64.969437,31.101673,12.161175,9.233904,6.316541,6.656214,6.495054,7.520676,3.920669,0.478513,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.355000,4612745.550000,4751,3205,97.657867,155.793411,154.355392,143.148773,129.652908,119.206627,117.239685,115.528938,114.512413,115.495880,116.206627,127.446297,145.173569,161.371918,172.909103,182.198364,179.355392,168.454559,144.636383,124.669441,112.305801,108.404976,101.909103,74.570267,55.900848,72.925636,88.520668,64.628120,29.140516,11.181008,9.264482,5.648771,5.913237,7.666127,5.780177,2.319013,0.292563,0.069422,0.009091,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.755000,4612745.550000,4773,3205,96.526459,151.318192,154.838837,145.161179,129.913239,119.723152,117.500008,115.409096,114.979347,116.078522,116.417366,127.400833,145.169434,161.582642,173.318192,181.830597,180.615723,169.260330,145.475220,123.954552,112.161171,109.103325,103.227287,74.004150,57.144650,73.061996,87.764481,67.119858,28.698368,10.456215,9.384316,3.665298,5.176872,6.697533,5.233068,2.242981,0.170248,0.073554,0.150414,0.000000,0.193389,0.000000,0.000000,0.000000,5.488430,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.755000,4612745.550000,4803,3205,100.919029,147.907440,152.849594,143.932251,130.750427,121.196709,118.444633,115.932236,115.295876,117.667778,118.064468,127.403320,145.362000,161.519012,174.320679,183.535553,180.932251,170.188431,145.800018,125.204971,112.857857,109.700836,103.618187,75.965309,58.659523,75.238037,88.725639,66.758698,31.411589,11.858696,9.419854,5.616540,6.821502,6.495881,7.157864,1.304135,0.668596,0.000827,0.039670,0.000000,0.106612,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,1.585124,0.000000,1.990083 -601706.355000,4612745.550000,4821,3205,102.927284,150.671082,153.348770,145.158691,131.373566,122.480995,117.852913,116.671089,116.522331,118.679359,118.307457,129.233063,147.224808,162.646286,175.026459,183.695877,182.216537,170.761993,147.323975,125.224792,113.142166,109.423157,103.654564,75.993408,58.935555,72.852913,89.092583,67.092575,28.853739,11.221504,9.423160,4.861166,6.638857,7.477697,5.159515,2.778517,0.441323,0.000000,0.000000,0.000000,0.021488,0.025620,0.000000,0.000000,0.000000,3.159505,0.000000,0.000000,1.133058,0.000000 -601709.355000,4612745.550000,4836,3205,81.446297,155.050430,157.587616,145.257050,132.604156,122.372742,120.752907,117.752907,118.025635,118.942986,119.414062,129.909943,148.612427,164.157867,176.637192,184.546280,183.711563,172.116531,148.670273,126.810760,115.000839,110.637199,104.645470,77.108292,60.207455,74.381020,91.232246,67.207458,32.852081,13.239687,9.513242,5.692573,8.144644,8.820675,7.726460,2.826452,0.413224,0.000000,0.107438,0.000000,0.000000,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.955000,4612745.550000,4849,3205,110.746292,152.280167,155.172729,145.709915,133.437195,120.685135,118.858688,117.048775,115.900009,117.387611,117.957863,128.924805,146.916534,162.966125,175.528122,183.321503,182.809113,170.577698,147.197525,125.602493,113.280174,109.759514,103.990929,76.536385,59.114895,73.147957,88.990929,66.486794,30.131424,11.183489,9.453738,4.706622,7.171089,7.252905,8.169436,3.084303,0.433885,0.000000,0.020661,0.000000,0.023141,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.155000,4612745.550000,4880,3205,111.544632,160.425629,156.739685,147.466965,133.268616,122.938034,121.028931,118.268608,115.938026,120.590919,119.929764,131.194229,149.285141,164.673569,176.466965,185.855392,183.152908,172.078522,147.276871,126.276878,114.326454,109.904968,104.318192,76.533066,59.946301,75.632240,90.276871,67.483490,30.409111,12.208282,9.483490,5.491745,6.793404,7.500014,8.218195,2.823972,0.578514,0.000000,0.000000,0.057025,0.043802,0.100827,0.192562,0.000000,1.271075,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612745.550000,4894,3205,122.921509,159.344650,158.848785,149.047119,136.080170,123.956215,121.658699,119.361176,119.055389,121.782661,120.757866,131.526459,149.138031,164.873566,177.509933,186.014053,185.402496,173.204147,147.716537,128.171097,114.857040,111.253738,106.154564,77.080185,60.981014,76.385971,90.385971,68.518196,30.592579,13.887622,9.650433,5.247944,8.799189,7.265303,8.095054,3.211576,0.654547,0.406613,0.138017,0.180165,0.000000,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.955000,4612745.550000,4909,3205,127.061180,154.914886,156.179352,146.823975,132.377701,121.642166,118.410759,116.096710,115.592583,118.237206,117.774399,128.625641,145.947937,162.733078,175.369431,184.534714,182.749603,170.700012,147.410751,125.228943,113.096710,108.815720,102.790924,75.823982,57.981010,72.832253,87.435555,66.832253,28.964483,12.359521,9.344646,5.390092,7.019022,6.361168,7.004143,2.050418,0.614051,0.209918,0.156199,0.000000,0.011570,0.031405,0.000000,0.000000,0.000000,0.000000,0.935537,0.000000,0.000000,0.000000 -601730.955000,4612745.550000,4944,3205,114.234718,156.109116,155.952087,148.125641,132.662827,120.728935,117.761993,115.960342,115.447945,117.547119,117.241333,126.629761,145.274399,161.704163,174.307465,182.795074,181.315735,170.026474,145.290939,123.795052,111.274391,107.208275,102.381828,74.282661,55.885967,71.249603,86.472740,65.109108,28.679359,11.413239,9.307458,4.401661,6.308278,4.947944,5.751251,2.571079,0.461158,0.047108,0.102480,0.000000,0.099174,0.065290,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.355000,4612745.550000,4971,3205,115.034737,160.745468,157.894226,149.216537,134.439697,121.861183,118.927299,118.200027,116.340523,118.745483,118.547134,128.836395,147.323975,163.960342,175.985138,184.100830,183.654556,171.514053,147.571915,125.299202,113.208290,109.191765,104.109116,75.373581,58.952080,73.076057,89.208290,67.803329,29.679359,13.208282,9.464481,5.410755,7.907453,6.448773,6.554558,2.123971,0.984299,0.521488,0.113224,0.061984,0.040496,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601739.355000,4612745.550000,4986,3205,113.547127,164.009933,159.191742,149.704147,134.993393,121.596703,119.175217,118.357033,115.985130,119.373566,118.018188,129.481003,146.323975,164.241333,176.059509,184.877701,183.282654,172.266129,146.894226,124.761993,111.712410,107.844635,102.381836,73.985138,57.803329,72.447952,88.018196,66.439690,29.580183,11.737207,9.307457,4.628933,4.909104,6.022326,6.528937,1.109094,0.180166,0.074380,0.059505,0.000000,0.089257,0.023141,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,1.219835,0.000000 -601742.955000,4612745.550000,5004,3205,127.110764,167.842987,158.785141,151.074402,136.446304,124.090927,120.347122,118.504150,117.900841,120.553734,119.479355,130.264481,148.024811,165.834732,177.859528,186.421509,184.363647,172.694229,148.322327,125.669441,114.140511,109.157043,104.818199,76.181831,58.975227,73.281013,89.157043,66.867783,29.909109,12.187620,9.528945,5.182655,6.652081,7.821499,6.838030,2.677691,0.561159,0.004959,0.093389,0.000000,0.118182,0.093389,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.185951 -601747.155000,4612745.550000,5025,3205,127.096703,171.154572,159.898361,154.790924,137.774384,123.179352,121.600838,120.576042,117.939682,120.914886,119.865295,129.212402,148.129761,164.551254,177.890091,186.832245,184.187607,172.534714,147.716537,125.468605,113.526459,110.005798,104.154556,74.865311,57.923161,73.245476,88.865311,66.237213,28.336382,12.176877,9.468614,4.934721,7.137205,6.434721,6.591747,2.446286,0.546283,0.204960,0.130579,0.000000,0.000000,0.059504,0.214050,0.000000,1.185951,0.000000,0.000000,0.000000,0.000000,4.576860 -601750.155000,4612745.550000,5040,3205,119.495880,167.429764,164.793411,153.247955,135.504150,123.090927,121.528938,119.165306,118.363655,119.983490,118.834724,130.735550,149.818192,166.330597,177.768616,186.487610,185.380173,170.454559,146.363647,126.545471,114.900841,111.264481,105.454559,76.851257,61.181839,75.950432,91.066132,66.528946,32.033077,12.247125,9.586796,7.900014,8.715716,8.264477,6.246293,2.952073,0.280167,0.142149,0.031405,0.125620,0.000000,0.000000,0.000000,0.000000,3.820662,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.755000,4612745.550000,5053,3205,112.034721,166.200012,162.257858,149.323975,135.687607,122.927284,121.191742,118.282654,117.538849,117.133896,118.191742,130.059509,148.960342,165.381821,176.671082,185.249603,183.142151,168.828110,144.662827,124.836372,112.580177,110.431412,104.927284,76.009926,60.216549,73.348770,89.348770,65.530602,29.861177,11.909108,9.538861,6.582658,7.068609,7.539684,6.591747,3.958685,0.406613,0.472728,0.126447,0.122314,0.000000,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.755000,4612745.550000,5068,3205,114.124809,163.728119,165.579346,149.819016,135.397537,122.298363,122.058693,117.141335,117.521500,118.397537,118.066956,129.042160,149.141342,164.736374,177.265305,185.612411,184.281830,169.752899,146.248779,124.992577,114.116539,109.901665,104.009102,75.901665,60.356220,74.802498,90.736374,65.860352,29.240515,11.584315,9.455391,7.190922,5.922327,8.130593,6.645465,3.155380,0.437192,0.043802,0.036364,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.864463,0.000000,0.000000 -601759.555000,4612745.550000,5087,3205,129.745468,167.274384,165.009933,152.968597,136.481003,124.687614,123.910751,120.009926,119.274391,120.315712,119.885963,132.538849,149.927277,167.431412,178.671082,187.307449,185.084305,171.398361,147.828094,125.885963,115.109100,111.299187,106.563644,77.952072,61.844646,76.200020,92.059517,67.406631,32.563656,14.069439,9.687623,9.533073,8.670264,8.507452,9.366129,3.052900,0.686780,0.335538,0.000000,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.355000,4612745.550000,5106,3205,117.466125,169.730576,161.540482,150.838043,135.003311,121.995056,122.094223,118.722328,117.284309,118.573563,118.044640,129.995056,148.036377,166.019821,177.193375,185.333878,183.085938,169.085938,145.581833,124.366951,113.400009,109.747116,104.581833,75.912415,59.928944,73.127289,89.838028,66.350433,30.143824,11.695059,9.507458,9.300843,6.656213,7.543817,7.598359,3.428932,0.574383,0.129753,0.064463,0.213224,0.000000,0.000000,0.000827,0.000000,0.000000,1.108265,0.000000,1.873554,1.082645,0.000000 -601768.355000,4612745.550000,5131,3205,105.766960,170.023148,160.510757,150.998352,135.072739,122.320686,121.056221,119.287628,117.676056,118.857872,118.485970,130.171906,149.386780,164.527283,176.361984,185.337204,185.692566,169.502487,144.791748,123.948776,112.990089,110.122330,103.709106,75.014893,58.800018,72.601669,89.469437,65.651260,31.114071,11.645472,9.428118,8.442989,6.892577,7.613237,7.040508,2.661163,0.442150,0.043802,0.049587,0.000000,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.555000,4612745.550000,5147,3205,115.613235,169.654556,164.357040,151.753723,135.861160,123.414886,123.076042,119.357033,120.018188,120.208275,118.423149,130.233063,150.481003,166.803314,178.811584,187.241333,184.819839,170.910751,146.770264,125.935547,113.133904,111.745476,105.200020,75.976883,61.142170,74.852921,90.728943,65.919029,29.142166,12.451258,9.563656,7.634727,5.485965,6.501667,7.537202,2.981826,0.395870,0.161157,0.233059,0.433059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.955000,4612745.550000,5164,3205,123.896706,172.425613,162.293396,154.243805,136.541321,123.648766,123.871910,119.780998,120.252075,122.285133,120.392570,131.706619,151.169418,167.516525,180.061981,187.830582,185.425613,171.615707,146.574387,126.086784,115.475212,110.822327,105.954559,77.648781,60.855396,75.004158,90.334732,66.004158,30.739687,12.791753,9.632252,8.540510,6.113236,8.654561,6.600010,2.161164,0.217356,0.165290,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,1.022314,0.000000,0.000000,0.000000,0.000000 -601778.155000,4612745.550000,5180,3205,119.003319,173.300842,165.400024,152.085968,137.788452,123.945465,121.705795,118.548775,118.110756,121.986786,118.928940,131.945465,149.928940,166.838043,179.234726,188.292587,185.548782,169.714066,146.433075,124.937202,113.143814,109.722328,104.400009,74.548775,58.871094,74.052910,88.259514,64.879356,30.366964,12.128942,9.490929,9.443816,6.419021,7.542163,7.986789,3.876869,0.828928,0.482645,0.340497,0.116529,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,1.943802,0.000000,0.000000 -601780.955000,4612745.550000,5194,3205,127.197525,170.709915,164.966125,152.966125,136.205811,123.073555,122.321487,120.057030,118.685127,120.800835,119.123154,130.238846,149.172729,166.941330,179.453720,187.792572,185.147934,169.900009,146.288437,123.486786,112.776054,110.759521,104.536385,75.495064,59.594234,73.767792,88.759521,63.924812,27.131424,10.547123,9.503325,7.476873,6.142162,7.121501,6.678525,1.980171,0.090083,0.171075,0.235538,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.155000,4612745.550000,5210,3205,109.083481,179.166122,166.785965,152.480179,136.885147,123.058693,123.265305,119.852081,120.248772,123.050423,120.190926,132.182663,151.529770,168.397537,181.785965,190.942993,185.984314,171.686783,145.885132,125.893402,114.571091,111.331421,105.281830,78.058701,61.042164,75.538040,88.719849,65.653732,30.430597,12.504150,9.571094,9.322330,7.102495,7.026461,5.950425,2.209923,0.442151,0.085951,0.072728,0.000000,0.000000,0.000000,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.755000,4612745.550000,5238,3205,126.822327,183.566116,166.119858,157.541336,139.475220,125.690102,124.376053,121.599190,121.508278,125.194229,120.847122,133.681839,151.698364,169.516525,181.673553,191.309921,187.789261,172.037186,148.169434,125.954559,114.202492,111.128113,105.318199,77.582664,61.384319,74.731422,91.045471,65.491753,30.475227,13.225636,9.574399,10.990927,6.460344,8.445468,7.334722,2.957859,0.233059,0.214877,0.090909,0.042975,0.000000,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.755000,4612745.550000,5258,3205,139.055374,186.124786,166.678528,158.744644,139.628922,125.240517,122.926468,122.488449,123.050438,127.959526,122.587624,133.538040,152.471893,170.298355,183.538025,193.546280,189.314880,171.347946,149.686768,127.802498,115.463654,112.604156,108.554565,77.620682,62.620682,77.711594,91.620682,67.339691,31.510763,13.070267,9.868615,10.267784,7.495056,8.475222,8.583485,5.283480,1.058680,0.131405,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,8.313223 -601797.955000,4612745.550000,5279,3205,154.323975,189.752075,169.173569,159.239685,139.206635,125.578529,125.520676,122.272743,123.322327,128.256210,122.479355,134.694229,152.917374,170.396713,183.471085,193.000015,190.041336,172.942169,148.504150,128.338852,115.958694,113.479355,108.454559,78.776878,63.719028,78.652908,92.008278,64.842995,30.322334,14.647952,9.859524,14.471918,6.833897,7.054559,7.356209,3.783479,0.278513,0.048760,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.057025,0.000000,0.000000,0.000000,0.000000 -601803.555000,4612745.550000,5307,3205,146.881851,188.278519,168.385956,159.600830,140.501663,126.253731,125.443810,124.005798,123.435547,129.063644,122.981003,135.212402,152.914886,170.270264,183.038849,193.890091,190.559509,172.625626,148.344635,128.005798,117.501663,112.823975,107.881828,78.559532,62.914894,77.823982,90.220680,66.319847,31.675224,11.594233,9.807457,11.725636,6.422327,6.650426,6.918195,4.203315,0.448762,0.095042,0.084298,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.044628,0.000000,0.000000,0.000000 -601808.555000,4612745.550000,5332,3205,124.437202,180.197525,166.205795,155.263641,137.139679,126.453728,124.668610,121.569435,122.147942,125.544640,122.734718,135.023972,153.776031,170.255371,183.329758,192.156204,188.214050,174.090088,151.164459,127.652077,116.800835,113.338028,108.263649,79.470261,63.131420,80.379349,92.205795,66.982658,30.172747,12.586794,9.842167,9.162825,6.376872,7.456211,7.270261,3.373561,0.423142,0.042975,0.628100,0.206612,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,1.757025,0.000000,0.000000,0.000000 -601811.755000,4612745.550000,5348,3205,117.436371,158.601654,160.353745,151.081009,134.593399,125.833061,124.378525,120.742157,120.105789,121.783478,122.642982,134.147110,152.428116,169.932236,181.783478,190.990082,189.221497,173.882660,150.345474,129.634720,118.750420,114.932243,110.436378,81.361992,65.973572,79.543816,94.923981,70.353737,33.279362,14.309936,10.039688,8.046296,7.342988,6.887617,8.927287,2.365299,0.435539,0.066116,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601818.155000,4612745.550000,5380,3205,104.291748,151.898376,161.476883,147.146301,134.171082,122.857033,120.981003,119.204140,120.278519,121.832245,122.666954,133.476868,152.724823,168.336395,181.898376,189.989288,188.295074,174.030609,150.716553,128.534714,116.675217,114.261993,109.245461,81.162827,64.609108,79.931419,94.286789,67.716545,31.104979,11.916546,9.931424,6.000013,6.899188,8.402494,7.333898,2.555380,0.556200,0.190083,0.030579,0.045455,0.050413,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.955000,4612745.550000,5394,3205,101.189270,152.047104,158.592560,147.303299,133.650421,122.774399,121.129768,119.443817,119.881836,119.675224,120.774399,133.063644,151.807434,168.402466,181.220657,189.633881,187.865280,173.799164,149.055359,127.733078,115.890099,112.336380,108.972748,81.749603,63.410763,78.080185,93.766136,68.642166,30.270267,11.785142,9.906631,6.676871,6.441335,7.535551,4.780176,3.200835,1.672732,0.037190,0.058678,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601825.755000,4612745.550000,5418,3205,101.322342,154.795883,160.845474,149.300018,134.019028,124.423988,122.762833,120.630600,119.886803,122.085144,122.531425,135.043823,153.895065,169.787628,183.019012,191.985962,190.142975,176.994217,149.903336,128.564484,119.300026,114.184319,109.118202,82.738037,64.085144,80.729774,94.357872,70.068619,31.448778,13.326466,9.919854,5.750425,7.827286,7.833898,6.908278,3.108271,1.027275,0.261158,0.290084,0.109091,0.000000,0.000000,0.000000,0.080992,1.342149,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.355000,4612745.550000,5441,3205,104.642998,153.239685,161.966965,149.322327,134.818192,124.578529,122.768608,120.760345,120.900841,123.636383,122.528938,135.487625,153.975220,171.743805,184.438019,192.520660,190.842972,177.719009,151.363647,130.628113,118.561996,114.074394,111.000015,81.702492,64.528946,79.942162,94.677704,68.380188,32.024815,11.490927,10.090928,5.633070,7.921503,9.210758,7.633070,3.223150,0.785126,0.082645,0.257852,0.050413,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.155000,4612745.550000,5455,3205,107.036377,153.977692,162.605789,149.242157,137.258698,127.936371,123.266945,122.324799,121.572731,123.779343,123.969429,135.680176,154.845459,171.845444,184.795868,193.209091,191.407440,177.440491,151.861984,129.134720,118.068604,115.134727,110.754562,83.142990,64.514900,81.754562,93.961174,70.126457,33.845474,13.132250,10.068615,5.960341,8.239685,8.928940,7.725633,3.020667,0.431407,0.124794,0.142149,0.000000,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.355000,4612745.550000,5476,3205,103.057869,150.239685,158.785141,148.487625,134.950424,124.363655,122.537209,120.826462,120.644646,123.685966,123.190102,134.429764,153.272751,170.595062,183.024811,191.702499,190.041336,175.719025,148.958694,129.727295,117.685966,114.057869,109.545471,82.198364,65.900841,80.669441,94.396713,69.537209,31.446299,12.057042,9.958697,5.479351,6.189269,6.772739,7.332245,2.145461,0.257852,0.034711,0.117356,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,7.165290,0.000000 -601841.155000,4612745.550000,5495,3205,114.179352,158.122314,160.031418,149.948761,137.552078,127.494240,125.510757,123.494232,123.824814,125.750427,126.138855,136.717361,156.105789,172.279343,185.857864,194.816528,192.626450,179.080994,154.229752,132.560349,121.064476,118.213234,113.345467,85.039680,67.742172,82.585136,97.411583,72.676056,34.485970,15.120678,10.304151,7.942163,7.751255,8.840510,7.684309,4.441331,1.405788,0.291736,0.318182,0.000000,0.117356,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,3.952066 -601845.355000,4612745.550000,5516,3205,103.421501,158.950439,158.148788,149.776886,136.033081,126.256203,123.140503,122.132240,122.561989,125.057861,124.264473,135.570267,154.264496,170.975235,184.776871,193.743820,191.611588,177.652908,152.876068,130.586792,118.281006,114.421501,110.545471,84.041336,65.429779,81.876053,95.314064,69.305801,31.950432,11.860349,10.049606,6.442988,6.513236,6.433069,5.837202,3.214884,0.549588,0.201654,0.400001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601852.955000,4612745.550000,5554,3205,102.043816,155.651245,159.766953,149.700836,138.246292,128.147125,124.733902,123.353737,123.494232,125.957039,126.494232,137.419846,156.874390,172.849594,185.998352,194.626450,193.494217,180.105789,153.882645,131.800018,120.023155,116.353737,111.436378,84.874397,66.684311,81.560349,94.857864,71.254562,33.064484,13.578530,10.130597,6.920672,7.868611,7.563651,8.866956,3.185132,0.406613,0.213224,0.148761,0.048760,0.047108,0.164463,0.000000,0.000000,1.147108,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.755000,4612745.550000,5573,3205,98.329765,152.182663,158.149597,145.761169,132.339691,122.438866,121.728119,121.199196,120.901672,122.860352,124.959526,135.810760,153.868607,171.405792,184.909927,193.306625,190.579346,177.579346,152.728119,130.190933,118.166138,114.852089,109.645477,81.232254,65.356216,79.281837,94.885147,70.174400,31.852085,12.398365,9.967789,4.008275,5.729766,7.782660,7.574394,3.164470,0.893391,0.406612,0.287604,0.139670,0.000000,0.160331,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.155000,4612745.550000,5590,3205,100.596710,151.985138,164.241348,151.315720,137.762009,129.084320,125.671089,124.720673,124.514061,125.819847,126.737206,138.092575,157.059509,173.819855,185.150421,195.133896,192.844635,179.125641,153.009933,132.001663,119.985138,117.662827,112.927292,84.249603,67.836380,82.464478,97.588448,70.307457,34.968613,13.685968,10.266135,7.278524,8.172745,9.008279,8.181005,3.453726,0.464464,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.155000,4612745.550000,5605,3205,102.341347,158.741333,160.005798,149.435547,137.485153,125.625641,124.187622,123.559525,122.311584,124.931419,125.245476,137.369446,156.542984,173.286789,186.542984,194.328110,193.104965,179.799179,153.964478,131.460342,120.286797,116.906631,111.790924,84.253731,67.154556,82.509926,97.270264,71.278542,34.187622,12.907455,10.162828,5.618192,8.486789,8.438857,7.240510,3.245462,1.409921,0.428100,0.047108,0.157025,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.355000,4612745.550000,5641,3205,104.690933,161.261169,164.690918,152.566956,137.881012,127.095879,125.071091,124.533897,123.277702,126.922325,126.616539,138.352081,155.575226,173.393402,186.343811,197.004974,194.343811,181.583481,156.170258,132.500839,121.426460,117.773567,113.327286,85.170258,67.889275,83.889267,97.360344,71.947121,34.971920,13.490928,10.302498,5.869432,6.872741,9.033071,8.534722,4.216537,0.423968,0.227273,0.000000,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.555000,4612745.550000,5657,3205,111.124809,162.240494,159.463638,150.802505,137.331421,127.000839,125.504974,124.686790,124.083481,126.992577,126.661995,137.612411,156.604141,173.959503,187.604126,196.215698,194.488434,180.967758,155.662003,133.546295,121.323151,116.389267,114.009102,87.083481,67.835556,81.901665,97.546295,72.959526,33.885143,13.646299,10.364483,6.238029,8.818199,8.297534,8.557865,3.349595,0.374382,0.884300,0.146281,0.172728,0.135538,0.000000,0.145455,0.000000,5.110744,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.955000,4612745.550000,5689,3205,100.816536,151.309937,160.802490,152.183487,140.398361,128.415710,126.754555,128.060333,127.415710,131.060333,131.696701,142.184311,160.159531,177.523163,190.431412,199.125626,196.505798,183.943817,158.382660,136.663635,123.076866,118.680168,113.936378,86.076866,66.647125,81.732246,95.219849,70.566956,32.285973,13.132249,10.357870,6.839682,8.750428,9.128939,10.104145,5.489264,2.323143,3.329755,2.917357,2.889258,3.021490,1.501655,0.604133,0.644628,1.322314,0.000000,1.118182,0.000000,0.000000,0.000000 -601883.155000,4612745.550000,5705,3205,114.962830,161.747955,162.161179,155.128113,139.491745,127.797539,126.400841,125.309937,125.747948,128.384308,128.962830,139.433899,157.508286,174.045471,188.756210,197.202499,194.342987,182.276871,157.086792,134.921509,122.342995,117.690102,114.409103,86.516548,69.632248,82.731422,97.954559,74.210770,32.962830,14.333076,10.400846,5.904143,9.182659,8.076048,7.491749,3.921496,0.892564,0.626447,0.044628,0.000000,0.000000,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.954546,2.487604,0.000000 -601889.555000,4612745.550000,5737,3205,121.690926,164.484314,167.740509,157.087616,139.781830,125.409927,121.013237,119.277702,120.186790,125.285965,125.327286,137.401672,154.988449,172.385132,186.765305,194.228119,193.806625,180.600006,154.905792,132.343811,120.542160,116.707458,109.963654,84.120682,64.980186,82.385147,93.757050,69.038040,32.409935,11.856216,9.996715,4.107449,7.952908,8.966958,7.603319,2.989261,1.012398,1.086779,0.516530,0.117356,0.161158,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.955000,4612745.550000,5769,3205,120.266968,163.534698,165.650406,154.245483,138.584320,128.055389,125.981010,124.981010,126.080185,128.303329,128.790924,139.270264,157.542999,175.377686,187.443802,196.303299,194.947922,182.774368,156.286804,135.088440,122.526466,119.195885,114.972748,85.914894,68.468613,82.609108,97.336380,73.055389,34.030602,13.472745,10.452085,5.210754,6.132244,6.904144,6.967781,2.273560,0.660333,0.250414,0.012397,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.955000,4612745.550000,5789,3205,121.829765,166.788437,163.069427,155.209915,140.689255,128.284302,126.375214,125.135544,124.499184,127.722321,127.201653,137.424789,156.193390,173.325623,185.573563,194.738846,193.986786,182.127274,156.689255,133.449585,122.540504,117.945465,112.309113,84.771919,67.466141,81.714066,96.185135,73.036385,33.780186,13.100017,10.209936,5.438028,7.853734,7.216541,7.304147,2.120668,0.782647,0.312398,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.373554,0.000000,0.000000,0.000000,0.000000 -601905.155000,4612745.550000,5815,3205,114.623154,168.541336,160.442184,154.425659,141.004166,129.764465,127.450424,127.086792,126.574394,130.466965,128.202499,138.632263,155.747971,173.690094,184.946274,195.293396,193.855377,181.524796,156.739700,133.095047,122.061989,117.557861,112.954552,85.714897,67.582664,83.119858,96.954552,73.144646,32.706631,13.246299,10.268614,4.361168,7.026462,7.574394,7.138855,3.457859,0.679341,0.440497,0.015703,0.000000,0.000000,0.000000,0.002479,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601921.155000,4612745.550000,5895,3205,121.662003,165.835556,167.141342,154.347946,138.959518,128.066956,127.298370,124.157875,122.678535,123.058701,123.281837,134.595886,153.562820,169.405792,181.653732,189.868607,188.488449,175.347946,151.215714,130.645477,119.215721,115.794235,109.463654,82.620682,67.645477,80.017380,94.199196,69.323158,31.984316,12.843820,9.951259,8.019023,6.975220,8.470262,6.186789,2.884305,0.847110,0.166116,0.071901,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601926.555000,4612745.550000,5922,3205,114.073570,163.846283,169.325623,157.994217,145.861984,132.614075,130.118210,127.341339,126.316544,127.159515,127.316544,138.870255,157.010757,173.676041,184.072723,193.957016,190.783463,176.514877,152.614059,132.498367,120.647125,116.076874,112.390930,83.523163,67.324814,81.118202,95.862007,69.886803,32.594234,13.395059,10.217375,8.160343,8.243815,8.025633,8.871913,6.001662,2.091739,1.042976,1.129753,1.390911,1.395042,0.333058,0.134711,0.435538,1.532232,0.000000,0.206612,0.620661,1.223141,0.000000 -601929.755000,4612745.550000,5938,3205,101.991760,170.021484,164.938843,152.038010,135.401657,122.955391,122.484322,121.021507,119.476051,120.732254,119.409935,131.831421,150.773544,167.583466,178.930573,187.823135,186.128922,172.021484,148.723969,126.765312,115.831429,113.533905,105.781837,77.500847,62.881012,77.071098,90.847954,65.228119,29.699192,10.995886,9.616549,7.430593,7.064477,6.831417,8.210758,3.592570,0.569423,0.241323,0.191737,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.914050,0.000000,0.000000,0.000000 -601933.355000,4612745.550000,5956,3205,118.107445,170.551270,170.311600,156.038864,141.311600,128.815720,128.567780,125.666954,124.212410,126.675217,124.881828,137.253738,155.138031,171.658707,183.344650,192.361176,190.840515,176.121521,154.187607,130.823975,120.129761,117.245461,110.881828,82.460342,66.923157,81.071907,95.179352,68.700020,31.493408,13.200016,10.080184,10.168611,7.595881,8.371914,7.047945,2.554553,1.108267,0.105786,0.266116,0.104133,0.046281,0.090083,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601937.155000,4612745.550000,5975,3205,116.487617,174.633057,165.004974,153.153732,135.608276,122.666130,122.633072,119.120674,119.674393,121.319023,120.765305,133.087616,150.905792,167.550415,178.955368,189.128922,187.864456,173.393387,150.302490,129.996704,118.401665,116.922325,111.145470,84.376869,67.244644,81.195053,96.418198,72.004974,32.376053,12.952909,10.104150,9.919022,9.139684,9.257864,7.926459,3.951248,1.371903,0.892564,0.528101,0.190083,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.355000,4612745.550000,5996,3205,114.470268,172.771912,164.424789,152.482666,136.482666,123.499191,124.804977,122.052910,122.391754,123.532249,121.838036,134.135559,152.267792,169.028107,181.218185,190.176865,188.590088,173.995041,150.457855,129.383484,118.763657,115.771919,110.036385,81.085968,65.581841,79.995064,94.052910,68.400017,31.350433,13.106627,10.003325,8.396709,7.386790,8.885964,8.720674,4.313232,2.510747,1.015704,0.837191,1.138844,0.057025,0.860331,0.000000,0.000000,1.257851,0.000000,0.000000,0.000000,0.000000,0.000000 -601944.355000,4612745.550000,6011,3205,136.592590,180.167770,171.027283,158.415710,142.399200,129.473572,127.729767,125.382660,124.837204,129.109924,125.258690,137.481842,155.382645,171.812408,183.556198,192.911575,191.258682,175.448761,152.903305,132.928116,120.911583,117.465302,112.663651,83.324806,65.985962,82.093407,94.952904,69.457039,32.878532,11.930596,10.242167,10.241338,6.798361,9.498362,6.220673,2.542982,0.606613,0.315703,0.117356,0.090083,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601948.555000,4612745.550000,6032,3205,117.075218,186.736374,168.116562,157.182678,143.091751,127.967781,127.521500,125.802490,125.414062,127.819023,125.695053,136.100006,154.389267,172.100006,183.265305,192.686783,189.430588,175.645462,151.728119,130.405792,120.257034,116.562820,111.009102,82.480186,67.207451,81.372749,95.405800,68.695053,31.331425,13.679358,10.091755,10.657868,8.047122,8.557040,7.826460,3.622322,0.620663,0.083471,0.194216,0.082645,0.000000,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.173554 -601952.155000,4612745.550000,6050,3205,125.633072,181.106613,171.040512,162.346283,146.470245,129.222321,128.619019,125.916534,126.635544,129.949600,125.123154,137.734711,154.569427,173.057022,184.470245,194.147934,191.023972,175.900009,153.395874,133.230576,122.668602,117.734718,112.627281,83.222328,67.164482,80.974396,94.974388,69.090103,31.941341,12.390100,10.238861,11.758694,6.857038,8.101666,9.061996,3.628933,0.959506,0.788431,0.246282,0.144629,0.176033,0.172728,0.000000,0.060331,0.000000,0.000000,1.016529,0.000000,0.000000,0.000000 -601956.755000,4612745.550000,6073,3205,129.042999,193.952072,175.034729,165.456207,145.960342,131.596710,130.100830,127.621498,128.481003,132.018188,127.505798,139.373581,157.720688,175.208298,188.224808,197.290924,194.514053,177.753738,155.522324,134.943817,122.323975,119.348770,114.927284,84.968605,68.051254,85.638023,97.472740,69.489273,33.526466,13.652083,10.447953,12.956215,9.486793,10.061172,7.892577,4.831415,0.676861,0.133885,0.109918,0.000000,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.355000,4612745.550000,6101,3205,128.895889,189.813232,169.028107,160.581818,142.557022,128.838028,126.953728,125.300835,124.681000,129.424805,124.069435,136.333893,153.573563,170.986786,184.201660,193.119019,191.540497,176.044632,153.499176,133.664474,121.061180,117.755394,113.218201,82.276047,67.251259,83.904144,95.829773,66.689278,32.077702,12.346299,10.292583,11.047123,6.342987,8.263651,8.469434,3.936373,0.446282,0.234711,0.056199,0.184298,0.023141,0.000000,0.000000,0.000000,1.520661,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.155000,4612745.550000,6145,3205,109.227280,165.665329,167.095078,155.144638,140.731415,130.086792,127.086784,125.301659,125.210754,124.913231,126.276871,137.053741,155.797531,170.260361,182.888458,191.219040,189.450439,177.293427,152.747955,131.657028,121.128105,116.995872,111.409096,84.285133,68.028954,82.731415,96.004143,68.888443,33.020679,11.778530,10.128119,7.711585,6.752907,7.986792,6.280179,2.007442,0.378514,0.000000,0.174380,0.115703,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.295041,0.000000 -601985.755000,4612745.550000,6218,3205,102.038033,158.662827,163.885956,154.538849,139.398361,128.406616,126.927292,124.704147,123.001671,125.191742,125.514069,136.266129,154.654556,169.646286,182.778519,191.365295,190.332245,177.720673,154.208267,132.547119,121.224808,117.580185,112.654564,84.224800,68.456215,84.307449,95.737206,71.142166,32.233078,12.913241,10.241341,7.204144,8.085965,7.426460,6.926459,2.715710,0.318183,0.078513,0.000000,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602009.555000,4612745.550000,6337,3205,108.216545,162.708298,166.171097,155.658707,140.633896,130.261993,127.113243,125.823982,125.749596,126.154564,126.567780,137.724808,156.204163,172.741333,184.435532,192.551239,190.840485,179.468582,156.270279,134.303314,124.047119,119.212410,113.972740,86.195877,68.443825,84.270256,97.865295,73.055397,34.625637,12.476051,10.361176,5.930592,7.376047,7.885965,6.989268,3.771909,0.447935,0.540497,0.055372,0.054546,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.155000,4612745.550000,6515,3205,121.904144,162.420670,164.961990,155.846283,144.259506,134.598358,132.829758,131.201660,130.127289,133.490921,132.730591,143.300827,160.738846,175.738831,187.986771,197.482635,195.375198,184.788422,160.143799,138.780167,127.069435,122.234718,116.581833,88.404152,72.098358,86.664482,100.408287,75.614891,35.270267,14.500844,10.598366,4.979350,8.042990,6.208278,6.530591,2.401659,0.913225,0.028099,0.104959,0.179339,0.059504,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602064.355000,4612745.550000,6611,3205,121.006622,165.815720,162.683487,156.510757,145.360336,137.014877,137.948761,136.188431,131.411575,134.618195,132.849594,142.990082,159.006622,176.031418,186.973557,197.188431,197.188431,186.626450,161.725632,139.742157,128.436371,124.130585,118.436371,89.262825,74.386803,88.492577,101.682655,76.955383,36.147125,14.440514,10.766961,4.485963,7.938032,7.478526,8.338857,3.509097,0.681820,1.189258,0.696695,0.258678,0.304132,0.093389,0.072727,0.000000,0.000000,0.000000,0.000000,0.947108,0.000000,0.000000 -602076.955000,4612745.550000,6674,3205,124.925636,182.165329,174.504166,162.082657,146.322342,133.793396,132.942154,130.528931,128.702484,130.793396,130.644638,141.801682,159.842987,177.388458,189.272751,199.355392,198.743820,185.429764,161.454559,139.123993,128.148773,122.933891,118.454552,88.876053,73.033073,88.388443,102.520676,75.586792,35.528942,14.059522,10.768614,6.346293,6.343817,8.611585,10.053733,2.857858,0.904134,0.279340,0.000000,0.000000,0.000000,0.232232,0.000000,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602083.955000,4612745.550000,6709,3205,105.827286,176.819016,174.471909,160.942993,142.852081,130.141342,130.405792,126.736374,125.240509,126.761169,125.761169,139.281830,158.777695,175.422333,186.339676,198.248779,195.637207,181.257034,157.265305,134.984314,123.695053,120.463646,116.100014,85.100021,69.992577,84.662003,103.579353,74.339691,35.447128,12.414066,10.554564,7.939682,6.954558,7.304146,8.758691,3.711578,0.486778,0.176034,0.304959,0.164463,0.000000,0.000000,0.000000,0.077686,4.328926,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.955000,4612745.550000,6739,3205,110.105797,176.816528,177.039673,164.155380,147.626450,134.659515,134.006622,128.816544,127.841339,128.676041,128.733902,141.461166,160.585129,178.477692,190.221497,200.006622,199.039673,184.395050,160.056198,139.204971,127.163651,124.122330,119.072739,87.824806,73.477707,88.122330,104.535553,75.981834,37.601677,14.576052,10.824813,13.062824,9.103320,9.523155,11.081833,5.423975,1.352895,0.940497,0.885126,0.003306,0.004132,0.253719,0.316530,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.755000,4612745.550000,6768,3205,104.377708,178.734726,178.007462,161.825638,146.048782,131.990921,132.974396,129.866959,127.800842,129.552917,129.205811,141.371094,159.453735,177.817368,188.800827,199.255371,196.776031,182.833908,159.412415,138.081833,125.875229,122.957870,117.445473,88.032249,71.561180,86.701675,101.850433,75.131424,36.751259,13.768613,10.676879,9.684312,7.851256,8.930592,8.714889,4.361992,0.738018,0.238017,0.110744,0.000000,0.002479,0.000000,0.000000,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.955000,4612745.550000,6784,3205,106.179359,181.832260,177.121521,162.757874,144.427292,131.633896,132.080185,128.245468,127.030594,129.542999,128.055389,139.823990,160.088455,176.228958,189.427292,198.452087,196.766144,183.113251,158.658707,136.600830,125.030594,121.262001,117.518196,87.113243,71.700020,87.228943,102.270264,74.394234,36.642166,13.047953,10.683491,9.504147,7.334726,6.588444,7.907453,4.467776,0.786779,0.192562,0.156199,0.127273,0.086777,0.000000,0.000000,0.086777,0.000000,0.000000,1.702480,0.861984,0.000000,0.000000 -602103.755000,4612745.550000,6808,3205,110.684311,185.882645,177.915710,163.543808,145.882645,132.444641,133.238037,129.122330,127.940514,129.320679,128.461166,141.370255,160.576859,178.304138,189.667770,200.155380,197.543808,183.733887,160.386780,137.758682,126.626457,123.527290,117.890915,88.081009,72.287621,89.221504,103.700836,75.585136,36.295887,14.323985,10.717374,10.293403,9.010759,9.309934,10.626461,3.991743,1.088432,0.266943,0.197522,0.073554,0.044628,0.000000,0.091736,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.955000,4612745.550000,6834,3205,124.551262,185.625626,176.997528,164.576065,145.724823,133.419022,131.774384,128.509933,128.402496,130.609100,128.311584,141.055405,160.385971,177.518188,189.848770,199.675217,197.898361,182.790924,158.460358,137.551270,126.253731,122.542984,118.063644,87.666954,72.997536,88.253731,102.790916,75.328125,35.088448,15.275224,10.733075,11.581834,8.229766,8.896707,9.553733,3.748769,0.317357,0.449588,0.041322,0.127273,0.065289,0.000000,0.036364,0.000000,1.108265,0.000000,1.180992,0.000000,0.000000,0.000000 -602112.955000,4612745.550000,6854,3205,110.833900,169.404129,168.577682,158.594223,143.561157,130.668610,127.643814,125.090096,122.809105,125.751251,124.387611,134.263641,151.090103,168.602478,178.825623,188.957855,187.354553,173.957855,149.933075,129.817368,118.891747,116.602493,111.081833,85.189270,70.048782,84.577705,98.048775,71.883492,35.040520,13.552909,10.098366,5.404143,7.189272,7.176871,7.057864,3.615708,0.637192,0.506613,0.098347,0.142976,0.003306,0.211571,0.700827,0.000000,0.000000,0.000000,0.000000,0.000000,2.086777,0.000000 -602119.955000,4612745.550000,6889,3205,114.635559,162.982651,162.866943,154.395874,140.709915,129.271912,126.271912,123.172737,121.362823,124.561165,122.701668,133.007446,148.850418,165.123138,177.511566,185.990906,185.751236,173.238846,149.032242,127.734718,119.230591,115.114891,109.081833,85.511589,69.271919,84.809113,94.114899,69.941345,32.519855,12.866960,9.916549,5.937201,7.032245,5.317364,6.409929,3.128104,0.000000,0.455373,0.101653,0.141323,0.000000,0.065289,0.238843,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.555000,4612745.550000,6907,3205,97.534729,165.071915,166.584305,157.559509,143.237198,130.262009,126.947952,124.939690,123.782661,126.493408,124.468613,134.385971,151.468597,168.633896,178.642151,188.898361,186.733063,174.352905,150.832245,130.410767,119.741341,115.832253,110.700020,85.518196,69.708282,86.526466,96.666962,73.005806,33.162830,13.306629,10.063655,5.727283,8.312410,7.176044,7.545466,3.725626,0.983473,0.312397,0.142976,0.240496,0.151240,0.142149,0.210744,0.000000,0.000000,0.000000,1.256199,0.000000,0.000000,0.000000 -602129.555000,4612745.550000,6937,3205,98.092583,160.085968,164.573578,157.358704,139.722336,127.201668,123.970261,119.804977,117.284309,119.871086,116.747124,126.986786,145.391754,161.763657,172.490921,182.747131,180.168610,169.408279,147.780182,128.862823,115.813232,111.681000,107.309105,80.003319,65.788452,84.077698,99.986786,75.284309,34.135555,14.712415,9.755391,6.065299,7.937206,8.924807,5.902491,2.480996,0.899176,0.271075,0.000000,0.067769,0.229752,0.000000,0.157025,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.355000,4612745.550000,6976,3205,89.061165,155.499176,161.309097,152.829758,136.606613,125.457855,121.424797,118.077690,115.871078,118.052895,115.738846,127.102486,143.970245,161.102478,171.714050,181.879349,181.631409,167.366943,147.664459,127.143806,116.160332,112.251244,106.672729,79.333885,64.780182,82.920670,99.127274,75.242989,34.204151,13.163653,9.697540,6.573565,8.440511,7.532245,7.619019,2.851244,0.842150,0.239670,0.442150,0.060331,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.955000,4612745.550000,7009,3205,104.538033,142.190918,159.843811,149.058685,136.984314,124.645470,122.306625,118.612411,115.529762,116.422325,115.901665,127.331421,145.430588,159.554565,172.356216,181.852081,179.050430,168.381012,146.876877,126.744644,115.447121,112.000839,105.918198,79.017380,65.075226,83.108284,100.562820,76.207451,35.992584,13.903322,9.628944,5.143811,8.112411,6.423150,7.131415,2.944635,0.414877,0.215703,0.106612,0.229753,0.069422,0.156199,0.337191,0.671901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.155000,4612745.550000,7025,3205,90.350426,149.276031,155.821487,149.738846,134.127274,123.953720,118.813232,115.234718,114.557030,113.771912,114.160332,124.937202,142.689255,158.152084,170.457855,178.598343,178.747116,166.424820,145.300827,125.110756,113.821487,109.838020,103.581818,77.871086,63.813244,80.573563,98.160339,73.482658,33.738865,11.264479,9.416547,5.320670,7.216545,6.552079,7.613236,3.332237,0.447935,0.163637,0.000000,0.120661,0.000000,0.061157,0.000000,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,2.186777 -602151.355000,4612745.550000,7046,3205,104.008278,147.950424,159.586792,149.066132,132.991745,122.074387,118.471085,116.181824,114.033066,114.553726,114.082649,125.380173,142.140518,158.165298,170.074402,179.413239,177.504150,166.644638,144.735550,124.966949,114.537201,108.834717,103.000008,77.644646,62.933903,80.834717,97.677696,73.586792,32.826466,13.086794,9.363655,5.188438,7.184312,6.287615,5.271913,2.685956,0.433885,0.184298,0.045455,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602157.555000,4612745.550000,7077,3205,88.351257,147.958694,161.900848,148.958694,135.909103,125.396713,122.247948,118.785141,116.619850,117.322327,117.297539,127.983490,145.603317,160.247955,171.809937,182.876053,181.710754,169.512405,147.785141,127.247955,117.033073,112.933899,107.909103,80.735550,65.016548,82.760345,97.057869,72.619858,33.727291,12.321504,9.809937,5.086786,7.388444,7.570260,6.739680,2.945458,0.666117,0.014877,0.090909,0.047108,0.000000,0.000000,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.555000,4612745.550000,7097,3205,95.566963,156.054581,163.467789,153.748795,139.608292,129.616547,125.162003,122.666130,121.757034,121.823151,123.236382,133.385147,149.360367,166.261169,178.401672,187.674393,188.335556,176.310760,153.484329,132.434738,122.442986,118.038033,112.600014,86.732246,70.591759,87.261177,99.790100,74.128944,36.054562,14.313243,10.236382,7.500838,7.452081,9.465302,9.806626,3.566122,0.562812,0.066943,0.094215,0.138843,0.196694,0.000000,0.764464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.355000,4612745.550000,7131,3205,97.585968,144.247131,158.627289,151.660355,137.875229,126.742989,125.346291,121.759514,119.974388,120.982658,122.759514,132.577698,149.883484,166.362823,177.338043,188.701675,187.164490,176.561172,152.321503,131.759521,123.197533,117.701668,112.536377,86.693405,71.470268,86.949608,99.023987,71.627289,33.668613,14.675226,10.230597,6.102491,7.359519,6.395879,7.681005,2.567773,0.443803,0.386778,0.114876,0.309918,0.001653,0.000000,0.366942,0.004959,0.000000,0.000000,0.000000,1.643802,1.795868,0.000000 -602178.955000,4612745.550000,7184,3205,91.981010,158.329773,163.742996,154.362823,141.751236,131.313232,127.205803,125.395882,123.767776,124.453735,125.660339,136.048782,153.362823,168.751266,179.569443,190.205811,191.032257,178.379364,156.395889,135.478531,125.924805,120.701668,116.354568,89.015724,73.701675,89.693405,99.933075,75.751259,35.462002,13.608282,10.577706,7.530591,8.220675,7.156211,8.437202,3.733891,0.719010,0.113223,0.165290,0.032232,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602184.555000,4612745.550000,7212,3205,77.028938,146.400848,161.995880,151.475235,136.417374,126.607452,122.946297,120.574394,118.400841,119.814064,120.681831,130.318192,148.690109,163.128113,176.301666,185.904968,185.822327,173.367783,150.921524,131.202499,120.268608,115.995880,110.227287,84.376053,69.004150,85.417374,101.979355,72.202492,34.921505,13.394233,10.020679,5.184309,9.385139,6.599185,8.569435,2.661991,0.338845,0.042149,0.187604,0.340497,0.000000,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602188.755000,4612745.550000,7233,3205,67.589279,148.663666,159.465317,152.143005,136.886795,127.109932,123.266960,120.118195,118.333069,119.093407,119.738029,130.812408,148.275223,163.614075,175.547958,184.581009,183.176056,172.614075,151.209106,128.754562,118.523155,115.101669,109.027290,83.415718,68.333084,85.878525,100.828941,74.258698,33.490101,14.952910,9.911589,5.743812,7.585966,5.947944,7.549599,3.100007,0.536365,0.246282,0.178513,0.176034,0.102480,0.183472,0.367769,0.279339,0.000000,1.480992,0.000000,0.000000,0.000000,0.000000 -602195.755000,4612745.550000,7268,3205,83.297539,144.404968,161.570251,150.388443,135.181824,124.214882,119.479347,116.008270,115.355377,115.768600,116.082649,126.595047,144.438034,160.214874,171.942154,180.446274,179.652893,167.289261,146.214890,126.685959,113.033066,110.322319,104.181824,79.082664,63.074402,83.942162,98.008270,72.785141,33.462830,11.206628,9.471093,4.939680,7.115717,7.896708,7.805797,2.512403,0.670250,0.178513,0.000000,0.057025,0.107438,0.000000,0.254546,0.000000,0.000000,2.034711,0.000000,0.000000,0.000000,0.000000 -602202.555000,4612745.550000,7302,3205,85.800026,146.907440,162.039673,149.560333,133.370270,124.866127,120.444641,116.386795,115.345467,115.485962,115.395058,126.295883,144.866119,159.477692,171.105789,179.981827,178.204971,165.642975,143.973557,124.552078,112.882660,109.072739,103.163651,78.362000,62.766964,82.444649,97.312416,72.849602,34.659527,13.099191,9.378531,5.117366,6.902493,8.097533,7.576872,3.261163,0.480167,0.158678,0.085951,0.126447,0.000000,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602208.955000,4612745.550000,7334,3205,85.078522,143.673584,157.128113,149.202499,136.219025,124.367775,119.979347,116.260338,114.483482,114.954552,114.590919,124.450424,143.590942,158.739685,169.739685,179.161163,176.962814,165.144638,143.830612,123.351250,111.582649,107.789261,102.590919,77.045464,62.235554,80.053726,95.962814,72.202492,35.103321,12.108282,9.326466,4.450423,6.480180,6.378526,6.838855,3.064471,0.720664,0.232232,0.043802,0.135538,0.101653,0.000000,0.355373,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.955000,4612745.550000,7369,3205,87.233910,151.200851,156.771103,148.085144,132.308273,121.994232,117.324799,113.663658,111.597527,111.109924,109.514885,122.258690,140.374405,156.349609,167.820679,176.407455,175.043823,161.357880,140.721512,119.919846,108.870255,104.994225,99.027290,72.903328,59.357868,77.440521,96.514893,71.589279,32.134727,12.626463,9.002499,5.700009,6.883485,6.040507,4.774390,3.731412,0.957853,0.465290,0.175207,0.466943,0.102480,0.117356,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.755000,4612745.550000,7418,3205,80.657867,153.914047,160.682678,147.459503,131.087616,122.038033,118.360344,111.814888,109.484314,109.004974,109.517365,121.145470,138.442993,155.004974,165.864487,177.128922,175.203323,161.649612,140.021500,119.881004,108.335548,103.616539,97.054558,69.740509,56.236389,76.352081,97.285965,72.955383,33.637211,12.047124,8.823159,7.229764,6.099186,7.973567,5.858689,3.409925,0.633886,0.119009,0.111570,0.115703,0.000000,0.000000,0.182645,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602230.955000,4612745.550000,7444,3205,80.658707,154.782669,159.055374,148.047134,131.724808,120.014061,116.419022,112.650421,109.278534,108.377701,106.947952,120.014069,138.055405,156.361160,166.179352,176.228912,174.980988,160.435547,140.576065,119.576050,106.972748,101.774399,95.336380,70.270264,56.030598,75.724808,99.311584,73.716545,35.600845,12.415720,8.666961,6.638026,6.701667,7.014063,7.343813,3.095876,0.885953,0.198348,0.000000,0.104133,0.000000,0.053719,0.162810,0.000000,2.228100,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.955000,4612745.550000,7459,3205,96.545471,157.231415,162.090927,149.826462,134.157043,121.281006,117.876053,113.454559,111.289276,111.991753,110.305801,122.157043,140.950424,156.512405,169.694229,179.338852,177.322327,163.793411,140.925629,122.545471,109.958694,104.082664,98.000008,71.446297,58.115723,78.595055,97.438026,73.537209,34.884319,14.061174,8.909110,4.997531,7.724809,8.942162,8.869433,3.684305,0.129753,0.052893,0.044628,0.225620,0.000000,0.125620,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602237.155000,4612745.550000,7475,3205,88.844650,153.753708,161.596695,150.332230,135.365295,123.910751,120.530586,115.745461,114.100838,113.803314,112.894226,124.976868,144.224808,159.679337,171.332245,181.679352,179.447937,165.414871,142.679352,122.852905,111.481003,106.952072,100.563644,74.332245,60.175228,79.348770,97.770256,73.919029,35.695889,13.748778,9.142167,6.795880,8.654560,6.347947,8.333897,2.378520,1.017357,0.547109,0.336365,0.064463,0.099174,0.073554,0.182645,0.189256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.355000,4612745.550000,7491,3205,83.958694,149.120667,159.385132,150.310760,135.038025,123.029762,120.327286,115.575218,112.690926,113.137199,111.905800,124.533897,143.401672,160.847946,171.426453,181.219849,178.790100,165.062820,143.434723,122.790092,111.633072,107.095879,100.145470,74.492577,59.608280,77.608276,98.409927,71.996704,33.525639,13.567785,9.104151,4.687613,6.236377,7.049600,6.189268,2.271080,0.561159,0.315703,0.407439,0.119835,0.107438,0.000000,0.410745,0.210744,0.000000,0.000000,0.000000,1.813223,0.000000,0.000000 -602242.955000,4612745.550000,7504,3205,93.380180,155.165283,163.157028,151.619827,136.867767,122.512398,120.413223,116.471077,115.314049,114.727280,115.454544,125.603302,145.892563,161.743805,173.140503,182.057846,182.272720,167.785126,143.851242,124.214874,112.090919,108.504143,102.727280,77.297539,62.099194,79.231422,98.008263,75.024811,35.107460,12.428944,9.338862,7.638028,7.761175,6.771085,7.334723,2.340501,0.769423,0.110744,0.000000,0.156199,0.032232,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.355000,4612745.550000,7526,3205,101.434723,153.071091,162.699188,151.633072,134.649597,123.930588,121.360344,116.393402,114.145470,113.765305,112.104149,125.575218,144.310760,161.302490,171.823151,182.004974,180.021500,166.905792,143.707428,122.575218,110.757034,106.955383,100.054558,74.938858,60.393406,78.757034,97.211586,73.261169,32.277706,13.590926,9.095887,8.023152,7.684312,8.343815,6.833896,2.628931,1.736366,0.219009,0.184298,0.277686,0.111571,0.057851,0.281818,0.211570,0.000000,0.000000,0.000000,0.701653,0.000000,0.000000 -602254.355000,4612745.550000,7561,3205,86.391754,158.325638,161.747131,149.375229,132.995056,120.606628,118.763657,114.904152,112.226463,112.647957,112.061180,123.945473,142.557037,159.714066,171.408279,181.846298,179.838043,164.028122,142.408279,122.796715,111.061180,106.251259,99.036377,73.912415,59.110764,78.036385,97.606621,72.747124,30.986795,11.859520,9.003325,6.538855,7.781832,6.451250,7.298359,2.374385,1.037192,0.116529,0.135538,0.052893,0.000000,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.955000,4612745.550000,7584,3205,87.364487,158.075211,162.852066,150.281815,134.571075,120.397522,117.951248,114.496696,111.984299,113.108269,112.480171,124.372734,142.356201,159.819000,172.455368,181.587631,180.447144,164.951233,142.843796,122.868599,111.736366,106.339676,100.645470,72.562820,58.909943,75.364479,96.744644,70.769440,33.124813,12.838861,9.149605,8.140508,7.366131,7.412409,7.499186,2.229757,0.489257,0.040496,0.000000,0.175207,0.034711,0.057025,0.149587,0.317356,0.000000,0.000000,0.000000,0.000000,1.819008,0.000000 -602264.355000,4612745.550000,7611,3205,93.672745,161.441345,158.722336,150.441345,133.838028,120.606621,118.185135,114.887611,112.581833,112.672737,111.532242,124.523979,143.143814,160.152084,172.143814,183.110764,181.218201,165.292587,143.788452,123.300835,111.457863,107.557037,100.945465,73.871094,60.672745,78.218193,99.945465,74.061165,34.730598,13.292580,9.176879,8.214061,7.420674,7.176046,8.104145,2.878517,0.273555,0.188430,0.129753,0.213223,0.210744,0.000000,0.056199,0.289256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602267.755000,4612745.550000,7628,3205,78.603333,163.074417,159.074417,151.876068,135.975220,121.859512,119.462814,115.148766,113.644638,114.165298,111.669426,125.016541,143.843002,161.818207,173.512436,184.983505,182.578552,166.809952,145.595078,125.694221,113.669426,109.966949,102.181824,75.148773,60.247955,80.148773,100.619843,74.305801,36.277702,14.381837,9.289276,8.582657,8.220676,7.385963,8.118195,3.831411,0.397522,0.160331,0.072728,0.061984,0.000000,0.000000,0.603306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602272.755000,4612745.550000,7653,3205,83.291756,165.944672,161.804169,149.357864,130.341339,117.605804,115.547958,112.217377,109.870270,110.985970,108.060356,122.010765,139.225647,156.258698,168.828964,180.556244,180.118225,162.374420,142.448761,121.440521,109.754570,104.895065,100.027283,72.415726,56.093410,75.043823,96.539673,72.217377,32.390926,11.347952,9.093408,7.245464,3.485964,6.458693,5.323150,3.676040,0.452069,0.000000,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602277.755000,4612745.550000,7678,3205,95.553734,160.694229,159.231415,152.338852,134.570267,120.157043,119.768608,115.008278,112.785141,115.371918,110.694229,124.595055,141.033081,159.247955,172.016541,183.223160,179.826462,164.132248,144.669434,124.710762,112.851257,107.925636,102.000015,75.165306,59.429768,79.809937,99.743820,74.710762,35.894234,11.511586,9.272746,8.009103,7.237204,7.262823,7.808275,3.659512,0.176861,0.430579,0.163637,0.031405,0.000000,0.063637,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.955000,4612745.550000,7704,3205,96.897537,168.872742,164.162003,151.393402,132.748779,118.211586,116.409927,114.137199,110.277702,112.971916,108.492577,121.624809,139.459518,156.203323,170.302490,180.492569,178.831421,162.533890,141.343811,122.137199,110.029762,105.062820,99.600014,71.542160,57.657871,77.211586,97.285965,72.195053,33.699192,10.420676,9.054564,8.281003,7.480178,6.099185,6.366126,3.011575,0.739671,0.035537,0.125620,0.235538,0.127273,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602287.355000,4612745.550000,7726,3205,106.729767,166.473572,161.729782,153.217377,133.341339,120.465294,118.440506,112.738029,111.126457,114.093391,109.366127,121.514885,138.895065,157.250443,169.324814,181.060349,177.374405,161.977707,143.200851,122.638855,110.531418,106.630592,99.754562,71.862000,58.754562,78.845467,100.432243,73.564476,34.432251,13.831422,9.068615,10.435549,7.082659,7.693402,8.309930,3.829759,1.258681,0.491737,0.272728,0.000000,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602290.155000,4612745.550000,7740,3205,114.133072,168.587631,159.108292,151.009109,131.752899,119.438858,116.381004,112.290092,111.240509,112.852081,109.356209,121.604149,139.000839,157.141357,169.496719,180.546310,178.761185,161.620697,142.835556,123.182655,110.215714,106.794228,101.100014,72.620674,59.223984,79.546295,99.835548,74.124809,34.372749,12.682663,9.190928,8.133896,7.461172,7.900015,9.099188,4.659513,0.656200,0.363637,0.042975,0.164463,0.184298,0.000000,0.000000,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602294.555000,4612745.550000,7762,3205,122.820679,165.713226,159.688446,150.994232,132.630600,117.704971,115.390923,111.572739,110.589272,114.192574,109.233902,120.928116,138.283493,156.853745,168.787613,179.374390,178.109924,161.481842,141.399200,122.035553,110.523155,105.200844,99.481842,71.630600,57.266964,77.308289,96.994240,72.242172,33.399193,12.464480,9.043820,9.297534,7.341337,5.995879,7.600839,3.585131,0.261984,0.264464,0.000000,0.152893,0.110744,0.000000,0.357025,0.138843,1.416529,0.000000,0.000000,0.000000,0.000000,0.000000 -602301.755000,4612745.550000,7798,3205,113.166130,165.000824,162.645447,154.438843,133.199188,120.901665,117.637199,114.009102,111.959518,115.934723,109.711586,121.794228,138.959518,155.752884,169.058670,179.380981,176.281815,160.223969,141.166107,121.124809,109.356209,105.744644,99.190926,71.033897,58.331421,77.918198,96.885139,69.852081,31.777706,13.281834,9.017373,11.040508,7.076873,6.640508,6.861170,3.290915,0.666945,0.239670,0.000000,0.198348,0.000000,0.185124,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602312.955000,4612745.550000,7854,3205,143.147949,153.164490,140.255386,129.412415,113.974388,104.114891,97.701668,96.073563,93.255386,94.767776,92.635551,104.627281,122.949600,138.528122,150.842163,160.842163,158.924820,148.850433,130.610748,111.263649,99.470261,95.635551,91.354553,64.139687,48.974400,68.561165,93.428940,70.404152,31.123159,10.605803,8.304978,9.319019,7.800838,6.700837,6.876046,4.029761,1.165292,0.746283,0.086778,0.352893,0.000000,1.397522,0.253721,0.523142,4.185124,1.919835,6.978513,0.000000,0.000000,0.000000 -602318.955000,4612745.550000,7884,3205,84.514885,86.338036,77.681831,66.652084,53.543819,46.733902,42.481834,40.115719,40.360348,40.087620,42.271088,52.709938,68.807457,83.878525,95.791756,107.676872,113.406624,111.828110,104.960342,92.941345,84.453735,84.170258,82.345459,55.795887,34.559521,62.871094,117.423149,115.148766,64.859528,11.642162,7.485969,7.994226,16.435555,28.758696,43.195885,31.966131,2.656204,0.422315,0.085951,0.000000,0.010744,0.001653,0.062810,0.000000,2.228100,3.545455,0.000000,3.647108,0.000000,7.575207 -601507.555000,4612735.550000,3827,3255,147.512436,126.404968,104.789276,88.236374,74.339691,65.681007,60.401669,57.716545,58.482658,60.732250,61.441338,70.430588,85.600014,99.248779,110.229767,118.651253,120.097534,113.089272,98.957039,85.262825,76.609932,76.766960,72.072739,50.525631,33.895058,54.461170,81.528938,67.553734,31.912415,8.289268,6.552084,18.512413,15.838032,23.600016,34.548779,37.301670,18.319847,14.428107,14.768603,10.274384,12.669426,14.804964,16.716534,18.170252,46.608269,39.280174,26.280172,28.009924,34.600834,52.957027 -601510.555000,4612735.550000,3842,3255,158.638031,147.018188,125.786789,111.952072,97.282661,86.522324,83.671082,81.638031,80.844643,83.332253,84.241333,94.158699,112.447945,128.464478,142.018204,152.505798,153.158691,143.985138,122.712410,103.852905,94.084312,92.423157,86.745476,60.398365,42.423157,59.481010,75.985153,56.307457,26.613243,9.337204,7.885969,12.716545,11.328115,12.691753,14.294231,13.740511,4.748769,1.640499,2.041326,1.133060,1.160333,1.001655,1.347109,0.944631,24.635542,27.155376,17.868599,12.582648,16.175209,22.966946 -601514.355000,4612735.550000,3861,3255,173.911575,152.729782,131.572754,117.481834,103.159515,92.638855,89.564476,85.374405,86.308289,87.903320,88.663651,99.746292,118.523155,134.928116,148.853745,159.167786,159.192581,149.795883,127.043816,106.514893,96.010757,92.845467,87.390930,60.795887,44.184315,59.076878,73.671921,54.589275,25.209110,10.014063,7.944647,14.046298,10.021502,12.648776,13.152082,10.677699,3.574387,1.531408,0.856201,0.204959,0.352067,1.174383,0.219009,2.132235,28.314054,12.066117,9.012399,7.308267,10.275209,14.744629 -601519.155000,4612735.550000,3885,3255,171.947113,152.740509,136.930588,123.608276,108.624809,99.682655,94.666130,93.517365,94.203316,95.418198,97.327286,107.963646,125.087616,142.484314,155.963654,166.393402,166.690918,155.600006,132.583481,112.459518,102.748772,97.980179,92.145470,65.170265,49.368614,62.368610,77.781830,55.715725,26.703325,11.123982,8.376880,10.290924,9.464477,10.133072,11.187620,6.059514,3.090916,1.194218,1.152070,0.847935,0.902482,0.724795,1.152068,1.265291,15.164465,18.517359,4.428100,6.279340,7.352894,12.052068 -601524.955000,4612735.550000,3914,3255,136.072739,142.312424,137.155380,122.568611,109.502495,100.337204,97.155388,95.114067,94.618195,96.138855,97.576874,109.089272,127.023155,142.568604,155.907440,166.254547,166.477692,156.428101,133.155396,111.733902,101.923981,96.833069,91.618195,63.981842,48.081013,60.998371,73.857864,54.791759,23.225641,8.990926,8.328945,7.862823,7.519020,8.061171,9.248776,6.673563,1.653724,0.670250,0.261986,0.313224,0.602480,0.252066,0.651242,0.842150,6.254546,8.940497,5.727274,6.144630,6.751240,1.866942 -601531.955000,4612735.550000,3949,3255,139.843811,145.631409,137.185120,128.581833,114.003326,104.664482,99.937210,98.821510,97.953735,100.548782,100.862831,111.573570,129.507462,144.945465,157.606613,167.590088,167.061157,158.375214,135.135559,113.928947,101.978531,98.457870,93.490929,66.433083,49.565311,63.119026,75.061180,56.755394,25.137211,10.613239,8.499193,8.276046,8.285964,8.166130,9.690097,6.788438,1.933890,1.219838,1.121489,0.687604,0.105785,1.059505,1.071903,0.299174,9.257853,3.367769,6.356199,4.990911,6.143803,1.817355 -601538.955000,4612735.550000,3984,3255,132.277695,142.224823,140.935562,129.290924,113.249603,101.976875,99.076050,97.241341,95.985138,98.687622,99.604973,109.547127,127.952087,144.307465,155.910767,166.588455,166.257874,155.447952,132.638031,110.687622,101.059525,96.166962,91.018196,64.307457,47.051258,62.018200,76.340515,55.720680,23.040518,8.958694,8.274400,7.245467,8.090922,7.356213,8.927288,4.842983,2.063641,0.733060,1.347111,1.258679,1.181820,1.275208,0.701654,0.608265,3.639670,4.373554,6.124794,4.104133,5.293389,5.537190 -601548.755000,4612735.550000,4033,3255,119.804146,152.433075,140.738861,131.862823,118.003319,106.647942,103.614899,101.755394,101.276054,104.176872,104.433067,115.019844,132.780182,149.135559,161.242996,170.276047,170.928940,160.623154,138.920685,116.449600,105.854553,101.424805,94.945473,67.532249,50.780186,66.515724,80.871094,60.871094,26.053738,10.114893,8.631424,6.755382,8.145467,7.981005,7.198360,3.544634,0.669423,0.104960,0.145455,0.460331,0.191736,0.389257,0.419836,0.997521,4.220662,3.161158,2.982645,3.417356,4.978513,0.000000 -601555.755000,4612735.550000,4068,3255,137.597549,177.382645,160.556213,151.010773,130.547943,117.919846,116.531418,114.052078,113.928116,118.961174,114.085136,125.126457,141.919861,159.118210,172.564468,183.853729,179.043808,164.820679,144.944656,125.581009,114.440514,109.787621,104.754562,75.490097,58.969440,77.019020,87.531418,63.655392,30.134729,11.438862,9.523160,12.880181,8.368610,8.866130,7.825634,4.035544,0.235538,0.144629,0.013223,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.955000,4612735.550000,4084,3255,132.516541,179.243805,157.731400,150.657028,133.409103,117.673569,117.904976,114.450432,114.533073,119.433899,114.863655,126.053726,142.632233,160.508270,173.301651,183.962814,180.417358,166.070251,145.227280,126.111580,115.268608,110.896713,105.500008,76.210762,61.177704,75.747955,90.012413,65.012413,30.847126,12.845472,9.590928,11.774397,8.008279,8.329766,10.346295,3.402486,0.329753,0.342976,0.086777,0.054546,0.116529,0.019835,0.000000,0.000000,0.000000,0.000000,1.147108,0.000000,0.000000,0.000000 -601562.755000,4612735.550000,4103,3255,119.823158,178.591751,154.715714,148.748779,130.963654,116.682663,115.682663,113.186798,113.277710,118.277710,113.550438,124.806633,142.211578,159.310760,171.352081,181.285965,179.823151,165.831421,143.409927,125.269440,113.120682,109.831429,103.872749,74.757050,59.128948,74.732254,88.533905,63.484318,29.955391,11.830597,9.442995,10.477701,7.509933,9.198362,7.766956,2.882652,0.694216,0.214877,0.054546,0.000000,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.755000,4612735.550000,4118,3255,118.393410,175.723984,156.790100,147.889282,130.294235,116.583504,115.608292,113.856224,113.352097,117.186806,112.922340,125.509117,142.566971,159.905792,172.128937,181.996704,179.550430,166.203323,144.881027,125.343834,113.790115,110.476059,103.963669,76.195061,60.566959,75.608284,89.798370,64.757042,30.360348,12.663654,9.451259,12.081834,7.747950,9.281007,6.986789,3.346287,0.368596,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.555000,4612735.550000,4132,3255,111.387619,177.734711,155.081833,147.933075,131.329773,116.478531,116.172745,113.065308,112.850433,116.387619,113.007454,124.098366,142.164490,160.428940,172.090103,181.652069,179.189255,166.057022,144.181015,125.007454,113.139687,110.660347,104.536377,75.701668,59.123158,75.610764,88.379356,64.222336,29.263659,12.177703,9.503325,10.261997,7.590097,7.413235,8.344642,2.811577,0.463637,0.361158,0.000000,0.005785,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.155000,4612735.550000,4155,3255,106.895058,170.820663,154.903305,146.176056,130.357864,116.101669,116.605797,113.622330,113.473572,116.506622,113.589272,125.225632,142.886795,160.200851,172.333069,182.126450,179.779343,167.176056,144.275223,125.076874,114.490097,111.300018,104.300018,75.019020,59.870266,75.473572,89.167786,65.184319,30.415722,11.904977,9.481838,10.879354,6.774395,8.971916,7.496707,2.478518,0.543803,0.228100,0.233059,0.110744,0.184298,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.355000,4612735.550000,4181,3255,111.556221,166.759521,153.825638,144.552902,130.015717,116.139687,116.338036,112.602501,111.561180,115.065308,113.073570,125.519852,144.023972,159.362823,171.561172,181.734711,179.982651,167.139694,145.048767,124.701675,113.280182,109.858696,104.445473,74.718201,59.371094,74.139687,87.933075,65.065308,28.825640,11.786794,9.495061,10.396708,6.523982,8.275221,9.161997,3.733891,0.314051,0.000000,0.046281,0.052066,0.159504,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.913223,0.000000,0.000000 -601581.555000,4612735.550000,4197,3255,101.242996,163.217361,154.432236,144.415710,128.820679,115.200844,115.019020,112.944641,111.936378,113.977699,111.771088,124.547951,143.002487,158.828934,171.688416,180.597534,179.589264,166.440506,143.911575,123.647125,112.795883,109.275230,103.390930,74.209114,59.316551,74.019028,87.250427,65.250435,29.035559,11.350431,9.399193,9.579353,6.975222,7.396708,6.266128,3.067775,0.370249,0.182645,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.212397,0.000000,0.000000,0.000000,0.000000 -601585.755000,4612735.550000,4218,3255,106.885147,166.033890,156.736374,143.595886,131.314896,118.000839,116.843811,114.587616,112.918198,115.604149,114.033897,125.909927,144.662003,161.662003,173.926453,182.752899,181.025635,169.215714,145.959518,125.182655,114.397537,111.033897,105.281830,76.810768,60.091755,75.083488,90.100014,66.306633,30.339689,12.538034,9.571094,9.638030,7.590924,8.659518,8.690096,2.847941,0.396695,0.044628,0.081818,0.000000,0.000000,0.012397,0.000000,0.000000,1.181818,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.555000,4612735.550000,4237,3255,89.371094,163.185120,157.036362,146.904129,131.565308,118.970268,117.400017,114.499191,113.804977,115.656219,114.995064,126.928947,145.490906,160.276031,172.986786,182.523972,180.961990,168.912399,146.085953,126.292580,113.482666,111.011589,105.036385,76.887619,59.945469,74.276054,89.044647,68.127289,30.052912,11.830597,9.548779,8.876047,7.069437,8.905799,8.819022,2.479345,0.497522,0.060331,0.529753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.008265 -601592.155000,4612735.550000,4250,3255,101.533066,162.061172,156.449600,143.548782,129.325638,117.309105,115.871086,113.457863,112.466125,113.755386,113.623154,125.590096,143.565308,159.730591,171.912415,181.598373,180.309113,167.557037,143.986801,122.862823,112.887611,108.846291,102.763649,73.780182,58.631424,72.003326,87.127289,64.581841,28.656216,10.734728,9.342168,6.559517,7.211586,7.121500,8.502494,2.833064,0.880994,0.099174,0.017356,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.155000,4612735.550000,4265,3255,100.777710,162.392563,156.549591,143.880173,128.962814,117.648773,115.144646,112.524811,112.185966,112.814064,113.053734,125.293404,143.805786,159.541321,171.590912,181.582642,179.847107,166.847107,144.376038,123.260345,112.657043,110.285141,102.590927,74.971092,58.227299,73.177704,88.566139,64.971100,28.766134,10.456215,9.326466,6.828938,7.359519,8.119020,7.765302,3.832237,0.297521,0.175207,0.505786,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.361984,0.000000,0.000000 -601597.955000,4612735.550000,4279,3255,98.638023,154.001663,155.381851,142.547119,127.662819,115.993401,114.489265,111.728935,110.390091,112.059517,111.811577,124.067780,142.456207,158.662842,169.439697,179.216553,178.365311,165.745483,142.323975,122.629761,110.530586,106.737198,101.563644,72.811584,57.092583,70.803322,86.406631,64.588448,28.390100,11.166959,9.233078,7.927285,7.190923,8.047946,6.212409,3.334717,0.330579,0.000000,0.122315,0.208265,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.355000,4612735.550000,4301,3255,112.659515,159.111588,154.475220,144.359528,131.136383,119.144646,116.524811,113.582664,113.376053,114.012413,113.764481,126.549606,143.739685,160.714874,172.260330,181.607437,179.971069,168.995865,145.516541,124.888443,112.665306,109.053734,103.590927,74.781006,60.276875,73.657043,88.938034,66.657043,30.772747,12.031424,9.417375,7.879352,6.609932,8.461171,7.336376,4.052074,0.497522,0.218183,0.017356,0.043802,0.000000,0.000000,0.000000,0.000000,2.242975,1.125620,0.000000,0.000000,0.000000,0.000000 -601608.355000,4612735.550000,4331,3255,104.819847,150.323975,156.489273,145.976868,129.216537,119.282654,117.770256,114.571907,113.323975,115.514061,114.406624,126.414886,145.489273,161.472733,172.249603,181.861160,180.968597,167.571915,145.142151,124.175217,112.960342,109.745461,104.018188,76.051254,59.257870,74.175224,89.051247,67.497543,29.316547,13.203323,9.456217,8.576047,7.917369,6.928113,7.863650,2.375213,0.891737,0.595869,0.000000,0.000000,0.000000,0.096694,0.000000,0.000000,2.401653,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.155000,4612735.550000,4365,3255,100.967789,154.538025,156.538025,143.504974,128.430588,118.265305,116.066956,112.951256,112.901665,113.199188,113.033897,124.976044,144.587616,160.141357,172.347931,180.538010,179.455368,168.430603,144.686783,123.356209,111.347946,107.942986,103.190926,75.785973,57.546299,72.868614,89.521500,65.637207,28.290100,12.102498,9.381011,5.344637,6.333899,6.482658,7.000839,2.953725,0.503307,0.185124,0.087604,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612735.550000,4379,3255,102.238861,153.055374,158.683487,144.691742,130.774399,119.939690,118.385971,114.757866,114.146301,115.443817,116.394234,127.410759,146.113235,162.419022,174.138031,183.369431,180.650421,169.080170,145.708267,124.609108,113.815720,110.427284,104.336380,77.063660,59.848782,74.328125,90.576050,67.443825,30.319855,13.585968,9.485143,7.512409,6.901667,8.069434,7.071915,3.771907,0.437191,0.208265,0.209918,0.052893,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.755000,4612735.550000,4403,3255,104.308281,153.153732,154.352081,144.707458,129.186783,120.153732,116.095879,115.773567,113.244644,114.856209,115.864487,125.798363,145.864471,161.674393,172.426453,182.228119,180.583481,168.533890,145.674393,124.451256,114.079361,111.137199,104.236374,76.252914,59.649605,74.079361,88.228119,66.120682,30.864481,12.239690,9.476052,7.647947,6.187617,7.551253,7.966130,3.679347,0.104959,0.106612,0.117356,0.053719,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.795868,0.000000,0.000000 -601627.355000,4612735.550000,4426,3255,88.953735,151.335541,154.790085,143.889252,129.442993,118.980179,118.046295,114.806625,113.352081,115.186790,116.145470,127.500839,145.839661,161.376862,172.748764,183.029755,180.641312,168.558670,146.211563,124.707451,113.062820,110.029762,105.054558,75.707451,59.178528,75.319023,88.864479,66.467789,28.575226,11.557868,9.550432,6.446292,5.927288,7.305798,6.847946,3.349593,0.618183,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.773554,0.000000,1.089256,0.000000 -601631.555000,4612735.550000,4447,3255,100.882652,151.720673,156.059509,145.026459,129.679352,119.100838,116.051247,115.456207,113.654556,115.844635,116.497528,127.439682,145.687607,162.109100,174.158691,182.464478,181.919022,170.224808,145.952072,124.381828,113.233070,111.100838,104.290916,76.323982,59.828121,74.712418,89.034721,65.662834,29.266136,10.552082,9.481010,6.598360,7.633901,7.371916,6.957039,3.134717,0.145455,0.061157,0.535539,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.064463,0.000000,0.000000,0.974380,0.000000 -601640.355000,4612735.550000,4491,3255,107.431419,155.467789,156.319016,144.864471,131.029770,121.161995,118.947121,116.533897,115.657867,116.757034,118.219849,129.186783,147.120667,163.996704,174.996704,183.434723,182.178528,170.600006,145.955383,125.120674,114.228111,110.517365,105.600014,76.847954,62.128948,75.252914,90.360344,66.046303,28.963655,12.043819,9.600020,8.558691,7.230593,8.181005,8.281005,3.471081,0.659506,0.164463,0.168595,0.057851,0.027273,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,2.392562,0.000000,0.000000 -601643.355000,4612735.550000,4506,3255,115.245476,155.558685,157.509109,146.806610,132.153732,122.095879,119.120674,117.409927,115.302490,117.178528,117.310760,128.467789,146.591751,162.831421,175.112411,183.781830,181.765305,170.583481,146.360321,124.839684,113.980179,110.451256,103.509109,76.566963,60.492584,75.013245,89.161995,67.145477,29.558697,11.928118,9.409937,6.897533,6.676875,7.185964,7.497534,2.435543,0.394216,0.100827,0.116530,0.063637,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.942975,0.000000,0.000000 -601648.355000,4612735.550000,4531,3255,105.758690,150.500015,157.351257,144.615723,130.037201,121.648773,118.508278,116.202492,115.400841,116.293404,117.450432,128.615723,146.904968,162.475220,174.458694,182.946304,181.954559,169.169434,146.045471,125.433899,113.466957,109.814064,103.863655,77.342995,60.491756,75.500015,89.871918,66.921501,28.913240,11.655390,9.442168,5.781004,8.695885,8.457039,7.173567,3.838851,0.410745,0.033884,0.025620,0.000000,0.095868,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.061157,2.020661 -601655.355000,4612735.550000,4566,3255,100.506622,148.800842,156.610764,146.420685,131.065308,120.470268,117.486794,116.346298,115.742996,116.139687,116.982666,127.817375,146.709930,162.156219,173.701675,182.288452,181.900024,169.296707,146.387619,125.040512,113.891754,110.313240,103.990929,76.660347,60.362831,74.767792,90.032249,66.668610,30.817375,11.691753,9.453738,7.326459,7.795056,8.173568,7.462822,3.590917,0.691737,0.199174,0.000000,0.048760,0.000000,0.090083,0.000000,0.000000,1.065289,0.000000,0.000000,1.001653,0.000000,0.000000 -601660.955000,4612735.550000,4594,3255,103.395889,154.424789,158.590088,146.366943,131.788452,123.681007,120.160347,117.416550,117.416550,119.143822,119.218201,130.449600,148.408264,164.548767,176.623138,185.061157,184.317352,172.441330,148.871078,126.466133,115.234734,113.193405,107.490929,78.557045,62.135551,78.044647,90.532249,67.862831,32.499191,14.350431,9.771919,6.978526,7.921503,8.202494,9.176874,3.066948,0.689257,0.199174,0.160331,0.000000,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.876033,0.000000,0.000000,2.009091 -601665.555000,4612735.550000,4617,3255,96.269432,150.473557,155.308273,146.043808,131.919846,121.952904,119.506622,116.862000,116.977699,118.581009,118.324806,128.837204,147.580994,162.886780,174.944641,183.671906,182.167770,171.176041,147.019012,124.713234,114.200844,111.060349,105.390923,77.754570,60.696716,76.837212,90.680183,67.886803,31.250431,11.689274,9.581010,7.881831,7.532245,6.980178,6.704971,3.241328,0.242149,0.417356,0.109091,0.000000,0.105785,0.103306,0.000000,0.000000,1.149587,0.000000,0.000000,0.913223,0.000000,0.000000 -601669.755000,4612735.550000,4638,3255,102.909935,151.180191,156.155396,145.155396,130.948776,120.585144,118.601677,116.155396,115.783493,117.229774,117.899193,128.072754,147.295883,162.279343,174.221512,182.808289,181.659531,169.643005,146.965317,125.461182,113.973579,109.717377,103.981842,76.874405,60.155392,76.163658,87.345474,65.816551,30.766960,12.456215,9.452912,6.809103,6.863651,6.684309,7.149600,2.885131,0.852067,0.171075,0.225621,0.116529,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.755000,4612735.550000,4673,3255,119.096703,147.394226,154.328110,146.080170,131.253723,121.452072,120.179352,117.195877,116.311577,117.683479,118.865295,128.609100,147.642151,163.096710,175.923157,185.245468,182.559509,171.832245,148.038849,125.509926,115.245461,110.898354,105.427284,78.576042,60.716549,76.650421,89.807449,68.328117,30.683493,12.509934,9.584316,6.172738,7.128114,7.543815,7.520675,2.278517,0.312397,0.114877,0.158678,0.000000,0.071075,0.098347,0.000000,0.000000,1.219835,0.000000,0.928926,0.000000,0.000000,0.000000 -601680.555000,4612735.550000,4692,3255,109.742172,151.233902,156.481842,145.985977,131.308273,121.440514,119.027290,116.333069,116.647125,118.795883,118.109932,129.671921,146.903336,163.977707,175.911575,183.349594,182.977692,170.498367,147.490112,125.448776,114.085136,110.556213,104.845474,77.440521,60.308285,75.300026,89.754570,66.771095,31.300018,11.742167,9.531424,6.621499,7.253734,7.672740,7.571914,2.347112,0.621489,0.041322,0.190909,0.000000,0.000000,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.083471,0.000000 -601688.355000,4612735.550000,4731,3255,93.637215,158.317352,158.094223,148.011566,133.251266,123.391754,121.085968,118.077705,118.598366,119.871094,120.069443,131.077698,149.143799,165.085953,177.391739,185.846283,185.532242,172.499176,148.424820,127.366959,116.804977,112.176880,106.854568,80.895889,62.309109,77.755394,92.466133,69.119026,31.664482,13.820680,9.714069,5.857037,9.206628,7.176048,6.805799,3.227279,0.372728,0.111571,0.054546,0.000000,0.129753,0.109092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.955000,4612735.550000,4749,3255,113.523972,151.642975,153.981827,147.923981,133.452896,120.833061,120.089264,118.064468,117.816536,119.742157,119.981827,130.213226,148.304138,164.014877,175.948761,184.403305,184.304138,172.378525,147.766953,125.642982,115.064468,111.271080,106.163643,77.841331,61.411591,76.395058,89.601662,69.196709,30.138863,11.903323,9.651259,5.350424,6.177701,7.184311,7.456212,1.247111,0.325621,0.061984,0.126447,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.955000,4612735.550000,4779,3255,102.200012,154.254547,157.395050,147.064468,134.857864,124.229767,120.271088,118.998360,118.585136,120.560349,120.667786,131.940506,148.361984,165.791748,179.254547,186.642975,184.543808,173.122314,148.271088,128.122330,114.833069,110.998360,106.800018,78.213249,61.105801,77.932251,90.395058,67.948776,28.502499,13.553738,9.709109,4.169430,6.897534,7.791748,7.289270,2.669428,0.366117,0.057025,0.374381,0.105785,0.020661,0.000000,0.332232,0.000000,1.217355,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.755000,4612735.550000,4803,3255,110.385139,156.653732,156.025635,148.521500,133.248779,123.281830,120.587616,118.265305,117.885139,119.876869,119.141335,130.141342,148.612411,165.000839,177.711578,186.381012,183.967789,172.761169,148.860336,126.868607,114.951256,110.232246,105.554558,77.901665,60.926468,76.463646,90.959518,68.091751,30.835556,12.757043,9.595887,5.557862,8.247123,8.198360,6.544640,2.804138,0.739671,0.055372,0.304959,0.055372,0.038017,0.162810,0.000000,0.000000,0.000000,1.004959,0.000000,0.000000,0.000000,0.000000 -601707.155000,4612735.550000,4825,3255,109.482666,161.357056,157.233063,150.183487,135.505798,124.216545,120.671089,119.357040,118.902496,122.125641,120.580185,131.877701,148.051254,166.861160,178.638031,186.274384,185.852905,173.927277,149.629761,127.861176,115.803322,113.042992,106.381836,79.150436,61.175228,75.927299,90.679367,69.447960,31.241341,14.176050,9.671093,6.350426,8.454560,8.223156,6.109930,3.695873,1.264465,0.052066,0.165290,0.052066,0.000000,0.185951,0.000000,0.000000,0.000000,1.044628,0.000000,0.893389,0.000000,0.000000 -601714.755000,4612735.550000,4863,3255,105.412407,156.426453,156.740509,146.757034,133.128937,123.153725,121.790085,117.905792,116.980171,119.492569,120.120667,129.385132,147.963654,164.690918,177.137207,185.319016,183.905792,172.327286,148.137207,126.426453,114.418198,110.872742,105.781830,77.079361,60.211586,73.600021,90.128944,67.170265,28.938862,10.509935,9.616548,5.855382,6.709933,7.817367,8.244641,1.847112,0.390084,0.130579,0.148761,0.057851,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.155000,4612735.550000,4880,3255,101.083481,158.942993,156.934723,148.827286,135.579346,123.761169,122.331421,119.339684,118.215714,120.579353,119.992577,130.992569,148.240509,165.381012,177.372742,186.868607,184.488449,173.604141,149.546295,127.075218,115.042160,110.480179,105.827286,77.661995,59.273571,75.463646,91.017365,68.959518,31.031425,12.637208,9.620680,6.278524,8.426462,7.410756,6.879351,3.064470,0.910746,0.164463,0.000000,0.052066,0.208265,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,1.887604,1.074380,0.000000 -601721.755000,4612735.550000,4898,3255,101.189278,163.303314,158.609100,150.410751,135.038864,124.931419,121.493408,119.576050,118.344643,121.096710,120.906631,131.286789,148.096710,166.419022,176.171082,186.261993,184.642151,172.113235,147.526459,126.303322,113.716545,111.187622,106.336380,78.427292,60.427292,75.766136,91.138031,69.394234,32.328117,12.926465,9.666961,5.722324,7.544642,8.800839,7.519848,3.093394,0.255373,0.392563,0.064463,0.000000,0.006612,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.215703,0.000000 -601726.555000,4612735.550000,4922,3255,107.690941,157.856216,155.566956,148.128937,134.269440,122.153732,120.690926,118.442986,115.814888,120.616539,119.401665,128.938858,147.566956,165.038025,177.798355,185.608276,183.641342,172.029770,148.327286,126.666130,113.814888,109.641335,104.600014,76.079353,59.335560,74.302498,90.236374,66.798370,30.971920,11.692579,9.509109,4.662819,6.696708,6.349598,6.466128,2.128104,0.550414,0.554546,0.000000,0.000000,0.128926,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.955000,4612735.550000,4944,3255,123.157867,169.439682,160.621490,152.481003,138.092575,124.183479,121.588440,120.447945,119.315712,121.753731,121.712410,131.522324,150.233063,166.993393,179.414886,189.233063,186.902496,174.497528,149.770264,127.348770,115.282654,111.952072,105.745461,77.547127,60.662827,75.580193,91.679352,69.530594,30.811590,12.351258,9.613243,4.662820,8.151255,7.376045,7.668608,2.566948,0.284298,0.198348,0.665290,0.281819,0.000000,0.000000,0.000000,0.000000,0.000000,1.270248,0.000000,0.871074,0.000000,0.000000 -601733.955000,4612735.550000,4959,3255,121.374405,162.737183,155.885971,149.638046,133.762009,122.530586,120.836372,119.687614,117.530586,120.745461,119.489265,129.117371,147.811600,164.960342,176.100815,186.497513,184.629745,172.580154,147.836395,126.638023,113.910751,109.299187,104.290916,75.778542,58.745472,74.737213,89.885963,68.009933,29.885973,12.171091,9.481010,3.931413,7.057865,5.284308,6.912408,2.315707,0.283472,0.144629,0.009918,0.066942,0.031405,0.118182,0.000000,0.000000,0.000000,2.254546,0.000000,0.000000,0.000000,0.000000 -601736.555000,4612735.550000,4972,3255,127.532249,165.333893,162.457855,153.681000,138.681000,124.557045,122.937210,120.647957,118.325638,122.424812,120.383492,130.152084,148.590088,167.309097,178.945465,186.689255,185.499176,172.887604,148.168594,126.978531,114.375229,108.829773,105.127289,76.400017,58.705803,74.846298,89.242996,67.829773,29.955389,12.360349,9.557045,4.695051,6.673568,6.484309,6.735549,1.457029,0.451241,0.000827,0.091736,0.060331,0.000000,0.000000,0.000000,0.000000,1.248760,1.128099,0.000000,0.984298,0.000000,0.000000 -601739.555000,4612735.550000,4987,3255,115.849594,174.684326,166.080994,154.816528,140.833069,126.419838,123.428108,122.130585,120.229759,122.866119,121.188438,131.957031,149.337204,167.461166,179.725647,188.047943,186.485962,173.601669,148.915710,127.328934,115.634720,110.890915,105.709099,76.890915,59.312416,74.485962,91.122322,67.560349,30.750433,12.956216,9.609936,4.771911,7.624808,6.297533,6.227285,3.519841,0.357852,0.061984,0.000000,0.000000,0.232232,0.023967,0.000000,0.000000,0.000000,0.000000,1.042975,0.000000,0.000000,0.000000 -601743.155000,4612735.550000,5005,3255,116.282661,174.762009,165.885971,153.927292,138.902512,125.571922,123.307457,121.447952,119.191750,123.142166,120.431419,132.439682,150.332260,167.704163,179.852921,188.927292,186.869446,174.257874,149.819855,127.340515,115.514069,111.514069,106.381836,78.266136,59.952084,76.406631,90.712418,68.819855,30.762003,12.324812,9.671093,5.185963,7.514891,7.198360,6.649599,2.788436,0.384299,0.207439,0.131405,0.004133,0.104959,0.000000,0.000000,0.001653,0.000000,1.147934,0.000000,1.080165,0.000000,0.000000 -601747.355000,4612735.550000,5026,3255,118.255386,165.833878,163.602463,151.842148,135.247116,123.900009,121.924805,119.569435,117.990921,118.982658,119.329765,130.966125,149.536346,165.412384,177.486771,186.214035,184.933044,170.073547,145.875229,124.858688,114.263649,112.379349,104.263657,76.536377,60.891754,74.478531,91.123161,66.891754,30.709936,11.140513,9.478532,8.683486,5.723153,8.105799,5.453729,2.540504,0.514878,0.278513,0.100000,0.102480,0.082645,0.000000,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.355000,4612735.550000,5051,3255,105.864487,165.426453,159.914062,148.004974,134.038025,122.319023,120.955383,117.352081,116.600014,117.186790,117.294228,129.285965,148.467789,164.484314,175.451248,185.046295,183.385132,169.203323,144.360336,123.608276,112.550415,110.186783,104.236366,75.046303,58.947128,73.922333,88.922325,65.525642,29.120680,10.220678,9.476053,6.757864,6.528112,6.844642,6.102489,2.261989,0.242150,0.000000,0.076033,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.360331,0.000000,0.000000,0.000000 -601755.555000,4612735.550000,5067,3255,111.195885,166.402496,163.716537,149.840500,133.435547,121.567780,121.551247,118.807449,117.303314,118.187614,117.873566,130.394226,148.741333,164.807449,177.295044,186.559509,184.419022,170.344635,145.344635,125.071907,112.410751,109.890091,105.336372,76.129768,61.096710,74.187614,90.220673,66.171089,29.931425,11.670265,9.576052,7.740510,6.973568,6.539683,7.266127,2.001659,0.592564,0.271075,0.041322,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.755000,4612735.550000,5103,3255,97.702492,171.314056,160.900833,150.140503,135.024811,123.066132,122.082664,119.247948,118.206627,120.446297,118.438034,131.024811,149.495865,166.727280,178.818176,187.545456,185.661163,170.272720,147.214874,125.909103,113.818199,111.206627,105.090927,76.966957,61.157040,74.925636,90.776878,66.413246,29.082664,12.111588,9.553739,7.113238,6.809105,7.743816,6.360342,3.814058,0.435539,0.504960,0.000000,0.052066,0.000000,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601765.955000,4612735.550000,5119,3255,121.452087,166.344650,165.443832,151.898376,135.840500,123.823975,123.443810,120.410751,118.567780,120.741333,119.253731,131.295044,151.187622,167.848785,180.220688,188.840485,187.121490,171.270279,148.319855,126.501663,116.063644,112.815712,106.518188,77.559525,61.741341,76.766136,90.286797,67.493408,30.509937,13.256215,9.683490,8.937205,6.979352,7.586792,6.328110,1.817361,0.357852,0.208265,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.155000,4612735.550000,5140,3255,108.742165,175.180176,167.890915,151.849594,136.105789,123.775223,123.064476,121.105797,120.337204,121.907455,120.370262,132.337204,150.527283,168.461166,179.940506,189.502487,186.147110,171.006622,146.618195,125.461174,114.461174,111.890923,105.981834,78.023155,61.543823,77.089272,91.783485,66.552086,31.114071,11.913240,9.634730,9.326462,6.190095,8.907453,7.448773,3.569431,0.623969,0.083471,0.024794,0.000000,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.155000,4612735.550000,5155,3255,113.499191,177.846298,167.201691,155.705826,137.152084,125.085968,122.490929,120.854568,120.242996,123.292580,121.201675,133.433075,152.028137,168.664505,180.780182,190.846313,188.408295,172.284332,148.119049,126.763657,115.375229,112.647957,106.490921,78.664482,62.201668,76.912415,92.499191,66.499191,31.780184,13.026464,9.681010,7.565305,7.375220,9.014066,8.214064,2.861166,0.450415,0.288430,0.027273,0.052066,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.555000,4612735.550000,5177,3255,127.248772,179.918198,168.488449,154.554565,139.496719,125.100021,125.207458,122.455383,122.240509,125.215721,121.860344,133.901672,152.488449,169.620667,182.703323,191.942993,188.405792,173.100006,148.628937,127.157875,115.868607,113.116539,107.918198,78.752914,62.290104,76.339691,92.719849,67.281837,30.612415,13.102497,9.810761,11.942163,7.556213,8.257866,7.671086,3.274388,0.298348,0.369423,0.037190,0.047934,0.000000,0.000000,0.000000,0.037190,0.000000,1.276033,0.000000,0.000000,1.278512,0.000000 -601781.155000,4612735.550000,5195,3255,125.206627,182.140518,164.297531,155.107452,138.347122,122.355385,123.603325,121.694229,120.338860,124.066132,120.752083,132.471085,150.975220,169.008286,181.157043,191.223160,187.710754,171.016541,147.297531,126.628113,114.479355,111.818199,106.545471,77.008278,60.760349,76.595055,89.859520,65.801674,30.346298,11.204976,9.685969,9.858694,6.129764,9.448775,6.940507,2.422321,0.511572,0.145455,0.038843,0.052893,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,2.062810,0.000000,0.000000,0.000000 -601784.155000,4612735.550000,5210,3255,132.751251,182.230576,167.329758,158.288437,140.850418,126.280182,126.470268,124.288452,123.776054,127.015724,123.643822,134.966141,153.073563,171.098343,183.619019,192.974380,190.503311,173.321487,149.536362,127.941345,117.197540,114.759521,108.627289,79.924812,62.900024,76.660347,93.495064,66.445473,32.561176,13.900845,9.875225,12.096711,8.809105,8.416544,7.647119,3.042984,0.784299,0.261158,0.221488,0.052893,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.955000,4612735.550000,5229,3255,141.316559,185.060349,170.068619,160.118210,141.837219,128.027283,126.696709,123.217369,124.085136,128.828934,124.060349,136.184326,153.622330,171.440521,184.035553,194.647125,191.316559,173.531433,150.242172,128.862000,116.614067,114.019020,109.027290,79.423981,63.754559,78.407455,93.762825,66.316544,29.862001,13.563655,9.911589,9.213239,6.803320,5.733070,8.009105,3.769430,0.600002,0.373555,0.042149,0.147108,0.160331,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.955000,4612735.550000,5254,3255,142.754547,187.399185,170.498352,158.845459,142.019012,127.085136,126.184311,124.002495,124.622330,129.762817,123.572739,135.242157,152.465302,171.523148,183.886780,193.919846,190.415710,172.738022,149.407440,127.853737,116.985962,113.581017,108.663658,78.233902,62.671925,77.680183,90.919846,64.754570,29.052084,12.657041,9.878531,11.014892,6.803319,6.912410,6.478525,4.027282,0.248762,0.090909,0.040496,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.755000,4612735.550000,5273,3255,152.448761,196.184311,172.349594,164.233887,143.738022,129.663651,128.721497,126.547943,126.275215,132.357864,127.349594,137.853729,155.002487,173.994217,187.250427,198.060333,193.027283,175.754547,153.266953,130.324814,119.184311,116.316536,112.118195,80.159515,66.506638,82.432243,95.324806,67.101677,32.581009,14.690100,10.192581,15.526463,7.433069,8.874395,8.873571,3.904140,0.173554,0.185951,0.000000,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.155000,4612735.550000,5300,3255,109.654564,155.276855,161.714874,149.351242,134.929764,125.599197,122.690109,119.913246,120.954567,121.665314,122.987625,133.466965,152.376038,169.227280,181.557846,191.673553,188.227280,175.681824,150.871902,128.690109,117.764488,114.665314,109.590935,82.169449,65.747948,79.938042,95.268608,70.822342,31.417374,13.345473,9.962831,7.287615,6.676871,8.300013,8.298361,3.974390,0.781820,0.141323,0.168595,0.053719,0.000000,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.955000,4612735.550000,5319,3255,98.883484,158.787598,160.399185,147.531418,133.795883,123.762825,121.638855,120.167786,119.407455,120.142990,120.928116,132.985962,152.233871,168.291733,181.647095,189.696701,188.448761,174.878510,150.010727,128.035553,117.423981,113.093407,108.300018,80.275223,63.498367,78.556221,93.448776,68.886795,32.035557,13.642994,9.845474,7.158690,6.390094,8.014062,7.517368,2.738024,0.850415,0.256199,0.160331,0.000000,0.000000,0.284298,0.041322,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.155000,4612735.550000,5345,3255,105.044647,155.259537,163.358719,149.383469,136.466125,126.201675,125.234734,123.449608,123.441345,123.854568,124.895889,135.862823,154.507462,172.135559,183.400024,191.366943,191.284302,177.317368,152.598373,130.457870,121.209938,116.540512,112.581841,84.656219,66.755394,83.317375,97.366959,70.623161,34.201672,15.148779,10.234729,6.251251,8.289270,8.106625,8.847949,3.239677,0.790085,0.427274,0.595869,0.300000,0.149587,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,1.004959,0.000000,0.000000 -601817.355000,4612735.550000,5376,3255,93.625641,153.352921,160.716553,150.385971,136.121490,125.534729,123.666962,122.658699,121.592583,122.815720,123.749603,134.096710,154.501678,171.311569,183.179337,191.121475,189.766113,178.518173,151.377716,129.609100,117.757866,115.005806,109.700020,83.030594,65.708282,79.741341,96.014069,70.088448,32.724812,14.278530,9.972746,7.642988,6.373567,7.153730,6.530590,2.361990,0.744630,0.401654,0.049587,0.100827,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,2.029752,0.000000,0.000000,0.000000 -601820.155000,4612735.550000,5390,3255,110.045471,156.938034,162.789261,150.359528,136.276871,125.995880,123.838860,121.376053,122.995880,122.822327,124.384315,135.615723,155.533051,171.400848,184.045471,192.789276,190.607452,178.045471,151.681839,130.607452,119.169441,116.557869,111.772743,84.194229,66.367783,82.119850,96.161171,71.623985,32.772747,14.303324,10.161176,6.875218,7.713237,7.699186,8.690097,3.716538,0.623142,0.000000,0.049587,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.755000,4612735.550000,5408,3255,104.072739,155.395050,162.254547,148.841339,134.254562,124.915718,121.800018,120.890923,120.808281,122.560349,123.378525,134.824814,154.295868,170.221497,183.692566,191.585129,190.196701,176.031418,150.783493,129.593399,117.709106,114.833069,109.981834,82.283485,64.886803,80.556213,95.188446,68.014900,31.700848,13.032249,9.998366,6.460344,6.878526,7.569435,9.187617,3.913232,1.266118,0.419835,0.713224,0.256199,0.519009,0.023141,0.535538,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.955000,4612735.550000,5429,3255,102.874390,156.271088,158.188431,151.452896,135.485962,124.609932,123.444641,121.461174,121.700844,122.262825,124.097534,135.147110,153.874390,171.147125,183.766953,191.948746,191.857849,176.783493,151.320679,131.114059,118.609932,115.047951,110.890915,82.097527,64.833076,80.684303,95.502487,68.031418,31.882666,12.923159,10.081010,6.104144,6.233069,6.838032,7.321500,3.536372,0.488432,0.031405,0.286777,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.355000,4612735.550000,5451,3255,112.389275,157.215714,161.009109,151.050430,135.843811,127.116539,123.381012,122.736382,123.009109,125.381012,125.653740,136.934708,156.372742,173.025635,185.595886,194.538025,192.290100,179.662003,153.777695,131.091751,119.562828,115.628944,112.554565,84.868614,66.504974,81.513245,95.273575,69.504982,33.215725,13.431424,10.232250,7.785137,7.754560,8.501667,6.890921,3.536371,1.162813,0.388432,0.132232,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.555000,4612735.550000,5467,3255,95.253738,155.657043,160.863647,150.491745,135.367783,126.789276,123.880180,121.904976,122.566132,123.210762,126.037209,135.979340,155.136383,171.367783,185.351257,193.351257,192.706635,178.962830,153.533081,130.219025,120.078529,115.128113,111.772743,83.822327,67.665306,81.938034,96.351257,70.367783,32.607456,13.997540,10.161176,7.724806,7.252079,8.831421,7.094226,3.441331,0.799176,0.135538,0.215703,0.048760,0.045455,0.249587,0.000000,0.099174,2.421488,0.000000,0.000000,0.000000,0.000000,2.034711 -601838.355000,4612735.550000,5481,3255,96.896713,153.494217,160.973541,151.370270,137.138870,125.304146,123.543816,123.552078,122.692574,124.609932,126.056213,137.601669,155.039658,173.353729,185.552063,193.758682,192.155380,177.436356,152.634705,131.519028,119.023155,114.816544,111.618195,83.279350,66.874397,81.089272,95.370262,68.932251,31.775225,12.857043,10.147126,5.981831,6.790925,7.376047,7.203318,3.323974,0.574382,0.533885,0.140496,0.200000,0.080992,0.525620,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.155000,4612735.550000,5495,3255,103.630592,157.599182,159.904968,150.400848,135.995880,126.351257,124.268608,123.896713,123.681831,125.566132,125.119850,137.293411,155.706635,173.425629,185.508286,193.971085,191.971085,179.475220,153.772751,130.657043,120.086792,116.690102,111.409103,85.466957,67.252083,81.830597,96.185966,69.871918,32.285145,13.075224,10.128119,6.120674,8.097537,7.092575,9.401667,2.891742,0.728101,0.181819,0.097521,0.104959,0.156199,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.955000,4612735.550000,5509,3255,107.112411,147.804153,156.366135,148.523163,134.969421,127.535545,126.105797,125.403320,125.581009,127.531418,128.506622,140.019012,157.473572,176.283493,188.969437,198.043823,195.093414,181.490112,155.812424,132.878525,120.266960,116.779350,111.027290,85.045471,67.352913,82.582664,96.704971,70.473572,32.506630,14.186794,10.093408,5.562821,7.789272,8.661170,8.828112,4.290917,1.656201,1.397522,0.854546,0.762811,0.190083,0.056199,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.955000,4612735.550000,5539,3255,97.059525,149.933075,158.660355,149.371094,134.338043,124.999191,123.866959,121.875229,122.607452,124.334724,126.814064,137.648773,155.792587,172.338043,183.693405,193.081833,192.445480,180.304977,154.238861,132.230591,120.346298,117.156219,113.536385,85.908287,68.462006,83.057045,98.495064,73.569443,34.676880,15.258697,10.321506,5.795879,8.116544,8.122330,7.035549,2.886785,0.965292,0.260331,0.461984,0.844629,0.000000,0.000000,0.000000,0.000000,1.294215,0.000000,0.000000,0.000000,0.000000,3.961984 -601856.955000,4612735.550000,5574,3255,103.378517,163.200836,164.415710,153.093399,139.523148,128.126450,125.638847,124.457031,124.473557,127.423973,127.853737,138.895050,156.977692,175.076859,187.192566,196.134720,193.985962,181.184311,155.415710,132.671906,120.688438,117.473557,112.390915,85.341339,66.837212,81.126472,97.614075,70.721512,33.498367,13.345472,10.217374,5.516541,6.947122,7.258691,7.655385,3.368604,0.490084,0.107438,0.209091,0.224794,0.380992,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.955000,4612735.550000,5604,3255,105.510757,160.147934,161.916534,153.858688,138.214050,128.114883,125.701668,125.321503,124.552902,128.437195,128.362823,138.437195,156.825623,174.189255,187.255371,195.329758,194.561157,181.709915,155.866943,132.941330,121.577698,118.503319,113.536377,85.982658,67.734734,83.387619,96.916542,71.379349,33.867790,13.164481,10.321507,5.077697,7.412412,6.658690,6.500012,4.424801,0.997523,0.288431,0.000000,0.133058,0.000000,0.161984,0.009091,0.000000,1.205785,0.000000,0.000000,0.000000,0.000000,0.000000 -601866.155000,4612735.550000,5620,3255,107.254570,160.725632,161.609924,149.833069,137.105789,126.039696,124.097542,122.800026,122.279358,125.081017,125.254570,136.477707,154.857864,172.345459,184.915710,194.039673,192.907440,179.378525,154.345459,130.775223,119.940521,116.485970,111.709114,84.031425,66.634727,82.138863,97.659523,70.700851,31.808283,12.185143,10.155391,5.183483,7.297536,7.666129,8.866957,3.133065,0.594217,0.262811,0.453720,0.000000,0.000000,0.238017,0.003306,0.000000,0.000000,1.117355,0.000000,0.000000,0.000000,0.000000 -601869.955000,4612735.550000,5639,3255,108.101677,161.374390,162.572739,152.820663,140.068604,130.762817,127.291748,126.556213,127.126457,128.886795,128.845474,139.432236,157.680176,174.746292,187.457031,196.820663,194.812408,182.928101,156.663635,134.440506,123.704971,118.630592,114.572739,87.448776,68.151253,85.002495,97.572739,72.390923,34.506634,13.995060,10.415722,4.948771,9.003324,7.114065,9.295881,2.893396,1.232234,0.052066,0.296695,0.121488,0.008265,0.000000,0.054546,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.155000,4612735.550000,5655,3255,114.268608,165.772720,165.326447,155.053726,140.747940,130.070251,127.185959,125.739677,126.342987,128.359512,129.557861,139.475204,158.557846,175.524796,188.334717,196.458679,195.871902,182.855377,158.384293,134.128113,122.533066,118.814056,114.681824,86.045464,69.706635,84.359512,98.450424,72.979362,35.128120,14.509109,10.425639,5.295052,7.410758,8.291751,8.268610,3.095049,1.097524,0.675208,0.745455,0.141322,0.009091,0.668596,0.505785,0.058678,0.000000,1.286777,0.000000,0.000000,1.207438,0.000000 -601877.355000,4612735.550000,5676,3255,118.159515,162.671921,162.531433,153.192581,139.258698,127.324799,125.647118,123.886780,124.101662,127.300003,128.225632,137.911591,156.837219,174.060333,186.762817,194.961166,194.341324,181.101669,155.225647,133.308273,121.010750,117.597527,113.118187,85.622337,67.457047,82.399193,97.283485,72.862000,33.804150,14.583489,10.283490,5.470259,7.995883,8.078526,6.050426,1.733890,0.195869,0.218182,0.000000,0.104133,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,1.171075,0.000000,0.000000,0.000000 -601881.555000,4612735.550000,5697,3255,114.292587,165.714066,164.094238,154.747131,140.598373,128.755386,127.003326,126.457870,124.895889,127.391754,127.887619,138.507462,156.970276,173.862839,186.606644,196.085983,194.433090,181.986816,157.143845,133.928940,122.135559,117.796715,114.309113,85.821510,67.400017,82.209938,97.986794,71.705803,33.565308,13.467787,10.391754,4.238026,7.016545,8.055387,7.176871,2.695874,0.643803,0.222315,0.341323,0.052066,0.173554,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.355000,4612735.550000,5726,3255,100.412407,160.062012,159.772766,153.103333,136.987625,126.309929,125.028931,123.541328,124.450424,127.524803,126.648766,138.698364,156.020691,173.161194,186.260361,195.921509,194.549622,180.863663,156.334747,133.665298,122.061989,117.789261,113.227280,85.227280,68.425629,82.210754,95.475212,72.632248,32.541344,12.761174,10.293408,3.519017,6.823981,7.562824,6.812409,1.556203,0.742976,0.384298,0.515704,0.347108,0.167769,0.176860,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.155000,4612735.550000,5780,3255,112.614899,168.879349,162.937195,156.755371,142.160355,127.714066,125.176880,124.061180,122.408287,126.738861,126.168617,136.176880,153.937195,170.755371,185.515701,193.424789,192.647934,180.400009,155.780167,134.003326,121.639687,118.119026,111.309113,84.771919,66.970261,81.747124,96.052910,73.242996,32.400021,13.566132,10.119028,5.053730,7.919851,7.959518,8.109931,2.958685,0.447935,0.133058,0.080992,0.194215,0.089256,0.023967,0.009918,0.000000,0.000000,0.000000,1.161157,0.000000,0.000000,0.000000 -601901.355000,4612735.550000,5796,3255,120.279350,179.667770,165.899185,159.056198,142.254547,128.923981,127.684311,126.188446,124.576874,128.874390,127.477699,137.485962,156.064468,173.155380,185.940506,194.642975,194.279343,182.568604,157.766953,135.651260,123.659515,119.229767,114.436378,85.890923,69.279350,82.998360,97.684311,73.006622,33.312416,14.628942,10.403324,6.329764,7.190097,7.146294,7.853733,3.484304,1.180994,0.217356,0.123141,0.000827,0.203306,0.000000,0.225621,0.514050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.155000,4612735.550000,5810,3255,121.386795,166.405792,163.438858,155.240509,142.546295,128.842987,127.966957,127.297539,125.958694,130.950424,128.066132,140.190094,157.677704,174.711578,186.331421,194.918198,194.480179,183.009109,156.843811,134.835556,121.777702,118.860344,113.463646,84.736374,66.471916,82.223976,95.182655,73.075218,32.347954,12.804974,10.314895,5.085961,7.012410,6.545466,6.285962,1.763641,0.780994,0.261158,0.225620,0.457025,0.027273,0.000000,0.000000,0.226446,0.000000,0.000000,0.000000,3.024794,0.000000,0.000000 -601907.555000,4612735.550000,5827,3255,113.776871,159.919006,165.390076,155.993393,140.695877,129.332245,127.671082,125.034721,123.365295,125.018188,123.828110,136.249603,154.646286,171.051239,182.423141,192.026459,191.266129,176.852890,153.216537,132.290924,121.150421,118.042984,112.381828,83.613235,68.472748,81.348770,95.431412,71.464485,32.464481,12.907454,10.216548,8.948775,6.472740,7.524805,7.462822,3.119841,0.672729,0.089257,0.256199,0.163637,0.000000,0.185124,0.001653,0.047934,0.000000,0.000000,0.845455,0.000000,0.000000,0.000000 -601912.355000,4612735.550000,5851,3255,119.004974,168.938858,167.004974,154.550430,140.062820,127.104149,126.153732,123.806625,122.575218,123.699188,124.087616,135.509109,153.641342,170.029770,181.186783,191.310760,190.087616,175.261169,152.649597,131.062820,119.608276,117.352081,110.418198,82.476044,66.120682,81.525635,94.798363,69.542160,32.277702,12.728944,10.038035,6.466954,7.835550,7.570261,7.150424,3.196702,0.605787,0.334712,0.300828,0.000000,0.038843,0.000000,0.055372,0.024794,0.000000,1.231405,2.176033,0.000000,0.000000,0.000000 -601915.955000,4612735.550000,5869,3255,117.149605,169.281830,168.000839,154.984314,140.951248,127.976044,127.372742,125.248772,123.984314,124.372742,124.017365,136.529785,153.695053,170.645462,181.587616,190.637207,188.703323,175.430588,150.769440,130.157867,118.819023,115.157867,110.463646,82.240517,65.909935,80.149605,95.331429,69.149605,30.728119,12.691753,10.042168,6.766128,6.985137,6.564476,7.938029,2.719016,0.769423,0.213224,0.123141,0.109091,0.000000,0.000000,0.000000,0.000000,1.392562,0.000000,0.976860,0.000000,0.000000,0.000000 -601920.355000,4612735.550000,5891,3255,110.319031,170.247971,166.752106,154.892593,141.520691,128.330597,127.099197,125.165314,122.785149,125.347130,124.512421,136.512436,154.066147,170.785156,182.669449,191.041351,189.256226,176.223175,152.537216,131.801682,120.008286,117.107460,111.000023,83.338860,67.090927,80.685974,95.049606,68.619850,31.347128,13.142994,10.090928,6.365302,7.528939,6.183483,6.823152,2.779345,0.703308,0.376861,0.044628,0.000000,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.555000,4612735.550000,5917,3255,104.192574,170.926453,169.852081,159.339676,143.323151,129.918198,128.521500,126.380997,125.661995,127.372742,126.290092,137.951248,156.290100,172.827286,184.645462,193.207458,191.414062,177.827286,153.942993,133.133072,121.719849,118.248772,112.463646,84.934731,68.976051,81.546303,96.290100,70.298370,32.637211,14.768613,10.223987,9.639684,7.725633,8.335551,9.665304,3.195049,1.675209,0.490910,0.786778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.923967,0.000000,0.000000 -601928.755000,4612735.550000,5933,3255,130.785141,177.619858,167.958694,156.669434,139.884308,126.760345,126.900841,124.165306,123.685966,125.669441,124.272743,136.438034,154.900848,170.834732,182.479355,192.157043,191.016541,176.132248,153.347122,131.719025,120.223160,118.330597,111.545471,83.933899,67.553734,82.198364,95.454559,69.644653,33.033077,14.257043,10.140515,9.984311,7.518194,7.977701,7.257035,3.454554,0.751242,0.062810,0.264464,0.000000,0.000000,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,2.511570,0.000000 -601932.755000,4612735.550000,5953,3255,123.561165,176.347946,167.939682,155.625641,140.435562,128.385956,127.724800,125.848770,125.005798,127.666954,126.005798,137.576065,154.782669,171.873566,183.799179,192.385971,190.129776,176.138031,152.237198,132.336380,121.534721,118.253731,112.700012,83.518196,68.617371,82.485138,96.460342,69.096710,33.129772,13.984317,10.245474,10.312413,7.729765,9.291749,7.176044,3.285958,0.794217,0.521489,0.235538,0.246281,0.061157,0.000000,0.000000,0.110744,0.000000,0.000000,1.080992,1.047108,0.000000,0.000000 -601936.755000,4612735.550000,5973,3255,117.067787,180.638031,168.588440,155.885956,138.076050,126.596710,126.431419,124.852913,124.175224,126.456215,124.638031,135.894226,153.183487,170.233063,182.034714,191.836380,190.489273,175.869431,151.117371,131.530594,119.481010,116.753738,110.836380,82.604973,66.786797,81.200020,94.423157,69.555397,33.348778,12.457870,10.076052,9.247122,8.142161,8.263651,8.310757,3.391743,0.547109,0.550414,0.486778,0.046281,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,1.052893,0.000000,0.000000,0.000000 -601942.555000,4612735.550000,6002,3255,117.214066,182.362823,169.081833,158.966141,142.660355,126.776047,126.470261,123.924805,123.123154,126.478523,123.668610,134.941330,152.850433,170.643814,182.800842,192.065308,189.445480,174.966141,151.214066,131.106628,119.395882,117.329765,110.354568,82.304977,66.404152,80.734734,93.561165,68.032249,30.709938,12.271919,10.032250,9.293404,5.853733,6.281005,6.709929,3.474387,0.617357,0.033058,0.224794,0.052893,0.000000,0.000000,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.555000,4612735.550000,6022,3255,135.226456,187.620651,168.752899,158.042160,143.290100,129.670258,129.058685,126.628937,125.827286,129.934723,125.108276,136.571091,153.860336,172.190918,183.827271,194.017349,191.430573,175.108261,152.926453,133.083481,120.670258,117.653732,112.645470,84.306625,67.992584,83.025635,96.389267,68.290092,31.124815,13.012414,10.240515,11.951256,5.847120,7.347947,8.071914,2.622320,1.700830,0.261984,0.449588,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.755000,4612735.550000,6048,3255,150.429749,194.295868,174.312408,164.874390,146.287613,131.527283,130.345459,127.990089,128.014877,134.105789,127.642982,139.890915,157.196701,174.601654,187.444641,197.990082,194.642975,177.833069,155.915710,135.800003,124.262817,120.841331,115.527283,86.436378,70.477699,85.957047,98.428116,69.841347,32.750431,16.239687,10.502498,12.441339,8.587617,9.885964,7.315715,3.883479,0.775208,0.349588,0.108265,0.000000,0.000000,0.000000,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601958.355000,4612735.550000,6081,3255,159.394226,198.218185,177.862823,165.226456,144.862823,131.424789,130.119019,128.036377,128.606628,134.441330,128.747116,140.366943,157.449585,174.838043,187.193390,197.821487,193.499176,176.466141,154.730576,133.532242,121.342155,118.639671,112.581818,82.738853,67.937202,83.945465,95.606621,67.085968,32.383492,14.117374,10.234729,13.547122,9.179353,8.562821,10.010756,5.861167,1.157027,0.688432,0.784299,0.385951,0.238017,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.755000,4612735.550000,6133,3255,110.835556,157.447113,164.232239,152.583481,138.385132,128.095871,127.261162,124.732239,125.120667,125.186783,125.186783,136.294205,154.566956,169.385132,181.550430,190.095886,189.112411,174.996704,152.401672,131.352081,119.170258,114.864487,108.781837,81.919846,65.688446,80.777710,93.095886,68.922333,31.907455,12.212414,9.889277,7.181005,6.766128,9.120676,7.447946,2.496701,0.699175,0.605786,0.642149,0.470249,0.265289,0.000000,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.155000,4612735.550000,6215,3255,99.204147,161.157867,164.538025,154.248779,138.645462,130.298355,127.852081,126.372742,124.860344,127.075218,126.819023,138.108276,156.860336,172.513229,184.901672,193.042160,191.662003,179.290100,155.372742,134.662003,123.091751,119.959518,114.009102,86.430588,68.364479,85.430588,96.951256,71.736374,33.711590,13.714894,10.364482,5.356209,6.828940,6.957865,8.359517,1.459510,0.425621,0.042975,0.151240,0.000000,0.000000,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,0.977686,0.000000,0.000000 -602011.155000,4612735.550000,6345,3255,108.890099,159.974396,160.379364,151.879364,141.226471,136.152069,134.201660,134.201660,132.573563,133.747116,134.226456,145.209915,163.317368,178.854568,191.267792,200.928940,199.664490,186.763657,163.317368,140.887604,128.697525,122.887611,117.309105,88.276047,70.871101,87.168610,100.044640,76.408295,35.705803,13.762828,10.664483,5.394228,6.447123,7.961172,7.141337,2.625625,0.271075,0.188430,0.084298,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.955000,4612735.550000,6504,3255,122.345467,165.122314,166.502487,156.692566,142.585129,129.642990,128.238037,127.560349,126.510757,128.560349,128.651260,139.196701,155.857864,172.849594,184.700836,194.535538,192.560333,181.287613,157.576859,135.535538,124.271088,120.006622,114.890923,88.419846,70.593414,84.576881,97.593407,73.023163,32.543819,11.967786,10.444647,4.777697,5.404147,7.152905,6.578525,1.271904,0.744630,0.054546,0.118182,0.125620,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,1.060331,0.000000,0.000000,0.000000 -602056.555000,4612735.550000,6572,3255,123.897537,173.646286,170.687607,161.315720,146.233063,133.514053,131.183487,128.695877,127.381828,132.249603,131.191742,142.538849,160.100830,176.712402,188.811584,198.588440,196.976868,186.200012,162.646286,140.968597,129.076050,124.117363,117.927284,90.571907,72.348770,87.952072,101.100838,76.067787,35.472748,16.193407,10.720680,6.343813,9.745469,8.813235,8.592577,5.809926,1.458681,0.918183,0.506612,0.501654,0.510744,0.000000,0.000000,0.000000,0.000000,0.449587,0.000000,0.000000,0.000000,0.000000 -602068.555000,4612735.550000,6632,3255,113.025635,168.804138,164.142975,158.126450,145.985962,136.581009,135.481842,131.308289,128.432251,131.002502,130.159531,140.085144,157.349594,174.704971,187.580994,196.572739,195.316528,184.258682,160.928101,138.357880,127.242172,122.407463,117.845474,88.680168,73.283493,88.878517,101.225632,75.936386,34.275230,13.587620,10.713242,5.026456,6.543817,7.409105,7.601666,2.666948,0.996696,0.100000,0.250414,0.178513,0.323967,0.000000,0.000000,0.067769,1.328926,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.955000,4612735.550000,6664,3255,100.826462,171.397537,170.407440,158.324814,141.665298,130.002487,129.704987,126.060333,125.415710,126.349602,126.729767,139.275208,158.176041,175.134720,187.564468,196.109924,195.283478,183.308273,158.233887,135.407440,124.762817,120.928108,116.572731,86.483490,71.607452,87.878525,103.663651,73.663651,35.855389,14.246299,10.597540,10.022329,8.397535,9.330595,9.465302,5.714886,1.876036,1.587606,0.940498,0.000000,0.109918,0.000000,0.235538,0.100000,0.000000,0.000000,0.000000,1.130579,0.000000,0.000000 -602079.755000,4612735.550000,6688,3255,113.011581,168.720673,175.737213,162.795044,145.704147,130.538864,129.993408,125.481010,125.910759,126.059525,127.365311,139.249603,158.825638,176.023987,186.222336,196.767776,196.767776,180.842163,157.800842,135.866943,123.908287,120.503319,115.990929,87.057037,71.794235,87.499184,101.552902,74.784309,34.325642,14.409110,10.544646,9.486793,8.994230,9.080180,8.827288,4.701659,3.562814,2.772730,1.933886,0.885951,1.177687,0.863637,0.000000,0.227273,2.580166,2.547108,0.000000,0.000000,0.000000,0.000000 -602085.355000,4612735.550000,6716,3255,105.426460,171.295853,166.760330,153.530594,133.677704,121.409103,121.076874,120.556213,119.704971,122.374397,122.374397,135.399200,155.762817,173.250427,184.812408,194.721497,194.167770,179.886780,156.002472,135.043823,123.498360,119.754562,114.754562,85.878525,70.704971,86.779350,103.159508,75.118195,36.498367,14.100843,10.432250,11.582659,9.600840,10.692574,13.952081,7.942158,5.250420,4.138846,4.122317,6.557854,2.472729,3.179341,2.166943,1.858679,0.000000,3.372728,0.687603,1.760331,0.000000,0.994215 -602089.555000,4612735.550000,6737,3255,110.676865,178.770264,174.052902,159.185120,142.218185,128.400009,130.242981,125.829765,124.292564,126.871078,124.970253,137.998352,157.552063,174.750397,186.353714,196.510727,194.196686,179.229736,156.709076,133.763641,122.738846,119.970253,113.490913,84.920670,69.342171,86.135551,102.089264,73.890923,35.168613,13.867785,10.317373,12.507454,8.623982,7.652905,10.210758,5.267776,1.323969,0.885125,0.739670,0.766116,0.658678,0.542149,0.823141,0.747934,0.000000,0.000000,0.000000,5.150414,1.171075,0.000000 -602093.555000,4612735.550000,6757,3255,122.000839,187.359497,176.574402,163.202499,145.326462,133.078522,132.144638,128.954559,128.665298,130.078522,129.086792,141.516541,160.797531,177.814072,189.913223,198.814072,197.425629,182.921509,158.847122,136.723160,124.516548,121.929771,117.318199,87.293404,71.524811,86.442162,100.979355,74.871918,34.144650,13.569440,10.665308,8.328114,6.439684,8.559521,8.348774,3.523975,0.966118,0.176860,0.064463,0.063637,0.223141,0.000000,0.006612,0.071901,1.500827,0.000000,0.000000,0.000000,0.000000,0.000000 -602097.355000,4612735.550000,6776,3255,112.262833,179.462830,174.942169,159.396698,143.214874,129.074402,129.347122,126.041336,126.206627,127.016548,125.884315,139.570267,158.388443,175.826462,187.462830,198.140503,195.628098,181.314072,158.545456,136.363647,123.892578,121.264481,115.818199,85.628113,71.074394,87.000015,101.785141,72.801666,35.090931,12.673570,10.528945,10.397534,8.052079,9.888444,10.369436,5.173563,0.872729,0.623968,0.534711,0.285951,0.516529,0.826447,0.170248,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.955000,4612735.550000,6794,3255,112.964478,187.924820,189.394241,179.567795,159.402512,141.361176,140.187622,138.534729,136.807465,140.237213,137.766144,151.600845,169.311600,187.022339,197.055405,206.799194,203.567795,187.931427,164.311600,140.154572,127.700020,123.443817,117.700020,87.939690,72.402496,87.468613,101.518196,74.402496,36.681839,13.018198,10.700020,13.803322,10.871916,12.746298,13.235553,8.790920,4.433889,3.452896,2.847111,2.569424,1.883472,1.107439,0.930579,0.880166,0.757851,0.000000,0.604959,0.000000,0.000000,0.000000 -602103.955000,4612735.550000,6809,3255,120.509102,178.360336,174.145462,162.401672,147.153732,131.600006,132.352081,128.203323,127.071091,130.806625,128.095886,139.839676,156.856216,175.087616,187.740509,197.186783,195.451248,180.740509,157.319016,136.707458,124.765305,121.277702,116.327286,87.616539,71.988449,87.847946,102.467781,72.955391,34.914070,14.403323,10.575226,10.233071,8.297535,8.331418,8.290923,4.033892,0.746283,0.129753,0.270249,0.099174,0.001653,0.000000,0.414050,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.755000,4612735.550000,6833,3255,119.907455,165.494232,164.246307,159.659531,142.370270,129.105804,126.899185,123.965302,122.750427,125.287621,123.585136,134.204971,150.246307,167.709106,179.395065,188.833084,187.312424,174.535553,150.907455,130.155380,118.849602,115.857864,111.981834,85.750427,69.576874,85.395058,95.527290,70.824806,32.403324,12.709107,10.180185,5.291746,8.662001,6.000836,8.136375,2.744632,0.309918,0.157026,0.152893,0.081819,0.001653,0.149587,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.355000,4612735.550000,6856,3255,107.952087,166.836395,167.348785,159.224823,141.588455,129.357040,127.852898,124.629768,123.042992,126.266136,124.795059,135.381821,150.654572,168.737213,179.580185,189.026474,188.117386,175.340515,150.894241,131.398346,120.720680,117.704147,110.654564,86.018196,70.332253,84.662827,97.208282,73.009933,34.249603,13.932249,10.059524,5.594225,7.326460,7.139681,6.889268,2.556203,0.633059,0.043802,0.069422,0.161158,0.000000,0.061984,0.243802,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.155000,4612735.550000,6885,3255,101.053734,159.549606,164.466965,153.599182,139.657043,124.913239,123.533073,120.731422,119.376053,121.508278,120.128113,129.334732,147.566132,162.276871,174.119858,184.103317,182.376053,170.466965,148.004150,127.582664,116.342995,113.409103,107.318199,80.392578,65.202499,84.194229,97.623985,73.657043,34.524815,13.546299,9.756216,6.200009,6.153732,7.526457,6.609929,2.978518,0.373555,0.495042,0.181819,0.000000,0.104132,0.000000,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.355000,4612735.550000,6926,3255,95.584312,162.741333,163.402496,154.138031,139.840485,126.964470,125.022324,120.832245,119.766129,120.526459,119.890091,130.270264,146.220673,162.518188,173.939697,183.559525,181.468628,170.857056,148.724808,129.633896,116.914886,113.071922,107.063652,81.410759,66.600845,83.749603,98.832253,73.766136,35.319851,14.267786,9.733077,4.866951,6.761171,7.054556,7.629765,2.923971,0.675208,0.000000,0.042975,0.149587,0.176033,0.000000,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.555000,4612735.550000,6982,3255,87.542160,146.922333,159.120667,151.476028,133.500839,125.302490,121.550423,117.186790,113.004974,115.492577,115.856209,126.137199,143.079346,159.112411,170.343796,180.343796,178.839661,168.219833,146.765289,125.757034,116.161995,110.980179,103.690926,79.624809,63.707455,83.930588,98.955383,75.004974,35.114067,13.031422,9.426465,6.305796,7.474395,7.062822,7.401665,3.074385,0.778514,0.263637,0.220662,0.051240,0.200827,0.059504,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.155000,4612735.550000,7025,3255,82.347122,147.669418,156.677689,146.595047,133.578506,123.578514,120.066116,116.223137,112.917358,114.404961,113.710747,124.669418,141.669418,158.264465,169.512390,180.239685,179.082657,166.669418,146.074387,124.719009,113.958679,109.760330,103.000000,76.892578,62.330597,80.950432,96.958679,73.314064,33.900848,12.524811,9.363655,3.887613,6.077700,5.709929,5.596705,1.629757,0.414051,0.083471,0.144629,0.178513,0.033884,0.181819,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.755000,4612735.550000,7058,3255,89.191750,150.414871,161.133881,150.538834,135.340515,124.836380,121.439690,117.133904,116.472748,116.481010,116.712418,127.224808,145.216522,161.522308,173.142136,182.522308,182.018173,169.935532,148.191727,126.762001,115.704147,112.976875,105.927292,78.976875,65.894234,81.654564,97.555389,72.406631,33.257870,13.214894,9.629772,5.134720,6.960346,5.899185,5.504143,2.890914,0.452068,0.003306,0.109091,0.109091,0.000000,0.000000,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.955000,4612735.550000,7074,3255,94.177704,149.648773,163.500015,150.681839,136.095062,125.871918,122.219025,119.632248,117.285141,117.623985,117.979355,128.822327,144.880188,161.268616,173.657043,183.400848,182.524811,171.111588,148.698364,128.185974,117.491753,112.979355,106.318199,81.566132,66.764481,84.690102,98.194229,72.979355,34.607460,12.981009,9.665308,6.235549,6.756214,6.836377,6.856211,2.506616,0.728101,0.008265,0.145455,0.019835,0.000000,0.000000,0.205785,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.155000,4612735.550000,7095,3255,86.931419,149.243820,160.458694,150.706635,136.252075,125.880180,123.235550,119.086792,118.293404,118.731422,118.805801,129.566132,146.871918,162.136383,175.483490,185.004150,183.871918,171.450424,148.202499,128.045471,118.276878,112.805801,106.500015,81.227287,66.681839,82.475220,96.690102,70.500023,32.698368,13.166134,9.681837,6.001664,7.141338,8.352079,7.870259,2.971079,0.601654,0.392563,0.405786,0.386778,0.000000,0.000000,0.195868,0.388430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.155000,4612735.550000,7130,3255,91.022331,151.352890,159.848755,153.592560,139.253723,128.700012,125.931419,122.559525,121.757866,122.873573,123.030594,133.914886,150.691727,166.427261,178.228912,189.303299,188.699997,176.890076,153.501648,134.799194,121.972748,118.303322,113.063652,86.311577,71.336380,88.361176,98.815720,74.799194,34.476883,13.555390,10.278531,7.119021,7.722330,8.324807,6.614889,2.644633,0.121488,0.009091,0.101653,0.293389,0.000000,0.232232,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602175.555000,4612735.550000,7167,3255,103.652908,147.000015,161.752075,151.876053,138.768616,130.479355,127.454559,124.933899,122.578529,124.165306,126.198364,136.107452,152.396713,168.892578,180.892578,191.148773,190.793411,179.247955,156.570267,136.958694,125.752083,121.752083,116.545471,89.380180,74.330597,90.033073,100.867783,73.421501,34.834732,13.518200,10.595059,6.119020,7.223981,7.152079,8.358689,2.642154,0.766118,0.411572,0.114050,0.265290,0.006612,0.142976,0.428100,1.053720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.955000,4612735.550000,7199,3255,91.138863,149.998367,161.981827,154.196701,139.378525,129.362000,126.783485,123.411583,122.254562,123.345467,123.667786,135.378525,152.626450,167.452896,179.923981,190.353729,188.990082,177.957031,155.775208,135.775208,124.742165,120.915718,115.436378,88.576874,74.444649,89.428116,101.163651,76.419861,35.766964,14.332251,10.494234,5.380176,8.279353,7.900014,7.223151,4.649596,0.880167,0.256199,0.238843,0.053719,0.428926,0.007438,0.000000,0.188430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.555000,4612735.550000,7242,3255,79.049606,145.454544,157.322327,148.429764,136.199188,127.066956,122.918198,118.512413,117.801666,117.446297,119.652908,129.099182,146.917374,161.933914,172.181839,182.206604,181.380188,169.727295,148.008286,128.504974,119.529762,115.810760,110.554558,85.149597,70.736374,87.331421,101.257034,74.571091,35.951260,15.666133,10.050431,6.126458,7.933899,6.562822,5.641334,3.395048,0.608267,0.055372,0.000000,0.418183,0.084298,0.051240,0.079339,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602198.755000,4612735.550000,7283,3255,80.987617,149.384308,161.632248,150.814056,136.020660,125.838860,121.615715,118.582664,116.442162,116.698364,117.268608,128.830597,146.442169,161.384308,172.987625,182.119858,180.855392,169.037201,146.979340,126.904976,115.557869,111.714890,105.772743,79.367783,65.938034,83.004150,99.747948,73.334724,35.376053,13.300016,9.615722,6.493400,7.423982,7.670260,6.301665,4.038850,0.629753,0.258678,0.100827,0.020661,0.016529,0.000000,0.086777,0.329753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.355000,4612735.550000,7306,3255,80.009933,148.381821,157.522324,148.538849,132.125641,123.100845,121.489273,115.852913,115.505806,114.985138,115.629768,127.026466,145.100845,160.836380,171.803314,182.051270,180.844650,168.357040,145.885971,127.381836,115.249603,111.728943,107.654564,79.885971,64.588448,83.282661,97.200020,71.919029,31.290930,12.920678,9.786797,6.123979,6.314064,7.433897,7.030590,3.126453,0.439671,0.000000,0.036364,0.000000,0.000000,0.083471,0.245455,0.437191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602206.155000,4612735.550000,7320,3255,89.742996,149.346298,161.850433,151.916550,136.536377,125.858696,123.147957,120.098366,117.949608,117.701675,119.023987,130.263657,147.230591,162.420685,173.181015,182.776016,181.585938,169.957870,147.379364,127.668617,116.635559,113.048782,107.809113,80.709938,66.222336,84.139687,99.313240,73.949608,36.652084,14.935555,9.800846,6.393401,8.476048,8.202492,8.298361,3.217362,0.752894,0.459505,0.277687,0.000000,0.095041,0.129752,0.272728,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.755000,4612735.550000,7338,3255,93.643822,148.866943,161.486786,151.214050,136.519836,125.354568,122.676880,118.420677,116.470268,116.528122,117.106628,128.643814,146.222321,161.197525,172.792572,181.676880,180.734726,167.362808,146.445465,126.073570,115.114899,112.007454,106.081841,79.784317,65.619026,83.891754,98.214066,74.742996,35.205803,12.890100,9.643820,5.667779,6.844643,8.372741,8.298359,3.052073,0.326447,0.144629,0.176860,0.031405,0.129753,0.069422,0.192562,0.283471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602214.955000,4612735.550000,7364,3255,87.738861,150.829758,162.507431,149.259506,134.804977,124.077698,120.813232,116.523979,113.829765,114.548775,113.879349,124.879349,142.160339,157.714035,168.738831,178.342133,176.639664,164.234695,143.061157,122.036377,111.193398,107.375221,101.036377,75.110764,60.763657,79.912415,96.540504,72.077705,32.889275,11.693405,9.185143,5.822323,7.486791,7.315715,6.884309,3.633893,0.680993,0.177686,0.081818,0.062810,0.197521,0.057851,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.955000,4612735.550000,7404,3255,91.704971,148.209091,156.655380,147.605789,131.258698,120.118195,117.068611,112.440514,110.093407,108.762825,109.349602,120.209106,139.655380,154.605789,165.837204,175.630585,175.134720,159.870255,140.142975,120.060349,109.333069,103.878525,97.209106,70.225632,57.134724,77.994232,96.308281,74.159515,33.498367,13.576052,8.837210,5.810753,6.594228,7.933898,6.591746,3.146287,0.650415,0.036364,0.112397,0.128100,0.000000,0.061157,0.000000,0.000000,0.000000,2.014050,0.000000,0.000000,0.000000,0.000000 -602225.955000,4612735.550000,7419,3255,89.021507,152.707428,160.517349,148.616531,134.525635,120.790092,118.062820,111.847946,109.872742,108.666130,108.343811,119.831421,138.633057,154.889252,166.062805,176.219833,174.145447,160.203308,139.236359,119.897537,107.699188,102.947121,95.327286,69.823158,56.104153,77.277710,97.633072,73.914070,35.418201,12.003325,8.666136,5.121497,6.481004,6.789270,6.635550,2.567775,0.662812,0.079339,0.037190,0.065290,0.000000,0.000000,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.155000,4612735.550000,7455,3255,92.899185,155.395050,162.130585,149.758682,132.568604,121.742165,119.213234,114.642990,112.725632,111.452904,111.312408,122.163651,142.742157,158.428101,169.882645,179.775208,178.981827,163.684311,142.560333,121.477699,109.271088,105.362000,98.618195,71.791748,56.766960,75.634727,97.923981,74.585136,34.923988,12.489274,8.965309,5.100009,7.646296,6.708279,6.881004,2.534717,0.912400,0.057852,0.185951,0.047934,0.000000,0.000000,0.676861,0.000000,0.000000,0.000000,0.000000,1.563636,0.000000,0.000000 -602236.955000,4612735.550000,7474,3255,93.669426,148.801666,162.016541,152.247955,134.628113,122.520668,120.975212,116.537201,113.049591,112.785133,112.355377,124.355377,143.669434,160.198364,172.404968,181.181839,179.859528,164.148773,142.925629,122.884308,111.297531,107.000008,98.909096,73.173569,60.272747,77.735550,98.338852,75.719025,32.165306,12.227289,8.991755,6.698357,7.105800,7.253732,6.819847,2.915707,0.575208,0.419835,0.171075,0.237191,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.355000,4612735.550000,7491,3255,89.113243,152.633896,161.245468,150.038849,132.823975,121.154556,118.187614,113.452072,112.146294,111.295052,110.138023,122.947945,142.071899,158.377701,170.435532,181.286789,178.625626,163.716537,140.881805,121.468605,110.022324,105.377693,99.518188,72.600845,58.138035,77.501671,96.997528,71.542992,33.336380,11.040512,9.047126,6.123150,6.349601,7.031418,7.440508,2.669425,0.733886,0.004132,0.048760,0.208265,0.314877,0.000000,0.000000,0.412397,0.000000,0.000000,1.405785,2.282645,0.000000,0.000000 -602244.555000,4612735.550000,7512,3255,103.381004,152.430588,162.000839,150.306625,133.488449,122.604149,120.257034,114.381004,112.868607,112.141335,112.124809,123.645470,141.976044,158.496704,171.091751,181.471909,179.232239,164.546295,142.769440,122.430588,112.000839,107.364479,100.281822,73.670265,58.703327,76.752914,98.843803,74.190933,33.174400,11.036380,9.116548,8.112407,7.386791,7.040509,7.654558,1.757028,0.400829,0.176860,0.269422,0.038843,0.044628,0.055372,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602248.155000,4612735.550000,7530,3255,82.830597,153.623978,161.070267,150.384308,133.161179,121.590927,119.177704,114.549606,112.078529,113.111588,111.351257,123.698364,141.805801,159.070267,169.483490,181.252075,180.309937,165.557861,144.500015,122.756218,111.342995,107.607452,100.681831,73.268608,58.739689,77.863655,99.946297,74.954559,34.830597,12.295885,9.152912,8.373566,7.984313,5.739681,7.727286,2.306617,0.410746,0.167769,0.045455,0.109092,0.157025,0.000000,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.955000,4612735.550000,7554,3255,85.843002,159.545471,161.925629,153.892578,136.495880,122.685959,119.586784,115.793396,112.942154,114.264473,113.322319,124.801659,143.909103,161.438034,171.752075,182.545471,180.264481,167.090927,145.231415,125.074387,112.586784,109.909096,102.818192,74.595047,60.710758,79.512405,100.991745,74.173561,35.710758,13.420678,9.347128,8.634723,8.471089,7.399188,7.461995,3.300833,0.608266,0.271902,0.045455,0.202480,0.000000,0.000000,0.085124,0.338843,0.000000,0.000000,0.000000,2.444628,0.000000,0.000000 -602256.555000,4612735.550000,7572,3255,78.719032,159.619827,158.471069,151.223145,134.983475,121.206619,118.636375,115.231415,112.652901,113.371910,111.008270,122.991745,141.289261,158.074387,169.272720,180.314056,177.900833,163.512390,143.438019,122.479347,110.157036,106.743813,100.454552,72.859520,58.636383,77.363647,98.033066,72.256203,32.363655,11.353736,9.132251,6.411580,6.208277,6.585138,6.265300,3.322321,0.878515,0.273555,0.249588,0.000000,0.000000,0.000000,0.170248,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.955000,4612735.550000,7599,3255,80.704971,160.564484,162.134750,152.440536,134.002487,120.225632,119.101669,114.523155,112.101669,113.126457,110.440514,122.060356,139.812424,156.002518,167.936401,178.109940,175.787628,162.068634,142.027298,121.622330,109.655388,105.341339,99.118195,72.490097,57.316547,76.101669,96.473572,72.473572,32.878532,13.518200,9.010763,8.022326,7.072742,7.018195,6.890094,2.695874,0.920663,0.014050,0.047108,0.204133,0.109091,0.000000,0.148760,0.410744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602271.155000,4612735.550000,7645,3255,99.573570,167.072739,164.213226,152.692566,135.775223,122.370262,119.089272,114.816544,112.882660,114.279350,110.593407,122.494232,139.461166,157.188431,168.609924,178.775208,176.138855,161.114059,142.105789,122.684311,110.469437,105.800018,100.436378,73.378532,58.923988,78.461182,97.097534,74.262833,36.122337,14.399190,9.130598,10.925634,7.170263,7.723978,8.171087,4.130586,0.610745,0.224794,0.106612,0.023141,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602276.955000,4612735.550000,7674,3255,99.785156,166.950439,159.958694,154.421524,135.388458,121.338875,119.264488,116.115738,113.057884,115.504166,110.851273,121.743828,139.107452,155.619873,167.925629,177.826477,173.909119,159.024811,140.140533,120.537216,108.057884,104.429787,98.454575,71.479370,59.016552,76.537224,93.272751,69.925652,31.454563,12.453736,8.950433,9.302491,6.886790,7.131418,7.169433,2.676039,0.356199,0.359505,0.039670,0.023141,0.000000,0.000000,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602282.555000,4612735.550000,7702,3255,112.761177,168.166946,160.869431,150.778519,133.191757,119.001678,115.489281,111.357048,109.762009,112.224823,108.266144,119.323990,136.828125,153.200012,165.200012,175.869431,173.109100,157.158691,138.266144,118.844650,107.588455,103.009941,96.927299,70.109108,57.249607,76.398361,95.042999,70.208282,33.183487,11.762828,8.811589,9.389268,6.796708,6.848773,7.561996,3.885956,0.321489,0.162810,0.042975,0.189257,0.000000,0.000000,0.000000,0.000000,1.423141,0.000000,2.263637,2.645455,0.000000,0.000000 -602285.755000,4612735.550000,7718,3255,110.909935,171.116547,163.100006,152.628952,130.133072,119.546303,115.050438,111.174400,109.562828,111.257050,106.852089,117.298370,135.496704,152.546310,165.091751,174.554565,171.785965,155.843826,138.438873,118.281837,104.728119,101.480186,97.372749,68.662010,54.133080,75.240517,95.967789,71.199196,33.794235,13.306629,8.852086,9.304970,6.793402,5.825633,5.290092,2.880996,0.630579,0.635538,0.263637,0.000000,0.000000,0.000000,0.044628,0.000000,0.000000,1.328926,0.000000,0.000000,0.000000,2.118182 -602291.155000,4612735.550000,7745,3255,125.544640,168.833908,161.387619,151.734726,132.709930,119.445465,114.974388,111.990921,109.453728,112.371086,106.718193,118.519844,135.974396,152.470261,163.329773,174.767792,170.833908,155.900024,138.147949,117.726456,105.602493,102.156212,95.172737,67.627281,55.552902,76.073563,96.023979,70.536377,35.338036,12.311586,8.652085,10.712409,6.963649,7.794229,7.171088,2.131408,1.009920,0.300001,0.013223,0.014050,0.209091,0.000000,0.000000,0.128099,0.000000,1.474380,0.000000,0.000000,0.000000,0.000000 -602299.555000,4612735.550000,7787,3255,140.607452,153.376053,145.681839,133.384308,118.954552,106.954552,101.979347,97.202484,95.929764,96.533066,96.235542,106.987610,124.706619,140.533081,152.475220,161.814072,163.053741,150.095062,130.971069,109.549591,97.855377,94.888435,88.863647,63.714897,49.351261,68.971092,90.657036,68.268608,31.320681,10.456215,8.078532,5.821500,8.258691,6.008276,8.284308,4.367775,1.522318,0.123141,0.339670,0.118182,0.033884,0.000000,0.066942,0.588431,8.671902,3.966942,3.548760,0.000000,0.000000,6.234712 -602307.155000,4612735.550000,7825,3255,169.961182,162.911575,143.523148,128.597534,111.746284,101.316536,96.969429,92.853729,90.622322,90.605789,89.126450,100.663643,117.680168,133.564468,144.779343,154.812408,152.357864,142.266953,123.870255,105.812401,95.547943,91.242157,85.845459,60.440514,46.506630,67.002495,90.911575,71.663658,33.473572,11.244646,7.804152,10.537203,8.340509,9.258689,12.034725,7.694226,0.696698,0.771077,0.082646,0.242150,0.340496,0.000000,0.062810,0.412398,8.536365,9.916531,0.000000,0.000000,1.794215,11.972729 -601493.155000,4612725.550000,3755,3305,109.969444,136.368607,126.765305,117.236374,102.186790,92.748772,89.591751,87.327286,87.261169,88.914062,89.839684,100.583481,118.418198,134.732239,148.054565,157.798355,158.922333,150.062820,128.914062,109.285965,100.104149,96.393402,91.054558,63.814896,45.723988,62.847954,81.285965,60.013245,27.768616,10.200014,8.277705,13.300015,8.100841,11.290097,12.762827,12.247121,3.311578,1.707442,1.076035,0.586778,0.599175,0.985952,1.071902,1.504961,16.867771,24.489260,8.991737,11.204962,4.043803,7.894216 -601496.755000,4612725.550000,3773,3305,119.253738,139.954559,133.913239,120.541336,106.276878,98.185966,94.995880,93.607452,93.301666,95.276878,96.376053,107.367783,125.574394,141.557861,155.632248,166.070267,166.417374,157.227295,133.103317,112.541336,101.962830,98.475220,92.772743,65.648773,47.574398,63.417370,77.896713,57.136379,24.715721,10.342991,8.433904,7.935551,7.690094,9.970263,10.694229,7.635548,1.889261,0.821490,0.090910,0.275207,0.246282,0.490083,0.564464,0.902480,5.464463,12.514877,10.146283,3.580993,3.195868,15.306612 -601501.555000,4612725.550000,3797,3305,121.567795,136.173569,133.636383,121.721504,110.870262,103.133072,101.223991,98.438866,98.211594,100.426468,101.552086,113.039680,130.345474,146.655396,160.043808,170.085129,171.614059,160.738022,136.448761,115.622330,105.860344,101.901665,96.390930,70.298370,53.042164,66.066956,80.184319,56.754559,26.657045,10.114065,8.762829,9.085137,8.477698,10.908280,9.534723,6.542158,1.807443,1.141325,0.369423,0.352893,0.600827,1.118183,0.738018,0.814877,6.555373,7.919836,6.657853,5.142976,5.158678,5.114050 -601507.755000,4612725.550000,3828,3305,99.746307,142.932251,136.221512,126.874397,113.089272,102.882660,101.229767,99.271088,99.684311,100.800018,102.543816,113.444641,130.651260,147.064484,160.485977,171.204987,171.262833,159.568619,135.957047,115.469437,104.081009,100.543816,94.345467,67.758698,50.527294,64.576881,77.676056,55.717373,24.435555,10.276049,8.576880,8.370262,9.006624,8.666131,7.969435,4.136371,1.110747,0.176034,0.457852,0.055372,0.000000,0.000000,0.409092,0.287604,10.395869,1.686777,2.295042,3.128926,2.719835,3.787603 -601517.155000,4612725.550000,3875,3305,110.912407,142.776855,138.305786,126.933891,114.256203,107.322327,104.471085,102.925629,101.735542,103.413231,104.066124,114.942162,132.900833,149.876038,162.719009,172.950409,172.289261,161.644623,139.272720,118.776871,106.892578,102.256203,97.636375,68.694237,51.205803,66.429771,79.421494,58.438038,26.760349,11.444646,8.876053,6.842986,7.186789,8.618196,9.266130,3.857857,1.473558,0.880994,0.351241,0.685125,0.390910,0.015703,0.478514,0.156199,1.020661,4.745455,2.940496,6.119009,2.755372,0.000000 -601527.755000,4612725.550000,3928,3305,118.276871,146.246292,141.031418,129.105804,113.411583,104.362000,100.692574,99.072739,98.568611,99.890923,101.692574,112.155388,130.023148,147.791748,159.155380,169.279343,169.114059,159.163635,136.378525,115.965302,105.006622,100.155388,94.072739,65.700844,48.312412,64.948776,79.527290,60.238029,25.827290,9.394231,8.552086,4.612407,7.011582,7.332245,7.717369,2.806618,0.511572,0.067770,0.005785,0.000000,0.000000,0.000000,0.535538,0.000000,0.994215,2.876034,2.339670,6.408266,4.879340,1.876033 -601531.955000,4612725.550000,3949,3305,145.857025,148.655380,142.192566,132.878525,116.853737,107.266960,104.572739,102.457039,101.357864,103.944641,103.779350,115.977699,133.283493,150.804138,162.300003,171.746292,171.233887,161.002487,138.911575,117.862000,107.498360,103.506622,96.118195,69.423988,51.762833,65.721512,82.250427,62.118206,28.068615,13.377703,8.738036,6.892574,9.290098,8.068609,7.806626,4.271909,0.947110,0.352893,0.235538,0.565290,0.289257,0.404133,0.946282,0.197521,6.848761,0.828926,3.241323,1.585951,0.859504,1.853719 -601536.155000,4612725.550000,3970,3305,124.626457,150.247971,141.099213,132.586792,117.140503,106.892570,104.016541,102.661163,100.595055,102.322319,103.876038,114.537201,133.024811,149.818192,162.735565,171.165329,171.090942,160.595078,138.661194,117.421494,106.644638,102.223152,96.090927,67.421501,49.966961,66.041336,82.000015,61.851257,26.710764,10.038859,8.735558,5.625631,7.635550,9.027287,8.371088,3.183476,1.027275,0.644630,0.555373,0.468596,0.716530,0.514050,0.409092,1.526447,3.862810,2.028099,4.007439,1.514876,0.993389,0.000000 -601542.755000,4612725.550000,4003,3305,119.657043,152.428101,141.494217,131.750443,118.485970,107.593414,104.295883,104.031418,100.998360,104.692574,104.097534,114.866135,132.882660,149.006622,161.766953,171.395050,169.833069,160.097534,138.634720,117.709114,106.130592,102.444641,94.436378,67.056213,49.700848,66.114067,82.229767,61.791759,25.981836,10.384314,8.585142,5.669433,7.219020,6.205797,7.929765,3.132238,0.743803,0.358679,0.142976,0.152067,0.000000,0.028099,0.971901,0.000000,2.145455,0.000000,1.466942,1.413223,0.980165,0.000000 -601546.955000,4612725.550000,4024,3305,131.471085,177.677704,160.016556,150.413254,130.776871,118.454559,116.173569,114.289276,113.264481,119.074394,114.801666,125.809937,143.314072,160.669449,173.008286,183.983490,180.917374,166.966980,146.074402,126.644646,114.363655,111.305801,106.545471,75.520676,60.776875,77.090919,89.768600,65.148773,31.181839,13.190101,9.685969,10.702496,8.577702,7.956212,7.997534,3.604139,0.514877,0.111571,0.063637,0.056199,0.103306,0.000000,0.000000,0.000000,0.000000,1.242975,0.000000,0.000000,0.000000,0.000000 -601552.155000,4612725.550000,4050,3305,130.637207,178.405792,157.769440,149.909927,132.761169,118.546295,117.166130,115.918198,114.058693,119.934723,114.967781,125.860352,143.571091,161.281830,173.918198,184.116562,180.827301,166.488449,146.364471,126.752907,114.852081,111.852081,106.918198,77.033897,61.215721,77.604149,90.124809,66.662003,30.967787,12.766960,9.719854,12.800015,8.403322,7.034723,7.234725,4.017363,0.531406,0.144628,0.005785,0.211571,0.089256,0.096694,0.000000,0.000000,0.000000,1.393389,0.000000,1.094215,0.000000,0.000000 -601558.155000,4612725.550000,4080,3305,122.839684,175.071091,157.046295,148.947113,131.244644,118.327286,117.525635,115.137199,113.773567,118.153732,114.558693,125.947121,143.079346,161.575226,172.814896,183.583481,181.186783,166.657867,146.393402,126.881004,114.633072,111.418198,105.872742,76.847946,60.343822,76.310760,89.649597,67.434731,31.963655,12.867786,9.624812,11.952909,7.498363,8.431420,8.749601,3.057858,0.288431,0.261157,0.000000,0.226447,0.017356,0.000000,0.259504,0.000000,0.000000,0.000000,0.915703,0.913223,0.000000,0.000000 -601560.755000,4612725.550000,4093,3305,107.203316,174.277695,158.872742,146.319016,132.104141,117.542152,117.277687,114.459511,113.426453,117.682648,113.277687,126.319016,142.682678,160.079346,172.971909,182.137207,179.723984,166.517365,144.666138,126.575211,114.434715,111.707443,105.236366,75.947121,59.566956,75.856209,89.434715,65.294228,30.404154,11.890927,9.566961,13.200843,7.381834,9.075223,8.561997,3.860337,0.771076,0.193389,0.107438,0.043802,0.000000,0.005785,0.000000,0.000000,1.327273,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.555000,4612725.550000,4107,3305,105.237206,171.336395,157.220688,145.914902,131.551254,116.038864,115.468613,114.319855,112.005806,115.939690,113.385971,125.476875,142.567795,160.542999,172.022339,181.576065,180.154572,165.427292,144.600845,124.923157,112.493408,110.873573,104.609108,75.245476,59.352909,74.319855,89.319855,66.410759,30.237209,11.726463,9.509937,11.343818,7.283487,6.662824,7.060345,3.896702,0.671076,0.244628,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.155000,4612725.550000,4130,3305,106.549583,168.012405,156.301666,146.789276,129.995880,117.814064,117.095055,114.053734,114.194229,116.962830,113.855385,125.111588,144.838852,161.838852,173.095062,182.971085,180.500015,166.904968,145.640518,125.384315,113.690102,111.681831,104.590919,75.615715,59.896709,74.516548,89.805801,66.516548,31.582664,12.375224,9.508284,11.210758,7.632247,7.915717,8.257865,4.090917,0.371075,0.047108,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.084298,0.000000,0.000000 -601572.155000,4612725.550000,4150,3305,107.436386,167.213226,155.229782,144.915726,128.023163,116.700851,115.874405,113.370270,112.386803,114.990105,113.634735,125.204979,142.915726,160.353729,171.692566,181.328934,180.080994,165.890915,144.188446,124.609940,113.056221,110.204979,103.618202,75.841347,58.403324,73.824814,89.271095,64.461174,29.304152,10.564480,9.419854,9.747121,7.477703,6.814063,7.236377,2.762815,0.173554,0.119835,0.004132,0.000000,0.000000,0.100827,0.000000,0.000000,1.174380,1.205785,0.000000,0.977686,1.237190,0.000000 -601575.355000,4612725.550000,4166,3305,91.676880,167.851257,153.297531,145.809937,129.834732,116.198364,116.694229,113.983490,113.776878,116.057869,113.479355,126.388443,144.115723,161.512405,172.338852,182.578522,180.413239,167.991745,144.925629,124.727287,114.438034,110.760345,104.454559,76.603333,60.115723,73.818207,89.925644,66.132248,30.842993,11.684316,9.495887,8.308279,7.326461,7.469437,8.426460,2.282651,0.395869,0.200827,0.039670,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.971901,0.000000,0.000000 -601578.355000,4612725.550000,4181,3305,102.724800,158.956207,154.799179,144.030594,129.782654,117.278519,116.501663,113.154556,112.328110,115.270256,113.352905,124.947945,144.096710,159.890091,172.592575,180.914886,181.104965,167.195877,146.187607,124.790916,114.047119,110.724800,105.336372,75.576042,59.964485,74.212410,89.220673,66.104973,30.526466,11.510760,9.576052,8.328114,8.124808,7.630592,7.341335,2.780171,0.449588,0.351240,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.114876,0.000000,0.000000,0.000000,0.000000 -601581.755000,4612725.550000,4198,3305,115.574387,167.036377,157.829773,146.077698,131.168610,118.548775,117.738853,115.085953,114.143806,115.796700,115.127274,127.474388,145.482666,161.747131,174.441345,183.697540,181.226471,169.672745,146.697540,125.102493,114.804962,110.887604,105.036377,77.292580,60.912415,76.110764,91.193398,68.581841,31.449606,11.935555,9.548779,7.476871,7.704149,8.849602,9.499188,2.874387,0.677688,1.035539,0.018182,0.049587,0.000000,0.087603,0.000000,0.383471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.555000,4612725.550000,4212,3305,97.904144,157.744644,156.100037,143.984314,128.819016,116.703316,116.422325,112.736374,111.885139,114.116539,113.257034,125.157867,143.215714,160.265305,171.306625,180.331421,179.009109,167.083481,144.463654,124.405800,111.860344,109.265305,103.009102,74.331429,57.703323,72.438866,88.496704,65.455391,27.331425,10.674397,9.364483,6.994228,6.352081,6.825632,6.230591,2.474385,0.499175,0.130579,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.555000,4612725.550000,4232,3305,106.624809,158.466965,156.128113,144.987625,130.648758,117.392563,116.590912,114.086784,112.078522,114.466942,113.466949,124.797523,144.508286,159.326462,170.747940,180.615723,179.111572,167.037186,144.442169,124.235535,112.243813,108.615707,102.863640,74.855377,58.169441,72.607445,90.301659,65.442169,28.557871,10.000843,9.351259,7.726460,6.522329,5.751252,8.225633,2.992568,0.147108,0.128099,0.049587,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.232232,0.000000,0.000000 -601592.955000,4612725.550000,4254,3305,105.454559,156.580170,154.819839,144.084320,127.489281,116.547134,115.200027,112.555397,111.051254,112.629776,112.960358,124.456223,143.249619,159.662827,170.216537,180.481003,178.976868,165.861160,143.481018,122.952095,111.175232,108.885979,102.472748,74.638039,57.885971,72.604988,88.943817,65.390099,29.216547,11.538034,9.315722,7.869435,6.527287,6.012410,6.471914,3.240501,0.321488,0.045455,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.755000,4612725.550000,4273,3305,97.439682,162.256210,155.619858,143.859528,130.867783,118.264473,117.148766,113.942154,114.404968,115.504143,116.024803,126.975212,145.727295,161.702499,173.247955,182.884308,181.363647,169.198364,146.520676,125.115707,114.214882,110.479347,104.454552,76.471085,59.917370,74.644646,89.843002,67.024811,31.305805,13.838862,9.495888,8.589271,7.191750,7.849600,7.615716,2.864470,0.551241,0.086777,0.126447,0.000000,0.086777,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.929752,1.119835,0.000000 -601601.555000,4612725.550000,4297,3305,107.298363,154.593399,154.791748,145.221497,131.081009,119.684311,116.766960,115.171913,114.031418,115.874397,114.494232,126.395058,146.081009,161.312408,172.915710,182.552078,180.196701,168.932236,145.890930,124.618195,113.370262,110.568611,104.527290,76.634727,59.973576,74.998360,88.981842,66.452904,29.783491,11.699190,9.502498,7.169434,6.352907,7.590097,8.756212,2.492568,0.583472,0.166943,0.000000,0.000000,0.083471,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.755000,4612725.550000,4328,3305,96.326454,155.651276,157.229797,145.428131,130.965302,119.965302,118.634727,116.122330,114.543816,116.519020,116.725632,128.461166,146.733917,162.609955,174.510773,182.923996,182.295883,171.180191,146.205002,125.667786,114.502495,111.626457,104.709106,77.047951,60.915722,74.899185,90.056213,67.287621,29.841341,12.709934,9.519029,8.875219,7.481835,7.939684,8.600842,2.676865,0.419836,0.257852,0.095041,0.057025,0.000000,0.089256,0.000000,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.755000,4612725.550000,4343,3305,99.108269,145.581818,157.623138,146.490906,131.276031,119.846283,118.557030,116.358681,115.077690,116.532234,117.152069,128.705795,146.581818,163.226456,175.176865,183.738846,183.102478,170.449585,146.317352,125.970253,113.961998,111.474388,104.763649,76.928940,60.019855,75.251259,89.011581,66.028122,29.209936,11.595884,9.523985,5.790922,6.804974,7.864476,7.959518,3.001660,0.236364,0.000000,0.171901,0.053719,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.793389,0.000000,0.000000 -601615.755000,4612725.550000,4368,3305,104.042984,154.856216,157.343811,145.781830,130.996704,121.021500,119.054558,116.955383,115.699188,117.145470,117.285965,128.781830,147.426453,162.930588,174.310760,182.831421,182.996704,170.211578,146.087616,126.525635,113.930588,111.261169,106.145470,77.294228,60.600021,75.823151,90.509102,66.856216,30.814896,11.957044,9.649606,7.696708,8.502496,7.707453,9.303321,4.238025,0.558679,0.341323,0.045455,0.009918,0.019835,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.069422,0.000000 -601623.155000,4612725.550000,4405,3305,87.790924,156.725647,154.808289,145.353745,130.213242,120.047958,119.552086,116.601677,115.849609,117.138863,116.849609,128.899200,146.262833,162.932251,175.386795,183.345474,182.857880,169.948776,146.552094,126.428123,114.866135,109.461182,105.618202,77.403328,60.725639,74.948784,89.519028,64.634727,29.800016,11.437208,9.601672,6.542161,6.026460,7.454559,6.771914,3.916536,0.319836,0.133885,0.000000,0.000000,0.000000,0.093389,0.000000,0.000000,1.144628,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.555000,4612725.550000,4422,3305,106.585960,154.532257,155.821503,143.722336,129.400009,119.383484,117.780174,115.474388,114.920670,115.606621,116.672737,127.755386,147.011597,162.036377,174.970261,183.069443,182.581833,169.722336,146.821503,125.474388,114.821503,111.226456,105.400009,76.953728,60.672745,75.375221,89.771912,65.036385,30.152088,11.187621,9.581838,6.731416,7.458693,7.525634,7.672740,3.007445,0.319009,0.334712,0.235537,0.045455,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.555000,4612725.550000,4447,3305,98.530586,152.539673,157.357864,146.060333,131.795868,123.101669,119.357864,116.969437,116.514893,117.266960,118.787621,129.952896,147.655380,164.423981,175.746292,184.895050,182.432236,170.804138,147.423981,124.795883,115.878525,111.911583,106.118187,77.605804,61.233902,77.176056,89.539680,66.324814,30.002499,10.961175,9.647126,8.418195,7.537205,7.386791,6.707450,3.328107,0.204959,0.159504,0.171901,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.810744 -601635.755000,4612725.550000,4468,3305,94.209114,155.940506,159.114059,148.395050,133.353729,123.039680,120.990097,118.684311,117.816544,119.353737,119.560349,130.254562,149.271088,164.039673,176.221497,186.651245,184.147110,172.824799,149.196701,126.841339,116.659515,111.758690,106.254562,78.362000,61.990105,78.585136,90.907455,67.395058,30.171921,12.367787,9.659524,7.033898,8.578528,7.906625,8.372743,2.940502,0.525622,0.158678,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.955000,4612725.550000,4489,3305,104.175217,148.382645,154.556198,144.101654,131.448761,120.845459,118.266945,116.366119,115.853737,116.961166,117.506615,128.142975,147.779343,162.142975,174.919846,183.622314,181.804138,170.275208,146.192566,124.779343,114.275223,110.961166,104.572731,77.167786,60.903324,75.283485,88.126450,66.101669,28.969442,10.414893,9.506630,6.390094,7.476875,7.313238,6.840508,2.724799,0.433059,0.310745,0.005785,0.000000,0.000000,0.160331,0.000000,0.000000,1.022314,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.155000,4612725.550000,4520,3305,98.183479,152.431412,154.042984,143.588440,130.737198,121.398354,118.274391,117.092575,116.076042,117.348770,117.720673,128.530594,146.530594,162.952072,174.795044,183.704147,181.547119,169.571915,145.737198,125.836372,114.216537,110.109100,105.472740,76.563644,61.208286,75.943810,88.902489,65.679359,30.613245,11.366961,9.588449,6.022326,6.606626,6.421502,6.509103,3.085956,0.302480,0.233885,0.087603,0.000000,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.888430,1.608265,0.000000,1.931405 -601652.755000,4612725.550000,4553,3305,94.659523,151.123978,158.644638,145.479355,132.173569,121.950432,119.867783,118.157043,115.818199,118.578529,119.545471,129.694229,148.520676,164.578522,176.826462,185.991745,183.776871,171.454559,146.942169,125.537209,115.685966,111.545471,106.272743,78.231422,60.925640,76.429771,90.256218,65.123985,31.041342,12.429770,9.661176,4.760343,6.784312,7.638856,8.212409,3.401659,0.428927,0.269422,0.081818,0.149587,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.061984,0.000000 -601655.955000,4612725.550000,4569,3305,98.959518,151.709106,155.114075,143.395050,130.957047,120.841339,118.378525,114.485962,114.990097,116.130592,117.320679,127.585136,146.816528,162.560333,175.411575,183.386780,182.923981,170.080994,146.271088,124.990097,113.469437,110.362000,104.981834,76.899185,59.717377,75.841339,89.362000,65.221504,29.791754,10.834728,9.543820,5.538027,5.393402,6.394226,6.056210,2.506618,0.373554,0.110744,0.163637,0.060331,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.850413,0.000000,1.086777,0.000000 -601660.355000,4612725.550000,4591,3305,106.921501,153.559494,157.096695,147.625610,132.468597,122.551254,119.658699,117.799194,116.691750,119.526466,118.865311,129.741333,148.394211,164.642136,176.584290,185.187592,183.113220,171.906601,147.939667,125.509933,114.518196,111.576050,104.700020,77.972748,61.567787,77.005806,91.179359,68.840515,31.509935,11.690102,9.518201,5.335548,7.333074,7.834725,7.752907,2.181824,0.872730,0.121488,0.140496,0.000000,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,1.182645,0.000000 -601665.355000,4612725.550000,4616,3305,102.881012,156.423981,158.167770,146.209091,131.994232,123.142990,120.481834,118.647125,117.035553,119.448776,119.680183,130.465317,148.109924,164.961166,176.704971,185.556198,183.952896,171.696701,148.473557,126.762833,115.233902,111.366127,107.118195,79.762825,62.853737,76.663651,91.547951,68.671913,31.002501,12.806631,9.738036,6.364475,8.285140,7.207450,8.219848,4.085958,0.371901,0.226447,0.000000,0.220662,0.179339,0.090909,0.000000,0.000000,0.000000,0.000000,0.928926,0.000000,0.000000,0.000000 -601671.155000,4612725.550000,4645,3305,103.389267,152.281830,157.438843,145.463654,131.133072,122.141335,118.306625,116.562820,116.529762,118.703316,118.653732,129.909927,147.116547,163.000824,175.769440,184.695053,183.587616,171.265305,147.141342,125.810760,114.612411,110.265305,105.190926,77.414062,60.430599,75.587616,90.876869,68.174400,32.083492,12.830596,9.562829,6.034722,7.559520,7.559518,8.367783,3.257031,1.037192,0.109918,0.153719,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.355000,4612725.550000,4661,3305,102.936371,154.476868,155.881821,146.278519,133.286789,122.642159,119.898354,117.576042,117.757858,118.385963,119.873566,129.716537,148.278519,164.633896,176.328110,184.295044,184.228943,171.865295,148.741333,126.352905,114.228935,111.972740,105.881828,78.303314,60.369442,77.534721,89.972740,66.997536,30.923161,11.267786,9.625639,5.367779,6.788445,7.925633,8.546295,2.614882,0.382646,0.102480,0.151240,0.057851,0.000000,0.030579,0.395868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.755000,4612725.550000,4683,3305,114.740517,155.219833,158.955368,148.252884,133.418198,123.285973,120.385147,118.996712,118.476051,119.145477,120.128944,130.773560,148.880981,165.633057,178.897522,186.004959,185.054535,173.583466,149.236359,127.104149,115.525642,112.608284,107.236382,79.583488,63.104153,76.732254,91.947128,67.343826,33.583488,13.510762,9.748780,6.555384,6.792578,9.349602,6.491749,2.972733,0.265290,0.430579,0.024794,0.046281,0.000000,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601683.755000,4612725.550000,4708,3305,101.910751,153.299194,155.365311,146.150436,131.464478,122.489273,118.257866,117.786797,115.877701,117.919029,119.299194,129.216553,147.704163,163.084320,176.191757,184.638046,182.861176,171.795074,148.646301,125.133904,114.728943,110.034729,104.563652,75.943817,59.877705,75.588448,90.117371,66.555389,29.547127,12.235556,9.505805,4.977697,8.304147,5.937202,6.342162,2.576039,0.253720,0.052893,0.000000,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,1.099174,0.000000,0.000000,0.000000 -601687.755000,4612725.550000,4728,3305,97.618195,150.366959,158.424820,146.879364,132.548767,124.309105,121.218193,119.813232,118.689270,120.846291,120.714058,131.689270,149.846298,165.152084,177.631424,186.689270,186.094238,173.276047,150.119034,127.813232,116.606621,111.780174,106.218193,78.226456,61.755390,77.449600,92.507446,68.804977,32.854568,14.414068,9.656218,4.783482,7.287620,7.728941,7.552079,3.214882,0.518183,0.162810,0.219836,0.406612,0.000000,0.000000,0.000000,0.145455,0.000000,0.000000,1.090083,0.000000,0.000000,0.000000 -601692.355000,4612725.550000,4751,3305,122.230591,159.778534,156.340515,148.200027,132.522324,124.340508,120.357033,118.472740,117.051247,119.481003,119.514061,129.877701,147.778534,164.943832,177.274384,186.522324,184.861160,172.885956,148.026474,126.348770,115.001663,111.348770,106.200012,78.100845,60.026463,76.266136,90.109100,66.505806,30.315722,12.433903,9.654564,5.764475,5.897534,6.566128,6.432244,2.026450,1.059506,0.162810,0.000000,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.355000,4612725.550000,4771,3305,109.926460,157.754562,155.787628,146.093414,133.357864,121.506622,118.853737,116.671913,115.448776,118.481834,118.333069,129.010757,146.713226,163.597549,176.465317,184.795883,182.994232,170.630600,146.878540,124.581009,112.333069,109.473572,104.118195,76.184311,59.374401,74.862000,88.713234,67.754562,29.862001,10.786794,9.465309,4.510754,5.814063,6.765300,6.631416,2.751245,0.366943,0.000000,0.000000,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.028099 -601700.955000,4612725.550000,4794,3305,105.892578,161.024811,157.462830,148.925629,133.694229,123.768608,120.884315,118.413239,118.239685,120.504150,120.024811,130.636368,149.975220,165.231415,177.892578,187.454559,185.595062,173.413239,148.330597,127.140511,115.429771,111.396713,106.000015,77.132248,60.842995,76.867783,91.033073,68.619850,31.099194,11.396711,9.636383,4.928110,8.295057,7.199186,7.671914,3.602487,0.126447,0.218182,0.000000,0.000000,0.157851,0.130579,0.000000,0.000000,1.128926,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.355000,4612725.550000,4816,3305,110.955383,159.598343,160.581818,151.829758,137.292572,124.647957,122.135567,120.201683,118.664490,121.408287,122.135567,132.011597,149.895874,167.119019,178.647934,188.846283,186.069427,174.714050,150.408264,128.457870,117.003326,112.755394,107.309113,79.738861,62.094234,76.796707,93.697548,70.441353,32.829773,14.093408,9.755391,5.772738,9.961175,7.740510,8.085965,3.760339,0.766943,0.340497,0.000000,0.000000,0.028099,0.030579,0.346281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.555000,4612725.550000,4832,3305,114.577698,161.409088,157.078506,149.847107,134.681824,122.260338,119.665298,117.979347,117.128105,118.615707,119.169426,130.111572,148.466949,164.169418,176.979340,185.971069,184.128098,171.929749,148.301651,126.442154,114.136375,110.152901,105.500008,77.012421,59.632252,76.318199,91.847122,69.235565,31.690102,12.055390,9.590928,4.057034,7.121504,7.013237,8.350429,2.095872,0.840498,0.315703,0.000000,0.179339,0.110744,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.219008,0.000000 -601713.555000,4612725.550000,4857,3305,119.264481,163.917374,158.066116,149.157043,133.016541,123.454559,120.148773,117.743820,117.702492,118.752083,118.900841,129.198364,148.107452,165.157028,177.809937,186.958694,184.909103,172.165298,147.719025,125.611588,113.272743,110.917374,105.181831,76.611588,59.495884,74.454559,92.107452,68.619850,30.190104,12.241340,9.562002,4.396704,7.313238,7.355385,6.606626,3.111577,0.614877,0.111571,0.399175,0.132232,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.719009,0.000000 -601719.155000,4612725.550000,4885,3305,102.003326,165.813232,158.838013,150.928925,137.614899,125.557045,122.573570,119.614899,118.647957,122.019852,120.664482,131.986801,149.573563,166.945465,178.788437,186.970245,186.317352,173.961990,149.284302,128.185150,115.598366,111.474396,105.854568,78.664490,60.763653,76.342171,91.433075,70.044647,32.507458,12.403323,9.623158,5.985137,7.563653,7.089271,7.061171,2.033889,0.443803,0.040496,0.100000,0.001653,0.000000,0.104132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.355000,4612725.550000,4906,3305,114.349609,164.845459,160.795883,150.035553,135.903305,122.390915,118.944633,118.547943,117.076874,120.556213,118.837196,129.258682,147.862000,165.448761,177.647110,185.589264,184.043808,172.176041,147.845474,125.572731,113.209106,109.663651,105.572739,76.341347,59.027287,74.002502,90.721512,68.581017,29.415722,11.056215,9.597540,4.414058,5.232245,5.911582,5.639682,1.790914,0.652894,0.000000,0.291736,0.137190,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.155000,4612725.550000,4945,3305,111.348770,164.943817,164.266129,154.571915,136.795044,124.365295,121.811577,121.373566,120.133896,122.943810,120.737198,131.166946,149.547119,167.175217,179.323975,189.009933,187.472733,174.241333,150.662827,127.514061,115.307449,110.745461,106.200012,78.753731,60.257870,75.489265,90.761993,68.489273,31.943821,11.990099,9.654564,5.552077,5.652081,7.771914,7.106624,2.460335,0.630580,0.221488,0.088430,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.755000,4612725.550000,4963,3305,130.486786,176.511566,161.280167,151.263641,136.924789,123.817368,122.123154,119.660339,118.015717,122.296707,119.924805,130.040512,150.346283,167.470245,179.627274,188.296692,186.585953,173.428925,149.395874,127.205795,114.990921,110.296707,105.900009,77.280182,59.817379,75.139687,90.486786,67.809113,29.742994,12.242167,9.627291,4.725630,5.966130,4.681830,5.366953,1.866120,0.564464,0.216530,0.414877,0.053719,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,1.061157,1.365289,0.000000 -601739.155000,4612725.550000,4985,3305,115.332260,164.522324,165.274384,152.472733,137.580170,125.166962,123.877701,121.076050,119.538864,120.472748,120.695885,131.497543,152.117371,167.952072,180.357025,188.968582,186.679337,172.836365,148.233063,127.638031,115.654564,112.910759,106.745476,78.985138,63.183487,76.720680,94.390099,68.795067,32.332249,14.386794,9.704151,9.519850,7.265304,6.928113,8.324806,2.161990,0.633886,0.490910,0.347108,0.038017,0.000000,0.000000,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.555000,4612725.550000,5002,3305,110.170258,163.261169,164.211563,151.360336,136.029770,124.203316,122.616539,120.393402,119.641335,119.715714,120.046295,131.195053,151.360336,167.517349,178.732224,187.591736,186.186768,172.715698,148.707458,126.707451,115.889267,111.723976,106.690926,78.335548,61.707462,76.137199,93.178528,67.170265,31.740517,12.200018,9.699191,7.423982,7.260343,8.971914,5.907448,2.749594,0.710746,0.092562,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.555000,4612725.550000,5022,3305,112.886780,167.721512,162.572754,151.663666,137.010773,123.845459,122.060333,118.390915,117.804138,118.523148,118.738022,130.457047,149.399185,165.895065,177.060349,186.399200,183.729797,170.275223,145.655396,125.275223,113.837196,112.019012,104.663643,77.159515,61.804146,74.837212,91.671913,66.539680,31.200848,11.843819,9.514894,9.512412,7.084311,7.349600,6.416539,2.870257,0.419837,0.352067,0.111570,0.047934,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.666942,0.000000 -601749.555000,4612725.550000,5037,3305,126.176872,169.590088,165.143784,151.689240,138.176849,125.639679,124.317368,121.300835,120.044640,120.763649,120.606621,131.928940,151.094208,167.490891,179.590088,188.854553,186.507446,173.391739,148.193375,126.664474,115.747116,112.821503,106.581833,79.011581,63.209942,77.928940,91.771912,66.937210,32.168613,13.904151,9.689276,8.114890,9.038032,7.661170,8.686790,2.631413,0.541325,0.091736,0.094215,0.045455,0.042149,0.000000,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.555000,4612725.550000,5077,3305,110.595055,168.413223,164.636368,153.049591,136.628098,123.834724,123.462830,120.776878,120.388443,121.628113,120.545471,133.272751,150.768600,169.247940,180.165283,189.727280,187.578506,172.578506,148.710739,127.512413,116.132248,112.925636,107.090927,78.851257,62.173576,76.380180,92.008278,67.818199,30.603327,12.173571,9.735557,9.712413,6.827287,7.490096,7.874392,2.676039,0.542977,0.145455,0.307438,0.000000,0.000000,0.000000,0.003306,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.755000,4612725.550000,5093,3305,121.536385,169.825653,165.511612,151.866959,136.916550,124.519844,123.404144,122.073563,119.966125,121.726456,121.164474,133.718201,151.023987,170.131439,181.214066,189.941330,188.635544,173.635559,149.098373,128.428940,115.123154,113.147942,107.627281,79.338036,62.114891,77.767792,92.701668,68.015724,30.652084,12.736381,9.784317,8.781833,6.799187,7.258692,6.719846,3.732240,0.447935,0.262810,0.100000,0.000000,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.555000,4612725.550000,5107,3305,121.255394,174.883469,165.577682,154.296692,137.015701,126.271912,124.495064,122.693405,122.412407,122.990921,121.594231,134.156204,152.643799,169.800827,181.428925,191.023972,189.445465,173.610748,148.850418,128.652084,117.255386,113.685135,108.081841,79.007454,62.957874,77.776054,91.627289,68.503326,32.238865,13.125638,9.825638,9.316543,7.234725,7.266957,8.224806,3.658686,0.390084,0.189257,0.181819,0.000000,0.000000,0.000000,0.000000,0.028099,0.000000,0.000000,1.182645,0.000000,0.000000,0.000000 -601767.755000,4612725.550000,5128,3305,116.636383,183.016525,167.603317,154.388443,139.347107,125.776878,126.123985,123.206627,122.661171,124.710762,123.049606,134.619858,152.834732,169.743820,182.355377,192.553726,188.371902,173.305786,148.677704,127.371918,116.685966,113.958694,108.727287,80.520676,62.851257,77.611588,92.247948,67.181831,31.994236,13.209936,9.884315,10.176875,7.804145,8.246294,8.261995,2.095049,0.356200,0.137190,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.755000,4612725.550000,5173,3305,121.041328,185.198349,167.272720,159.694214,140.966949,126.223152,126.305794,124.338852,123.198357,126.537201,122.950424,135.611588,152.314056,170.793396,183.446274,192.454544,189.768600,173.388428,150.479340,128.099182,117.520668,114.297539,109.181831,78.876038,64.024811,78.702484,93.363655,67.776878,30.289276,12.338034,9.925639,11.104150,6.709930,7.740510,6.015714,3.598356,0.619010,0.068595,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.755000,4612725.550000,5188,3305,121.877693,186.018188,168.720673,158.175217,141.109116,126.646294,124.753731,123.828110,122.902489,127.852905,122.819847,134.249603,153.142151,170.778534,183.919022,193.952072,188.786789,172.224823,149.175217,127.629761,116.530586,113.381828,108.200012,79.406631,62.456219,77.844643,92.538849,65.943817,30.894234,11.682662,9.836383,11.244643,5.844641,6.433071,5.317365,2.598353,0.390084,0.464463,0.033884,0.105785,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.355000,4612725.550000,5216,3305,130.146286,187.807449,173.104965,162.493393,141.873566,127.509926,127.865288,125.741325,124.625618,130.534714,124.757851,136.890091,154.369431,173.055374,185.576050,195.890091,192.047119,174.187607,151.096710,129.509918,117.402481,114.666954,110.063644,79.923149,64.485138,81.890091,93.319847,66.691757,30.947952,13.048777,10.005804,11.809107,6.833071,7.154559,6.049598,3.929761,0.434712,0.211571,0.213224,0.100000,0.115703,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.304132 -601790.555000,4612725.550000,5242,3305,157.859543,194.008301,175.272766,164.388458,143.942184,131.677704,129.512405,127.628113,127.520676,132.809937,127.603325,138.454575,156.314087,174.479370,187.471100,197.760361,194.281021,176.297546,152.702515,131.570267,120.024803,116.785133,111.818199,82.446297,67.115715,83.231422,95.305809,67.991753,33.057869,15.371092,10.165308,12.921504,8.281007,8.247949,6.961171,4.204141,0.489257,0.073554,0.057852,0.000000,0.064463,0.000000,0.000000,0.000000,2.746281,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.555000,4612725.550000,5262,3305,111.724800,167.832245,164.807449,154.319839,139.104965,127.328110,125.038849,123.749596,122.857033,124.815712,124.947945,136.005798,154.047119,171.509933,182.476868,191.179352,190.138031,175.278519,150.683487,129.460342,118.650421,115.460342,110.609100,82.220673,65.609116,80.187614,94.757858,69.460358,31.600849,13.710762,10.055390,7.976047,6.117367,8.090096,7.963650,2.932238,1.050416,0.088430,0.149587,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.003306,0.000000,0.000000,0.000000 -601799.755000,4612725.550000,5288,3305,112.690933,155.104126,158.451233,147.732239,134.864487,124.120682,121.699196,118.971924,118.368614,119.310768,120.649605,131.872742,150.914047,167.666107,179.393387,187.575211,186.244629,173.905777,148.723969,126.071091,115.434731,112.872742,106.327286,81.575226,63.426468,80.087624,90.178528,66.690933,31.409937,12.523985,9.666136,6.028935,6.038856,5.655382,6.016541,3.495049,0.418183,0.034711,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,2.317356,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.555000,4612725.550000,5327,3305,95.535553,157.618195,160.163635,147.609924,134.047943,123.857864,121.981834,120.171913,119.923981,121.320679,121.667786,133.229767,152.576859,168.841324,180.312408,189.940506,188.981827,175.395050,149.932236,128.304153,116.882660,113.469437,109.254562,81.601669,64.783493,79.957039,94.659515,68.014893,32.188450,11.523157,9.932250,5.804970,7.556212,7.397534,6.417368,2.252074,0.404133,0.000000,0.052893,0.102480,0.000000,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.755000,4612725.550000,5343,3305,98.151253,152.226471,162.094238,149.226471,137.904144,128.573578,124.532249,123.408287,122.747124,124.358696,125.548782,137.135559,154.416550,172.457870,185.094238,192.895889,192.176880,178.499176,153.052917,133.143814,120.623161,117.226463,112.036385,82.920677,66.804977,82.110764,96.904152,69.119026,33.871094,13.839689,10.185143,4.911580,6.084310,6.666954,7.721500,3.955381,0.771902,0.377687,0.233885,0.175207,0.029752,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.355000,4612725.550000,5366,3305,95.159523,159.779343,162.514877,151.076859,137.399185,128.258698,124.738029,122.523155,122.506622,124.233902,125.035553,137.134720,154.655380,172.118195,184.457031,192.597534,191.795868,177.622314,153.514877,131.225632,118.804146,115.457039,110.209106,84.812416,66.994232,82.457047,96.771088,69.655396,32.961178,13.738860,10.019027,4.870259,6.958691,8.880179,6.986789,2.717365,1.356202,0.033884,0.233885,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,1.193388,0.000000,2.090909,0.000000,0.000000 -601823.155000,4612725.550000,5405,3305,106.689270,157.185150,160.995056,151.333908,135.052902,125.804970,123.970261,122.466125,122.267776,124.003319,124.003319,135.342148,153.730591,170.862823,182.788452,191.300842,190.003326,177.094238,151.763657,130.028107,119.813232,115.490921,111.490921,83.441330,66.623154,80.722328,96.714058,70.309105,32.598366,12.438860,10.135556,5.383483,6.711585,6.938857,7.399187,2.510751,0.514051,0.308266,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.355000,4612725.550000,5421,3305,101.209106,157.900833,161.305786,152.363632,136.851242,126.760345,124.421501,122.512413,122.198364,124.256218,124.404976,135.462830,154.512390,170.826447,183.157028,191.909088,191.057846,178.603302,152.512390,130.553741,120.239685,116.239685,111.545471,84.090927,68.173569,81.305801,95.710762,71.264488,32.933903,14.253737,10.140515,6.508276,8.068610,8.398360,7.405800,2.795049,1.110747,0.147108,0.050413,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.555000,4612725.550000,5437,3305,104.228111,158.409927,161.244644,150.104141,135.847946,126.690926,124.252907,121.814888,121.864479,122.914062,124.765305,134.922318,154.368607,171.112411,183.624802,192.285965,189.980179,178.219849,153.343811,130.798355,118.831421,116.732246,111.327286,83.302498,67.252914,81.393410,96.657867,70.310768,33.343822,13.222331,10.120681,5.269432,7.003318,8.241335,7.174392,4.161166,0.846282,0.130579,0.375207,0.000000,0.109091,0.000000,0.092562,0.000000,0.000000,2.380992,0.000000,0.000000,0.000000,0.000000 -601835.755000,4612725.550000,5468,3305,107.038872,152.947937,159.104965,151.452072,136.947937,125.410767,125.154572,122.832260,123.303329,125.129776,125.766136,137.253723,155.237198,171.848770,184.600830,192.956207,192.890091,179.270264,153.162827,132.162842,120.286804,116.195892,113.790932,84.898361,68.162827,83.154572,98.228951,73.162834,34.427292,12.871918,10.344646,6.555384,8.266129,8.309104,9.061996,2.468601,0.809093,0.129752,0.250414,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.555000,4612725.550000,5482,3305,107.037209,159.128113,159.343002,151.202499,137.822342,127.012405,125.491745,123.392570,123.442154,125.194229,126.276878,137.367798,156.219040,172.863663,184.665329,193.731430,191.954575,179.838882,153.574417,132.185974,120.772736,116.714882,112.318199,83.665306,67.516548,83.301666,96.334724,72.185974,33.607460,12.708282,10.210763,6.817367,6.185965,7.688442,7.519846,2.903312,0.773555,0.157025,0.485125,0.052066,0.014876,0.000000,0.135538,0.114050,1.335537,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.355000,4612725.550000,5496,3305,118.939682,162.567780,159.476868,150.724808,136.509933,126.609100,124.534721,123.270256,123.319847,124.443810,124.733070,135.873566,155.460342,171.947937,183.642151,193.088440,192.154556,177.939682,153.865295,131.832245,119.823975,116.328110,111.790916,83.402489,67.179359,80.890091,96.394234,70.336380,32.923161,12.048778,10.162829,5.681002,6.238857,6.754558,6.762822,2.564470,0.518184,0.160331,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601845.155000,4612725.550000,5515,3305,106.333084,153.245468,160.038849,148.931412,134.542999,125.419029,123.071922,121.981010,122.319855,123.947952,124.080185,134.509933,153.212402,170.005798,183.237198,192.195877,189.245468,178.534714,152.295044,129.559525,119.625641,115.361168,110.700012,83.733086,64.700020,80.509941,95.394226,68.617378,31.204149,10.948778,10.063655,4.012406,6.022327,5.571911,6.642160,2.200833,0.418183,0.033884,0.169422,0.000000,0.000000,0.439670,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.155000,4612725.550000,5535,3305,107.786789,154.373581,161.233078,151.530594,139.976883,128.001663,124.960342,123.067780,124.588440,126.423149,126.985130,137.596710,156.282654,172.604980,186.067795,194.125641,194.109116,180.563660,154.332245,131.604965,120.646294,117.472740,113.472740,85.638023,68.522331,82.224800,96.770256,70.588455,34.431423,12.053735,10.315721,5.134721,7.530592,6.904147,7.103318,3.333065,0.280993,0.067769,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.355000,4612725.550000,5561,3305,109.034729,155.547119,161.679352,152.952072,138.885956,129.183487,126.894226,126.381828,125.712410,128.464478,128.712402,140.274384,158.100830,175.067780,187.786789,196.158691,194.671082,181.985138,156.059509,135.200012,121.968605,119.109100,114.927284,87.142159,67.852913,83.770256,99.381836,72.547134,32.679356,13.719028,10.447952,5.033895,8.478527,7.142163,6.928111,2.518188,0.453720,0.032232,0.084298,0.063637,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.955000,4612725.550000,5584,3305,106.638863,158.771088,165.787613,155.531418,140.366119,129.473572,126.341339,124.506638,124.514900,127.167786,127.258690,139.366119,156.837204,174.787613,186.531418,196.010757,194.258682,181.928101,154.647110,131.837204,121.283485,117.862000,113.754562,86.481842,69.159523,81.928123,96.919861,71.837212,32.349606,12.465307,10.341341,5.815715,6.814064,8.646293,7.156210,2.778518,0.508266,0.605787,0.244629,0.000000,0.042975,0.126447,0.016529,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.755000,4612725.550000,5603,3305,110.578529,161.322311,162.123962,153.859528,140.297531,129.785141,127.462830,126.338860,127.008278,129.454559,129.281006,140.710754,158.206635,174.214890,189.231400,196.694214,194.809921,182.404968,157.214890,134.157043,122.429771,118.165306,114.545471,86.495880,68.537216,83.586792,95.685966,71.305801,33.950432,12.742994,10.413242,3.741330,5.875221,6.189270,6.642987,2.858684,0.519010,0.447108,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.755000,4612725.550000,5648,3305,122.642166,167.733078,164.625641,155.567795,141.790939,131.113235,127.906624,127.848770,126.195877,129.443817,129.526459,140.691757,158.633911,175.559525,188.790939,197.592590,195.956223,182.129776,158.055405,134.080170,122.592575,119.245461,114.972740,87.584312,69.890099,82.716545,98.485130,72.947952,32.485146,14.608282,10.452085,5.582657,8.210760,8.281834,8.144642,2.400832,1.157854,1.124795,0.066116,0.173554,0.007438,0.330579,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,1.219008,0.000000 -601874.555000,4612725.550000,5662,3305,108.780167,159.176056,164.319839,153.104965,140.212402,127.981003,126.228935,125.286789,125.906624,129.650421,129.832245,142.121490,159.567780,176.030594,189.443817,199.088440,197.171082,184.559509,159.220673,136.022324,124.080177,121.212410,116.336372,87.617363,69.419022,85.741333,97.344635,73.964470,35.997540,14.219852,10.576052,5.285134,8.762824,9.041335,9.491750,3.849594,1.201655,0.687604,0.870249,0.817356,0.977687,0.379339,0.352067,0.062810,1.211570,0.000000,0.000000,0.000000,0.232232,0.000000 -601878.955000,4612725.550000,5684,3305,113.534729,159.151260,161.151260,152.581009,137.614075,126.457039,123.109932,122.432243,120.804146,124.878525,124.217369,135.820663,153.019028,170.771103,183.589279,193.027298,190.878540,179.572754,153.895065,132.176041,119.547951,116.448776,111.300018,84.093407,66.514893,80.655388,96.936378,69.961182,31.622334,11.267785,10.118200,3.782653,7.034727,4.657862,5.936374,1.530583,0.540497,0.179339,0.314050,0.046281,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.820661,0.000000,0.000000,0.000000 -601881.755000,4612725.550000,5698,3305,110.455383,172.868607,169.959518,162.901672,144.942993,128.728119,125.108276,123.389267,122.554558,126.926460,125.984314,136.951248,155.356216,173.058685,185.579346,195.133072,193.405792,180.967789,157.290100,134.819016,122.653732,118.819023,114.554558,86.810760,68.719849,82.976051,97.298363,72.265312,33.504978,13.930595,10.414068,6.847945,7.833075,9.414063,10.796708,4.365297,2.361160,1.447109,1.940498,0.990912,2.121489,2.358679,0.320661,1.142149,0.000000,0.000000,0.000000,1.804959,0.000000,0.000000 -601884.755000,4612725.550000,5713,3305,121.782654,166.431396,161.555359,156.580154,143.034729,129.869431,129.662827,128.142151,127.390091,131.142151,129.910751,140.786804,159.018173,175.332230,188.547104,196.464462,196.059494,184.307434,160.051239,137.976883,124.505798,121.555382,117.290916,89.059517,70.249611,83.919022,99.365295,74.175224,33.828117,14.945472,10.662829,4.966952,7.532246,6.906625,7.657864,3.532239,1.619012,0.378513,0.484298,0.504959,0.000000,0.104959,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,1.234711,4.271075 -601889.155000,4612725.550000,5735,3305,115.156204,168.547119,161.150421,155.224808,142.976868,130.638016,130.365295,128.423157,127.514061,130.555374,128.852905,139.720673,157.340500,174.786789,187.803314,196.580170,195.894226,185.018188,160.051254,136.885956,125.431412,121.836372,117.018188,87.357033,70.646294,85.233070,98.745461,74.919022,34.059521,13.469440,10.638035,3.626454,8.443816,8.476872,6.395053,3.006619,0.466944,0.442976,0.261984,0.121488,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.955000,4612725.550000,5749,3305,119.784317,170.193390,165.234726,157.127289,142.796707,128.309113,126.912415,126.383492,125.193405,130.052917,128.490921,139.614899,157.647949,174.019836,186.986786,195.804962,193.829758,182.920670,156.581833,136.300842,123.474396,117.937210,113.854568,85.780182,68.061180,83.590103,97.366959,72.400017,32.343822,12.196712,10.350432,4.236373,8.414064,6.590096,7.231420,2.810751,0.622316,0.533059,0.304133,0.000827,0.171075,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601894.755000,4612725.550000,5763,3305,127.157867,178.633057,169.649597,158.930588,141.757034,127.186790,125.294228,123.418198,122.178528,125.591751,123.881012,134.757034,153.162003,170.583481,183.352066,191.236359,190.112396,178.583466,154.641342,132.889267,120.533897,116.583488,113.600014,84.236374,66.162003,81.674393,96.294228,71.095879,32.302502,13.583489,10.327291,4.904142,7.996709,6.249600,10.302494,2.948767,1.138019,0.388431,0.867770,0.764463,0.380166,0.361984,0.000000,0.006612,0.000000,0.585124,0.000000,0.000000,0.000000,0.000000 -601907.755000,4612725.550000,5828,3305,114.362823,172.935547,168.836380,154.621490,138.051239,127.414894,126.241341,123.530594,122.943817,123.894234,123.993408,134.894226,154.332245,169.067780,181.439682,190.092575,188.208267,174.803314,151.555374,130.762009,118.720680,115.869438,110.290924,82.299194,67.679359,80.456215,95.208282,68.985138,32.406631,14.207456,10.026465,9.174396,6.832243,9.047947,9.488443,3.358685,0.988432,0.533886,0.447108,0.134711,0.165290,0.000000,0.000000,0.208265,1.347108,0.000000,0.000000,0.000000,0.000000,0.000000 -601910.955000,4612725.550000,5844,3305,108.476044,180.681000,170.846298,160.358704,144.755386,131.763657,128.738861,127.780182,125.656219,127.995064,126.598366,137.962006,156.846298,172.400009,184.490906,193.838013,191.639679,178.036362,154.523972,133.209930,122.590103,119.044647,112.672745,84.953735,69.730598,83.011589,98.185143,71.838036,34.722328,14.651259,10.242993,8.385138,7.969436,8.995054,10.548775,3.155381,0.731407,0.763638,0.527274,0.122314,0.075207,0.093389,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601914.155000,4612725.550000,5860,3305,102.749611,173.526459,167.377701,158.666946,140.989273,128.873566,126.782661,124.055382,123.204147,124.691742,123.195877,135.865295,154.468597,169.989273,182.245468,190.038834,189.815689,174.782654,151.014053,130.394226,118.030586,115.278519,109.245476,81.038872,66.096718,78.700027,94.138039,68.493416,30.708282,12.912414,9.931424,7.457038,7.381004,7.836376,7.803319,3.630588,0.534713,0.360332,0.131405,0.000000,0.172728,0.000000,0.000000,0.000000,1.266116,0.000000,0.000000,0.140496,0.000000,0.000000 -601919.755000,4612725.550000,5888,3305,113.715714,173.765305,168.310760,159.352081,143.054565,129.690918,129.864471,126.509102,123.905800,127.062820,125.790092,137.153732,155.492569,172.715714,183.947098,192.889252,191.170242,177.128937,154.666122,132.732239,121.881004,119.161995,113.327286,84.442986,69.038033,82.988441,97.087616,71.393402,32.806633,12.846298,10.302497,9.733072,7.837204,9.467781,8.581832,1.952072,0.630580,0.428100,0.117356,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.555000,4612725.550000,5902,3305,118.928947,175.623138,168.242981,157.069427,142.457855,128.664490,128.697540,125.383492,124.317375,126.267792,124.953735,136.730576,155.135544,171.631409,182.557022,192.565292,190.441330,177.300827,153.300827,133.019852,121.449608,118.598366,112.490929,83.631424,68.614899,81.730598,96.309113,71.565308,32.303322,14.057869,10.226464,9.385138,7.446294,7.471087,8.810758,3.101660,0.975209,0.374381,0.117356,0.281819,0.000000,0.000000,0.000000,0.022314,0.000000,1.371074,0.000000,0.000000,0.000000,0.000000 -601925.155000,4612725.550000,5915,3305,109.401672,177.294205,170.542145,157.302490,141.038025,127.087624,127.186798,124.757050,124.062828,127.071098,124.178535,136.277695,154.682663,171.558670,181.459503,191.980164,189.112396,175.963638,153.021500,132.393402,120.649605,117.459526,112.145477,83.269440,66.971924,81.178535,95.236382,69.426468,31.674398,12.723986,10.195062,6.915714,7.162822,8.576048,6.223979,3.072736,0.498348,0.060331,0.028099,0.000000,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601927.955000,4612725.550000,5929,3305,127.927284,181.291748,166.879364,157.424820,142.904144,128.548767,128.176865,126.730591,125.672737,128.251251,125.375221,136.829773,155.102493,171.879364,183.044647,193.094238,190.879364,176.771927,152.631424,132.201660,120.763649,118.573563,112.400009,83.689270,68.019852,82.251251,96.284309,69.854568,31.978535,13.214894,10.218202,8.009931,6.742162,7.560344,7.504971,2.965296,1.304135,0.313224,0.324794,0.090909,0.154546,0.146281,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,1.292562,0.000000 -601932.555000,4612725.550000,5952,3305,118.723976,183.776031,168.962006,159.445480,143.891754,130.181000,131.776047,128.990921,128.247116,131.123154,128.090088,139.172745,156.957870,174.106628,184.395889,194.759506,191.098343,176.172745,153.784317,132.660339,120.891747,117.280174,112.627281,83.065300,67.271919,82.552902,94.594223,69.164474,32.457043,12.680182,10.238862,10.379355,7.352079,7.411583,7.202491,4.257033,1.230581,0.534712,0.537191,0.323968,0.395042,0.000000,0.485124,0.036364,1.160331,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.555000,4612725.550000,5982,3305,136.546295,193.276031,174.664459,164.995041,148.160355,134.433075,130.755386,129.094223,128.540512,133.540512,129.532242,140.383484,158.656204,175.970245,187.168594,198.135544,195.383469,179.077682,155.242996,135.780182,122.300835,120.912407,114.309105,85.143822,68.259521,84.383492,96.193405,68.854568,34.802498,13.196712,10.391755,11.438034,8.267783,9.745470,10.151252,3.809099,1.612400,0.871902,0.416530,0.311571,0.326447,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.955000,4612725.550000,6024,3305,145.754562,194.423950,175.027283,167.556198,148.704971,134.738022,133.903305,130.275223,130.597534,136.035538,131.580994,142.432236,159.762817,177.134720,190.283478,199.547943,196.085129,179.564468,156.779343,136.101654,123.853737,120.663658,115.300018,84.911591,69.581017,85.060356,98.539680,68.457047,32.713242,14.462828,10.481838,11.777704,8.271915,9.129765,9.167782,4.952077,0.140496,0.148761,0.188431,0.071075,0.000000,0.085951,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601958.355000,4612725.550000,6081,3305,107.577705,162.131424,166.106628,154.933075,140.883484,129.875229,128.891754,125.999191,126.329773,127.503326,127.933075,139.164490,157.800842,172.833908,184.949600,192.842163,191.734726,179.643814,155.354568,134.230591,122.966133,119.941345,114.627289,86.338036,68.850433,85.263657,97.412415,71.643822,33.809113,14.049603,10.420679,8.155384,7.344641,8.972741,7.976047,3.293397,0.615704,0.222315,0.121488,0.033884,0.000000,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.355000,4612725.550000,6156,3305,105.033073,160.008286,163.107437,152.586792,137.495880,126.578529,125.595055,122.793404,123.165306,124.396713,124.636383,135.256210,153.859528,170.454559,182.190094,190.636368,189.421494,178.033081,153.438034,133.123978,121.570267,117.429771,113.000015,84.123985,67.776878,83.520676,96.471092,70.611588,33.190102,13.114066,10.272746,6.385963,6.136378,7.075220,5.477699,4.010752,0.265290,0.109918,0.044628,0.000000,0.000000,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601996.155000,4612725.550000,6270,3305,104.166962,155.497513,162.103302,153.665283,141.752060,133.066116,130.285141,128.805786,127.690094,128.921509,129.805801,139.880173,158.764465,174.516525,186.318176,195.202484,192.847107,181.607437,157.995865,137.541321,127.161163,122.570259,116.818207,89.404976,72.330605,87.966965,100.206635,75.314072,35.545471,14.935556,10.619854,4.947119,7.815717,7.925632,9.956213,5.435545,3.426449,2.936365,3.731406,3.449588,3.069422,1.896695,1.785951,0.755372,0.000000,0.000000,0.752893,0.000000,0.000000,1.832232 -602031.955000,4612725.550000,6449,3305,120.761993,165.133896,167.662827,157.522324,144.315720,131.737198,130.059509,128.340500,127.877693,130.208267,130.522324,140.183487,158.051254,174.117371,185.778519,195.307449,195.522324,182.241333,158.861160,136.604965,125.249596,122.067780,115.927284,88.274391,71.621498,87.282654,99.571907,73.679352,33.861176,14.128117,10.538861,5.861995,6.960346,7.773568,6.055384,2.621494,0.785126,0.726448,0.000000,0.000000,0.000000,0.000000,0.018182,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.955000,4612725.550000,6529,3305,125.181839,175.206604,168.884293,161.479340,148.611572,134.413239,133.066132,131.512405,129.528946,133.842987,131.950424,141.380173,160.049591,175.900833,187.834717,197.247940,196.752060,185.909088,161.512390,140.239670,128.297531,123.958687,117.818192,90.363655,73.562004,86.768608,101.198357,75.562004,35.801670,14.771919,10.710763,5.683482,7.722330,6.618196,7.194230,2.253726,0.191736,0.185124,0.192562,0.061157,0.016529,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,1.082645,0.000000,0.000000 -602053.955000,4612725.550000,6559,3305,128.796707,174.409927,165.955383,159.839676,144.186783,131.492569,130.715714,128.971909,127.971916,132.038025,130.162003,141.674393,158.525635,175.285965,187.310760,196.252899,196.104141,183.500839,160.310760,138.773560,126.715714,123.054558,117.600014,89.930588,72.368607,86.583481,100.277702,74.715714,34.343822,12.872746,10.690928,4.557861,5.909931,6.513237,5.803319,3.122320,0.846283,0.239670,0.184298,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602058.955000,4612725.550000,6584,3305,119.897545,170.880188,165.013229,158.163666,145.013245,130.649597,130.203323,129.682663,127.699188,133.021500,131.481842,142.142975,159.192566,175.895050,187.226456,197.829758,196.019836,186.077682,162.408264,139.639694,128.804977,123.408287,116.945473,89.300842,73.804977,87.474396,101.036385,76.879356,34.433075,13.790926,10.631423,4.742987,7.874395,7.158689,9.012411,4.177693,1.932235,1.504136,1.204134,1.171076,1.048761,1.364464,0.042976,0.242976,0.280992,0.000000,0.000000,1.116529,0.000000,0.000000 -602064.155000,4612725.550000,6610,3305,104.669426,171.005814,173.782669,158.981018,145.171097,131.138031,132.220673,127.518196,127.567787,128.278534,128.600845,140.724823,160.972748,177.509949,189.270279,199.460358,198.022339,186.154572,160.774399,139.237213,127.898361,124.443817,120.790924,90.881836,74.402496,90.385971,107.088448,76.195885,37.567787,15.857870,10.981011,7.864476,7.325634,9.544642,10.871090,6.454555,0.885125,1.686779,0.745456,1.144629,1.295043,0.030579,0.728926,1.137191,0.000000,0.000000,1.088430,0.000000,0.000000,0.000000 -602070.555000,4612725.550000,6642,3305,107.695885,175.026459,172.489273,161.051254,142.092575,130.547119,129.858704,127.015724,125.891754,127.395889,127.296715,139.784302,158.610748,175.595886,187.546295,197.612411,197.662003,182.133072,159.918198,138.065292,127.974396,124.668617,118.263657,89.032249,73.000847,89.769432,103.240509,74.885155,37.967785,15.691754,10.751258,10.549601,7.975219,9.444643,8.196707,6.000835,2.442979,0.927275,0.731407,0.560331,0.697521,0.111570,0.259505,0.066942,2.821488,0.000000,0.000000,4.216529,0.000000,0.000000 -602078.155000,4612725.550000,6680,3305,141.749603,176.551254,178.972733,164.518188,146.278519,134.377701,132.666962,128.385971,128.104980,129.501663,129.179352,141.939682,161.270264,178.104965,188.890091,198.848770,197.121490,184.138031,159.848770,137.790924,126.394234,124.567787,118.518196,89.245476,74.038872,88.873573,102.559525,74.336388,38.890106,15.347126,10.774399,8.411583,7.724805,9.052079,8.204973,5.490094,0.934713,0.298348,0.252893,0.000000,0.090909,0.000000,0.098347,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.555000,4612725.550000,6697,3305,119.963646,177.760330,172.511551,158.652054,141.833878,129.594223,130.379349,126.478523,126.362823,127.412407,126.751251,139.271881,158.428909,177.081802,187.875198,197.090073,196.263626,181.767761,158.503296,137.172714,124.957863,121.999184,117.354553,88.288445,72.635551,88.346291,102.478523,73.181007,34.635559,13.151258,10.668614,8.489270,8.136378,9.266955,9.322329,3.995049,1.177688,0.695042,0.364463,0.861985,0.344629,0.000000,0.002480,0.010744,0.000000,0.000000,2.376860,0.000000,0.000000,0.000000 -602087.955000,4612725.550000,6729,3305,96.772743,181.070251,174.276855,163.095047,144.921494,130.822327,131.202499,128.334717,127.516548,129.202499,126.929764,139.376038,158.615707,175.466949,188.086777,198.326447,196.772720,181.880173,157.855377,136.516541,125.185959,122.128105,117.227280,87.268608,71.078529,86.582664,100.466957,72.351257,35.194237,13.344646,10.657044,11.171090,6.566130,7.885965,8.664476,4.081825,0.514877,0.191736,0.000000,0.077686,0.000000,0.000000,0.058678,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602091.755000,4612725.550000,6748,3305,102.217369,184.903305,179.225632,163.837204,150.101654,134.374390,134.200836,132.076874,130.663651,133.184311,130.928116,143.052094,161.919846,179.944641,191.052078,202.010757,199.019012,184.142975,161.663635,137.258698,127.448776,124.060349,116.845467,89.952904,73.019020,88.638855,103.184311,74.721504,36.952915,14.888448,10.622333,11.180181,9.313238,8.423154,8.849599,4.668603,1.626449,0.300827,0.258679,0.000000,0.094215,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602097.155000,4612725.550000,6775,3305,120.882660,168.510773,169.064484,160.469437,144.502502,132.576874,130.535553,128.477707,126.196709,129.362000,126.419846,137.395065,153.750443,170.047958,181.733902,192.469437,190.899200,177.155396,154.312424,133.957047,121.940514,120.122330,113.709106,88.882660,73.213234,87.246292,97.725632,74.634727,35.221508,14.484316,10.337210,7.161169,7.410760,8.143812,7.760343,4.778519,0.704960,0.258680,0.210744,0.005785,0.000000,0.148761,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.155000,4612725.550000,6790,3305,111.053734,166.665298,170.070267,160.037201,143.698364,129.326462,127.805801,126.359520,123.789276,127.450432,124.549606,135.161179,150.987610,168.177704,179.524796,189.557846,188.309921,175.706604,152.541321,131.425629,121.053734,117.276878,111.863655,86.309944,71.252083,86.243820,97.780998,71.243828,34.227287,13.408280,10.169440,5.382655,6.943815,6.781827,6.821500,3.560336,1.074382,0.187605,0.281819,0.198348,0.004959,0.092562,0.305785,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602104.555000,4612725.550000,6812,3305,100.005806,161.047134,164.675232,158.501678,143.129776,128.633896,127.939690,125.666962,122.997536,125.319855,124.055389,133.947952,150.377716,166.972748,178.460358,188.501678,185.914902,173.807465,150.600845,130.848785,119.873573,115.055389,111.154564,84.212418,70.162827,85.832253,96.815720,72.080185,34.311588,12.122331,10.104979,6.966126,7.492576,7.129763,6.403320,2.529756,0.424794,0.046281,0.000000,0.039670,0.000000,0.385125,0.428100,0.524794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.155000,4612725.550000,6840,3305,104.256226,157.281021,165.165329,155.107468,140.016556,128.429764,125.809937,122.595055,119.347122,124.281006,121.991753,132.165298,148.661194,164.669449,175.429779,185.181854,184.925659,171.578552,149.520691,128.256210,116.834724,113.743820,108.818199,81.752090,67.438042,83.719032,98.033081,72.801674,32.760349,12.809934,9.892582,6.059516,6.249600,7.562822,8.495880,1.861161,0.319836,0.109918,0.128926,0.276034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.955000,4612725.550000,6859,3305,106.661163,172.818192,164.909103,156.355392,141.818192,130.049591,126.082649,123.743813,121.198357,123.760338,121.785133,132.165298,149.049606,165.297531,176.909103,185.603317,185.099182,172.297531,150.545471,129.743805,119.528931,114.264473,108.636375,82.115715,66.380180,84.421494,96.280998,71.570267,34.471096,12.666959,9.876051,5.071083,7.071088,6.572737,6.276871,2.476863,1.104960,0.488430,0.452067,0.038017,0.537191,0.000000,0.405786,0.231405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.755000,4612725.550000,6878,3305,100.063652,155.716537,164.782654,153.278519,139.542984,127.551254,124.766136,120.501671,118.567787,120.857040,118.923157,129.576050,145.625641,161.421494,173.471085,183.768616,182.330597,169.528931,148.479340,128.710754,117.264473,113.760338,107.545479,81.454567,66.479362,83.685974,100.735565,74.074402,35.823990,14.935556,9.776878,5.949595,8.338859,6.996706,7.526458,3.926452,0.695043,0.239670,0.093389,0.067769,0.400000,0.000000,0.233058,0.290909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.155000,4612725.550000,6900,3305,91.604973,158.084290,165.861145,155.621475,138.935532,128.117371,124.150429,121.927292,120.679359,122.414894,121.051254,130.894226,148.249573,164.695862,174.786804,185.472733,183.365295,172.530579,149.530579,128.257874,118.687622,113.315720,106.836380,80.398361,66.373581,82.695885,100.803322,74.737206,37.638039,14.003325,9.712416,6.875216,7.632246,7.072740,6.041333,4.322320,1.139671,1.104133,1.152067,1.064464,1.567769,0.917356,2.058678,1.636364,0.000000,4.636364,0.000000,1.088430,0.000000,0.000000 -602128.555000,4612725.550000,6932,3305,102.539680,156.333069,159.779343,150.903305,134.547943,123.713226,120.217361,116.663643,113.944633,114.820671,114.357857,124.076866,142.333069,157.448761,168.580994,179.357864,177.729752,167.457031,144.440506,124.787613,113.556206,109.589264,103.300003,76.605797,63.076878,80.952904,97.581001,73.754570,32.518200,11.806628,9.390927,5.026456,6.079351,6.151251,5.563647,2.247940,0.428100,0.189257,0.000000,0.025620,0.000000,0.000000,0.241323,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.355000,4612725.550000,6976,3305,88.331421,151.678528,158.529770,148.042160,135.802490,123.000839,121.190926,117.058693,114.843811,115.405800,114.546295,125.372742,143.885132,159.959518,171.025635,180.488449,179.496704,166.364471,145.959518,125.149597,115.199188,109.695053,103.736374,78.058693,63.769440,82.083481,96.314888,71.736374,33.347954,12.593407,9.430597,3.441329,5.753731,5.384309,5.473565,2.336369,0.723142,0.137191,0.052893,0.157025,0.496695,0.000000,0.307438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.955000,4612725.550000,7014,3305,92.167778,149.357880,158.779358,150.878540,136.597549,125.647118,120.994225,118.333061,116.969429,116.291740,116.085129,127.366119,143.696716,159.440521,170.415726,181.498367,179.374405,168.696716,146.870270,127.589264,115.109924,110.217361,105.027283,79.333061,64.448776,82.126450,98.126450,74.085129,35.824814,14.009934,9.547954,4.786788,7.302495,6.109928,6.247945,3.250419,0.318182,0.000000,0.114050,0.032232,0.000000,0.379339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602148.155000,4612725.550000,7030,3305,84.162003,148.285965,158.583481,149.095886,134.533890,124.649597,121.079353,117.252907,114.426460,114.682655,115.881004,126.525635,143.186783,159.178528,170.748779,179.319016,180.195053,168.533890,147.004974,126.401665,114.509102,111.641335,103.145470,78.839684,63.418201,82.004974,97.682655,72.847961,33.781837,12.140513,9.376880,5.048769,5.419848,7.626460,6.249599,3.009098,0.449588,0.319009,0.000000,0.000000,0.000000,0.000000,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.555000,4612725.550000,7057,3305,95.748772,145.649597,159.657867,150.128937,136.988449,124.451256,122.319023,117.872742,116.641335,116.715714,116.781830,126.889267,143.971924,160.046295,170.781830,181.699188,179.988449,168.385132,146.550446,126.145470,115.798363,111.203316,104.963646,79.740509,65.236382,81.814896,96.533897,73.195053,32.996716,12.816547,9.542167,5.336374,7.819021,7.474393,6.490921,3.112403,0.543804,0.294216,0.161158,0.041322,0.000000,0.068595,0.714050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.555000,4612725.550000,7102,3305,86.666130,153.137207,162.641342,151.831421,138.649597,128.525635,124.823151,121.046295,119.442986,120.368607,120.971916,131.261169,148.492569,162.732239,174.633072,185.294235,183.715714,171.120667,149.608276,129.980179,119.137199,115.616539,109.690926,83.153732,68.732246,83.715714,98.038033,71.484314,34.261177,13.837207,9.971920,6.124804,8.823981,8.571915,8.236376,3.120667,1.247936,0.317356,0.047934,0.286777,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602167.555000,4612725.550000,7127,3305,81.546303,147.397537,160.538025,151.397537,135.909927,127.009109,122.438866,120.852089,118.678535,118.422333,120.174400,130.232254,146.959518,162.149597,174.653732,183.612411,183.711578,171.554565,148.513229,128.381012,118.223991,113.562828,109.372749,82.843826,68.504982,82.314896,95.744652,70.529770,32.025642,12.509935,9.942994,4.888440,6.449601,6.816540,5.643814,2.142980,0.709919,0.180166,0.000000,0.020661,0.000000,0.065289,0.351240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602170.955000,4612725.550000,7144,3305,94.642166,152.014053,163.319839,155.146286,139.981003,129.493393,126.295052,122.385963,122.005798,122.468605,122.766129,133.319839,151.204147,166.435547,177.576050,187.592575,186.154556,174.336380,152.410751,130.542984,121.782654,117.460342,112.154556,85.427292,71.460358,85.823982,97.228943,72.171097,34.733074,12.492579,10.195887,6.409930,8.407454,7.069432,6.600013,2.857857,0.073555,0.106612,0.169422,0.037190,0.000000,0.138017,0.323967,0.004132,0.000000,0.000000,0.000000,0.000000,1.949587,0.000000 -602175.555000,4612725.550000,7167,3305,80.400841,152.995880,164.847122,154.500015,139.566132,130.731415,126.789276,124.086792,122.739685,123.599190,123.938034,134.987625,151.028946,167.359528,179.731415,189.640503,189.061981,176.789276,154.466965,133.623978,122.533073,118.103325,112.772743,87.103325,72.681831,86.582664,97.987617,72.500015,33.268616,13.482661,10.252086,4.078521,7.253734,6.650424,6.903318,4.187610,0.944630,0.022315,0.281819,0.151240,0.210744,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602180.355000,4612725.550000,7191,3305,86.081833,145.982651,163.585953,155.197525,140.032242,131.280182,128.701660,125.453728,124.552902,125.478523,127.189270,136.693390,154.916534,169.536362,182.131409,192.048767,193.437195,181.966125,157.701660,138.528107,126.990921,123.842163,118.718193,92.709930,76.073563,90.709930,101.767776,73.023979,35.147957,15.411588,10.792581,7.518194,8.282660,8.747121,10.900840,4.861992,0.524795,0.100827,0.546283,0.276860,0.000000,0.495869,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602187.755000,4612725.550000,7228,3305,85.296707,148.106628,162.619034,151.073578,135.709930,126.296707,123.412407,120.701668,118.461998,120.478523,120.850426,131.999191,150.263657,164.866959,176.817368,186.982666,186.767792,173.891754,153.486801,133.685135,122.238853,118.437202,112.445465,85.247116,70.693398,87.585960,102.676872,74.900009,36.404152,13.481009,10.222333,5.543813,8.669437,7.243815,7.475219,3.812405,0.020661,0.201654,0.085951,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.955000,4612725.550000,7244,3305,90.250435,151.134720,160.622314,151.192566,136.977692,126.333069,122.936378,120.118195,118.779350,119.878525,120.457039,132.457047,149.052078,164.498352,175.804138,186.779343,186.134720,175.027283,152.035538,131.523148,120.804146,116.738029,111.663651,84.795891,69.704971,86.647133,101.514893,74.498367,36.597538,13.236382,10.151259,5.620673,7.596708,7.919022,8.106624,3.095048,0.526447,0.141323,0.000000,0.090910,0.295042,0.000000,0.556199,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.955000,4612725.550000,7264,3305,84.120674,149.996704,162.699188,150.161987,136.401672,125.360344,122.707451,120.071091,118.294228,118.426460,118.509102,130.170258,146.864456,163.219849,174.996689,183.831406,182.484299,170.823135,148.186768,129.104141,118.186790,114.930588,108.145470,84.178528,68.533897,88.963646,101.211586,76.550423,36.707458,14.833901,9.831423,7.129763,8.377701,7.722328,5.971086,3.543809,1.023143,0.002479,0.247935,0.113223,0.296695,0.128926,0.270248,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.755000,4612725.550000,7278,3305,83.457047,149.961182,161.068619,149.779358,136.076889,126.828949,125.399185,120.614067,119.465302,120.068611,120.556213,131.192581,149.820679,164.663666,175.795883,186.680191,185.647125,172.845474,151.176056,131.134720,120.407455,116.564476,110.936378,84.275223,69.134735,87.795883,103.465302,76.060356,36.564480,13.266132,10.085143,6.814063,7.981832,9.247949,7.262821,3.392570,0.736365,0.340497,0.499175,0.132232,0.004959,0.128099,0.212397,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.155000,4612725.550000,7300,3305,83.890923,150.750443,159.766983,149.477722,134.287613,123.874397,120.543816,117.122330,116.857864,117.485962,117.477699,128.725632,146.957047,162.444672,173.866150,182.676071,181.882690,170.552109,148.006653,127.204971,117.362000,114.783485,107.163651,82.014893,66.915718,84.990097,99.362000,71.171913,34.103321,11.798364,9.742167,5.182657,6.702493,8.947948,5.245465,3.023148,0.643804,0.180166,0.054546,0.090910,0.000000,0.126447,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602208.955000,4612725.550000,7334,3305,89.738029,150.569427,159.437195,151.354553,135.833893,125.486778,121.751244,117.685127,116.189262,115.858681,116.362816,127.883476,146.032242,162.569427,172.949585,181.701660,180.883469,168.676865,147.395874,127.949593,115.569427,113.652069,106.536369,81.123154,66.478531,84.304970,98.883476,73.767776,34.916550,12.828941,9.685143,6.363648,7.574394,6.919847,6.607449,2.438850,0.975209,0.094215,0.156199,0.114877,0.032232,0.000000,0.425620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602214.155000,4612725.550000,7360,3305,100.148773,158.214874,166.760330,154.396698,134.735550,126.198349,123.595039,118.438026,117.561981,117.123978,118.099182,129.247940,146.264465,162.231400,172.834732,181.892578,181.809937,168.115707,146.487610,127.388435,115.082649,112.710747,105.000015,80.000015,66.983490,83.694229,99.000015,73.991753,34.727287,14.514893,9.545474,7.922325,9.195884,8.325634,6.238026,3.361163,0.597522,0.157025,0.142149,0.193389,0.000000,0.000000,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.955000,4612725.550000,7384,3305,100.977699,151.448761,161.713226,148.448761,135.465302,122.068604,120.043808,114.828941,113.052078,113.704964,111.895050,124.415710,143.704971,157.622314,168.870255,177.994217,176.911575,163.762817,142.589264,122.754555,110.366119,107.440514,101.663651,74.969437,61.746304,82.068611,98.523155,73.225632,34.647129,14.109110,9.242169,5.842986,5.901667,6.874392,7.223153,3.031413,0.532233,0.397522,0.419835,0.047934,0.000000,0.000000,0.269422,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.755000,4612725.550000,7398,3305,92.615715,155.152893,164.078506,151.954544,134.557861,121.144638,119.648766,115.714882,113.351250,112.929764,112.243813,124.177696,144.243805,158.764465,169.516525,180.095047,178.210739,165.582642,143.549591,122.979347,111.111580,107.111580,101.227280,75.433899,61.111591,80.747948,99.723160,73.822327,34.648785,12.697538,9.202499,6.071913,7.776875,6.820673,7.117368,2.906619,0.500001,0.156199,0.000000,0.013223,0.034711,0.069422,0.173554,0.000000,0.000000,0.000000,0.000000,3.069422,0.000000,0.000000 -602225.555000,4612725.550000,7417,3305,95.123978,155.380173,159.495865,149.966949,133.611572,121.355370,117.603302,114.198349,111.330582,112.214874,110.801651,122.371902,141.487610,156.793396,168.000000,177.719009,176.132233,162.586777,140.388428,121.008263,109.438019,105.190086,99.363647,72.917374,57.909111,77.801666,98.148766,71.801666,33.914894,12.223157,9.033077,5.548770,6.982659,8.433900,6.095878,1.561162,0.319010,0.052067,0.091736,0.148761,0.030579,0.000000,0.541323,0.434711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602230.155000,4612725.550000,7440,3305,82.723160,149.318192,162.714890,149.070282,131.690094,120.260345,118.161171,112.442162,110.681831,110.359520,109.789276,122.342995,140.433899,156.343002,169.169434,178.971100,177.946320,162.012405,142.442169,120.566132,108.615715,104.962830,97.954559,71.665306,57.863655,77.417374,98.508278,74.152908,33.243820,10.902496,8.904978,6.281827,7.541337,7.536378,7.486789,2.617360,0.690084,0.511571,0.090083,0.080166,0.023141,0.000000,0.702480,0.398348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.355000,4612725.550000,7456,3305,98.585960,151.057022,162.131424,151.222321,135.098358,122.214058,120.247116,115.023979,113.156212,112.916542,111.825630,124.445465,142.602478,158.825623,170.321487,180.478516,178.404129,164.462006,142.453720,121.470261,110.023979,105.900009,98.445465,72.949608,58.751259,76.734734,97.957863,73.652084,34.147953,12.946299,8.949606,7.735547,8.264478,5.635548,5.596706,3.747113,0.644630,0.258678,0.162810,0.033058,0.002479,0.000000,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602236.355000,4612725.550000,7471,3305,92.205803,152.900024,164.346298,154.445480,136.784317,124.362823,119.809105,117.594223,113.900009,114.643814,113.073563,125.354553,143.478531,161.329773,171.627289,181.395889,180.726471,166.602493,144.610764,124.726456,112.147942,108.734718,102.990921,75.767776,60.585964,77.916550,97.230591,73.023979,36.181011,13.078529,9.362829,7.561168,5.681005,8.166956,7.519849,3.760335,0.488431,0.000000,0.000000,0.000000,0.000000,0.000000,0.152893,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602239.755000,4612725.550000,7488,3305,100.551247,161.460342,163.501663,150.220673,134.460342,122.931412,119.733070,116.509926,114.270256,114.187614,113.171082,125.154556,144.187607,160.129761,172.592575,181.485138,180.104965,165.435547,143.724808,123.435547,112.518188,108.096703,101.518188,75.080177,61.328121,77.923149,97.138023,73.014061,33.344646,13.601670,9.228945,8.689268,6.142164,8.655385,7.876046,3.501658,0.626448,0.343802,0.051240,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602243.355000,4612725.550000,7506,3305,85.078529,160.301666,160.012405,150.582642,135.152893,121.450432,119.863655,114.938034,113.210762,114.227287,111.673569,123.863647,142.392563,158.764481,170.847122,180.359497,178.359497,165.045471,141.979340,121.863655,111.268608,107.185966,101.409103,73.863655,59.342995,77.417374,95.342995,71.161171,31.789278,13.270265,9.219027,7.300012,6.495882,6.962821,8.014887,2.694220,0.469423,0.388431,0.123141,0.242149,0.058678,0.000000,0.178513,0.680992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.355000,4612725.550000,7526,3305,96.217369,166.300018,161.944656,152.696701,137.085144,123.399185,120.547951,117.258690,115.085136,116.027290,114.539680,125.919846,145.200851,160.862000,172.118210,183.093414,180.895065,167.167786,144.961166,124.506622,113.316544,108.523155,102.663651,75.622330,61.448776,80.010757,96.738029,72.457047,34.382664,13.662001,9.333077,8.384310,8.695884,7.417367,8.003317,2.346286,1.081821,0.000000,0.000000,0.127274,0.000000,0.141323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602252.955000,4612725.550000,7554,3305,98.907463,161.626450,162.246292,150.180176,136.362000,122.337196,120.676041,116.196701,115.436371,115.593391,113.709099,125.543808,143.899185,160.370255,171.899185,183.370255,180.328934,165.568604,144.477692,124.477692,112.750420,109.816536,102.981827,75.510765,60.783493,79.477699,99.279343,74.056221,35.362003,14.383489,9.362002,8.940507,7.940510,7.743815,7.347946,3.206617,0.619836,0.183472,0.131405,0.019835,0.000000,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.355000,4612725.550000,7581,3305,96.096710,166.559509,162.989273,152.708267,136.237198,121.088440,119.914886,115.088440,112.881836,113.427284,111.716545,124.394226,142.187607,159.220673,169.559525,179.757874,178.708298,163.278519,142.617371,121.939682,111.014069,107.534729,101.063652,73.766136,58.559521,76.683487,96.460350,71.766144,33.080185,12.546298,9.187622,10.076872,7.513237,8.478526,8.212408,1.813227,0.628927,0.071075,0.035537,0.300827,0.206612,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.555000,4612725.550000,7597,3305,97.726463,163.900024,163.908279,151.222321,135.585968,121.726463,119.602501,115.552910,114.718201,114.371094,110.734734,122.883492,141.908279,158.676880,168.263657,179.569443,177.081833,162.511597,141.205811,121.222336,109.437210,106.197540,99.900017,72.114899,58.420685,75.718193,95.999191,72.238861,32.759521,10.107455,9.081838,7.470260,6.657866,6.835551,7.801665,1.945459,0.647936,0.174381,0.186777,0.144629,0.052893,0.164463,0.069422,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602264.355000,4612725.550000,7611,3305,90.324814,164.085144,164.242172,155.093414,137.019028,122.109932,120.076874,116.266960,113.787621,116.547951,111.969437,123.531418,141.109940,159.407455,169.804153,179.531433,177.622330,162.696716,141.225647,122.349602,110.977699,107.085136,101.118195,73.581017,59.779358,77.556221,95.341339,70.903328,34.151257,12.765306,9.192581,8.920672,6.685966,8.241334,7.355385,2.819013,0.957853,0.013223,0.043802,0.019835,0.000000,0.064463,0.153719,0.000000,3.831405,0.000000,0.000000,0.000000,0.000000,3.268595 -602267.755000,4612725.550000,7628,3305,98.062828,164.203339,161.624817,152.343826,136.046295,120.525635,119.178528,115.806625,114.476044,116.261169,111.062820,122.748772,140.591766,158.294250,169.252899,179.740509,177.327286,161.814911,141.393417,121.798363,109.839691,105.484322,100.963654,72.566963,59.120678,77.476051,95.302505,69.409935,32.153736,11.779355,9.178531,8.731417,6.928940,5.488440,6.987615,3.334716,0.549588,0.245455,0.223141,0.152066,0.105785,0.000000,0.146281,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602271.155000,4612725.550000,7645,3305,105.304146,169.262817,163.171906,154.271088,136.700836,121.783485,118.436378,114.733902,113.362000,115.676048,110.742165,123.254562,139.692566,157.089264,168.428101,179.849594,176.072739,160.923981,140.304138,122.081009,109.659515,105.667786,100.163651,73.180183,59.477707,78.304146,95.800018,69.262825,32.927292,11.858694,9.105804,8.832244,7.260345,7.615715,7.755383,3.788435,0.526448,0.110744,0.164463,0.026446,0.000000,0.000000,0.282645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602275.155000,4612725.550000,7665,3305,84.834724,168.876053,165.454559,155.041321,138.446304,122.991753,121.049606,116.198364,115.677704,117.239685,112.264481,124.198357,141.512405,157.206635,170.495880,180.669434,177.297531,161.165298,141.983490,121.909103,110.809937,106.115715,100.363655,73.619850,58.446301,78.619850,97.066132,70.719025,33.702499,13.742167,9.123987,10.937203,7.519849,7.500012,8.716540,2.551244,0.559506,0.233058,0.154546,0.114877,0.000000,0.185124,0.837191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602277.955000,4612725.550000,7679,3305,110.387619,168.139694,165.197540,154.602493,136.742996,121.222336,118.842171,113.908287,112.156219,115.057045,109.544647,120.428947,137.718216,154.759537,166.759521,177.957870,174.585968,158.602493,139.057037,121.379356,108.172745,103.891754,98.172745,70.247124,57.329773,78.701675,96.858696,70.800842,35.304977,14.380184,8.924812,10.124807,8.148775,8.771089,6.918193,3.567774,1.408267,0.238018,0.000827,0.108265,0.114050,0.091736,0.258678,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.355000,4612725.550000,7696,3305,108.542992,165.724823,164.352921,155.625641,135.658707,120.377701,116.807457,111.576050,109.931419,112.410759,107.270264,118.080185,136.914902,152.724823,164.113235,176.807434,172.270264,157.385956,139.228958,118.419029,106.931419,102.914894,97.063660,68.088448,56.311588,76.840515,95.939697,71.501678,34.617378,12.073571,8.823985,9.840509,6.219020,6.209929,6.817366,3.014881,0.230579,0.000000,0.110744,0.228927,0.000000,0.000000,0.000000,0.000000,1.285951,0.000000,1.152066,1.124794,0.000000,1.919008 -602286.955000,4612725.550000,7724,3305,133.163635,169.601654,162.816528,154.990082,133.758698,119.742165,117.312408,112.973572,112.122330,114.138855,109.510757,120.395058,137.089264,154.039673,165.419846,176.072739,173.114059,156.692566,139.733887,120.378525,106.874397,103.031418,98.345467,70.163651,56.923985,76.047951,94.560349,70.866135,32.353737,13.164480,8.940515,12.562823,7.533897,8.335549,7.119020,4.530585,0.642152,0.215703,0.220662,0.372728,0.094215,0.300001,0.335538,0.230579,2.261157,1.288430,0.000000,0.000000,0.000000,0.000000 -602296.355000,4612725.550000,7771,3305,171.404968,165.776871,144.652893,131.925629,114.669441,103.851257,98.471092,94.710762,94.165306,94.785141,93.413239,105.429771,123.413239,138.677689,151.157043,162.884308,160.760345,150.223160,129.694229,110.553734,100.322327,95.322327,88.272743,64.355392,50.413242,70.520683,89.082664,67.809937,31.454563,9.681007,8.024813,5.809927,7.292575,7.631417,8.790096,5.185132,1.702482,1.112399,0.266944,0.281819,0.242149,0.000000,0.002480,0.244629,4.252066,2.006612,4.976034,1.530579,0.000000,3.038843 -601483.155000,4612715.550000,3705,3355,125.172745,138.630600,130.936386,119.390923,105.870262,95.936378,92.258690,90.275223,90.663651,92.300018,93.300018,104.589272,122.738029,140.324814,153.233902,164.490112,165.283493,154.109940,130.795883,111.448776,99.423981,96.845467,91.300018,64.242165,44.523159,62.481838,75.738029,55.655392,26.715721,10.458693,8.300018,11.269438,8.971914,12.036378,11.789272,8.619844,2.450419,0.647110,0.947110,1.347110,0.231406,0.695869,0.444629,1.418184,7.966117,6.943803,11.490085,9.395043,11.670250,16.513224 -601488.155000,4612715.550000,3730,3355,126.808281,137.452896,132.188446,122.295883,106.849602,97.998360,95.750427,93.279350,92.800018,96.023155,96.304146,106.609932,124.758690,142.833069,156.064468,166.841324,166.469421,156.072739,131.874390,110.221504,100.585136,97.444641,91.072739,63.295891,45.196716,61.122337,75.841347,54.990105,22.353737,9.029765,8.279357,9.209105,6.942986,8.595055,9.926459,7.688440,1.579343,1.085127,0.528102,0.128099,0.327274,0.511571,0.308266,0.747108,12.315704,8.426448,2.011571,6.693389,4.934711,11.869422 -601495.355000,4612715.550000,3766,3355,113.720680,137.466141,134.970261,124.614899,110.962006,100.160339,98.540504,96.135551,95.970261,98.036377,99.474388,109.052910,128.234726,143.945480,158.681015,167.565308,167.854568,157.102493,134.152084,113.358696,103.185135,98.887611,92.763649,65.895889,47.705803,62.879353,76.342171,56.143818,22.142994,9.529767,8.433077,7.527286,6.958689,7.452905,9.559518,4.702487,1.126449,1.285126,0.752895,0.262810,0.714051,1.048761,0.432232,0.244628,4.737191,8.061158,2.962811,5.701654,3.247934,1.614876 -601505.955000,4612715.550000,3819,3355,105.019844,135.581009,131.416550,123.972748,114.600845,109.369431,107.538849,105.538849,104.935547,106.166954,107.100838,117.910759,136.175232,152.749603,167.212418,175.691757,175.881851,166.104980,143.671097,123.109108,111.191742,106.914886,100.190926,71.000839,53.331425,66.909935,82.278534,61.468613,28.521509,9.897536,9.108283,6.665301,7.165300,7.346292,6.847945,4.538023,2.328930,1.617357,1.611572,1.419835,0.642149,0.095042,0.552893,0.363637,0.486777,0.981818,0.000000,1.969422,0.428926,1.733058 -601519.555000,4612715.550000,3887,3355,91.066956,144.612411,140.587616,130.852081,118.050438,106.372749,103.571098,102.381012,100.645477,101.761177,103.752914,114.389267,132.744644,149.058685,161.331421,171.447098,171.017365,160.521500,138.190918,116.033897,105.414070,101.711594,96.281837,67.323158,48.757874,65.207458,82.860344,61.711586,26.438860,9.856216,8.752912,4.990093,6.960344,7.381006,8.251254,3.202485,0.875209,0.803308,0.209091,0.128926,0.229752,0.000000,0.198347,0.096694,0.811570,3.006612,0.000000,1.353719,0.000000,0.000000 -601528.755000,4612715.550000,3933,3355,105.890923,151.634735,141.229782,133.890930,119.750427,108.957039,106.353737,103.221504,102.659515,105.130592,105.874397,116.320679,134.337204,152.221512,163.047958,172.990112,172.320679,161.791763,140.304153,118.717369,108.097534,103.320679,96.709106,69.543816,50.452908,66.601669,84.576874,63.642994,28.436384,11.264481,8.791754,6.417367,6.987616,7.493403,7.836377,3.699179,0.434712,0.171075,0.168596,0.393389,0.029752,0.038017,0.000000,0.514050,0.000000,0.944628,0.967769,0.781818,1.981818,1.941322 -601535.555000,4612715.550000,3967,3355,123.638023,151.800842,142.817352,134.090088,119.288445,109.164474,105.966125,103.767776,102.346291,104.321503,105.238853,116.073563,135.023987,150.412399,163.379364,171.511597,170.949600,161.023987,138.379349,118.437202,106.379349,102.602501,96.081841,67.362831,51.214069,65.792580,82.825630,62.412411,27.160351,9.371917,8.734730,4.410753,6.981831,6.771088,6.571914,1.821491,0.289257,0.324794,0.204133,0.111571,0.000000,0.069422,0.605786,0.000000,2.076033,0.952066,2.433885,3.848761,1.005785,3.891736 -601544.155000,4612715.550000,4010,3355,147.353745,181.345459,159.833069,148.502487,130.676041,118.204971,117.692574,113.899185,113.725632,120.998360,114.485962,125.469444,142.601654,160.378525,174.783478,182.585129,181.287613,165.097534,145.031418,125.370270,115.047951,111.436378,105.618195,76.568619,59.717373,76.899193,90.163658,65.238037,30.221506,11.139688,9.601672,12.671918,6.732246,9.440513,6.160346,2.449594,0.169422,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.997521,0.000000,0.000000,0.000000 -601547.755000,4612715.550000,4028,3355,115.844650,171.175217,156.679352,149.456207,132.026459,117.348778,116.902496,114.133904,114.100845,120.067787,115.365311,125.844650,143.200012,160.034714,173.646286,183.761993,181.439682,165.935547,145.927277,126.629768,114.497536,110.952087,105.472748,76.274399,60.745468,75.943817,89.811584,66.142174,31.166960,13.202496,9.588449,12.801668,8.967785,7.450428,8.671913,3.201659,0.338844,0.000000,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.555000,4612715.550000,4042,3355,110.530594,179.522324,156.456207,150.323975,132.555374,117.885963,118.340508,115.100838,115.753731,119.191742,116.125633,127.133896,144.704147,162.183487,174.357040,183.993393,181.654556,167.828110,146.803314,126.390091,113.753731,112.580177,106.018188,77.563644,61.390099,77.720673,89.737198,65.505806,29.365311,11.740513,9.638037,10.259520,7.929767,8.008279,6.471088,4.489264,0.233059,0.044628,0.000000,0.100827,0.000000,0.090909,0.000000,0.000000,0.000000,1.202479,0.000000,0.000000,0.000000,0.000000 -601555.155000,4612715.550000,4065,3355,121.752914,171.347946,160.339661,148.628922,132.562820,118.942986,118.207451,115.347946,114.513229,118.893402,114.554558,126.504974,142.976028,162.009094,174.339676,183.942993,180.744644,167.042145,146.918182,126.612411,115.000839,111.546288,105.554550,75.843826,61.141342,75.397545,90.455383,65.976051,30.166134,12.553738,9.595887,11.082660,7.975222,8.020676,8.409930,3.614883,0.202480,0.178513,0.000000,0.058678,0.014050,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000,0.000000,0.000000,0.000000 -601560.155000,4612715.550000,4090,3355,112.503326,172.999176,156.957870,147.371094,131.817368,118.776047,118.065300,114.850426,116.123154,117.453728,115.288445,127.048775,144.685120,161.924820,172.957855,183.197525,179.635544,167.627289,145.726456,125.371086,114.181007,111.139687,105.445473,76.189278,60.643822,75.156219,91.635551,67.660347,31.908283,11.872746,9.585969,10.652907,5.889271,7.833900,8.047950,2.945461,0.863638,0.173554,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.165289 -601568.955000,4612715.550000,4134,3355,99.505798,160.489273,155.795044,146.034714,131.299179,115.233070,116.266129,114.357033,113.456207,114.985130,112.976868,125.166954,143.505798,160.348770,172.241333,181.307449,178.910751,167.745468,144.522324,123.852905,113.555382,109.117363,103.563644,75.191765,58.704151,75.059532,89.662819,66.472748,28.522331,9.920678,9.414896,6.000838,6.685138,8.124808,6.111583,1.974386,0.083471,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.357025,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.955000,4612715.550000,4164,3355,87.466957,160.780182,155.119019,146.912399,130.738861,118.375221,118.342163,115.804970,113.548775,116.069435,115.722328,127.160339,145.449600,162.284302,173.358688,183.375214,180.300827,169.598343,145.953735,125.102493,113.639679,110.540504,105.309105,77.416550,60.242996,73.912422,90.342163,67.119026,30.623158,11.604977,9.573573,6.431419,6.078527,8.471089,7.242162,2.106617,0.820664,0.107438,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.133884 -601577.555000,4612715.550000,4177,3355,94.655396,159.170258,157.517365,146.715714,130.319016,119.707451,117.228111,114.641335,113.492577,116.071091,114.963646,127.021500,144.360336,162.162003,173.616547,181.814896,181.963654,168.558685,145.699188,125.641335,114.451256,111.343811,105.418198,77.409943,61.269444,74.666145,90.748772,66.476051,30.752911,11.768612,9.583490,7.579353,6.818197,9.042989,8.708280,4.360340,0.335538,0.166943,0.000000,0.000000,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.355000,4612715.550000,4191,3355,98.833893,165.197510,157.643799,148.412399,132.139694,118.941345,119.362831,115.999191,114.933075,117.462006,116.387619,127.767792,147.296692,162.693375,174.528091,183.354538,181.784286,169.693375,146.321487,125.362831,114.941345,112.371094,106.445473,76.809113,60.528118,73.726463,89.147957,67.842171,31.486795,11.881010,9.676880,8.021502,7.618199,8.780181,9.429768,3.423974,0.334712,0.110744,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.617355,0.000000,1.989256 -601584.555000,4612715.550000,4212,3355,94.795883,163.262833,157.411591,145.973572,130.585144,119.378525,118.204971,115.552078,114.535553,116.634727,115.758690,126.849602,146.436386,161.990112,173.287628,182.643005,181.485977,170.576889,145.097549,125.568611,113.684311,111.072739,105.345467,76.899185,60.667786,74.890923,90.791748,68.642990,32.642994,12.635554,9.576880,7.353734,7.283485,8.626461,9.470263,2.267774,0.909919,0.471075,0.257852,0.051240,0.000000,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.555000,4612715.550000,4237,3355,99.490929,161.057037,158.569427,144.957855,131.437195,119.966125,118.726456,115.189278,115.147942,116.172737,116.635551,127.329765,145.908264,161.453735,174.329758,183.197525,181.933060,169.139679,145.635544,125.751251,113.652077,110.503326,104.718201,77.106628,60.544651,74.858696,88.957870,67.346306,29.718201,10.451256,9.519853,8.061172,5.617370,7.380180,7.350425,3.391742,0.230579,0.134711,0.000000,0.049587,0.104132,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.248760,0.000000 -601595.955000,4612715.550000,4269,3355,102.706627,157.405792,158.339676,146.075226,133.033890,121.455383,120.281830,117.976044,117.042160,117.215721,117.695053,128.827286,147.050430,164.083481,175.190903,183.761154,182.223969,169.108261,147.819016,126.521500,115.455383,111.290092,105.281830,77.794228,61.513241,75.124809,89.645470,64.100014,30.860352,11.348778,9.571094,6.155384,7.677702,7.089270,8.767783,1.607442,0.390910,0.133884,0.054546,0.000000,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601599.155000,4612715.550000,4285,3355,105.214058,158.271927,158.230591,145.866959,129.420670,120.974388,118.866951,116.635551,116.181000,118.271912,117.528107,129.585968,148.379364,163.081833,175.271927,183.271927,182.933075,169.742996,146.833908,126.181000,114.552902,113.189270,106.900009,77.767776,61.519852,77.395882,91.048775,65.338036,30.552914,12.326464,9.718202,7.645467,7.246295,7.979353,7.659517,4.759512,0.394216,0.256199,0.108265,0.000000,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,2.608265,0.000000,0.000000 -601602.355000,4612715.550000,4301,3355,95.524811,160.690918,158.054565,146.021500,131.021500,121.170258,120.401665,117.104149,116.451256,116.938858,117.690926,128.723984,147.178528,163.294235,175.294205,184.872726,182.839661,170.839676,146.657867,126.442986,116.079353,112.608276,107.418198,77.872742,62.310764,77.161995,90.219849,66.905807,29.955391,12.146298,9.765308,7.508276,7.496710,7.876873,8.511584,3.726454,0.223141,0.085951,0.000000,0.000000,0.161157,0.046281,0.000000,0.000000,2.280992,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.355000,4612715.550000,4316,3355,109.995880,155.855377,157.896698,144.847122,131.590927,121.128113,118.417374,116.400841,115.549606,117.508278,117.185966,128.004150,147.268616,162.417358,173.351242,183.657028,182.574387,169.111572,146.830597,126.450432,114.318199,111.475220,104.136383,77.450432,61.392586,74.863655,90.433899,65.855392,30.466961,11.142166,9.466961,6.681830,6.220677,5.982656,7.294228,2.526451,0.000000,0.037190,0.017356,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.555000,4612715.550000,4337,3355,92.325638,150.780182,157.895889,145.821503,130.639679,120.408279,119.143814,116.672737,116.292572,116.631416,117.433067,129.052902,147.036377,163.028122,175.366959,183.333908,182.209930,171.647949,147.267792,124.895882,114.639679,112.110764,105.763657,78.267792,61.895885,75.590103,88.780182,65.804977,28.945475,12.240515,9.614896,8.084311,6.778528,6.532243,7.048772,2.634717,0.215703,0.063637,0.168595,0.176034,0.098347,0.000000,0.000000,0.000000,0.000000,1.108265,1.780165,0.000000,0.000000,0.000000 -601614.555000,4612715.550000,4362,3355,107.748772,152.707458,158.806625,147.368622,134.319016,123.872742,120.178535,118.203323,118.195061,119.145477,119.343826,131.302490,148.583481,163.971909,177.393402,185.938858,183.542160,172.492569,147.798355,126.186798,116.120682,113.004982,107.327293,78.839684,62.847950,76.914070,89.583488,67.550430,33.310764,13.314068,9.757044,6.276873,6.760347,7.194230,7.202493,3.171080,0.228926,0.317356,0.313223,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601619.555000,4612715.550000,4387,3355,110.161995,155.604965,160.538849,149.629761,134.092575,122.885971,121.861176,119.158699,119.481010,120.340515,120.481010,131.257874,150.042984,165.497528,177.323975,186.109100,186.200027,172.935547,147.770264,127.323982,116.051254,113.530594,107.836380,80.224808,62.985142,78.497536,91.051254,67.695885,30.142168,12.935555,9.803326,6.059519,9.572743,8.817370,7.257864,3.295049,0.342976,0.424794,0.023141,0.000000,0.077686,0.009918,0.000000,0.000000,1.141322,0.000000,0.000000,0.000000,1.340496,0.000000 -601622.355000,4612715.550000,4401,3355,101.103325,151.838837,161.549591,149.954544,135.814056,125.772736,122.979355,119.648773,119.690102,121.516548,120.615715,132.921494,151.070251,166.657028,178.838837,186.756195,186.723145,173.822311,149.615707,127.995880,116.657043,113.847122,107.409096,81.004150,64.888451,79.640511,91.657043,67.938034,32.268616,13.995887,9.764482,8.500015,9.721505,7.381835,8.860345,2.907445,0.223141,0.252893,0.000000,0.033058,0.000000,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.555000,4612715.550000,4417,3355,109.936371,152.665283,158.706604,148.896698,132.690094,124.359512,120.235542,119.252075,118.756203,120.450424,120.590919,131.028931,149.309921,164.929764,177.814056,186.367783,184.400833,171.789261,147.780991,127.648766,115.078522,112.541328,108.227280,78.847122,62.466957,77.136383,92.169441,67.342995,31.822334,14.550432,9.838862,8.083485,9.316545,8.490097,8.083485,3.494221,0.566118,0.172728,0.000000,0.318183,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.955000,4612715.550000,4434,3355,105.104156,156.106628,155.891739,148.255371,134.007446,124.462006,122.296715,119.916550,119.528122,119.792580,120.594231,131.908279,149.346283,165.866943,177.767776,186.552902,185.957855,173.114868,148.635544,128.652084,116.990929,113.296715,108.536385,80.544647,63.842167,78.420677,91.966133,68.792580,31.495060,12.062827,9.866961,8.262824,7.453735,8.561999,7.548775,4.601661,0.420662,0.080166,0.086777,0.200000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.355000,4612715.550000,4456,3355,98.455383,152.613251,154.993393,146.687622,133.836380,121.538849,120.365295,117.241333,117.464470,118.290916,118.753731,129.803329,147.638046,164.084290,177.067780,184.910751,183.183487,171.042984,146.894241,125.836380,114.629761,111.522324,105.745461,77.679352,61.530598,76.819847,91.514069,66.125641,29.390102,11.610761,9.613242,5.853730,6.755387,6.071088,8.585137,2.149592,0.377687,0.254546,0.066942,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,1.133058,0.000000,0.000000,0.000000,0.000000 -601639.955000,4612715.550000,4489,3355,104.023155,152.657028,158.723145,147.235535,134.128113,123.202492,120.739685,117.681831,117.690102,118.359520,120.533073,129.938034,148.706604,164.144623,176.847107,184.814056,184.425613,171.037186,147.706604,126.706627,115.648773,111.888443,105.954559,77.309944,61.904980,77.500023,90.566132,66.599197,30.359522,12.120678,9.632252,7.914890,7.143817,7.753734,7.625633,3.390916,0.501654,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.555000,4612715.550000,4542,3355,89.285149,154.560333,157.056198,145.436371,132.196716,122.560356,120.138863,118.700844,117.254562,118.395065,118.204979,128.948776,148.866119,162.973557,176.469421,184.403305,183.444641,171.725632,148.601654,125.981842,115.841339,111.188454,105.709114,77.568611,60.857872,77.923981,91.890923,67.527298,32.791756,11.970265,9.609937,5.970261,5.647122,8.420674,6.714061,1.725624,0.243802,0.133059,0.132232,0.001653,0.000000,0.161157,0.000000,0.000000,0.000000,0.000000,0.934711,0.000000,0.000000,0.000000 -601654.155000,4612715.550000,4560,3355,99.234734,148.841324,156.560333,145.965302,132.345474,121.601677,118.932251,116.295891,116.031425,117.659523,117.890930,129.023148,147.213226,163.395050,175.196701,183.816528,182.915710,170.254547,147.180176,124.775230,114.535561,110.229774,104.890930,77.114075,60.576885,75.965309,89.824814,67.238037,31.171921,12.055390,9.535557,6.333070,5.090922,5.215714,5.246294,2.678519,0.415703,0.073554,0.091736,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.955000,4612715.550000,4589,3355,94.127281,147.962814,156.285126,145.119873,131.657043,121.747940,119.632240,115.995872,117.086784,118.119843,118.433891,129.425629,147.566147,163.458679,175.326447,184.144623,182.855377,170.855377,145.987640,125.103325,113.838852,109.731415,103.772736,77.871918,60.144646,76.458694,89.772743,66.805801,29.283491,11.904976,9.433905,4.898358,7.169437,6.194229,7.633070,2.225625,0.523968,0.100827,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.007438 -601664.155000,4612715.550000,4610,3355,107.458694,153.911575,156.589264,146.167770,132.605804,122.134727,120.448776,117.233902,116.952904,118.407455,118.936378,129.209106,147.704971,163.457031,175.506622,185.250427,183.209091,172.349594,147.820663,126.341339,114.539680,111.167786,104.572739,78.771088,61.630592,75.060349,92.068611,68.407455,32.118202,12.154563,9.506631,5.399186,7.811587,6.784312,8.253733,2.410748,0.709093,0.000000,0.000000,0.000000,0.000000,0.205786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.955000,4612715.550000,4624,3355,100.634727,157.243011,156.317368,147.069427,133.342163,123.904144,121.276047,118.540504,117.490921,118.400009,119.466125,131.052917,148.366943,165.879379,177.276062,185.945496,183.664505,172.920700,148.292572,127.119026,115.069435,112.044640,105.945465,78.292580,61.631420,76.218201,92.639679,67.912415,31.168615,12.440514,9.631423,4.359516,6.753734,8.188442,6.026459,2.503311,0.315703,0.513224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.755000,4612715.550000,4638,3355,104.262817,155.062820,155.542145,146.029770,132.294220,123.128929,119.806618,118.575211,117.558685,119.723969,118.765297,130.393387,148.914062,164.740494,177.128937,185.120651,184.343796,171.831421,147.376877,125.682648,114.715706,111.112404,105.509094,77.765305,61.219852,77.079353,91.748772,68.327293,31.847956,12.284316,9.591755,5.618193,7.704973,6.966956,7.344641,3.337197,0.313224,0.057851,0.303307,0.132232,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.955000,4612715.550000,4654,3355,106.363647,148.167770,156.861984,145.233887,132.870270,122.399185,119.878525,116.250427,116.671913,117.531418,117.432243,128.266953,147.688431,163.704987,175.969421,184.795868,182.878525,171.010757,145.523148,125.126457,113.407455,108.663651,103.300018,76.556213,58.266960,73.564476,89.919846,66.647125,29.142994,9.461174,9.390927,4.659513,4.614889,5.271913,5.969433,2.233890,0.355373,0.000000,0.350413,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,1.064463,0.000000,0.000000,0.000000,0.000000 -601676.955000,4612715.550000,4674,3355,101.866959,149.004150,157.814072,146.301666,132.995880,123.227287,120.557869,118.590927,117.359520,118.979355,119.095055,130.896713,148.648773,164.888443,177.640518,186.351257,182.995880,172.070267,148.690094,125.508278,116.037209,111.326462,105.409103,76.888443,60.557873,76.243820,91.450432,68.243820,30.491756,13.594234,9.582664,5.264475,6.286792,5.899187,8.056211,2.296699,0.513224,0.057851,0.049587,0.000000,0.000000,0.023141,0.000000,0.000000,1.213223,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.555000,4612715.550000,4687,3355,97.729767,154.572739,157.580994,148.217361,131.911591,122.845467,120.399185,117.415718,115.952904,119.266960,118.845467,130.035553,148.432236,164.688431,176.142975,184.333069,183.622314,171.250427,148.382645,126.655388,114.283485,110.985962,105.209106,76.771088,59.572750,75.771088,92.688446,69.010765,30.423988,11.514894,9.564483,5.114059,7.133072,5.452079,6.119020,1.927278,0.461985,0.083471,0.000000,0.000000,0.044628,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.355000,4612715.550000,4701,3355,98.834724,154.376877,157.302490,146.765305,133.352081,124.649597,121.161995,118.881004,117.814888,119.839684,119.310760,131.062820,148.740509,165.600006,177.360336,186.575226,183.781830,172.385132,148.434723,126.666130,115.723976,110.195053,106.509102,77.980186,61.525639,75.641342,92.095879,69.046303,32.699192,13.142167,9.682664,4.990921,7.304974,7.600840,6.542986,2.790915,0.367769,0.109918,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.961157,0.000000,0.000000 -601686.955000,4612715.550000,4724,3355,100.573570,154.454544,154.917358,147.272751,133.561996,123.628113,119.958694,118.082664,117.652908,119.454559,118.644646,130.330597,148.016541,165.429749,176.983475,186.520660,184.528931,172.355377,149.214890,126.528938,114.173569,111.355385,105.636383,77.049606,61.206627,75.603325,91.272743,68.198364,30.115721,11.853738,9.603325,4.790092,6.698360,7.306625,7.014063,2.047112,0.519836,0.242976,0.129753,0.128099,0.028926,0.022314,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.755000,4612715.550000,4738,3355,119.389259,155.531418,157.085129,147.547943,134.663651,123.795883,119.944641,118.035553,116.539680,120.283485,119.936378,130.258698,148.762817,166.316528,177.010757,185.944641,184.465302,172.820663,148.366119,127.357864,115.167786,109.754562,105.481834,78.118195,61.300022,75.928116,91.027290,68.771088,32.019028,11.269440,9.589275,5.356209,7.183487,8.195055,7.944641,2.780172,0.444629,0.076033,0.039670,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,1.036364,0.000000,0.000000 -601692.555000,4612715.550000,4752,3355,103.421501,156.133896,158.117371,147.687607,133.348785,122.456215,119.439690,117.927292,117.365311,118.381836,118.960350,129.861176,148.728943,165.538849,177.373581,185.431412,184.150421,172.266129,149.084305,126.183487,116.100845,110.464478,104.745476,76.778534,59.811596,75.803322,93.530594,68.547127,31.514069,11.019027,9.522335,6.147119,6.371915,6.974393,6.559516,2.420666,0.656199,0.110744,0.197521,0.052893,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.961157,0.000000,0.000000,0.000000 -601697.155000,4612715.550000,4775,3355,97.115707,160.923157,158.658691,149.369431,135.443817,123.923149,120.443810,118.303314,117.162819,120.823975,120.865295,130.675217,148.947937,165.981003,177.997528,187.030594,185.947937,174.022324,149.906616,127.162819,115.427284,111.385963,106.518188,78.162819,61.071922,76.295052,92.666954,69.187614,31.881836,13.052911,9.683490,4.447118,7.668611,7.414064,6.623981,2.024798,0.439671,0.112397,0.178513,0.099174,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.355000,4612715.550000,4806,3355,113.129776,162.218201,158.763641,152.135559,137.639694,125.978531,123.036385,120.631424,118.838036,121.780182,121.813240,132.276047,149.598373,167.011566,179.218185,188.176865,187.904129,173.995041,149.664490,129.284317,116.854568,113.160347,108.309113,79.813240,62.036381,76.515724,91.846298,71.292580,33.135555,14.286796,9.846299,7.652078,6.004147,8.075220,7.716541,2.174384,0.418183,0.166116,0.355372,0.109918,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.155000,4612715.550000,4820,3355,122.790092,163.178528,160.856216,150.558685,134.881012,125.864479,122.600014,121.236374,118.616539,120.914062,121.500839,132.302490,150.228119,166.748779,179.062820,187.500839,187.112411,174.533890,150.674393,127.781830,116.616539,112.765305,107.327286,78.889267,61.723988,76.591751,91.881004,70.740517,33.046299,12.827291,9.757044,4.705795,7.531421,7.423155,7.645470,2.102485,1.354548,0.174381,0.154546,0.201654,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,1.058678,0.000000,0.000000 -601710.555000,4612715.550000,4842,3355,112.166138,166.124802,159.810760,151.967789,136.223984,125.025642,122.075226,120.885147,118.876877,121.488449,122.703323,131.736374,150.876877,167.265305,179.215714,188.488434,186.736359,173.785965,150.232239,128.480179,115.604156,112.108276,106.190926,78.265312,60.480186,76.810768,91.356216,68.612419,31.422333,13.566961,9.653738,4.743812,6.927288,6.500839,7.222326,2.472733,0.254546,0.248761,0.190083,0.127273,0.201653,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.955000,4612715.550000,4859,3355,124.441330,165.763657,160.441345,149.515717,136.234726,123.598366,120.201675,119.135559,117.755394,120.705803,119.804977,130.466125,149.962006,166.482666,178.044647,187.656219,186.730591,173.829773,148.780182,126.143822,115.094231,110.094231,105.581841,77.490929,59.829773,75.647957,89.689270,68.069443,30.937210,10.516545,9.598367,4.773563,6.129766,6.689269,7.653731,2.095046,0.542150,0.179339,0.024794,0.114050,0.000000,0.180165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.755000,4612715.550000,4878,3355,114.638031,164.638016,161.051254,151.249573,137.009933,123.414894,122.935555,120.390099,118.902496,121.976875,121.018196,131.522339,151.340485,168.290924,179.671082,188.315720,186.654541,173.761993,149.968582,127.910759,115.084312,111.323982,106.290924,77.323982,60.125637,76.332253,91.323982,68.935555,30.621508,11.192579,9.662829,4.793398,6.180179,7.083484,5.866127,2.657856,0.375207,0.000000,0.173554,0.000000,0.019835,0.045455,0.011571,0.000000,1.121488,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.555000,4612715.550000,4902,3355,127.484322,164.492584,162.484314,152.517380,135.905792,123.484314,121.980179,120.823151,119.583481,122.228111,120.748772,131.517365,149.360367,166.583496,179.533890,188.294235,186.203323,174.666122,150.823166,126.947121,114.938858,111.500839,105.690926,77.319031,59.484314,75.079361,90.971924,68.492584,30.011589,12.290927,9.608284,4.962820,5.639685,6.083484,6.738855,1.901658,0.488431,0.157025,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,1.281818,0.000000,0.000000,0.000000,0.000000 -601730.555000,4612715.550000,4942,3355,105.232246,159.455383,164.124802,151.281830,134.653732,123.893402,124.381004,120.604149,118.562820,119.835548,119.447121,131.695053,150.628937,167.703323,178.100006,188.595886,186.951248,172.521500,147.984314,127.728111,115.942986,113.430588,106.100014,79.414062,62.595890,76.248779,94.257034,68.480186,33.116547,12.073571,9.645473,10.367784,7.691748,8.754560,8.018194,1.616535,0.476861,0.158678,0.093389,0.000000,0.000000,0.000000,0.000000,0.032232,0.000000,0.000000,1.021488,0.000000,0.000000,0.000000 -601734.355000,4612715.550000,4961,3355,117.404976,163.933884,163.471069,151.099167,135.561996,125.355385,124.140511,120.743820,120.669441,121.008278,121.165306,132.727295,152.760330,167.818176,179.619827,189.165283,186.347107,172.950409,148.297516,126.884315,116.181831,114.099190,108.363655,79.264481,62.446297,76.809937,94.495880,68.611595,31.735558,12.508283,9.851258,7.985964,6.229764,7.240510,5.825630,2.466124,0.672730,0.235538,0.121488,0.000000,0.276033,0.000000,0.000000,0.000000,0.000000,0.000000,0.709091,0.000000,0.000000,0.000000 -601737.155000,4612715.550000,4975,3355,114.746307,163.713242,164.680191,152.465317,137.308289,124.250435,124.101677,120.423988,119.622337,120.167793,120.366135,132.490112,152.184326,167.969437,179.407440,188.663635,187.316528,172.605789,148.349609,127.539696,116.399193,114.043823,107.754570,78.333084,63.366135,76.985970,93.804153,69.688454,32.333076,12.709934,9.795886,8.124807,7.409104,8.032246,6.059515,2.603314,0.737192,0.000000,0.185951,0.034711,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,2.465290,0.000000 -601742.155000,4612715.550000,5000,3355,117.007454,174.437195,164.949585,154.040497,138.338013,125.346291,124.288445,120.908279,119.643814,120.850426,121.685135,132.850418,150.569427,168.354553,180.015701,189.495041,186.999176,172.660339,149.023972,127.164474,115.585960,113.023979,107.354553,77.577713,62.362831,76.288460,92.255394,67.933075,31.676876,13.242993,9.759524,7.831419,6.967781,6.635550,7.449599,3.983479,0.531407,0.074380,0.094215,0.000000,0.000000,0.002479,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.155000,4612715.550000,5015,3355,120.243813,168.012390,166.838837,153.673569,138.549606,125.400833,123.979347,120.995872,120.111580,121.648766,121.012405,133.599182,152.326462,168.599167,180.607437,189.483475,188.111572,174.210739,148.590927,127.797531,115.359512,112.987610,107.227287,78.888451,63.276875,76.012421,91.863655,67.152908,31.086798,12.062829,9.747953,8.219024,7.652081,7.031418,6.509927,2.742156,0.847110,0.216529,0.216530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.959504,0.669422,0.000000,0.000000 -601750.155000,4612715.550000,5040,3355,102.683495,170.253738,163.956207,151.633896,136.104965,123.435547,123.055382,120.096703,119.476868,120.468605,119.865311,132.253723,151.014053,166.757858,178.576065,188.675232,186.633911,172.485153,148.815720,126.047119,116.047127,112.419029,105.790924,77.096710,60.708282,76.129768,91.815720,66.700020,29.534729,12.305803,9.617374,7.970263,6.838856,7.768609,6.647945,3.047113,0.510745,0.046281,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.155000,4612715.550000,5060,3355,108.294228,172.533875,166.071075,154.666107,138.715698,126.186790,125.831421,122.558693,122.517365,124.029762,121.872742,133.757034,152.649582,170.442978,181.236359,191.244629,189.269424,173.748764,148.963638,128.360336,116.897537,114.889267,108.963646,79.715714,64.004982,78.021500,94.252907,69.682655,31.153740,13.705803,9.905803,8.841338,6.664474,7.836378,6.930589,2.574387,0.574381,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.406612,0.000000 -601757.355000,4612715.550000,5076,3355,113.856209,177.153717,166.757019,155.947098,140.120651,127.914062,127.244644,124.442986,124.525635,126.285965,124.690926,136.219849,153.905777,172.285950,184.798355,192.393387,190.352066,175.591751,151.947098,129.922333,120.095879,116.004974,109.781830,81.773567,63.839691,80.021500,94.558693,69.352081,33.186798,13.796713,9.980185,9.337205,8.557038,6.679351,7.708278,2.093396,0.914052,0.613224,0.161158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.755000,4612715.550000,5103,3355,114.678535,181.323135,168.934708,158.496689,142.075226,128.901672,128.257050,125.901672,125.695053,128.009109,125.587616,137.438858,155.554565,172.587601,185.149582,194.397537,191.372742,175.819000,152.100006,131.141342,119.546295,116.463646,111.009102,81.835556,65.662003,81.232254,95.587624,70.876877,34.306633,14.328117,10.091756,10.587622,8.856214,8.457039,9.297535,5.033067,0.498349,0.080992,0.249588,0.000000,0.000000,0.000000,0.000000,0.031405,0.000000,0.000000,1.182645,0.000000,0.000000,2.223141 -601765.955000,4612715.550000,5119,3355,123.447121,180.298355,167.389267,156.240509,139.546295,125.637199,125.885139,123.934723,122.628937,126.215714,122.918198,134.529770,152.967789,171.414062,181.885117,191.438858,188.529755,174.116547,149.372742,128.323151,115.678528,113.240509,109.100014,79.447128,63.033901,78.678535,93.571091,66.356216,31.166134,12.276052,9.918200,9.761173,6.644639,7.152079,5.030587,3.010751,0.350414,0.335538,0.038843,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.155000,4612715.550000,5140,3355,124.057861,184.702499,168.991745,157.917374,141.371902,127.347122,127.107445,124.041328,124.231415,127.413239,124.016541,135.611572,154.082642,171.876053,183.611588,193.561996,189.975220,174.347122,150.842972,129.429764,117.338852,115.636375,109.545471,81.132256,65.057869,79.396721,93.157051,68.611595,32.495888,12.989274,9.958698,9.666132,7.305799,7.319848,7.920674,3.166124,0.403307,0.109918,0.000000,0.116529,0.000000,0.000000,0.000000,0.028099,2.500827,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.355000,4612715.550000,5161,3355,135.492569,185.566956,169.186783,162.294205,141.955383,127.723991,126.922333,126.426468,124.781837,130.360352,125.054565,136.492569,155.583466,173.616547,184.707458,195.244644,191.302490,174.261169,152.244629,129.748779,118.897545,117.732254,110.418205,81.996712,65.715721,81.558701,93.418205,69.236382,32.781837,12.644648,10.038036,11.293405,8.617369,7.664476,8.342988,3.552076,0.357026,0.042149,0.259504,0.011571,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.973554,0.000000,0.000000,0.000000 -601778.155000,4612715.550000,5180,3355,126.685959,191.603302,170.661163,159.983475,143.652893,127.396713,127.752075,125.438026,125.066124,131.148773,125.512413,136.743805,153.768600,172.512390,184.892563,194.933884,191.247940,174.297516,150.892563,130.578522,118.611580,115.851250,110.181824,80.793404,65.289276,81.553741,93.214890,68.024811,30.859524,11.993406,10.016548,8.813239,6.666129,8.183484,6.271084,3.069431,0.280166,0.000000,0.042975,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.955000,4612715.550000,5214,3355,146.523163,190.862000,174.523163,162.870270,142.399200,129.514893,127.944649,127.060356,127.167793,132.349609,126.415726,136.795883,154.812424,172.754562,185.886795,196.614075,192.192581,175.093414,152.572754,130.713242,119.101677,115.746307,112.390930,81.060356,63.754562,81.779358,94.002502,66.605804,32.721508,13.413240,10.217374,13.073571,7.757037,7.713237,6.587617,3.558685,0.690084,0.037190,0.112397,0.163637,0.096694,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.155000,4612715.550000,5230,3355,132.990921,168.819839,167.985138,158.373550,141.621521,129.704147,127.662819,125.224800,124.390091,126.753731,126.241333,138.034729,156.150406,171.621521,184.762009,194.679367,192.687622,177.332260,153.464478,132.753723,120.522324,117.299187,113.472740,82.943810,67.720680,82.811577,98.629768,71.274399,35.580185,14.664482,10.315722,10.905799,8.463652,9.612411,9.161999,4.306620,0.901654,0.184298,0.276860,0.000000,0.000000,0.000000,0.000000,0.155372,0.000000,0.000000,0.000000,1.042975,0.000000,0.000000 -601791.355000,4612715.550000,5246,3355,116.647957,160.581818,161.565292,150.623138,136.209915,124.871078,123.656212,121.788445,121.209930,121.788445,121.904144,133.350418,152.565292,169.548767,181.242981,188.780167,187.647934,174.697525,150.565292,129.796692,118.689270,115.218193,109.218193,81.697533,65.143822,80.226463,96.342163,70.383484,33.052914,12.740514,9.928944,6.202492,5.795053,7.876046,7.791749,3.268603,0.520663,0.069422,0.374381,0.000000,0.000000,0.000000,0.000000,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.755000,4612715.550000,5268,3355,112.159508,159.324799,162.258682,151.225632,137.655380,126.242157,124.490089,121.895050,122.919838,123.225624,123.812401,135.895050,154.531418,170.357864,183.432236,190.944641,190.109924,177.448761,151.952896,130.754547,120.052071,115.316536,112.027290,83.316536,66.746300,81.812401,96.250427,71.663651,33.002499,13.790099,10.184316,6.177698,7.957866,7.566128,8.229767,3.161165,0.900828,0.351240,0.362811,0.000000,0.116529,0.000827,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.155000,4612715.550000,5285,3355,103.694221,152.043823,162.002487,149.647125,137.209106,126.390915,124.696701,121.944633,122.622330,122.828934,124.027283,134.457031,153.771103,169.622314,182.151245,189.721497,189.390915,175.366119,150.688446,130.258682,119.581001,115.118187,110.572731,83.101669,65.481834,81.721504,96.704971,72.465302,32.795891,13.104976,10.052085,7.516542,7.643814,7.671088,7.115715,2.797529,0.287605,0.126447,0.054546,0.099174,0.000000,0.000000,0.095868,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.955000,4612715.550000,5304,3355,87.348778,156.778519,162.861160,151.927277,137.257874,127.828117,126.191750,124.481010,122.067787,123.290924,124.414894,135.332245,153.828110,171.084305,183.728943,191.679352,188.960342,176.852905,151.778519,130.481003,120.497536,116.877701,111.472748,83.191750,66.423157,81.712418,96.034729,70.662827,34.117378,12.320680,10.133904,5.454556,5.825632,7.051251,7.689269,4.321497,0.413226,0.247935,0.000000,0.000000,0.000000,0.000000,0.000000,0.423142,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.355000,4612715.550000,5341,3355,102.158699,155.436371,164.411591,152.287613,137.733887,127.800018,125.056213,124.155388,123.428116,125.651253,125.576874,136.742172,154.361984,171.130600,183.816559,191.676056,190.337219,178.089279,153.337204,131.907455,120.180183,116.626457,111.800018,83.857864,67.461174,81.543816,96.725624,70.328941,32.287624,12.394233,10.163655,5.486788,7.575220,8.374394,5.112408,2.970255,0.924795,0.100000,0.116529,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.555000,4612715.550000,5357,3355,110.373566,157.067780,162.728943,149.844635,136.596710,126.530586,123.398354,121.241333,121.745461,123.456207,122.786789,134.844635,153.307449,169.869431,181.960342,190.249603,188.340500,176.695877,151.274384,130.092575,118.282654,114.704140,110.836372,82.266129,66.150436,82.720673,95.340508,70.266129,31.477705,12.873570,10.076052,6.670260,6.281829,5.626458,6.348773,3.056206,0.344630,0.034711,0.000000,0.047934,0.000000,0.000000,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.555000,4612715.550000,5372,3355,104.158699,160.522339,160.638046,149.927292,136.447952,127.067787,124.431412,123.431412,122.001663,122.018188,124.555382,134.803329,154.737213,169.762009,183.728958,190.952087,189.836395,177.216553,152.489288,130.282669,118.811577,114.935555,111.381836,83.365311,67.100845,80.398361,96.985138,69.902496,32.464481,13.324810,10.125640,6.356211,7.311584,6.402492,5.760342,3.206619,0.374382,0.157852,0.257852,0.000000,0.000000,0.000000,0.181819,0.117356,1.213223,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.555000,4612715.550000,5392,3355,103.734718,153.297531,159.338852,147.834732,136.619858,125.363647,122.586784,121.909096,120.347115,122.669426,121.909096,133.181824,152.421509,168.016541,180.859528,188.561996,188.421509,175.115723,150.545471,127.884308,117.884308,113.380173,108.636375,82.462830,64.768616,80.826462,94.057861,68.446304,31.884317,12.008283,9.876052,4.845465,5.251252,6.469434,5.762819,2.447114,0.422315,0.212397,0.047108,0.085951,0.000000,0.156199,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601825.555000,4612715.550000,5417,3355,100.734734,157.389267,159.738846,149.912399,136.568604,130.419846,129.593399,128.890915,127.838020,130.862808,130.292572,142.218185,161.953720,177.028107,189.928925,197.623138,197.416534,184.366943,159.656204,137.267776,125.400002,121.689262,117.763641,89.474396,70.862831,86.664482,100.424805,73.995064,35.466137,15.631422,10.705805,6.246294,9.033899,7.643815,9.531420,5.138850,1.725622,1.047109,1.113224,0.909918,1.149587,0.000000,0.152067,0.471902,0.000000,0.000000,0.000000,0.000000,0.000000,2.132231 -601828.155000,4612715.550000,5430,3355,104.218201,158.028122,165.714066,153.251266,138.003326,129.416534,125.515717,124.044640,123.738853,126.920670,126.755386,138.606628,156.317368,172.647949,184.672745,193.441345,191.342163,178.681015,155.441345,131.623154,121.209930,116.449600,113.309105,84.466125,65.879356,81.755386,95.920670,71.639679,35.970268,13.874399,10.300846,5.341333,8.065305,8.558692,9.018194,2.430588,1.237194,0.171075,0.196695,0.094215,0.000000,0.000000,0.000000,0.047108,2.421488,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.555000,4612715.550000,5447,3355,110.190102,160.685974,164.975220,153.000015,139.669434,129.801666,127.338852,125.000008,125.603317,126.520668,127.181831,138.140518,157.289276,173.264481,186.132248,193.801666,193.305801,179.677704,154.793411,132.818192,121.776871,117.661163,113.363655,86.090927,67.851265,83.206627,97.338852,72.785141,33.388447,13.713242,10.305804,5.255383,7.747123,8.309932,9.030592,2.566950,0.276034,0.074380,0.291736,0.182645,0.152893,0.000000,0.000000,0.000000,1.212397,0.000000,0.000000,0.000000,1.127273,0.000000 -601835.155000,4612715.550000,5465,3355,97.541344,157.632233,161.904953,150.599167,138.144623,126.814056,125.466949,123.285133,123.723152,124.458687,125.194221,136.706604,154.177689,171.549591,183.450409,192.830582,191.169418,178.863632,152.938019,131.070251,121.342987,116.574387,112.318192,84.615715,68.119850,83.070267,96.904976,72.045479,33.946301,13.704151,10.210763,5.555383,6.574394,7.839684,5.805797,1.947939,0.795043,0.316530,0.154546,0.000000,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.355000,4612715.550000,5481,3355,115.523163,160.167770,160.804138,152.547943,138.101654,127.308281,124.804146,122.663651,122.333069,124.969437,126.126457,137.812408,155.043808,172.647110,184.589264,193.506622,192.671906,179.233887,154.738022,130.952911,120.969437,117.035553,111.754562,85.076881,67.969444,81.729774,95.936378,71.043823,34.126469,11.971918,10.159523,7.300013,6.841335,10.539683,7.883484,2.013229,0.384299,0.142149,0.156199,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,1.014876,0.000000,0.000000,0.000000,0.000000 -601847.155000,4612715.550000,5525,3355,116.124817,164.414062,163.909927,152.347946,139.290100,128.240509,125.885147,124.835556,123.124817,126.397545,127.356209,137.529770,156.116547,172.628922,186.025620,193.298355,192.670258,180.207428,154.240509,131.909927,120.504982,117.447121,113.645470,85.182655,67.251259,82.571091,96.744644,72.306633,33.358696,13.242167,10.331425,5.017364,8.355386,7.427286,7.266128,2.698356,1.275209,0.573555,0.327274,0.285124,0.390909,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.155000,4612715.550000,5540,3355,112.309929,163.625626,162.096710,154.030594,140.104965,130.823975,128.171082,126.567780,126.385963,129.542984,129.394226,139.187607,157.947937,174.237198,188.352905,196.931412,195.344635,182.286789,156.642151,134.270264,122.443810,118.542984,114.245461,87.030586,70.253731,83.617363,98.047119,71.419022,33.476883,12.928115,10.385969,5.798358,6.751255,6.757038,6.474393,2.076865,0.949589,0.239670,0.217356,0.416530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.555000,4612715.550000,5562,3355,104.509094,163.112411,162.823151,153.583481,138.773560,130.186783,126.492569,124.600006,125.211578,128.434723,128.690918,139.319016,158.128937,174.013229,188.079346,195.897537,193.740509,181.616547,156.500839,134.244629,122.285957,119.186783,114.509094,87.748764,69.715714,83.616539,97.922325,70.715714,32.285969,13.614895,10.409937,4.756209,6.890097,7.693401,7.718194,3.428934,0.495869,0.122314,0.000000,0.218182,0.000000,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.755000,4612715.550000,5588,3355,107.464485,160.373581,161.770279,155.745483,141.679352,130.976883,128.836380,126.514069,127.695885,129.472748,129.877701,140.604965,158.315735,175.778534,188.233078,197.861176,195.919037,183.671097,158.505814,135.778519,124.299194,119.836380,115.018196,86.811600,69.530594,84.968620,98.001678,72.026474,34.208282,14.468612,10.456217,6.636377,7.986791,6.661998,6.015717,2.701659,0.208265,0.043802,0.314877,0.300000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.123967 -601865.955000,4612715.550000,5619,3355,107.579353,156.333069,162.547943,153.729752,141.060333,129.415710,126.704964,127.035545,126.415710,128.944641,129.043808,139.680176,156.572739,174.506622,187.506622,196.217361,194.258682,182.713226,156.366119,134.250427,122.886780,120.357857,113.936371,87.432243,70.399185,82.746292,96.614067,72.828949,34.043819,13.465308,10.357871,5.895054,6.715717,6.714888,6.464476,4.090917,0.838019,0.185952,0.052893,0.000000,0.000000,0.000000,0.003306,0.000000,1.333058,0.990083,1.138017,0.000000,0.000000,0.000000 -601871.955000,4612715.550000,5649,3355,116.571907,167.770264,163.811584,157.803314,142.299179,130.315720,128.315720,126.695877,126.084305,129.406616,128.142151,140.018188,157.563644,174.514053,186.249603,196.274384,193.737198,183.200012,157.365295,135.183487,123.522324,120.290916,115.290916,87.472748,70.431427,84.547127,99.646301,73.257874,34.009937,13.018200,10.481010,5.266127,9.363651,7.764476,7.200014,2.038022,2.163641,0.047108,0.063637,0.004959,0.140496,0.000000,0.002479,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.755000,4612715.550000,5668,3355,105.329765,165.486786,163.528107,155.329758,143.222321,130.181000,127.585960,126.495056,124.833893,128.528107,129.032242,138.858688,155.701660,173.147934,185.238846,194.561157,193.949585,181.247116,156.742981,134.519852,123.222328,119.387611,114.990921,85.999184,68.462006,83.371086,98.751251,73.875221,34.205807,15.161175,10.453737,3.976868,6.715717,8.041335,6.795053,2.788439,0.413225,0.215703,0.138843,0.099174,0.002479,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.555000,4612715.550000,5687,3355,91.685959,158.743805,155.520660,152.322311,141.644623,131.619843,128.983490,128.396713,124.743813,127.413231,125.264473,135.487625,153.818176,170.272720,183.925613,194.066116,190.776855,180.851242,155.636368,134.082657,121.793404,118.925636,113.909103,84.314064,69.495895,83.512413,96.429771,73.652908,32.504150,12.477702,10.355392,4.512408,7.322327,6.602491,5.925632,1.793392,1.057028,0.031405,0.000827,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.955000,4612715.550000,5709,3355,127.354553,165.462814,160.942154,148.148758,136.367783,123.338860,122.793404,121.396713,119.713234,124.776878,122.272743,133.123978,151.657028,168.714874,181.045456,192.078506,189.921494,179.152893,155.301651,132.574402,121.615715,117.954559,111.590919,84.276886,69.475227,84.012421,95.896713,73.698372,30.057043,12.407455,10.144649,3.440504,6.937205,6.747121,7.285136,2.130583,0.394216,0.203306,0.030579,0.509091,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.555000,4612715.550000,5737,3355,133.957047,170.892578,164.198364,158.826462,145.363647,132.165298,130.611588,130.702499,130.991745,134.561996,133.322327,144.074402,161.429764,178.537201,190.231415,199.371918,196.826462,186.462830,162.198364,141.049606,127.595055,122.942162,117.909103,89.000015,71.479355,85.917374,99.925636,75.214897,34.471096,11.667785,10.719028,5.176870,7.700842,7.110758,6.528938,2.483478,0.686779,0.053719,0.138017,0.131405,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.355000,4612715.550000,5766,3355,114.631416,175.758698,169.353760,155.246323,141.130600,128.312408,128.204971,125.072739,124.560349,124.626457,125.171913,136.651245,154.634750,169.188446,182.824814,190.849594,189.535538,177.221512,153.510788,132.122330,121.039680,118.221504,112.527290,83.188446,68.667786,82.138855,96.122330,71.014893,33.816551,14.127290,10.229772,8.771914,7.845467,8.293402,8.175220,3.828109,0.885953,0.265290,0.475207,0.257025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.755000,4612715.550000,5783,3355,112.556213,170.275208,165.977692,153.366119,138.217361,127.233894,126.258682,123.399178,122.671906,123.035545,123.547943,134.663635,153.242157,168.919846,180.771088,189.779343,188.242157,176.167770,152.068604,131.159515,120.275215,116.795876,111.300003,83.423981,66.820679,81.151260,95.085129,70.994232,33.787624,11.229769,10.118200,8.230592,6.710755,6.895879,7.408276,3.207444,0.441323,0.342976,0.044628,0.000000,0.241322,0.000000,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.155000,4612715.550000,5800,3355,126.823158,175.352081,170.062805,157.418198,141.550430,129.203323,128.360336,125.558693,125.550423,125.492577,125.955383,136.426453,155.690918,171.624802,182.319016,191.335541,190.195038,177.004974,152.393402,132.591751,121.955383,118.971916,113.236374,83.757050,69.178535,82.583488,96.996704,72.145477,33.409935,14.075225,10.294234,11.263651,10.446297,8.716541,8.960345,2.613230,0.300001,0.104959,0.211571,0.182645,0.257852,0.000000,0.000000,0.558678,0.000000,0.000000,0.000000,0.000000,1.386777,0.000000 -601905.355000,4612715.550000,5816,3355,114.358688,171.239685,164.203323,154.971909,137.542160,125.558693,125.996704,122.013237,122.228111,122.269432,121.418198,133.732239,152.723984,168.145462,179.955383,188.980179,187.996704,173.203323,150.616547,130.426453,120.591751,117.071091,112.781830,84.244644,68.285965,83.046295,95.930588,70.922333,32.269440,13.236382,10.252912,7.487618,6.509930,6.122326,6.952905,4.358687,0.549589,0.557852,0.576034,0.164463,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.355000,4612715.550000,5836,3355,109.178528,173.772751,168.235550,156.830597,143.541336,131.351242,131.789261,128.491745,128.607452,128.962814,128.260345,139.896713,157.855392,173.161179,184.698364,194.252075,192.954559,179.979355,155.425629,136.582657,124.384308,121.425636,116.227287,87.161163,70.747948,83.855377,97.400833,71.508278,34.276875,14.759521,10.566135,8.148773,7.267782,8.204973,8.952906,3.302488,0.927275,0.231406,0.176034,0.147108,0.051240,0.017356,0.080992,0.108265,0.000000,0.000000,0.000000,2.638017,0.820661,0.000000 -601915.355000,4612715.550000,5866,3355,111.367783,173.004135,168.954544,156.475204,139.433899,127.921494,127.028931,124.318192,123.500008,125.756203,123.756203,136.301651,154.706604,170.458679,182.252060,192.210739,190.152893,176.855377,153.458679,131.954559,120.293396,116.987610,112.590927,82.632248,67.095062,81.351257,95.491753,69.615730,30.739687,12.484316,10.235557,9.050428,6.677697,6.300837,6.602490,3.909926,0.757026,0.147108,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601918.755000,4612715.550000,5883,3355,117.419861,178.300827,169.441330,160.300827,141.176865,130.557037,128.631409,127.044640,124.862823,128.333893,125.689270,138.581818,155.953720,171.209915,183.267776,192.474380,190.061157,176.937195,153.003311,131.614899,120.457863,117.846291,112.218201,83.003326,68.507469,83.193405,96.416550,70.523994,32.623161,12.891753,10.201674,8.577701,6.598359,7.296706,8.328113,4.174389,0.739672,0.959505,0.942150,0.255373,0.014876,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.155000,4612715.550000,5900,3355,129.635544,185.908279,171.519852,161.181015,144.751266,131.164474,131.230591,127.585960,126.883484,129.164474,127.585960,139.007462,157.106628,173.718201,185.866959,194.544647,191.536377,177.916550,154.404144,134.701660,123.627281,120.404144,114.172737,85.519844,70.073570,85.495056,98.461998,71.404152,34.238861,15.046299,10.379358,9.184312,8.185964,8.247947,8.576047,3.992571,0.714878,0.490084,0.266116,0.115703,0.068595,0.000000,0.060331,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.155000,4612715.550000,5915,3355,122.578529,185.734726,168.953735,161.829773,145.375214,130.515717,129.987625,127.772743,127.119850,129.880188,127.698364,137.863647,157.012390,173.351242,185.657028,195.450409,192.780991,178.384293,154.830582,134.698364,123.607452,121.227287,115.045471,85.590927,69.458702,85.070267,96.805801,70.789276,33.342995,13.988448,10.458695,12.180182,9.190096,9.817369,10.885137,5.133068,1.300002,0.280166,0.771902,0.300827,0.181818,0.000000,0.000000,0.056199,0.000000,0.000000,3.357025,0.000000,0.000000,0.000000 -601931.555000,4612715.550000,5947,3355,128.888443,185.185944,169.103317,160.252075,143.458694,128.995865,130.128113,126.814049,125.904961,129.409088,125.987602,137.615723,156.252075,172.665298,184.623978,194.789261,191.475204,176.285141,153.367783,132.921509,122.690086,118.954544,112.772743,84.566132,69.053734,83.855385,96.367783,69.012413,32.590931,13.526463,10.252085,10.566131,6.731417,7.298359,7.181004,2.595875,0.403307,0.105785,0.157852,0.000000,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.755000,4612715.550000,5968,3355,137.080185,190.067795,172.679367,164.728958,147.340515,130.770264,129.861160,129.299194,127.902489,132.224808,127.836372,138.935562,156.489288,174.233078,186.059525,196.762009,193.447952,177.803329,155.390106,134.770264,122.034729,119.704147,114.927292,84.654556,69.381836,85.233070,97.183479,69.952087,33.613243,13.290102,10.447953,10.999188,7.867782,8.316543,8.919848,3.506619,0.917358,0.322315,0.081818,0.000000,0.090909,0.000000,0.012397,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601942.955000,4612715.550000,6004,3355,160.114899,199.049606,174.768616,163.697540,145.669434,132.413239,129.859528,128.785126,127.669426,134.090912,128.181824,139.983490,156.578522,174.413239,187.148773,197.628113,193.677704,177.024811,155.652908,134.495880,123.512405,119.421494,114.363647,83.429771,69.123985,86.867783,97.619850,69.446297,32.876053,14.089272,10.396712,11.628115,7.346293,9.114064,9.561996,4.800008,1.071904,0.533059,0.536365,0.060331,0.303306,0.000000,0.107438,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601955.155000,4612715.550000,6065,3355,103.714058,160.429749,164.747131,153.313248,141.155380,132.034729,130.090088,126.577698,125.528107,128.387619,127.255386,138.181000,157.685150,172.048782,185.172745,194.081833,193.825638,181.371094,157.346298,135.530594,125.742165,121.138855,115.345467,87.411583,70.990105,86.882668,97.626457,71.882668,33.163654,14.176050,10.485970,6.190919,8.257038,8.675220,9.638030,5.751249,2.352069,1.021489,0.858679,1.062811,0.949588,0.310744,0.257025,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.155000,4612715.550000,6165,3355,119.157043,165.363647,161.776871,154.892578,139.033081,130.099182,128.338852,126.099190,127.247948,128.628113,129.305801,141.231415,159.925629,174.297531,187.074387,195.611572,195.223145,182.231415,159.363647,137.320679,125.651253,121.874397,115.436378,86.998367,71.345474,85.667793,99.181831,73.917374,36.469440,13.160348,10.494233,7.286790,7.128939,7.595055,7.008276,3.366950,1.102481,0.603306,0.812397,0.496695,0.429752,0.464463,0.190083,0.000000,1.047934,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.955000,4612715.550000,6304,3355,112.009926,162.447937,167.166946,157.257858,141.423172,131.728943,128.968597,127.514061,126.770256,127.811584,128.993408,140.307465,157.638031,173.497528,185.530594,194.960342,193.844635,182.109100,158.150421,137.175232,126.001663,121.208282,115.745476,87.373566,70.357040,86.778519,99.861168,74.307457,35.414894,13.994232,10.522333,4.909103,6.619024,7.170261,7.704973,3.457032,0.737191,0.390084,0.000000,0.054546,0.000000,0.000000,0.105785,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.955000,4612715.550000,6469,3355,131.463654,176.463654,168.926453,161.785965,144.852097,134.934723,132.414062,131.695053,129.529770,132.496704,132.984314,142.587631,161.116547,177.190918,188.496704,198.430588,198.571091,186.207458,162.058685,140.141357,128.488449,123.769440,118.100021,91.496704,73.141342,87.066956,102.703316,75.149605,36.248775,14.394233,10.736382,5.086786,9.071917,7.123981,8.642991,2.271080,0.739671,0.290084,0.060331,0.052066,0.083472,0.162810,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.555000,4612715.550000,6537,3355,113.918198,167.011566,164.416550,159.672745,146.515717,131.639694,127.606628,124.747124,122.672745,128.904144,127.168617,138.490906,156.457870,173.796692,185.474380,195.441330,195.160339,183.333893,159.358688,137.714050,125.606628,121.796715,116.854568,89.871094,72.697540,85.681007,98.523987,75.573570,34.373577,13.368612,10.623158,5.348770,7.857038,7.585137,9.361171,5.178520,2.606615,1.902483,0.697522,0.803307,1.153720,0.419835,0.000000,0.331406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602055.555000,4612715.550000,6567,3355,121.596703,176.986801,168.780182,160.804977,145.755386,131.912415,130.142151,129.340500,127.555382,130.373566,129.852905,141.166962,157.952072,174.968597,187.357040,196.613235,196.241333,184.481003,160.514053,139.042999,127.333893,122.928940,117.854553,89.796715,72.350433,88.348778,101.836380,76.100845,34.785973,14.301671,10.714069,4.146291,7.985139,6.285962,7.310758,2.847114,0.983474,0.223968,0.321488,0.298347,0.000000,0.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602058.355000,4612715.550000,6581,3355,111.472740,171.739670,176.557846,159.971069,142.557877,130.392578,129.764481,125.938034,125.442162,126.202492,126.301666,139.524826,158.797516,176.524796,188.037186,196.863632,197.045456,182.838837,159.756195,136.698364,126.367783,123.169441,118.136383,87.698364,73.533073,88.243820,102.913239,74.309937,36.070263,13.519852,10.739690,7.735549,7.203319,8.876048,9.920674,4.741330,1.118184,0.415704,0.423968,0.000000,0.044628,0.000000,0.000000,0.140496,1.638017,0.000000,0.000000,1.053719,0.000000,2.086777 -602065.755000,4612715.550000,6618,3355,126.348778,176.131424,180.519852,166.437210,149.172745,136.800842,134.461990,132.643814,132.395889,133.214066,132.792587,144.817368,164.693405,180.809113,192.304977,201.924820,199.891754,185.776047,160.891754,138.676880,127.668617,124.197540,117.809113,89.023987,73.585968,88.470268,101.528122,74.751259,35.081837,15.051257,10.709937,9.504972,8.733899,8.690097,9.798362,4.593396,1.211573,0.446282,0.395042,0.071901,0.223141,0.000000,0.120662,0.078513,0.000000,0.000000,0.623141,0.000000,0.000000,0.000000 -602068.555000,4612715.550000,6632,3355,120.689278,181.902496,178.613235,159.853729,140.411575,130.481842,129.349594,126.655388,125.440514,126.283485,126.895058,139.589264,158.746292,175.928101,187.962814,198.516525,198.400833,183.491730,160.690079,138.491730,127.928116,125.012421,120.500015,91.161179,75.541344,90.260353,103.995895,76.847122,39.347126,15.691752,10.954565,10.653735,9.264478,10.645470,12.666956,6.839679,2.496697,1.933887,1.285126,1.257852,0.646281,0.730579,0.893389,0.532233,0.000000,0.000000,0.000000,1.223967,0.000000,0.000000 -602072.355000,4612715.550000,6651,3355,108.914894,172.942154,170.786774,161.447937,144.036362,135.160339,135.920670,132.730591,130.945465,131.796707,129.788437,141.972733,159.893402,176.604141,188.951248,200.579346,197.777695,182.992554,159.271912,138.916534,127.718193,125.585960,122.081833,93.040504,77.842178,90.387619,105.230591,77.412415,37.924812,14.552085,11.098366,10.445468,8.781832,10.033897,10.562824,5.944636,3.511573,2.097522,2.111573,2.525621,2.085951,0.960331,1.093389,0.774380,0.000000,0.000000,0.000000,0.750413,0.000000,0.000000 -602077.155000,4612715.550000,6675,3355,105.063652,181.349594,178.969421,161.861984,145.184311,131.283493,130.919846,127.539680,126.903320,129.043823,127.291748,140.225632,158.605789,177.407440,188.911575,198.547943,197.407440,182.242157,159.142975,136.324799,125.556213,121.795883,116.209106,88.275223,71.531418,86.969437,101.101669,73.126457,35.605808,13.886793,10.564483,9.650428,7.650427,9.826463,9.114064,5.810754,0.630580,0.283472,0.357025,0.114050,0.041322,0.000000,0.211571,0.018182,0.000000,3.089256,0.000000,0.925620,0.000000,0.000000 -602079.955000,4612715.550000,6689,3355,122.754555,184.399170,178.804138,162.820679,144.407455,132.399185,132.837219,129.076889,129.233902,131.076889,128.671921,141.936386,161.333084,178.109924,189.903290,200.176025,199.357849,183.961166,161.126465,138.060349,127.622337,123.820679,119.663651,87.878532,74.283493,88.820686,103.911583,76.448784,37.093407,14.425639,10.878532,10.145470,8.655389,8.663651,9.916544,3.982651,0.061984,0.267769,0.100000,0.000000,0.000000,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602082.555000,4612715.550000,6702,3355,113.941330,189.905792,180.550430,165.905792,147.310760,134.401657,134.600006,131.178513,130.161987,131.971909,129.847946,143.385132,161.980179,177.864471,189.947113,200.682663,199.038025,184.467789,161.236374,138.302490,128.029755,125.451248,118.690910,87.930580,74.616547,89.401657,103.459511,75.839691,36.302502,15.367786,10.790102,12.684314,8.461171,8.802495,8.597536,5.261167,1.134713,0.032232,0.214877,0.000000,0.000000,0.000000,0.000000,0.235538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.355000,4612715.550000,6721,3355,114.264473,180.603317,176.256210,160.958694,144.669434,132.140503,132.057861,128.719009,128.314056,130.082657,128.338852,140.495880,159.611588,177.281006,188.578522,199.867783,198.000015,181.975220,159.355392,138.454559,127.553734,123.561996,118.636375,88.975220,73.157043,88.479355,102.413239,74.165306,34.983490,13.126463,10.785142,11.372745,7.290923,9.376874,9.504972,5.240504,1.191738,0.261158,0.103306,0.000000,0.000000,0.000000,0.014050,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.355000,4612715.550000,6736,3355,111.145477,182.186783,175.525635,164.690918,149.657867,139.038025,139.620667,136.162003,134.591751,137.386795,134.823151,145.476044,161.686783,178.021500,190.401672,199.426453,198.178528,183.385132,159.186783,138.763657,127.152084,124.689278,118.490921,89.738853,74.185143,88.788445,100.492584,76.079361,36.748783,15.678532,10.771920,8.861171,8.600014,7.645466,9.164477,3.509097,0.913226,0.421489,0.968596,0.042976,0.269422,0.720662,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602092.555000,4612715.550000,6752,3355,119.734734,166.643799,168.767776,159.189255,143.420670,129.957855,128.635544,126.114891,123.742989,127.519844,124.495056,135.428940,151.139679,168.379349,179.470245,189.742981,187.900009,175.503311,152.296692,132.354553,121.263649,117.908279,113.172737,86.346291,70.999184,85.594223,97.957870,73.304970,33.776051,13.547124,10.288448,6.736374,6.447122,6.713233,8.500013,2.766121,0.570249,0.293390,0.194216,0.034711,0.030579,0.157025,0.019009,0.228926,0.000000,1.585124,0.000000,0.000000,0.000000,3.534711 -602096.955000,4612715.550000,6774,3355,108.410751,168.972733,164.848770,158.295074,142.749603,130.080170,127.898354,125.592575,123.683479,126.443810,124.733070,134.658691,151.865311,167.385956,180.121490,190.237198,188.419022,176.377701,152.542999,131.782654,120.716537,117.476868,113.427284,86.295052,70.410759,87.319847,98.749596,72.452087,35.071918,13.091752,10.311590,6.812408,7.006626,6.523978,7.447120,2.424797,0.640497,0.052066,0.300001,0.090909,0.000000,0.000000,0.469422,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.555000,4612715.550000,6807,3355,104.495064,164.404129,168.701660,157.288437,145.263657,129.668610,126.776054,124.718201,122.395889,125.139687,123.966133,134.139694,150.652069,167.453720,178.974380,188.776031,186.627274,174.495041,151.734711,130.982666,120.982666,117.544647,112.263657,86.189278,71.222336,85.850433,98.247124,72.825638,34.858696,14.030595,10.205804,6.669433,7.376874,8.311582,7.892574,3.226451,0.580166,0.233885,0.122314,0.560331,0.247934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.757025,0.000000,0.000000 -602107.955000,4612715.550000,6829,3355,108.276878,163.194244,166.995895,158.723175,143.789291,131.020676,129.293411,125.119850,124.194229,125.904976,124.078529,135.665298,150.508301,167.450439,179.557877,188.913254,187.805817,175.623993,151.367798,131.268600,120.938034,116.111588,112.500015,85.400833,71.243820,86.698357,100.177704,72.028938,35.623981,14.352084,10.227293,5.471084,8.498363,7.325632,7.713236,3.714056,0.729753,0.123141,0.312398,0.295042,0.085951,0.000000,0.090909,0.204132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.155000,4612715.550000,6855,3355,99.223991,157.083481,163.942978,153.752899,140.373566,126.985138,124.671089,121.447121,119.149597,121.042160,119.827286,130.199188,146.307449,161.786774,173.489243,183.604950,182.026443,170.299164,148.059509,127.621506,117.183487,112.869438,107.745476,82.109108,66.976875,84.447952,97.687622,72.795059,34.175224,13.802497,9.795060,4.270257,7.040509,6.609929,6.095879,1.916533,0.542976,0.523141,0.227274,0.140496,0.138843,0.266943,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.955000,4612715.550000,6889,3355,94.328125,154.972733,159.576050,150.394226,135.501678,123.898361,120.352913,117.476875,114.270264,115.931419,115.716545,126.187622,143.617371,158.055374,170.080170,179.022324,178.435547,166.187607,145.369431,125.055389,115.063652,111.427292,104.700020,78.576050,64.071922,81.443817,98.931419,72.906631,33.708286,12.849604,9.518201,4.790919,5.906625,6.657036,5.668606,3.104139,0.208265,0.194215,0.152067,0.228100,0.000000,0.000000,0.298347,0.173554,0.000000,0.000000,0.000000,0.000000,1.975207,0.000000 -602127.955000,4612715.550000,6929,3355,92.927292,151.646286,159.282654,148.142151,136.811584,124.514061,120.613235,117.555382,114.439682,115.423149,116.290916,125.960342,144.497528,158.844635,170.522324,179.927277,178.390091,166.687607,146.481003,126.100838,114.365295,110.795052,105.563644,79.076042,65.323990,81.613243,99.910751,74.778519,34.671093,14.133076,9.596713,5.246292,9.257041,6.465302,7.294227,1.666120,0.482646,0.513224,0.295869,0.023967,0.000000,0.196695,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.955000,4612715.550000,6944,3355,108.032249,159.767776,160.974380,149.379349,136.767776,125.461990,121.858681,117.321487,116.693390,116.610748,116.288429,127.461990,144.635544,160.230576,171.404129,181.817352,179.271912,168.230576,147.065292,126.660332,115.296700,110.139671,104.809097,78.230598,64.908279,82.040512,98.189262,72.701668,35.643826,13.158692,9.528117,3.266123,6.505798,5.927284,7.563649,1.904137,0.634712,0.610746,0.098347,0.073554,0.238017,0.074380,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.955000,4612715.550000,6969,3355,91.734718,147.453720,160.205795,149.470245,134.627289,124.916542,120.701668,117.222328,116.247116,115.577698,115.652077,127.338028,143.379349,159.693390,170.809097,180.114883,180.338013,167.850418,147.214050,126.329765,115.635551,111.387611,105.081833,79.065300,64.734734,80.280174,98.941330,74.139694,33.653740,12.290101,9.552912,4.054554,5.429766,7.168607,5.763647,2.217359,0.546282,0.086777,0.079339,0.000000,0.000000,0.000000,0.000000,0.296694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.555000,4612715.550000,7012,3355,96.796707,145.193405,160.077698,149.986801,135.656219,124.763649,122.309105,118.036377,116.309105,115.358688,117.515717,126.383484,144.598373,160.590103,171.639694,181.209930,179.730591,168.862823,146.085968,126.598358,115.400009,111.631416,105.127281,78.961998,65.160347,81.168610,99.788445,73.482658,34.317375,13.838034,9.557044,5.635548,7.021502,7.294228,5.961170,3.180171,0.214051,0.100001,0.086777,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.355000,4612715.550000,7056,3355,85.402496,149.311584,161.212402,152.476868,136.848770,125.906624,122.832245,119.493401,117.104965,116.989265,117.997528,128.947937,145.303314,160.377701,171.509933,183.939682,181.642151,169.600830,148.121490,127.567780,116.361168,113.592575,105.427284,79.237198,65.691757,83.617363,98.757858,74.121498,36.220684,13.096713,9.584316,5.219019,8.482659,7.666128,6.993401,2.171080,0.359505,0.090909,0.278513,0.056199,0.000000,0.000000,0.361984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602160.155000,4612715.550000,7090,3355,92.175224,152.811584,162.208267,153.993393,137.323975,127.464478,124.687614,121.456207,120.076050,120.481010,119.976875,129.861176,147.208267,162.943817,173.398361,183.555374,182.092575,169.208267,147.514053,128.571915,116.943825,113.522331,107.654556,82.282661,67.414894,82.869431,97.877701,71.439697,34.464485,13.526463,9.786797,5.830590,6.957039,7.318193,7.379350,3.062815,0.495869,0.184298,0.185951,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602163.155000,4612715.550000,7105,3355,94.819031,146.257034,163.546280,152.653732,138.976059,129.207458,124.967789,121.207458,120.628944,120.744652,120.810768,130.364487,147.711578,162.719833,174.025620,184.091736,184.232224,170.785950,148.744629,127.984322,118.149605,114.628944,107.736382,82.761177,68.100021,83.678535,96.133080,71.571098,33.711590,14.003324,9.794234,6.487616,6.836379,9.070261,7.551252,3.859512,0.523143,0.083471,0.133058,0.067769,0.000000,0.131405,0.171075,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.755000,4612715.550000,7118,3355,96.372742,154.769440,162.223969,151.000839,138.248779,126.538033,124.058693,119.372742,118.232246,118.240509,119.463646,129.620667,146.645462,161.463638,173.157867,182.769440,182.091751,169.290085,147.554565,126.496704,116.108276,112.703316,106.918198,81.670258,68.124817,82.695053,92.703316,69.455391,31.620682,12.401670,9.719852,4.335546,5.741336,5.952903,6.916541,2.415709,0.384299,0.095868,0.109918,0.071901,0.039670,0.123967,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.955000,4612715.550000,7139,3355,88.317375,149.069427,163.209915,152.457855,138.912399,128.747131,124.780182,122.821510,120.160347,121.077705,121.176880,132.019852,148.557022,163.920670,174.697525,185.623138,184.391739,173.176865,150.557022,129.094238,118.920677,114.738861,109.309113,82.970268,67.995064,83.871094,95.383492,70.400017,31.821508,13.458694,9.937208,5.894225,7.294230,7.561996,6.976873,1.942980,1.382647,0.144629,0.162810,0.086777,0.000000,0.073554,0.058678,0.000000,0.000000,0.000000,1.992562,0.000000,0.000000,0.000000 -602175.355000,4612715.550000,7166,3355,84.823982,151.394226,164.600830,152.179352,139.038849,127.947952,126.551254,121.807457,121.245476,122.212418,123.071922,133.311584,150.047119,163.857040,176.633896,186.807449,185.609100,173.245468,150.823975,131.228943,120.460350,117.633904,111.881836,85.319855,71.865311,84.493408,96.419029,70.799194,33.509937,13.571093,10.171094,5.275217,7.044643,8.024805,8.369433,1.771079,0.417357,0.300827,0.100827,0.056199,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602178.755000,4612715.550000,7183,3355,95.683487,151.972717,163.501648,153.328094,136.890076,128.981003,125.815712,122.815720,121.708282,121.468613,123.840515,132.914886,150.633881,166.716522,177.774368,187.733047,188.857025,175.435532,152.799164,131.650421,121.162827,119.129768,112.063652,87.419029,71.840515,86.857040,98.741341,71.609108,33.881840,13.153737,10.187623,5.604970,7.265303,6.153729,6.446292,2.702485,0.275207,0.193389,0.186777,0.032232,0.000000,0.065289,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.755000,4612715.550000,7198,3355,94.307465,151.803329,162.447952,154.952087,139.241348,130.530594,127.431419,123.431419,123.332260,123.547134,124.249611,135.728943,152.481018,168.406631,179.836395,190.927292,190.786804,178.695892,156.076065,135.373566,125.365318,120.679367,115.472748,89.530594,73.828117,89.042992,99.613243,72.844650,33.671093,12.504975,10.497540,6.135548,6.328938,6.941335,7.419020,3.949594,0.332233,0.447935,0.051240,0.224794,0.120661,0.000000,0.000000,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.555000,4612715.550000,7222,3355,86.843834,150.571106,157.744659,152.761185,138.876892,128.976059,125.471924,121.959526,120.471924,122.108284,122.620682,133.397552,150.736389,167.190933,177.662018,188.463669,188.943008,177.513245,154.703339,134.934738,124.909935,120.438866,114.827293,88.381012,72.976059,89.802505,102.116547,75.157883,35.868610,13.581837,10.438863,6.646293,7.587617,7.631418,8.091747,3.464471,0.900002,0.091736,0.190909,0.374381,0.254546,0.517356,0.271075,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.355000,4612715.550000,7246,3355,91.589279,151.754547,163.440521,151.043808,137.969437,126.704971,123.597534,122.250427,119.853745,121.093407,121.936378,133.498367,150.506638,165.291763,176.870255,188.349594,188.448761,177.126450,154.605789,134.721512,124.746292,120.258690,113.936378,87.390930,72.638863,88.878532,101.738037,74.547958,34.076878,13.018199,10.357870,4.835547,6.357038,7.371915,8.305797,3.526455,0.524796,0.114877,0.105785,0.173554,0.180165,0.000000,0.346281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.555000,4612715.550000,7272,3355,86.711586,153.984329,163.992584,151.893402,136.934723,127.653732,124.157867,121.290092,119.471916,120.050423,120.843811,132.091751,149.521500,165.190933,177.480194,186.777710,186.744659,175.174408,153.587616,133.438858,123.281830,118.397537,112.736374,86.207451,71.066956,88.744644,103.339684,75.571091,36.298367,12.568611,10.248779,5.932244,7.671089,8.096708,8.114062,3.465296,0.825621,0.241324,0.044628,0.260331,0.188430,0.000000,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.955000,4612715.550000,7299,3355,87.829773,147.110748,160.763657,152.656204,137.358688,127.102493,123.928940,120.499184,119.631416,119.920670,120.557037,131.581833,149.474380,164.738861,176.573578,185.937210,184.176880,173.176880,151.333893,131.028122,120.309105,116.069435,111.036377,84.160347,70.218201,88.879356,100.804970,75.540512,37.631424,13.331423,10.094234,6.659518,8.280180,9.030592,8.800014,3.090089,0.547109,0.132232,0.044628,0.066943,0.110744,0.000000,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.555000,4612715.550000,7317,3355,88.108284,156.951248,158.240509,151.372742,136.240524,125.860344,124.232246,119.645470,118.438858,118.868607,120.199188,132.124802,148.562820,163.273560,176.083481,186.323151,186.703323,174.513229,152.480179,131.810760,119.984314,117.133072,112.281830,84.463654,70.124817,87.124817,101.042160,74.785973,35.686798,12.700844,10.207457,7.242987,7.372741,7.209929,6.657037,2.925626,0.631407,0.335538,0.048760,0.035537,0.057025,0.061157,0.000000,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.155000,4612715.550000,7335,3355,93.137199,153.451233,165.409912,153.013214,139.079346,127.104149,125.831421,122.492577,120.252907,121.170258,122.029762,132.996704,150.690903,166.864456,177.971893,189.128922,187.252884,175.368591,153.889252,133.087616,122.327286,119.153732,113.872742,87.178520,72.211586,90.715706,102.517365,75.285965,37.674404,15.035556,10.352084,7.709931,7.768610,9.539684,9.599188,2.690088,0.585125,0.070248,0.390083,0.269422,0.000000,0.147934,0.290909,0.141322,0.000000,2.173554,0.000000,0.000000,0.000000,0.000000 -602212.155000,4612715.550000,7350,3355,86.803329,154.522339,164.927292,153.257874,138.042999,128.406631,126.596710,122.811584,120.885971,121.571922,121.902496,133.067795,150.142181,166.555405,177.712402,187.885956,188.365295,175.109100,153.505814,132.836395,122.522331,119.076050,113.109108,86.257874,72.282669,88.009941,100.249611,73.133911,34.836380,12.667785,10.282664,6.138854,7.679352,8.580179,6.797532,4.336372,1.266946,0.144629,0.104133,0.105786,0.233058,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602214.755000,4612715.550000,7363,3355,97.907463,162.684326,165.287628,153.766968,139.510773,128.940506,126.213249,123.155396,121.436386,121.395065,122.527298,134.097534,150.857880,166.014893,177.477707,188.271103,187.320679,175.833084,153.246307,132.609924,121.304153,117.659523,112.072746,85.965309,71.948784,87.180191,103.593414,74.676056,34.973572,12.534730,10.188449,7.800014,8.059520,7.721502,8.100014,3.805794,0.487605,0.077686,0.248761,0.080166,0.000000,0.000000,0.278513,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.955000,4612715.550000,7384,3355,98.860344,150.471893,160.438843,151.513214,135.157867,124.670258,123.339684,118.405800,117.248772,117.909927,117.728111,129.000839,146.149582,162.719833,174.703308,183.339661,183.116531,169.628922,148.347931,128.810760,116.984314,112.571091,106.645470,81.157867,66.810760,83.645470,98.645470,71.819023,34.496716,13.175224,9.695059,6.831416,6.355385,6.701666,6.074392,3.150418,1.042151,0.566943,0.271902,0.119008,0.054546,0.000000,0.096695,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602224.155000,4612715.550000,7410,3355,90.008278,150.578522,164.760345,154.380188,138.545471,126.958679,124.239670,121.900826,120.611580,120.363640,119.462807,131.363632,148.413239,165.586792,175.363647,185.446304,184.768616,173.024811,150.446304,129.008270,118.884300,116.239670,109.909096,82.702492,67.760345,83.537209,100.619850,73.545471,35.487625,13.750431,9.991755,8.727283,9.269438,7.406624,8.533897,2.550418,0.947110,0.004132,0.319835,0.308266,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.755000,4612715.550000,7428,3355,98.181839,160.710739,166.793396,154.900833,139.884293,127.694221,125.925629,121.371910,120.454552,120.685959,120.859512,133.165314,151.115707,166.198349,177.140503,187.363632,186.173553,173.801651,151.239670,130.909119,120.305794,116.710754,111.727287,84.380188,69.586800,84.966965,100.512405,75.198372,35.735561,14.612414,10.157044,8.361995,9.125635,7.799187,8.262822,2.639674,1.366945,0.246281,0.265290,0.246282,0.000000,0.000000,0.168595,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.155000,4612715.550000,7455,3355,86.506622,163.795868,163.605789,152.878525,137.473557,124.399185,124.217369,119.795883,118.134727,118.919846,118.184311,129.415710,147.994217,162.539673,173.779343,184.027283,183.035538,168.547943,147.713226,127.283485,117.027290,112.853737,106.845467,81.076874,66.812408,82.936378,98.010757,73.523155,35.564484,13.593407,9.713242,7.924805,8.402494,7.958692,6.738856,3.123973,0.252067,0.045455,0.052066,0.146282,0.019835,0.000000,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.955000,4612715.550000,7484,3355,110.341339,155.131409,164.164490,155.635544,138.833908,126.007446,122.982651,119.900009,117.866951,118.387611,116.197533,129.561172,145.982651,161.949600,173.023987,184.065308,181.619034,167.933075,146.214050,126.057037,115.701668,111.420677,105.081841,78.412415,63.726467,79.569443,99.371094,71.941345,34.495060,13.637207,9.552912,7.273566,8.112411,7.653731,7.700838,2.920666,0.738018,0.215703,0.082645,0.069422,0.000000,0.000000,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.355000,4612715.550000,7521,3355,85.537216,161.793396,161.644623,151.165283,136.611572,123.272743,121.223160,115.867783,115.297539,115.834724,113.586792,126.975220,143.735535,160.528931,172.016525,181.942154,179.991730,166.132233,144.520660,124.074394,113.173569,108.520676,103.000015,75.925644,61.785149,79.752090,95.404976,70.818199,33.169441,11.453736,9.363655,8.583482,7.581831,6.677699,5.414061,2.866121,0.812399,0.347108,0.101653,0.040496,0.000000,0.063637,0.327273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602249.755000,4612715.550000,7538,3355,89.734734,164.478516,161.131409,153.238846,134.966141,122.585968,120.767792,114.833900,114.569443,115.577705,112.594231,124.164482,142.437195,159.304962,170.395874,181.850418,178.495041,163.569427,142.428925,123.437210,111.106628,106.676880,100.900017,73.602501,59.478531,77.428947,98.271919,74.751259,36.065304,13.602496,9.172746,8.101665,8.111586,8.429764,8.709930,4.064469,0.427274,0.359505,0.021488,0.000000,0.000000,0.000000,0.266116,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.155000,4612715.550000,7560,3355,98.938042,166.946320,160.607452,153.028961,135.491760,120.896721,118.756226,115.747955,112.318207,112.549614,110.871925,122.599197,139.599213,157.557861,168.185974,179.417389,176.004166,161.698364,140.500031,121.433907,109.219032,105.450439,98.500023,72.880188,58.772743,76.177711,96.293411,70.888451,32.822334,12.147124,8.954563,8.519019,6.815716,6.339681,6.421499,1.908268,0.357852,0.076033,0.185125,0.118183,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602260.755000,4612715.550000,7593,3355,105.295067,172.526474,165.245468,153.873566,142.361160,129.840515,128.625641,124.410759,122.311600,125.245483,119.757874,131.551254,148.832245,165.468597,176.171082,187.278534,183.237213,167.311584,146.600830,126.509933,114.253746,108.741348,102.972755,74.286804,59.542995,77.700020,97.410767,70.997543,33.782661,12.098366,9.361176,9.685963,7.823156,6.702493,8.209929,2.736368,1.427275,0.909091,1.131406,0.981818,1.269422,0.795868,0.291736,1.361984,1.390909,0.000000,1.134711,0.000000,1.242149,0.000000 -602264.355000,4612715.550000,7611,3355,104.569443,172.949600,163.338043,155.222336,136.776047,122.470268,119.900017,115.503326,113.809113,116.214066,111.627289,122.701675,140.552917,157.974396,170.048782,180.685150,176.503326,160.776047,141.139694,120.999191,110.751259,106.313240,99.990929,73.247124,58.726467,77.767792,95.486794,70.048782,31.776052,12.804149,9.090102,10.022326,7.495057,7.789269,7.209103,3.425625,1.702482,0.005785,0.047108,0.109092,0.019009,0.119009,0.218182,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602268.755000,4612715.550000,7633,3355,97.300018,169.002487,161.341339,153.357880,134.853729,121.052078,118.762825,115.308281,113.184311,116.440514,111.630592,122.837204,140.341354,157.448776,170.143005,180.671906,177.217361,161.101669,140.870285,121.539680,110.258690,105.762825,100.300018,72.085144,59.308285,78.341339,94.514893,70.407463,32.982662,12.875224,9.118201,9.332243,6.281005,8.257865,7.275219,4.214882,1.135539,0.395042,0.039670,0.003306,0.113223,0.041322,0.000000,0.645455,0.000000,2.228926,0.000000,0.000000,1.212397,0.000000 -602274.155000,4612715.550000,7660,3355,115.780182,173.400024,165.771927,155.333908,135.557037,124.796715,119.623161,115.441345,113.474396,116.606628,112.077705,123.598366,139.482666,158.011597,170.276047,180.846298,176.548782,161.160355,141.672745,122.532249,111.226463,105.697540,100.945473,72.333893,58.895885,79.664474,96.350433,71.218201,34.201672,14.163655,9.176879,12.603319,8.326462,7.355385,8.753733,4.113230,1.023969,0.100827,0.144629,0.256199,0.118182,0.015703,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.095042 -602281.155000,4612715.550000,7695,3355,123.243828,159.782669,155.873581,148.427292,129.485138,116.518196,113.509933,108.823990,106.766144,108.270271,104.815727,115.435555,133.005798,150.534729,162.666962,171.981003,169.278519,154.154572,134.311584,114.187622,103.592590,99.501678,93.700027,67.295067,54.295067,73.898376,90.741341,68.171097,29.832251,11.571918,8.518201,9.499185,6.363649,6.800839,7.005796,3.280171,0.272729,0.041323,0.113224,0.184298,0.149588,0.025620,0.208265,0.338843,0.000000,0.000000,0.000000,1.023967,1.901653,0.000000 -602291.555000,4612715.550000,7747,3355,178.238022,165.940506,147.800003,131.651245,117.948769,107.733894,100.866119,98.122322,95.808273,96.138847,95.957031,106.585129,124.262817,140.948761,152.196701,160.659515,160.097534,150.684311,128.808273,109.452896,98.262817,95.246284,90.800003,64.180183,51.180187,69.808289,85.899185,64.659523,27.393406,9.754562,8.254565,7.642988,5.845466,6.352904,6.968607,4.471084,1.147111,0.524795,0.122316,0.066943,0.316529,0.000000,0.171075,0.244629,0.000000,6.032232,1.851240,2.894215,5.067769,2.931405 -601473.155000,4612705.550000,3655,3405,123.802483,136.315720,130.266129,118.902489,105.935547,95.753731,92.695877,89.836372,89.629761,91.547119,93.406624,103.588440,122.381828,138.943817,153.216537,162.646286,163.753723,152.497528,130.241333,109.315712,99.257858,95.191742,90.563644,63.034733,45.051262,61.100849,74.960342,55.423161,24.885967,9.382659,8.233077,11.557867,9.632244,12.215716,11.757040,9.146292,2.912404,0.942152,1.402482,0.823142,0.451241,1.350416,1.405788,0.623142,16.071903,14.567770,7.241324,7.344630,10.402481,10.030580 -601477.355000,4612705.550000,3676,3405,137.484314,137.740509,133.641342,121.029770,108.137199,98.790092,96.409927,93.277702,93.806625,95.509102,96.269432,107.112411,125.864487,142.996704,157.385132,166.930588,167.492569,155.798355,132.889267,110.823151,102.013237,98.542160,92.781830,65.343819,47.781837,63.104153,75.533905,56.641342,26.980185,10.054563,8.434730,9.295881,8.525633,10.438031,12.775223,8.479349,2.468602,0.882649,0.761160,0.471901,0.485125,0.599174,1.271903,0.464463,7.439671,14.696696,7.611572,4.857026,6.363637,10.182646 -601483.355000,4612705.550000,3706,3405,126.935547,142.780167,135.730576,122.226448,110.614876,100.309105,97.449600,95.342163,95.920670,97.102493,99.102486,109.548767,127.879341,144.507446,157.557022,168.557022,168.251236,156.788437,133.251236,112.267776,102.722321,98.449593,92.036377,64.400017,48.292580,63.507458,75.846291,56.102497,25.019854,10.725636,8.366962,8.320674,8.047121,7.844642,8.484312,5.378520,1.538021,0.685954,0.261159,0.177686,0.223967,0.385951,0.668597,0.615703,5.596695,6.042150,3.293389,5.876861,6.971076,6.823141 -601492.555000,4612705.550000,3752,3405,116.819855,139.092575,136.877701,126.133911,112.282669,103.563660,100.968620,98.762009,97.786804,100.406639,100.960358,111.976883,130.861176,147.464493,160.761993,170.224823,170.332260,158.811584,135.646301,114.852921,104.026474,100.208290,95.472755,66.505806,49.125641,65.894234,79.943825,59.927292,26.076054,9.213239,8.679358,6.551250,7.839682,8.204145,8.045467,4.489264,0.854549,0.228100,0.384298,0.112397,0.131405,0.252893,0.276860,0.360331,6.476861,2.754546,8.670250,4.214877,3.645455,3.505785 -601506.955000,4612705.550000,3824,3405,104.656219,142.842972,142.033051,131.628113,118.892570,108.619843,105.752075,103.991753,103.479355,105.669426,106.867775,117.942154,136.090912,153.099167,164.942154,173.991730,173.520660,163.553726,139.793396,119.545464,107.983482,104.892570,98.636383,69.768616,52.404980,69.570274,84.586800,62.958698,28.454563,12.600845,8.966961,5.082656,8.581004,7.932245,9.624809,3.237195,0.513226,0.381819,0.394215,0.438843,0.028926,0.000000,0.309091,0.000000,0.000000,1.833884,0.000000,2.973554,0.658678,1.822314 -601523.155000,4612705.550000,3905,3405,108.981834,142.433075,143.647949,134.094223,121.532242,110.416550,108.069443,105.681007,105.061180,106.722336,107.821510,118.085960,137.036362,152.135559,165.466125,174.590103,173.209915,162.606613,141.474396,120.507446,108.623161,104.433075,97.854568,69.358696,51.705803,67.507454,85.019852,64.234734,28.234730,10.246298,8.895887,6.055382,6.914888,8.323981,8.347947,4.245462,0.727275,0.109092,0.150414,0.087604,0.000000,0.000000,0.065289,0.000000,2.019835,1.939670,1.713223,0.000000,0.000000,0.000000 -601528.555000,4612705.550000,3932,3405,116.064468,156.840500,146.650406,136.542984,121.476868,111.038849,108.319847,107.171082,105.881828,109.096703,108.476868,118.385963,137.195877,154.220673,165.518188,174.799164,173.121475,163.162827,141.352905,121.104965,109.518188,104.584305,98.063652,71.328117,52.121513,68.377701,85.823975,64.609108,27.336382,11.495060,8.914895,6.936375,7.314062,6.366128,7.804147,3.172733,0.769423,0.156199,0.146282,0.055372,0.059504,0.000000,0.134711,0.000000,0.000000,1.010744,0.000000,0.000000,1.012397,0.000000 -601532.355000,4612705.550000,3951,3405,134.785126,182.644623,160.595062,150.991745,131.132233,117.033066,115.892570,113.115707,112.685959,119.619843,113.446289,124.669426,140.975220,159.595062,171.438034,181.289276,178.347122,163.471085,144.818192,124.462814,113.165298,109.280998,104.000008,74.966949,60.206631,76.727280,89.851250,64.933899,30.570269,11.706628,9.454565,11.037207,6.602493,6.802491,7.471089,2.659512,1.148762,1.596695,2.571901,2.488430,2.124794,1.036364,3.414050,2.875207,3.000827,2.257025,2.777686,2.761157,5.356198,3.447108 -601537.955000,4612705.550000,3979,3405,128.448776,182.655380,160.283478,150.242157,132.266953,118.680183,118.275223,114.630592,114.952904,119.969437,114.605797,125.787628,143.019012,161.300003,172.605789,183.572739,180.200836,166.837204,146.151245,126.002495,114.597534,110.779350,106.118195,76.159523,60.167786,75.828941,91.109932,66.638863,30.481838,13.105803,9.647127,10.884315,7.378529,7.771914,7.496705,4.277694,0.345456,0.000000,0.043802,0.048760,0.168595,0.160331,0.000000,0.054546,1.229752,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.555000,4612705.550000,4017,3405,110.581017,175.886780,160.308273,149.845459,131.804153,117.663651,117.680183,114.746292,114.481834,118.374397,114.101669,126.035553,143.870255,161.366119,173.035522,183.828918,180.085114,166.060333,145.167770,125.870262,113.721504,110.828941,105.027290,75.928123,60.531429,76.539696,90.382660,68.027298,31.192583,11.373571,9.547954,11.097537,6.568610,7.759518,6.984309,3.500007,0.860332,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.355000,4612705.550000,4051,3405,126.583488,172.608276,157.938858,149.872742,132.533905,118.938866,118.889275,115.426468,114.938866,118.376877,115.517380,126.839691,144.509109,161.831421,173.938858,184.004974,180.492569,167.955383,145.856216,126.600021,114.905807,112.261177,105.963654,77.335556,61.790104,76.385147,90.079361,66.542168,29.542168,12.118199,9.633077,9.799191,6.283484,8.968612,8.134724,3.261163,0.377687,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.209091,0.000000,0.000000,0.000000,2.110744 -601557.155000,4612705.550000,4075,3405,109.429771,169.446304,160.049606,149.264481,132.429764,118.909103,118.049606,115.570267,114.049606,117.479355,115.016548,127.281006,145.702499,162.198364,173.380188,182.661179,180.785141,168.223160,145.842987,124.884315,115.000015,111.016548,105.000015,76.900841,60.471096,77.272743,90.338860,68.000015,31.024813,11.814067,9.545473,9.297535,8.080180,7.186790,8.119846,4.266122,0.723969,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,2.440496,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.755000,4612705.550000,4098,3405,108.361176,174.443802,159.906601,148.245453,132.212418,119.022331,119.501671,116.848778,115.228943,118.782661,116.187622,127.766136,146.344620,163.220657,174.857025,183.699997,181.063629,169.005783,144.857025,125.419029,114.534729,112.394234,106.336380,77.741341,61.195885,77.460350,91.237206,66.749611,30.270267,13.432251,9.666961,10.022328,8.123983,7.739686,9.690923,2.785131,0.385125,0.437192,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.955000,4612705.550000,4199,3405,114.585136,157.337219,158.378540,149.147141,133.345474,122.072739,122.047951,117.543816,116.940514,119.304146,119.279350,130.147125,148.213242,164.593399,175.593414,185.643005,183.692581,170.841339,146.857880,127.246292,115.560349,113.345467,106.618195,80.626457,63.271091,76.923981,91.783485,68.642990,30.543821,13.638862,9.692582,8.923156,8.047951,7.353734,7.562823,2.486784,0.606614,0.222315,0.142149,0.000000,0.000000,0.092562,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,1.166942,0.000000 -601588.555000,4612705.550000,4232,3405,100.207451,159.160339,160.209915,149.028107,133.350418,121.821503,119.796707,118.647942,117.887611,119.135551,119.143814,129.383469,148.490906,164.176865,176.532242,185.276031,183.631409,171.226456,148.449585,127.656204,116.085960,113.515724,107.672745,79.590096,63.044651,77.904144,92.639687,68.647942,31.901674,12.894232,9.788449,7.711585,9.176875,8.383487,8.256212,2.509097,0.570250,0.417357,0.102480,0.000000,0.000000,0.000000,0.659504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.155000,4612705.550000,4250,3405,92.755394,153.456207,157.604965,146.960342,130.695892,119.580185,118.472748,115.538864,115.026466,115.828110,115.762001,128.439682,147.687607,162.059509,173.142151,182.547119,181.348770,169.472733,146.175217,126.125641,113.447952,110.538864,105.836380,77.910759,61.142170,74.629768,90.571922,66.026466,27.885967,10.689273,9.621507,5.805798,5.661997,8.276046,7.053731,3.895875,0.576034,0.430579,0.071901,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.765290,2.161984,0.000000 -601594.755000,4612705.550000,4263,3405,103.407463,156.878525,157.258682,149.539673,132.448776,121.704971,121.746292,118.225632,117.052078,118.374397,118.969437,129.109924,148.531418,164.407440,175.647110,185.184311,184.027283,171.738022,147.647110,125.936378,115.184311,112.969437,107.027290,79.564476,63.076874,76.862000,91.159515,67.490105,30.775227,12.685142,9.729771,8.011584,8.296710,7.362824,7.109105,3.650420,0.327274,0.232232,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,1.107438,0.000000,0.000000,0.000000,0.000000 -601597.755000,4612705.550000,4278,3405,103.876053,155.600006,158.839676,148.211578,132.434723,122.137199,122.211586,119.327286,118.310760,119.319023,119.302490,130.864471,149.319016,165.905792,176.310760,185.021500,184.666122,173.104141,148.690918,127.112411,116.467781,114.376869,107.509102,80.071098,62.798367,78.385147,91.723976,67.938866,31.451258,11.601671,9.773574,7.552079,8.052081,8.568610,8.419022,4.481826,0.623142,0.551240,0.061158,0.161158,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.755000,4612705.550000,4293,3405,100.859512,152.005798,158.435547,145.443832,132.328110,122.361160,119.700005,116.642151,115.567772,117.460335,118.443802,128.195877,147.361176,163.047119,174.749619,184.237213,182.551270,170.071915,147.485153,126.022316,114.642151,111.113235,104.972733,78.204147,60.700012,75.344643,89.228935,66.237206,30.237209,10.324811,9.542994,5.649601,6.914891,5.884311,7.214890,2.633062,0.257852,0.037190,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.755000,4612705.550000,4308,3405,98.461174,160.181824,155.570267,145.719009,131.082657,120.049606,119.628113,116.685966,115.727287,116.462830,117.231422,128.644638,146.495865,163.016541,175.148758,183.347107,181.826447,170.066116,147.685974,125.776878,115.123985,111.380180,106.000015,78.644646,61.818203,75.876053,89.429771,65.537209,30.578529,10.844645,9.636383,6.366953,6.394231,7.301667,6.951252,2.675211,0.396696,0.051240,0.142149,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.036364,0.000000 -601606.755000,4612705.550000,4323,3405,93.425636,157.878540,160.019028,147.663666,133.432236,121.688438,120.341331,118.019020,118.713226,119.250420,119.490097,129.242157,149.176056,163.638870,176.862000,184.895065,184.390930,171.440521,148.366135,126.159508,116.457039,112.746292,107.754555,79.465294,62.663654,76.895050,92.010750,66.994232,31.920681,12.281837,9.795886,6.099186,7.297536,8.640511,7.881831,3.271907,0.414051,0.052066,0.084298,0.057851,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.080165,0.000000 -601609.555000,4612705.550000,4337,3405,115.722328,154.801651,159.454544,148.107437,134.264481,123.752083,121.256218,118.892578,118.983490,119.628113,120.181831,131.570267,150.198349,165.735535,177.545456,185.396698,185.487610,172.206604,149.454544,127.355385,115.859520,113.710762,108.272743,79.677704,62.958698,78.214890,92.008278,67.553741,31.132252,12.223157,9.842994,7.908279,8.352083,8.263652,6.543815,2.498352,0.448761,0.037190,0.161984,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,1.109918,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612705.550000,4364,3405,118.343811,154.414886,159.761993,147.960342,134.522324,123.828110,121.423149,118.919022,118.671082,120.142159,119.786789,131.629761,150.092575,166.001663,177.952072,186.390091,186.001663,172.266129,149.216537,127.737198,115.761993,112.836372,106.927284,78.704140,63.307457,77.290916,91.638023,67.299194,30.604979,11.378530,9.720680,5.842162,7.447949,6.709105,6.752080,2.519840,0.580167,0.175207,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.755000,4612705.550000,4378,3405,104.453735,152.265289,159.207458,146.199173,133.133072,123.885139,119.794228,117.728111,117.364479,118.248772,118.901665,129.397537,147.984299,163.554565,174.438858,184.290085,183.017365,171.323151,146.951233,126.157867,114.257034,111.149597,105.281830,77.670258,62.017380,77.414062,90.810760,66.662003,31.182665,13.132249,9.571093,6.542162,5.047122,6.633897,6.516542,3.186784,0.251240,0.043802,0.000000,0.031405,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.555000,4612705.550000,4397,3405,100.285965,158.783493,158.800018,147.742172,134.626465,123.411583,120.907455,118.072739,118.552078,119.626457,120.560349,131.692581,148.800003,164.899200,176.973572,185.857880,184.866135,172.758698,148.395065,127.651253,116.304146,112.320679,107.345467,79.717369,63.874397,78.031418,92.634727,68.948776,32.386799,14.530597,9.758696,8.722328,8.431420,8.766956,8.314890,2.925626,0.640497,0.000000,0.319009,0.123967,0.089256,0.142149,0.000000,0.000000,2.145455,2.261157,0.000000,0.000000,0.000000,0.000000 -601624.955000,4612705.550000,4414,3405,96.268600,151.738022,159.547943,145.506622,132.258698,123.027290,120.804146,117.366127,117.184311,118.729767,119.961174,130.142990,148.556198,164.366119,176.820663,185.977692,183.142975,171.977692,148.465302,126.233902,115.200844,112.804146,106.663651,79.432243,61.795887,77.448776,90.647125,68.572739,30.415722,13.219027,9.696713,7.527286,7.163651,6.902493,7.533072,2.756205,0.677687,0.158678,0.127273,0.000000,0.064463,0.000000,0.000000,0.057851,2.361157,1.180992,0.000000,0.000000,0.000000,0.000000 -601630.355000,4612705.550000,4441,3405,109.488434,150.112411,159.856216,146.765305,133.872726,123.872734,120.732239,119.261162,118.244637,118.889259,119.872734,131.310745,149.426453,165.525635,176.856216,185.500839,184.740509,171.360336,149.038025,126.252899,116.500832,111.856209,105.963646,79.360344,61.947128,77.682655,91.277702,68.657875,32.897541,14.275226,9.633077,6.585136,6.757040,7.318196,7.846295,3.746288,0.359506,0.442150,0.020661,0.285124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.355000,4612705.550000,4471,3405,89.279350,146.909912,156.554535,146.562805,133.364471,124.025627,120.430580,118.182648,117.876862,118.769424,120.083473,131.414047,148.893387,165.273544,176.678513,185.802475,184.166107,172.281815,149.033875,126.703308,115.463638,111.959518,106.554565,78.662003,61.488445,77.273575,91.356216,69.182663,31.290102,12.872746,9.686797,4.612410,7.710760,6.291750,7.375219,1.661989,0.350414,0.142976,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,1.211570,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.755000,4612705.550000,4513,3405,103.462830,154.641342,157.409927,147.195053,134.013229,123.649597,121.476044,118.922325,118.062820,118.525635,120.872742,129.864471,148.732239,164.938858,177.418198,184.823151,183.153732,171.781830,147.971909,126.509102,115.707451,111.219849,106.054558,78.649605,61.881008,76.971916,92.004974,69.988449,32.385143,13.072746,9.641341,7.205798,6.502494,7.116543,6.389269,3.371909,0.296695,0.037190,0.000000,0.056199,0.092562,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,1.742149,0.000000,0.000000 -601647.755000,4612705.550000,4528,3405,105.252083,152.953720,158.904129,147.639679,134.482651,124.094215,120.342155,117.961990,117.317360,117.887604,118.771904,129.581818,147.937195,164.176865,176.400009,185.309097,182.532242,170.829758,147.548767,125.209923,115.176865,111.110756,105.672737,77.209938,60.887627,76.052910,92.127281,67.846298,30.639688,12.805803,9.606630,5.300838,6.533073,6.023980,8.350428,1.990087,0.000000,0.000000,0.292562,0.003306,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.183471,0.000000 -601652.155000,4612705.550000,4550,3405,108.228943,147.871918,158.185974,148.739685,134.095062,124.789276,122.723160,118.665306,118.632248,119.392578,119.929771,131.161179,149.161179,165.797531,177.632248,186.987625,184.276871,172.673569,148.152908,127.309937,116.194229,111.500015,105.681831,77.822327,62.566132,77.425636,92.334717,71.334724,31.921507,12.818200,9.607456,6.076872,8.260346,7.501666,7.809106,3.511576,1.224797,0.116529,0.023141,0.265290,0.000000,0.725621,0.000000,0.000000,0.000000,1.195042,0.000000,0.890909,0.000000,0.000000 -601657.155000,4612705.550000,4575,3405,92.517365,155.345474,158.064484,148.221512,132.857880,122.295891,120.857872,118.428123,118.064484,118.866135,118.981842,129.882660,148.725647,164.957047,176.262833,185.353745,184.130600,171.576889,147.808289,126.411591,114.659523,112.180191,105.800026,78.180191,60.345474,77.287628,92.254570,68.808289,31.171919,11.109935,9.618201,6.473566,7.726462,8.214065,6.437202,2.500831,0.273555,0.245455,0.104133,0.000000,0.153719,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.955000,4612705.550000,4594,3405,102.281006,157.261978,158.906601,148.485153,134.989273,125.352913,122.650429,120.121506,119.319855,120.642166,120.881836,131.906631,150.047119,166.419006,178.790909,187.146271,185.038834,173.509918,150.228958,128.361176,117.344643,112.361176,106.518196,78.286804,62.121506,79.551262,92.890099,70.162827,32.518200,13.238034,9.683490,5.772739,7.596709,7.360343,5.705797,4.356205,0.558680,0.317356,0.052893,0.051240,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601664.955000,4612705.550000,4614,3405,98.861176,156.523148,160.638855,149.985962,136.465302,126.399185,122.919846,120.862000,120.233902,121.523155,122.167786,132.390930,151.795868,167.605789,179.795868,189.333069,187.936371,174.746292,150.564468,128.680176,116.275223,113.109932,108.027290,79.795883,61.911594,78.506638,93.010757,70.895065,33.407455,13.572744,9.820681,5.452904,7.551255,8.338857,6.753732,1.269426,0.498349,0.198348,0.000000,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.155000,4612705.550000,4630,3405,111.241325,157.132248,160.181824,148.528946,134.710754,125.297531,120.636375,120.545464,119.132240,120.314056,120.867775,131.272736,150.016541,166.991730,178.388428,187.239670,185.702484,173.917358,150.049606,127.859512,116.157036,112.041328,107.545464,78.958694,61.644650,78.297539,93.809937,69.975220,32.297543,12.524812,9.776879,4.915713,7.490097,7.419022,7.134725,2.988436,0.323968,0.236364,0.005785,0.052066,0.304133,0.000000,0.000000,0.000000,0.000000,0.000000,1.055372,0.000000,0.000000,0.000000 -601672.155000,4612705.550000,4650,3405,105.788452,150.111588,157.144638,147.582657,133.070267,123.855385,119.921501,118.392578,118.268608,119.202492,119.549606,130.731415,148.334732,164.615723,177.409103,185.814072,184.896713,172.913239,147.847122,126.814064,114.756218,110.698364,105.772743,77.053741,60.194237,75.929771,91.838867,68.268608,32.070267,11.466132,9.615722,5.484311,5.840509,6.103319,5.360343,2.746287,0.229753,0.000000,0.109918,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.555000,4612705.550000,4667,3405,96.779358,155.994217,159.275208,149.779343,135.283478,126.217369,122.275215,121.167778,119.341331,121.093391,121.696701,131.779358,149.622314,165.928101,178.473557,187.746292,186.564468,173.564468,150.366119,127.729767,117.109924,112.895050,106.663651,79.787628,62.019032,78.597542,93.704979,70.498367,32.523159,12.142992,9.696712,5.571914,6.868610,6.951252,7.448773,2.452071,0.538017,0.462811,0.000000,0.000000,0.105785,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.355000,4612705.550000,4691,3405,111.658684,156.011597,160.094238,148.168610,135.639694,126.011581,123.482658,120.317368,119.036377,121.606621,121.722328,133.433075,149.912415,166.507462,179.689270,186.937225,186.317368,174.598373,151.441345,128.185135,115.953728,112.424812,107.672745,78.995064,61.887619,77.937210,94.168617,70.044647,32.639687,13.269440,9.788449,5.637202,7.287618,7.055385,6.831419,3.873562,0.401654,0.283472,0.000000,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.155000,4612705.550000,4720,3405,114.634720,153.072754,161.940521,149.816559,136.056198,127.262817,123.229759,120.122322,119.155380,120.800003,121.204964,131.642975,150.353745,166.130600,179.163666,187.990112,186.626465,173.866135,149.510773,127.246284,115.519012,110.585129,107.072731,77.766945,61.395061,77.485954,94.659508,69.981834,31.609936,12.981009,9.733903,5.405797,6.810760,8.754560,6.240510,2.878519,0.709093,0.392563,0.081818,0.057851,0.000000,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.355000,4612705.550000,4751,3405,107.479355,162.848785,162.311600,151.394241,138.815735,125.138023,123.394226,121.476868,120.071907,122.443810,121.038849,132.419022,150.832260,166.790939,179.427277,188.146286,186.253723,174.063644,150.881851,129.129761,116.592575,112.518188,106.972740,79.443810,61.832249,77.328110,93.683479,72.427292,32.857044,13.552085,9.724813,5.566126,7.628942,7.613236,8.531421,3.219015,0.390910,0.112397,0.086777,0.062810,0.000000,0.196695,0.000000,0.000000,2.544628,0.000000,0.000000,0.000000,0.000000,0.000000 -601698.155000,4612705.550000,4780,3405,107.767776,158.701660,159.577682,150.957855,136.652069,124.842163,124.007446,120.461998,119.238853,121.800835,120.627281,131.569427,148.792572,166.346283,178.602478,187.057007,185.709915,173.395874,150.172729,127.263649,115.073563,112.015717,105.990921,78.280182,60.858696,76.974396,93.015717,70.023987,31.754564,12.411588,9.635557,4.305797,5.446297,7.039683,6.196707,3.809098,0.886779,0.102480,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,1.179339,0.000000,0.000000,0.000000,2.261984 -601701.755000,4612705.550000,4798,3405,113.438034,162.099182,160.842987,152.314056,138.809937,126.528938,122.677704,121.950432,120.603325,123.487617,122.636383,132.661179,151.314056,169.041336,180.314056,189.619827,188.380173,175.884293,151.454544,129.487625,118.380180,113.702492,108.181831,79.975220,62.198364,79.057869,96.024811,72.347122,33.090927,13.921504,9.834729,4.109101,7.580181,7.263651,7.725632,2.478518,0.405786,0.379340,0.106612,0.000000,0.053720,0.000000,0.346281,0.000000,0.000000,0.868595,0.976033,0.000000,0.000000,0.000000 -601704.955000,4612705.550000,4814,3405,113.351257,161.219025,159.202499,152.020676,137.615738,125.566132,124.400841,121.004150,119.566132,121.714890,122.590927,133.326462,150.045471,168.326477,180.053741,189.252075,187.466965,175.433899,151.417374,129.731415,115.938034,112.847122,106.409096,79.764481,62.095058,76.516548,92.756203,71.400841,32.888451,11.463654,9.673573,6.727284,6.742163,7.976047,9.803321,2.332236,0.300000,0.000000,0.000000,0.000000,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.755000,4612705.550000,4833,3405,110.455391,166.389267,161.711578,152.967789,139.331421,125.587624,124.083488,121.761177,120.215721,124.149605,121.967789,134.273575,150.331421,168.091751,180.414062,189.736374,186.785965,175.876877,151.488449,129.645477,116.480186,111.967789,107.190933,79.091759,62.339691,78.447128,94.207458,70.934731,32.290100,12.533075,9.744648,5.099185,6.361998,8.309103,6.985964,2.477693,0.670250,0.156199,0.170248,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.196694,0.000000 -601714.755000,4612705.550000,4863,3405,117.329773,169.288452,164.156219,155.197540,138.817368,125.825630,123.751259,121.966133,120.842171,124.230598,122.643822,132.800842,150.825638,168.346298,180.495056,189.007462,188.346298,175.561172,151.627289,129.742981,116.850433,112.784317,107.081841,79.065308,61.371094,76.924812,91.090103,69.660347,32.205799,13.128117,9.734730,5.839679,6.110757,5.797532,7.325633,2.710749,0.618184,0.327273,0.221488,0.268596,0.071075,0.107438,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.355000,4612705.550000,4891,3405,109.885963,176.745468,165.390091,154.514053,140.563644,125.555382,124.439682,123.158684,121.051247,125.332245,122.671082,133.869431,151.133896,168.555374,181.604965,190.745468,189.894226,175.968597,151.819839,129.646286,117.439682,113.745461,107.290916,79.629761,61.762005,76.555382,92.720673,69.662819,32.423157,11.771091,9.753737,4.005796,6.085139,5.750427,5.307450,1.442153,0.614050,0.105785,0.142976,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.355000,4612705.550000,4906,3405,103.742989,165.627289,162.627289,151.263657,135.181000,124.908279,122.974388,119.809105,117.933067,119.709930,119.875221,131.040512,150.668610,165.866959,178.032257,187.023987,185.181015,171.900024,147.255386,126.379349,115.643814,112.023979,107.081833,78.395882,61.924809,76.941330,92.569435,68.519844,31.065306,11.819025,9.734730,6.126460,5.514060,7.027286,7.195879,2.404140,0.636365,0.123141,0.104133,0.165290,0.000000,0.084298,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.955000,4612705.550000,4924,3405,116.737206,168.175201,165.150421,152.646286,137.414886,126.398361,125.588448,121.365311,120.563652,121.786797,121.563652,133.621506,151.844635,168.985138,180.125610,188.819839,187.290924,173.199997,149.414886,128.778534,116.836380,114.266136,107.381836,79.456215,63.819855,77.993408,94.910759,68.861176,32.290928,13.765307,9.762003,8.545469,7.047120,7.861997,9.090095,3.474390,1.078516,0.278513,0.039670,0.078513,0.000000,0.077686,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.955000,4612705.550000,4944,3405,107.150429,172.092590,166.877716,154.373581,137.819855,125.464478,125.712418,122.059525,121.307457,121.547127,121.604973,133.357040,153.125641,168.877716,180.737213,189.191727,188.109085,173.456223,149.720688,128.960342,116.852913,114.530594,108.836380,79.786789,62.803322,78.365295,95.340523,70.133904,33.034729,13.400018,9.894234,8.779354,6.288442,7.859517,7.595053,2.396701,0.940498,0.294216,0.079339,0.244628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.355000,4612705.550000,4966,3405,102.109932,168.225632,166.275208,155.085129,138.498367,125.547951,124.663651,121.985962,120.985962,121.729767,120.870262,132.895050,151.936371,167.547943,179.771088,189.027283,186.746292,172.531418,148.638855,127.804138,116.093407,114.010757,107.663658,78.870262,62.564480,77.192574,91.944641,68.622330,31.366137,12.643819,9.787622,8.557865,6.204972,6.902493,7.960343,2.930586,0.442151,0.102480,0.000000,0.054546,0.000000,0.000000,0.000000,0.096695,0.000000,1.318182,0.000000,0.000000,1.166116,2.131405 -601738.555000,4612705.550000,4982,3405,108.732254,171.781830,168.748779,156.484314,140.765305,127.566948,126.161987,124.467773,123.095871,123.575211,122.509094,134.748764,153.558685,170.947113,181.723984,190.575226,188.418198,175.095886,150.426453,130.442978,118.153725,115.418190,109.236374,80.393410,64.732254,79.004982,95.360344,69.823158,32.856220,13.566133,9.930597,8.965304,8.033072,8.798362,8.301666,3.436372,0.638845,0.274381,0.047108,0.116529,0.000000,0.000000,0.000000,0.095042,0.000000,0.000000,0.000000,0.614876,0.000000,0.000000 -601741.555000,4612705.550000,4997,3405,106.300835,176.457855,169.135544,156.631409,139.077682,126.457863,125.722328,122.813232,123.028107,123.573563,122.069435,134.689270,153.449585,169.061157,181.185120,190.689255,186.557022,174.821487,150.300827,129.069427,117.995056,115.094223,108.945465,80.234734,64.251259,77.639679,93.515724,70.490921,31.771923,12.138861,9.904152,9.647948,6.266956,6.213236,7.378524,4.442158,0.540497,0.389257,0.203306,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.955000,4612705.550000,5024,3405,109.825638,168.114899,168.800842,156.908279,140.709930,128.577698,127.759514,124.462006,123.883492,125.825630,124.924812,136.643814,154.842163,172.412415,183.966125,193.833893,189.652069,175.685150,152.428940,131.114883,119.635551,115.346291,111.627289,82.660347,64.395882,81.032249,95.437210,70.230598,32.759521,15.646298,10.147954,8.855387,7.095881,10.528114,9.626460,3.534720,0.626448,0.123967,0.028099,0.000000,0.000000,0.000000,0.000000,0.101653,1.257851,1.097521,0.000000,0.000000,0.000000,0.000000 -601750.155000,4612705.550000,5040,3405,126.171097,173.873566,167.435547,155.666946,139.476868,125.947960,126.410767,123.716553,121.609116,124.286804,122.319862,134.526459,152.733063,169.782654,182.014053,191.385956,188.014053,174.385956,149.509933,128.005814,116.997543,115.369438,108.427284,80.187622,62.724815,77.104988,93.898361,68.700027,31.576052,11.742991,9.857043,8.460344,6.325632,8.062823,6.598358,2.997528,0.408265,0.088430,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,1.325620,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.755000,4612705.550000,5053,3405,122.271912,179.346283,168.833893,156.040497,139.338013,126.354553,126.288445,124.065300,123.147942,125.023979,122.635551,135.106628,152.668594,169.957855,181.214050,190.734711,189.073563,173.123138,149.809097,129.057037,117.610756,115.048767,108.718185,79.156212,64.379356,77.668610,93.742989,68.701668,31.643822,12.191752,9.883490,9.467784,6.377700,8.118196,7.777698,2.394222,0.471076,0.190083,0.061157,0.052893,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.977686,0.000000,0.000000 -601759.955000,4612705.550000,5089,3405,114.885963,179.852905,169.175217,156.844635,140.208267,126.059517,125.522316,123.489258,122.778511,125.133888,122.340500,133.712402,152.704147,169.224808,181.960342,192.803314,187.522324,172.935547,150.365295,127.811577,116.001656,114.216530,108.109100,78.497528,63.993412,78.158684,91.803314,68.919029,31.001673,11.295059,9.828118,8.258693,4.976044,4.476043,6.236375,2.376040,0.477688,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.555000,4612705.550000,5107,3405,117.219025,190.838821,173.557846,161.913223,144.533051,129.194229,127.632248,125.111588,125.731422,130.053741,125.227287,136.442169,154.169418,173.342972,183.309906,194.351227,190.698334,175.318176,151.549591,131.318192,119.268608,117.235550,111.227287,80.309937,65.326469,81.309937,95.971092,68.227287,34.243820,13.565308,10.111589,11.819024,8.342164,9.587617,8.618195,3.269431,0.938845,0.000000,0.127273,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.355000,4612705.550000,5121,3405,123.272743,185.471069,169.851242,160.495865,141.016525,128.090927,126.264481,123.256218,123.603325,127.214890,123.719025,135.181839,152.165283,170.049591,183.917358,193.223145,189.272720,173.157028,151.198349,129.545471,117.528938,114.900841,109.363655,79.404984,63.735558,81.537209,95.446304,67.776878,30.148779,12.246298,9.942168,8.745469,5.600838,7.119847,6.073565,3.926454,0.104959,0.000000,0.033884,0.230579,0.000000,0.000000,0.000000,0.036364,1.386777,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.355000,4612705.550000,5141,3405,152.260345,190.822327,170.161179,162.078522,143.334732,130.185974,128.623978,126.690109,126.301666,130.640518,125.119850,137.276871,155.227295,172.731415,184.623978,195.012405,191.929764,175.185974,152.012405,131.772751,119.342987,116.227280,110.681824,81.747940,65.483490,82.351257,96.136375,68.690102,33.442169,14.552085,10.062002,12.042992,7.157864,8.358691,8.798361,3.330589,0.677688,0.156199,0.135538,0.000000,0.000000,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.355000,4612705.550000,5171,3405,148.090927,192.619827,175.454544,165.900833,145.619858,132.123978,129.851257,128.702499,127.504150,132.925629,126.727295,138.661179,155.636368,173.859497,186.413223,195.388428,193.140503,175.504135,153.504135,132.198349,120.743828,117.900848,112.454567,82.719025,67.115730,83.570267,96.917366,69.173569,31.867786,14.912416,10.223161,12.876050,8.443815,7.995054,8.368608,4.350423,0.679340,0.253719,0.106612,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.214050,0.000000,0.000000,0.000000 -601779.755000,4612705.550000,5188,3405,134.773560,187.831421,171.319031,161.228119,145.211578,129.930588,128.682663,125.641335,125.847946,130.715714,125.872742,136.476044,154.773544,171.352097,183.971909,194.401672,191.046295,174.847961,151.071075,130.699188,118.690926,116.806625,110.872742,82.112411,65.409935,81.575218,95.707451,67.872742,32.252914,12.596711,10.079357,10.139684,6.668608,6.928111,6.916542,3.361164,0.891737,0.407439,0.060331,0.000000,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.355000,4612705.550000,5206,3405,112.644646,153.694244,163.123993,150.330612,138.057877,126.429764,124.479347,122.305794,122.305794,122.958687,123.107445,134.123978,153.909119,169.380203,180.851273,189.264496,188.033096,176.157059,151.140533,129.991745,118.355377,114.330589,109.000008,82.404976,66.239693,80.628113,95.917374,69.859520,32.685970,13.638034,9.909109,5.561996,7.266955,6.709101,6.353731,4.525629,1.309920,0.219835,0.096695,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.287603,0.000000,0.000000,0.000000 -601786.755000,4612705.550000,5223,3405,98.460342,157.989273,160.633896,151.228943,137.328110,126.171082,124.014061,121.410751,121.146294,122.567780,122.914886,133.890091,152.311584,168.253723,180.443817,189.476868,188.377701,176.005798,150.030594,128.509933,117.881828,115.253731,109.609100,81.790916,65.435555,80.617363,94.840508,70.303322,32.790928,11.971918,9.964481,4.645465,7.041335,7.924807,8.433898,3.515712,0.387605,0.068595,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.155000,4612705.550000,5255,3405,100.214890,153.970261,162.242996,151.681015,135.490921,125.986794,123.259521,121.664482,121.276054,122.176880,123.160347,134.565308,152.614899,168.424820,181.647949,189.548782,188.532257,175.433075,151.251266,129.441345,118.292580,115.548782,110.127289,82.771919,65.490929,81.342171,95.879356,70.102501,32.788448,12.790099,10.011590,7.139682,6.899185,6.682657,7.411583,4.857035,0.381819,0.000000,0.105785,0.000000,0.000000,0.072727,0.130579,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.955000,4612705.550000,5294,3405,104.361168,159.526459,162.171082,152.121490,138.278519,126.873566,124.873566,122.724800,122.559517,124.146294,123.113235,135.741333,154.774384,169.493378,181.956192,190.551239,189.724792,176.410736,152.005798,129.278519,118.972740,115.162819,110.154556,82.708275,65.650429,81.708275,94.981003,70.823975,32.873577,12.332249,10.014068,6.037202,8.102492,8.771089,8.073567,2.985959,1.014878,0.000000,0.091736,0.116529,0.000000,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.755000,4612705.550000,5313,3405,122.604149,157.745483,160.208298,152.092590,137.117386,127.960350,124.398361,122.357040,122.695885,123.910759,123.861176,135.976883,155.166962,170.530609,183.067795,191.009933,190.836380,176.571930,152.803329,131.514069,118.985138,115.819855,112.563644,83.629768,67.018196,82.803322,96.629761,70.249603,34.365307,12.859522,10.233078,6.354558,6.748775,7.470261,8.394228,2.771908,0.303307,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.755000,4612705.550000,5333,3405,113.121506,158.914902,162.708298,153.931427,140.038864,130.873566,126.534729,124.328117,125.584312,125.402496,126.253738,137.220688,156.700027,172.237213,184.179367,192.129776,191.989288,179.526474,154.468628,132.534729,120.914894,118.989273,114.063652,85.319847,68.823982,84.509926,97.815712,71.708282,35.642166,15.024812,10.369439,7.354558,6.729764,7.732244,7.249600,2.717363,0.539671,0.067769,0.370249,0.052893,0.000000,0.000000,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.555000,4612705.550000,5352,3405,106.446297,160.115723,163.165298,152.743820,138.140518,128.933899,126.512413,124.537209,124.322327,125.917374,126.537209,137.396713,156.049606,172.570267,184.842972,193.611572,192.041321,178.793411,155.066132,132.859528,122.132248,118.173569,114.090927,85.809937,68.809937,84.165306,98.669441,72.851257,35.008286,13.987620,10.371919,7.244640,7.825634,8.259518,6.979352,4.009926,0.214877,0.119009,0.099174,0.047934,0.000000,0.000000,0.000000,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.955000,4612705.550000,5374,3405,90.586784,156.215714,161.852081,152.141342,137.389267,128.934723,126.769440,125.232254,125.091759,127.133080,127.761177,138.042160,156.587616,173.091751,186.050430,193.992569,192.025635,180.686783,154.728119,133.240509,121.240517,118.810768,112.827278,85.496712,68.628944,82.562828,97.769440,70.174400,32.529770,12.884315,10.257045,4.405795,7.176873,6.704971,6.829764,2.924801,0.649588,0.139670,0.128100,0.052066,0.000000,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.555000,4612705.550000,5407,3405,104.329773,160.643814,162.809113,153.412415,138.858704,129.552917,127.420677,125.313240,125.015724,126.280174,127.528122,138.362823,155.999191,173.032257,186.098373,194.486801,193.329773,179.850433,154.214066,132.271927,121.602501,117.990929,112.900017,85.503326,69.205803,83.627289,96.338036,71.139687,34.594231,12.609935,10.263657,5.715713,6.683482,7.590921,6.758689,3.240504,0.849589,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.100827,0.000000,0.000000,0.000000,1.926447,0.000000,0.000000 -601827.555000,4612705.550000,5427,3405,111.197540,153.643814,163.734726,153.379364,139.106628,128.098373,126.445473,124.833900,124.420677,125.776054,127.288452,138.486801,156.362823,172.313248,185.610764,194.197540,192.503326,180.371094,155.156219,132.528122,121.470268,118.296715,113.172745,86.090103,68.561180,83.338036,96.800842,70.718201,32.767788,12.941339,10.288449,5.971910,6.191748,7.077699,5.846294,2.576868,1.286779,0.133058,0.439671,0.123967,0.058678,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.555000,4612705.550000,5442,3405,114.288445,151.792587,159.875229,150.098373,137.875214,127.040504,126.205788,124.916542,124.767776,127.999184,127.453728,139.453720,158.189270,173.660355,185.908279,195.833908,192.255386,180.346298,156.329773,133.495056,122.495056,119.701668,113.900009,87.255394,68.271919,83.924812,97.081833,70.982666,32.362831,11.797538,10.354564,4.094223,7.663650,5.310755,6.214889,3.356206,1.093391,0.094215,0.152067,0.000000,0.000000,0.000000,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.355000,4612705.550000,5466,3405,104.641335,156.886795,163.134735,153.225647,139.647125,129.473572,126.035553,124.688454,124.085144,126.738037,126.985970,137.895065,156.564484,173.176056,185.399200,194.333084,192.853745,181.052094,154.903336,133.729767,122.308281,119.300018,113.118195,88.076881,69.432251,85.019028,98.060349,71.514900,33.200844,12.391753,10.283490,6.266954,7.457039,6.708277,7.523154,2.187609,0.871077,0.228100,0.162810,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.555000,4612705.550000,5497,3405,114.642159,162.904968,167.202484,153.483490,138.747955,129.913239,126.012398,125.020660,125.020660,126.524796,127.078514,138.161179,156.045471,173.797516,186.103302,194.954544,193.095047,181.342972,156.417374,134.185959,122.549583,117.524796,114.136360,85.921501,69.309937,83.797539,95.657043,70.466957,33.210766,12.413240,10.376052,4.992572,8.833899,7.975219,6.938030,3.919016,1.156200,0.495869,0.230579,0.726447,0.086777,0.162810,0.016529,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.355000,4612705.550000,5511,3405,104.133904,161.211563,167.616531,155.633057,140.335541,127.583481,125.153732,123.087616,123.211586,126.790092,126.955383,137.996689,155.690903,172.451233,186.442978,194.128922,192.831406,180.492554,154.236359,133.038025,120.814888,117.624809,113.418198,85.145477,67.542168,82.765312,95.244652,70.765312,32.476051,11.801670,10.310763,5.525630,7.821504,7.933897,7.269435,3.897529,0.955374,0.500001,0.331406,0.395042,0.051240,0.000000,0.071901,0.059504,0.000000,2.482645,0.000000,1.953719,0.000000,0.000000 -601847.755000,4612705.550000,5528,3405,105.528122,163.081818,161.916534,155.271912,141.288437,130.701675,129.495056,128.131424,128.048782,130.428940,130.602493,141.900009,160.478516,176.263641,189.048767,196.685120,195.139679,183.503311,158.371078,136.032242,123.701675,120.957870,115.900017,88.106628,70.304977,84.519852,98.420677,73.990929,34.354568,13.972745,10.536382,6.439681,8.263651,7.855386,8.595056,3.343810,0.784300,0.627274,0.164463,0.000000,0.000000,0.000000,0.000000,0.100000,0.000000,0.000000,1.098347,0.000000,0.000000,0.000000 -601852.955000,4612705.550000,5554,3405,108.268608,160.346298,165.817368,155.437210,142.073563,129.643814,128.172745,126.321510,125.453735,128.470261,128.495056,138.990906,156.850433,174.015717,187.081848,195.073593,194.313263,182.809128,157.205811,135.329773,123.412415,120.908287,116.809113,88.304977,69.296715,86.139687,99.974396,75.073570,36.643822,14.143820,10.619026,7.769434,8.252908,9.615718,8.504147,3.595050,1.065291,0.254546,0.221488,0.254546,0.008265,0.000000,0.004133,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.955000,4612705.550000,5569,3405,125.232246,165.430603,163.686813,155.298370,141.529785,130.513229,128.215714,126.802490,126.331421,128.653732,128.893402,139.752914,157.752914,174.033875,186.645462,195.678528,194.752899,181.653717,157.521515,135.463654,123.587616,120.628937,115.645470,87.670258,70.124809,84.356209,98.009102,73.339684,34.075222,13.940516,10.513242,6.421499,7.349601,8.840510,8.951254,4.685959,0.800002,0.400001,0.233885,0.130579,0.044628,0.061157,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.355000,4612705.550000,5586,3405,121.696709,169.118195,165.184311,155.630585,140.366119,130.027283,126.465302,125.300018,124.837204,127.638855,127.622330,137.870255,155.415710,173.242157,184.432236,193.704971,192.828934,181.985962,156.663635,133.638855,122.936378,118.771088,113.845467,86.118195,68.374405,83.043816,98.465302,72.126457,32.842995,13.716547,10.349607,5.301662,6.144642,7.534723,8.807450,2.897528,0.950415,0.357026,0.113223,0.000000,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.355000,4612705.550000,5606,3405,111.372742,166.194214,162.979340,157.491745,145.086792,134.425629,132.657028,131.731415,131.508270,133.235550,133.161163,142.987625,160.632248,177.772720,188.995865,198.483475,196.929749,185.524796,161.367783,139.615723,126.772743,123.012413,117.045471,90.128113,72.714890,88.053734,100.764481,76.219025,35.028946,14.723984,10.640514,4.902489,9.225635,8.148774,7.788445,3.543809,0.814052,0.253720,0.059504,0.000000,0.010744,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601867.355000,4612705.550000,5626,3405,108.762817,159.476868,160.650421,153.220673,140.906616,130.352905,127.691742,127.576042,126.939682,131.311584,129.427277,140.848770,158.195877,174.865295,186.774384,196.352905,195.534714,184.319839,159.328110,137.724808,126.600838,121.237198,117.518188,87.592575,71.625633,85.328110,98.600838,73.939682,33.468616,13.228944,10.683490,3.919018,7.881006,7.742990,8.292576,4.013231,1.109093,0.366944,0.533885,0.134711,0.096695,0.109918,0.019835,0.000000,0.000000,0.000000,0.000000,0.349587,0.000000,0.000000 -601873.155000,4612705.550000,5655,3405,123.323151,171.897552,161.831436,154.715729,141.352081,130.137207,128.657867,127.550423,125.583481,129.079346,127.914062,138.533890,155.872757,173.443008,184.988464,193.773590,193.285980,181.633087,158.170273,136.145462,123.575218,120.517365,113.781830,87.864479,69.393402,84.723976,99.583481,74.178528,33.856220,13.625637,10.343822,4.436374,8.386792,7.083484,6.235549,2.952901,0.270249,0.320662,0.220662,0.037190,0.137190,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601876.355000,4612705.550000,5671,3405,120.163651,167.548782,160.218201,154.424820,140.242996,127.771919,126.309113,122.722336,122.391754,125.953735,126.226463,136.028122,154.656219,171.011597,183.995056,193.375229,191.507462,181.573578,157.838043,136.962006,124.912415,119.433075,114.672745,85.639687,68.962006,83.201675,97.854568,71.937210,32.606632,12.001669,10.424812,4.274390,7.300840,7.774393,6.139681,2.426452,0.438017,0.341323,0.740497,0.198348,0.379339,0.343802,0.000000,0.047934,0.684298,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.955000,4612705.550000,5759,3405,114.464478,163.781021,164.442184,151.739700,136.690109,126.789261,125.623985,121.739685,121.103325,122.342995,122.648773,134.243805,152.888458,169.012405,180.582642,190.020660,187.830582,175.690094,152.111603,131.962814,120.483490,117.657043,112.954559,83.648766,68.863663,82.400841,96.417366,71.202492,32.392586,14.677704,10.268614,8.028938,7.539682,8.048772,8.826459,4.117363,1.572729,0.364464,0.576034,0.288430,0.148760,0.511570,0.000000,0.124794,0.000000,1.370248,0.000000,0.000000,0.000000,0.000000 -601897.155000,4612705.550000,5775,3405,119.290100,174.538010,169.157852,158.364456,141.942978,129.033905,128.232254,125.628944,125.314896,125.843826,124.984322,136.992569,154.819000,170.653717,181.810745,190.009094,189.587601,176.331406,152.099991,132.215729,120.521507,118.744652,112.372749,84.141342,69.033905,82.058701,96.042168,71.918205,32.670265,14.307456,10.215722,8.414063,7.230592,7.420673,7.358689,3.676868,0.582647,0.200827,0.161158,0.103306,0.000000,0.000000,0.044628,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.755000,4612705.550000,5793,3405,110.552910,174.550430,174.418198,160.831421,144.343811,131.285965,131.426453,128.203323,126.657867,129.195053,127.153732,139.649597,157.723969,173.319016,184.798355,194.310745,191.740494,178.938858,155.459503,134.244644,123.128937,120.847946,114.054558,86.054558,70.765305,84.145470,97.798370,72.211586,32.591755,16.171093,10.368613,9.420674,7.870262,9.106626,9.529765,2.942982,0.628101,0.288431,0.185125,0.133884,0.057025,0.000000,0.000000,0.043802,1.347934,0.000000,0.000000,1.339670,1.178513,0.000000 -601903.755000,4612705.550000,5808,3405,111.049591,180.933899,169.578522,158.305786,144.000015,129.545471,129.636368,126.247940,125.388435,127.314064,126.264473,136.867783,156.272720,171.413239,183.272751,192.338837,190.975204,177.371918,154.033051,133.082657,121.586784,118.462814,113.818192,84.561996,69.256218,83.735550,97.214882,71.198364,33.851257,13.550430,10.347126,7.976045,8.295881,7.993402,8.661995,3.669432,0.276034,0.102480,0.100000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601907.155000,4612705.550000,5825,3405,101.609108,172.633896,166.468597,158.311584,140.551254,129.790924,129.195892,124.121506,124.146301,125.708282,124.724808,135.419022,153.774384,170.295044,181.716537,190.286789,189.766129,175.600830,152.848770,131.171097,120.518196,117.956215,111.972748,83.898361,68.328125,82.220680,96.080185,70.724823,32.609112,13.273573,10.179358,8.206624,6.157035,7.445467,7.245466,3.147940,0.449587,0.542976,0.238843,0.000000,0.446281,0.025620,0.000000,0.565290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601912.555000,4612705.550000,5852,3405,127.061165,178.259521,167.218201,159.185150,141.647949,129.441330,128.821503,125.838028,124.383484,126.986786,125.945465,136.490921,155.466141,171.061172,182.193405,192.606628,189.887619,175.631424,152.788452,131.499191,120.656212,119.771912,112.490921,83.804970,68.730591,82.953728,95.449600,69.862823,32.730598,11.572743,10.226465,8.566957,6.599183,6.978525,6.799185,2.756207,0.464464,0.104959,0.280993,0.000000,0.066116,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.355000,4612705.550000,5866,3405,124.700844,180.866119,167.775208,158.014877,142.295868,128.519028,128.221497,125.601669,124.428116,126.576874,124.485962,135.816528,153.601654,169.816528,182.304138,192.923981,189.295868,174.816528,152.147110,131.692581,119.948776,117.725632,111.436378,82.932243,66.866135,81.328941,95.543816,67.676048,32.279358,11.010759,10.130598,7.584312,6.438028,6.765300,7.656211,3.082653,0.443803,0.528926,0.115703,0.155372,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601917.955000,4612705.550000,5879,3405,121.561996,181.961975,168.036362,160.135544,143.895874,130.400024,127.738861,125.871094,124.945473,127.656219,124.333900,137.234726,155.433075,171.606613,183.135529,192.813232,191.474380,177.755356,154.507462,133.267792,123.309105,119.490921,114.127281,85.044647,70.466133,85.209938,98.168617,71.019852,34.094234,12.661174,10.375226,11.366959,8.900841,8.130591,8.172740,3.109098,0.975210,0.395869,0.115703,0.000000,0.023967,0.000000,0.000000,0.156199,0.000000,0.000000,0.000000,0.986777,0.000000,0.000000 -601920.755000,4612705.550000,5893,3405,123.511589,185.032257,171.528122,161.478531,145.933075,129.495056,129.552917,127.536385,126.875229,129.172745,126.709938,137.288452,155.734726,172.371094,183.271927,193.329773,190.891754,177.139694,153.858704,133.445480,122.214066,119.123161,113.536385,84.057045,68.379356,83.866959,95.420677,69.552910,32.478531,13.951258,10.321507,10.638858,6.900838,6.625632,6.070259,3.094224,0.332232,0.285125,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.100000,0.000000,0.000000 -601925.355000,4612705.550000,5916,3405,137.947937,185.716522,172.501663,161.394226,143.799179,129.799179,129.964478,126.666954,126.394226,130.567780,125.799187,139.096710,155.080170,172.146286,183.518188,194.253708,190.989243,176.989273,154.030594,132.873566,122.683479,118.485130,112.790916,84.295052,69.700027,83.435555,96.848778,70.675232,32.113243,13.346299,10.253738,11.403321,6.662821,7.403316,8.528112,3.496703,0.937192,0.268596,0.073554,0.003306,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.155000,4612705.550000,5945,3405,139.409927,193.862823,174.370255,164.006622,144.089264,130.163635,131.634720,129.130585,128.080994,132.618195,126.998352,139.750427,156.576859,173.923981,186.519028,195.882660,193.155396,178.271103,155.626450,135.816528,122.957039,121.081001,115.345459,85.824799,71.800018,87.229759,99.353729,71.998360,33.601673,14.909936,10.485969,12.399191,8.189271,8.409104,8.108277,4.718191,1.158680,0.452893,0.107438,0.000000,0.000000,0.023967,0.000000,0.028099,1.251240,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.155000,4612705.550000,5985,3405,135.174408,189.190933,174.471924,164.695053,146.265305,132.604141,131.058685,128.794235,129.141342,132.496704,129.538025,141.339676,158.306625,174.058701,187.108292,197.496719,194.934738,180.397552,157.290100,135.967789,124.257034,121.620674,117.372742,87.810760,72.116554,87.595879,98.513237,73.529778,35.389275,14.830596,10.670267,12.585139,8.498361,7.697535,8.750428,4.597530,1.132233,0.314050,0.110744,0.186777,0.516530,0.363637,0.000000,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.555000,4612705.550000,6047,3405,123.501663,160.414062,167.967789,158.273560,142.678528,134.769440,130.571091,129.835556,128.372742,129.174393,129.372742,140.810760,158.190918,174.728119,186.050430,194.414062,193.182663,181.521500,157.232239,136.133072,124.976044,121.190926,116.736374,89.207451,71.182655,87.083481,98.769432,74.571091,33.571095,15.937209,10.612415,7.079352,9.474396,8.986792,9.857040,3.086783,0.757854,0.179339,0.235538,0.042149,0.000000,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.155000,4612705.550000,6145,3405,103.994232,162.724808,169.228943,156.493393,143.336380,133.286789,130.857040,127.774399,126.823982,129.129776,129.724808,139.873566,158.534714,173.898361,186.509933,194.385956,193.295044,181.857040,157.848770,137.129761,124.947952,120.881836,114.972748,87.609108,71.361176,86.559525,100.278534,74.295059,37.138039,15.565308,10.452085,6.596706,7.492577,7.690095,8.858694,3.501661,0.521489,0.129753,0.104133,0.053719,0.000000,0.000000,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,1.133058,2.053719 -602002.555000,4612705.550000,6302,3405,103.035553,152.600830,162.939682,153.609100,140.311584,132.815720,130.790924,130.443817,131.848770,133.113235,134.534714,144.683487,163.220673,178.683487,191.237198,198.435547,198.526459,186.906616,163.047119,140.700012,128.989273,124.336372,119.245461,90.898354,72.592583,88.609108,101.385963,74.443817,35.435555,14.864482,10.840516,5.266952,6.762823,7.998360,8.341335,3.414885,0.905786,0.199174,0.163637,0.238017,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.355000,4612705.550000,6446,3405,109.685959,162.608276,159.517365,155.897537,141.963654,131.074402,132.099182,130.842987,130.661179,134.752075,132.826462,143.033096,161.500839,177.261169,188.881012,197.566956,196.104141,186.715714,160.748779,140.930588,128.723984,123.781830,118.600014,91.153732,74.376869,89.145470,99.765305,75.872742,36.145477,14.654563,10.781837,6.436375,8.385138,7.979352,9.496707,5.409925,1.312399,0.971903,1.295043,0.230579,0.523141,0.473554,0.003306,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,2.317356 -602043.955000,4612705.550000,6509,3405,116.497536,168.127274,168.094223,162.011597,146.821503,134.036377,132.730591,130.647949,128.598373,130.424820,129.887619,139.333908,157.085968,174.755371,187.548767,196.771912,196.052902,185.466125,161.234726,139.457870,127.738861,124.962006,118.127289,91.110764,73.077705,88.523987,100.044647,76.565308,33.722332,14.174398,10.738861,4.378522,5.614063,6.194228,6.771914,2.808270,0.681820,0.390084,0.000000,0.006612,0.213223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.618182,0.000000 -602052.355000,4612705.550000,6551,3405,111.087624,182.294189,177.095871,163.715714,144.699188,132.748779,132.542160,130.244644,128.600006,129.170258,129.897537,141.145462,159.566956,176.599991,189.335510,199.261139,198.120636,184.955368,161.178528,139.071091,127.773567,124.566956,118.600014,90.657867,73.955391,90.707451,104.922325,76.376877,39.352089,15.768614,10.781838,9.781007,8.714891,8.776874,9.221501,4.976868,0.820663,0.251240,0.169422,0.000000,0.000000,0.009091,0.122315,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602056.355000,4612705.550000,6571,3405,118.877693,175.464478,176.447937,162.249603,145.497528,132.026459,132.274384,127.910751,127.175217,127.464470,128.671082,139.414886,159.472733,176.067780,187.935547,197.943817,198.034714,183.158691,160.844635,136.489273,126.191742,121.431412,117.472740,87.952087,72.365318,88.580185,102.315712,73.753746,35.695885,14.503324,10.679358,11.617370,8.347121,7.462823,10.670263,3.075215,0.880168,0.100000,0.159505,0.000000,0.000000,0.335537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.555000,4612705.550000,6587,3405,116.209106,170.114899,177.594238,164.139679,149.015717,139.176041,137.523148,134.060349,132.688446,132.564484,133.184311,144.291763,164.506622,180.688446,191.862808,201.168594,201.598343,185.218201,162.383469,139.780182,129.763657,126.119026,120.672745,92.251259,76.019852,90.656219,105.681007,75.185143,37.953735,15.680182,10.970266,10.484312,8.819849,11.264476,9.271088,6.128934,1.629755,0.920663,0.793390,0.199174,0.470249,0.500827,1.352893,0.056199,1.403306,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.955000,4612705.550000,6609,3405,107.790924,181.055359,177.989243,161.956207,145.947937,134.873566,135.427277,131.121506,129.724808,131.700012,130.890106,141.253723,161.476868,177.757843,189.303299,200.766113,198.526443,183.840485,160.071915,137.633896,127.080185,124.220680,118.609108,90.080185,74.245476,88.708282,103.204147,74.195885,36.344650,14.796713,10.782663,10.737205,8.372740,8.323153,8.830593,3.921496,0.359505,0.080992,0.149587,0.000000,0.003306,0.000000,0.166942,0.000000,3.236364,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.555000,4612705.550000,6622,3405,115.630592,180.754562,177.432251,164.027298,146.366135,134.151260,133.630600,130.043808,129.019028,130.671906,129.729752,142.176056,162.151260,178.671921,189.903336,200.093414,198.176056,184.762833,160.349609,139.407455,127.837196,123.837196,118.754562,89.324799,73.713234,88.680168,102.812408,75.837204,37.688450,14.704151,10.795886,10.619849,8.897536,8.587618,8.920674,5.184306,1.328102,0.000000,0.546282,0.057851,0.000000,0.000000,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.355000,4612705.550000,6636,3405,111.419846,186.444656,176.560349,161.700851,146.006638,131.585144,130.857864,129.180176,127.990097,130.147125,127.973572,140.262833,159.733902,176.973572,188.089279,199.659531,198.105804,183.081009,159.452911,137.833084,125.940514,123.287621,118.345467,89.122330,72.386795,86.990097,101.684311,73.626457,36.097538,13.340513,10.758698,9.108279,7.782660,8.823982,7.681004,4.795050,0.867770,0.189257,0.486778,0.155372,0.279339,0.000000,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,1.400000,0.000000 -602073.755000,4612705.550000,6658,3405,121.121498,187.581833,180.656219,165.094238,149.284317,136.375214,136.763641,133.813232,132.804962,134.912399,132.862808,145.176880,164.236359,180.360336,191.616547,202.657867,200.938858,186.112411,162.013229,141.186783,127.980171,125.062820,119.145477,88.814896,73.938866,90.434731,104.831421,74.897545,37.046303,15.052912,10.831425,10.361173,8.587617,9.902496,9.683486,5.425628,0.915704,0.304133,0.261984,0.132232,0.174380,0.142975,0.033885,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.355000,4612705.550000,6686,3405,125.262825,193.200821,177.655380,162.324799,143.514877,131.382660,131.184326,128.523163,127.985970,131.019028,128.192581,141.580994,160.085129,177.308258,189.316528,199.630585,196.911575,182.696686,157.539673,136.250443,125.928123,121.423988,115.663658,87.531418,72.002502,87.043816,101.589279,73.250435,35.853741,13.533902,10.514895,12.095057,8.533072,8.252079,11.149603,6.609099,2.654548,1.764465,1.100001,0.775208,0.442975,1.286778,0.249587,0.131405,0.000000,0.000000,0.000000,0.000000,0.671075,0.000000 -602083.955000,4612705.550000,6709,3405,115.896721,170.987625,169.549606,159.095062,143.979370,131.524811,130.830597,127.458702,125.161171,128.062012,125.500015,136.747971,153.045486,169.301666,180.938034,191.640518,191.615723,177.673569,154.210770,134.995880,122.838860,120.219025,114.227287,88.194229,71.764481,88.128120,99.681831,74.235550,34.615723,14.601670,10.384316,7.619020,7.620675,8.812409,9.506625,5.067774,1.004960,0.428927,0.099174,0.000000,0.001653,0.104132,0.415703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.155000,4612705.550000,6730,3405,112.931419,163.905807,163.300018,156.647125,142.374405,129.085144,127.374397,124.333069,123.283485,125.961174,123.704971,134.192581,149.961182,167.283493,178.638870,189.597549,188.581009,176.093414,152.779358,133.423981,120.556213,118.159515,114.663651,86.812416,73.200851,86.564484,99.126457,72.514900,34.994232,14.017372,10.423985,6.215713,7.174395,8.758690,7.553732,2.574384,0.400827,0.189257,0.343802,0.250414,0.011570,0.063637,0.180166,0.322314,0.000000,0.000000,0.000000,1.867769,0.000000,0.000000 -602090.955000,4612705.550000,6744,3405,109.300018,164.914062,171.575226,160.608276,146.376877,135.228119,132.261169,130.426453,128.674393,131.360336,128.376877,139.765305,155.806625,172.170258,183.947113,193.872742,193.054565,178.732239,156.228119,133.740509,121.881004,119.575218,113.145470,87.161995,72.145470,88.203316,98.872742,73.847946,35.674400,13.225637,10.285970,4.413232,6.423982,8.062820,6.028111,3.162814,0.667770,0.690910,0.806613,0.083471,0.000000,0.212397,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.355000,4612705.550000,6766,3405,120.074394,166.291748,169.457031,160.200836,143.275208,129.961166,128.176041,125.531418,122.977699,127.531418,125.118195,135.820679,152.729752,168.457031,180.027298,190.746292,189.324799,176.547958,153.704971,133.795883,121.581009,117.919846,112.936378,88.043816,72.035553,87.407455,99.432243,74.109932,35.151253,13.823159,10.266961,6.809103,7.740512,8.526457,7.286789,2.451244,0.532233,0.142149,0.287604,0.039670,0.011570,0.061984,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602102.755000,4612705.550000,6803,3405,98.809105,165.362823,163.577698,154.511597,141.536377,130.635544,128.263641,124.263641,122.569427,123.891739,123.627274,133.891739,150.776047,166.627289,177.924820,186.825638,185.759521,174.900024,151.933075,129.329758,119.271904,116.114876,111.627281,85.511589,69.866959,85.098366,96.486786,71.585968,33.304977,12.300841,10.147953,4.105793,6.761997,5.561166,6.455384,2.342980,0.181818,0.000000,0.042975,0.178513,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.155000,4612705.550000,6835,3405,90.951256,157.157867,162.918198,154.653732,139.430588,127.810760,124.438858,121.009102,118.942986,121.885139,121.050423,132.042160,147.182663,163.337204,174.907440,184.436371,183.609924,171.890915,148.626450,128.901672,117.405800,114.414062,109.009102,83.381004,68.273575,83.918198,99.023155,72.777702,35.381012,14.337208,9.909936,5.854555,7.409931,8.154557,6.842987,2.517360,0.541323,0.271902,0.214050,0.438017,0.114876,0.166943,0.314050,0.000000,0.000000,0.000000,1.358678,0.000000,0.000000,0.000000 -602116.355000,4612705.550000,6871,3405,85.052902,156.300827,165.019836,154.201660,138.441330,128.838013,123.482658,122.490921,119.920670,121.408279,121.656212,130.945465,148.127274,164.788437,175.391739,185.548767,184.209915,171.573563,148.862808,129.135544,117.160339,113.548775,108.309105,83.242989,67.970261,84.474388,100.259514,73.350433,35.664486,13.150431,9.846299,6.184308,7.165304,8.109105,8.342988,1.768598,0.854547,0.180166,0.191736,0.000000,0.000000,0.000000,0.344629,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.155000,4612705.550000,6890,3405,85.215721,148.109924,158.556198,149.225632,136.275223,123.713226,121.209099,117.415710,114.242157,116.407448,116.547943,126.374390,144.233887,158.390915,170.498352,178.820663,178.002487,166.663635,143.969421,125.126450,113.928108,109.845459,103.845459,77.812408,63.262001,81.886795,98.283478,74.771088,35.961178,14.727291,9.440515,6.074390,8.343816,7.654558,5.633068,3.568601,0.595869,0.838018,0.230579,0.272728,0.000000,0.189257,0.000000,0.496695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.355000,4612705.550000,6906,3405,87.875229,148.734711,162.478516,151.833893,135.602478,125.247108,122.073555,117.643806,115.461998,115.230591,115.619019,126.825623,142.495041,159.007446,170.181000,181.057022,178.561157,167.015701,145.552902,125.214050,115.057030,110.718201,103.809113,77.329773,63.866962,82.379356,99.156219,74.081841,34.007458,12.923984,9.437209,4.014885,6.990924,5.466125,7.226459,1.943807,0.285951,0.224794,0.097521,0.135538,0.083471,0.065289,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.355000,4612705.550000,6926,3405,92.342987,152.632248,159.607452,150.541336,134.987625,125.780998,120.376038,116.632240,115.607445,116.111580,116.491745,126.458687,143.533081,158.706635,169.995880,180.698364,178.235550,167.260345,146.665298,125.929764,114.533066,110.706619,105.045464,78.690102,63.896713,82.095047,98.103317,76.995880,33.896713,14.428944,9.549606,6.419017,6.672742,6.930589,5.045464,2.178518,0.533059,0.229753,0.000000,0.292562,0.000000,0.057851,0.000000,0.138017,0.000000,0.000000,2.014050,0.000000,0.000000,0.000000 -602131.955000,4612705.550000,6949,3405,79.818199,149.834732,160.685974,150.049606,135.644623,125.231415,121.900833,116.181816,115.578522,116.611572,116.438019,127.049583,143.710754,159.132248,170.504150,180.504150,179.264481,166.975220,147.049606,125.272736,115.537201,109.925621,104.272728,77.876053,64.099197,82.396713,99.338852,75.347122,35.148781,12.320679,9.479358,5.217365,7.231419,7.467781,7.899186,3.519841,0.691737,0.119009,0.092562,0.019835,0.000000,0.115703,0.109091,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.955000,4612705.550000,6979,3405,80.242165,146.530579,158.695862,149.629745,133.555374,124.836372,118.976868,116.100838,113.365295,114.671082,114.200012,125.786789,141.216537,158.340485,169.613220,179.323959,178.125610,166.439667,145.778503,124.150421,113.993401,108.952072,101.745461,76.613235,63.547127,79.084320,96.654556,71.968613,34.481010,11.210760,9.249605,4.561166,5.574393,5.655383,5.242986,3.702487,0.461158,0.299174,0.028099,0.215703,0.267769,0.276033,0.259504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.555000,4612705.550000,7007,3405,93.419846,146.204971,158.411575,150.618195,135.031418,123.618195,119.998360,116.543816,114.395058,114.461174,114.081009,125.543816,141.709091,157.047943,169.238022,177.750427,177.080994,167.056198,145.345459,124.254562,112.849602,110.072739,101.527290,76.758690,62.056217,80.725632,97.353737,72.395065,32.428116,10.293406,9.229772,4.660339,7.538858,5.771086,6.229762,1.746287,0.357852,0.055372,0.107438,0.033058,0.014050,0.000000,0.076860,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602146.755000,4612705.550000,7023,3405,81.879356,153.796707,159.540512,151.135559,136.714066,126.292572,122.185135,117.697533,117.102493,115.606621,115.953728,126.557037,143.804977,158.771927,170.573578,180.995056,180.672745,168.325638,146.730591,127.424805,115.152077,110.499184,105.036377,78.474388,63.433075,82.449600,97.557037,73.681000,35.846302,13.271091,9.548779,5.984308,6.656214,7.580177,6.293402,1.417359,0.466943,0.360331,0.628927,0.020661,0.000000,0.068595,0.597521,0.002479,0.000000,0.000000,0.000000,0.000000,1.888430,0.000000 -602149.955000,4612705.550000,7039,3405,73.872742,146.732239,158.930588,149.484314,137.740509,125.831421,122.583481,118.112411,116.120674,116.418198,117.145470,127.335548,144.608276,160.294235,171.831421,181.038025,180.690918,168.252899,147.153732,125.765305,115.376869,111.343811,104.600014,79.765305,64.029770,81.046295,97.442986,72.666130,34.938866,13.271091,9.509109,4.975217,7.027288,6.137200,5.485962,3.204140,0.538017,0.063637,0.303306,0.266116,0.000000,0.132232,0.059504,0.210744,0.000000,0.000000,0.000000,1.809917,0.000000,0.000000 -602155.155000,4612705.550000,7065,3405,89.809937,143.975204,162.214874,151.041321,138.421494,127.752075,123.611580,119.735542,117.735550,118.876053,119.281006,129.438019,146.727280,161.471069,172.991730,181.677689,180.925598,169.644623,147.636368,127.628105,115.884315,112.057877,105.818199,80.413246,66.595055,82.834732,98.305809,72.752083,35.049606,12.245473,9.619854,4.670258,7.106626,6.864474,7.136375,2.855377,1.001655,0.609092,0.204959,0.024794,0.000000,0.073554,0.457025,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.355000,4612705.550000,7081,3405,80.583481,147.500824,161.740494,150.996689,136.442993,126.178520,121.806618,118.550415,117.046288,116.740501,116.790085,127.608269,144.335556,158.211563,170.914047,179.707428,179.038010,168.046280,144.980179,125.104134,114.203308,109.905792,104.509094,78.195053,64.533905,80.178528,93.476044,69.062828,30.451258,10.771088,9.500847,5.333068,6.671088,6.175219,5.816538,3.100832,0.363638,0.020662,0.376861,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.555000,4612705.550000,7102,3405,83.262001,154.162827,161.493393,152.931412,140.022324,129.030594,124.832245,121.526459,120.038849,119.749596,121.113235,131.088440,147.865295,163.385956,174.220673,184.195877,182.154556,170.567780,148.584305,128.600830,117.700012,113.278519,107.700012,81.576042,67.534729,82.914886,97.038849,70.625641,34.691757,14.402496,9.790928,6.171084,7.457867,5.898359,6.404971,3.321494,0.346282,0.116529,0.000000,0.084298,0.105785,0.000000,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.355000,4612705.550000,7131,3405,91.106628,152.453751,162.966156,154.594238,140.048782,129.751266,126.222336,123.404152,121.643822,121.652084,122.693405,132.742996,149.585968,164.833923,176.321518,187.040527,185.676895,173.420700,151.379364,131.214066,119.751259,116.362831,110.445473,83.933075,70.156219,85.090103,96.048782,72.594231,35.354568,15.252083,10.040514,6.425631,8.438856,8.183484,8.109103,2.830584,0.132232,0.429753,0.272728,0.000000,0.000000,0.000000,0.000000,0.575207,0.000000,0.000000,1.841322,0.000000,0.000000,0.000000 -602174.955000,4612705.550000,7164,3405,83.035561,151.019028,163.423996,152.547958,139.473572,129.217377,126.142990,122.209106,120.250427,121.242165,121.647125,132.176041,149.754562,164.556213,175.390930,185.423981,185.589264,173.019028,150.473572,129.787613,118.514893,116.176048,108.845474,84.671913,68.911591,84.415718,95.291756,70.118202,32.134727,12.422332,9.895061,5.665298,6.106626,6.742986,7.480177,2.657857,0.886779,0.316530,0.103306,0.106612,0.004959,0.390910,0.588431,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.355000,4612705.550000,7186,3405,101.821503,156.937210,163.722336,154.044647,139.978531,129.499191,125.961998,123.383484,121.069435,122.119019,122.928940,132.548767,150.986801,165.193405,176.697540,187.242996,185.928940,173.804977,150.995056,130.209930,119.854553,116.821503,110.945465,85.457863,70.135559,84.920670,95.251251,70.069443,33.953739,13.270266,10.085970,7.014889,8.195055,7.623979,7.914063,4.423147,0.690911,0.017356,0.238844,0.290910,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602184.355000,4612705.550000,7211,3405,83.971924,156.004974,166.087616,156.269440,139.558685,130.666138,128.236389,123.996712,123.277710,124.558701,123.914070,134.806625,151.352081,167.244644,178.517365,189.013229,189.219849,175.798355,153.434723,133.195068,122.765312,119.798370,114.963654,87.781837,72.451263,87.757050,97.790100,70.781837,33.492580,14.841341,10.451260,7.139682,8.490924,9.241336,6.828113,3.723146,1.114879,0.112398,0.216530,0.561158,0.012397,0.185124,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602187.955000,4612705.550000,7229,3405,97.657051,156.268631,164.425659,154.103333,138.243835,128.938034,126.012405,124.136375,122.409096,122.822319,124.285133,134.185974,151.219040,166.367798,178.466980,188.020691,188.376068,175.219040,153.326477,132.020676,122.111580,119.334717,112.954559,87.673561,72.780998,87.475212,97.731415,70.318192,31.607456,13.652083,10.268615,6.112408,5.992576,8.662824,5.968607,2.849593,0.526447,0.178513,0.097521,0.078513,0.337191,0.066942,0.000000,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.355000,4612705.550000,7246,3405,96.472748,155.323990,166.976883,154.720688,142.175232,129.233063,127.150429,124.704140,123.629761,124.472740,125.092575,135.894241,152.976883,167.968628,181.191757,191.117386,191.679367,179.786804,158.233078,135.621521,126.398354,123.216537,117.109100,89.571922,75.538864,91.009933,101.150421,75.051254,35.737209,12.425637,10.646300,5.749599,8.649600,8.759518,7.635549,4.816537,0.865292,0.215703,0.176860,0.262811,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.355000,4612705.550000,7261,3405,102.270264,160.096725,163.733078,156.352921,142.171097,132.476883,129.650436,126.005806,124.716545,125.328117,125.857040,137.542999,154.617386,169.757874,181.675232,193.030609,192.823990,180.675232,158.914902,138.584320,127.005806,124.476875,117.154564,91.361176,75.691750,92.906631,104.890099,77.526466,37.700016,15.323157,10.650432,8.247949,9.986790,8.933073,9.190922,5.159513,1.004962,0.042976,0.059504,0.152893,0.000000,0.000000,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.955000,4612705.550000,7274,3405,87.714066,157.077698,166.879364,154.656219,139.548782,129.813248,127.573570,124.441345,123.358696,122.945473,123.978531,135.176880,151.862823,168.813248,180.052917,190.218201,190.862823,179.193405,157.771927,137.309113,125.119026,122.466133,116.309113,90.242996,74.433075,90.201675,104.309113,77.152084,36.251259,13.826465,10.573573,6.809101,8.662825,9.907453,8.502493,3.788438,1.244631,0.247109,0.052066,0.079339,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.355000,4612705.550000,7301,3405,88.228111,154.938858,161.211578,153.566956,137.252899,127.484314,125.128937,120.996704,119.831421,120.533897,120.971916,132.781830,150.393402,165.079346,177.112411,186.947113,187.525635,174.335556,153.095886,132.748779,122.823151,119.228111,114.054558,86.740509,71.699188,88.922325,102.277702,76.798363,36.566963,14.491752,10.368613,6.430591,7.612411,9.123154,6.977698,2.524799,0.485126,0.228926,0.051240,0.148761,0.224794,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602207.755000,4612705.550000,7328,3405,86.783493,161.031433,164.717377,154.494217,139.932251,130.965317,127.362007,124.163658,122.601677,123.766968,124.047958,136.081009,152.742157,168.552094,180.676056,190.742172,190.816559,179.601669,156.552078,136.552094,124.676056,122.395065,114.981842,88.725632,73.642990,90.411583,105.188454,76.213234,36.981842,13.828115,10.452911,6.526459,8.440510,8.056212,6.866953,4.171910,0.360332,0.329753,0.000000,0.035537,0.004132,0.000000,0.455372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602210.555000,4612705.550000,7342,3405,88.649597,163.046280,161.203323,154.352081,140.013229,129.525635,128.343811,123.881004,121.847946,123.856209,123.228111,135.509109,152.492554,167.938858,179.666122,190.798355,191.087616,179.112411,155.509094,136.319016,126.368607,120.847946,115.145470,87.864479,74.608276,89.302490,104.583481,75.484314,37.252914,14.591751,10.467787,6.487615,9.614890,8.962825,8.827287,3.771908,0.637192,0.590084,0.052066,0.182645,0.143802,0.239670,0.000000,0.214050,2.250413,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.355000,4612705.550000,7366,3405,92.782661,158.890091,163.534714,153.666946,138.179367,128.361160,126.319847,123.592575,120.691742,120.542984,121.104965,132.675217,150.361160,165.749603,176.435547,187.303314,187.295044,173.071915,153.113235,132.410767,121.600838,117.633896,111.609100,84.303322,71.435555,87.600845,101.419037,74.749603,34.187622,13.736381,10.146299,8.099186,8.461998,7.377698,8.656212,2.970255,0.481820,0.295042,0.209091,0.138844,0.333058,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.049587 -602222.355000,4612705.550000,7401,3405,93.782654,160.063660,164.542999,154.733078,137.592590,128.766129,126.443810,122.683479,121.212410,122.551247,121.617363,134.344635,150.832260,167.295074,178.319839,189.022308,188.799164,176.212402,153.790939,133.261993,123.501663,119.385963,113.245461,86.179352,71.584312,87.567780,102.559525,74.212418,34.848778,14.723159,10.295060,8.285960,6.637203,7.096708,8.249599,3.481826,0.563638,0.045455,0.289257,0.000000,0.033884,0.204959,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602225.355000,4612705.550000,7416,3405,95.137199,158.765305,163.881012,152.467789,136.814896,127.335548,125.368607,121.839684,119.484314,120.352081,120.029762,131.641342,149.343811,164.376877,176.178528,187.545456,187.099182,174.578522,154.297531,134.975220,124.561996,122.330597,116.545471,89.446297,75.148773,90.322327,102.859520,75.768608,34.553738,14.451257,10.595059,6.685133,7.623154,7.412411,8.070259,4.019843,0.449589,0.000000,0.363637,0.080166,0.195042,0.004959,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.155000,4612705.550000,7435,3405,99.382668,164.746307,168.771103,154.531433,141.374405,127.142998,126.878532,123.746307,121.581017,123.118202,122.481842,133.341339,151.209106,167.746307,179.275223,189.440506,188.250427,176.052094,153.961182,134.291763,123.878532,119.928123,113.572746,88.142990,72.713234,87.936378,102.399185,76.630592,35.531422,14.851258,10.324811,7.640507,7.950429,10.326461,6.994228,4.195049,0.785126,0.047108,0.057851,0.113223,0.000000,0.067769,0.726447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602232.555000,4612705.550000,7452,3405,88.615715,160.219009,166.128098,155.334717,141.938019,128.987610,126.400841,122.657043,120.871918,122.590927,121.318199,132.904968,150.152893,166.599167,178.037201,189.161163,186.723145,175.351257,152.533051,133.483490,121.268608,118.524811,112.500015,85.962830,69.855385,87.177704,102.747948,76.789284,36.185970,15.542168,10.227291,9.293402,9.123156,8.960346,8.615715,3.890090,0.800829,0.130579,0.000000,0.028926,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602237.355000,4612705.550000,7476,3405,79.595055,159.636383,162.702499,154.892578,137.190094,122.694229,123.586792,120.421501,118.181831,120.545471,118.619850,131.157043,148.206635,165.305801,176.041321,186.198349,185.578506,172.214874,150.719025,130.305801,119.322327,116.264481,110.636383,82.471092,67.520683,86.314064,98.925636,72.165306,33.322334,13.589273,10.057869,8.031415,7.866956,7.824809,7.688444,2.366947,0.383471,0.007438,0.141323,0.032232,0.000000,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602242.155000,4612705.550000,7500,3405,93.942162,170.024811,166.661163,156.694214,138.537186,125.876053,125.404976,120.314064,119.818199,121.719025,118.694229,131.520676,147.446274,165.537186,176.727295,188.396713,185.198364,171.983490,150.454544,130.438034,119.314064,115.892578,110.545471,82.479355,68.272743,83.619850,100.016548,73.966957,33.611591,13.021504,10.049605,9.532243,8.415716,6.466128,7.918194,4.747944,0.504134,0.508266,0.208265,0.364464,0.071075,0.095868,0.422314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602248.355000,4612705.550000,7531,3405,107.128944,170.575226,163.823151,155.798355,139.302490,123.856216,122.335556,119.790100,118.765312,120.319031,117.806633,129.509109,146.401672,163.409927,174.905792,186.773560,183.798355,169.500839,149.583481,129.641342,117.550438,114.732254,108.781837,82.261177,67.021507,84.054565,100.046303,73.310768,34.914070,14.460349,9.889276,8.433895,8.850428,8.374393,8.436376,4.424801,1.364466,0.153719,0.000000,0.122314,0.110744,0.083471,0.068595,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602251.555000,4612705.550000,7547,3405,96.079353,168.666122,165.542160,155.046295,138.244644,125.955383,123.616539,120.666130,118.798363,122.021500,118.732246,128.988449,146.715714,164.153732,174.881012,186.029770,184.757034,168.757034,148.897537,129.575226,119.104149,114.963646,108.690926,81.566956,67.021507,84.550423,100.451256,72.277702,33.162003,14.156217,9.881011,10.345467,9.147122,8.786791,8.399185,2.752898,0.619011,0.200827,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.755000,4612705.550000,7563,3405,103.804970,166.631409,159.614883,154.028107,136.730576,122.433067,121.540504,118.226456,116.383484,119.747116,114.821503,127.871086,143.747116,162.176865,173.490906,184.928925,181.928925,167.276031,146.375214,126.689270,114.995056,111.846291,106.218193,77.482666,64.069443,81.953728,96.804970,71.052910,33.011593,11.531421,9.656217,8.612408,5.820675,7.976873,6.940506,3.000007,0.485126,0.284298,0.102480,0.024794,0.000000,0.000000,0.137190,0.181819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602260.755000,4612705.550000,7593,3405,90.397552,164.620667,161.223984,152.728119,136.711578,121.447121,119.868607,115.604149,113.447121,117.976044,112.141335,124.265305,140.587616,158.166122,169.455383,180.207474,177.000854,160.728119,142.967789,123.314888,110.257034,106.736374,101.736374,73.587624,60.860352,77.860352,96.009102,70.323166,33.942993,12.909934,9.248779,9.194227,8.468609,7.062823,6.976871,3.190914,0.438844,0.175207,0.195042,0.307439,0.125620,0.000000,0.378513,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602264.955000,4612705.550000,7614,3405,118.510757,164.353745,162.196701,152.981827,136.494232,123.122330,120.064476,115.750427,114.973572,117.932243,112.502495,123.552078,140.684326,156.923981,169.866119,181.171906,178.105789,163.188431,142.618210,122.196709,111.196709,107.370262,101.709106,73.808281,59.717369,78.543816,96.800018,69.155388,32.659523,12.404150,9.246301,8.721498,7.593404,5.880177,6.901663,3.399179,0.427274,0.097521,0.030579,0.098348,0.000000,0.000000,0.265290,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602271.955000,4612705.550000,7649,3405,123.328117,170.162842,162.691757,151.609116,134.443817,120.113243,115.584312,112.435555,110.460350,112.832253,109.237206,118.609108,137.766144,154.146301,166.997543,176.476883,173.997543,159.022339,139.642181,120.278534,108.377701,102.997536,98.427292,71.625641,57.542992,77.518196,95.104973,70.542992,33.501671,13.024812,8.947953,8.384311,6.901668,7.888444,6.640508,4.061990,1.198349,0.143802,0.232232,0.100828,0.243802,0.000000,0.269422,0.000000,1.347934,2.739670,0.000000,1.046281,1.782645,8.862810 -602283.755000,4612705.550000,7708,3405,157.285965,147.872742,147.137207,132.649612,119.104156,108.087624,102.079361,98.368614,96.649605,96.137215,95.451263,107.335556,125.095886,139.806625,151.476044,161.732239,159.104141,147.674393,126.856216,107.600021,97.616547,92.674400,89.327293,63.434731,48.376881,68.674400,87.376877,65.186798,30.509109,11.613240,8.120681,7.238854,6.723979,5.896705,8.278525,2.853726,0.938845,1.318185,0.030579,0.000000,0.034711,0.000000,0.509092,0.976034,0.000000,0.000000,0.000000,3.196694,3.038843,0.000000 -601463.155000,4612695.550000,3605,3455,117.893402,140.752899,129.430588,117.471916,102.810760,92.604149,90.116539,87.918198,88.199188,89.066956,90.827286,101.504974,120.827286,137.108276,150.215714,161.389267,161.653732,150.686783,127.141335,107.083481,97.372742,93.306625,87.827286,60.562828,42.769444,58.364479,73.587616,51.017372,22.274401,8.173566,7.984316,10.419849,9.000840,10.376872,10.584313,8.083483,2.719840,0.948763,0.457853,0.881820,0.288431,0.529753,0.841324,1.787605,19.392565,13.818184,7.676862,8.490911,14.119837,16.185125 -601467.155000,4612695.550000,3625,3455,115.964470,140.055405,133.617371,122.741333,108.468605,99.270256,96.228935,95.617371,94.286797,96.782654,98.088440,109.138023,127.245461,143.262009,157.361176,168.038864,168.336395,157.154572,133.104965,111.460342,100.906624,98.394226,92.518196,65.708282,47.823986,63.129768,75.476875,55.245472,24.726465,10.184314,8.410763,8.418197,8.738855,11.377702,11.578527,6.142157,2.072733,0.534713,0.980167,0.106612,0.369422,0.724794,0.654548,0.513224,10.971075,12.176035,6.969423,7.096696,4.980992,8.635537 -601473.355000,4612695.550000,3656,3455,98.962814,137.986801,133.697525,123.408279,110.061165,100.780174,98.366951,96.391747,95.548775,97.928940,99.689270,110.242989,127.705795,143.920685,156.548782,166.813248,167.523987,155.995056,132.705795,112.788445,102.747116,98.904144,93.763649,65.300842,47.755390,63.623161,76.523979,55.499191,24.052086,9.625637,8.523986,8.071914,7.429765,7.833898,9.604973,4.412404,1.465295,0.288431,0.259505,0.388430,0.052893,0.772728,0.623142,0.358678,3.892562,3.344629,5.461985,6.684299,2.546281,1.747108 -601482.755000,4612695.550000,3703,3455,113.438034,140.521515,133.480179,126.579353,112.339691,104.033905,102.951263,100.711594,101.058701,102.513245,104.207458,115.695053,132.628937,149.579361,162.860367,172.876877,172.223984,162.133087,139.232254,117.901665,106.240517,104.066963,98.009109,69.323158,52.009109,65.463646,81.959526,60.554558,25.506632,10.170265,8.909936,6.600837,8.524808,9.436378,10.565305,5.324802,1.005788,0.427274,0.527273,0.437191,0.665290,0.000000,0.530579,0.253719,0.952893,4.084298,6.280993,3.565290,2.602480,2.786777 -601496.555000,4612695.550000,3772,3455,107.990097,142.119827,141.772720,130.020676,116.053734,105.516548,104.202507,101.847130,100.004158,103.343002,103.888451,114.781006,132.582672,148.780991,161.896698,170.814056,169.640503,159.235535,137.657028,117.152908,106.202492,101.260353,96.590935,67.037209,50.276882,66.764488,82.566139,61.764488,27.417374,9.778530,8.781011,5.555382,7.609931,7.717368,7.474394,2.975213,0.661160,0.173555,0.322315,0.062810,0.000000,0.285124,0.342976,0.000000,4.928100,2.957851,0.900827,4.457852,0.753719,0.000000 -601514.355000,4612695.550000,3861,3455,113.431412,144.058670,144.785950,134.257034,119.695053,108.678528,106.686790,104.695053,103.356209,105.447121,106.265305,117.347946,135.438858,150.860321,163.703339,172.769440,170.686783,161.298370,138.604126,118.562820,107.000839,102.190926,97.190926,68.752907,51.149609,65.695061,83.331421,63.017372,27.971922,9.957870,8.835556,5.082655,6.750426,6.582659,6.027285,2.838022,0.610746,0.254546,0.232232,0.113223,0.000000,0.000000,0.335538,0.396695,1.059504,2.055372,0.000000,1.547108,1.060331,0.000000 -601523.755000,4612695.550000,3908,3455,123.237206,148.217361,147.159515,138.539673,125.101669,113.275223,112.142990,109.300018,108.928116,111.266960,110.828941,122.349602,140.159515,156.853729,168.861984,177.754547,176.490082,165.746292,142.423981,123.217369,112.068611,107.324806,101.390923,72.010765,55.862003,70.746292,86.498360,65.779358,30.357870,11.946299,9.217374,6.724804,8.619021,8.036378,7.947121,4.144634,0.347109,0.473555,0.551241,0.313224,0.093389,0.000000,0.076033,0.000000,0.000000,0.952066,0.000000,0.788430,0.000000,0.000000 -601530.555000,4612695.550000,3942,3455,135.689270,179.681000,161.234726,152.672729,135.094223,122.077698,121.209930,117.309105,117.284309,123.515717,117.614891,128.391754,146.201675,163.953735,176.639679,185.193390,183.028107,167.796707,149.036362,128.152084,116.937202,113.350426,106.672737,78.697540,63.036388,80.201675,92.408287,68.333908,32.598366,14.379358,9.697541,12.089273,9.257040,7.722329,7.227286,4.136372,0.268596,0.621489,0.076860,0.000000,0.209918,0.000000,0.000000,0.000000,0.000000,1.248760,0.000000,0.000000,0.000000,0.000000 -601533.355000,4612695.550000,3956,3455,127.115707,187.190094,162.719025,154.487625,135.396698,121.892578,121.330597,118.388435,117.628105,123.413239,118.603325,129.884308,147.082657,164.190094,177.123978,185.925629,183.867783,169.644638,149.305801,130.338852,117.330597,115.545471,108.909096,78.223160,63.165306,80.760345,95.057869,68.157043,33.669445,13.109110,9.900846,13.498364,9.401668,9.566132,10.871915,4.607445,0.743804,0.384298,0.000000,0.086777,0.090083,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.955000,4612695.550000,3974,3455,114.614899,176.309113,160.433060,151.003311,135.738861,120.590103,119.895889,116.986794,115.895889,121.127289,116.300842,128.441345,145.152069,161.730576,174.565292,184.441330,181.160339,167.590088,147.176865,126.912415,114.722336,112.523987,107.218201,77.094231,61.953739,77.251259,91.499191,67.201675,31.077705,11.692578,9.747126,11.261172,6.464478,8.242163,8.750425,4.783480,0.715704,0.399175,0.000000,0.000000,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.955000,4612695.550000,3999,3455,119.277702,171.690903,158.294205,149.029755,132.971909,118.765305,118.922325,116.211586,116.013237,119.484314,114.608276,127.261169,144.418182,161.566940,173.674377,183.657852,181.872726,166.790085,145.947098,126.013237,115.285965,111.624809,104.963646,76.087624,61.476055,75.831429,89.385139,67.847954,31.682663,12.422332,9.542168,10.584314,6.782660,8.828942,8.455386,3.211577,0.446282,0.047934,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.231405 -601545.955000,4612695.550000,4019,3455,111.956215,170.799194,158.823990,150.237213,135.435547,119.914886,119.509926,116.815712,116.187614,120.336372,116.427284,128.435547,146.014069,162.881851,175.096710,183.989273,181.972733,169.113251,146.658707,127.328110,115.625633,113.088440,106.972740,78.666962,62.501671,77.749603,90.989265,66.890099,32.278530,12.118200,9.724813,9.523982,8.061998,9.166958,8.837205,3.847115,0.439671,0.339670,0.188430,0.056199,0.000000,0.000000,0.000000,0.000000,2.249587,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.355000,4612695.550000,4041,3455,107.743820,168.846283,157.218185,150.656204,132.309097,120.003319,120.019844,117.904144,116.846291,119.689270,116.978523,129.664474,146.242981,162.879349,176.119019,184.953735,182.061172,170.292572,146.441330,126.796707,116.970261,114.036377,108.127281,78.069443,61.937210,78.333900,90.490929,66.226463,30.408283,13.045472,9.829771,10.474395,7.972744,8.059519,8.254558,3.322321,0.366117,0.157852,0.077686,0.052066,0.000000,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.555000,4612695.550000,4072,3455,128.783493,169.152893,160.351242,150.590912,134.946304,121.095055,120.342995,118.863655,117.466957,119.524811,118.252083,130.442169,147.524796,164.524796,176.136368,184.971069,183.086777,170.309921,148.566116,126.318199,115.789276,113.665306,107.500015,78.037209,62.706627,76.665306,91.508278,67.764481,31.392580,11.638862,9.772746,7.890923,8.573569,7.847123,7.815716,1.799178,0.733059,0.000000,0.009091,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.155000,4612695.550000,4105,3455,100.999176,163.883469,158.552902,147.875214,133.131409,121.751251,120.726456,116.916542,116.379349,117.428940,117.792572,129.833893,147.495041,164.354553,175.866943,184.825623,183.445465,170.883469,147.660339,126.478516,115.792572,112.205795,108.081833,77.908279,63.503330,76.098358,91.924805,67.123161,31.139690,12.274397,9.825638,8.444644,7.280180,7.807452,8.724808,2.818188,0.378514,0.106612,0.161984,0.046281,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.355000,4612695.550000,4121,3455,107.079353,162.368607,159.327286,149.814896,133.880997,121.880997,119.963638,117.608269,116.476036,118.880997,117.459511,129.409927,147.674393,164.046295,175.418198,185.029770,183.153732,170.219849,147.492569,127.211578,115.583473,112.269432,106.963646,77.872749,62.236382,76.525642,89.112404,65.500847,30.310762,12.405802,9.723986,8.311584,6.438858,9.081006,8.649600,3.388436,0.333885,0.147108,0.185951,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.035537,0.000000,0.000000 -601572.755000,4612695.550000,4153,3455,113.936378,167.936371,161.680176,148.258682,133.589264,122.142990,120.729767,118.465302,116.746292,118.828941,118.093407,129.597534,148.481827,163.886780,175.804138,185.820663,183.746292,171.713226,148.142975,126.911583,115.903320,113.283485,107.209106,78.597534,63.465313,77.845467,92.126457,68.027290,32.159523,12.806629,9.746301,8.361172,6.878526,8.387618,7.252905,4.357861,0.551241,0.661985,0.090083,0.041322,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612695.550000,4166,3455,105.696716,161.911575,159.399185,147.151260,132.308273,121.258690,120.895058,117.027290,115.903313,118.151253,117.291748,128.861984,147.547958,163.366119,175.977707,184.390930,182.556213,170.019028,148.283493,126.382660,115.457039,112.622322,105.936371,77.605797,62.068615,74.853745,90.035545,67.746307,30.225639,11.848778,9.630597,7.109106,7.112412,6.747121,9.223152,3.108270,1.059506,0.317356,0.163637,0.000000,0.000000,0.099174,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.155000,4612695.550000,4185,3455,103.324806,163.290924,160.968597,147.885956,134.051254,122.332245,120.869431,118.505798,117.233070,119.051247,119.158684,130.836380,148.671082,164.323975,175.456192,185.522308,184.009918,171.894211,148.208267,127.175217,116.299187,113.076042,107.381828,79.770256,63.456215,75.737198,90.241341,66.877701,30.001675,11.514068,9.762002,6.362824,6.903321,8.841338,7.888444,3.037196,0.436365,0.111571,0.154546,0.061157,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.355000,4612695.550000,4211,3455,107.691765,159.609116,162.055405,147.939697,132.757874,122.906631,121.559525,118.633904,118.179359,119.964478,119.377701,130.774399,149.195892,165.063660,176.369446,185.468628,185.319839,172.138031,148.534714,126.914894,117.220680,113.410759,107.518196,79.319855,63.658695,77.609116,92.138039,66.981010,31.213242,13.173571,9.774399,7.800841,8.304149,8.600842,9.464478,3.571082,0.317357,0.161158,0.228100,0.051240,0.147934,0.185124,0.000000,0.000000,2.398347,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.955000,4612695.550000,4229,3455,114.938866,157.285126,157.227280,148.533051,132.698364,121.599182,119.202484,116.830589,115.863647,117.557861,116.847115,128.466965,147.276855,163.301651,174.623978,183.979355,182.169434,170.690079,146.260330,125.838852,114.475212,111.921501,105.045464,76.376060,61.888451,75.376060,89.078522,66.318199,29.351257,11.368612,9.549606,7.128112,5.666957,6.056211,7.012410,2.572732,0.174381,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601594.955000,4612695.550000,4264,3455,94.393402,156.431427,157.762009,146.745483,131.596710,122.629768,120.695885,117.059525,116.447952,117.894234,119.381836,129.274384,148.183502,163.753738,175.596725,183.861176,182.464493,170.067795,146.315735,126.266136,114.555389,111.852913,106.472733,78.200020,60.902496,76.861176,90.481010,66.381836,28.914068,10.776875,9.679358,8.308278,6.144643,6.300014,6.758692,1.900005,0.490084,0.586778,0.056199,0.160331,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.114876,0.000000 -601600.555000,4612695.550000,4292,3455,103.953735,161.331421,160.356216,148.058685,133.984314,122.802498,120.364487,118.934731,119.017380,118.901672,119.686798,130.628937,148.984314,164.306625,176.620667,185.232239,184.430588,171.976044,148.711578,126.860344,116.422333,112.521507,107.463646,78.827286,62.926468,78.430588,91.670258,68.372749,31.769440,11.588448,9.769441,6.300840,7.171091,8.188444,7.666129,3.044634,0.463637,0.072727,0.180166,0.146281,0.014876,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.755000,4612695.550000,4308,3455,106.899185,159.965302,160.800003,148.436371,133.378525,123.907455,121.742165,119.742165,118.857864,119.262825,120.221504,132.271088,149.494217,165.138855,177.519012,186.477692,183.791748,172.378525,149.238022,127.634727,115.618195,113.023155,106.527290,79.791748,63.081013,78.188454,91.560349,68.031425,31.461174,12.935556,9.684317,7.471916,6.890924,7.915717,8.181005,3.276866,0.820663,0.080992,0.014050,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.755000,4612695.550000,4338,3455,100.392570,159.223984,160.761169,148.339676,134.405792,122.314888,122.405800,119.298363,118.728111,118.959518,120.058693,131.488449,149.017365,165.356216,177.595886,185.785965,184.033890,171.852081,148.843811,126.976044,116.199188,112.893402,106.918198,78.240509,63.017376,77.670258,91.711586,67.174400,30.364481,12.008283,9.719853,7.477699,6.558692,7.635552,7.271915,2.986783,0.636365,0.000000,0.062810,0.087604,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612695.550000,4360,3455,103.647942,155.116547,156.909927,146.819031,133.257050,122.290100,120.595886,118.777710,117.017380,118.298370,119.397545,129.587631,148.157867,164.058685,175.075226,185.455383,183.306625,170.513229,147.356216,126.835556,115.546303,111.240517,106.009109,76.934731,61.223984,76.703323,90.496712,66.157867,31.323162,10.307456,9.637209,5.599187,5.422328,6.920674,6.219021,2.631410,0.372729,0.036364,0.059504,0.000000,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.555000,4612695.550000,4382,3455,108.843811,154.096710,158.171082,146.898361,133.650421,122.790916,120.724800,119.187614,117.989265,118.567780,119.898354,130.873566,149.336380,164.733063,177.410751,185.162827,183.261993,171.121490,147.799179,126.468605,116.385963,112.038849,106.609100,79.228935,62.460350,77.154556,93.270256,69.171089,31.923161,11.569438,9.691754,6.972741,8.095057,7.259519,7.154559,3.427280,0.492563,0.084298,0.238017,0.000000,0.000000,0.011570,0.000000,0.000000,1.213223,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.955000,4612695.550000,4399,3455,103.527290,155.112396,157.525635,147.484299,135.980179,124.657860,121.566956,119.352081,118.211586,118.996704,119.451256,130.442978,148.550415,165.029770,176.145462,186.128922,184.203308,172.533890,148.285950,128.004959,115.492577,113.087616,105.872742,78.955383,62.492580,77.996704,92.509102,69.368607,33.236385,12.593406,9.624812,6.499187,8.340511,6.334724,7.830593,2.976040,0.247935,0.204959,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.755000,4612695.550000,4418,3455,110.733078,155.745468,160.026459,147.745483,134.200012,125.158699,122.009933,119.968613,119.869438,120.084312,120.183487,131.472748,148.563660,165.910736,177.464462,185.530579,184.489243,172.902466,148.877716,127.836380,116.530594,113.489273,106.927292,80.290924,61.927292,78.646301,93.133904,68.919029,32.819855,13.366135,9.720681,5.728112,7.495883,7.947123,8.341338,3.109924,0.583473,0.165290,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.955000,4612695.550000,4454,3455,103.119850,152.673553,160.095047,147.508270,133.657043,124.326462,121.772751,119.020683,118.210762,120.062004,118.954567,130.053726,148.466949,164.871902,176.392563,186.202484,184.541321,171.053726,148.574387,127.466949,114.946304,111.095062,107.136391,77.524818,61.904980,76.863663,93.053741,68.814072,29.690102,12.332248,9.739689,5.719848,6.566131,5.866954,8.178526,1.751244,0.684299,0.102480,0.110744,0.057025,0.080165,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.928926,0.000000,0.000000 -601636.155000,4612695.550000,4470,3455,95.424805,154.998352,160.080994,150.064468,135.502502,125.047951,123.328941,120.866127,120.006622,122.006622,122.081009,132.576874,151.064468,167.089264,179.502487,187.097534,185.626450,174.469421,149.676041,129.857864,118.006622,113.304146,107.890923,80.213234,65.056213,79.130592,94.651253,70.122337,35.105808,15.100019,9.808283,6.788444,8.227288,8.462825,8.228113,4.842984,1.074383,0.381819,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.155000,4612695.550000,4495,3455,90.881004,153.970261,159.309113,150.358704,135.523987,124.780182,123.449608,119.962006,119.325638,121.201675,120.276054,130.846298,150.639694,166.226471,178.920700,187.416550,184.226486,173.143814,150.466141,127.962006,117.052910,113.614899,106.945473,79.400017,62.565308,78.218201,93.672745,71.160347,31.457869,13.602498,9.722333,7.554560,5.817372,7.043816,6.646296,3.306617,0.447935,0.000000,0.000000,0.053719,0.000000,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.155000,4612695.550000,4510,3455,96.571091,147.474396,159.937210,149.441345,134.242981,126.441322,121.557030,119.201653,118.846283,120.449593,120.970253,131.077698,150.342163,165.970261,178.391754,185.449600,185.557037,173.829773,149.548782,127.920670,117.019836,112.548767,108.036369,78.730591,61.995060,77.697533,94.672737,70.697540,34.193409,15.228118,9.821507,6.990096,7.987619,7.452080,7.847122,3.187610,0.481820,0.144629,0.028099,0.000000,0.000000,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.155000,4612695.550000,4530,3455,108.836372,151.838013,157.796692,148.333893,134.606628,124.788445,121.251251,119.019844,118.441330,119.457863,119.928940,129.961990,149.019836,163.730576,176.127274,185.747116,184.292572,172.424789,149.160339,126.871086,115.077698,111.573563,105.763649,78.077698,60.978531,77.424812,93.829765,70.821510,31.532251,12.058696,9.614896,5.475219,7.926462,7.020675,7.411584,3.342155,0.434712,0.279339,0.355373,0.177687,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.555000,4612695.550000,4552,3455,89.147133,151.841324,158.047958,148.519012,136.725632,124.824814,123.155396,120.337212,120.031425,122.081017,120.469444,131.709106,150.047958,165.692581,177.998367,186.114075,185.081009,173.461182,149.940521,127.213234,115.965309,113.014900,106.072739,78.328941,62.593410,77.816544,93.874397,70.957039,31.987621,12.556216,9.642995,6.057863,6.241336,6.986792,8.860345,2.516535,0.403307,0.509918,0.000000,0.000000,0.029752,0.024794,0.000000,0.000000,0.000000,0.000000,0.995868,0.000000,0.000000,0.000000 -601658.955000,4612695.550000,4584,3455,101.073570,154.668610,159.866974,148.528122,134.197540,125.263657,121.776054,119.346298,119.842171,119.321510,120.338036,131.346298,149.569443,165.147964,177.974396,185.197525,184.065308,173.238876,148.817368,127.660347,115.073570,112.701675,105.354568,77.668617,60.652084,77.990929,94.065308,69.957870,31.602499,12.589274,9.577705,5.633895,5.926460,8.679355,6.171087,3.080173,0.491737,0.083471,0.037190,0.000000,0.000000,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.133058,0.000000 -601667.555000,4612695.550000,4627,3455,103.371094,153.339676,159.422333,149.810760,136.868622,126.248772,123.207451,120.223976,119.397537,121.719849,121.471916,131.513229,151.009109,167.091751,179.405792,187.736374,186.397537,174.810760,150.802490,127.372742,116.562820,113.000839,107.736374,78.653732,61.695061,78.290100,94.612419,72.314896,32.645470,13.534730,9.794235,6.439682,7.386794,7.403320,7.652907,2.969427,0.518183,0.052066,0.185124,0.000000,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.938017,0.000000,0.000000 -601670.355000,4612695.550000,4641,3455,116.333900,159.838043,161.895889,150.408279,136.714066,125.705795,122.672737,120.433067,119.466125,121.995056,121.085960,131.672745,150.044647,166.333908,178.738846,187.714035,186.118988,173.937210,151.185150,129.201660,116.284309,112.598366,106.672745,78.325638,61.391754,77.226463,95.094223,70.755394,33.069443,12.017373,9.697540,5.364475,6.963651,7.379354,6.355384,2.442154,0.182645,0.359505,0.092562,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.181818,0.000000 -601673.555000,4612695.550000,4657,3455,106.309937,159.194229,157.979355,148.318192,134.243820,124.095055,120.781006,119.070267,117.764481,120.491753,120.152908,131.028946,149.136383,165.508286,178.004150,186.904968,184.334732,174.342987,149.400848,128.045471,115.863655,112.020668,106.409096,78.004150,61.458698,75.615730,93.367783,71.334732,31.557869,12.466959,9.673573,5.966127,5.357038,8.336376,7.066955,2.213228,1.052895,0.109918,0.000000,0.057851,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.035537,0.000000 -601678.155000,4612695.550000,4680,3455,115.028931,155.838043,158.738861,149.681015,136.565308,125.639679,122.639679,120.895882,119.350426,121.342163,121.532242,131.358688,150.309113,167.350433,180.044647,187.846298,186.061172,174.383484,150.879364,128.358688,116.201668,111.804970,105.763649,77.961998,63.226467,77.614891,94.408279,70.854553,32.573574,12.079358,9.614896,5.452078,8.444643,8.789271,6.102492,2.822320,1.323970,0.333059,0.000000,0.000000,0.017356,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.102479,0.000000 -601682.155000,4612695.550000,4700,3455,112.862000,158.614059,159.465302,151.878525,136.258698,127.167786,122.713234,122.696709,120.523155,122.556213,122.514893,133.366135,151.539673,167.671906,180.374390,188.010757,187.200836,176.498352,151.845459,129.498367,117.250427,113.093407,108.936378,80.266960,62.233898,78.357864,95.275223,72.647125,33.324814,14.079356,9.903324,5.921500,7.205801,8.207453,8.147947,3.157858,0.590911,0.195868,0.028926,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.955000,4612695.550000,4724,3455,112.186790,163.203323,160.459518,150.682663,136.542160,125.409927,121.707451,119.765305,119.112411,121.302490,121.376869,131.360336,149.600006,165.856216,177.806625,187.641342,185.269440,173.707458,150.112411,126.881004,115.153732,112.029762,105.872742,77.442993,61.533905,76.236382,92.922333,71.558701,31.269440,12.549603,9.624812,5.235546,5.970261,7.357038,8.890923,2.598353,0.406613,0.273555,0.325620,0.000000,0.000000,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.264463,0.000000 -601693.955000,4612695.550000,4759,3455,117.987625,162.202499,160.508286,152.706635,139.326462,126.781006,123.227287,121.789276,120.615715,123.929771,122.128113,133.789276,151.119858,167.657043,179.954559,189.880188,187.665283,175.466965,150.500015,130.681839,116.871918,113.037216,106.590935,79.830597,61.557869,79.309944,95.557869,71.599197,32.243820,12.846299,9.690102,3.803316,8.100842,6.732244,7.147121,3.072732,0.314051,0.050413,0.558678,0.324794,0.004959,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.355000,4612695.550000,4796,3455,112.957039,163.808273,165.535538,154.915710,141.023163,128.866135,125.502495,123.907455,122.494232,124.287621,123.998360,133.783493,152.444641,169.312408,182.609924,190.229752,188.676041,176.849594,154.089264,131.485977,118.874397,114.899185,108.618195,80.411591,63.477703,78.932243,95.155388,72.064484,31.940514,15.101671,9.874399,4.013234,7.890100,8.452909,8.064479,2.308270,0.402480,0.418183,0.095041,0.238017,0.000000,0.012397,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612695.550000,4813,3455,106.537209,169.710770,161.809952,154.826462,138.413239,126.876038,124.487610,123.157036,121.685959,123.223152,123.000008,133.504135,150.396713,168.851273,180.752106,189.380203,187.628128,175.843002,152.685974,130.950424,116.809929,113.305794,108.454559,78.776878,62.611588,76.247940,95.793404,72.190094,31.363655,13.554563,9.859525,4.544640,7.101668,5.828938,5.245466,3.612402,0.403307,0.056199,0.000000,0.000000,0.012397,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.155000,4612695.550000,4835,3455,136.709930,170.891754,164.453735,155.742996,139.536377,127.081841,125.668617,123.552910,121.445473,125.255394,122.883492,133.420685,150.825638,168.412415,181.081833,189.660355,188.635559,176.164490,152.098373,130.470261,116.577705,111.643822,108.536385,78.767792,61.858692,77.544647,94.742996,71.197540,31.916548,12.045470,9.866961,3.667778,7.195056,5.668606,5.425632,2.366121,0.335538,0.110744,0.200000,0.006612,0.000000,0.000000,0.000000,0.003306,2.348761,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.155000,4612695.550000,4865,3455,110.174393,168.942993,166.182663,154.835556,139.240509,127.562820,126.546295,122.893402,121.083481,123.339684,122.356209,134.025635,153.066956,169.232239,181.802490,190.207458,188.488449,175.223984,152.133072,130.364471,119.364479,114.538033,109.645470,81.496704,63.819031,80.265305,96.075218,72.504974,32.397541,14.266961,9.967788,5.988441,8.424808,6.303317,9.149602,2.379347,0.858680,0.148761,0.169422,0.042975,0.012397,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.755000,4612695.550000,4878,3455,107.123154,171.073578,163.751266,154.106628,137.742996,125.759514,124.189270,121.090096,120.404144,121.197533,122.172737,132.610748,152.040512,168.147949,179.536377,188.371094,185.924820,173.701675,148.701675,129.313232,116.875221,113.825630,107.263649,78.916550,63.602497,79.172745,95.990929,69.015724,32.222332,14.381009,9.751259,7.530590,6.328111,6.938853,6.991746,3.534719,0.678514,0.645455,0.238017,0.071075,0.132232,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612695.550000,4899,3455,115.779358,167.556198,162.002487,151.812408,136.250427,124.713234,124.729774,121.283485,120.440514,120.787621,120.209106,132.407455,151.837204,167.250427,177.911575,186.870255,185.837204,172.209091,148.531418,127.804153,116.324814,113.919846,106.663651,78.630600,62.432251,78.506638,95.762833,69.903328,31.862001,13.848778,9.696713,7.399186,7.214062,7.309930,7.282656,3.338025,0.433885,0.328927,0.327274,0.146281,0.000000,0.000000,0.000000,0.000000,3.815703,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.555000,4612695.550000,4922,3455,104.296707,168.751236,164.495041,152.577682,136.627274,125.280174,123.982658,120.668610,118.982658,120.709930,120.784309,132.230591,151.205795,166.982651,179.007446,186.982651,185.585953,172.495041,148.610748,127.693398,116.354553,113.090096,106.536377,78.296715,63.197540,76.478531,94.015724,70.321510,30.875223,11.957870,9.685143,7.648775,6.400838,7.560345,6.671085,3.372736,0.219836,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.951240,0.952066,0.000000,0.000000 -601729.155000,4612695.550000,4935,3455,130.315720,169.290924,166.323975,153.348770,138.233063,125.481010,123.943810,122.216545,120.671089,121.604973,121.059525,132.844635,151.811584,168.018188,179.216537,187.654556,185.357040,173.109100,147.993393,128.447937,116.200020,113.076050,108.200020,78.357033,62.249603,78.530586,95.687614,67.894234,33.158699,10.600842,9.836383,7.393401,7.623982,6.907450,7.476047,3.012404,0.399175,0.438017,0.050413,0.297521,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.955000,4612695.550000,4949,3455,106.244644,169.401672,167.029770,154.971909,137.955383,126.418198,125.409927,122.509102,120.616539,122.120674,120.773567,132.137207,150.823151,167.525635,180.178528,189.971909,186.492569,172.600006,150.393402,128.352081,116.319023,112.889267,107.600014,77.649612,63.104153,77.418205,94.385139,70.013237,30.955391,12.168612,9.781837,6.271914,6.335549,7.850426,7.418195,1.607446,0.276034,0.308266,0.228100,0.054546,0.000000,0.000000,0.000000,0.000000,2.596694,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.955000,4612695.550000,4974,3455,107.823975,172.767776,167.197540,156.329773,140.495056,127.280174,126.941330,123.577698,123.106621,124.594223,122.371086,134.164474,153.387619,169.709930,181.023987,190.164459,188.486786,174.338043,150.701675,129.693405,118.461998,115.362823,109.354553,79.916542,64.470268,78.147942,95.073563,70.643822,33.181015,14.448778,9.941340,9.258691,7.570261,8.406626,8.422327,3.733065,0.780994,0.358678,0.085951,0.306612,0.000000,0.156199,0.000000,0.103306,0.000000,0.000000,1.084298,0.000000,0.000000,0.000000 -601739.955000,4612695.550000,4989,3455,111.971916,172.236374,165.492569,156.864471,142.004974,127.798363,126.699188,124.285965,123.285965,125.409927,123.509102,136.145462,154.236374,170.434723,182.401672,192.484314,189.517365,175.558685,151.996704,129.790100,118.492577,116.087616,110.872742,81.550423,65.195061,80.236374,96.732239,71.790092,33.054565,14.135555,10.079358,9.002496,8.234726,7.932245,8.837203,4.086786,0.785125,0.073554,0.236365,0.041322,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601743.355000,4612695.550000,5006,3455,111.179352,181.237198,167.700012,157.906616,142.311584,127.270256,127.394226,124.443810,123.576042,126.121498,123.873566,134.840500,153.600830,171.328110,182.253723,192.609100,189.807449,175.576050,151.865295,131.179352,118.881828,116.278519,111.063644,81.319855,65.212418,79.361168,95.733086,70.658699,32.724815,13.605803,10.096713,9.696709,7.178525,7.911584,8.376873,2.995050,0.709920,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.355000,4612695.550000,5026,3455,124.909927,179.579330,168.124786,159.951233,140.909927,127.199188,127.777702,124.571091,123.389267,126.430588,124.100014,136.000839,153.033890,171.868591,183.000824,192.852066,190.257019,175.645447,152.430588,131.066956,119.323151,116.794228,110.372742,80.579369,65.347954,81.157883,96.728111,71.100029,33.381008,12.930596,10.033903,10.818197,7.719850,8.457037,8.781831,4.119843,0.571902,0.000000,0.090909,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.755000,4612695.550000,5063,3455,133.625641,184.270264,168.947937,158.799179,142.328125,127.898361,127.840515,124.080185,123.361176,126.245476,122.939690,133.799194,152.642151,169.658691,182.237198,191.088440,188.650421,173.443817,150.675217,128.881836,117.741341,113.262001,108.790924,79.055389,63.534729,79.171089,93.113243,69.319855,30.154566,11.594233,9.890102,9.371091,6.761169,6.560343,6.889268,3.952074,0.457026,0.038843,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,1.203306,0.000000,0.000000,0.000000,0.000000 -601758.755000,4612695.550000,5083,3455,137.020676,184.880173,173.764465,161.475204,143.747955,128.285141,128.830597,125.566132,123.847122,127.805801,124.442162,136.657043,154.095047,171.392563,183.285126,193.260330,189.623962,173.995865,152.070251,130.888443,118.458694,115.533073,109.772743,79.995880,65.078529,81.590927,95.417374,70.764481,34.062004,11.376877,9.979358,11.096708,6.264474,7.690921,6.161169,2.847115,0.510745,0.141323,0.028099,0.117356,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601765.755000,4612695.550000,5118,3455,143.028946,192.615723,172.466949,165.169418,146.268616,132.590927,131.020660,129.045456,127.516541,133.847122,127.252075,138.706604,154.648773,174.780991,186.177689,195.871918,193.045471,175.508270,153.458694,132.037186,121.929764,118.475212,113.863647,82.450432,67.880180,83.855385,96.574387,69.938034,33.657043,14.869439,10.351259,10.823156,8.468609,7.967782,10.256212,5.452905,0.468597,0.109091,0.235538,0.114876,0.000000,0.000000,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,1.376033,0.000000 -601768.755000,4612695.550000,5133,3455,131.076874,197.192566,174.630585,165.506622,145.407440,130.738037,128.002487,125.994225,125.060333,131.250427,125.622322,138.539673,153.423981,172.217361,184.754547,195.118195,191.002487,173.936371,151.109924,130.878525,118.300003,115.787613,111.663643,80.448769,65.614075,82.622330,97.407448,67.581017,33.349609,11.246299,10.151258,11.342991,5.945466,7.652905,6.834723,3.240504,0.237191,0.169422,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.155000,4612695.550000,5155,3455,137.006638,177.155380,171.370255,159.527283,142.171921,129.932251,128.444641,126.312408,125.386795,129.320679,125.097534,137.477707,154.039673,171.634720,184.378525,192.560333,190.031418,175.907440,152.601654,130.981827,119.841339,116.345467,112.618195,82.725632,66.552086,82.444641,97.163651,71.130600,33.775227,12.600844,10.238035,10.189269,7.381832,7.160343,7.801666,3.523976,0.461985,0.495868,0.027273,0.000000,0.140496,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.555000,4612695.550000,5192,3455,97.331421,151.480179,160.802475,152.066940,136.389267,126.695053,124.207451,121.207451,120.703316,121.422325,122.314888,133.339676,152.422318,167.571075,180.108261,187.769424,187.719833,175.761154,150.777679,128.868622,118.422325,114.554558,109.190926,80.728104,65.546295,79.893394,94.521500,70.521500,33.017376,13.203321,9.926464,6.363650,6.552904,6.959516,7.187616,2.719842,0.310745,0.062810,0.000000,0.028926,0.000000,0.142975,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.555000,4612695.550000,5212,3455,107.896706,161.549622,161.491760,150.665329,137.442184,127.673561,124.243813,122.880173,121.971085,122.946289,122.747940,134.144638,153.293411,169.078552,179.987625,189.384308,189.235550,175.549606,151.781006,130.533066,119.739677,115.557861,110.227280,83.037201,66.681831,82.483490,96.871910,71.243820,33.557873,14.807455,10.020680,7.624807,7.481005,8.479353,8.146294,3.354554,0.384298,0.195042,0.000000,0.129752,0.000000,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.155000,4612695.550000,5230,3455,97.294228,158.013214,163.988403,153.071075,138.525635,128.641327,125.641327,124.831413,122.566948,124.128929,126.128929,135.955368,155.004959,170.715683,181.104126,191.062820,190.517365,177.847931,153.269424,131.914047,119.707443,117.657860,112.963638,85.071098,68.335556,82.666130,97.252899,73.038040,33.922337,14.857042,10.269441,7.307450,7.533070,7.972740,7.170261,3.835546,0.567771,0.890084,0.047108,0.271075,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.116529,3.847108,0.000000 -601791.155000,4612695.550000,5245,3455,100.285965,161.277695,164.748779,154.641342,138.715714,129.467789,126.261169,123.806625,123.186790,124.401665,125.310760,135.393402,154.971909,170.864471,182.500839,190.732239,189.352081,177.823151,153.690918,132.046295,119.409927,117.550423,112.781830,85.046295,68.368614,82.261169,97.897537,71.633080,33.492584,13.703323,10.252912,6.201664,8.558692,7.995880,8.890923,2.400007,0.733886,0.306612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.155000,4612695.550000,5265,3455,102.294228,158.046295,162.823151,151.814896,139.575211,128.277695,125.641335,123.996704,123.368607,123.881004,124.418198,135.732239,155.302490,171.195053,182.575211,192.252899,190.244644,177.161987,153.137207,131.195053,119.434723,117.376869,112.781830,83.566956,67.459526,82.740509,96.550423,71.120674,32.211590,13.168612,10.252912,4.804968,6.347119,6.977697,8.155385,2.996702,0.567770,0.211571,0.041322,0.121488,0.000000,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601798.555000,4612695.550000,5282,3455,108.538849,151.960342,164.150421,153.125626,140.472733,130.447937,126.770256,125.547119,126.092575,127.266129,126.761993,137.464478,156.447937,172.191742,184.704147,193.522324,190.919022,178.844635,155.340500,132.348770,122.629761,117.332245,115.290916,86.233070,68.654556,84.935547,98.307449,71.762001,34.704155,15.540514,10.481010,6.157037,8.629766,7.888443,8.482658,4.719019,0.684299,0.126447,0.183471,0.148761,0.000000,0.138843,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601801.955000,4612695.550000,5299,3455,110.331429,154.611572,165.462814,157.429749,143.090912,131.099182,128.305786,125.793396,126.280998,128.512405,127.859512,139.933884,158.752060,174.892563,186.743805,196.090912,192.818176,180.553726,157.008270,134.966949,123.685959,120.719017,114.727280,86.272751,70.900848,84.148781,99.115715,71.628113,36.545475,15.695062,10.429771,7.601665,9.626462,8.557863,10.620677,4.568604,1.427276,0.711572,0.375208,0.665290,0.000000,0.122315,0.000000,0.000000,0.000000,0.000000,0.000000,2.133885,0.000000,0.000000 -601804.955000,4612695.550000,5314,3455,96.319847,156.751266,159.408264,152.523987,139.119019,133.606628,131.424789,128.846298,128.391754,129.391739,129.226456,140.152069,159.300827,175.052902,189.152069,197.259506,194.986786,182.862808,159.036362,136.061157,125.400009,121.391739,117.309097,89.309105,70.953735,86.284309,98.854553,72.507446,33.821510,13.666959,10.664481,6.961168,7.179351,7.205796,5.307450,3.754553,0.557853,0.338844,0.547935,0.000000,0.325620,0.077686,0.309091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.155000,4612695.550000,5335,3455,109.472748,158.051254,164.406601,154.117371,140.076050,130.117371,126.894226,125.704140,125.596703,127.076042,127.646294,138.778519,156.051254,173.968628,186.381851,193.976868,191.059509,179.125641,153.927277,133.695892,121.993401,119.613235,113.745476,86.538864,69.522331,84.638023,97.894234,72.381836,34.059521,14.975224,10.340514,6.138854,7.553731,8.661997,8.546295,3.555381,1.039671,0.167769,0.382646,0.000000,0.000000,0.472728,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.955000,4612695.550000,5354,3455,104.070267,158.582657,161.880188,153.458694,138.086792,130.657043,127.615715,125.648773,124.979355,127.070267,127.648773,138.764481,157.210754,173.433899,185.566132,194.086792,191.400848,180.574402,154.830597,132.541336,122.690102,118.888443,114.318199,86.698364,68.913239,84.491753,98.847122,72.607452,34.797543,14.433076,10.392581,8.758690,8.014889,8.038857,8.800014,4.893395,0.923970,1.342977,0.056199,0.000000,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.555000,4612695.550000,5377,3455,103.342987,155.913239,161.491745,152.241333,137.251236,131.036362,129.201660,127.300827,126.639671,129.588425,130.538849,140.671082,159.563644,176.216537,187.722336,197.333908,194.681015,183.895889,159.523972,136.821487,126.606613,122.672729,117.854546,90.201653,72.009926,85.061165,99.284302,73.077698,35.150433,14.294232,10.714068,6.509928,9.433071,7.428936,9.609102,5.586784,3.227276,2.026448,2.402482,1.497521,1.154546,1.146282,0.318182,0.609092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.955000,4612695.550000,5409,3455,92.994232,160.217361,163.060333,152.266983,139.638870,129.432251,124.696709,124.076874,124.795883,126.465302,126.572739,136.853745,155.895081,174.019012,184.795883,193.085159,192.068634,180.638870,155.192596,132.969437,123.407455,118.729767,115.027290,86.746292,69.242165,84.167786,98.440514,71.539680,34.457047,13.602499,10.457046,6.106622,5.961998,7.175220,8.333898,3.561991,0.746283,0.208265,0.117356,0.189257,0.055372,0.000000,0.000000,0.305786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.555000,4612695.550000,5437,3455,111.667786,164.816528,163.039673,155.361984,141.948761,132.320679,127.899185,127.014893,125.849602,128.411591,129.601669,138.990082,157.601654,173.411575,188.122314,195.361984,193.271088,181.874390,157.766953,135.841339,124.973572,120.882660,116.436378,87.287621,69.502495,85.345467,99.039680,74.816544,34.841335,14.616548,10.585142,6.685964,6.592576,9.130593,6.384309,2.656207,0.511572,0.904960,0.151240,0.054546,0.000000,0.000000,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.555000,4612695.550000,5452,3455,93.723160,159.238861,164.784317,153.338043,141.371094,130.833908,128.296707,127.503319,127.453735,128.007462,128.486801,139.057037,159.032257,174.478531,187.189270,194.271927,194.528122,182.230591,157.519852,134.949600,122.941345,120.833893,115.081833,87.701675,68.643822,86.329773,100.461998,73.800842,33.569443,14.464480,10.462004,6.726458,8.893403,7.515717,9.047947,2.366948,0.315704,0.068595,0.105785,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.155000,4612695.550000,5475,3455,122.338852,159.735550,165.388458,154.917374,138.454559,129.272736,127.793396,125.512405,125.553726,128.338852,127.677696,139.876053,156.223160,174.190109,186.165298,194.388443,192.917374,181.570267,157.082657,134.917374,123.454552,118.768600,115.636375,87.561989,71.000008,83.752075,98.677696,73.380173,34.297543,14.199190,10.512416,5.774391,6.509931,7.040507,8.067782,3.347116,0.876862,0.249587,0.112397,0.052066,0.000000,0.000000,0.007438,0.052893,1.274380,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.755000,4612695.550000,5488,3455,115.206619,166.082642,165.561981,155.115707,141.033051,130.206619,128.066116,126.925629,125.743813,129.214890,129.000015,139.842972,157.363632,174.239670,187.066116,196.347107,193.900833,182.909088,157.677689,135.173569,123.925629,119.975212,116.363647,87.776878,70.842995,84.636383,98.421501,73.247948,34.743820,13.322331,10.578531,4.400837,7.685965,5.802491,7.283483,3.257859,0.592564,0.265290,0.300827,0.052066,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601842.755000,4612695.550000,5503,3455,127.928940,164.581833,169.672745,158.292587,144.127289,132.135544,129.375214,128.664474,128.689270,130.143814,131.738861,141.681015,159.449600,177.028122,189.689270,197.970261,196.490921,184.209930,159.400024,137.094238,125.780174,121.631416,116.581833,88.920670,71.540504,86.804970,100.647942,74.152077,35.631424,14.964480,10.598367,5.647944,7.465303,7.148772,8.888444,4.177693,0.952068,0.437191,0.222315,0.000000,0.000000,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.955000,4612695.550000,5524,3455,100.814896,165.164490,160.519852,153.156219,142.338043,129.569427,127.511581,126.387611,125.098358,128.048767,128.255386,138.933075,156.916550,173.982666,185.453735,194.073578,192.891754,181.412415,157.123154,134.817368,122.238853,119.057037,114.627281,87.280174,70.007454,84.652077,97.784309,72.503326,34.057045,13.778532,10.420681,4.648771,6.854559,6.004971,5.628112,4.038026,0.562811,0.292563,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601853.155000,4612695.550000,5555,3455,111.745476,163.680176,166.952896,156.680176,142.415710,131.878525,128.886795,128.035553,127.085136,129.845474,129.630600,139.572739,157.961166,175.349594,187.052078,195.994217,194.828934,184.159515,159.184311,137.027283,124.622330,121.895058,117.118195,87.506638,70.547958,85.853745,99.093414,74.200851,33.944645,13.309935,10.647127,4.967779,7.085137,7.552079,6.436376,2.772734,1.251242,0.187604,0.000000,0.177686,0.503307,0.095041,0.002479,0.057025,0.000000,0.000000,0.000000,1.050413,0.000000,0.000000 -601856.755000,4612695.550000,5573,3455,109.608284,164.087616,166.897537,156.476044,140.393402,130.203323,128.087616,126.500839,124.847946,128.732239,128.038025,137.509109,157.203323,173.517365,187.393402,194.608276,193.988449,179.963654,157.616547,135.872742,123.765305,121.161995,114.872742,87.352081,69.707451,85.525635,98.409927,73.343826,35.814892,13.570266,10.442994,4.836374,6.322328,4.775216,6.420674,2.728107,0.597522,0.421489,0.532233,0.000000,0.000000,0.000000,0.007438,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.555000,4612695.550000,5587,3455,115.845474,171.871918,172.012405,160.342987,144.747955,134.475220,131.665298,131.119858,130.202499,133.805801,132.673569,142.086792,161.285141,177.880188,190.450424,198.326462,197.781006,186.475220,161.847122,140.623978,127.781006,123.367783,120.227287,89.921501,74.219025,87.789276,102.491760,77.376053,37.136383,17.114069,10.929771,5.609927,9.457869,8.893402,9.855387,3.233066,1.571078,0.314877,0.136365,0.000000,0.028926,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.555000,4612695.550000,5602,3455,108.169441,167.873581,167.014069,155.584320,141.262009,130.344635,128.609100,127.402496,126.410759,129.146286,127.881828,138.245483,157.146301,174.344650,186.038864,194.625641,192.881851,182.584320,158.468628,137.394241,124.303314,121.129761,115.881836,88.295059,71.096710,86.088448,99.766136,75.774391,34.262001,12.911588,10.534730,4.315711,7.339684,6.374392,7.718195,2.832238,0.776862,0.227273,0.050413,0.071075,0.000000,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.155000,4612695.550000,5640,3455,111.643822,176.189270,163.643814,157.420685,145.652084,131.139694,129.850433,126.842171,127.090103,130.602493,128.057037,140.205811,156.875214,173.412415,185.387619,194.767792,194.982666,182.139694,158.577698,136.296707,124.850433,119.437210,116.445473,86.495064,70.875229,85.453735,99.693405,74.652084,33.685143,13.806629,10.585969,5.028936,6.634725,5.826461,6.624804,3.413231,0.710746,0.056199,0.188430,0.069422,0.000000,0.000000,0.019835,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.355000,4612695.550000,5656,3455,132.699188,176.707458,168.740509,159.930588,144.467789,131.525635,128.947113,127.376869,126.112411,130.277695,128.608276,138.616547,156.980179,173.757034,186.228088,194.252884,194.715698,182.864471,157.790100,136.476044,124.137199,120.376869,115.963646,86.971916,70.790092,85.790092,99.161987,73.294228,34.533901,12.582662,10.542167,3.022321,6.149599,6.407450,7.562822,2.466948,0.150414,0.319009,0.072727,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.555000,4612695.550000,5682,3455,119.288445,168.189255,167.709915,155.718185,140.288437,129.164490,126.982666,125.073570,124.561180,125.329773,126.205803,136.875229,156.015701,170.949600,181.569443,191.280167,188.999176,177.577698,153.949585,131.676865,121.164482,119.528122,113.536385,84.718201,69.486794,83.734734,96.809113,72.073570,31.511587,13.633904,10.321508,7.467781,8.317369,7.530591,9.057864,3.071082,0.398348,0.096695,0.109091,0.000000,0.000000,0.000000,0.000000,0.304960,0.000000,0.000000,0.000000,0.976860,0.000000,0.000000 -601881.755000,4612695.550000,5698,3455,119.611588,171.231415,171.033081,158.041336,142.123978,129.991745,129.115723,126.710762,124.983490,125.677704,126.487617,138.338852,157.247955,173.487610,183.487610,191.925613,190.256195,178.057846,154.033081,133.239685,122.272743,119.652908,113.727287,85.983490,70.371918,84.099190,97.917374,71.487617,34.611591,14.194232,10.338862,8.646295,8.695055,9.551252,8.461171,2.965297,0.797523,0.220662,0.035537,0.244628,0.133058,0.000000,0.000000,0.039670,2.520661,0.000000,0.000000,0.000000,0.000000,0.000000 -601884.355000,4612695.550000,5711,3455,116.870270,166.341324,167.300003,154.217361,138.027283,128.209106,126.928116,124.638855,124.258690,125.300026,124.895058,136.514877,154.936371,170.209091,181.589264,190.514877,188.787613,175.671906,153.283478,131.985962,121.721504,118.671913,112.754570,85.027290,68.961182,82.936378,97.068611,70.771088,32.432251,13.309936,10.250432,7.967781,7.340508,7.127285,8.005797,3.553726,1.097522,0.737191,0.543802,0.548761,0.456199,0.040496,0.000000,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.955000,4612695.550000,5724,3455,112.810760,175.711578,170.000854,158.943008,143.414078,130.215714,130.389267,126.728111,126.703316,127.314888,127.571091,138.488464,157.017365,172.124802,183.108276,192.612411,191.587616,179.017365,154.777695,134.529770,122.521500,120.149597,113.918198,85.670258,70.480186,84.273567,97.752907,72.785965,35.042171,14.714894,10.356217,8.236378,9.156213,9.294229,9.397534,3.995876,0.304134,0.346282,0.333885,0.124794,0.053719,0.000000,0.000000,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.355000,4612695.550000,5741,3455,120.582649,174.995865,170.904968,158.004135,142.623962,130.549591,129.533051,126.871902,125.954544,126.822311,126.384300,137.855377,156.070251,172.285126,183.285126,192.400833,190.475204,177.623962,154.045456,133.235535,122.838844,119.119835,113.136360,85.475220,69.690102,83.078529,96.318192,71.747948,33.062832,13.882662,10.285142,9.261997,7.647120,7.776046,8.294229,3.094222,0.394216,0.244629,0.185125,0.047934,0.137191,0.000000,0.000000,0.074380,0.000000,0.000000,0.000000,0.737190,0.000000,0.000000 -601894.155000,4612695.550000,5760,3455,114.671913,173.400009,169.209915,158.647934,141.085968,129.383484,128.143814,125.342171,123.722336,126.499191,125.234734,137.234726,155.441330,171.218185,182.780167,191.358688,189.565292,176.912399,152.937195,132.631424,122.003326,118.548782,113.036385,84.292580,68.714066,83.714066,97.085968,71.424812,34.102497,13.464481,10.276053,8.611585,7.320673,7.500011,9.367783,3.881000,1.492565,0.134711,0.517356,0.287604,0.090083,0.000000,0.000000,0.053719,0.000000,0.000000,2.039670,0.000000,0.000000,0.000000 -601904.555000,4612695.550000,5812,3455,116.742165,178.097534,169.651245,158.328934,142.907455,130.444641,129.783478,126.907448,126.361992,128.510757,126.568604,136.816559,156.130585,172.254547,183.560333,192.585129,191.246292,176.709091,154.155380,133.585129,122.717361,119.874390,114.072731,84.907463,69.915718,83.998360,97.138847,71.337204,33.014896,13.342167,10.370268,7.942988,7.059516,8.903320,9.038031,3.767777,0.260331,0.062810,0.028099,0.046281,0.000000,0.000000,0.000000,0.000000,1.385951,0.000000,0.000000,0.000000,0.000000,0.000000 -601907.155000,4612695.550000,5825,3455,113.396713,174.542145,171.112396,158.938843,142.566940,130.013229,130.451248,126.484314,126.228111,128.575226,125.823151,137.633072,155.319000,171.839661,183.823135,192.914047,190.988434,177.186768,154.476028,132.823151,121.971916,117.947121,112.509102,83.649597,68.930603,82.161995,96.566956,70.327293,32.409935,13.852909,10.228117,9.647122,6.693400,6.890921,8.005799,4.194225,0.796697,0.458679,0.174381,0.000000,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601911.555000,4612695.550000,5847,3455,128.195892,182.650421,174.402496,161.890091,143.947937,131.526459,130.600845,128.485138,127.881836,129.989273,128.286789,139.625626,157.162827,173.691742,184.394226,194.774384,191.981003,177.088440,154.559509,135.047134,123.336380,120.782661,114.245476,85.873573,69.675224,85.113243,97.361176,70.113243,34.237213,14.342993,10.385969,11.314892,7.432244,8.957866,8.983485,3.332240,0.805787,0.238018,0.145455,0.111570,0.000000,0.000000,0.060331,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601914.955000,4612695.550000,5864,3455,129.550430,183.170242,171.980164,160.938843,144.418182,129.922333,129.335556,127.310760,125.690926,129.757034,127.327286,138.120651,156.062805,171.889252,185.228088,193.575211,191.343796,176.748764,153.856201,134.195053,123.021500,119.740509,114.327286,84.550423,69.765305,84.013237,96.707451,71.294228,32.831425,13.223158,10.393408,9.844644,7.410756,8.182657,6.681005,3.661991,0.824795,0.180993,0.056199,0.000000,0.000000,0.000000,0.000000,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.955000,4612695.550000,5889,3455,136.425629,185.965302,169.386780,161.766953,144.857849,130.932236,130.428101,127.618187,128.188431,130.196701,127.477692,139.386765,155.452896,173.395050,184.238022,195.576859,191.469421,176.634720,155.626450,135.312408,123.477699,121.064468,115.345459,87.676048,70.147125,85.452904,97.593407,71.899185,35.229771,15.438034,10.485968,12.013239,7.740508,9.781006,10.221503,3.255380,1.222317,0.147935,0.166116,0.000000,0.125620,0.000000,0.065289,0.000000,0.000000,2.861157,0.000000,0.000000,0.000000,0.000000 -601926.955000,4612695.550000,5924,3455,147.109924,194.323975,174.340500,166.613235,146.985138,133.927292,132.092575,129.836380,130.133896,135.183487,130.183487,141.183487,157.861160,175.761993,188.695877,198.274384,194.431412,178.505798,156.257858,135.728943,124.365295,120.993401,115.381828,86.679352,70.439697,86.910751,98.919022,70.571922,32.059521,13.616546,10.489275,11.776875,7.805797,8.209104,7.976046,3.932240,1.192564,0.232232,0.218182,0.109091,0.307439,0.230579,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.355000,4612695.550000,5981,3455,110.508278,165.095047,167.045456,155.764465,142.607468,132.433899,129.442169,127.847122,126.557869,127.623985,128.260345,139.541351,157.433899,172.400833,184.433884,192.987610,192.723145,179.615707,156.111588,135.582672,123.698364,120.714890,115.318199,86.582664,71.103325,87.045471,99.863655,72.979355,34.814072,14.566960,10.483489,7.648773,8.200015,8.542989,9.399189,2.514884,0.520663,0.086777,0.052893,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.755000,4612695.550000,6063,3455,116.258690,165.779343,167.109924,155.845459,142.779343,133.977707,130.266953,129.266953,127.862000,130.333069,130.440506,140.589264,159.390915,174.316528,187.010757,195.886780,193.895050,181.647110,157.473557,136.564468,125.134727,120.928116,116.027290,88.233902,72.283485,87.886795,101.258690,73.076874,34.936386,13.745473,10.547955,7.986790,7.927287,8.848776,7.798360,3.503314,0.623969,0.340497,0.105785,0.097521,0.000000,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601979.955000,4612695.550000,6189,3455,100.602501,168.865295,165.047119,156.890106,143.262009,133.733078,130.088455,129.005814,127.435562,128.766144,129.658707,140.741348,158.253738,174.774384,186.493393,195.104965,194.005798,182.129761,158.113251,137.807465,126.658707,121.047134,116.609116,88.113235,71.113243,88.782654,99.766136,74.559525,33.846298,13.579357,10.600845,6.353732,7.498361,8.268609,6.247121,2.409097,0.549588,0.266116,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.155000,4612695.550000,6375,3455,119.797539,168.979340,168.012390,158.483475,145.111572,134.169434,131.053741,129.219025,128.268616,131.020676,131.268616,141.847107,158.995865,174.946274,187.838837,196.772720,194.971069,185.037186,159.409088,139.971069,126.227287,122.731422,117.409096,89.309937,72.681831,86.648773,100.012413,73.392578,33.425636,13.147125,10.673573,4.571083,6.601667,5.679351,6.733073,2.616534,0.330579,0.209918,0.000000,0.116529,0.001653,0.171901,0.004132,0.000000,0.000000,0.000000,1.065289,0.000000,0.000000,0.000000 -602033.955000,4612695.550000,6459,3455,131.035553,180.217377,172.754562,164.052078,148.647110,134.622330,133.233902,130.870270,130.382660,134.762817,132.977707,143.828934,160.085129,177.870270,189.176041,199.250427,198.473557,187.341324,162.729752,141.787628,129.060349,124.473572,118.936378,90.514893,73.754562,87.969437,100.886795,76.589272,33.663658,13.221506,10.812415,5.055383,7.412411,7.634725,6.706625,2.166947,0.317356,0.103306,0.068595,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.355000,4612695.550000,6501,3455,110.976051,181.043808,179.366119,163.911575,147.985962,134.713226,134.481827,130.457031,130.638855,131.176041,131.002487,143.448761,163.101654,178.828934,191.357864,200.969421,199.853729,186.093399,162.291748,138.919846,128.969421,124.134720,120.390915,90.415718,74.903320,91.101662,105.250420,75.738029,37.176048,14.918200,10.944647,9.707452,9.204975,9.128942,9.229767,4.559511,1.122316,0.795869,0.854547,0.223141,0.304959,0.307438,0.083471,0.085951,0.000000,0.000000,0.000000,0.000000,1.288430,1.750413 -602044.955000,4612695.550000,6514,3455,120.575226,176.606644,173.565323,159.672745,142.333908,131.499191,131.003311,127.846291,127.656212,127.928940,128.532242,139.920685,159.598389,176.201691,188.747131,198.019852,197.515717,182.524002,159.077698,137.375229,126.904144,123.424805,119.036377,89.309105,73.201668,89.548775,103.267776,74.523979,35.540512,14.962001,10.821507,9.534725,9.003321,8.938031,8.981004,5.042158,1.246283,0.262810,0.327274,0.113223,0.112397,0.000000,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.755000,4612695.550000,6528,3455,103.205803,174.404129,177.933060,163.048782,146.379349,136.106613,134.850433,130.693405,129.552917,131.949600,131.470261,142.470261,162.668610,179.090088,190.362808,199.544632,199.643799,184.866943,161.941345,138.990921,127.701668,125.197533,119.081833,90.585968,74.585968,89.528122,103.189270,74.709938,37.462006,14.471919,10.825638,9.490096,7.452080,10.032247,8.757864,4.054552,0.892564,0.080166,0.066943,0.180166,0.000000,0.128100,0.538844,0.414051,0.000000,0.000000,0.000000,2.252893,0.000000,0.000000 -602050.955000,4612695.550000,6544,3455,122.824806,181.197525,178.214050,167.528107,151.271912,139.395859,137.238846,132.734726,132.495056,133.866959,133.486786,146.569427,165.602478,181.643799,193.643799,204.271912,202.371078,188.445465,164.784302,141.734711,130.519852,127.007446,121.990921,90.957863,77.238861,90.949600,105.842163,76.891754,38.653740,15.670267,11.090101,12.357040,9.543818,10.877702,12.847950,4.744637,1.545457,1.566117,0.557852,0.315703,0.718183,0.000000,0.097521,0.059504,0.000000,0.000000,1.646281,0.000000,0.000000,0.000000 -602054.355000,4612695.550000,6561,3455,122.792580,179.329788,177.371933,162.727310,145.644638,134.925644,133.867798,129.438034,127.991753,129.528946,129.768616,142.074402,161.016556,178.190109,190.148773,200.338852,199.793411,184.925659,161.537216,140.528946,128.115723,125.793404,121.727287,90.719025,76.685974,91.834724,104.859520,76.140511,37.925640,16.495060,11.066134,11.523982,10.328941,9.689271,8.975220,7.352077,2.369425,0.347935,0.642976,0.230579,0.102480,0.000000,0.034711,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.955000,4612695.550000,6589,3455,111.902496,176.878525,174.688431,163.109924,146.423981,133.647110,133.184311,129.374390,128.465302,129.828934,128.903305,141.473557,160.704971,176.531418,189.134720,199.035538,198.432236,183.498352,160.440506,137.903305,127.415710,124.118187,118.754555,89.167786,74.275230,89.820679,103.010750,75.994240,38.209110,16.128117,10.795886,11.736379,9.580181,9.757040,10.807452,4.673562,1.458680,0.714051,0.577687,0.360331,0.328099,0.113223,0.395042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.155000,4612695.550000,6605,3455,102.997528,179.188431,178.552078,162.419846,144.361984,131.171921,132.485962,129.791748,128.783493,131.072739,129.452911,142.304138,161.014877,177.642975,189.353729,198.337204,197.733887,181.560333,159.717361,136.775208,123.452904,122.295883,115.800018,86.667786,71.545471,85.758690,100.229767,71.485970,35.436382,13.919851,10.527291,9.650428,8.156213,11.141337,10.657866,5.741330,1.968598,0.809919,1.628102,0.518183,1.128927,0.000000,0.017356,0.000001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.555000,4612695.550000,6622,3455,104.062820,188.237198,182.410751,170.229752,149.783493,135.466965,134.896713,131.078522,130.475220,132.904968,131.590927,144.607452,162.766968,181.469421,191.940506,202.866119,200.279327,185.700836,162.643005,139.188446,129.403320,126.014893,121.254555,90.634720,76.564476,92.386780,103.444633,77.676048,38.556217,15.679358,11.023159,12.509107,9.975222,12.628117,13.152081,7.119017,4.575212,3.450416,4.042978,2.956200,3.406613,2.267770,1.266943,1.935539,0.623967,0.000000,0.000000,0.000000,2.761984,0.000000 -602071.755000,4612695.550000,6648,3455,109.423988,192.804153,183.415726,165.052094,146.655380,133.250443,132.523163,130.647125,130.035553,131.771103,130.572754,142.952911,160.812424,178.498367,190.324814,201.242172,199.729782,184.043823,161.283493,139.027298,127.597542,124.142998,119.027298,89.820686,73.142998,88.490105,103.605804,75.176056,34.903324,12.549603,10.820681,9.998363,7.682658,8.466955,9.607452,4.653727,0.734712,0.306612,0.653721,0.014876,0.057852,0.000000,0.036364,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.555000,4612695.550000,6662,3455,124.741341,186.799164,178.766129,163.121490,146.609100,133.501663,131.832245,129.923157,128.501663,130.650436,129.493408,140.947937,157.823975,175.071915,188.212387,198.336365,197.088425,183.138031,158.030594,138.171066,126.319855,123.195885,119.427292,88.724808,74.733078,88.964478,102.485138,73.369438,35.171093,13.807457,10.857043,11.004148,6.849599,9.300840,10.052081,3.332239,1.274383,0.041322,0.087604,0.000000,0.085951,0.000000,0.062811,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.155000,4612695.550000,6675,3455,111.666962,164.245468,164.154556,159.956207,145.038849,130.352905,127.733078,125.790924,123.716545,126.179359,124.526466,134.989273,150.361160,168.175217,178.638031,189.175217,187.811584,174.861160,152.034714,130.927292,120.662827,116.365311,111.745476,86.348778,71.175232,87.009933,96.571922,72.604973,30.943821,12.686792,10.158696,5.246292,6.646297,5.129762,7.802492,2.254550,0.647108,0.172729,0.306612,0.000000,0.157852,0.092562,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.155000,4612695.550000,6695,3455,106.148766,169.223160,169.512405,161.636383,143.776871,130.570251,130.008270,127.743813,125.148766,128.256210,126.710754,137.322327,153.702499,170.735550,181.016541,190.553741,189.884308,177.082657,152.834732,133.281006,121.892570,119.214882,113.454552,87.082649,71.801674,86.528931,98.586784,72.867790,34.851261,14.100844,10.314069,6.833895,7.227287,7.530589,7.719022,2.767773,1.108266,0.085951,0.297522,0.145455,0.000000,0.000000,0.000000,0.665290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602087.155000,4612695.550000,6725,3455,103.225624,161.159515,168.415710,161.010757,144.531418,131.266953,129.547943,125.870255,124.952896,126.713226,126.316536,135.614059,153.076859,168.357864,180.985962,190.134720,189.407440,177.531418,153.291748,132.457031,122.324799,118.680168,113.663643,86.614067,71.804138,85.895058,98.861992,72.812401,33.837212,13.271091,10.333076,6.109928,8.197536,6.923978,7.839682,2.822318,0.003306,0.084298,0.237191,0.057852,0.000000,0.000000,0.152893,0.437190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.955000,4612695.550000,6764,3455,112.181000,165.098373,169.949600,157.652084,140.539688,131.498352,128.217361,124.217361,122.837196,124.407448,123.936371,134.060333,148.985977,165.762817,177.812408,186.490112,186.961182,173.713226,152.804153,130.713226,120.159508,115.936371,111.754555,86.118195,70.374397,87.547951,98.663643,74.721504,34.696712,12.555387,10.159523,6.452902,8.909105,8.071913,8.533070,2.898351,0.999175,0.771902,0.811571,0.557852,0.314050,0.363637,0.019009,1.123967,3.074380,0.000000,2.644628,2.380166,0.000000,0.000000 -602101.955000,4612695.550000,6799,3455,90.186790,166.839676,165.054565,155.500839,141.451248,129.095886,127.418198,123.459518,122.236374,123.897537,122.905800,132.914062,149.847946,166.021500,177.046295,186.723984,185.178528,173.409927,151.476044,129.029770,118.847946,115.558693,111.418198,83.145477,69.773567,85.517365,99.682655,75.095879,34.608284,14.709934,10.128944,7.133894,8.171091,6.361168,6.738855,4.120668,0.585126,0.091736,0.000000,0.050414,0.000000,0.000000,0.309918,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602105.755000,4612695.550000,6818,3455,99.696709,151.109940,162.043823,153.465302,139.390930,127.952904,125.853737,122.357864,119.647125,121.746292,121.481834,130.746292,148.043808,163.886795,175.275208,183.713226,182.192566,171.101669,148.655380,128.853729,117.928116,114.415718,109.390923,83.870262,68.862000,85.225632,99.498360,75.994232,35.242168,15.828117,9.944647,5.871912,9.533899,7.793403,6.742987,3.301659,0.717357,0.239670,0.200001,0.340497,0.000000,0.119009,0.399174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.955000,4612695.550000,6834,3455,88.793404,149.570267,160.537201,152.752075,137.801666,127.545471,123.619850,120.991753,118.396713,120.107452,119.380180,129.842987,147.082657,162.256210,172.214890,182.677704,181.429764,169.231415,148.140518,127.347122,116.595055,112.140511,107.545471,81.033073,66.760345,84.586792,98.884315,74.578529,35.123985,12.952909,9.776878,5.494226,7.166956,7.196705,5.047944,2.259509,0.561985,0.195868,0.000000,0.326447,0.000000,0.061157,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.155000,4612695.550000,6855,3455,90.390930,149.374405,159.010773,152.556213,137.556198,124.853737,121.812408,119.605797,116.762825,116.878525,117.324806,127.713234,144.688446,160.870270,171.076889,181.068619,179.060349,168.093414,147.060349,125.977699,115.961174,111.688446,105.572746,79.390923,65.886795,81.622330,97.027290,74.002502,34.845474,12.742991,9.597539,4.073562,7.119022,6.189269,7.003317,3.834718,0.523968,0.082645,0.102480,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.155000,4612695.550000,6890,3455,83.961998,146.961990,159.061157,150.110748,135.705795,125.557030,120.879341,116.953720,114.623146,115.937195,114.375214,125.391739,142.978516,157.259506,169.449585,178.333893,177.854553,166.449585,145.441330,124.796700,114.251244,109.945457,103.763641,76.507446,62.019859,80.904144,99.226448,75.300835,34.647953,12.186792,9.433076,5.147943,6.504147,5.964475,5.389267,2.077691,0.568596,0.413224,0.000000,0.021488,0.042975,0.148760,0.064463,0.289256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602126.955000,4612695.550000,6924,3455,84.285141,140.913239,159.615723,151.367783,136.640533,126.012413,121.004150,117.475220,115.037209,116.260345,115.896713,126.185966,143.045471,158.169434,169.425629,179.557861,177.880188,167.078522,145.615723,125.913239,114.681831,110.202492,104.227287,77.466957,63.723160,81.731422,99.351257,75.235550,35.359524,14.455390,9.475225,4.147945,6.733073,7.814889,5.395879,2.197527,0.308265,0.000000,0.000000,0.204959,0.137190,0.066116,0.566943,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602132.355000,4612695.550000,6951,3455,87.722336,149.193390,161.366943,148.829758,135.557022,125.317368,121.581833,117.780182,115.904152,115.606628,116.152077,127.325630,144.036362,158.614883,169.672729,180.251236,179.193390,167.928925,146.557022,125.135551,115.416542,110.771919,106.218201,79.581833,64.176880,82.259514,98.978523,74.185135,33.441345,13.515719,9.656217,5.474390,8.474396,8.046294,7.349599,2.461988,0.531406,0.000000,0.158678,0.027273,0.045455,0.000000,0.305785,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.555000,4612695.550000,6967,3455,90.321510,148.338043,159.693405,152.900024,137.304962,127.660339,123.412407,119.982658,118.685135,117.552902,117.470261,128.825638,146.825638,159.875229,171.957870,181.561157,180.866943,169.693405,147.726471,127.271912,116.255386,111.726456,106.081833,79.395882,64.057045,83.511581,99.073563,75.511589,35.511593,12.881835,9.643821,5.170257,7.507452,7.007451,6.141334,4.195876,0.821489,0.158678,0.044628,0.099174,0.107438,0.057851,0.190909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602140.155000,4612695.550000,6990,3455,86.046303,144.996689,159.525635,149.955383,134.881012,125.186790,121.963646,117.533897,115.847946,115.550423,114.980179,125.715714,143.434708,158.566956,169.079346,179.186783,179.228119,165.649597,146.104126,126.029762,114.360344,109.856209,104.327286,77.277710,62.938858,81.087616,97.195053,73.112419,34.831421,12.549605,9.484317,5.468605,8.073568,5.259514,7.285137,3.111577,0.350414,0.205786,0.169422,0.041323,0.000000,0.057025,0.068595,0.292562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.355000,4612695.550000,7016,3455,87.704971,147.382660,158.440506,150.630585,136.052094,126.589279,123.027298,120.399193,117.217377,117.704979,117.432251,128.333069,144.936386,160.647110,171.333069,182.688431,180.944641,169.357864,147.795883,127.423988,116.795891,113.060356,106.572746,79.919846,65.423981,83.886795,99.357872,73.101677,34.341339,13.845472,9.688449,6.435547,7.127287,8.138029,6.238028,3.438849,0.503307,0.106612,0.371076,0.291736,0.100000,0.122314,0.632232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602151.155000,4612695.550000,7045,3455,76.896713,146.276871,160.797531,152.400848,136.995880,125.582664,123.433899,119.367783,118.285141,118.433899,118.177704,128.202499,145.334732,159.400848,171.607452,181.962830,180.615723,167.665298,147.095062,126.128113,115.433899,111.847122,104.590927,79.260345,65.698364,81.814064,96.731422,72.830597,33.219028,12.888447,9.508284,6.605797,8.004973,7.100839,7.746292,2.690088,0.345456,0.261158,0.237191,0.128100,0.114050,0.147934,0.512397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.755000,4612695.550000,7083,3455,77.438866,147.752899,161.397537,151.918198,138.050430,127.942986,124.984314,120.934723,118.562820,119.695053,119.513237,129.306625,146.314896,161.752899,172.579346,182.075226,182.347946,169.604141,148.066956,127.100014,116.364479,114.232246,108.645470,81.075218,66.604156,83.504974,96.116539,71.579361,32.984318,15.416549,9.876879,7.126458,8.252909,5.147116,6.947121,2.558683,0.533060,0.523141,0.147108,0.094216,0.000000,0.000000,0.261157,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602167.355000,4612695.550000,7126,3455,80.899185,152.254547,164.122314,155.047943,139.874405,128.279343,125.171906,122.353729,120.155380,120.750420,120.295876,130.750427,148.213226,162.775208,175.403305,183.304138,184.733887,170.750427,150.006622,128.998352,118.411575,113.915710,107.709099,83.081009,68.328949,83.833069,96.171906,72.320686,35.502499,13.361175,9.791754,6.052905,6.540510,7.451252,7.109930,3.008271,0.576034,0.514877,0.039670,0.066116,0.001653,0.115703,0.000000,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602170.755000,4612695.550000,7143,3455,86.699196,151.343811,161.004974,151.715714,137.856216,128.914062,124.401665,120.310760,119.558693,119.847946,118.988441,130.442993,146.600006,163.038025,173.360336,183.649597,182.633072,170.938858,148.723984,128.831421,117.847946,114.219849,107.327286,81.996712,67.591751,81.980186,97.038033,71.046303,32.211590,12.969440,9.757044,5.840506,6.776048,7.364476,5.865300,2.614881,0.302480,0.002479,0.143802,0.205785,0.000000,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602175.755000,4612695.550000,7168,3455,95.400848,149.137207,163.360336,153.922333,137.831421,127.368607,124.558693,121.451256,118.707451,118.980179,119.947121,130.302490,147.310760,163.219849,174.153717,184.476028,184.682663,171.228088,149.062820,128.839676,118.740509,115.252907,108.690926,83.013237,67.938866,84.269432,97.062820,70.352089,33.996716,13.136382,9.881010,6.544641,6.938031,7.530589,6.533896,3.178519,0.653721,0.319836,0.257852,0.242150,0.000000,0.073554,0.213223,0.181818,0.000000,0.000000,0.000000,1.636364,0.000000,0.000000 -602179.755000,4612695.550000,7188,3455,94.020676,154.706635,163.789276,155.607452,140.342987,130.185959,127.235542,122.888435,121.756203,122.714882,122.797531,133.351242,149.731415,164.847122,176.640518,186.119858,185.524811,173.458694,150.739685,130.623978,120.896706,116.921494,109.954552,84.483490,71.095062,86.342987,96.946289,71.623985,34.857868,13.996714,9.995887,7.709931,9.514066,9.050426,8.180178,3.405792,0.623142,0.585125,0.104959,0.133885,0.001653,0.125620,0.349587,0.000000,0.000000,0.000000,0.000000,0.000000,1.952893,0.000000 -602184.955000,4612695.550000,7214,3455,97.900017,154.222305,162.685104,153.635544,139.428940,128.131409,125.990921,122.156212,121.792572,122.172737,122.123154,132.800842,150.387604,163.924774,175.883469,185.709915,185.602478,173.023972,150.461990,130.544647,119.825630,115.610756,110.081841,85.057053,69.751259,84.974411,95.858696,70.610764,32.908283,14.374400,10.007458,7.848773,7.591750,6.402490,6.229763,3.579345,0.866118,0.178513,0.209092,0.087604,0.000000,0.000000,0.421488,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.155000,4612695.550000,7245,3455,84.551254,158.022324,165.939682,155.468628,140.989288,130.485138,128.038849,125.187614,124.501663,124.956207,125.939682,135.071915,151.443832,167.319839,177.848770,189.286789,188.650421,176.245468,153.253738,132.526459,122.733070,118.881828,113.700012,87.576042,72.088448,87.493401,96.369438,69.311584,32.633904,12.744646,10.336384,6.575218,6.502493,6.785136,6.277698,4.134717,0.516530,0.114050,0.108265,0.191737,0.000000,0.000000,0.206612,0.282645,0.000000,0.000000,0.000000,1.737190,0.000000,0.000000 -602195.155000,4612695.550000,7265,3455,86.144646,156.971085,167.086792,156.227295,142.475220,130.995880,129.309937,126.053734,124.557869,124.673569,127.045471,137.731415,152.962830,169.458694,180.640518,191.376053,191.450424,178.177704,156.202499,136.392578,125.946297,122.615715,116.227287,89.657043,75.483490,89.219025,99.946297,72.045471,34.731426,14.460347,10.566134,7.876872,7.513238,8.835551,8.710756,4.188437,1.504962,0.103307,0.158678,0.393390,0.303306,0.076033,0.306612,0.218182,0.000000,0.000000,0.000000,0.000000,1.827273,0.000000 -602200.155000,4612695.550000,7290,3455,98.103333,155.706635,165.020676,155.979355,140.409103,131.904968,127.185966,124.830597,122.855385,123.855385,124.921501,136.161179,152.863647,168.400848,180.103317,191.549606,191.987625,179.483490,158.086792,137.037201,126.136383,121.723160,116.045471,89.152908,74.723175,90.557869,102.466957,75.334732,34.681839,13.921505,10.549606,7.123980,7.350427,9.135552,7.523153,2.785130,0.455374,0.147108,0.105785,0.145455,0.000000,0.000000,0.146281,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.555000,4612695.550000,7307,3455,95.375237,161.507462,165.598373,154.829773,141.317368,129.069443,128.267792,125.044647,123.532249,123.540512,124.697540,135.482666,153.738861,168.400024,182.077698,191.185150,191.821503,179.540512,157.722336,137.176880,126.019852,122.796715,117.036385,90.218201,75.482666,92.052910,105.581841,77.755394,37.457870,15.973571,10.639688,7.392574,9.471090,10.042991,9.700840,5.707448,0.286779,0.325621,0.115703,0.033884,0.041322,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,1.903306,0.000000 -602208.555000,4612695.550000,7332,3455,96.947945,154.452072,167.220673,157.171082,140.815720,129.452087,127.154556,124.774391,121.766129,123.385963,124.096703,136.129776,152.171082,169.493393,180.576050,191.699997,192.452057,179.146286,157.559509,137.865295,126.559525,124.716537,117.245461,90.493401,75.303322,91.427284,104.402489,78.005798,37.385971,14.348779,10.658696,7.518193,8.781007,9.135551,9.217368,3.402486,0.928928,0.420663,0.172728,0.115703,0.028099,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.755000,4612695.550000,7373,3455,96.055389,161.385971,166.584305,156.931427,140.005814,129.609100,127.914886,123.981003,123.534721,123.997528,124.815712,135.567780,152.485153,168.675232,180.890091,191.311584,191.435547,178.435547,155.964493,136.394226,125.799187,123.204140,115.609100,89.749603,75.890099,90.609108,103.138023,77.204147,36.790928,15.028944,10.509937,8.386787,8.561172,9.031420,10.368610,3.154552,0.497522,0.418183,0.056199,0.188431,0.126446,0.072727,0.619009,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602223.755000,4612695.550000,7408,3455,94.820679,163.440521,165.919861,157.019028,140.771103,130.349594,128.729767,125.440514,123.944641,125.035553,124.324806,136.200851,152.399200,168.828949,180.523178,191.754562,191.093414,177.382690,155.944656,136.002502,125.126457,121.448776,115.936378,87.862000,73.109932,89.167786,103.019020,75.300018,35.985970,13.162001,10.539688,7.057863,8.976875,9.619849,9.761170,5.398357,0.641324,0.518183,0.123967,0.064463,0.114876,0.000000,0.309918,0.000000,0.000000,0.000000,0.000000,1.310744,0.000000,0.000000 -602232.755000,4612695.550000,7453,3455,82.813240,157.400024,166.912415,154.152084,139.267792,128.028107,126.077698,122.102493,120.705795,121.523979,120.193398,132.780182,149.375229,166.614899,177.433075,188.995041,188.358688,175.069443,154.036377,134.416534,123.234718,118.722328,112.945473,84.242996,70.763657,87.796715,101.945473,76.094231,34.705803,14.690926,10.267787,8.902490,8.283484,8.938857,7.655384,2.268601,1.063638,0.325621,0.000000,0.111571,0.123141,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602235.955000,4612695.550000,7469,3455,92.061180,161.052902,161.259506,153.482651,137.705795,124.523987,123.152084,119.317368,118.168610,120.920670,118.028107,130.714066,148.143799,164.755371,176.722321,187.573563,186.457855,171.623138,150.747116,131.507462,120.548782,116.251251,110.672737,83.358696,68.771919,86.755394,101.375221,74.119026,36.292587,13.242167,10.061176,8.182655,7.095055,7.932244,7.307450,2.380997,0.276035,0.562811,0.000000,0.165290,0.036364,0.077686,0.865290,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602239.755000,4612695.550000,7488,3455,94.704979,167.622314,163.762817,153.919846,139.787613,127.795883,125.457031,122.002487,120.663643,122.895050,120.853729,132.828934,150.027283,166.473557,178.589264,189.795868,188.804138,174.861984,153.514877,133.985977,122.366119,120.581001,114.027283,86.564476,72.225639,88.845474,104.589264,76.341339,35.787624,14.886794,10.366135,10.384310,9.140510,10.513238,9.172741,3.231412,0.759506,0.023141,0.060331,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602244.555000,4612695.550000,7512,3455,99.546295,173.827286,164.339676,156.422333,141.422333,127.009102,126.240509,122.852081,122.405800,123.281830,121.480179,133.471909,149.819016,167.835556,179.686783,191.232239,188.703323,174.909927,153.604141,134.546295,124.017365,119.959518,114.372742,85.752907,71.810768,89.323151,103.149597,76.281830,37.686798,14.558696,10.397540,8.428937,8.712413,10.226462,8.942988,4.929761,0.338018,0.099174,0.102480,0.126447,0.138843,0.000000,0.074380,0.301653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.155000,4612695.550000,7525,3455,105.200844,172.655380,166.333069,156.919846,139.192566,127.556213,124.969437,121.523155,121.614067,124.514893,121.729767,132.605804,148.473557,166.597534,178.357864,189.209091,186.985962,172.671906,150.861984,132.390930,121.721504,118.316544,112.754562,84.961174,69.638855,87.564476,100.465302,73.779350,34.878536,14.250431,10.250433,10.780180,8.747122,9.757039,9.236377,4.128108,0.361985,0.430580,0.053719,0.072728,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602249.955000,4612695.550000,7539,3455,105.458694,164.723145,166.210739,157.888428,139.665283,126.772743,124.409103,120.070267,119.483490,124.285141,119.276878,131.326462,147.508270,165.061981,177.508270,188.367767,186.169418,170.780991,150.706604,130.367783,121.012413,115.516548,110.681831,83.797539,68.822327,86.607452,100.111588,71.847122,34.276878,13.284315,10.062001,10.296706,6.765301,8.057865,7.814061,3.928108,0.873557,0.120662,0.000000,0.105786,0.000000,0.000000,0.152893,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.555000,4612695.550000,7562,3455,120.339691,176.595886,163.761169,155.728119,138.430588,127.637215,124.141342,121.579361,121.149605,124.538040,118.794235,130.984314,147.612411,164.207458,176.662003,186.794235,185.794235,169.728119,150.017365,131.091751,119.124817,114.628944,109.190933,81.794235,67.728119,85.785973,98.389275,70.298370,35.802502,14.220678,9.926466,10.655385,7.773567,6.719022,9.354558,3.002485,0.590911,0.475208,0.210744,0.118182,0.000000,0.070248,0.632232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.555000,4612695.550000,7597,3455,105.173576,172.738037,163.035553,157.118210,135.994232,124.713249,122.167793,120.812416,118.225639,122.399193,117.895065,129.423981,146.217377,164.093414,176.167786,187.622330,184.895065,170.878540,149.928116,130.390930,118.432251,115.291756,111.027298,81.605804,66.977699,86.184319,100.564484,74.002502,34.837208,13.734728,10.093407,10.761998,8.120676,8.653732,7.900012,3.605795,0.387605,0.300001,0.134711,0.042975,0.019835,0.009918,0.000000,0.000000,0.000000,0.000000,1.147934,0.000000,0.000000,0.000000 -602266.155000,4612695.550000,7620,3455,124.563644,161.414886,155.009933,145.133896,127.976868,116.481003,114.505798,109.365295,108.406624,109.745461,108.662819,119.646294,137.299179,153.034714,164.910751,175.431412,174.307449,161.051254,140.216537,121.414886,110.505798,106.894226,100.018188,74.373566,59.869442,79.109100,96.745461,71.704140,34.654568,13.893406,9.092581,7.139682,8.429768,7.012409,7.932244,3.806620,0.607442,0.220663,0.013223,0.025620,0.071901,0.000000,0.350415,0.603307,2.348761,0.000000,1.868595,1.023967,2.855372,0.000000 -602272.155000,4612695.550000,7650,3455,125.766136,152.361176,147.427292,134.419022,120.749588,107.923141,103.542976,101.055382,98.220673,99.369431,98.584312,109.179344,126.923149,141.658707,153.014069,163.476883,162.981018,152.493408,131.650421,111.047112,101.228935,96.733070,91.336380,65.452087,52.460350,70.038864,91.270264,70.559525,32.352913,11.326465,8.303325,6.788440,7.948774,8.171088,7.241334,4.625628,0.630583,0.451241,0.019835,0.219836,0.094216,0.000000,0.238017,0.052893,2.166942,8.255373,0.000000,4.666116,3.715703,0.000000 -602281.755000,4612695.550000,7698,3455,154.320663,146.742157,133.915710,120.320686,105.824814,95.271095,90.204979,87.659523,85.816551,87.957047,88.345474,99.973579,117.411591,132.899185,144.419846,155.436371,156.857864,148.361984,133.155380,115.163651,105.535553,103.609932,100.981842,72.601677,54.990101,77.180191,110.651253,93.221504,44.519032,11.492579,9.180183,9.787617,10.718195,12.471916,17.188446,12.079351,2.973559,0.436365,0.333059,0.427274,0.073554,0.180992,0.010744,0.066116,0.000000,1.873554,5.410744,3.157851,2.904959,0.000000 -601453.155000,4612685.550000,3555,3505,134.747955,139.946320,133.500015,121.500008,107.177704,96.541336,93.549606,91.227287,91.781006,93.194229,93.962830,104.814064,123.590919,139.648773,153.946304,165.128128,165.929779,154.855392,131.574387,111.053734,100.219025,96.028938,90.863655,62.838863,45.764481,61.971092,75.417381,54.979355,24.342993,8.787618,8.260349,10.531422,10.709105,10.454558,11.114891,6.350422,1.617361,1.032235,0.234712,0.721489,0.558679,1.117357,0.704961,1.900002,11.347110,7.278513,3.816530,8.783474,10.516531,4.967769 -601458.955000,4612685.550000,3584,3505,108.614075,137.032257,135.552917,122.387611,108.701668,99.569443,96.172745,96.090103,94.139687,96.726463,98.065308,109.255386,126.412407,142.933075,157.181015,165.776047,167.420685,155.065308,131.660339,111.445465,100.296715,96.519852,91.900017,64.569443,46.379356,63.412415,74.470268,53.057045,23.549604,8.464477,8.354565,8.840508,7.617368,8.050426,10.026460,5.600008,1.128105,0.403307,0.001653,0.318182,0.226447,0.547108,0.207439,1.484299,4.660331,2.649587,7.166117,6.314051,5.929753,13.719835 -601466.555000,4612685.550000,3622,3505,107.227287,138.445465,138.123138,123.982651,111.271904,102.164474,99.875221,96.486786,96.916542,98.379349,100.412407,110.668602,129.214050,145.751236,158.850433,167.685150,167.759521,157.544647,134.106613,112.643806,102.007446,98.495056,92.354553,65.495056,48.222332,62.974400,77.850426,55.131424,24.924812,8.909932,8.395886,7.856211,6.322324,8.225634,8.982656,4.062816,1.685128,0.749589,0.382646,0.285124,0.098348,0.900001,0.445456,0.663637,4.564463,3.271075,6.342150,3.581819,2.517356,3.375207 -601477.355000,4612685.550000,3676,3505,113.773560,139.889252,138.831406,126.757027,113.418190,104.013229,100.947113,98.988441,99.079346,100.269424,102.509094,112.302483,130.955383,147.087601,160.046280,169.558670,169.740494,158.120651,135.046280,113.922318,102.856201,99.955376,93.872742,66.145470,47.996716,63.624809,78.996704,58.988445,26.550432,9.244642,8.533903,6.851252,7.352905,6.651252,7.587617,2.585128,1.008268,0.256199,0.085951,0.000000,0.080992,0.182645,0.514877,0.424794,5.710745,2.678513,0.767769,0.798347,2.726446,5.301653 -601487.355000,4612685.550000,3726,3505,106.461998,144.257858,140.679352,129.852905,117.993401,108.274399,105.100845,103.993408,103.795059,104.852913,106.902496,117.406624,134.604965,151.877701,164.224808,173.935532,173.786789,161.538849,138.952072,118.522324,106.952087,103.852913,97.381836,69.580185,50.861179,66.332253,82.307457,61.233078,28.135555,12.059522,8.852912,5.681003,8.252906,7.954560,7.198359,2.962815,0.747935,0.241323,0.200828,0.184298,0.076033,0.191736,0.084298,0.191736,0.000000,3.048760,1.590909,4.415703,0.877686,0.000000 -601501.355000,4612685.550000,3796,3505,102.654556,146.158691,142.795044,133.704147,120.497543,110.861176,107.621506,105.497536,105.241341,107.695885,107.340515,118.373581,136.960342,152.919022,165.844635,174.613235,172.960342,163.431412,140.373566,120.026474,108.200020,105.613243,98.654564,69.654572,51.588451,68.638039,83.497543,64.571922,26.795059,10.901670,8.968614,5.586787,7.317368,7.045468,6.609104,3.798353,0.421489,0.043803,0.083472,0.049587,0.019835,0.034711,0.198347,0.000000,2.023141,0.000000,0.000000,0.826446,0.907438,3.804959 -601512.355000,4612685.550000,3851,3505,116.780182,154.996719,145.583496,135.542160,123.343811,112.426460,108.352081,108.252907,106.914062,109.773567,109.938858,120.847946,137.914078,154.360367,167.426468,176.137207,175.492569,164.252914,142.624817,120.442986,108.418198,106.517365,100.054558,72.302498,52.831421,69.897545,85.823151,64.319023,26.186796,11.151258,9.095888,4.449595,6.386790,8.474396,7.077701,2.886782,0.823143,0.204960,0.198348,0.000000,0.000000,0.069422,0.460331,0.000000,3.278513,0.000000,1.740496,0.000000,1.011570,3.856199 -601517.555000,4612685.550000,3877,3505,121.158684,154.792587,149.147949,138.313248,127.197540,115.156204,114.123146,111.461990,110.387604,114.065292,113.321487,123.974380,141.321503,158.280182,169.577698,179.776047,178.057037,167.866959,144.792587,123.354553,111.619011,108.891739,103.809097,74.288452,57.585968,72.767792,87.594223,66.833900,31.140516,12.214066,9.437209,6.383482,8.147122,7.858690,8.952080,3.047940,1.090911,0.547935,0.389258,0.022314,0.047934,0.117356,0.352893,0.197521,0.000000,0.000000,0.000000,0.650413,2.024794,4.890910 -601523.755000,4612685.550000,3908,3505,136.825638,178.693405,162.842163,155.709930,136.792587,121.552910,122.230598,118.776054,118.627289,122.833900,118.957870,129.668610,146.933075,163.957870,177.296707,186.123154,183.057037,168.866959,147.304977,128.346298,116.908287,114.544647,107.536385,80.371094,63.503326,79.247124,93.048782,67.891754,32.850433,13.464480,9.776052,12.595882,8.333899,8.165304,9.079351,4.477695,0.914052,0.171901,0.140496,0.154546,0.099174,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.955000,4612685.550000,3929,3505,122.636383,179.016541,162.826462,154.479355,136.661179,121.834724,121.876053,119.719025,119.148773,123.677704,119.487617,131.123978,147.528946,164.892578,177.438034,187.338837,185.487625,170.123978,149.066132,128.586792,117.471092,115.421501,110.363655,80.512413,63.991749,80.677704,92.677704,67.404968,31.603327,13.481010,10.033077,11.165306,9.133900,8.785139,8.500839,3.263644,1.165292,0.241323,0.034711,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.355000,4612685.550000,3951,3505,123.717377,181.254562,163.246307,154.932251,135.527298,121.899193,121.585144,119.700851,118.105804,122.684319,119.312416,130.436386,147.766968,165.097549,176.585144,186.758698,184.204987,170.403336,147.866135,128.428116,116.700851,114.973579,108.527298,80.262833,63.353737,78.510765,92.717377,67.750435,31.352911,12.797539,9.866136,10.703321,6.557039,8.204975,7.772740,3.362818,0.499175,0.000000,0.146281,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.755000,4612685.550000,3988,3505,108.889275,172.393402,158.484314,150.203323,134.484314,120.459518,120.442986,117.690926,117.244644,120.029762,116.699188,129.095886,145.996704,163.104141,175.723984,185.294235,182.988449,168.922333,147.864471,126.608276,115.343811,113.269432,106.327286,78.021500,62.211586,77.211586,90.600014,66.451256,31.360348,12.485968,9.666135,10.065306,8.642992,7.998363,7.461170,2.955378,0.343803,0.000000,0.000000,0.000000,0.165290,0.304959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.355000,4612685.550000,4001,3505,109.319847,171.493393,160.766129,151.311584,134.485138,120.501663,120.493401,118.220673,116.790916,120.485130,118.047119,129.129761,146.832245,163.642151,175.567780,186.022324,183.526459,169.733063,147.815720,127.171082,115.997528,113.584312,107.609108,78.584312,64.014069,78.526466,91.121506,67.633904,30.807455,12.955391,9.782663,10.419025,7.331420,7.685139,7.438857,2.836370,0.604960,0.000000,0.152066,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.155000,4612685.550000,4015,3505,107.096710,171.319839,157.815720,148.088440,132.501663,119.443810,121.286789,116.890091,116.047119,119.807449,117.369431,127.906624,146.460342,162.865295,175.171097,185.551270,182.385971,169.947937,147.485138,127.617363,115.551247,112.782661,106.154564,77.757866,62.724815,77.633904,91.295059,66.030602,30.295061,11.852910,9.650432,9.186790,7.188443,8.042164,9.503319,2.327279,0.505787,0.242150,0.085124,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.755000,4612685.550000,4033,3505,123.841347,167.965317,160.758698,149.742172,133.221497,120.833069,121.039680,118.403320,117.238029,119.444641,118.362000,129.800018,147.957047,165.535553,176.395065,184.990112,183.824814,171.535553,148.519028,126.039696,117.428116,114.419846,107.618195,79.370270,62.783489,78.229774,91.626457,68.047958,29.800018,12.623158,9.783490,8.273566,7.537204,8.763652,7.915715,3.614056,0.729754,0.050413,0.142975,0.101653,0.000000,0.020662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.755000,4612685.550000,4048,3505,93.814064,163.113235,159.138031,150.567780,134.600830,121.592575,121.972740,118.600838,117.815712,119.898354,118.584305,130.666946,148.683487,165.328110,176.559509,186.014053,184.832245,171.931412,148.898361,127.865295,117.394226,113.476868,108.972740,80.344635,63.700024,77.873573,91.179352,68.014069,32.038864,11.699190,9.906631,11.174397,7.074394,8.685965,7.764476,3.161164,0.495870,0.049587,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,1.176860,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.355000,4612685.550000,4066,3505,112.257858,164.613235,159.761993,148.530594,132.588425,120.621490,119.927277,117.456200,116.100830,118.390083,117.365288,129.092560,146.902496,163.109100,174.770264,184.778519,183.067780,170.679352,147.885956,126.439674,115.067780,114.092560,106.290916,77.869438,63.183487,75.737198,90.092575,66.530594,29.993410,11.155391,9.662828,7.740511,5.578528,7.011583,7.357038,2.221492,0.384299,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.155000,4612685.550000,4095,3505,107.279343,165.733902,162.229782,150.395065,133.171906,121.353729,120.742157,117.568604,116.700836,118.006615,117.915710,128.808273,147.312424,163.957047,176.031433,185.254562,183.353745,170.618210,147.204987,126.370255,116.585129,113.419838,107.709099,78.866119,61.965309,76.221497,91.221497,67.378532,30.662830,11.329769,9.791754,6.029766,6.864479,6.595056,7.659518,2.185129,0.209918,0.159505,0.000000,0.000000,0.000000,0.000000,0.398347,0.000000,0.000000,0.000000,1.854546,2.471075,0.000000,0.000000 -601567.355000,4612685.550000,4126,3505,95.708282,161.873566,161.270264,148.666962,133.823975,122.369431,121.881828,117.865295,117.295052,118.873566,119.146294,131.138031,148.609100,165.146286,176.832260,185.757874,185.104980,171.625641,149.237198,128.410751,117.005798,113.385963,107.154556,79.865311,63.584316,77.493408,91.939690,68.369438,31.311588,12.201671,9.741341,6.806625,7.944644,9.524809,8.527287,2.458683,0.485952,0.442976,0.000000,0.205786,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.955000,4612685.550000,4139,3505,110.172737,165.090103,161.123154,148.371094,134.974396,122.131416,120.742989,118.916542,117.503319,119.338028,119.999184,130.263641,149.321503,165.230591,176.354568,185.536377,185.048782,171.668610,148.792587,127.734718,116.585960,114.230591,108.263649,79.742989,63.957867,77.346291,92.461998,69.288445,32.718204,14.492581,9.842168,8.076047,7.521503,7.401669,6.610753,2.032237,0.637192,0.215703,0.208265,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.355000,4612685.550000,4171,3505,101.204964,157.590088,159.548767,146.829758,133.747116,120.722321,119.796700,117.209923,118.490913,117.358681,118.019836,130.061157,148.143799,163.094223,175.507446,184.325623,183.871078,170.961990,147.821487,126.838020,116.416534,113.598351,106.309105,78.499191,62.755390,76.647957,91.176880,66.515724,29.581837,11.344645,9.664481,7.253734,7.085139,7.528940,8.121501,3.463642,0.338844,0.188430,0.055372,0.052066,0.000000,0.250414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.153719,0.000000 -601578.955000,4612685.550000,4184,3505,112.597534,159.572754,162.052094,151.019028,135.225632,123.680183,122.531418,119.382660,119.597534,119.870262,120.176048,131.547943,150.357880,164.952911,178.804153,186.845459,186.068604,173.457047,149.696716,129.266953,117.845467,113.804146,109.390923,80.787621,64.556213,78.655388,92.944641,66.845474,31.729769,12.092580,9.944647,8.010759,6.410758,9.548775,10.190099,3.415709,0.435539,0.200001,0.081818,0.102480,0.128926,0.000000,0.000000,0.000000,0.000000,1.133884,0.000000,0.000000,0.000000,0.000000 -601584.155000,4612685.550000,4210,3505,96.397537,161.926437,160.240494,148.529755,133.248779,123.356209,120.257034,118.562820,117.934723,118.504974,118.959518,130.926453,150.265289,164.744629,175.447098,185.199173,184.157852,172.025620,149.414047,127.257034,116.364479,113.190926,107.827286,79.116539,62.942993,77.653732,92.207451,68.091759,32.377705,12.638860,9.802497,7.754559,6.548776,7.793402,7.759519,2.761989,0.633059,0.100000,0.011570,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.186777,0.000000,1.086777,0.000000 -601586.955000,4612685.550000,4224,3505,90.207451,162.931427,160.733078,149.749619,135.162827,122.881836,120.485138,119.592583,118.146301,119.369438,119.914894,131.303329,149.700027,165.237213,176.997543,186.650436,184.534729,172.369446,149.840515,127.328117,116.584312,113.096710,107.063652,80.526466,62.947952,79.014069,90.890099,67.625641,32.066963,12.506629,9.733078,7.553733,5.938032,7.982660,7.099187,2.294220,0.800002,0.038017,0.080992,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.155000,4612685.550000,4240,3505,101.560349,159.119858,161.078522,150.541336,134.384308,122.814064,121.219025,118.276878,118.095055,118.855385,120.574394,130.731415,148.260345,164.070267,176.475220,185.417374,184.194229,170.814072,149.293411,126.640511,116.566132,113.161171,108.772743,79.764481,62.747955,77.078529,92.004150,68.582664,31.301674,11.901670,9.888449,6.249601,6.882661,6.948774,7.757866,2.300832,0.557853,0.187604,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601594.155000,4612685.550000,4260,3505,108.894226,156.773560,161.600006,147.294205,135.219849,124.765305,121.938858,119.161995,118.418198,120.021500,120.004974,131.930588,149.814880,164.426453,177.302475,185.550415,184.699173,172.633057,148.831406,127.699188,117.509102,113.591751,106.963646,79.707443,63.161999,78.442978,92.161995,69.178528,32.732254,12.986794,9.723985,6.945468,8.395884,6.793402,7.393401,3.780173,0.185951,0.409092,0.000000,0.000000,0.335538,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601601.155000,4612685.550000,4295,3505,110.224808,154.417374,159.557846,150.095047,136.400833,125.615715,124.020676,120.938034,119.880180,120.202492,120.929771,131.574402,150.392563,165.780991,178.318176,187.946274,185.896698,173.574387,149.359497,128.417374,118.053734,113.657043,108.681831,79.929779,63.037209,79.623993,92.739693,69.012421,32.706631,13.523160,9.880184,8.367783,8.134727,7.733072,8.983486,4.087613,0.676861,0.000000,0.242976,0.000000,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.755000,4612685.550000,4313,3505,101.195053,149.490112,160.300018,151.647125,134.845474,125.109932,121.936378,119.291748,119.184311,119.911583,120.614067,131.242157,149.630600,165.233902,176.250443,185.820663,185.266953,172.275223,148.787628,127.886795,116.605797,114.019020,108.300018,80.250427,62.977703,78.159515,93.027290,70.333069,30.341341,12.542993,9.845473,7.829767,7.512412,6.904147,6.942989,3.742982,0.492563,0.231406,0.138843,0.000000,0.092562,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.555000,4612685.550000,4337,3505,100.587624,155.250427,158.126450,148.308273,132.746292,124.176048,121.019020,118.233902,117.713234,117.886795,118.638855,129.804153,148.539673,163.861984,176.539673,184.184311,182.647110,172.217361,146.663635,125.820679,115.622330,111.506622,106.572739,78.828941,60.961170,77.052078,91.936378,69.845474,29.605804,11.675224,9.688449,5.961168,7.232245,6.645467,7.052080,3.550420,0.548761,0.085951,0.820662,0.175207,0.031405,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.355000,4612685.550000,4371,3505,112.272743,148.409103,157.632248,149.119858,134.574387,125.425629,121.946289,120.095047,119.227280,119.714882,119.871910,130.524796,149.822327,164.995865,177.020660,185.657028,184.243805,172.020660,149.640518,127.475212,116.136375,111.995872,107.409096,79.219025,62.632252,79.334724,93.268593,69.888443,32.781013,12.623158,9.764482,5.740508,6.502494,6.636376,7.325633,2.106616,0.133058,0.180166,0.000000,0.038017,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.955000,4612685.550000,4399,3505,101.685135,153.779343,160.671921,149.308289,134.994232,124.118195,121.729767,119.465302,117.919846,120.506622,119.985962,130.787613,149.043823,164.878540,176.729752,184.589279,183.308273,171.407440,148.333084,126.490097,114.977699,112.142990,106.572739,78.440514,62.217373,77.382660,92.035553,69.052078,30.357872,12.046298,9.688448,5.362822,5.989271,8.115717,7.252079,2.397527,0.704134,0.211571,0.000000,0.116529,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.155000,4612685.550000,4420,3505,95.666954,153.904968,159.433899,151.243820,135.690094,125.491745,123.252075,121.210754,120.376038,120.466949,120.219017,131.458679,150.739685,166.508286,178.772720,186.756195,184.764465,173.194214,149.888443,128.475220,116.789261,114.136375,108.500008,79.078529,64.169441,79.789276,93.863663,70.995880,33.351261,14.615723,9.863657,6.091749,6.967784,8.364479,7.485137,3.490090,0.543803,0.112397,0.000000,0.000000,0.000000,0.080992,0.000000,0.000000,3.642976,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.555000,4612685.550000,4442,3505,104.336372,153.497543,157.638046,147.654572,133.158691,124.257866,121.786797,118.720680,118.315720,119.249603,119.712418,130.935547,148.390106,164.323990,177.001663,184.282654,183.150421,170.555374,148.233078,126.109100,115.266136,111.687622,106.745461,78.257866,61.795059,76.671089,92.910759,69.778534,31.861177,11.833076,9.704152,3.972740,6.269436,5.410756,6.314062,2.114881,0.647109,0.117356,0.000000,0.057025,0.290910,0.018182,0.245455,0.000000,0.000000,0.000000,0.997521,0.000000,0.919835,0.000000 -601633.555000,4612685.550000,4457,3505,94.473572,155.095886,161.624802,149.947113,137.095886,126.757034,124.409927,121.285965,120.327286,121.525635,122.426460,132.765305,151.211578,167.426453,179.409927,187.897537,186.112411,174.442993,150.533890,129.790100,117.418198,113.649597,107.963646,80.583481,65.038040,80.071091,95.748772,71.550438,33.004978,13.749604,9.814896,6.244640,7.527287,8.173568,7.917369,2.176038,0.732233,0.241323,0.244628,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.755000,4612685.550000,4473,3505,97.054558,151.323151,156.513214,146.794205,133.422333,123.009094,119.901665,117.909927,117.513237,117.827286,118.909927,128.951248,147.116531,163.513214,175.719833,184.554565,182.653732,170.595871,146.347931,126.042160,114.579353,110.976044,104.645470,77.141335,60.455395,77.058693,92.323151,67.438866,32.471920,12.001670,9.513241,4.780176,6.029766,6.830592,5.845466,3.203312,0.460332,0.128926,0.017356,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.104133,0.000000 -601641.755000,4612685.550000,4498,3505,116.785141,154.545471,159.000015,150.876053,136.727310,125.933891,124.264473,119.942154,120.636375,121.545464,121.016541,132.900848,151.322327,167.181839,178.809921,186.636368,185.685944,173.710739,151.115723,130.090927,117.727280,113.438026,107.090919,80.322327,64.231422,80.049606,96.404968,71.826469,33.884319,14.286796,9.735558,6.158691,7.888445,7.921502,7.946296,3.164470,0.505787,0.000000,0.000000,0.000000,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.155000,4612685.550000,4520,3505,100.833069,154.204163,158.121490,150.080154,136.352905,124.766136,122.113243,120.402496,120.576050,120.741341,120.691750,131.939682,150.063629,166.154556,177.518204,187.245468,185.493393,173.865311,150.518173,127.485138,116.187622,112.369438,107.154564,77.675224,62.584316,78.815720,94.005806,69.956215,32.104977,12.417374,9.741343,5.034722,7.128115,7.354558,7.408278,3.083477,0.214877,0.168596,0.094215,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.955000,4612685.550000,4549,3505,95.743820,158.694229,160.363647,151.008286,135.132248,126.462814,123.661163,121.504143,119.884308,120.173561,122.429764,132.512405,150.909103,166.570267,178.669434,188.281006,186.446304,174.727295,152.206635,129.776871,118.454552,114.115715,109.090927,80.371925,64.314072,79.843002,95.090927,71.231430,33.818203,14.006630,9.917375,7.638856,7.925636,8.049602,6.660345,3.615709,0.702482,0.079339,0.019835,0.047934,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.937190,0.000000,0.000000 -601658.555000,4612685.550000,4582,3505,106.978531,157.652908,161.057861,151.165298,136.033081,126.966965,123.776886,121.305809,120.710770,122.603333,122.066139,132.330597,151.429764,166.752075,180.504150,188.512405,186.512405,176.462830,151.115723,130.157043,117.528954,113.553741,108.818207,80.123985,62.413239,81.132248,97.834724,73.297539,32.545475,14.752086,9.892581,4.131416,7.183487,7.020676,7.692575,4.190917,0.742151,0.036364,0.000000,0.000000,0.458678,0.000000,0.000000,0.000000,2.414876,1.104132,0.000000,0.941322,0.000000,0.000000 -601662.155000,4612685.550000,4600,3505,98.947128,155.806625,160.930588,150.476044,136.393417,125.071091,121.814888,121.244637,120.252899,122.302483,122.062813,132.228119,150.195053,166.178528,178.707458,186.806641,186.624817,175.137207,150.798355,129.013229,117.319016,112.550415,108.600014,78.996712,61.376881,78.409935,94.872749,72.376877,32.690929,12.873571,9.872746,5.058691,6.341337,6.341336,6.066129,1.837195,0.430580,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.466943,0.000000,0.000000,0.000000,0.000000 -601668.155000,4612685.550000,4630,3505,103.602501,156.933075,162.329773,150.379364,136.966141,124.883484,121.701668,118.833893,118.660339,120.833893,120.891747,130.842163,149.453735,165.883484,178.015717,186.883484,186.602493,173.833908,151.147949,128.197540,115.776047,112.511581,107.627289,79.561180,62.395885,76.585968,95.809105,71.610764,31.842169,12.962828,9.784317,5.130591,5.792578,7.175222,6.544640,1.896698,0.215703,0.052066,0.062810,0.360331,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.955000,4612685.550000,4644,3505,107.796707,160.209930,161.912415,153.400024,139.342163,128.036377,125.441330,122.755386,122.226456,124.573563,123.647942,134.540512,152.565308,168.375229,181.598373,188.945480,189.201675,177.193405,153.160355,131.366959,118.598358,115.838028,110.218193,80.631416,64.259521,80.747116,96.292572,73.226456,33.780186,13.920681,10.019855,6.766129,8.814066,7.939686,7.987617,3.250419,0.828102,0.450415,0.019835,0.114050,0.000000,0.029752,0.007438,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.355000,4612685.550000,4676,3505,109.189270,157.894226,158.993393,150.357040,135.282654,124.357033,121.158684,120.208275,117.646294,120.811577,119.985130,130.795044,148.646286,165.406616,177.588440,185.778519,185.233063,173.026459,149.489273,126.836372,115.712410,111.662819,105.836372,78.009926,59.993412,78.646294,92.869431,69.811577,31.373575,11.645472,9.621507,5.692574,6.825634,6.048771,7.682658,1.665294,0.498349,0.000000,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.955000,4612685.550000,4689,3505,119.073555,163.142181,164.340515,155.753738,137.902512,127.042976,123.786781,121.737190,121.323967,123.613228,123.952065,134.315704,152.175232,169.125641,179.332260,190.084320,188.431427,176.762009,152.431427,130.836365,117.935539,113.720665,107.745453,80.555389,64.142166,79.357040,96.274399,70.861176,34.381836,13.740515,9.795061,4.793399,6.728941,8.002493,7.523154,3.524799,0.660333,0.063637,0.000000,0.120661,0.000000,0.286777,0.000000,0.019008,0.000000,1.289256,2.051240,0.000000,2.484298,0.000000 -601685.555000,4612685.550000,4717,3505,112.765305,165.376877,162.004974,153.294235,138.434723,127.517380,123.071091,121.897537,120.955383,123.029770,122.062820,132.335556,151.699188,167.492569,179.856216,187.930588,187.624802,176.608276,151.889267,129.451263,117.302490,113.062820,107.145470,79.748779,61.434731,76.666138,94.715721,72.145477,32.542168,11.848778,9.740515,5.204145,5.886791,6.366956,6.290921,1.905790,0.284298,0.049587,0.066116,0.000000,0.000000,0.256199,0.000000,0.000000,0.000000,0.000000,0.993389,0.000000,0.000000,0.000000 -601688.555000,4612685.550000,4732,3505,109.221504,170.122314,164.510757,156.122314,140.229752,128.056198,125.295876,123.932236,122.304138,125.477692,124.510750,134.138855,152.147110,169.163635,181.717361,190.386765,188.304123,177.642975,153.783478,131.866119,119.271080,115.320671,109.709106,81.585129,63.238033,80.089264,96.874390,74.725632,33.758698,13.472744,9.973573,5.037201,6.604974,8.628114,6.181831,3.234718,0.785126,0.346282,0.433885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612685.550000,4745,3505,124.107452,160.198349,160.413223,153.066116,138.107437,127.016548,123.917374,122.082664,120.322327,123.834724,122.181831,133.553741,151.685944,167.165298,180.314072,189.528946,187.247955,176.355392,151.942154,129.843002,117.231422,112.785141,106.636383,78.768616,62.330605,77.024818,95.685966,71.487625,31.669439,11.766133,9.694234,4.252903,5.752081,6.708277,6.739681,1.544633,0.434712,0.441323,0.000000,0.000000,0.000000,0.359505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.237190,0.000000 -601693.955000,4612685.550000,4759,3505,119.474396,170.499191,163.705811,154.763657,141.730591,128.507462,126.449608,124.970268,123.879356,125.416550,124.565308,135.945480,154.019852,170.383484,181.441345,191.234711,189.920670,177.995056,153.747131,131.912415,118.714066,115.276054,109.490921,81.499191,63.763657,80.854568,96.953728,72.540512,34.391754,14.009108,9.953737,5.697533,8.340511,7.121502,6.578527,1.897527,0.689257,0.156199,0.085951,0.200827,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.355000,4612685.550000,4776,3505,113.895889,174.193390,166.788437,158.904129,142.449585,129.598358,127.738853,125.788445,123.218193,126.557037,125.590096,136.333908,154.523972,171.995041,183.408264,191.689255,190.978516,178.623138,155.061157,132.664474,120.110756,115.540504,110.400009,81.780174,64.400017,81.052902,96.242989,74.168617,33.697540,14.884315,10.036382,4.868607,7.757866,7.838032,8.710759,3.795047,0.577687,0.322315,0.127273,0.000827,0.004132,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.355000,4612685.550000,4796,3505,118.049591,171.942169,164.330597,155.619858,141.537201,126.512405,125.603317,123.570259,121.578522,124.842987,123.785133,134.082672,151.537201,168.966965,182.008286,189.669418,188.909088,177.289276,153.355392,130.958679,117.892570,114.396706,108.363647,80.000015,62.776878,79.214890,95.685959,71.867790,32.834728,12.510761,9.851260,4.966952,6.680179,7.219848,6.281004,2.404137,0.220662,0.000000,0.000000,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612685.550000,4813,3505,123.605797,176.919846,169.266953,156.845459,143.068604,129.068604,125.614067,125.093407,121.630600,126.043816,123.572739,134.853729,151.919846,170.002487,181.366119,191.019012,189.448761,176.961166,153.184311,131.870270,119.093407,115.167786,109.845467,79.151260,63.052090,77.903328,96.333084,72.085144,32.060352,13.635555,9.985970,3.875217,7.722330,7.094229,6.796708,2.814882,0.414877,0.442976,0.000000,0.099174,0.000000,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.955000,4612685.550000,4839,3505,105.798370,159.368591,162.773544,151.583450,136.467758,125.690910,123.930580,120.409920,119.757027,119.600006,119.905792,132.310745,149.897507,166.368591,177.996689,186.418198,185.137192,172.517349,149.550415,126.922318,116.476036,113.071075,106.145470,78.302498,62.409943,76.368614,94.186798,68.971924,31.633076,12.268612,9.649607,6.309103,5.346290,6.216542,6.852904,3.054553,0.502481,0.147108,0.081818,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.755000,4612685.550000,4853,3505,106.943817,166.737213,164.026474,152.208298,136.811600,125.233078,124.406631,120.778534,120.100845,120.563652,120.852913,131.976883,151.638046,167.034729,178.786804,187.092590,185.861176,173.266144,149.423172,129.274399,116.671089,114.604973,108.472748,78.695885,65.183487,79.100845,95.323982,71.001671,33.439690,13.456217,9.861175,8.629765,7.390095,9.437204,8.184310,3.368603,0.759506,0.183472,0.077686,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.355000,4612685.550000,4866,3505,112.491753,170.756226,165.805817,153.747971,136.863663,125.979355,124.202492,122.235550,120.987617,121.293404,121.243820,132.657043,153.219040,168.524826,179.136398,188.293427,187.896729,173.533096,150.681854,129.466965,117.847122,114.574387,108.136375,79.714882,64.309937,79.590927,96.706627,73.384315,33.888447,13.914894,9.830599,8.335552,6.042987,9.051254,7.416542,3.395877,0.977688,0.370249,0.131405,0.000000,0.119009,0.151240,0.000000,0.047934,0.000000,0.000000,1.009917,0.000000,0.000000,0.000000 -601717.955000,4612685.550000,4879,3505,116.080177,166.931412,166.757858,152.633896,138.022324,124.220673,123.873566,120.179352,119.898354,121.113235,120.377693,132.509933,151.080170,167.121475,178.344620,187.311584,186.171082,172.799164,148.857040,129.063644,116.658684,114.071907,107.154556,79.071907,63.741344,78.600838,95.419022,69.881828,32.691757,12.444644,9.741341,8.058693,6.719021,7.544641,7.104970,4.402489,0.652068,0.219835,0.099174,0.000000,0.069422,0.000000,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.355000,4612685.550000,4896,3505,109.321487,167.445465,167.949585,153.528107,137.792572,127.949593,124.635544,122.057030,121.742981,122.685127,122.495041,133.098343,151.172729,168.511566,180.428925,188.602478,186.338013,173.817352,150.189255,129.329758,117.379341,115.701653,108.718185,79.304962,64.007454,77.891747,96.544632,69.668617,32.941341,14.029770,9.883490,8.105798,6.567781,7.333898,8.844640,3.289264,0.205786,0.028099,0.131406,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,1.166116,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612685.550000,4917,3505,108.330597,169.107452,165.033081,155.281006,138.611572,126.214882,123.809929,121.462814,120.867775,122.537201,121.545464,132.231415,151.710754,168.388443,179.876038,188.793396,187.190079,173.661163,150.140518,130.214890,117.661163,114.454552,107.818199,79.033073,62.983486,78.694229,94.776878,70.454559,32.975224,12.402497,9.801672,8.652906,6.540509,7.276046,8.401667,2.837198,0.310745,0.433885,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.955000,4612685.550000,4934,3505,111.804970,170.788437,165.871078,154.846283,138.152084,125.234718,124.317375,122.052902,120.300835,122.234718,120.813232,132.317368,151.920670,168.251236,180.019836,189.052902,186.953720,172.986786,150.441330,128.904144,116.937202,113.796707,107.945465,80.218193,62.284317,78.209930,96.714058,70.581833,31.523987,12.980183,9.813242,8.478527,6.491749,8.652080,7.039680,2.290915,0.359505,0.249588,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.955000,4612685.550000,4949,3505,122.812408,169.688431,164.027283,154.870255,139.019012,125.258690,125.250427,123.035553,121.126457,123.547951,121.787621,133.746292,152.506622,168.713226,180.738022,189.812408,188.341324,175.184311,150.771088,129.589264,117.671913,115.085136,108.481834,79.721504,64.217377,80.142990,96.713234,71.275223,32.098366,14.879357,9.862003,6.779350,7.522327,6.902491,7.141333,2.668605,0.690084,0.244629,0.033058,0.000000,0.067769,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.555000,4612685.550000,4962,3505,119.981003,174.666931,166.642151,156.683472,140.419006,126.526459,126.096703,124.708275,122.666954,125.435547,123.385963,135.204147,153.534698,170.534714,181.956192,189.807434,189.757843,175.261978,149.890076,130.476868,118.047119,115.228943,108.336380,80.286797,64.650436,79.890099,95.518188,71.104988,33.369442,13.962001,9.848780,7.318194,7.635550,6.570260,8.183484,2.699182,0.476861,0.152067,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.755000,4612685.550000,4978,3505,112.681831,182.954559,168.508270,157.392578,140.657043,127.268608,127.268608,123.475220,123.491753,124.466957,122.045471,135.285141,154.169434,170.384293,180.814072,191.756210,188.276871,174.425629,152.392578,129.929764,118.615715,116.731422,109.136383,80.293404,64.417374,79.657043,95.615715,69.442162,33.128117,13.527291,9.921507,6.926459,7.119847,8.136377,7.340507,2.719016,0.306612,0.123967,0.000000,0.157852,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.555000,4612685.550000,4997,3505,127.015717,184.462006,172.015717,159.850433,143.032257,128.676865,128.139679,124.966125,124.470261,126.561165,123.759514,136.858704,153.759521,171.709930,182.792587,193.957870,189.990921,175.718201,153.362823,131.106628,120.147942,117.131416,111.536377,81.222328,66.065308,81.966125,96.569435,72.114891,34.726467,13.769439,10.139688,8.934726,7.725632,8.438857,8.813237,5.110754,0.499175,0.431406,0.061157,0.113224,0.000000,0.000000,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.155000,4612685.550000,5020,3505,138.066132,179.859497,169.239670,155.454544,140.471069,125.694237,126.305801,122.768616,121.942162,125.619858,121.776878,133.958694,152.008270,169.082642,180.776855,190.537186,187.314056,172.611572,149.578506,129.305801,117.347122,113.586792,108.272743,77.652916,62.471096,80.099197,93.917381,67.975220,31.776878,12.181835,9.842995,8.544642,5.789268,5.946293,7.133897,2.512405,0.478514,0.000000,0.031405,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601749.355000,4612685.550000,5036,3505,127.361168,183.361160,170.898361,159.931412,142.253723,128.344635,128.625626,124.757858,124.014061,128.485138,123.171082,136.030594,153.443817,171.617371,182.080170,192.782654,189.501663,173.526459,151.402496,130.559509,118.468605,115.022324,110.063644,81.460342,65.162834,81.369431,96.435547,70.832245,31.943819,12.622331,10.005804,10.479354,7.327286,6.808279,6.345467,2.978520,0.623968,0.038017,0.263637,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,1.194215,0.000000,0.000000,0.000000,0.000000 -601752.155000,4612685.550000,5050,3505,128.981827,186.353729,172.452896,163.692566,143.411575,130.419846,130.304138,126.990097,126.039673,130.684311,125.882660,137.196701,154.800003,173.089264,184.990082,193.626450,191.213226,175.981827,152.502487,132.163651,119.932236,117.560333,111.800003,82.122337,65.452911,82.477707,97.006622,70.378532,34.485970,13.766961,10.163656,10.713240,8.048775,9.281006,8.861170,3.480999,0.497522,0.166116,0.132232,0.214877,0.000000,0.000000,0.060331,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.955000,4612685.550000,5079,3505,150.590103,192.069427,174.375214,162.209930,144.705811,130.085968,128.424820,127.176880,125.962006,130.400024,125.424805,136.573578,154.557037,171.747116,184.970245,194.333878,191.333878,174.119019,150.838043,131.986801,119.854568,116.209930,111.672745,81.581841,66.168617,80.895889,96.135559,68.482666,30.565310,12.355390,10.152085,10.987617,6.190095,7.363648,6.996704,3.207446,0.199175,0.064463,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.955000,4612685.550000,5094,3505,137.411591,189.857880,173.510773,164.965317,144.568619,130.800018,130.419846,126.824806,126.791748,132.031418,125.709106,138.618210,155.114059,173.320679,185.651260,195.783493,192.337219,175.667786,151.766968,132.593399,120.370262,117.337204,111.709106,81.552078,66.758698,82.444641,96.783485,69.750427,33.940510,12.276051,10.155392,12.171092,6.761995,6.968608,7.852079,4.083481,1.023969,0.206612,0.231405,0.184298,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.955000,4612685.550000,5109,3505,146.729782,197.052094,174.440521,165.969437,146.870270,132.754562,131.118195,128.688446,128.275223,133.266953,127.242165,139.382660,156.952911,173.638870,186.506638,196.506638,193.019028,176.523163,154.399200,133.771088,121.457039,118.581009,113.481834,83.126472,67.523163,85.853745,95.985962,68.828949,32.126465,13.842993,10.316547,11.407454,7.123151,7.568608,7.785965,3.688437,0.546282,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612685.550000,5123,3505,110.725632,166.114059,165.056198,151.957031,138.064468,127.642982,124.709099,122.171906,122.262817,123.279343,124.428108,135.353729,153.890915,169.287613,182.758682,189.957031,187.923981,176.543808,152.651245,131.353729,120.642982,115.411575,111.981834,83.362000,68.006622,83.138855,96.932243,71.452904,35.196712,13.992580,10.180183,7.837202,8.638856,8.404972,8.276873,3.338025,0.639672,0.290083,0.000000,0.000000,0.000000,0.000000,0.082645,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.555000,4612685.550000,5137,3505,111.649605,153.616547,161.624802,151.385132,138.376877,129.137207,126.484314,123.649597,122.748772,123.682655,123.095879,135.087631,153.128937,168.649597,181.765305,189.897537,188.310760,175.145462,151.831421,131.814896,120.004974,116.434723,111.327286,82.621506,67.200020,83.566956,97.409927,71.261177,34.343822,13.885969,10.120681,5.114886,7.703318,7.856209,6.025631,3.008274,0.513225,0.026446,0.202480,0.000000,0.000000,0.000000,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.755000,4612685.550000,5158,3505,100.128937,161.401672,164.914062,151.872742,139.707458,126.773560,125.897537,123.467773,123.459511,123.682648,124.021500,136.236389,154.162003,170.872742,182.773560,189.707458,189.021500,177.897537,153.699188,131.690918,121.071075,117.616531,111.872734,84.046288,68.335556,83.831413,98.252899,73.550438,36.079361,15.360350,10.170267,7.561996,8.298360,9.049600,7.867783,3.838024,0.483474,0.257026,0.143802,0.000000,0.049587,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.090083 -601776.955000,4612685.550000,5174,3505,90.550438,155.211578,159.368607,151.467789,136.699188,127.856209,123.335548,121.385139,122.649597,122.889267,124.996704,133.963654,152.872742,168.128937,180.310760,189.368607,187.517365,175.335556,151.757034,129.376877,119.905800,117.707458,112.054558,84.376869,67.790100,84.533905,98.203339,73.930603,33.988449,14.704150,10.186796,7.004144,7.905797,7.399185,8.749599,5.033069,1.652895,0.680993,0.228926,0.052066,0.026447,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.955000,4612685.550000,5189,3505,94.555389,153.631424,164.590103,151.714066,140.681015,129.061172,128.804977,126.416542,125.804970,126.747116,126.937202,138.375229,157.185150,173.019852,184.887589,193.755356,192.705765,180.383484,156.383484,136.036377,122.862816,119.152077,116.036385,87.168617,70.416550,86.714066,97.639687,73.631424,36.284317,15.362828,10.548779,8.263649,8.723980,9.988442,8.381832,5.055382,1.402483,0.159505,0.137191,0.000000,0.000000,0.000000,0.000000,0.072728,0.000000,2.623141,0.000000,0.000000,0.000000,0.000000 -601783.755000,4612685.550000,5208,3505,104.371086,158.156204,163.181000,150.759506,139.643799,127.379349,125.825630,124.395882,124.718193,123.833893,125.676872,135.404129,154.478516,171.866943,183.057022,192.164459,189.966125,177.139679,154.528107,133.222321,120.660339,117.519844,113.354553,85.271912,69.709930,83.007446,98.222328,72.784309,34.106632,13.070265,10.304977,7.009930,7.165301,8.327287,7.971087,2.667776,0.390084,0.347935,0.000000,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.155000,4612685.550000,5225,3505,105.131416,159.271912,163.007446,153.238846,138.247116,128.990906,127.164467,124.718185,124.610748,124.817360,125.990913,137.123138,155.147934,171.172745,183.271927,192.181015,190.470261,177.577698,154.040497,131.271912,121.329758,117.718185,113.172729,85.255386,68.387611,83.941322,97.742981,72.354568,34.073574,13.338033,10.288448,6.824806,6.650426,7.066955,7.342162,4.828108,0.503307,0.034711,0.307439,0.111570,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.955000,4612685.550000,5254,3505,97.747948,155.037186,164.979340,154.194214,138.136368,129.995880,127.342995,124.723160,125.566132,126.194229,126.822327,137.483490,155.739670,172.376038,184.351242,194.508270,192.219009,178.805786,154.202484,132.400848,122.376053,119.615715,114.227287,85.987617,69.764481,84.698364,97.681831,71.376053,33.450432,14.188446,10.384315,5.352078,6.720675,8.975221,7.265302,2.212402,0.645457,0.067769,0.249587,0.067769,0.101653,0.091736,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.155000,4612685.550000,5270,3505,112.314888,156.612411,162.414062,154.133072,139.860336,129.133072,126.653732,125.372742,122.926460,124.719849,126.033897,136.951248,155.876877,172.290100,184.124802,192.438858,191.257034,178.678528,153.876877,133.025635,122.182655,117.819023,113.100014,85.232246,69.083488,83.604149,98.595871,70.934731,33.488445,12.367786,10.281838,5.223977,7.894228,5.722324,5.995879,2.738850,0.931407,0.629753,0.505786,0.256198,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.355000,4612685.550000,5291,3505,108.780182,152.460342,159.997528,149.956207,138.121490,127.485138,126.476875,126.220680,124.352913,126.807457,127.146301,138.501663,157.146286,172.939682,185.295044,193.195877,191.981003,179.625626,154.906616,134.014069,121.931419,118.931419,113.881836,86.063652,67.898361,84.005806,98.898361,71.749603,32.666962,14.638034,10.352911,7.276872,7.519847,8.123154,6.988441,3.883478,1.254548,0.580993,0.210745,0.238017,0.385952,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.355000,4612685.550000,5306,3505,115.706627,159.204147,168.468597,157.162827,139.675217,130.204147,128.592575,125.336372,127.295052,127.319847,128.700012,138.956207,158.724808,173.642151,185.650406,194.361145,192.468582,180.757858,156.361160,134.162827,123.666954,119.939682,116.154556,86.592575,70.146294,85.402489,99.782654,73.799187,35.336384,13.858695,10.559523,4.998361,7.728941,8.642162,8.003320,3.860336,0.441324,0.000000,0.644631,0.048760,0.000000,0.024794,0.000000,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.955000,4612685.550000,5329,3505,105.861168,164.614899,163.532257,154.218201,141.383484,130.970261,128.276047,126.664482,125.375229,128.714066,127.606628,138.466141,157.201675,173.094238,183.747131,193.044647,192.606628,179.424820,155.722336,134.011597,121.375221,119.681007,113.127289,85.879349,69.714066,86.110756,97.813232,72.920677,34.416550,13.612414,10.284317,6.442986,7.657863,7.968608,8.518196,2.842156,0.457852,0.319009,0.528927,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.755000,4612685.550000,5358,3505,108.814056,155.764465,165.276855,155.409088,142.433884,131.376038,127.747940,128.119843,125.962814,128.202484,128.128113,139.714874,157.772720,173.417358,186.268600,194.904953,192.392563,180.276855,156.541321,135.342972,124.219017,119.764473,116.136375,87.400841,70.037209,83.830589,97.714882,71.880173,34.301670,13.937207,10.557871,6.293400,7.092576,5.609928,7.720673,3.170257,0.647935,0.121488,0.321489,0.138017,0.000000,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.355000,4612685.550000,5371,3505,110.180191,160.609940,164.163666,156.081009,141.800018,131.452911,130.246307,127.948784,125.833084,127.651260,129.485977,140.370270,159.890930,174.089264,187.766953,195.494217,194.295868,181.279343,157.833084,135.833069,124.568619,121.163658,115.618202,86.775230,70.750435,85.527298,99.990105,71.750435,36.279358,13.374397,10.510762,6.537203,7.280180,8.945468,9.047121,3.471083,0.229753,0.219835,0.476860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.155000,4612685.550000,5390,3505,100.609108,161.518204,167.741348,157.361176,142.724823,132.733078,130.782669,127.799187,127.691742,129.691757,129.617371,140.237213,158.460358,175.501678,187.493408,196.757874,195.733078,182.790939,158.154572,135.733078,124.220673,120.848770,116.518188,88.716545,72.071922,86.642166,100.104973,74.460342,34.865307,14.005803,10.592582,6.358689,8.259517,8.379352,9.170263,3.315711,0.717357,0.065290,0.166943,0.000000,0.000000,0.072728,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.955000,4612685.550000,5404,3505,114.886803,165.688446,163.762833,153.886795,140.556213,130.209106,127.275215,126.167778,125.539673,127.663643,128.911575,138.423996,156.779358,174.184326,186.936386,194.531433,193.762833,181.663666,155.779358,133.961166,122.853729,119.043808,114.300003,86.572739,69.704979,84.184319,98.242165,71.895065,33.647125,13.771091,10.390928,5.717366,8.066130,7.812410,7.057863,3.322322,0.545456,0.079339,0.152067,0.054546,0.000000,0.000000,0.053719,0.061157,0.000000,1.133058,0.000000,0.000000,0.000000,0.000000 -601828.955000,4612685.550000,5434,3505,116.433899,165.838837,167.607437,156.351242,143.987625,132.194229,129.805801,128.756210,128.111588,130.070267,130.913239,141.681839,158.541321,175.136368,188.739670,195.871918,195.128113,183.268600,158.004135,137.070267,124.888443,121.987617,117.318199,88.822327,71.995880,86.450432,101.971092,75.929771,36.491756,14.373572,10.665308,7.033897,8.689271,9.419022,8.641335,3.602487,1.082647,0.121488,0.103306,0.051240,0.000000,0.000000,0.001653,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.555000,4612685.550000,5452,3505,112.816544,162.271088,168.014877,157.502487,143.279343,133.990112,130.725647,128.758698,128.122330,130.634735,131.386795,142.676041,160.320663,176.411575,189.733887,196.692566,195.229752,184.188431,157.940506,138.337204,126.981842,122.461182,118.163658,89.362007,73.502502,88.114075,100.494240,75.907463,35.304150,15.078530,10.742168,6.803318,8.553734,9.458692,8.692575,3.558685,0.528101,0.319009,0.247934,0.059504,0.000000,0.000000,0.155373,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.955000,4612685.550000,5469,3505,111.329765,163.341309,160.242157,153.225632,138.985977,130.118195,127.729759,127.729767,129.886795,132.258682,133.663651,144.572739,162.721512,178.184280,190.440491,199.622299,198.407425,184.845444,161.647125,137.729752,126.176048,122.870255,117.300003,89.895058,71.523155,87.399185,100.217361,73.795891,35.775227,14.508282,10.663654,5.604970,9.536378,7.257863,6.754558,4.287612,0.769424,0.517356,0.432232,0.386777,0.419835,0.000000,0.006612,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.955000,4612685.550000,5489,3505,107.453735,167.445480,165.742996,157.833908,141.594238,133.461990,128.957855,128.263641,128.271927,129.486786,130.288437,141.304977,158.552917,176.073578,187.528122,197.197540,195.098373,184.214066,159.172745,138.288452,126.552902,123.627289,116.627289,90.032249,71.784317,85.866959,101.230591,75.131424,34.495060,13.890925,10.602499,6.332242,7.575222,9.313236,7.096706,4.362816,0.913226,0.447109,0.130579,0.495868,0.000000,0.647935,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.755000,4612685.550000,5513,3505,129.561996,173.371918,164.330582,157.776855,144.049606,133.000015,128.561996,129.247940,128.099182,130.677689,132.165298,142.115723,159.330582,176.520676,188.727280,197.000000,196.438019,183.561996,159.553726,138.388443,125.826462,122.545471,117.090927,89.586784,71.338860,86.181824,100.727280,74.818192,36.884319,12.400842,10.644648,8.296705,9.082658,9.636377,6.776044,3.540505,0.590911,0.223141,0.053719,0.000000,0.000000,0.000000,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.555000,4612685.550000,5537,3505,107.604988,173.479355,164.909103,160.438034,145.446304,131.421509,127.057869,126.504150,125.272743,129.281006,128.619858,139.842987,157.950424,175.752075,187.355392,196.140518,195.628113,184.132248,159.520676,137.826462,126.380180,122.033073,117.363655,88.900841,71.743820,86.768608,101.619850,76.859520,34.917374,16.121506,10.669440,4.830587,7.854561,7.630590,7.891749,4.600835,1.021490,1.632233,0.161158,0.404133,0.081819,0.548761,0.023141,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.555000,4612685.550000,5567,3505,111.816544,169.259506,165.838013,158.664459,144.077698,131.466141,129.928940,128.267792,127.242996,130.788452,129.970261,139.937210,157.705795,174.300827,186.953705,195.705765,193.747101,183.705795,158.961990,137.548782,125.714066,122.879356,116.309113,89.036385,71.689278,85.433075,99.234734,75.895897,34.003326,14.479357,10.573573,5.022325,7.275219,6.551252,8.193401,4.145462,1.195870,0.354546,0.519836,0.134711,0.012397,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.755000,4612685.550000,5583,3505,111.938866,176.492569,165.798355,158.335556,144.649612,133.699188,130.409943,129.244644,128.666138,132.219849,130.401672,141.236389,159.343811,175.442993,187.071091,195.699188,194.038025,184.641342,159.666122,137.079361,126.409935,122.484322,118.509109,89.004982,72.079369,87.038040,101.137215,77.310768,34.740513,14.776876,10.773574,3.128933,6.900014,6.203319,6.549599,2.018187,0.305786,0.063637,0.123141,0.133884,0.037191,0.000000,0.102480,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.955000,4612685.550000,5609,3505,125.960342,180.920670,161.598373,159.598373,145.267792,133.813232,134.358688,133.937195,132.804977,136.672745,134.028122,143.879364,160.052917,178.854553,190.904129,199.689255,199.176865,185.821487,163.176880,140.548782,129.433075,124.127274,120.309097,91.523972,73.449600,89.457855,102.069435,76.647957,36.119026,16.294231,10.937208,5.033894,8.085136,5.546290,7.104971,2.928933,0.309092,0.971902,0.000000,0.000000,0.100001,0.004959,0.005785,0.000000,0.000000,0.000000,1.674380,0.000000,0.000000,0.000000 -601866.555000,4612685.550000,5622,3505,131.370270,179.494232,169.386795,156.841324,144.709106,131.204971,129.775208,128.213226,126.791740,130.279343,128.287613,140.328949,156.791748,174.262833,186.122330,196.477707,194.560349,182.337219,159.419846,136.469421,124.791740,121.560333,115.800003,88.246292,69.932243,86.287621,98.833069,74.527298,33.519028,14.566959,10.527291,5.450424,6.733071,6.705797,6.328938,3.828933,0.559506,0.119008,0.125620,0.000000,0.035537,0.000000,0.000000,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.955000,4612685.550000,5639,3505,123.500008,168.830597,169.706635,154.640518,142.144638,131.458679,130.847122,127.293396,126.086784,127.533066,127.301659,138.781006,156.433899,171.549606,183.871918,192.086792,191.301666,178.285141,153.938034,133.599182,123.607445,120.433891,113.954559,85.450432,70.425636,83.805801,97.731422,70.582664,34.103325,13.119854,10.359524,7.280178,8.922327,9.001664,6.572740,3.511577,0.466117,0.407439,0.558679,0.000000,0.000000,0.000000,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.155000,4612685.550000,5655,3505,112.146301,170.385941,169.716522,157.039673,143.552078,131.874390,130.510757,127.461174,126.609932,127.791748,127.866127,138.370255,157.403305,172.874390,183.874390,192.328934,191.494217,179.105789,155.361984,134.105804,122.923981,120.047951,112.981834,86.436378,70.684311,83.081009,97.618195,71.163651,32.965305,13.935556,10.271094,7.818194,7.938030,8.162823,7.567781,3.752900,0.411572,0.249588,0.216529,0.253719,0.039670,0.146281,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.555000,4612685.550000,5677,3505,122.422333,176.604141,170.364471,157.538025,142.124802,129.290100,128.538025,125.868607,124.637199,125.182655,124.761169,136.703323,156.190918,170.959518,181.835556,191.397537,188.885132,176.852081,152.100006,132.562820,121.785965,118.579353,113.190926,84.785965,68.678535,83.033905,96.009109,70.587624,33.785973,12.371093,10.290103,7.654558,6.418192,6.790092,5.877698,2.961991,0.142149,0.404960,0.047934,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.955000,4612685.550000,5699,3505,114.350433,172.185120,168.887604,158.532242,141.424789,129.995041,128.598358,126.028099,125.474380,126.300827,125.928932,137.218185,154.838013,171.102478,183.573563,190.391739,188.705795,177.251236,152.920670,132.879349,121.102486,117.945457,114.945457,85.920677,69.358696,83.623161,95.854553,69.664482,32.970268,13.255388,10.449605,10.281832,6.799185,8.379351,6.930591,3.124800,0.554547,0.130579,0.014050,0.095868,0.048760,0.000000,0.042975,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.155000,4612685.550000,5715,3505,120.271919,175.057037,171.982666,159.338043,144.619034,131.544647,129.767792,127.420670,127.114891,127.916542,127.453728,138.362823,157.197540,173.420685,184.569443,192.850433,192.023987,177.635559,154.338043,135.404144,123.032242,120.445465,114.081833,85.594223,69.784309,84.445465,98.057037,72.693398,33.271919,14.090927,10.371094,8.557866,7.755385,6.869434,8.229766,3.495049,0.483472,0.051240,0.195868,0.000000,0.000000,0.000000,0.090910,0.000000,0.000000,0.000000,0.000000,2.423967,0.000000,0.000000 -601888.155000,4612685.550000,5730,3505,116.293404,173.306625,168.942993,157.504959,140.050430,128.562820,128.166122,125.174393,124.942986,125.959518,126.736374,137.653748,155.728119,171.232239,182.653717,191.414047,190.314880,176.876877,153.240509,133.058685,122.083481,120.579353,114.100014,86.860344,70.174393,83.728111,97.141335,71.513237,33.579357,13.319025,10.372746,7.554556,7.494229,7.393402,7.029765,2.452899,0.737192,0.576860,0.131405,0.211571,0.181818,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,2.028099,0.000000,0.000000 -601893.355000,4612685.550000,5756,3505,105.816544,175.626450,169.147110,160.618195,148.006622,133.857864,133.370270,129.849594,129.122330,130.609924,129.907455,140.800003,159.800003,176.229752,186.279343,195.684311,195.171906,181.411575,157.750427,137.502487,126.428116,121.742165,116.800018,88.213234,73.084312,85.618195,99.915718,72.725632,34.155396,16.433077,10.618201,10.083486,9.243816,10.816543,10.260345,5.066125,1.176035,1.273555,1.519010,0.423141,0.000000,0.235537,0.000827,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.755000,4612685.550000,5773,3505,127.971092,183.111588,171.913239,162.020676,146.185974,132.450424,131.409103,129.285141,127.607452,130.805801,128.433899,139.855392,157.582657,174.334732,184.946304,194.805801,192.640518,180.053741,156.161179,136.219025,125.037209,121.409103,116.500015,87.194229,72.144646,85.698364,98.276878,73.533073,34.698368,14.367787,10.590928,8.305800,7.096706,9.207453,8.434726,3.427281,0.899176,0.200001,0.428101,0.003306,0.000000,0.000000,0.057025,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601901.955000,4612685.550000,5799,3505,110.343811,180.740509,172.476044,159.509109,143.823151,129.401672,129.459518,126.542160,126.674393,128.492569,126.244644,138.195053,155.649597,172.385132,183.608276,193.740509,190.046295,177.046295,153.699188,134.476044,122.566956,119.525635,114.781830,84.145470,70.054558,83.550423,96.922325,70.360344,33.368614,14.880182,10.434730,8.161172,6.505797,7.514887,7.059517,3.453726,0.714051,0.285125,0.039670,0.009918,0.061157,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.755000,4612685.550000,5813,3505,108.165306,183.953720,173.681000,159.672729,143.664444,128.672745,128.515717,127.267776,126.003319,129.069427,126.309105,137.978500,155.623138,172.424774,182.507446,193.722305,189.813217,177.350418,153.193390,133.978531,122.978523,119.871086,114.854553,86.168617,69.697540,84.218201,96.928940,70.854568,32.333900,14.638862,10.441341,10.038031,7.889270,7.224806,7.752908,3.496703,0.425622,0.038843,0.061157,0.200827,0.023967,0.000000,0.060331,0.086777,0.000000,1.231405,0.000000,0.000000,3.810744,0.000000 -601909.755000,4612685.550000,5838,3505,135.698364,189.829758,173.193390,161.457855,146.499176,131.978531,132.085968,128.598358,128.507446,132.036377,128.887619,139.970245,157.342148,173.862808,185.515701,195.557022,193.276031,177.895874,155.705795,136.375229,125.317368,121.895882,116.854553,87.218193,71.375221,85.912407,99.466125,71.581833,33.788452,15.300016,10.623158,9.933072,8.485138,8.217368,8.800014,2.934718,1.411573,0.326447,0.155372,0.052893,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.955000,4612685.550000,5859,3505,130.754562,188.804138,171.300003,165.293396,149.450409,135.202499,134.557861,131.475220,130.673569,133.772751,130.028946,141.020660,157.871902,175.194214,187.995880,197.342987,194.971085,180.632233,158.491730,139.111572,127.285141,124.458694,117.863655,88.714890,72.929771,88.929771,99.789276,72.111588,36.376053,14.419853,10.714894,11.700016,7.090094,6.981830,8.686789,2.935544,0.886779,0.401654,0.717356,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.330579,0.000000,0.000000,0.000000 -601920.955000,4612685.550000,5894,3505,148.458694,193.621490,175.844635,165.328110,146.520676,132.793411,131.873566,128.972748,128.588440,133.621490,127.332253,139.315720,155.799179,173.931412,186.493393,195.700012,193.700012,177.014053,155.443817,136.716537,125.096710,122.559525,117.245476,88.981018,73.278542,88.501678,99.700020,71.923164,34.840515,15.510762,10.658696,12.529768,7.039683,9.276048,8.214890,4.695050,1.222316,0.870249,0.850414,0.056199,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.685951,0.000000 -601931.755000,4612685.550000,5948,3505,109.920677,160.970261,166.656219,156.400024,140.565308,130.681015,129.259521,126.871094,125.515724,126.838036,128.325638,139.333908,156.342163,171.970261,183.804977,192.457870,191.102493,178.523987,155.714066,134.705811,123.697540,120.276054,115.490921,88.028122,70.499191,85.019852,99.408279,72.590103,34.623161,14.166133,10.499193,6.145464,7.403320,7.588443,7.686790,3.387612,1.251243,0.110744,0.000000,0.000000,0.000000,0.000000,0.079339,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601949.155000,4612685.550000,6035,3505,107.870262,160.182663,167.331421,156.422333,139.447113,131.116547,128.835556,127.513237,126.934723,127.744644,128.885132,140.190918,157.397537,173.546295,184.901672,193.951248,193.455383,180.777695,157.430588,136.108276,125.554558,121.703316,116.736374,87.397537,71.571091,88.521500,99.562820,72.066956,34.033905,13.809936,10.612415,5.536374,7.606626,8.781831,8.752080,3.420669,0.514877,0.233885,0.172728,0.000000,0.057025,0.000000,0.051240,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.555000,4612685.550000,6167,3505,117.198357,156.479355,165.909103,157.743820,143.826462,132.016541,130.190094,127.231415,127.752075,129.462814,130.057861,140.380188,158.785141,174.661163,186.404953,195.661163,194.438019,182.057846,158.909103,137.884308,126.297531,122.719017,116.272736,88.214890,70.380180,86.438034,99.851257,74.752083,34.652912,13.716548,10.570266,5.484309,6.093402,6.322327,6.104971,2.240502,0.885126,0.176860,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.947934,0.000000,0.000000,0.000000 -602011.755000,4612685.550000,6348,3505,127.773567,175.029770,168.095886,162.219849,147.170258,136.054565,132.029770,130.203323,129.542160,132.104141,132.079346,142.971909,160.467789,176.814896,189.186783,198.162003,196.980179,186.591751,161.930588,140.434723,129.203323,123.616539,119.781830,91.492577,73.467781,89.294228,102.533897,76.947121,35.038036,14.657868,10.889276,6.324805,9.619025,8.406627,6.476045,3.051247,0.226447,0.000000,0.061984,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602027.555000,4612685.550000,6427,3505,127.976044,180.926437,170.306625,163.323151,149.595886,136.595886,135.273560,132.438858,131.571091,134.810760,133.521500,143.149597,160.058685,178.670242,190.314896,199.777695,199.281830,187.364456,163.356216,142.579346,129.488449,125.422325,120.190926,92.199188,74.017380,88.777702,102.711586,75.587624,36.199196,13.593407,10.926465,4.316538,7.739685,7.392576,7.720675,1.811576,0.276860,0.115703,0.062810,0.000000,0.004959,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.300827 -602034.555000,4612685.550000,6462,3505,126.523148,182.373581,174.861176,162.646286,146.125626,134.505798,131.745468,131.472733,129.505798,134.844635,132.927277,144.638031,160.877701,179.646301,192.059525,201.621521,200.836395,189.406631,164.811584,142.861160,130.638031,126.778519,121.472740,93.737198,75.852913,90.431412,102.960342,78.530594,35.894234,14.152084,11.042995,6.322327,7.018197,7.492576,8.576047,5.249597,0.644630,0.059505,0.450414,0.068595,0.000000,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.355000,4612685.550000,6491,3505,100.015724,168.361984,175.469421,160.056198,142.444656,129.742157,130.271088,126.725632,125.196709,126.519020,127.940514,140.163666,159.361984,175.634720,187.609924,197.452896,195.700836,181.502487,158.246292,136.353745,125.494232,122.328941,116.527283,88.543816,71.676048,87.990097,101.841339,74.056213,35.998367,14.219024,10.593407,10.159517,8.339684,8.821501,11.049600,7.198358,1.465292,1.311573,1.357853,0.206612,0.280992,0.214877,0.684298,0.400827,1.159504,0.590909,0.000000,0.000000,0.000000,0.000000 -602048.755000,4612685.550000,6533,3505,117.305801,182.884308,178.314056,161.057846,146.066116,133.363647,132.884308,129.495880,128.520676,130.057861,130.537201,142.140503,160.752060,177.181824,189.619827,199.206604,197.768600,184.776871,160.049591,138.677689,126.892578,124.487617,118.818199,89.264481,74.661171,88.264481,103.735550,75.380180,36.322338,14.903323,10.801672,8.323153,8.810757,10.345469,8.684311,4.196704,0.785953,0.028926,0.190083,0.003306,0.041322,0.000000,0.004959,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602053.755000,4612685.550000,6558,3505,133.800842,192.602493,180.404144,167.131424,147.817368,134.875229,135.610764,131.420670,131.445480,132.643814,131.900024,144.048782,161.966141,179.395889,191.214066,201.470261,199.908279,185.619034,161.751266,139.817368,128.652084,125.040512,120.536385,91.015724,76.809113,90.238861,103.379356,74.933075,37.280186,16.505804,10.957870,10.838857,7.943816,10.442989,10.848775,4.894224,1.036366,0.306613,0.371076,0.000000,0.108265,0.328099,0.000000,0.021488,0.000000,0.000000,0.000000,1.135537,0.000000,0.000000 -602057.555000,4612685.550000,6577,3505,131.550430,181.851257,182.685974,166.214874,149.776855,135.380188,135.933899,132.214890,131.462814,134.338852,131.942154,145.958679,162.966949,181.033081,192.743820,201.958679,200.760330,184.834732,161.727280,138.983475,127.785141,124.801674,119.727295,89.198372,73.752090,89.066132,102.033073,75.000023,36.520679,13.700844,10.884316,11.386792,9.295883,11.714891,14.228115,6.190918,1.948763,1.523970,0.756199,0.795869,0.399174,0.188430,0.055372,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.355000,4612685.550000,6621,3505,119.257027,182.411575,173.072739,159.502502,142.494232,130.874390,130.923981,128.023148,127.370262,129.585144,127.700844,140.403336,158.899185,176.717361,188.403305,198.957031,197.213226,183.196701,159.295868,137.114075,126.527290,123.857864,117.800018,88.444641,74.122330,87.882660,101.981834,73.535553,34.560349,14.547953,10.709110,11.203321,6.462821,8.154559,8.434725,4.245462,0.812399,0.433885,0.212397,0.114876,0.483472,0.104132,0.000000,0.100000,0.000000,0.000000,1.044628,0.000000,0.000000,0.000000 -602069.355000,4612685.550000,6636,3505,125.030594,174.096710,172.518188,164.642151,148.162827,135.162827,133.989273,130.038864,128.600845,132.278534,129.534729,140.799179,156.840500,174.022324,184.972733,195.220673,194.071915,181.410751,158.642151,136.055374,125.228943,121.501671,116.427292,89.501671,74.179359,88.848778,101.501671,73.534729,36.848782,15.577704,10.584317,8.776872,9.201670,8.413235,9.450426,5.123148,0.931407,1.793391,0.656199,0.487604,0.280165,0.895869,0.029753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.555000,4612685.550000,6667,3505,109.714058,172.333908,171.052917,161.755386,144.986801,131.672745,130.102493,128.085968,125.846291,127.978523,125.606621,137.664490,153.614899,170.226471,182.019852,191.606628,190.804977,177.838043,154.400024,135.234726,122.780174,118.697533,113.763649,87.995056,72.879349,87.011581,99.507446,72.912407,35.242996,13.984315,10.342168,6.685961,6.537204,8.316543,8.427286,3.195874,0.701655,0.421489,0.051240,0.033058,0.000000,0.000000,0.634711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.355000,4612685.550000,6686,3505,107.328941,168.899185,168.204971,162.841339,145.758682,133.014893,130.287613,128.122330,126.766960,127.957039,126.510757,138.196701,154.180176,170.593414,181.081009,189.684326,190.428116,176.345474,154.213226,133.436371,122.758690,119.791748,112.800018,87.072746,73.056221,87.527298,98.981842,74.328949,35.147125,13.428943,10.254564,6.298356,9.168611,6.871085,6.821499,3.590089,0.871903,0.752068,0.280993,0.000000,0.000000,0.185951,0.000000,0.429752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.555000,4612685.550000,6722,3505,115.776047,171.850418,169.974380,160.032242,144.172729,131.866959,128.776047,127.255379,126.081818,128.900009,127.627281,136.329773,153.321487,169.453720,181.412399,190.660339,188.949585,176.081818,153.470245,133.106628,122.652077,120.222321,112.990913,87.610756,71.734718,87.428940,100.470253,74.428940,36.338036,14.057041,10.271919,5.879350,8.230593,7.153730,5.981829,2.847112,0.538844,0.422315,0.493390,0.256199,0.341322,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.155000,4612685.550000,6740,3505,108.517380,169.021500,165.839676,159.170242,144.459518,131.013245,128.029770,125.261169,123.971916,126.087624,125.013237,135.120682,151.038010,168.442993,178.897537,188.575226,186.922333,175.013229,152.740494,131.839691,121.971916,118.798363,112.872749,86.352081,71.765312,87.591751,100.228111,73.054565,33.013241,14.489275,10.261177,6.388442,7.414890,9.248775,7.334723,2.295872,0.485951,0.148761,0.152067,0.121488,0.000000,0.061984,1.361158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.155000,4612685.550000,6770,3505,99.261185,158.360336,163.955383,152.814896,138.881027,129.046295,124.038033,121.690926,119.930588,120.591751,120.872742,131.285965,147.839676,163.831421,174.980194,184.947144,182.740524,171.988449,148.277710,129.054565,116.947121,113.269432,107.963646,82.690926,67.864487,83.616539,98.310760,72.079361,33.360348,12.342993,9.814894,5.434720,7.209106,7.278523,7.318194,2.872733,0.814051,0.085951,0.310744,0.263637,0.111570,0.000000,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.755000,4612685.550000,6788,3505,93.619026,150.561157,164.139679,153.338013,139.858688,128.462006,125.825638,122.569435,119.428940,121.982658,121.552902,131.701675,148.569427,164.759506,175.090088,184.123138,183.123138,170.552902,148.850418,128.941345,118.304970,114.478523,108.718201,82.726463,68.569443,84.503326,97.817375,72.866959,35.486797,13.004149,9.883490,4.552902,6.812411,6.633896,6.174390,2.686782,0.500828,0.275207,0.180166,0.236364,0.000000,0.134711,0.160331,0.644629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.555000,4612685.550000,6822,3505,97.895065,149.862000,161.209106,151.729782,138.688446,126.845474,123.523163,120.324814,118.126472,118.556221,118.473579,128.952911,145.547958,160.465317,171.167786,181.134735,179.109940,168.275223,147.977707,126.200851,115.985970,111.862007,105.845474,79.812416,65.647125,84.440521,100.357872,76.043823,36.589275,14.674397,9.622333,4.149598,7.461173,6.038854,6.280176,2.786782,0.427274,0.291736,0.052066,0.046281,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.555000,4612685.550000,6837,3505,102.117371,154.613251,159.844650,151.770279,136.952087,126.720673,123.026459,119.233070,117.166954,118.828117,117.315720,128.175201,144.935562,159.571930,170.910767,181.555405,179.720688,168.183502,146.315735,125.960335,114.621506,110.266136,105.381836,79.257866,64.960350,82.720680,99.257866,75.034729,35.596710,14.019026,9.580185,6.638854,8.663651,7.889269,7.210756,3.580171,0.495042,0.431406,0.147108,0.038017,0.000000,0.061984,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602114.555000,4612685.550000,6862,3505,87.108284,150.959518,163.347946,152.976044,139.752884,127.364487,125.389267,121.347954,118.967789,119.802498,118.414070,129.876877,146.992569,161.885132,173.744644,183.595871,181.529770,170.868607,148.695053,126.860352,117.719856,112.653740,106.918205,81.042168,65.298370,82.976051,101.678535,77.579361,35.695061,13.981835,9.719854,5.648770,8.188444,7.152905,7.669434,2.439674,0.261984,0.000000,0.165290,0.000000,0.000000,0.000000,0.000000,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.155000,4612685.550000,6875,3505,86.903328,150.647110,161.225632,151.382645,138.547958,126.804153,124.655396,121.019028,118.870270,119.357872,119.787628,129.357880,147.324814,161.853729,173.019012,182.804138,181.961166,170.300003,149.638870,129.027298,117.878532,113.093407,106.663651,80.614075,66.093407,84.597534,100.820679,77.853737,37.531422,15.542168,9.696712,5.470258,8.290097,7.623153,7.623153,3.898355,0.786778,0.000000,0.052893,0.071901,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.955000,4612685.550000,6889,3505,90.481827,142.341324,159.795868,151.109924,136.539673,125.440506,121.134720,117.845459,115.754555,115.878517,116.605789,126.895050,144.109924,158.440506,169.787613,178.828934,179.812408,167.126450,146.134720,126.035545,114.928108,110.167778,104.845459,78.630592,65.035553,83.076866,99.539673,76.209106,36.465309,15.742166,9.531424,4.786788,7.829767,7.301664,6.975218,2.105790,0.355372,0.652893,0.000000,0.049587,0.000000,0.066942,0.252066,0.000000,2.325620,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.555000,4612685.550000,6912,3505,94.871918,147.557877,158.913239,150.103317,137.442169,124.293404,122.053734,118.871918,116.219025,115.971092,115.781006,127.185966,143.987640,158.268616,168.400848,178.706635,177.607452,165.409103,144.698380,125.714890,113.384315,110.243820,103.863655,77.971092,64.177704,81.103325,98.756218,73.392578,34.070267,13.700018,9.442168,4.719843,6.855387,7.008278,6.044641,2.833890,0.396696,0.152067,0.123967,0.000000,0.000000,0.132232,0.319835,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602133.555000,4612685.550000,6957,3505,89.983490,153.190094,158.347122,150.231415,137.057861,124.983482,122.272736,118.173561,117.355377,116.561989,116.644638,128.049591,144.586792,159.595062,171.066132,180.355392,179.694229,168.132248,148.239685,125.561989,115.115707,111.545464,104.727280,78.537209,64.066132,81.702492,98.537201,73.347122,33.446304,14.740515,9.520680,4.890091,7.361999,6.981830,6.144641,2.833064,0.268596,0.054546,0.000000,0.066116,0.000000,0.000000,0.135537,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602136.555000,4612685.550000,6972,3505,77.897545,155.418198,160.203323,152.690918,137.467789,126.236374,122.525635,118.385139,117.029762,117.583481,117.277702,127.971916,144.426453,158.459518,171.021500,180.914062,178.699188,168.401672,147.517365,126.955383,114.790092,110.806618,105.327286,78.922325,66.575226,82.740509,98.773567,72.732254,35.575226,13.822332,9.575226,7.114887,6.995883,5.877697,5.947946,3.417362,0.447109,0.077686,0.096695,0.069422,0.321488,0.140496,0.000000,0.211570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602141.555000,4612685.550000,6997,3505,83.033905,144.091751,159.976044,152.819016,136.372742,125.538033,121.934723,118.521500,117.232246,116.480179,116.496704,127.133080,144.761169,158.926437,170.058670,180.868607,178.595886,166.959503,145.835556,126.579353,114.802490,111.323151,106.009102,78.000839,65.157867,80.885139,97.868607,71.645477,34.248783,12.075224,9.637210,4.942986,6.399189,6.716539,6.587614,2.955377,0.659506,0.130579,0.092562,0.170249,0.000000,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.355000,4612685.550000,7016,3505,86.542168,145.847946,162.938843,153.707428,138.013229,129.376877,124.153732,120.583481,118.666130,118.988441,119.360344,129.128937,147.228088,161.649582,173.831406,183.211563,181.814880,169.674377,147.649582,127.872742,116.856209,113.542160,107.963646,80.682663,66.847954,83.748779,99.021500,73.434731,35.451256,14.189275,9.814896,4.476044,6.682660,7.072740,6.656209,3.218189,0.322315,0.018182,0.561985,0.146281,0.000000,0.139670,0.336364,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,3.030579 -602149.755000,4612685.550000,7038,3505,80.905807,153.988449,162.484314,152.699188,138.674393,129.360352,125.302498,122.294235,119.690926,120.542160,120.120682,130.418198,148.244644,162.938858,174.021500,184.137207,181.484314,170.872742,147.839676,127.137215,117.244652,112.690926,107.054565,82.087624,66.327293,82.244652,97.500847,73.781837,34.823162,14.087623,9.732250,6.514060,8.190926,6.697534,6.787615,2.725627,0.116530,0.015703,1.038018,0.264463,0.000000,0.000000,0.000000,0.278513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.155000,4612685.550000,7060,3505,88.031425,152.328934,161.138855,151.543808,135.915726,126.634735,122.552086,119.651260,117.461182,117.642998,117.279358,128.634735,146.585129,160.609924,172.618195,182.510757,180.700836,168.626450,147.866119,128.320679,116.271095,113.056221,106.618202,81.362007,65.948784,84.585136,97.585136,71.899193,31.816547,13.290098,9.692580,6.761168,8.314891,7.136375,7.694227,3.381825,0.017356,0.257025,0.039670,0.148761,0.030579,0.227273,0.459505,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602157.355000,4612685.550000,7076,3505,96.661171,149.933899,167.553741,155.289276,140.884308,130.677704,127.066132,124.404976,122.421501,122.454559,122.834724,133.727295,150.371918,165.000015,176.892578,186.256210,184.950424,172.752075,150.066132,130.925629,120.264481,115.983490,110.909103,83.528938,69.727287,85.396713,99.975220,73.768608,36.702499,16.527292,10.082664,6.454557,8.382661,8.061170,7.419848,4.050421,0.559506,0.038843,0.141323,0.462811,0.067769,0.000000,0.202479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.355000,4612685.550000,7101,3505,81.189278,149.453735,162.833908,150.519852,138.304977,126.528122,124.404152,119.379356,117.875229,120.156219,120.321510,129.619034,146.709930,161.767792,173.759521,183.900024,182.065308,170.470261,148.916550,128.139694,116.759521,114.346298,108.172745,80.842171,67.032249,82.949608,96.784317,71.486794,32.503326,11.792581,9.833902,5.246291,6.856212,6.385135,7.361996,4.549594,0.406613,0.235538,0.051240,0.143802,0.107438,0.053719,0.266116,0.565290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.755000,4612685.550000,7138,3505,88.897545,156.517365,163.740509,153.211578,141.021500,128.162003,125.071091,121.666130,121.285965,120.476044,120.608276,131.228119,147.889267,163.641342,175.170258,185.004974,183.426453,171.451248,149.666122,130.054565,120.062820,116.327286,109.690926,82.963646,69.401672,84.889267,99.046295,72.079361,35.798367,14.483489,9.971920,7.414889,7.509933,9.063648,7.261997,2.733890,0.884301,1.109919,0.438018,0.129753,0.000000,0.137190,0.106612,0.882645,2.164463,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.955000,4612685.550000,7154,3505,95.384315,155.293411,162.500000,153.665298,139.896713,128.549591,126.045471,122.061996,120.425636,120.632248,120.830597,131.466949,149.161179,164.400833,174.574402,185.111572,184.483490,171.756210,149.458694,129.045456,118.747948,114.243820,108.409103,82.871918,69.376053,84.698364,97.095055,71.764481,32.814072,15.010761,9.855392,5.460340,7.408278,6.940509,8.346295,2.973561,0.426448,0.083472,0.101653,0.178514,0.106612,0.000000,0.134711,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602177.155000,4612685.550000,7175,3505,84.606628,158.160339,163.003311,154.804962,139.961990,130.276047,126.730598,122.507454,120.854568,121.201675,122.052910,132.771927,149.557022,163.499176,175.482651,186.193390,185.292572,172.846283,150.209915,130.565308,121.515724,116.375229,109.127289,84.143822,69.647957,85.408287,97.705803,71.358696,36.143818,15.326466,9.920681,7.185136,9.804975,7.930592,9.534723,3.383479,0.309919,0.017356,0.337191,0.000000,0.000000,0.122314,0.171901,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.955000,4612685.550000,7189,3505,92.734734,156.817368,166.445465,155.519852,140.081833,129.023972,126.478523,122.610756,120.933067,122.693398,122.073563,132.412415,149.792587,164.536377,175.065292,185.809097,186.379349,173.379349,151.379364,130.569427,119.660339,114.726456,110.354553,84.346298,69.511589,83.594231,96.222336,70.693405,35.751259,12.030594,10.032250,6.914062,7.301667,7.212409,6.177697,3.717363,0.604134,0.195869,0.095042,0.162810,0.004959,0.000000,0.284298,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602183.355000,4612685.550000,7206,3505,95.235550,154.409103,162.582657,152.400848,137.665298,127.690094,124.623985,121.805801,119.698364,119.607452,120.971092,131.012405,148.037201,163.136383,174.293396,184.334732,184.673553,170.665298,148.847122,129.268616,119.152908,114.342987,107.681824,83.235550,68.061996,82.888443,95.136383,69.938034,31.681839,12.140514,9.789274,6.794225,6.152081,6.869434,5.263647,2.763642,0.146282,0.184298,0.046281,0.076860,0.304959,0.119835,0.211571,0.424794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602188.955000,4612685.550000,7234,3505,99.986801,147.507446,162.168594,153.722321,139.895889,128.457870,125.995064,122.639687,121.276054,121.788452,121.738861,132.284317,149.276031,164.110748,176.780182,185.102478,184.466141,173.350433,149.945465,129.631424,119.912415,116.052910,111.581848,83.771919,69.639694,84.003326,95.540512,67.499199,31.061176,12.462000,10.143821,6.148771,5.852906,8.214064,6.331416,3.128105,0.802481,0.030579,0.112397,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602193.955000,4612685.550000,7259,3505,97.840508,155.476868,166.906616,155.584305,141.617371,130.865295,126.022324,123.518188,121.898354,122.369431,122.708275,133.501663,149.890091,165.402496,175.609100,186.807449,186.402496,173.063644,149.956207,129.501663,120.683479,116.989265,111.609100,85.104965,70.344635,84.129761,94.890091,68.683487,31.295063,11.624809,10.146299,5.466127,6.932244,5.889267,6.185136,3.317362,0.532234,0.093389,0.291736,0.155372,0.000000,0.000000,0.012397,0.066116,2.330579,0.000000,0.000000,0.000000,1.576033,0.000000 -602199.155000,4612685.550000,7285,3505,99.970261,156.226456,168.631409,157.804962,143.490906,131.391754,130.400009,127.763649,126.441330,126.639679,127.366951,137.309097,154.573563,170.019836,181.573563,192.201660,190.176865,178.557022,155.267776,134.325638,124.317368,121.838028,116.036377,90.193398,75.119026,87.466133,99.928940,71.466133,35.548782,16.382664,10.548779,9.271915,10.342990,8.078526,9.532247,3.035542,0.480167,0.388431,0.109918,0.239670,0.000000,0.160331,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.955000,4612685.550000,7304,3505,79.456215,157.305801,166.611588,157.586792,141.743820,131.479340,129.024796,124.413231,123.909096,123.545464,124.925629,135.223145,153.247955,168.479355,180.933899,191.371918,191.545471,178.925629,157.421509,136.371918,126.917366,123.702484,118.090919,89.818192,74.983490,90.421494,102.223152,73.396721,35.041344,13.052910,10.735558,7.122325,8.573569,8.581006,9.433898,4.147115,1.623971,0.145455,0.070248,0.090083,0.000000,0.000000,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602208.355000,4612685.550000,7331,3505,95.146309,153.519852,160.387619,151.726471,134.544647,122.205803,123.652092,119.718201,118.544647,119.412415,119.437210,131.990921,147.941345,163.731415,174.921509,185.847122,186.814072,172.607452,153.007462,132.313248,122.214066,118.685143,111.900017,85.065308,69.931427,85.833900,102.838867,76.342995,35.688450,14.735555,10.172746,7.399184,9.300840,10.607453,8.512409,3.064470,1.347937,0.479340,0.585124,0.109918,0.000000,0.000000,0.048760,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.955000,4612685.550000,7349,3505,104.114067,158.461182,163.320679,152.766968,138.940521,126.386795,125.428116,122.064476,120.535553,121.634727,121.700844,132.899185,151.105804,166.064484,177.709106,189.361984,189.238022,177.081009,156.006638,135.362000,123.626457,121.279350,114.163651,85.874397,71.618195,90.411583,102.221504,76.295883,34.147125,12.521504,10.378532,5.682653,6.816543,8.123983,6.714060,3.233064,1.146284,0.025620,0.000000,0.156199,0.000000,0.076860,0.163637,0.725621,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602217.155000,4612685.550000,7375,3505,105.894234,162.315720,166.985138,156.233063,139.770264,127.348778,126.728943,122.852913,122.753738,124.084312,123.175224,134.952087,151.819839,168.249603,180.158691,191.753723,190.778519,178.464478,155.885956,136.018188,125.307457,121.795059,116.563652,88.373573,72.828117,89.613243,102.795059,74.166962,35.695885,14.196712,10.596713,7.176044,8.046295,7.038856,7.666128,2.292568,0.961986,0.134711,0.024794,0.000000,0.000000,0.000000,0.154546,0.066116,0.000000,0.000000,0.000000,2.457851,0.000000,0.000000 -602223.555000,4612685.550000,7407,3505,85.290115,166.984314,167.876877,155.273590,139.612427,129.364487,127.025650,123.166145,122.414078,124.166145,123.719864,135.017380,151.529785,168.480179,181.025635,192.257034,192.157867,178.248779,157.703339,137.356232,126.604164,122.538048,117.190941,90.166145,75.670280,90.033913,102.909943,74.612427,33.918198,13.242993,10.653739,8.350424,8.437204,7.819849,7.247947,2.594222,0.826449,0.095041,0.095042,0.094215,0.000000,0.064463,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602226.355000,4612685.550000,7421,3505,88.085960,165.945465,164.540497,155.838013,140.590103,128.507446,127.317368,123.904144,123.755386,125.135551,123.209930,136.185150,152.391739,169.350418,181.639679,194.366943,192.978516,179.664459,157.474380,137.970261,126.590096,123.135551,118.400009,89.920670,74.416542,90.912407,104.499184,75.838028,35.540520,14.296713,10.763655,7.900011,9.192575,8.408278,9.690922,2.770255,0.335539,0.465291,0.171075,0.114877,0.000000,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602230.155000,4612685.550000,7440,3505,93.557869,166.516525,165.334717,156.020660,139.475220,128.830597,127.268608,124.673569,124.185966,126.128113,124.210762,135.888443,152.417374,169.483475,181.500000,193.318176,192.053726,178.640503,156.764465,136.855392,126.797539,123.045471,117.590927,89.623985,73.987617,90.152908,102.152908,73.979355,35.524815,14.191753,10.690102,7.395052,7.003321,8.634726,8.828113,2.967775,0.665291,0.222315,0.135538,0.208265,0.000000,0.000000,0.389257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602234.355000,4612685.550000,7461,3505,101.803322,173.059509,166.715714,159.963654,142.467789,129.790100,128.798355,125.533897,124.633072,126.963646,125.583481,137.393402,152.459518,170.674393,182.996704,194.889267,192.566956,179.170258,157.980179,139.104141,128.104141,124.856209,118.872742,92.004974,76.203316,91.980179,102.955383,75.533897,35.186798,13.498363,10.806630,8.890095,7.252906,9.571087,9.400013,3.043809,0.863639,0.119835,0.240497,0.031405,0.110744,0.145455,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602239.955000,4612685.550000,7489,3505,101.747948,167.830597,165.450424,157.045471,141.632248,129.119858,127.739685,125.541336,124.425636,128.276871,125.334724,136.805801,152.194229,170.533081,183.061996,193.657013,191.177673,177.524811,156.508286,136.276871,125.318199,123.268608,118.045471,89.508278,75.185966,91.475220,101.723160,73.855385,35.723160,13.281009,10.731423,11.704144,7.265303,7.485137,8.951252,2.918188,0.524796,0.431406,0.212397,0.067769,0.045455,0.150414,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.955000,4612685.550000,7524,3505,113.313225,170.528122,168.652084,158.445480,142.941345,128.404129,125.842155,123.809097,122.974380,126.106613,121.577690,132.461990,150.073578,166.561172,178.395889,189.635559,186.792587,172.693405,152.544647,132.900009,122.412399,118.404137,112.354546,85.180992,72.090096,88.610756,101.619011,74.156212,37.123161,13.566959,10.214068,11.545467,10.190097,9.571090,9.694227,3.892571,0.954548,0.208266,0.122314,0.056199,0.193389,0.077686,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602254.955000,4612685.550000,7564,3505,117.198364,165.438019,163.528931,154.446274,138.099167,124.471085,122.719017,119.595047,118.165306,122.702484,117.636375,129.644638,146.082642,163.132233,175.876038,187.024796,186.512390,169.892563,149.809921,130.884308,119.074394,115.628105,111.545471,82.024811,67.347122,86.512413,101.413239,73.619850,32.520679,13.340512,10.140515,9.223981,6.913236,7.380179,7.673566,3.242984,0.559507,0.322315,0.278513,0.133058,0.000000,0.000000,0.137190,0.068595,4.270248,0.000000,0.000000,0.000000,0.000000,0.000000 -602262.955000,4612685.550000,7604,3505,143.049606,157.338852,148.107452,135.504135,121.512398,110.107445,104.264473,100.619843,99.413231,98.925629,97.909096,109.818192,126.909088,143.008286,154.867783,165.586792,164.504150,152.983490,134.528931,114.743805,102.421494,98.247940,91.727272,68.041328,52.743820,73.322327,93.942146,71.842995,32.223156,11.513239,8.338862,5.871912,8.368609,7.723979,6.089269,4.279347,1.366119,0.502481,0.456199,0.096695,0.042149,0.009918,0.335538,0.178513,2.092562,2.014876,1.876860,0.000000,1.623141,9.164464 -602268.955000,4612685.550000,7634,3505,147.590103,153.672745,139.176865,130.606628,115.466133,105.160347,100.284317,95.358696,92.598366,94.044647,93.639687,103.185143,121.565308,137.325638,149.110764,159.044647,159.647949,148.755386,129.209930,110.515724,97.895889,93.854568,87.854568,61.408283,47.209938,68.862831,91.771919,71.292580,32.317371,10.700016,7.986796,6.578523,7.201665,5.539680,7.280176,4.852902,0.838019,0.017356,0.278514,0.300001,0.152067,0.000000,0.004959,0.285951,2.261984,3.922314,3.405785,1.619835,1.700827,0.000000 -602276.955000,4612685.550000,7674,3505,175.214066,155.676041,129.990921,115.800842,101.552910,90.916550,85.138855,80.874405,79.894234,80.064484,80.060356,90.387619,108.726463,122.759521,134.875229,145.900024,145.519836,137.833908,121.503326,104.090103,94.354568,90.123161,86.718201,59.759525,44.683495,68.718201,100.280182,85.899193,41.089275,10.547951,7.883490,10.298361,11.082660,14.935553,20.756214,16.709106,5.119841,2.904962,2.566945,2.122316,2.169423,2.763639,2.603307,1.304133,11.257852,6.350414,4.857852,5.270248,13.451241,4.780166 -601445.755000,4612675.550000,3518,3555,119.682655,137.511597,132.032242,121.519844,106.949600,97.015717,92.999184,91.321503,91.767776,92.742989,94.461998,105.023979,122.478523,139.395889,152.676880,162.916550,164.784317,152.990921,130.585968,108.891747,99.081833,95.610756,89.536377,62.296707,43.552914,60.371094,74.528107,54.495060,24.776054,8.350428,8.139688,11.196709,7.913235,9.194227,10.052908,5.485959,1.562814,0.914879,0.261985,0.266943,0.349588,0.188430,1.006613,0.959506,11.833059,10.491737,5.676034,4.348762,6.252067,1.605785 -601449.955000,4612675.550000,3539,3555,125.906631,137.137222,136.219864,125.170258,111.335556,100.509109,98.484322,96.872742,96.079353,97.690926,99.484322,110.707458,128.575226,144.682678,158.029770,167.699188,168.616547,157.162003,134.484314,113.013245,102.988449,99.922333,93.872742,66.872742,48.847950,65.186790,77.029762,55.409935,24.038033,10.805800,8.533903,9.828939,8.272739,7.473567,8.968610,5.483479,2.196700,0.613227,0.305786,0.133884,0.401654,0.244628,0.506613,0.907439,5.390910,8.737192,2.085124,2.319835,6.872728,0.000000 -601456.755000,4612675.550000,3573,3555,114.884308,141.157028,140.702484,129.867783,114.752083,106.107452,103.983490,101.991753,101.652908,103.950432,104.553734,115.743820,133.942169,149.636368,163.611572,173.413223,172.644623,161.851242,137.371902,117.446297,106.661171,102.140511,96.909103,68.950432,51.041344,67.338860,80.256218,60.066135,26.238863,11.961175,8.809937,8.530591,7.870259,8.519024,8.348774,5.931414,1.004135,0.362812,0.481819,0.188430,0.109091,0.123141,0.057851,0.252066,1.687603,1.749587,3.698348,4.987604,2.600827,3.460331 -601467.955000,4612675.550000,3629,3555,112.921501,145.284317,139.474396,129.515717,116.962006,106.044640,103.160339,101.548775,101.400009,103.722328,104.763649,114.705803,132.879364,149.077698,163.019836,172.937195,171.119019,159.813232,136.639694,116.052910,104.581833,101.581833,95.127289,68.094231,49.515724,65.226471,80.449608,59.400024,25.277704,9.538858,8.647952,6.303318,7.018194,7.104973,7.533898,3.273560,0.879341,0.223141,0.252893,0.000000,0.179339,0.031405,0.257852,0.250413,1.010744,2.029752,0.000000,2.883472,2.890909,3.627273 -601473.755000,4612675.550000,3658,3555,103.013245,141.468628,141.542999,130.526459,117.460342,109.526466,105.675224,103.997536,103.038864,104.129768,105.584312,116.609100,134.799194,151.121521,163.658707,173.609116,173.005814,162.385971,138.683502,118.146294,107.030594,103.212418,97.609108,70.162827,52.567787,67.724808,81.923157,61.286793,28.200020,11.392579,8.873573,7.419847,7.348774,8.854561,8.553733,2.675212,0.862812,0.238844,0.059504,0.161158,0.000000,0.000000,0.261984,0.014050,2.890909,1.815703,2.908265,0.610744,1.879339,1.638017 -601476.355000,4612675.550000,3671,3555,107.448769,145.043808,142.746292,133.688431,118.787613,109.349609,105.399193,103.903328,104.655396,105.258698,107.440521,117.068604,135.399185,152.448761,165.085129,174.721497,173.374390,163.390915,139.969421,118.192566,107.192581,102.324814,98.481834,69.729767,51.076878,67.564476,81.936378,60.729767,27.366135,10.610760,8.952911,5.722324,7.670261,7.754560,6.911583,3.627280,0.630580,0.278514,0.030579,0.163637,0.028926,0.038843,0.000000,0.000000,0.000000,1.914050,2.175207,1.279339,0.000000,0.000000 -601480.155000,4612675.550000,3690,3555,109.454559,144.647949,142.978531,131.978531,118.590096,109.143814,105.862823,103.606621,104.019844,105.598358,106.375221,117.185135,135.995056,152.044647,164.019852,174.391754,173.085968,163.003326,140.408279,118.838028,107.689270,104.515717,97.854553,69.110756,52.085968,67.755394,82.342163,61.722328,26.573576,11.003324,8.895887,6.025632,7.703320,7.499186,8.328941,5.243810,0.466117,0.298348,0.182645,0.042975,0.042149,0.000000,0.236364,0.612397,1.012397,1.001653,0.000000,3.041323,2.814876,0.000000 -601486.555000,4612675.550000,3722,3555,103.870255,145.546295,142.009109,133.876862,119.000832,110.066948,106.711578,104.190910,104.050415,106.190910,106.777687,117.819016,136.050430,151.926437,164.612396,173.504959,173.686768,162.645447,140.414062,119.240501,108.042152,104.223969,97.736374,70.405800,50.372746,67.777710,84.066956,61.976051,28.149605,10.241339,8.885144,5.145465,6.772739,6.472740,7.986792,2.647939,0.618183,0.000000,0.142149,0.108265,0.078513,0.000000,0.343802,0.176860,0.737190,1.958678,0.772727,0.755372,1.893389,0.000000 -601497.355000,4612675.550000,3776,3555,121.482651,147.179352,144.749603,134.261993,122.534721,111.138023,108.096703,106.914886,106.295052,108.815712,109.576042,118.956207,137.559509,153.857040,165.766129,175.113235,174.972733,164.237198,141.278519,119.435547,109.336372,104.625633,99.427284,71.774391,53.964485,69.129768,85.030586,63.733078,27.724813,10.964480,9.038861,5.717368,7.114889,6.683484,7.891748,2.666121,0.765292,0.352894,0.219009,0.235538,0.025620,0.032232,0.000000,0.000000,1.002479,0.899174,0.000000,0.000000,0.999174,0.000000 -601505.955000,4612675.550000,3819,3555,114.442978,149.717361,148.155380,137.948761,123.262817,114.519012,112.105789,109.147118,108.138847,110.849594,110.791740,121.196701,139.990082,155.436371,167.056198,176.386780,176.262817,166.271088,143.171906,121.485954,110.361992,105.899178,101.072731,72.543823,53.948780,70.485962,83.527290,64.576874,28.461178,11.287621,9.188448,5.670257,6.690922,6.876873,7.052906,3.576039,0.755375,0.266944,0.060331,0.101653,0.046281,0.054546,0.000000,0.000000,1.076860,0.000000,0.970248,0.000000,0.000000,1.872727 -601510.955000,4612675.550000,3844,3555,128.661179,169.101654,155.291748,146.771103,130.771088,118.564476,115.820679,114.704971,114.176048,117.680183,116.275223,126.415718,142.895065,160.052078,171.688431,182.258682,180.349594,167.556198,145.713242,125.308281,114.060349,109.903320,105.027290,76.109932,59.704971,74.564476,90.283478,65.597534,29.837208,12.795058,9.547954,7.792575,7.101666,6.429764,7.875221,2.825626,0.584299,0.242150,0.254546,0.055372,0.046281,0.034711,0.000000,0.000000,2.334711,0.000000,0.898347,0.832232,0.000000,0.000000 -601515.155000,4612675.550000,3865,3555,128.939682,184.022308,162.716522,154.898346,136.708267,121.650429,120.790924,118.823982,118.138031,123.815720,118.270264,129.460342,146.526443,163.741318,176.551239,185.857025,183.402466,168.501648,147.005783,128.328110,117.154564,113.187622,107.790924,79.427292,64.319855,80.129768,92.617371,66.220680,31.741341,12.445473,9.799193,11.746299,6.855385,7.856212,8.780180,3.492569,0.323968,0.242976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.955000,4612675.550000,3884,3555,133.587631,178.686783,161.471924,154.323166,136.265305,123.397545,121.736382,119.893402,118.620682,124.100014,119.736382,131.124817,146.728134,164.009125,176.628952,186.405807,184.711594,169.695068,149.075241,129.595886,117.852089,114.728119,109.736382,79.719849,63.901669,80.075218,91.521500,65.934731,31.819027,12.281011,9.976052,10.108281,8.004148,8.130593,6.422327,3.444635,0.595043,0.251240,0.092562,0.118182,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.355000,4612675.550000,3906,3555,114.793404,179.570267,161.314072,152.057861,135.446304,119.338860,119.925636,118.272743,116.867783,121.495880,118.107452,129.239685,145.661179,163.487625,175.793411,185.826462,183.760345,169.066132,147.495880,127.082664,115.710762,113.140511,108.454559,79.206627,63.082668,79.818199,90.008278,65.702499,30.446301,11.502497,9.859524,9.787619,6.012410,6.625635,9.461169,2.424798,0.244629,0.000000,0.338017,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.755000,4612675.550000,3923,3555,126.491760,178.690109,162.161194,151.417389,135.582657,120.219025,121.012413,117.938034,117.409103,121.508278,117.376053,129.690109,145.962845,163.194244,175.450439,185.111603,183.814087,168.549622,146.822327,127.433899,116.400841,113.838860,108.863655,79.045464,63.409107,77.392570,92.004143,65.632248,30.309935,11.894233,9.896713,9.791752,8.081009,7.560345,8.746297,2.506618,0.887605,0.145455,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.955000,4612675.550000,3944,3555,112.335564,173.533890,159.690918,149.955383,134.938858,120.707451,120.459518,117.310760,117.914062,120.897537,117.294228,128.649612,146.682663,163.509109,175.707458,185.550430,182.600006,168.814896,147.484329,126.922333,116.823151,113.228111,106.963654,79.426476,62.732250,77.938873,90.153740,66.046295,29.831427,11.523983,9.723986,10.471917,6.512411,8.671916,8.340508,4.241330,0.685952,0.041322,0.025620,0.162810,0.000000,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.355000,4612675.550000,3971,3555,108.428947,169.205795,159.214050,149.057037,134.751266,121.230598,120.701675,118.114899,116.933075,119.585968,118.453735,129.528122,147.371094,164.222321,175.412399,185.205795,183.966125,170.528107,148.164490,127.619026,116.751259,113.858696,108.172745,79.329773,64.007462,77.577705,91.404152,68.833908,31.395887,11.923158,9.833902,9.089271,6.686793,7.348775,9.350429,3.457031,0.787605,0.408265,0.180166,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.755000,4612675.550000,3988,3555,121.080177,172.369431,163.576050,151.443817,137.162827,124.138023,124.385963,120.518188,120.261993,123.295052,121.691742,132.394226,150.245468,167.171082,178.700012,188.245468,186.609100,173.576050,151.476868,130.286789,119.419022,116.790916,111.063644,81.452072,65.857048,79.799194,93.724800,71.625641,33.857048,15.246300,10.096713,8.943816,8.853733,10.669437,9.522327,3.585958,0.790911,0.417357,0.115703,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.047108,0.000000,1.281818,2.166116 -601542.555000,4612675.550000,4002,3555,112.274399,164.059525,162.447952,151.274399,133.993408,121.927292,121.604973,120.133904,118.051254,120.357040,118.687622,130.952072,148.778534,165.158707,176.993408,185.662827,184.976883,172.464493,150.109116,129.042999,118.059525,115.398361,109.290924,80.852913,64.447952,78.224808,92.555389,69.406631,31.786798,13.257869,9.935557,8.703321,6.983485,7.403322,7.233070,3.311577,1.046283,0.298348,0.204133,0.175207,0.000000,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.955000,4612675.550000,4024,3555,98.595879,165.761169,160.926453,150.116547,136.455399,121.951256,123.281837,119.223976,119.058693,121.124809,120.141342,131.025635,148.496704,165.471909,177.389267,186.562820,184.438858,172.835556,149.628937,129.430603,117.761169,114.860344,109.554558,80.347946,64.488449,78.265305,91.703316,69.141335,30.744650,12.551257,9.959523,9.867784,7.595885,8.104974,7.173566,2.710751,0.614051,0.134711,0.000000,0.046281,0.036364,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.755000,4612675.550000,4048,3555,115.949600,166.268616,159.615723,149.863647,135.524811,122.293411,122.607452,119.334724,117.524818,119.904984,118.409119,131.516541,149.458694,164.681839,177.235535,185.962814,184.756195,172.706604,148.524811,128.657043,117.582672,114.681824,109.318192,79.376053,64.053741,77.483490,92.425636,68.574402,32.351257,12.777706,9.938036,8.985967,7.376875,8.408279,7.219848,3.946288,0.519836,0.254546,0.052893,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.075207 -601555.955000,4612675.550000,4069,3555,108.885139,163.258682,161.572739,148.688446,132.655380,122.547951,121.382660,118.076874,117.415718,119.035553,117.729767,130.275223,148.762833,164.300003,175.779343,185.349594,184.341324,171.010757,148.076889,127.721504,116.473572,112.977699,108.209106,79.043816,62.787621,77.176048,91.027290,68.366127,31.250435,13.654563,9.837209,7.872743,8.121503,6.847948,8.028937,3.651247,0.354547,0.172728,0.000000,0.415703,0.000000,0.190909,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,1.219835,0.000000 -601558.755000,4612675.550000,4083,3555,106.378532,162.634735,159.304153,149.552094,134.800018,122.469444,122.130600,119.238037,117.857872,119.816551,120.295891,130.552094,148.882660,165.700851,177.196716,185.659531,184.419861,173.072754,149.221512,128.568619,117.386803,114.676056,108.709114,79.750435,64.155388,79.667793,93.089279,67.791748,31.295887,12.197539,9.882664,7.395883,7.455387,8.387618,8.669436,1.599178,0.499175,0.000000,0.094215,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.015703,0.876033,0.000000,0.000000 -601563.955000,4612675.550000,4109,3555,111.176048,161.696701,160.316528,149.804153,135.209106,124.027290,121.704971,119.994232,118.523155,120.076874,119.589272,131.200836,149.490112,165.804138,176.514877,186.019012,185.440506,172.680176,149.886795,128.019028,117.746292,114.126457,108.663651,80.523155,64.258698,78.184311,93.052078,68.630592,30.936382,11.647125,9.878531,7.676874,7.193403,9.347949,6.459516,3.364471,0.581821,0.395869,0.000000,0.000000,0.000000,0.241322,0.004132,0.000000,0.000000,0.000000,0.636364,0.000000,0.000000,0.000000 -601567.755000,4612675.550000,4128,3555,111.159515,161.878525,162.746292,150.415710,135.167786,123.374397,121.779350,119.184311,117.795883,119.597534,120.605797,131.357864,149.523148,165.250427,177.184311,186.630600,185.465317,172.804138,149.167770,128.341339,118.118195,115.308281,108.663651,80.109932,64.787621,78.919846,92.895058,68.407455,32.019028,12.782663,9.878532,7.763651,7.202496,9.061998,8.201667,4.320670,0.488432,0.142149,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.755000,4612675.550000,4158,3555,117.824806,159.560333,160.890915,148.899185,133.560333,124.171913,121.766960,118.775223,119.064476,120.229767,120.295883,131.585129,150.031418,165.163635,177.386780,185.940506,185.403305,173.229752,149.370255,128.204971,116.651253,114.593407,107.800018,80.651253,64.353737,79.469437,92.163651,69.072739,31.552088,12.597539,9.800018,7.076875,6.539685,7.700016,6.108279,2.893395,0.631407,0.037190,0.000000,0.059504,0.000000,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.755000,4612675.550000,4173,3555,104.594223,159.015701,160.767776,150.883469,135.866943,124.941330,123.164474,120.709930,120.081833,121.131416,122.214058,132.676865,150.941330,166.759506,177.957855,187.222321,187.181000,173.999176,150.701660,129.842163,117.924805,115.048775,109.809105,81.809113,65.478531,80.544655,93.040504,70.015724,31.974398,13.124811,9.982664,8.183485,8.212412,8.195883,7.402494,2.928105,0.458679,0.096695,0.052066,0.177686,0.000000,0.141322,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.355000,4612675.550000,4196,3555,111.907455,159.849594,161.733902,149.890915,136.320663,124.279350,122.990097,120.609932,120.362000,119.494232,120.452904,132.138855,150.808273,166.056213,177.452896,186.056213,185.651260,173.609924,150.428101,129.634720,118.180183,115.742165,109.981834,81.196709,65.659523,80.345467,94.477699,69.147125,32.875225,15.242992,9.998365,6.301666,7.793404,9.476875,8.575220,5.333067,0.616531,0.243802,0.254546,0.162810,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.755000,4612675.550000,4213,3555,99.468605,160.328110,159.096710,147.171082,133.485138,123.030586,121.278519,118.609100,118.733070,118.981003,119.848770,130.427277,149.146286,164.121490,176.476868,185.625626,184.617371,173.187607,148.683487,127.823975,116.559517,113.022324,108.518188,80.452072,63.501675,77.906624,92.675217,68.204147,31.650433,11.991752,9.865308,7.016542,6.544643,6.890924,7.152079,2.714882,0.400001,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.155000,4612675.550000,4235,3555,103.649597,160.411591,161.923996,150.882660,135.163651,123.510757,122.866127,119.328941,119.700844,119.700844,120.659515,131.857864,149.436386,165.816559,177.709106,186.535553,184.758698,172.163666,148.940521,128.659515,116.923981,113.742165,107.890923,79.213234,63.097534,78.923981,93.180183,69.419846,31.866137,11.991753,9.808283,7.490923,6.831421,8.314065,8.439684,3.953727,0.740498,0.319009,0.052066,0.000000,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.355000,4612675.550000,4256,3555,103.599190,158.012405,159.904968,149.425629,134.938034,124.309929,122.962814,119.260338,119.392570,119.921494,120.450424,131.466965,149.566132,164.863647,177.235550,185.392578,184.640518,172.971085,150.103317,127.549591,116.690094,112.491745,107.863647,79.623985,63.723160,77.855377,92.971085,69.657043,31.657045,12.766132,9.805804,7.284310,7.665305,7.616543,7.979353,4.131413,1.080995,0.176034,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.955000,4612675.550000,4269,3555,114.376053,155.466965,161.450424,148.938034,134.078522,123.045471,121.458694,118.557869,118.194229,119.227287,118.772743,130.747955,149.020676,164.516541,175.714890,184.747955,182.723160,171.731415,147.698364,127.144653,115.995880,112.516548,105.863655,78.078537,61.781013,77.789284,92.938042,67.814072,31.657043,12.094234,9.623986,6.033070,6.334726,6.863650,7.133898,2.790088,0.277687,0.000000,0.000000,0.000000,0.161157,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612675.550000,4283,3555,101.885139,159.515717,161.838043,150.598373,134.937210,124.937210,122.408287,119.995064,119.325638,120.325638,120.391754,131.755386,150.267792,165.581833,177.937210,186.342163,185.110764,173.234726,149.251266,128.656219,116.763657,113.681007,108.218201,79.804977,62.763657,79.077705,93.829773,70.391754,32.995060,13.566960,9.838036,6.533071,7.816545,8.456212,7.832244,3.685958,0.575208,0.142976,0.176034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.755000,4612675.550000,4303,3555,102.178520,160.361984,161.072739,150.138855,134.023148,124.527283,122.039673,119.320671,118.667778,119.543808,120.403313,131.411575,150.089264,164.866119,177.361984,186.287613,184.890915,172.742157,148.204971,128.221497,115.651245,112.535545,107.890915,77.560349,63.138863,77.791748,92.915718,69.634727,32.262829,12.540513,9.808283,7.863649,5.814891,7.734725,5.748772,3.313230,0.322315,0.066116,0.127273,0.119009,0.000000,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.755000,4612675.550000,4333,3555,101.830589,156.030609,161.121521,150.567795,135.733063,126.625633,124.526459,121.823982,120.443817,120.898361,121.823982,132.840500,150.848785,166.336395,177.931427,186.171097,185.179367,173.790939,150.931427,128.947937,117.840515,113.964478,108.609108,80.997536,63.749603,79.567787,94.253738,71.394234,33.212418,14.763656,9.873572,8.052907,8.684315,7.906627,8.832246,3.745463,0.375208,0.914051,0.000000,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.155000,4612675.550000,4350,3555,98.664482,155.539688,160.151230,150.870255,134.870255,126.465294,123.060333,120.878517,120.374390,120.787613,121.134720,131.903305,150.597534,165.399185,176.407425,185.861969,184.217346,173.688416,149.895035,128.820663,116.895050,113.820671,107.845459,78.531410,63.944645,79.068604,94.581009,69.911591,32.399193,14.033903,9.804151,6.412411,7.066131,8.346295,7.552080,3.142157,0.250414,0.040496,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612675.550000,4364,3555,102.914894,150.420670,162.767792,148.569443,134.230591,125.114891,122.652077,120.470261,118.809105,120.726456,120.296707,131.842163,149.726471,164.379364,177.445480,185.742981,184.263657,172.280182,149.106628,127.718193,116.263657,112.866959,106.354568,78.709938,62.776051,79.453735,95.222336,69.172745,32.015720,11.519853,9.668614,6.368608,6.927287,7.341337,6.048772,3.681825,0.191736,0.157025,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612675.550000,4379,3555,102.935547,156.292587,161.052917,149.912415,133.292587,123.986794,122.647957,119.366959,119.069443,119.457870,120.623161,131.474396,149.185150,164.449600,176.945480,186.160339,184.168594,172.160355,148.515717,127.763657,116.143822,112.804977,107.490929,78.705803,62.821507,78.391754,95.383484,68.862831,31.912416,10.788447,9.771919,4.828111,6.212412,6.068607,7.143814,2.960338,0.295868,0.102480,0.000000,0.000000,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.025620,0.000000 -601624.955000,4612675.550000,4414,3555,104.529762,151.024796,157.537186,147.586777,134.785141,123.942154,122.173561,119.859512,118.355377,120.190094,119.752075,130.760345,149.471069,165.305786,176.991730,185.024796,183.859497,172.537186,148.975204,126.842987,116.528938,112.404976,106.272743,78.991745,62.314064,79.231415,95.173561,70.157043,31.371923,12.013241,9.661176,6.602490,7.608277,6.091748,6.142986,2.872733,0.331406,0.093389,0.000000,0.000000,0.000000,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601627.955000,4612675.550000,4429,3555,98.214066,153.196716,158.725647,148.213242,134.304153,124.213249,121.337212,118.700851,118.130600,119.419861,120.081017,129.519028,148.337219,164.535553,175.519028,185.403305,184.709091,172.295883,148.386795,127.221512,115.519028,111.709114,105.981842,78.304153,61.651257,77.543823,92.709114,69.923988,31.324812,12.495886,9.634730,6.379351,6.297535,5.763649,6.078526,2.010749,0.228100,0.128100,0.038017,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.155000,4612675.550000,4445,3555,104.154564,156.747131,160.490921,149.747131,136.003326,126.317368,122.408279,120.631416,120.722328,121.490921,121.565300,132.276047,150.755386,166.433075,179.333908,187.350433,185.937210,173.730591,151.185150,129.689270,118.077698,113.631416,108.490921,80.350426,63.309109,80.135551,95.466125,71.780174,33.400021,13.339688,9.862829,5.857863,7.000015,8.343817,8.045469,3.671081,0.522316,0.347935,0.290910,0.000000,0.147934,0.000000,0.000000,0.509091,0.000000,0.000000,0.934711,0.000000,1.092562,0.000000 -601636.955000,4612675.550000,4474,3555,100.060349,153.793427,160.421509,150.388443,135.636383,124.925636,121.181831,119.330597,119.355385,120.487617,120.884315,130.173584,149.611603,165.561996,177.752075,185.628113,184.289276,172.842987,149.793427,127.859520,116.826462,111.834732,106.545479,79.818199,62.008282,79.413239,93.628113,70.421501,32.421509,12.245472,9.685969,6.909104,7.289271,6.608277,6.918195,2.599179,0.307439,0.000000,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.082645,0.000000,0.000000,0.000000 -601639.555000,4612675.550000,4487,3555,106.810760,156.786789,158.770264,150.365295,137.315720,125.885963,123.373566,120.861168,120.836372,122.257858,121.654556,132.390091,150.877701,166.315720,178.216537,187.348770,186.472733,175.183487,151.431412,128.770264,117.406624,113.357033,107.927284,78.976875,62.910763,79.745483,93.621498,70.100853,33.811588,13.778530,9.811589,5.742988,6.683486,7.293401,9.295056,3.130585,0.400001,0.132232,0.105785,0.052066,0.000000,0.108265,0.006612,0.000000,0.000000,0.000000,1.024794,0.000000,0.000000,0.000000 -601642.155000,4612675.550000,4500,3555,100.067787,149.778534,160.001678,149.662842,134.844650,124.001671,121.943817,120.026466,119.646301,121.241341,121.125641,131.530594,149.919037,166.704163,177.852921,186.563644,185.803329,174.563660,150.505814,127.943817,117.530594,112.894226,107.200012,78.423157,62.257870,79.472748,94.323975,70.613243,31.266136,11.316547,9.745474,5.776872,5.830593,6.373568,6.206624,2.724799,0.414051,0.036364,0.000000,0.000000,0.000000,0.094215,0.000000,0.000000,2.358678,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.755000,4612675.550000,4513,3555,106.584305,153.270264,159.691742,147.278519,134.700012,124.154556,122.138023,120.881828,119.534721,120.154556,120.947945,130.559509,149.476868,165.212402,177.584305,186.683487,185.823975,172.815720,149.683487,128.460342,116.278519,111.576042,106.790916,78.319855,61.658699,78.344643,93.823975,70.617378,32.947952,11.272744,9.708283,4.285135,5.784312,6.287617,5.197534,1.584303,0.256199,0.065290,0.003306,0.107438,0.094215,0.000000,0.000000,0.000000,1.209917,0.000000,0.000000,1.006612,0.000000,0.000000 -601647.555000,4612675.550000,4527,3555,103.149597,156.356216,158.422333,148.257034,134.430588,124.777702,121.678528,119.546295,118.298363,120.703316,120.719849,130.587616,149.645462,165.744629,177.587601,187.471893,184.595871,173.744629,149.496704,128.504974,116.033897,112.356209,106.918198,79.645477,61.992580,79.141335,93.141335,71.876877,30.868612,13.183490,9.719854,4.128110,6.671916,7.712410,5.950425,1.167772,0.201654,0.171075,0.365290,0.119009,0.000000,0.000000,0.528926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.955000,4612675.550000,4544,3555,97.552910,154.377701,158.914886,147.460358,133.402496,124.658707,121.220688,118.576057,117.947960,119.997543,119.972755,131.567780,149.171082,165.509933,177.344635,185.807449,185.113235,173.394226,149.212402,127.898361,115.956223,112.749611,106.427292,78.493416,61.857052,76.625648,93.964478,69.914902,31.336384,11.181835,9.675227,4.813234,6.327287,6.148774,5.434722,2.187609,0.176034,0.260331,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.555000,4612675.550000,4567,3555,108.496704,156.001663,163.381821,151.365295,137.654556,127.505806,124.439690,122.522331,121.200020,123.588448,123.613243,134.216553,151.447952,167.770264,180.158691,189.158691,187.266129,175.728943,152.902496,129.687622,118.687622,115.001671,109.745476,80.431427,64.125641,80.092590,97.266144,72.373581,34.398365,13.582663,9.976878,5.551250,7.228940,8.661998,7.214891,2.470254,0.672729,0.000000,0.099174,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612675.550000,4584,3555,108.706627,154.876053,162.421494,152.024811,136.404968,126.900841,123.842995,122.090927,121.049606,123.768608,122.785141,134.008286,151.528946,168.553726,179.487610,188.140503,187.190079,175.495865,152.281006,130.495880,118.190102,115.008278,108.636383,79.512413,63.132256,79.016548,95.066132,71.338860,32.991756,13.557043,9.876053,4.895879,5.847122,6.325633,6.191749,1.686781,0.348761,0.166943,0.247108,0.057851,0.175207,0.000000,0.000000,0.000000,0.000000,0.000000,2.110744,0.000000,0.000000,0.000000 -601669.555000,4612675.550000,4637,3555,102.434723,160.657867,160.228119,153.376877,138.137207,126.583481,124.434723,122.319023,120.847946,124.079353,122.947121,133.757034,151.310760,167.294235,179.484314,187.666122,187.517365,175.467789,152.484314,129.823151,117.319023,113.211586,108.418198,79.740517,63.244648,79.674400,94.195061,71.368614,32.327290,13.348778,9.856217,4.300838,6.501667,6.015714,5.530592,2.590089,0.621489,0.382646,0.000000,0.049587,0.000000,0.095041,0.000000,0.000000,0.000000,0.000000,1.034711,0.000000,0.000000,0.000000 -601672.155000,4612675.550000,4650,3555,122.272736,164.901672,163.009109,156.810760,142.670273,130.356216,127.281830,124.901657,123.719841,126.108269,125.686783,137.199203,154.463654,170.662003,182.513229,191.223984,189.934723,179.314896,155.571091,133.430588,121.397537,117.463638,110.918205,82.397545,65.562828,80.017380,97.918205,73.860352,35.042171,16.190928,10.083490,4.551252,8.243816,8.495055,9.255386,2.652899,0.631406,0.233058,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.955000,4612675.550000,4679,3555,117.939674,161.675232,164.815735,154.542999,138.923172,128.947937,124.038841,122.071899,121.295044,124.080170,122.939674,133.832245,151.716553,168.782669,180.121521,189.551270,187.204163,175.972748,151.493408,131.047119,118.171074,114.212410,108.427292,80.419029,63.385967,78.030594,95.650429,71.584312,34.038860,12.506628,9.857044,4.114059,6.889271,5.732244,7.357864,2.593394,0.741324,0.223968,0.107438,0.064463,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601683.555000,4612675.550000,4707,3555,113.423988,164.655396,165.167786,156.019028,141.374405,128.696716,126.671921,125.333084,124.316551,126.225639,124.845474,135.828949,153.688446,170.440521,182.283493,191.514893,190.002502,178.539688,154.754562,132.729782,120.060356,115.490105,110.300026,82.919861,64.903328,79.465309,97.936386,74.357872,33.490105,14.852911,10.027292,5.646293,8.398364,7.744642,6.331418,3.044634,0.304133,0.274381,0.000000,0.171075,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.085950,0.000000,0.000000 -601689.155000,4612675.550000,4735,3555,120.695885,168.886780,164.531418,156.209091,141.407440,128.316544,128.300018,126.638855,125.159515,127.010757,126.572739,137.729752,155.283478,171.448761,183.671906,192.010757,190.457031,178.961166,154.556198,133.985962,120.423981,116.390923,110.481834,82.845467,65.192581,79.539680,98.382660,75.052078,34.440517,13.854564,10.043821,5.198359,6.608279,6.799187,7.472741,2.597526,0.780167,0.190083,0.035538,0.000000,0.031405,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.271075,0.000000 -601691.955000,4612675.550000,4749,3555,102.444641,162.991745,161.231415,154.421509,138.991745,125.223160,125.214890,122.066132,120.818199,124.380180,122.636383,131.917374,151.933899,168.471085,180.842987,188.933899,187.066132,176.983490,153.198364,129.991745,118.380180,114.471092,107.727287,80.537209,61.785145,77.975220,96.842995,72.975227,32.892582,13.621506,9.793407,4.586786,7.033073,5.662823,7.277699,2.900005,0.936366,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.555000,4612675.550000,4767,3555,138.256195,166.900833,162.355377,156.983490,141.272720,127.991745,126.314064,124.619843,123.206619,126.603317,124.173561,135.586777,152.438019,171.322311,182.842987,192.107452,189.471085,178.090927,154.958679,131.603317,119.628105,116.752075,111.272736,81.652908,64.066139,80.727295,96.677704,75.834724,34.305805,13.798365,10.115722,4.785961,6.057041,7.395056,6.529766,2.460337,1.136367,0.454546,0.000000,0.006612,0.000000,0.092563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.355000,4612675.550000,4796,3555,104.829765,165.069427,163.920670,152.639679,135.011581,125.061157,123.995041,120.201653,119.209923,120.474380,120.523972,130.887619,150.168594,166.639679,177.796692,186.127274,185.292572,172.416534,149.400009,128.003311,115.747108,113.995041,107.945457,78.928940,63.763653,76.912407,96.532234,70.416550,31.355392,14.101670,9.813242,7.135550,6.466955,8.381830,5.652077,3.021497,0.371075,0.000000,0.047934,0.040496,0.000000,0.000000,0.000000,0.000000,1.266116,0.000000,0.000000,0.000000,2.277686,0.000000 -601706.955000,4612675.550000,4824,3555,113.541336,165.466949,165.847107,153.376038,138.822311,125.500015,125.475220,121.004150,120.293404,121.185966,121.243820,133.615723,151.706604,167.004135,179.103302,188.086777,186.268600,173.657028,149.623962,128.971085,117.690102,114.938034,108.500015,80.483490,64.012421,78.516548,97.028938,70.855385,32.789276,13.968613,9.863655,8.442989,6.475218,7.579351,7.184309,2.589264,0.582646,0.109918,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.755000,4612675.550000,4838,3555,118.219017,166.541321,163.871902,153.508270,137.971069,126.400841,124.855385,121.243820,120.500015,120.623985,120.574394,132.053741,152.640503,167.177689,178.516525,187.830582,186.574387,172.549591,150.309921,128.508286,116.896713,114.334724,106.590919,79.805801,62.888454,78.409103,96.235550,70.814064,33.425640,12.727290,9.690102,8.154559,7.336374,6.227284,6.962821,2.878520,0.482647,0.329753,0.038017,0.205786,0.045455,0.000000,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.355000,4612675.550000,4851,3555,124.884308,169.107452,164.165298,153.975220,138.355392,127.132240,125.628105,121.438026,119.652901,120.942154,120.702484,132.115707,150.867783,167.247955,178.834732,187.768616,185.793411,173.371918,149.396713,128.355377,116.636375,114.198357,108.727280,79.181824,63.834732,79.537201,95.347115,70.371910,32.851261,12.830596,9.884316,8.970263,7.921501,7.706624,6.798358,2.581826,0.547109,0.376860,0.231406,0.000000,0.000000,0.000000,0.000000,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.355000,4612675.550000,4871,3555,115.737206,167.621475,168.241318,154.712387,138.571930,125.365311,124.927292,122.621506,120.530594,121.671089,120.307457,132.654556,150.811569,167.778503,179.522308,188.935532,186.695862,173.001648,150.811569,128.976883,117.819855,114.505806,108.745476,79.224808,63.249603,78.266136,96.596710,70.340515,32.505806,11.669438,9.885969,8.114891,7.024806,7.426460,7.233898,2.652073,0.561158,0.164463,0.049587,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.666942,0.000000,0.000000 -601723.155000,4612675.550000,4905,3555,125.657867,168.583466,165.137192,155.616547,138.971909,125.715714,125.038033,122.319023,122.269432,122.980179,121.319023,133.302490,152.476044,169.591736,179.409912,189.591736,188.723969,174.376862,151.459518,128.773560,117.128937,115.153732,109.327286,79.434723,63.765308,79.385139,95.996704,70.748772,33.252911,13.623985,9.938862,7.742163,7.119022,6.966955,7.757038,2.397529,0.842151,0.035537,0.384298,0.000000,0.054546,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.755000,4612675.550000,4933,3555,114.215714,179.835541,167.290085,155.414047,141.587601,128.356201,127.860336,124.670250,123.422318,125.992569,123.686783,135.066940,154.157852,170.223969,182.604126,191.909912,189.149582,175.761154,152.141312,130.918182,119.166122,117.033890,110.918198,81.463646,66.033913,80.471916,98.397537,72.306625,33.314896,13.737209,10.083489,9.781834,7.161169,8.624807,8.990095,4.131414,0.839672,0.280993,0.035538,0.000000,0.060331,0.000000,0.127273,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.355000,4612675.550000,4961,3555,121.400009,181.523972,168.623138,157.763626,143.267776,127.920670,127.763649,125.738853,124.796707,126.052902,123.920670,135.523972,153.532242,171.490906,183.218185,192.052902,188.747116,173.846283,151.895874,130.846298,119.664474,116.871086,110.490921,81.284317,65.036385,80.366959,96.920670,70.697548,32.672745,13.235556,10.044648,8.516545,5.743813,7.287617,7.556210,3.157034,0.356200,0.085124,0.110744,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.555000,4612675.550000,4977,3555,120.879349,184.168610,170.962006,158.986801,142.400024,128.152084,127.185135,124.482658,124.300835,127.094223,123.267776,135.242981,153.036377,170.061172,181.251266,192.127289,188.342163,173.614899,151.061172,131.515717,119.242989,116.391747,110.400009,80.722328,64.614891,80.904144,95.350426,70.119019,32.681015,12.604977,10.036383,9.073569,6.744640,7.004144,6.176871,3.491746,0.077686,0.000000,0.238844,0.049587,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.355000,4612675.550000,4996,3555,124.616547,183.104156,168.021500,159.889267,141.335571,128.451248,127.128937,124.798370,123.368614,127.228111,123.302498,134.112411,153.079346,169.897537,182.434723,192.947113,189.261169,173.385132,150.905792,130.319016,118.178535,116.343834,109.963654,80.616547,64.831421,80.690933,96.236382,68.740524,31.170267,12.048777,9.996714,9.974395,5.459515,7.270262,7.174392,2.695049,0.828928,0.261984,0.036364,0.054546,0.045455,0.000000,0.000000,0.098348,0.000000,0.000000,2.014876,0.000000,0.000000,0.000000 -601746.955000,4612675.550000,5024,3555,128.711594,184.554581,171.430603,161.761185,145.223999,131.215714,129.645462,127.843803,126.885132,131.529755,126.554550,138.397552,155.554581,171.595901,184.777710,194.860367,192.546310,175.686813,153.455399,132.058685,120.835541,118.339676,112.009094,82.166138,66.686798,84.967789,96.257027,70.579361,32.223988,14.070266,10.182664,9.204147,6.197533,6.360343,8.552905,6.324804,0.304133,0.204133,0.073554,0.000000,0.000000,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.940496,0.000000,0.000000 -601749.955000,4612675.550000,5039,3555,141.433899,192.888443,172.764481,164.037201,145.392578,131.318192,130.293411,127.508278,126.797539,132.194229,126.690102,138.904968,154.309937,173.227295,185.318192,195.549606,192.690094,175.739685,152.648773,133.938034,120.896713,118.012413,112.954559,82.541336,68.194229,82.714890,97.318199,70.475220,31.657045,14.219852,10.268613,11.025636,7.446295,7.129763,6.885137,3.481827,0.266116,0.045455,0.169422,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.155000,4612675.550000,5055,3555,140.981842,194.485962,176.023163,163.692581,145.874405,132.568604,132.386795,129.147125,128.072739,133.841339,127.775223,138.709106,157.378540,173.618210,186.552094,196.386780,192.469421,176.700851,153.419861,133.791748,122.279350,118.469437,113.072739,85.064484,68.279358,84.130600,98.304146,69.824814,32.576881,14.589273,10.279359,11.080180,6.456209,6.490920,7.058690,3.481826,0.647937,0.192562,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.955000,4612675.550000,5069,3555,137.386795,203.345474,178.122330,166.081009,145.304138,133.213242,131.874390,128.783493,127.659515,134.221497,128.229767,139.014877,156.105804,174.419861,187.477707,196.519028,192.014893,176.064484,155.122330,133.477692,122.039680,117.676048,114.163643,83.609924,68.023155,84.957031,98.138847,69.039680,34.436382,14.438861,10.378530,13.095057,6.740508,6.905797,8.564476,3.653728,0.387604,0.255372,0.131406,0.112397,0.000000,0.000000,0.000000,0.000000,1.433884,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.955000,4612675.550000,5084,3555,136.975204,181.363632,171.413223,161.115707,143.661163,131.801666,129.983490,128.289276,125.884315,130.066132,126.528938,139.148758,156.545456,172.338837,184.966949,194.785126,191.123962,177.586777,154.223145,134.049606,121.057869,119.322327,113.727287,84.859528,68.975227,84.983498,98.115730,71.264488,33.495888,14.998364,10.338862,10.756212,8.034722,7.257863,7.797533,5.022324,0.447935,0.380166,0.108265,0.000000,0.073554,0.000000,0.000000,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.555000,4612675.550000,5102,3555,101.670258,160.281830,164.785965,152.628937,137.521500,127.951263,125.306633,122.901672,122.595886,123.455391,124.215721,136.025650,154.232239,169.942993,181.893402,191.017365,189.736374,176.447113,152.546295,132.124817,120.521507,118.033905,111.918198,83.744644,66.670265,83.571091,98.521500,74.017365,34.116550,13.016546,10.174399,5.705797,7.913235,8.292575,7.726459,4.134719,0.423968,0.101653,0.035537,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.976860,0.000000,0.000000 -601767.355000,4612675.550000,5126,3555,113.404144,160.908279,165.346298,152.081833,139.941330,129.057037,126.478523,123.800835,123.445465,124.924805,125.395882,135.759506,153.999191,171.205811,182.412399,191.891739,190.470245,178.635544,154.982666,132.354553,120.652077,118.842163,112.081833,85.222328,68.627289,82.957863,98.461998,72.643814,35.156219,13.109110,10.189276,6.762822,6.676045,6.422323,7.681833,4.039679,0.750415,0.166943,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.071901,0.000000,0.000000 -601770.755000,4612675.550000,5143,3555,107.902496,157.943832,162.208267,153.051270,138.390106,128.497543,126.770264,123.076050,123.811584,124.191750,125.456215,136.257874,153.902512,171.588455,183.439697,192.009949,190.704163,178.398376,154.596725,133.299194,120.985138,118.927292,112.109108,85.026466,68.621506,83.522331,97.919029,72.150429,35.505802,13.525638,10.191754,7.419847,7.108275,9.500841,7.117368,3.865297,0.785126,0.061984,0.087604,0.000000,0.059504,0.000000,0.101653,0.024794,0.000000,0.000000,0.000000,1.097521,0.000000,0.000000 -601776.155000,4612675.550000,5170,3555,100.637199,157.133072,162.504959,151.686768,138.116531,128.314896,125.876862,123.653732,122.645470,123.628937,124.752907,135.976044,154.471893,171.009094,182.744629,191.000824,189.265289,177.331406,153.769424,131.868607,121.174393,117.042160,112.645470,83.901665,67.496712,82.942986,97.207451,71.273567,33.794235,11.982662,10.240515,6.476871,6.459516,6.253730,6.718194,2.781825,0.300828,0.071901,0.087604,0.000000,0.056199,0.000000,0.051240,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.955000,4612675.550000,5184,3555,96.876053,159.925629,160.462830,151.785141,138.256210,128.223160,125.132248,122.867783,123.355385,123.644646,124.396713,135.595062,154.867783,170.247955,183.272751,191.371918,190.570267,177.033081,153.818192,131.900848,120.892578,116.743820,111.363655,84.049606,67.190102,83.991753,96.256218,71.107460,33.834732,13.260347,10.123986,4.881004,6.254557,6.899186,6.207451,3.698354,0.469423,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,1.189256,0.000000 -601783.755000,4612675.550000,5208,3555,119.970261,160.466965,163.243820,153.136383,138.772766,127.946289,125.904968,124.772736,122.863647,125.714882,126.318192,136.921524,155.747955,171.367783,184.747955,192.293411,191.623978,180.194229,154.640518,132.706619,121.342987,119.475212,114.409096,85.599182,68.053734,86.037209,97.566124,71.847130,34.367786,13.348778,10.400846,3.837198,7.907452,6.985136,7.163649,1.724800,0.780994,0.257026,0.224794,0.000000,0.000000,0.552067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.155000,4612675.550000,5230,3555,110.214058,158.709930,163.891754,155.676880,139.577698,130.073563,126.685135,124.941330,124.428940,125.850426,125.957863,137.561172,155.668610,171.792587,184.585968,193.040512,191.693405,179.098373,153.866959,133.478531,121.552902,117.106621,114.354568,85.528107,69.379356,85.040504,98.552902,72.949608,33.784317,13.921506,10.395887,4.559513,7.797534,8.169434,8.762822,2.703312,0.642977,0.255372,0.000000,0.135537,0.000000,0.000000,0.000000,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.555000,4612675.550000,5262,3555,100.843811,151.333084,160.399200,152.762833,140.729782,132.704971,130.382660,127.680183,127.514893,127.928116,129.019028,139.572754,157.696716,174.390930,186.514877,194.605789,193.564468,181.283478,156.853745,135.002487,124.093391,119.861992,115.209099,87.085129,70.928116,86.233894,98.861992,73.324806,35.862007,13.499192,10.473573,6.259515,6.947946,8.274393,6.920673,3.718192,1.246284,0.123141,0.204959,0.051240,0.000000,0.000000,0.050413,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601798.755000,4612675.550000,5283,3555,108.656219,163.226456,164.631409,153.763641,140.201675,129.970261,127.135559,124.730598,125.664474,126.168617,128.143814,138.970261,157.110748,173.499191,185.457870,193.763641,192.813232,179.507462,156.176865,134.532257,123.077698,119.482658,115.218193,86.846291,68.937210,84.259529,97.780174,71.995064,34.515720,13.016547,10.474401,5.780176,8.430592,7.580177,7.481830,4.312406,0.394216,0.606612,0.108265,0.093389,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.955000,4612675.550000,5324,3555,99.714066,157.811600,165.078552,152.822342,140.309937,131.871902,128.855377,128.384308,127.351250,128.301666,129.326462,141.070267,159.764496,175.574417,187.756226,196.863647,195.871918,182.293427,158.822342,136.673569,125.566124,121.681824,116.045464,87.086792,70.896713,86.012413,99.913239,73.524811,34.144646,13.780184,10.549607,4.407448,7.359517,7.067780,6.015715,1.914055,0.453720,0.153719,0.084298,0.000000,0.126447,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.355000,4612675.550000,5341,3555,107.686790,157.381012,166.628937,155.331421,140.538025,131.984314,129.190918,128.009109,126.934723,129.017365,129.521500,141.372742,158.356216,175.124802,187.364471,194.496704,195.058685,183.149597,158.992569,134.513229,125.703316,120.926460,116.281830,87.918205,71.901665,86.397545,99.579353,74.620674,35.108284,13.646298,10.571094,7.209929,6.642989,7.543814,7.087614,1.618187,0.784299,0.161157,0.000000,0.000000,0.119835,0.000000,0.000000,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.755000,4612675.550000,5358,3555,112.621498,163.431412,165.026459,156.885956,143.654556,132.357040,129.894226,129.274384,127.175217,130.249603,130.464478,141.100830,159.026459,175.398361,188.092575,196.869431,195.588440,183.233063,158.323975,137.150421,126.092575,121.621498,116.563644,89.109100,71.381828,86.414886,99.646294,74.728935,35.968616,14.609935,10.596713,6.671086,7.336376,9.047120,8.264477,2.359510,0.885952,0.346282,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,1.266116,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.955000,4612675.550000,5374,3555,110.822327,161.698349,163.590912,155.243805,141.309921,131.814072,128.756210,126.979355,126.731422,128.863647,129.128113,140.640503,157.557846,173.962814,186.260330,195.681824,193.896698,181.979340,157.111572,136.342987,124.524811,120.599190,116.136383,88.698364,69.599190,85.243820,99.590927,73.814064,33.747955,13.290099,10.557869,6.797532,6.194226,7.411583,7.415715,3.152901,0.512398,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.935537,0.000000,0.000000 -601823.555000,4612675.550000,5407,3555,117.814888,168.376862,164.699173,156.674377,142.393402,131.517365,129.360336,128.434723,127.723976,129.847946,131.401672,141.128937,158.732224,175.641312,188.657852,195.674377,196.087601,183.244629,158.566940,137.583466,126.393402,121.285965,116.872742,89.740509,72.261169,87.244644,100.145470,73.922325,35.418198,13.731424,10.624811,5.556208,7.440510,7.723980,7.980178,3.679348,0.628927,0.481819,0.179339,0.051240,0.000000,0.157851,0.558679,0.000000,0.000000,1.314876,0.000000,0.000000,0.000000,0.000000 -601827.755000,4612675.550000,5428,3555,101.422325,162.994217,165.357864,156.531418,143.407455,133.374390,128.738037,128.217377,127.200844,130.738037,129.523148,140.845474,158.895050,175.275208,186.878525,195.300003,194.688431,184.019012,158.473557,137.911591,125.870262,122.333069,118.027290,90.266960,73.903320,87.068611,101.622330,75.448776,36.845470,15.188447,10.729772,5.814886,8.657041,8.335550,9.833073,5.927283,0.517356,0.403307,0.171075,0.263637,0.090083,0.000000,0.000000,0.054546,1.273554,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.755000,4612675.550000,5458,3555,107.142990,165.638855,165.341324,156.506622,143.300003,132.060333,130.076874,128.283478,128.663635,131.622314,131.233902,140.944641,159.961166,174.853729,187.680191,196.919861,196.002502,183.886780,159.812408,137.010757,125.903313,122.738022,117.209099,89.010757,71.680168,85.936378,99.432243,75.787621,33.919853,13.662002,10.655391,5.583481,7.402493,8.100014,6.966128,4.070257,0.781820,0.000000,0.385952,0.000000,0.000000,0.664463,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.155000,4612675.550000,5480,3555,114.171089,171.179352,169.559509,158.832245,144.823975,134.435547,131.526459,130.584305,129.790924,131.972733,132.559509,142.187607,159.567780,176.914886,188.592575,197.129761,196.030594,185.377701,160.675217,139.030594,126.906624,123.708282,118.063644,91.352905,71.675224,88.642159,100.997528,75.501671,35.865307,15.665307,10.733077,6.094226,7.824810,8.895055,7.681005,3.168602,0.587605,0.057852,0.270249,0.054546,0.000827,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601840.955000,4612675.550000,5494,3555,116.585960,164.263641,167.164459,157.842148,142.676865,131.296707,129.908279,126.866951,125.809105,129.205795,129.362823,139.924789,157.519836,174.536362,186.536362,193.800827,194.536362,182.569427,158.933060,135.668594,125.379349,121.776047,116.263649,89.701668,69.933067,86.371086,98.809105,74.619019,36.957870,14.291754,10.569441,5.643812,8.036378,7.747946,8.628112,4.736372,1.219837,0.293389,0.195868,0.136364,0.071075,0.000000,0.071075,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.555000,4612675.550000,5507,3555,113.118195,168.217361,169.225632,160.134720,143.341324,131.671921,129.746292,129.101669,127.192574,130.233902,130.622330,141.101654,158.176041,175.242157,187.109909,194.779327,194.109909,183.415710,158.614059,137.506622,125.862000,121.300018,116.663651,88.176048,70.465309,85.862000,99.539680,74.837204,33.490101,14.617373,10.605804,4.956209,6.395882,7.396708,7.105797,2.551247,0.908266,0.285125,0.517357,0.083472,0.099174,0.000000,0.284298,0.000000,0.000000,1.336364,0.000000,0.000000,0.000000,0.000000 -601846.755000,4612675.550000,5523,3555,117.865295,172.228943,170.724808,160.096710,145.542999,132.898361,132.270264,130.683487,128.848770,131.435547,131.931412,141.385971,160.038849,176.741333,188.030594,197.030594,195.832245,185.419022,160.319839,138.187622,127.022324,123.518188,118.336372,89.642159,72.989281,87.666954,100.427284,77.220688,35.700016,14.812415,10.757870,3.502488,6.100013,7.676872,7.233897,2.651246,0.770249,0.109918,0.063637,0.023967,0.080992,0.000000,0.009091,0.004133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601852.555000,4612675.550000,5552,3555,119.757057,177.608261,171.393387,158.947098,145.905777,133.038025,131.641342,129.021500,127.674393,132.128937,130.781830,141.170242,159.980164,175.657852,188.624786,197.261154,195.335541,185.285950,160.467758,137.178528,126.335548,123.847946,118.600014,88.550438,71.690933,85.203339,100.294228,74.467796,34.104149,14.280183,10.781837,3.924802,6.578526,5.901665,6.475220,4.437201,0.616530,0.208265,0.228926,0.000000,0.008265,0.000000,0.138017,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.755000,4612675.550000,5568,3555,117.872749,173.856216,168.831421,161.517365,147.285965,134.211578,131.947113,130.517365,130.343811,134.004959,132.277695,143.368607,160.219849,177.715714,190.029770,199.459518,196.682663,185.690918,162.095886,140.252899,128.385132,124.343803,119.509094,91.087608,72.881012,88.170250,99.963646,76.343826,36.682663,15.862002,10.864482,6.746292,8.636377,9.696707,6.988443,4.913232,1.152068,0.000000,0.176860,0.298348,0.082645,0.000000,0.286778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.955000,4612675.550000,5594,3555,137.494232,183.882660,172.998367,163.328949,148.667786,134.634735,132.304153,130.634735,129.576889,133.353745,132.105804,142.362000,159.742172,177.163666,190.171906,198.080994,197.502487,185.948761,162.651260,139.717377,127.147133,124.221512,119.890930,90.138863,73.700851,87.783493,101.841347,77.469444,36.775227,14.638863,10.899193,6.460342,8.327288,8.174394,7.407451,3.933892,0.825621,0.514877,0.000000,0.003306,0.005785,0.000000,0.009091,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.155000,4612675.550000,5610,3555,120.176872,166.325638,166.771927,155.978531,138.557037,127.350426,125.714058,124.523979,123.895882,126.631416,126.391747,137.226471,155.176880,171.507462,184.333908,191.482666,191.168610,179.490921,155.887619,133.986786,123.449600,119.656212,114.036377,86.300835,70.466133,85.052902,97.631416,73.251259,32.690929,13.600018,10.366961,6.110754,8.345469,8.547949,7.198359,4.048768,0.364464,0.269423,0.461158,0.000000,0.137191,0.000000,0.002479,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.755000,4612675.550000,5638,3555,121.479355,173.677704,173.801666,159.495865,143.801666,131.438034,130.388443,128.198364,127.396713,128.752075,128.239685,139.636383,157.669418,173.429749,184.380173,193.413223,191.247940,178.958679,154.462814,135.000015,123.553734,120.363655,114.363655,87.842995,71.165306,85.041336,97.281006,71.272743,33.793407,14.646298,10.396712,7.938856,7.039680,7.588442,8.994227,4.080173,0.591737,0.083472,0.189257,0.099174,0.082645,0.150414,0.000000,0.000000,1.342149,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.555000,4612675.550000,5657,3555,111.886795,168.845459,174.614059,162.118195,147.547943,134.704971,133.481827,131.407440,130.382645,131.184311,131.696701,141.928116,159.324799,175.308273,186.457031,193.903336,192.457047,180.010757,155.423996,134.994217,123.283485,120.581009,115.754562,86.564476,70.531418,84.663651,98.068611,70.779350,34.415722,14.264480,10.523158,10.010757,9.123978,9.820674,9.912410,4.769432,1.271076,0.465291,0.236364,0.208265,0.058678,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,1.290083,0.000000 -601878.755000,4612675.550000,5683,3555,118.019020,170.936371,172.217361,159.663635,144.076889,130.498367,130.076889,128.035553,126.870270,127.754570,127.266968,138.531433,156.432236,172.019012,183.936371,193.109924,191.680176,178.523148,154.721497,133.209106,122.837212,119.936386,114.572746,86.043823,70.919861,84.399193,97.663658,71.721512,34.217373,13.814067,10.415721,7.938857,7.628938,7.629764,6.787615,3.394223,0.316530,0.088430,0.509919,0.000000,0.060331,0.000000,0.004132,0.170248,0.000000,0.000000,0.000000,0.678513,0.000000,0.000000 -601881.755000,4612675.550000,5698,3555,115.063644,175.419022,172.947937,159.501663,144.790924,131.162827,130.493393,126.617363,127.038849,128.443817,127.319847,138.782654,157.270264,172.741333,183.964478,193.972733,191.625626,178.567780,155.220673,134.823975,123.576042,119.757858,114.063644,86.080177,70.204140,83.733070,97.212410,72.096710,34.741344,15.155390,10.369440,8.324807,6.397533,7.660343,8.238031,2.636370,0.457026,0.257026,0.000000,0.000000,0.000000,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.555000,4612675.550000,5717,3555,116.877701,181.905792,173.690918,160.641342,145.856216,131.930588,132.335541,129.566940,128.046280,130.219833,128.550415,141.476044,158.418198,173.980179,186.029770,194.699188,193.310760,179.740509,154.781830,134.930588,125.161995,121.029762,115.600021,87.376869,70.583488,85.757034,98.591759,70.476051,34.261177,14.411589,10.509110,11.633900,7.595881,8.803321,8.623155,3.477694,0.589258,0.272728,0.290084,0.000000,0.000000,0.004959,0.269422,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.955000,4612675.550000,5739,3555,121.337212,187.428101,174.568604,163.287613,145.907455,133.543823,132.800018,129.800018,129.081009,130.948776,128.890930,141.395065,159.684311,175.510757,186.593399,195.370255,194.056198,180.056198,156.816528,136.428101,125.304153,122.626472,116.890930,88.171921,72.923988,86.229774,98.882668,73.808289,35.651257,15.263655,10.626466,10.347949,10.667784,9.819021,8.433898,4.262818,1.475210,0.261158,0.184298,0.052893,0.099174,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.355000,4612675.550000,5771,3555,128.336380,179.055405,172.179367,160.733063,144.633896,131.881836,130.104980,128.716553,127.625641,130.410767,127.857040,139.237198,156.650421,173.262009,185.534729,194.939682,192.939682,178.708298,156.377701,136.146286,124.038872,121.047134,115.154572,86.567795,71.080193,86.022339,100.204155,71.964485,33.848778,14.728944,10.468614,9.079355,7.724807,9.109932,7.604973,3.611578,1.048763,0.105786,0.119835,0.510744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.355000,4612675.550000,5786,3555,125.454559,186.975204,173.214874,161.950409,145.809937,131.264481,130.297531,128.330597,128.214890,131.942169,127.900841,139.454559,157.016525,173.107437,185.900833,193.487610,192.123962,178.685944,154.768616,134.157043,123.644646,122.082664,115.545471,87.115715,70.809937,86.074394,99.876053,71.867790,34.438038,13.980183,10.504150,9.871917,8.218195,7.433071,8.029765,2.729759,0.395869,0.329753,0.106612,0.135538,0.062810,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.155000,4612675.550000,5800,3555,132.421509,189.719009,176.933884,163.479340,147.685974,131.239685,132.355392,129.801666,129.264481,132.826462,129.338852,139.471085,157.652893,174.256195,186.966949,195.528931,193.314056,177.487610,155.247940,135.528946,124.760345,121.685966,115.545471,86.561996,72.338860,86.198364,98.024811,71.595055,32.991756,13.767787,10.504151,11.147122,7.209104,8.483485,8.368608,3.909101,0.499175,0.040496,0.000000,0.124794,0.041322,0.000000,0.130579,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601906.755000,4612675.550000,5823,3555,129.354568,189.668610,171.412415,164.404144,146.329773,132.263641,132.172729,129.404129,129.164459,133.453720,129.189255,139.197540,157.503326,175.023972,186.470245,196.156219,193.214066,178.627274,156.073578,135.759506,124.767769,121.420662,115.809097,87.610764,72.040512,85.660347,98.693398,71.742996,34.577705,12.804149,10.528117,9.255386,8.498361,7.598360,8.021501,2.943811,0.704135,0.128100,0.059505,0.061157,0.000000,0.000000,0.063637,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.555000,4612675.550000,5857,3555,146.690094,196.359497,175.334717,167.301666,149.252075,134.475220,133.764481,131.615723,131.111588,137.351257,131.243820,142.433899,158.971085,176.442154,188.334717,199.177689,195.376038,180.293396,158.028946,137.152908,126.838860,123.648773,118.681831,88.392578,73.144646,89.500015,98.946297,70.376053,34.037209,15.477703,10.789274,11.268610,8.561171,7.231417,9.348774,4.787612,0.261158,0.143802,0.311571,0.000000,0.061157,0.000000,0.145455,0.000000,2.885951,0.000000,0.000000,0.000000,0.000000,0.000000 -601923.755000,4612675.550000,5908,3555,115.819023,162.405792,168.347946,155.909927,141.124802,131.100006,129.571091,125.951256,125.827286,126.190926,128.091751,138.488449,156.471909,172.281830,184.653732,193.686783,191.860336,179.149597,156.438858,134.653732,124.083481,121.149597,114.463646,87.513237,70.571091,86.364479,99.033897,72.670258,33.645477,15.101671,10.405804,7.066955,7.296708,8.058690,7.676045,1.861164,0.921490,0.000000,0.164463,0.000000,0.055372,0.000000,0.000000,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.355000,4612675.550000,5986,3555,96.458694,158.956207,163.204147,155.005798,145.071915,136.757858,137.303329,134.468613,132.981018,132.633896,132.906631,143.700012,161.939682,178.129761,188.402496,197.774399,196.823990,185.385956,160.873566,140.113251,128.914886,126.485138,120.427292,92.708290,75.997543,91.873573,101.923157,75.113251,35.823990,15.445472,10.947953,7.143815,8.995055,8.948773,7.428112,3.476040,0.876861,0.565290,0.153720,0.000000,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.555000,4612675.550000,6112,3555,110.285965,162.806625,163.228119,154.814896,140.261169,131.186783,129.790100,126.806625,127.219849,127.872742,128.955383,139.723984,157.195053,173.186783,186.112411,194.575226,193.467789,181.608276,158.335556,136.368607,125.715714,120.451256,115.963646,87.831421,71.550423,87.459518,100.922325,73.542168,33.814896,13.856215,10.542168,5.727283,6.460343,6.889269,6.756211,2.341329,0.573555,0.202480,0.000000,0.059504,0.000000,0.000000,0.023141,0.000000,0.000000,1.314876,0.000000,1.007438,0.000000,0.000000 -602002.955000,4612675.550000,6304,3555,120.317368,167.676041,168.428101,161.114059,145.626450,135.824799,132.758698,130.742157,130.411591,133.866135,133.395050,144.510757,161.791748,178.981827,191.411575,200.122314,199.915710,188.510757,164.519012,142.436371,130.163651,127.229767,121.436378,93.246292,76.105797,91.064476,103.717369,77.841339,36.758701,15.769440,11.039689,5.222323,7.861173,9.183487,7.584311,2.870255,0.523969,0.111571,0.418183,0.061984,0.037191,0.164463,0.017356,0.066942,0.000000,1.214050,0.000000,0.000000,0.000000,0.000000 -602019.755000,4612675.550000,6388,3555,122.745476,181.282654,171.406616,162.191742,147.563644,135.266129,133.315720,133.100845,131.555389,135.753723,134.712418,144.844635,162.456207,179.307434,191.671082,201.654556,200.927277,189.332245,164.902496,144.026459,131.803329,126.497536,120.836380,93.687622,76.257866,91.638031,103.728943,77.200020,36.033905,15.177704,10.985144,4.532241,7.637206,7.439683,8.774395,2.396700,0.787605,0.277687,0.146281,0.000000,0.013223,0.293389,0.008265,0.086778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.755000,4612675.550000,6423,3555,124.493416,186.295044,177.675217,165.452072,148.939697,137.162827,136.319839,134.989273,133.509933,136.906616,137.179352,146.873581,163.981003,181.840500,193.658676,202.253708,202.138016,189.650406,164.468597,141.898376,131.080170,127.361168,120.427284,91.989265,75.617363,90.700012,102.476868,76.369431,34.303322,13.525637,10.947952,5.916538,6.261999,7.366130,7.405798,3.023974,1.074382,0.255373,0.385952,0.396695,0.277687,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602030.155000,4612675.550000,6440,3555,112.406624,175.382660,174.944656,161.291763,143.068619,132.176041,130.109924,127.944633,126.721497,128.366119,129.233887,140.771103,160.167786,176.614075,188.895050,199.275208,198.382645,183.911575,160.167786,137.985977,127.514885,124.151245,119.027283,90.308273,73.845467,89.762817,102.845459,74.357857,36.556217,13.913240,10.820680,8.437204,8.004973,8.592575,10.228113,5.095049,1.864466,1.008266,0.289257,0.406613,0.414050,0.373554,0.485951,0.141323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.555000,4612675.550000,6467,3555,121.550423,179.451233,177.442978,164.038025,144.112411,134.310760,135.046295,130.046295,129.566956,129.955383,129.872742,142.062820,161.847931,178.244629,189.980164,200.178513,200.591736,185.079330,161.748764,140.285965,129.021500,126.261169,121.509102,91.451256,76.476044,90.682655,104.352081,75.864479,37.674397,15.771918,11.046299,9.914063,10.718196,9.000840,10.100015,4.161991,1.224796,0.312398,0.262811,0.000000,0.200001,0.000000,0.111571,0.000000,0.000000,1.546281,0.000000,0.000000,0.000000,0.000000 -602038.755000,4612675.550000,6483,3555,106.864479,170.808273,175.328934,161.510757,143.948761,132.039688,131.419846,128.180176,127.403320,128.766953,128.370270,141.204971,159.915710,177.585129,189.676041,199.502487,198.031418,183.899185,160.023148,137.948761,126.254562,124.824806,117.981834,88.816544,73.824814,89.279350,104.064476,74.618195,36.519032,14.276877,10.725639,8.646294,8.276047,8.581830,9.083486,4.594222,1.119010,0.860332,0.546282,0.536364,0.029752,0.000000,0.079339,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,4.355372 -602041.755000,4612675.550000,6498,3555,113.523987,175.747116,180.284302,165.672745,146.292587,133.912415,131.978531,128.995056,128.449600,129.548782,129.705811,142.317352,160.920685,176.937195,189.069427,200.069427,197.433060,183.937195,160.457870,138.160339,127.276054,123.342171,118.854553,88.309113,74.672745,89.259521,102.036385,74.011589,34.317375,13.268612,10.804977,9.866957,7.112411,7.301666,7.845468,4.700007,0.410745,0.180166,0.173554,0.000000,0.000000,0.000000,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602048.555000,4612675.550000,6532,3555,110.361168,181.385956,172.339661,159.595886,140.890091,128.228943,126.857033,124.526459,122.576042,126.405800,124.471916,138.075226,156.926453,173.637192,185.695053,196.827286,196.182663,181.339661,157.314896,136.171082,125.947945,121.857033,117.972740,88.906631,74.567787,87.295059,101.576042,74.542992,37.468616,14.247952,10.724813,11.664478,8.185139,10.553736,11.267783,6.419845,1.546283,1.360332,2.500001,1.709092,1.857026,0.888431,2.655373,1.109092,0.000000,0.000000,0.186777,0.000000,0.000000,0.000000 -602051.355000,4612675.550000,6546,3555,114.088455,184.146286,179.220673,165.402496,146.204163,134.501663,135.047119,130.476868,129.914886,132.113235,130.410751,143.055405,162.286789,177.691742,190.625626,201.576050,199.790924,185.790924,160.972733,139.195892,128.336380,125.633896,121.245461,90.956223,75.262001,89.873581,102.212418,74.369446,35.262001,13.876878,11.022334,11.162001,7.762825,8.485966,9.202494,4.061993,0.813225,0.142149,0.052893,0.069422,0.000000,0.000000,0.000000,0.022315,1.494215,0.000000,0.000000,4.314877,0.000000,0.000000 -602055.955000,4612675.550000,6569,3555,106.507454,187.142151,183.737198,166.183487,150.439682,135.852905,136.522324,131.993393,131.828110,133.803314,132.067780,143.795044,162.976868,178.919022,192.538849,201.745468,200.398361,186.307449,161.877701,139.241333,128.200012,125.687614,120.563644,92.365311,76.762009,90.042992,104.257866,76.728951,37.414898,15.890101,10.960349,13.033900,9.549602,9.930593,11.066131,5.351250,1.085127,0.404133,0.305786,0.127273,0.224794,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602062.355000,4612675.550000,6601,3555,103.843002,169.900848,168.132248,158.785141,143.727295,131.024811,129.603333,126.578537,125.991760,128.479370,126.611595,136.859543,152.867783,169.933899,181.545471,191.231415,190.338852,176.363647,153.421509,132.876053,123.801674,119.099197,114.818207,88.793411,73.371925,87.082672,98.661179,71.834732,33.520679,14.214893,10.438036,6.714061,7.461999,5.716538,7.620674,2.359509,0.419009,0.243803,0.457852,0.000000,0.156199,0.348761,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.555000,4612675.550000,6622,3555,123.921494,170.064468,168.279343,161.568604,144.163666,133.023148,130.907440,128.023148,126.775215,129.353729,127.634720,137.576889,153.634720,170.899185,182.800018,193.204987,191.072754,179.552078,156.023148,134.312408,124.147118,120.684303,114.890923,88.733902,73.560349,88.857864,99.866127,73.758690,34.833073,14.552910,10.444648,5.855383,7.119849,6.348772,9.485138,3.892568,0.600828,0.299175,0.254546,0.130579,0.004959,0.066116,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602073.555000,4612675.550000,6657,3555,100.721504,168.409927,167.905792,159.558685,145.558685,132.525635,130.657867,127.038033,126.376869,128.748779,127.856209,137.409927,153.533890,169.748779,180.773560,190.409927,189.079346,176.674393,153.922333,132.881012,122.161995,118.360344,114.236374,88.467781,72.814896,86.922325,99.252907,73.128944,34.153736,11.928118,10.385143,4.023149,6.814065,6.258688,7.467781,2.918187,0.200827,0.089257,0.379340,0.042149,0.000000,0.070248,0.477686,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602082.355000,4612675.550000,6701,3555,108.056213,167.403336,166.973557,161.651260,146.039673,134.138855,130.923981,127.957031,127.122322,129.080994,128.560333,138.287613,155.271103,170.791748,182.064499,191.287643,190.494247,177.981842,155.064484,133.568604,123.370255,119.841331,113.890915,88.452904,73.155388,88.742165,101.023148,74.097534,35.560345,14.717373,10.353740,5.508275,8.490099,8.973566,7.582658,4.818189,0.437191,0.366116,0.504960,0.319835,0.093389,0.066116,0.165289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.755000,4612675.550000,6733,3555,108.578529,156.950424,167.057861,156.975220,143.570251,130.842987,127.991753,124.016548,122.471092,125.099190,124.595055,134.785141,150.851242,166.760345,178.743805,187.462814,187.446274,174.413223,152.388428,131.983490,120.504150,116.727287,111.454559,85.652908,71.000015,86.917366,99.909103,73.338860,35.264484,16.062828,10.132251,5.714887,8.157040,7.003317,7.726459,3.166948,0.951242,0.134711,0.213224,0.274381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.555000,4612675.550000,6767,3555,89.990105,154.279343,166.246292,156.056198,142.626465,130.444641,127.287621,124.056213,121.419846,123.692574,123.411583,132.882660,150.766953,165.981827,177.072723,185.444626,185.444626,173.122299,149.932236,130.626465,120.312408,116.047951,109.163651,84.238022,69.552078,86.023148,98.560349,75.651260,36.149605,14.959522,9.923985,5.945465,8.058694,6.796706,7.819021,3.860337,0.303307,0.647935,0.212397,0.017356,0.235538,0.261984,0.102480,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.355000,4612675.550000,6786,3555,94.098366,151.585968,165.404144,155.536377,140.172745,129.007462,126.428947,123.412415,122.412415,122.098366,122.957870,132.866959,149.742996,164.900024,176.478531,185.255386,184.263657,172.519852,150.123154,131.329773,119.106628,115.701675,110.445473,84.404152,69.462006,85.800842,98.709938,74.445473,36.470268,15.240514,10.040514,6.049598,8.792578,8.729765,7.152905,3.028931,0.639670,0.262810,0.094215,0.130579,0.000000,0.119835,0.726447,0.342149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602102.555000,4612675.550000,6802,3555,94.085129,150.060349,165.928101,155.448776,137.804153,128.473557,124.283478,120.647118,119.886780,119.754555,119.514885,130.109924,147.382660,162.605789,173.101669,182.118195,181.457031,170.721512,148.572754,127.440506,117.704964,113.242157,107.118187,80.886780,67.068611,84.440506,100.382652,75.845467,37.804150,14.696712,9.738035,5.438852,8.633899,6.895879,6.966129,2.928104,0.470249,0.029753,0.000000,0.024794,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.155000,4612675.550000,6820,3555,98.089272,154.238037,161.915710,151.304153,136.758682,127.262825,123.899178,119.932236,118.667778,118.758682,118.188438,128.552078,145.593414,160.824799,172.469437,180.833084,179.849609,168.428101,147.014893,126.849594,117.403313,111.039680,106.163651,79.642990,65.229767,82.758690,98.700844,75.709106,36.287624,13.641340,9.651259,6.387614,9.134727,7.852905,6.361169,2.919840,0.541323,0.113223,0.090909,0.061158,0.210744,0.053719,0.000000,0.507438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.755000,4612675.550000,6843,3555,95.219025,145.607437,157.913239,149.904968,135.772720,126.136375,121.772728,117.045456,114.780991,115.508263,116.830582,126.086777,142.896698,158.227295,170.095062,180.475220,177.855392,166.508286,143.301651,124.739670,113.524796,108.615700,104.227272,76.194229,63.929771,80.004150,98.078514,74.392578,31.590101,12.501670,9.475224,4.239679,6.428940,5.675218,6.123978,1.549591,0.273555,0.094215,0.122314,0.137191,0.290083,0.000000,0.339670,0.309091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602115.955000,4612675.550000,6869,3555,92.635559,147.627289,157.800842,150.701675,134.371094,125.726456,121.478531,118.445473,116.668617,116.437210,116.288452,127.172737,143.875229,159.057037,169.131424,179.238861,178.015717,166.718201,145.255386,125.205795,115.123161,110.594231,105.172737,78.032249,63.453739,82.238861,98.957863,73.652084,35.098370,13.139687,9.561176,6.332242,6.278528,7.889268,7.729764,2.947940,0.112398,0.089257,0.110744,0.107438,0.109918,0.124794,0.394215,0.137190,2.262810,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.555000,4612675.550000,6887,3555,91.839684,148.971909,162.120667,151.666122,136.467789,126.476044,121.335548,117.814888,117.120674,116.740509,116.203316,126.062820,143.971909,158.823151,169.922333,179.484314,178.591751,166.905792,145.591751,125.484314,114.608276,110.690926,104.781830,79.079353,65.162003,81.856209,98.600014,73.261169,34.666138,12.415719,9.525639,4.633894,6.190923,6.916541,6.185963,3.835545,0.239670,0.017356,0.128100,0.123968,0.000000,0.058678,0.127273,0.309918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.755000,4612675.550000,6913,3555,101.884315,146.355377,159.033051,152.702484,135.066132,126.198357,121.487610,118.785133,116.198357,116.446289,115.958687,126.917366,144.479340,159.933884,170.900833,179.413223,179.074387,167.181824,145.247940,125.082649,113.826454,111.487617,105.272743,79.396713,63.950428,81.776878,98.818199,74.586792,36.421513,12.888446,9.570266,5.248771,8.558693,6.897532,6.657863,1.853722,0.217356,0.028099,0.057851,0.023967,0.000000,0.000000,0.359504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.555000,4612675.550000,6947,3555,83.742165,145.262817,160.957031,150.395050,135.543808,128.279358,123.031418,119.833069,118.543816,117.386795,117.758690,128.081009,145.510757,159.800003,171.304138,180.370255,180.147110,168.023148,147.188431,126.907455,115.998360,112.667786,105.709106,80.328941,64.849609,81.874397,98.246292,74.072739,36.238041,14.676050,9.609937,6.080177,7.950427,6.874392,6.030589,4.278520,0.353720,0.087604,0.045455,0.057852,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602134.155000,4612675.550000,6960,3555,88.010765,142.572739,164.109924,152.729752,138.870255,129.556213,125.589272,121.589272,120.093407,120.523155,120.192574,130.572739,147.754547,162.151245,173.771088,182.729752,182.432236,170.514877,148.820663,128.076874,117.407455,113.771088,107.936378,81.374405,66.878532,82.283493,99.490097,73.382668,34.539692,13.963655,9.812416,5.763646,6.915718,8.709105,6.776871,3.252073,0.775208,0.273554,0.076860,0.028099,0.000000,0.138843,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,1.354545,0.000000 -602137.555000,4612675.550000,6977,3555,89.841347,146.766953,163.576859,153.023148,137.452896,126.485962,123.775223,119.890923,118.204971,118.023155,118.824806,128.841339,145.857864,161.642975,171.271088,181.395050,179.238022,167.857864,147.229752,127.800018,115.287628,112.824814,105.072746,79.659515,66.023163,83.171921,96.874405,72.808289,34.304153,14.642994,9.552085,4.535548,8.519850,6.753731,5.697533,2.631410,0.385951,0.080992,0.045455,0.056199,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602141.355000,4612675.550000,6996,3555,80.135559,147.251266,158.788452,150.581833,136.466141,126.499191,123.391754,120.185143,118.152084,118.267792,118.259521,128.135559,145.995056,159.895889,172.085968,181.771927,180.457870,168.697540,146.804977,126.309113,115.722336,111.358696,106.309113,79.862831,66.119026,83.424812,98.937210,72.325638,34.838036,13.914894,9.664482,5.081001,6.932247,6.902491,6.557863,4.451247,0.577687,0.326447,0.061157,0.146281,0.000000,0.000000,0.000000,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.755000,4612675.550000,7018,3555,86.343811,154.203323,165.004974,153.649597,138.236374,128.897537,124.930588,121.690926,119.922325,119.310760,119.649597,130.319016,147.484314,162.261169,173.079346,182.963654,182.657867,169.236374,148.699188,128.104141,116.426460,112.938858,107.963646,81.839684,67.426468,83.806625,97.881004,71.996704,35.335560,13.713240,9.814895,5.708274,7.757867,8.097533,7.581004,1.969426,1.295043,0.128926,0.207439,0.023967,0.000000,0.137190,0.287604,0.423141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602148.955000,4612675.550000,7034,3555,81.649597,154.285965,163.327271,153.145447,138.616547,128.947113,125.616539,122.633072,120.616539,120.914062,120.616539,131.145462,147.856216,162.930573,174.814880,183.988434,183.831406,170.368591,148.385132,128.418198,117.079353,114.335548,107.872742,82.657867,68.228111,85.236374,97.955383,73.542160,34.881012,16.185143,9.806629,6.451251,6.864478,7.761995,8.205798,3.375211,0.511571,0.405786,0.186777,0.076034,0.014876,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.955000,4612675.550000,7059,3555,90.957031,151.444641,165.386765,152.717377,139.750427,128.568604,126.692566,121.973557,120.642982,120.700836,120.469429,130.750427,148.791763,162.775192,174.304123,184.328934,183.395035,171.378510,148.709106,129.378525,118.361992,114.601662,108.254555,82.014885,67.510765,84.981827,96.816536,72.626457,34.386799,13.457043,9.841342,6.403318,7.477702,6.733069,6.849598,3.648767,0.819010,0.394215,0.036364,0.123967,0.367769,0.069422,0.304959,0.120661,0.000000,0.000000,0.000000,0.000000,1.888430,0.000000 -602162.155000,4612675.550000,7100,3555,87.281006,154.785141,162.165298,152.223160,138.206635,127.520676,124.190102,120.462830,118.413239,118.859520,118.553734,129.520676,147.157043,162.049606,173.495880,182.016541,182.198364,169.586792,147.752075,127.512413,116.661171,112.876053,107.000015,80.801666,65.975220,81.371918,96.132248,70.966957,32.562004,11.808283,9.727291,5.960343,6.649601,6.205796,6.429763,1.829757,0.431406,0.375207,0.145455,0.096695,0.000000,0.065289,0.569422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.155000,4612675.550000,7135,3555,94.865311,150.005814,162.328125,151.129776,138.633911,129.162827,124.964478,120.344643,118.609108,119.171089,120.038864,130.452087,148.104980,163.394241,174.352921,184.501678,183.385971,170.716537,147.956223,128.625641,117.237206,113.518196,107.881836,82.361168,66.832253,83.435547,96.419022,71.807457,32.171097,13.957043,9.807457,6.585136,7.345469,8.233896,6.485962,2.990089,0.438844,0.009091,0.219009,0.229753,0.000000,0.079339,0.341323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.155000,4612675.550000,7150,3555,104.596710,153.414886,163.332245,153.307449,138.894241,130.828110,126.472740,123.216537,120.985130,120.852905,121.530586,131.497528,148.836380,165.679352,175.522324,185.563644,183.505798,171.952072,149.761993,129.712402,118.952072,115.323975,110.018188,82.811584,68.026474,84.497536,97.100853,71.216553,35.778534,14.084316,10.001672,7.406624,8.618197,8.697533,8.349602,3.235544,0.935539,0.600827,0.414050,0.044628,0.000000,0.000000,0.316529,0.428100,0.000000,2.172728,0.000000,0.000000,0.000000,0.000000 -602179.355000,4612675.550000,7186,3555,82.355385,151.008270,162.685944,154.512390,138.016541,126.834724,123.900841,120.619850,118.068604,118.702492,118.853729,129.330597,146.809921,162.512390,173.545471,183.727295,181.363647,169.479355,147.561981,127.016548,117.239685,114.074394,107.181831,80.909119,67.148781,81.752090,96.206627,68.752090,31.305805,12.419025,9.743820,6.400009,5.976047,6.828112,6.232242,2.276038,0.752068,0.166942,0.102480,0.193389,0.094215,0.180992,0.005785,0.407438,0.000000,0.000000,0.000000,1.611570,0.000000,0.000000 -602182.355000,4612675.550000,7201,3555,94.937202,164.681015,166.978531,156.110748,142.185120,128.705811,126.631416,123.077698,122.895882,122.937202,122.135559,133.647964,150.276031,165.937210,176.681000,186.672729,185.656204,173.565308,150.011566,129.904144,119.234734,115.846298,110.400017,83.143814,68.879364,82.747124,95.127289,70.986801,33.226467,13.365308,10.036383,7.686789,8.839684,8.917369,8.348774,3.724800,0.693389,0.808266,0.211571,0.109091,0.425620,0.068595,0.199174,0.348761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602184.955000,4612675.550000,7214,3555,82.134735,157.564484,163.481842,154.407455,139.506638,128.903336,125.729767,123.085136,121.357864,122.002495,120.977699,132.300018,148.498367,164.250443,175.605804,186.109940,184.357880,172.118210,147.919861,127.324806,117.076874,114.242172,109.663658,82.862007,69.151260,82.407463,95.457047,68.572746,30.862001,12.794232,9.969441,6.672740,5.852079,6.796707,7.644640,3.653726,0.382646,0.024794,0.187604,0.028099,0.000000,0.000000,0.333058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602188.955000,4612675.550000,7234,3555,91.044647,158.738846,165.383469,154.267776,140.069427,130.424820,127.168617,125.127289,122.862831,122.838036,122.697540,133.912415,149.970245,165.515701,175.788452,186.557022,186.532257,172.242981,149.689255,129.548782,118.689278,115.714066,110.036385,83.681007,70.011589,84.234734,95.069443,70.069443,31.011589,12.985142,10.003325,7.737203,6.499188,7.274393,6.516542,2.546286,1.489259,0.180165,0.483472,0.153719,0.000000,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.949587,0.000000 -602193.155000,4612675.550000,7255,3555,95.058701,157.810776,166.199173,155.860336,141.199203,131.166122,128.240509,123.678528,122.455383,123.323151,123.628937,134.959518,149.943008,164.761154,176.604141,186.042160,185.852081,174.099991,150.405807,129.918198,121.133072,115.843811,110.281830,84.604156,70.438873,84.604156,95.083481,69.066971,31.207458,13.442992,10.025638,6.488441,7.612411,8.419022,7.872740,2.698353,1.231407,0.302480,0.336364,0.020661,0.000000,0.000000,0.190083,0.353719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.755000,4612675.550000,7273,3555,100.431419,162.780167,169.102478,156.309097,142.771927,130.672745,129.234726,125.350433,123.441330,124.631416,123.970268,134.986801,150.904129,167.234711,178.565292,188.366943,188.705795,175.044632,151.937195,131.102493,121.061165,118.714058,112.490921,86.019852,71.614899,85.656219,95.887611,69.300842,32.730598,14.119026,10.226464,7.024805,9.190098,7.893401,7.005798,2.595045,0.484299,0.078513,0.288430,0.297521,0.041322,0.065289,0.128926,0.218182,0.000000,0.000000,0.000000,1.656198,0.000000,0.000000 -602200.755000,4612675.550000,7293,3555,101.123161,162.949600,168.635559,157.181015,140.933075,130.776047,129.561172,126.379356,124.131424,124.660347,125.106628,136.081833,152.172745,167.767792,178.073578,187.883469,188.503311,176.255386,151.445480,132.693405,121.643822,118.585968,112.536385,86.941345,72.354568,85.842171,96.908287,68.933075,32.106632,13.576051,10.230597,9.588443,7.161997,7.380177,6.996706,3.153725,0.583472,0.471902,0.276860,0.141323,0.000000,0.000000,0.395868,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602206.355000,4612675.550000,7321,3555,97.687622,156.985153,165.803329,156.266144,141.249619,129.563660,128.481003,123.910759,122.852913,124.381836,123.803322,135.307449,151.307465,166.960358,178.803314,189.133896,188.423157,175.778519,152.877716,132.712418,123.034729,119.456215,113.927292,87.695885,72.960350,86.439690,95.241341,70.299194,32.274399,12.490927,10.357043,8.014061,8.379353,7.935550,7.972739,2.550418,0.616530,0.123141,0.268596,0.185125,0.000000,0.000000,0.069422,0.218182,0.000000,0.000000,0.000000,1.595041,0.000000,0.000000 -602209.955000,4612675.550000,7339,3555,88.641335,163.988449,165.740509,159.319016,142.393402,129.955383,130.203323,125.219849,124.955383,125.195053,125.087616,136.847946,154.385132,170.153732,181.897537,194.492569,194.211578,181.211578,158.847946,137.905792,127.591751,124.988441,117.418198,90.104149,75.004974,89.624809,101.633072,74.467789,34.368614,13.776876,10.674399,8.772739,8.123980,9.324808,8.211581,4.329762,1.405789,0.286778,0.302480,0.115703,0.138843,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.155000,4612675.550000,7355,3555,89.839691,161.881027,168.228134,156.029785,143.525650,130.335556,129.509109,125.186798,124.360352,125.955391,125.352089,136.790115,154.376892,171.310776,183.285965,194.046295,193.360336,180.467789,159.095901,138.566956,128.558701,125.120682,118.781837,90.335556,76.071098,90.393410,103.608284,77.087624,36.112419,15.121506,10.798367,9.456212,8.251254,9.833074,9.877700,3.558686,1.025622,0.342150,0.052893,0.251240,0.108265,0.000000,0.069422,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.555000,4612675.550000,7372,3555,86.885155,165.966141,166.718201,156.197540,139.817398,127.949608,128.742996,124.164482,123.114899,124.048782,123.866959,136.222336,152.817368,169.445480,181.941345,193.461990,193.478516,180.916550,159.842163,137.875244,127.990929,125.090103,117.718201,90.238861,76.404152,92.271919,106.197540,77.172745,36.569435,16.223986,10.701673,7.980177,9.447948,9.925634,9.934724,4.248769,0.913225,1.102481,0.232232,0.028926,0.000000,0.000000,0.127273,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602219.355000,4612675.550000,7386,3555,93.351265,163.351257,164.450424,158.095062,141.508286,129.061996,128.698364,125.119858,123.962830,126.673576,124.574394,136.574402,153.640518,170.599182,182.838852,194.161179,194.161179,181.805801,159.533081,139.483490,128.475235,125.392578,118.500023,91.136383,75.723167,91.557877,106.491760,77.053741,35.946301,15.086795,10.772746,8.023151,8.954560,9.115718,9.085964,3.734720,0.306613,0.614051,0.183471,0.085124,0.080992,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.955000,4612675.550000,7404,3555,98.834724,167.851242,168.008270,156.198349,142.479340,128.595062,128.008286,124.479347,123.595055,126.553734,125.231415,137.702484,152.925613,170.520660,181.900833,195.165283,193.504135,180.735535,158.371902,138.925613,126.958694,124.669441,118.090927,90.090935,75.099190,92.661179,104.074402,74.528938,34.652916,13.612414,10.735557,9.281831,7.874395,8.066956,9.238030,3.329761,0.696696,0.490084,0.000000,0.211571,0.060331,0.074380,1.180993,0.136364,0.000000,1.985124,0.000000,0.000000,0.000000,0.000000 -602228.755000,4612675.550000,7433,3555,103.142159,173.638046,167.274399,157.522339,142.968628,130.373566,129.943817,126.282654,125.795052,128.340500,125.299187,138.109100,153.803329,171.571930,183.927292,195.885956,194.720673,180.828125,158.621521,140.166962,128.571915,124.861168,119.472740,92.852905,76.266136,91.588440,103.117363,75.447952,36.092583,14.509108,10.861176,9.274392,8.628939,9.657865,10.239682,4.718192,0.749588,0.509093,0.166116,0.225621,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.155000,4612675.550000,7455,3555,109.093407,174.151230,164.250397,158.134705,140.994217,128.291748,126.209099,125.581001,123.291740,128.333069,124.068604,135.738022,152.556198,169.159500,182.374374,194.242142,192.291733,178.779327,157.225616,137.638855,126.374390,123.407448,117.663643,89.423981,74.341339,90.845467,101.862000,71.671913,33.374401,12.104148,10.696713,8.529764,6.597533,8.796708,8.324806,4.345463,1.023143,0.420663,0.890084,0.486777,0.113223,0.113223,0.000000,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602239.755000,4612675.550000,7488,3555,122.520676,177.347122,169.090927,162.057861,145.595062,133.148773,130.033081,127.322327,127.066132,131.214890,127.099190,139.190094,154.148773,171.041336,185.033081,195.636383,194.404968,179.148773,159.314072,139.322327,128.619858,125.082664,119.272743,92.297539,77.694229,93.834724,103.644646,74.140511,37.917374,14.305802,10.842995,11.037203,10.168612,9.987617,9.530592,4.609099,0.800829,0.572728,0.447108,0.189257,0.000000,0.000000,0.396695,0.409091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602243.955000,4612675.550000,7509,3555,111.204140,174.766113,166.154541,158.526443,142.179337,128.303314,126.658684,123.369431,122.179352,125.981003,122.625633,132.997528,148.997513,165.567764,177.584290,188.799164,186.964462,172.055359,152.526443,133.823975,122.377693,119.947945,114.154556,86.857033,71.171089,89.460342,101.848778,74.121506,34.700024,14.021503,10.377705,11.661997,8.661998,9.722329,10.596709,4.817365,0.935540,0.323142,0.059504,0.338017,0.150413,0.168595,0.215703,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,3.326447 -602247.955000,4612675.550000,7529,3555,119.695053,172.447113,166.653732,159.496704,140.025635,128.009109,125.662003,122.339691,120.562828,125.587624,119.414070,130.827301,146.918198,164.257034,176.901672,188.075226,185.290100,170.678528,151.785965,132.785965,121.637215,116.893410,112.190933,83.744644,70.314896,88.571098,102.761177,75.628944,36.000847,14.426464,10.199192,9.024808,7.378527,9.300014,7.876045,4.884308,0.526449,0.222315,0.224794,0.071075,0.160331,0.062810,0.000000,0.000000,0.000000,1.357851,0.000000,0.000000,0.000000,0.000000 -602254.155000,4612675.550000,7560,3555,154.685974,157.933899,146.743820,135.661179,119.933891,109.595047,106.289261,100.801659,99.991737,100.826454,101.140503,111.504143,129.198349,144.661179,157.157043,167.661179,166.677704,156.619858,136.983490,117.090919,106.363647,101.793396,96.818192,71.396713,56.041344,76.173561,94.438026,73.148773,32.371922,10.996711,8.801672,6.428110,7.190094,6.950424,7.307450,3.063643,0.686780,0.587605,0.602480,0.291736,0.131406,0.000000,0.232232,0.325621,2.192562,11.983471,3.534711,1.493389,0.000000,0.000000 -602261.355000,4612675.550000,7596,3555,160.305801,156.752075,146.247955,132.008286,116.512413,105.074402,98.214897,94.487625,91.562004,91.471100,91.983498,102.793411,121.165306,136.842987,147.735550,157.743820,157.628113,146.371918,127.264481,108.330605,96.958702,92.661179,87.454567,61.148781,46.975227,67.404976,93.107460,72.851265,32.531422,10.557041,7.950432,8.059515,8.305798,9.145467,8.457863,3.709099,1.237193,0.658679,0.307440,0.786778,0.000000,0.874381,0.080992,0.352067,0.000000,3.807438,1.774380,1.485124,0.000000,0.000000 -602265.555000,4612675.550000,7617,3555,170.726471,157.495056,139.114899,126.098358,108.941330,98.412407,93.800835,88.701668,85.751251,84.610756,84.643814,95.966125,112.643814,127.090096,139.891754,148.478531,148.536377,138.883484,122.395882,102.577698,92.139679,86.718193,81.990921,55.288448,43.131420,66.883492,92.941330,73.329773,34.624809,12.963653,7.453738,10.648774,8.720673,11.586789,12.705798,10.138031,1.981822,0.767772,0.344629,1.445458,0.122315,0.587604,0.126447,1.060333,4.185124,17.517357,0.000000,0.000000,1.610744,8.904133 -601443.155000,4612665.550000,3505,3605,138.020676,147.889267,138.748779,125.550423,110.385139,99.963646,98.467781,96.707451,96.203316,97.393402,99.252907,110.137199,128.649597,145.244644,157.847946,168.591751,168.145462,156.682663,135.104141,114.343811,103.294228,99.459518,94.418198,66.434731,48.872746,65.335556,77.533905,58.748775,26.600019,10.811585,8.583490,9.530592,8.538029,9.542989,10.875221,6.878522,1.368601,0.642977,0.315704,0.469422,0.342977,0.152066,0.473555,0.173554,7.444630,10.073555,9.310745,4.669423,8.198348,10.202481 -601449.755000,4612665.550000,3538,3605,125.934723,140.033051,139.330582,126.892578,113.363655,103.950432,101.264473,99.677696,99.413231,100.595047,101.727280,112.115715,130.512405,147.842972,159.429749,170.066116,169.363632,157.520660,135.123978,114.322327,105.148773,100.553734,94.454552,66.867790,49.611595,64.966965,77.950439,59.330605,25.917374,10.828115,8.586796,7.114061,8.065301,8.129766,9.007451,5.053727,1.616534,0.301654,0.214877,0.134711,0.195041,0.089257,0.714051,0.914877,8.796696,6.119836,2.889257,2.517356,1.738843,8.426447 -601459.955000,4612665.550000,3589,3605,116.965302,139.575226,140.071091,130.335556,116.360352,105.674400,103.195061,102.814896,102.252914,103.409935,104.327293,114.484322,132.285965,148.162003,162.641342,171.955383,171.285965,159.914062,136.087616,115.558701,104.773575,101.029770,93.963654,67.170265,49.583496,64.773575,79.310768,58.178539,25.831425,9.376050,8.542168,5.816539,6.296705,7.863650,8.059518,2.397525,0.905788,0.360332,0.000000,0.110744,0.246281,0.000000,0.156199,0.717356,5.036364,0.965289,2.312397,4.001654,2.573554,0.000000 -601472.955000,4612665.550000,3654,3605,105.995880,145.028946,144.971085,132.838852,120.566132,111.599190,108.714890,107.342995,107.599190,108.491753,110.053734,120.607452,138.971085,155.037201,166.392578,176.177719,174.111588,164.285141,141.268616,120.632248,109.252083,105.219025,98.954559,71.599197,53.318199,69.334732,82.128113,62.367790,27.020678,10.742167,8.995887,7.319849,7.695054,8.023980,9.509105,4.179346,0.524795,0.250414,0.462811,0.098348,0.000000,0.000000,0.044628,0.318182,0.000000,1.053719,0.000000,0.000000,0.000000,0.000000 -601480.755000,4612665.550000,3693,3605,121.998367,147.244644,145.550430,136.591751,122.872749,112.641342,108.690933,106.261177,107.252914,109.244652,109.757050,121.087624,138.864471,155.393402,167.624802,176.880981,175.021484,165.170258,142.310760,120.971924,110.302498,105.095886,100.054565,72.038040,54.889282,72.038040,83.914070,63.591755,29.970268,11.915720,9.095888,5.948772,8.703320,8.728938,8.305799,3.828933,0.623969,0.409918,0.281819,0.004959,0.391736,0.042149,0.496695,0.000000,1.228099,2.014050,0.000000,0.000000,1.195042,0.000000 -601490.355000,4612665.550000,3741,3605,116.668617,148.266129,147.390091,138.200012,124.596703,113.323975,111.629761,110.340508,109.109100,111.191742,112.976868,122.381828,140.208267,155.786789,168.836380,179.166946,177.811584,167.340500,144.464478,122.092575,112.315712,107.067780,100.836372,73.464470,56.323990,69.704140,85.728935,64.745476,28.547129,11.740514,9.166961,4.079348,7.303320,9.285139,7.500014,2.980170,0.561985,0.016529,0.000000,0.102480,0.000000,0.028099,0.119009,0.649587,0.862810,0.000000,1.925620,0.000000,4.038017,0.000000 -601499.155000,4612665.550000,3785,3605,111.014061,156.474380,149.226471,139.986786,125.416534,114.061157,111.598351,109.763641,108.755379,110.763641,111.639671,121.557030,139.722321,157.135544,168.995041,177.284317,176.375229,167.234711,143.333893,122.904137,111.573555,105.218185,101.672737,72.978523,55.333904,70.317368,85.292572,63.242996,28.412418,10.466133,9.242993,4.716537,6.594228,7.139682,6.099186,2.789262,0.597522,0.204133,0.210744,0.184298,0.000000,0.033884,0.414876,0.000000,2.205785,0.000000,0.000000,0.790083,0.000000,0.000000 -601503.555000,4612665.550000,3807,3605,150.611588,183.347122,161.652908,152.380188,135.090927,120.446297,119.793404,117.454559,117.338860,122.512413,117.892578,129.239685,145.446304,162.760345,175.512405,186.371918,182.528946,169.256210,147.785141,127.743820,116.446297,112.735550,107.909103,79.611588,63.710766,79.586792,90.123985,63.570267,29.876053,14.072744,9.809937,10.821504,8.039685,6.994228,8.331420,3.469429,0.573555,0.003306,0.000000,0.062810,0.000000,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601506.355000,4612665.550000,3821,3605,133.592590,181.385941,161.005783,154.336365,136.749573,122.989273,121.104973,119.402496,118.542992,124.964478,119.220680,129.633896,146.113220,162.311569,176.286774,186.931396,184.394211,169.419006,148.600815,128.410767,117.270264,115.394234,111.063652,80.691750,64.633904,80.923157,90.741341,64.981010,30.807457,12.886794,10.096714,10.661174,5.512409,8.370262,6.919848,3.953727,0.306612,0.146281,0.171901,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.355000,4612665.550000,3841,3605,140.945480,179.102478,161.639694,154.681015,136.292587,121.598358,122.193398,119.110764,120.052910,125.325638,119.557045,130.904144,147.499191,165.259521,176.829758,186.838013,185.937195,169.325638,149.251266,130.400024,118.069435,114.606621,110.036377,81.102501,64.557045,81.383492,92.226463,68.276054,31.474400,12.452083,10.003326,10.800843,7.756214,7.628940,8.409930,3.410753,0.526448,0.044628,0.047108,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.755000,4612665.550000,3863,3605,121.652908,177.884308,163.669434,153.487625,136.586792,122.884308,121.041328,119.512405,118.801659,123.280998,119.578522,131.520676,148.735550,164.983490,176.735550,187.281006,185.768616,171.140518,148.553741,129.297531,118.024803,114.041328,111.000008,81.181831,64.991753,80.264481,92.371918,67.231422,33.545475,13.615721,10.090928,11.342990,8.091751,9.142164,9.752906,4.642982,0.601655,0.247108,0.269422,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.155000,4612665.550000,3895,3605,124.177704,174.491745,163.194229,151.822327,137.219025,121.971085,121.078522,119.136375,118.508270,122.681824,118.929764,131.268600,148.309937,164.938034,176.789276,187.524811,184.301666,171.252075,148.334732,129.152893,118.409096,115.442154,109.318192,80.780998,64.648781,78.557869,91.458694,67.417374,31.789276,12.983490,9.938036,10.626462,8.343817,8.642163,8.247947,3.159511,0.499175,0.404133,0.000000,0.000000,0.004959,0.171075,0.000000,0.000000,0.000000,0.000000,1.121488,0.000000,0.000000,0.000000 -601525.155000,4612665.550000,3915,3605,112.855385,173.293411,161.731415,151.169434,135.061996,121.549606,120.516548,118.805801,118.004150,121.880180,117.607452,130.070267,147.185974,164.227295,175.657043,185.822327,184.549606,171.252075,147.871918,128.475220,116.814064,114.243820,109.681831,79.756226,63.954567,78.797546,90.921509,67.095062,30.979357,11.104978,9.971093,8.309106,6.728940,6.528940,7.238029,3.593395,0.631407,0.295868,0.095868,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.955000,4612665.550000,3989,3605,99.652077,168.842163,161.032257,151.288452,135.709930,123.511574,122.594215,119.412399,118.156204,120.850418,120.420662,131.990921,148.445480,165.602493,177.602493,186.957855,185.247131,172.850433,149.751266,128.627274,118.263641,114.842155,109.718185,81.263657,64.139687,78.139687,92.114876,68.552910,31.957870,12.973571,9.974399,8.478527,8.766131,8.468610,8.499187,3.300832,0.720663,0.138017,0.204133,0.054546,0.000000,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.755000,4612665.550000,4003,3605,98.609100,166.914886,160.237198,149.369431,134.361160,121.981003,121.204140,119.369431,118.055382,120.261993,118.146294,131.402496,148.633896,164.708267,177.038849,186.361160,184.121490,172.071915,148.799179,129.171082,117.782654,115.261993,109.154556,79.402489,65.063660,77.683479,92.749596,67.939690,31.521509,11.201671,9.923160,8.528941,7.646299,8.363651,9.390098,3.265296,0.734712,0.057851,0.000000,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.355000,4612665.550000,4026,3605,111.490929,164.912399,160.953720,150.366943,135.887604,122.804977,122.482666,119.557045,118.606628,120.499191,119.879356,131.540512,148.383469,165.276031,177.408264,187.019836,184.747116,172.342148,149.160339,128.656219,117.466133,115.209938,109.309105,80.540512,63.681007,78.226463,92.094231,67.763657,31.085970,12.293405,9.937208,7.136379,6.806625,7.346294,7.752905,3.266949,0.507440,0.228926,0.053719,0.172728,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.614876,0.000000,0.000000 -601551.555000,4612665.550000,4047,3605,118.286789,163.187622,160.584320,150.014069,136.848770,126.030586,124.815712,121.947945,120.683479,121.766129,120.807449,132.394226,151.675232,167.162842,179.361176,187.443832,187.576065,174.518204,150.939697,130.237198,119.650421,117.344635,111.154556,82.253731,66.857040,79.939690,93.352905,69.881844,33.295063,13.390100,10.104979,10.376049,8.247123,9.266957,8.415716,4.363645,1.248764,0.402480,0.242150,0.174380,0.001653,0.000000,0.000000,0.153719,1.328926,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.555000,4612665.550000,4067,3605,93.799187,161.947922,156.790924,148.898346,135.394226,122.989265,122.129761,120.352905,118.352905,119.658684,119.906624,130.600830,149.790909,165.419022,177.352905,184.997528,185.212402,172.700012,150.881805,129.964478,118.096703,114.609100,109.336372,80.782654,65.262009,78.055382,92.683479,69.452072,31.757874,13.961175,9.939688,8.285965,6.306626,7.138858,8.005798,2.710751,0.793391,0.296695,0.000000,0.041322,0.000000,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.955000,4612665.550000,4094,3605,115.006638,160.181839,159.983490,151.363647,135.776871,123.677704,122.396713,120.314064,118.809937,120.140511,120.314064,131.363647,150.008286,165.917374,177.892563,186.198349,185.545456,173.859497,150.330597,129.454559,118.446297,114.826462,109.727287,81.429771,64.024811,79.859520,92.958694,69.454559,31.958694,12.342166,9.975225,6.429767,8.117373,7.800014,9.486790,4.015711,0.411572,0.156199,0.000000,0.228926,0.000000,0.249587,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.755000,4612665.550000,4118,3605,110.247948,162.743805,162.330597,148.586777,135.165298,123.504150,122.421501,119.429771,119.438034,119.983490,120.140511,131.710754,150.404953,166.090927,177.082642,186.223145,185.429749,173.280991,150.801651,128.735550,117.206627,114.652908,108.818199,80.586800,64.859520,78.595062,92.801666,68.685966,32.140514,13.510762,9.892581,7.199188,6.696709,6.570263,6.377697,2.829758,0.466117,0.033884,0.057851,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.955000,4612665.550000,4134,3605,110.680992,162.433060,161.127274,148.540497,134.416534,122.697525,121.623146,119.573555,118.309097,118.961990,119.383476,130.920670,149.152069,165.176865,176.276031,185.375214,183.804962,172.449585,149.052902,127.821487,116.887604,113.218185,108.218185,80.325630,63.895885,78.276047,93.028107,69.813232,31.408283,12.885967,9.838035,6.362824,8.571917,6.533898,6.488443,2.750419,0.280993,0.047108,0.081818,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.355000,4612665.550000,4156,3605,104.052910,156.664459,159.664490,147.681000,133.209930,121.631424,120.689278,117.755394,116.788452,117.490929,118.623161,128.895889,148.259506,163.102493,174.565308,184.003326,182.978531,171.011597,147.821487,127.102501,116.201675,111.796707,107.218193,78.284317,61.771919,76.763657,90.846291,67.209938,30.218199,11.457870,9.747126,6.797533,6.295882,6.298361,7.494227,1.677691,0.787605,0.033884,0.000000,0.000000,0.085951,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.042149,0.000000 -601576.755000,4612665.550000,4173,3605,104.519020,156.885132,158.339676,148.488449,134.810760,123.000839,122.827286,118.885139,118.347946,119.604149,120.091751,130.298355,148.794235,165.050430,176.207458,185.976044,183.306625,171.546295,149.513229,127.521500,117.595879,112.703316,108.009102,79.612419,63.579357,79.248779,93.339684,68.091759,32.653736,12.330597,9.819027,6.595881,7.198362,8.786793,7.672739,3.661991,0.331406,0.186777,0.154546,0.051240,0.000000,0.165289,0.000000,0.000000,0.000000,1.244628,0.000000,0.000000,0.000000,0.000000 -601579.555000,4612665.550000,4187,3605,114.239685,162.554565,160.463654,150.033890,134.298370,123.852081,122.265305,119.984314,119.033897,119.628937,120.455383,131.447113,149.794235,166.050430,176.166122,186.347946,184.496704,172.711578,149.562820,127.430588,116.562820,114.785965,109.736374,81.058693,64.108284,80.323151,93.810760,70.471924,32.257042,11.330596,9.976052,6.210757,7.466959,7.337204,7.909931,3.442983,0.840498,0.105785,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.009917 -601584.155000,4612665.550000,4210,3605,105.220673,159.284317,160.854568,149.606628,136.879364,125.234718,122.755386,120.854553,119.763649,120.871086,121.457863,132.457855,150.102493,166.036377,178.127289,186.788452,187.218201,174.482666,150.333908,128.383484,117.689270,114.978531,109.218193,80.433075,64.895889,80.028122,93.218201,69.044647,33.499191,13.102498,9.928945,8.148775,8.081007,7.300841,8.784313,3.035542,0.935539,0.181819,0.000000,0.054546,0.088430,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.155000,4612665.550000,4230,3605,102.200020,155.086777,160.805786,150.252075,134.623978,124.227287,122.764481,119.136383,118.690102,119.293404,120.119850,131.566132,148.954559,165.144623,177.847107,185.822311,184.557846,173.690079,149.946304,127.781006,116.657043,113.640511,107.227295,79.789284,63.004147,78.450432,94.483498,69.037216,32.053738,12.382664,9.747953,7.126460,6.984314,7.498361,8.392575,3.502487,0.721490,0.033058,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.934711,0.000000,0.000000 -601590.955000,4612665.550000,4244,3605,98.047119,156.638046,160.414902,150.464493,134.695877,126.266129,122.505798,119.662819,119.852905,120.803314,121.646294,132.133896,150.332260,165.439697,177.968628,186.390106,185.795074,173.588455,150.034729,129.084305,117.828110,113.588440,108.745461,79.745476,64.009933,79.753738,95.200012,71.009933,32.456215,12.897540,9.885970,7.293403,7.904975,8.435553,8.249601,3.048767,0.457852,0.133058,0.315703,0.110744,0.090083,0.083471,0.000000,0.000000,0.000000,0.000000,0.940496,0.000000,0.000000,0.000000 -601594.755000,4612665.550000,4263,3605,109.330597,158.204132,161.410736,149.278503,135.534714,125.204147,122.683487,121.005806,119.716545,120.840515,120.914894,131.724808,150.956192,165.898346,177.468582,186.344620,185.443802,173.683472,150.509918,128.683487,117.807457,114.468613,109.972748,81.237206,64.237206,80.452087,93.427292,70.435555,32.733078,12.821506,9.997540,7.182659,7.494231,7.596709,7.200016,3.596700,0.365290,0.211571,0.251240,0.000000,0.000000,0.228099,0.000000,0.000000,0.000000,0.000000,1.006612,0.000000,0.000000,0.000000 -601599.955000,4612665.550000,4289,3605,109.976044,159.668610,160.850433,150.412415,135.238861,126.329765,123.577698,121.156212,120.585960,121.023979,121.106621,131.933075,150.999191,165.139694,178.147949,186.784317,185.495056,173.387619,150.916550,128.866959,118.032242,115.040504,108.536377,79.966125,63.792580,79.999184,94.222328,69.371094,32.900021,11.081836,9.866962,4.444642,7.614065,7.849602,8.333073,3.806619,0.880167,0.139670,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.702480,0.000000,0.000000 -601604.955000,4612665.550000,4314,3605,98.963646,150.795883,161.407440,149.622314,136.630600,124.738037,123.779358,121.266968,120.159523,121.324814,120.952911,133.324814,150.242157,166.242157,177.754547,187.060333,185.952896,174.250427,149.481842,130.366135,117.374405,114.126472,108.027298,79.564484,63.572746,81.275230,95.523155,71.514900,33.258698,13.575225,9.820681,8.322330,6.306625,9.762827,8.638857,5.284307,1.034712,0.322315,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.112397,0.000000,0.000000,0.000000,0.000000 -601608.955000,4612665.550000,4334,3605,103.230598,155.058685,160.595886,149.736374,136.736374,125.571091,123.554558,119.339684,119.554558,120.405800,121.281830,131.298355,150.397537,164.595886,176.521500,184.959518,184.463654,172.984314,149.513229,128.703323,117.471916,113.364479,107.827286,79.273567,62.843822,79.711586,95.257034,69.934723,33.240517,13.257042,9.802498,5.396706,6.428114,7.204144,7.123154,2.544633,0.879341,0.370249,0.202480,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.155000,4612665.550000,4350,3605,98.184311,153.169434,157.293411,148.268616,134.640503,124.814056,121.260338,117.995872,117.334717,119.863647,119.533066,130.111588,148.690094,163.979340,176.979355,184.648773,184.119858,171.301666,149.607452,127.475212,115.673561,112.880173,106.500008,78.623985,61.698368,79.871918,92.524811,68.516548,31.425640,12.414068,9.681838,5.144639,7.057867,6.270260,7.193400,2.862816,0.466117,0.224794,0.083471,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.994215 -601617.755000,4612665.550000,4378,3605,99.725624,158.571915,160.836380,149.563644,135.183487,125.026459,121.844635,118.737198,118.704140,120.150421,119.613235,131.348770,149.985138,164.852905,177.976868,186.919022,184.390091,173.216537,149.307449,128.869431,117.654556,113.423149,108.654556,79.067780,63.522335,78.993401,93.861168,70.885971,32.604980,11.574398,9.877705,5.318195,6.938858,6.395054,6.662822,3.822321,0.501655,0.038843,0.109091,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.592562,0.000000 -601626.355000,4612665.550000,4421,3605,88.796707,159.303314,158.807449,149.328110,135.600830,124.947945,122.724800,120.642159,120.336372,122.080177,121.468605,132.865295,150.658691,166.295044,178.237213,186.832260,185.683502,174.005814,151.104965,130.757858,117.534721,112.567780,108.154556,79.815720,62.443821,79.005806,94.799194,70.666962,32.460350,12.865308,9.832252,5.038030,6.733073,6.714062,6.804144,2.040502,0.726448,0.120662,0.052893,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.155000,4612665.550000,4435,3605,102.766129,150.159515,159.118195,147.010757,134.779358,124.300018,121.622330,118.002495,117.481834,119.680183,119.547951,130.291748,148.911575,164.961166,176.308273,185.729752,185.118195,172.514877,148.713226,127.556213,116.275223,112.787621,105.845467,77.919861,61.027290,77.564484,93.374397,70.936386,30.828943,11.412414,9.622334,4.274390,5.868609,4.987616,4.395879,2.868600,0.172728,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.555000,4612665.550000,4452,3605,99.796707,155.714066,160.887619,150.358704,135.879364,125.838028,123.358688,120.557037,120.242989,121.127281,122.350426,132.689270,151.003326,166.928940,178.953735,187.722336,186.978531,173.904144,151.069443,128.523972,118.061165,113.416542,107.490921,80.366959,63.441341,79.879349,95.433067,69.623154,31.681013,12.138862,9.771920,5.363650,7.089273,5.370261,6.140508,2.543807,0.135538,0.051240,0.054546,0.163637,0.000000,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.355000,4612665.550000,4491,3605,105.929771,156.281830,161.166122,149.595886,136.133072,126.215714,121.686790,120.504974,119.934723,121.571091,120.488441,130.885132,150.628937,166.281830,178.430588,188.066956,186.166122,174.314896,151.000839,128.976044,117.215714,114.083481,108.190926,79.579361,62.909939,79.182663,96.372742,71.314896,32.504978,13.132250,9.835556,6.059518,6.167783,7.237205,5.882658,2.556203,0.577687,0.084298,0.000000,0.114050,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.155000,4612665.550000,4505,3605,109.871078,155.424789,160.400009,151.069427,136.433060,126.970253,123.862816,121.267769,119.672729,122.135544,122.160332,133.639679,150.763641,166.292572,178.647934,188.284302,186.267776,175.871078,151.689255,129.532242,118.052895,114.143806,107.854546,80.251244,63.953743,78.970253,94.920662,71.755394,32.259525,13.551257,9.804977,5.960343,5.800841,6.985965,5.628113,2.112402,0.320662,0.120661,0.000827,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.155000,4612665.550000,4520,3605,104.490929,157.267792,161.350433,152.664490,136.681015,128.176865,124.160332,121.970253,121.970253,122.350418,122.912399,133.482666,151.978531,167.788452,180.441345,188.722336,187.821503,175.846298,151.986801,130.986801,118.879341,114.234711,109.763641,80.590103,64.209938,79.689278,96.623161,72.664482,35.218201,12.585141,9.978532,5.647122,6.732246,6.241336,7.245466,2.471907,0.247935,0.135538,0.000000,0.000000,0.000000,0.310744,0.000000,0.000000,0.000000,0.000000,0.000000,0.871901,0.000000,0.000000 -601649.955000,4612665.550000,4539,3605,94.758690,160.128113,161.508286,150.599182,136.681839,126.466957,125.070267,121.376053,121.252083,121.466957,123.177704,132.814072,151.483490,166.971085,179.756210,188.285141,187.425629,175.971085,151.599182,129.805801,118.103325,115.028938,108.681831,80.227287,63.979351,80.235550,95.921501,73.152908,33.045475,11.902497,9.880184,4.128111,6.759520,6.281832,6.404971,4.919016,0.617357,0.342976,0.000000,0.161158,0.000000,0.879340,0.000000,0.000000,1.268595,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.155000,4612665.550000,4560,3605,108.822327,159.808273,161.204971,152.304138,135.676056,126.419846,123.659515,121.188446,120.221504,122.229767,121.163651,133.609924,151.271088,167.246307,179.287628,188.899200,187.254562,175.395065,152.370255,129.642990,117.733902,113.923981,109.345467,80.452904,63.229771,79.353737,95.750427,71.899185,32.923988,12.279355,9.940516,5.233069,7.685140,6.520673,5.771086,2.265296,0.536365,0.566117,0.089256,0.000000,0.046281,0.499174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.155000,4612665.550000,4580,3605,110.919022,157.009918,162.100815,152.348755,137.919022,126.828110,123.604973,121.902496,120.249603,123.282661,122.836380,133.150436,150.943802,167.505783,180.026443,188.191727,188.357025,175.927261,151.795029,130.555389,117.844643,115.423157,108.290924,79.745476,64.133904,79.472748,95.960350,71.737206,33.935558,11.538860,9.844647,5.726459,7.440512,6.824808,6.555385,2.583477,0.245456,0.199174,0.000000,0.109091,0.000000,0.000000,0.333058,0.000000,0.000000,0.000000,0.957025,0.000000,0.000000,0.000000 -601661.755000,4612665.550000,4598,3605,117.990921,160.007462,160.602493,150.214066,137.569443,127.288445,123.313232,122.585960,120.817368,123.437202,122.751251,132.957855,151.164490,168.065308,179.825638,188.966141,187.933075,175.784317,152.495056,130.189270,118.214058,115.073563,108.627281,80.247116,63.412415,79.164474,96.222336,72.255394,33.701672,12.270267,9.875226,3.789267,6.392576,5.649600,6.638857,2.042979,0.295042,0.157852,0.156199,0.117356,0.099174,0.096694,0.000000,0.000000,0.000000,2.397521,0.000000,0.000000,0.000000,0.000000 -601672.155000,4612665.550000,4650,3605,106.095055,159.868607,159.455383,150.926453,136.810760,125.521507,123.108276,119.496704,118.438858,120.785965,120.190926,130.612411,148.843811,164.926453,177.174393,186.422333,185.447113,173.909927,150.397537,129.240524,116.017365,113.893410,108.918198,79.794228,62.736382,79.438858,95.538033,72.959518,32.992580,12.847951,9.901671,4.906621,6.875220,6.006624,6.835549,2.042154,0.596695,0.421488,0.000000,0.060331,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.155000,4612665.550000,4665,3605,116.174400,167.083481,166.397537,155.620667,143.628937,129.752914,126.538040,124.463654,122.852089,124.744652,124.620682,134.802505,153.513229,170.595886,181.959518,191.604141,190.992569,178.653732,155.215714,133.347961,120.686798,116.298370,110.463654,81.951263,64.777710,80.893410,98.926468,75.347954,34.769444,13.567787,10.042169,5.170260,7.787619,8.012411,6.007452,3.002485,0.535538,0.290910,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.214876,0.000000 -601678.555000,4612665.550000,4682,3605,110.947960,162.096695,162.245453,153.617371,139.551239,127.518196,124.352913,121.600845,121.038864,124.509933,122.344643,132.981003,150.394226,167.212387,179.410736,188.476852,187.261978,176.154541,152.096710,130.485138,117.790924,113.807465,108.700027,79.658699,62.286793,77.666962,95.212425,72.286797,32.716549,11.363653,9.881837,3.435547,5.973568,6.799187,6.007451,1.869426,0.819837,0.162810,0.013223,0.041322,0.000000,0.085951,0.000000,0.055372,2.651240,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.155000,4612665.550000,4735,3605,123.930588,173.831421,169.459518,160.095886,144.418198,129.095886,126.277702,125.542160,123.649597,126.600014,125.484314,136.897537,153.847946,172.004974,183.376877,192.476044,189.748779,178.550430,155.236374,132.740509,120.476044,115.682655,111.054558,82.459518,64.153732,79.674393,98.790092,75.029762,33.765308,13.445471,10.095887,5.077697,6.981007,8.019849,7.924808,1.952898,0.715704,0.110744,0.090909,0.000000,0.000000,0.111570,0.000000,0.000000,0.000000,1.189256,0.000000,0.000000,0.000000,0.000000 -601692.155000,4612665.550000,4750,3605,116.040512,180.552917,168.255386,158.172745,143.371094,127.346283,125.891747,124.379349,121.817368,125.461998,123.949600,134.437195,153.057037,169.528122,183.098373,191.858704,190.759521,178.817368,154.280182,132.751236,120.412407,115.941330,110.536377,80.081841,63.040516,80.123161,97.544632,74.106628,33.106632,13.112414,10.048779,4.258688,7.747123,5.847121,5.102490,1.656204,0.683473,0.190083,0.000000,0.022314,0.000000,0.333885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.955000,4612665.550000,4764,3605,104.436378,165.221497,166.841324,154.783478,138.428101,126.386795,125.204971,120.766945,119.105789,121.436371,121.147118,132.973572,151.874390,168.180176,179.403305,188.072739,187.684311,173.676041,149.750427,130.510757,118.114059,115.742165,108.527290,80.932243,65.246300,80.676048,97.981834,72.081009,34.766960,14.034728,9.866135,9.818197,8.591749,7.797534,7.596707,3.538026,0.338018,0.305786,0.270248,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,1.302480,1.059504,0.000000,0.000000,0.000000 -601698.955000,4612665.550000,4784,3605,104.775223,164.568604,165.667770,153.089264,138.626450,127.576866,125.279350,122.105797,120.535553,121.386795,120.841339,133.171906,152.593399,168.312408,179.932236,188.700836,187.080994,174.485962,150.634720,130.609924,118.114067,115.907455,109.800018,81.312408,64.609932,79.444641,96.436378,71.362000,34.312416,14.526464,9.981836,8.233898,9.073567,8.752080,8.480178,3.475215,0.761985,0.516530,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.955000,4612665.550000,4859,3605,98.025642,179.463654,167.347946,156.091751,138.942993,125.290092,126.108284,123.108276,122.149597,122.042160,121.604149,133.686798,152.628937,168.620667,179.628937,189.058670,187.992554,174.942993,151.042160,129.438858,118.265305,116.223976,109.645470,80.199196,63.719856,80.108284,95.893402,69.951263,32.711590,12.106630,9.967789,7.856211,6.914062,7.605799,5.641333,2.540503,0.308265,0.407439,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.755000,4612665.550000,4878,3605,116.978523,168.722321,165.061157,155.986786,140.581818,127.639679,126.747116,123.540504,122.028107,122.747116,122.309105,134.846298,153.102478,170.019836,181.689255,190.185120,188.598343,175.631409,151.747116,131.160339,119.176872,116.639679,110.581833,80.656219,65.879356,79.284317,96.995056,71.862839,32.226463,12.576052,10.052912,7.323153,7.621500,6.481829,6.818193,3.515710,0.595043,0.288430,0.000000,0.000000,0.000000,0.000000,0.000000,0.025620,1.322314,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612665.550000,4899,3605,136.410767,175.319839,168.055405,157.914902,141.228958,127.559525,126.600845,123.898361,122.666962,125.419029,122.096710,135.600845,153.906631,170.195877,182.906631,191.419022,188.460342,175.476883,151.757874,131.005798,120.361176,116.518196,110.336380,80.691742,65.270264,79.228935,96.311584,71.138031,32.724812,12.792582,10.030598,9.147947,6.100010,7.627286,6.678526,1.924799,0.222315,0.376034,0.028099,0.000000,0.000000,0.000000,0.057851,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.155000,4612665.550000,4920,3605,124.123985,183.661163,168.446304,158.842987,142.239685,128.876038,127.586777,125.404961,124.049583,125.991737,124.049583,136.553741,154.760345,171.603317,183.000015,192.809921,190.619827,176.404968,152.719025,131.388443,120.561981,117.851242,111.727272,81.950432,66.041344,81.206627,96.785133,71.950432,31.776880,13.338861,10.157044,8.629766,7.536377,8.103320,7.394228,3.135545,0.878514,0.130579,0.000000,0.208265,0.008265,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.955000,4612665.550000,4959,3605,135.614899,174.358688,168.019836,158.945465,141.375214,128.424789,127.623146,124.366943,123.912399,127.342155,123.259506,135.052902,153.350418,170.788437,182.738846,192.647934,189.714050,173.986786,150.515701,131.127274,118.722321,115.573555,110.218193,81.251251,64.689278,80.457870,96.044640,68.928940,31.540516,11.508282,10.019853,8.828113,6.389268,8.900841,7.213236,3.214883,0.566944,0.188430,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,2.639670,0.000000,1.113223,1.135537,0.000000,0.000000 -601736.955000,4612665.550000,4974,3605,114.365311,183.844635,169.191742,161.100830,143.919022,129.638031,128.646286,125.728935,125.505798,129.530594,125.613235,136.580154,153.745468,170.406616,183.795044,194.241318,190.770248,175.836380,151.985138,132.662827,120.249596,117.885963,111.200020,82.919029,66.257874,83.472748,96.042992,69.332253,32.117374,12.827291,10.109110,10.063651,7.276872,6.596704,8.738032,3.431415,0.795043,0.247935,0.042975,0.058678,0.004959,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.555000,4612665.550000,4997,3605,136.556213,202.589279,173.647125,162.994232,146.275208,132.845459,130.374390,126.919838,129.043808,133.729752,127.547943,138.308273,156.812424,173.415726,185.696716,196.688446,193.118210,177.242172,155.498367,134.002487,121.787613,117.985954,113.754555,83.390930,67.671921,84.713249,97.374397,70.382668,33.101673,14.131423,10.341342,12.077703,7.990096,10.265304,9.524807,4.858687,0.780167,0.269422,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.955000,4612665.550000,5044,3605,123.701668,178.445480,173.916550,160.131424,143.462006,130.519852,128.891754,126.073563,127.420670,129.057037,126.974388,137.577698,156.503326,171.660355,185.346298,194.437225,192.032272,177.131424,154.561172,134.850418,122.850426,119.329765,112.627281,85.453728,68.428947,86.445465,99.916542,70.585960,34.924809,12.025638,10.238862,8.742988,6.457037,7.856211,6.516542,3.002489,0.368596,0.361984,0.194216,0.000000,0.000000,0.000000,0.045455,0.056199,0.000000,4.945455,0.000000,0.000000,0.000000,0.000000 -601756.155000,4612665.550000,5070,3605,117.721504,166.448761,166.283478,154.630585,140.514877,130.845474,128.498367,126.027290,126.200844,126.308281,127.357864,137.663635,158.176041,172.126450,185.258698,192.597549,191.481842,180.390930,155.523148,134.176041,122.820679,119.977699,114.481834,86.738037,70.052086,85.638863,100.043816,73.994240,35.721508,15.076877,10.407456,8.554561,9.157866,9.583484,9.326461,3.393396,0.802482,0.180166,0.371902,0.000000,0.000000,0.000000,0.077686,0.324794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.155000,4612665.550000,5090,3605,99.825638,156.569443,165.362823,152.139694,139.271927,128.966141,125.652077,122.676872,122.891747,124.098358,124.726456,135.627289,155.073578,170.437210,183.057037,192.090103,191.139694,177.098373,154.428940,132.214066,120.635551,118.081833,113.445465,84.172737,68.023987,84.428940,97.420670,73.114899,33.891754,13.614892,10.313242,6.589269,6.980176,7.410756,8.147947,3.024800,0.561159,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612665.550000,5123,3605,104.653732,154.389252,159.761154,151.893387,137.579330,127.843803,123.852081,122.876869,122.612411,122.984314,125.190910,135.058685,154.273544,170.000824,180.959503,190.827271,190.471893,177.075211,153.397522,131.298355,121.942986,117.066956,111.736374,84.992577,67.695061,83.248772,97.414062,71.356209,33.686798,12.481009,10.157869,6.300012,6.905797,5.952076,7.648774,2.304964,0.679341,0.109918,0.000000,0.000000,0.233058,0.000000,0.000000,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.955000,4612665.550000,5139,3605,103.981010,155.275192,165.357849,153.010757,139.531418,127.804146,126.399185,124.919846,124.523155,125.506622,126.366127,137.341324,157.085129,173.415695,183.333054,193.638855,191.473557,180.052063,154.804138,132.680176,122.977699,118.911583,115.027290,85.581009,68.630592,85.671913,99.564476,72.481834,35.448780,13.590100,10.457045,9.035551,9.036378,10.567782,8.095055,4.100008,0.672729,0.423142,0.331406,0.177686,0.363637,0.214876,0.042975,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.355000,4612665.550000,5161,3605,112.685966,159.421494,163.537186,153.768616,138.090927,129.016541,125.652901,124.975212,124.553726,124.826454,126.520668,137.231415,155.396713,171.702484,183.950394,192.289246,190.669403,178.553726,154.388443,133.446289,122.157036,118.338852,114.090927,85.669441,68.140511,83.247948,98.000008,72.082664,33.859524,14.672746,10.371919,4.729763,6.914062,7.283483,7.321501,2.659512,1.466118,0.219835,0.000000,0.118182,0.004959,0.000000,0.069422,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.155000,4612665.550000,5175,3605,100.009933,157.242996,165.185150,155.127289,139.714066,129.433075,127.416550,125.978531,124.962006,125.838036,126.366959,137.342163,155.953735,172.267792,184.482651,192.350433,191.119034,178.821503,154.590103,132.342163,121.788452,117.796715,113.127289,85.590111,69.540520,85.267792,98.565308,73.383499,34.780186,14.117374,10.284317,7.491750,7.337204,7.235550,7.285963,4.385131,0.617357,0.235538,0.000000,0.000000,0.000000,0.000000,0.091736,0.071075,2.436364,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.755000,4612665.550000,5188,3605,111.142166,158.034729,164.257874,153.952087,137.803329,127.414894,126.233070,123.158684,122.894226,124.414894,125.679359,136.489288,155.026474,172.282669,183.679367,191.571930,190.910767,179.406631,154.687622,133.191757,122.638031,118.902489,112.018188,85.745476,69.340515,83.993408,97.795059,72.001671,34.166962,13.535556,10.183490,5.735548,7.281006,6.363647,6.682657,2.828107,0.590911,0.037190,0.204959,0.131405,0.203306,0.000000,0.000000,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.755000,4612665.550000,5208,3605,97.420677,160.379349,167.371078,154.693390,140.957855,132.147949,128.189270,125.949600,126.007446,127.842163,128.511581,138.354553,157.023972,172.709915,184.957855,193.090088,193.709915,182.123138,157.668594,135.883469,126.007446,120.726456,114.627281,86.751259,70.908287,85.792580,99.908279,73.040512,36.503326,15.658696,10.420682,5.638854,8.428941,9.500014,7.885139,4.522322,1.408266,0.065290,0.226447,0.000000,0.000000,0.000000,0.001653,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.755000,4612665.550000,5238,3605,110.634720,156.014877,163.353729,153.742157,137.477692,128.923981,127.138847,122.361992,123.882652,125.295876,126.064468,138.436371,156.072739,174.684326,184.882660,193.370270,191.833084,180.064484,155.750427,133.527283,122.204964,119.031410,113.890915,84.676056,69.213249,84.320686,97.494232,71.742172,34.543819,12.381835,10.353739,4.771085,7.749598,7.374391,7.888442,3.872736,0.761160,0.409092,0.201654,0.104133,0.034711,0.419835,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.555000,4612665.550000,5257,3605,99.219025,161.744644,163.529770,154.149597,141.215714,130.405792,128.215714,125.347939,124.100006,126.703308,127.273560,137.141342,155.901672,172.199188,184.653732,192.810760,191.149597,179.356216,155.339676,134.050430,122.380997,118.372742,114.463646,85.405807,69.116547,85.471924,97.810768,71.785973,32.349606,12.476877,10.405804,5.563648,5.747118,6.021498,6.559517,2.279346,0.323968,0.703307,0.332232,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.955000,4612665.550000,5274,3605,107.381004,170.777695,166.298355,157.108292,144.504974,132.463654,129.885132,128.885132,129.298355,129.298355,129.967789,140.645462,159.752899,176.653732,188.232239,197.290100,195.471909,183.612411,159.009125,137.207458,126.405800,121.042160,117.190926,89.504974,71.504974,88.265305,100.554558,75.529762,37.546299,15.538860,10.653738,6.295052,8.712410,8.142989,8.409931,4.052901,0.213224,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.555000,4612665.550000,5292,3605,117.313240,164.247131,163.594223,152.974380,139.668594,130.304977,125.610764,123.817375,125.040512,127.123161,127.726463,138.503311,157.957855,174.296707,186.990921,194.420685,193.941345,181.784317,158.230576,136.420685,125.147957,122.445473,117.718201,88.131424,72.577705,86.263657,100.098366,73.767792,34.280186,12.613241,10.701673,5.007448,7.591748,7.803318,7.246294,3.784305,1.014878,0.490910,0.126447,0.347108,0.000000,0.000000,0.000000,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.155000,4612665.550000,5310,3605,112.425636,154.937210,165.788452,158.391754,144.548782,132.689270,129.813232,128.218201,127.127281,129.722321,130.879349,141.978531,159.838043,176.185150,188.755386,197.011597,195.862823,183.912415,158.928940,137.490921,126.325630,123.895882,120.218193,89.705795,72.449608,88.276047,102.003319,74.681000,36.804977,15.407456,10.928945,6.771913,9.102492,9.190924,8.782660,3.432240,1.258681,0.234712,0.115703,0.000000,0.000000,0.142149,0.000000,0.000000,1.347108,2.239670,0.000000,0.000000,0.000000,0.000000 -601808.555000,4612665.550000,5332,3605,108.861183,159.902496,166.423157,156.737198,141.638031,130.852905,127.133911,126.224823,126.836388,129.018204,129.497543,138.679352,157.390091,174.489273,185.555374,193.563644,192.803314,180.877701,156.695877,136.133896,123.282669,120.976883,115.745483,87.266144,68.993416,86.877708,98.456215,71.737213,33.712414,13.538859,10.522333,5.999183,8.014890,7.428938,5.754558,3.703313,0.592563,0.108265,0.000000,0.000000,0.056199,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.955000,4612665.550000,5359,3605,106.652077,160.412399,164.900009,155.503311,142.090088,131.057022,129.139679,127.230583,126.734711,129.957855,130.577682,140.676865,158.453720,175.693390,186.759506,195.825623,194.883469,182.974380,158.933060,136.263657,125.908264,122.114876,116.900002,89.222328,72.164482,87.197533,97.751251,73.825630,33.982662,12.714067,10.627292,5.481000,6.247119,6.704971,5.779351,2.202487,0.212398,0.095042,0.000000,0.000000,0.000000,0.000000,0.003306,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.555000,4612665.550000,5372,3605,112.520676,162.380188,167.553726,154.396713,143.793411,133.834732,129.876053,128.429764,128.355392,129.702499,130.297531,140.867783,159.760330,176.487610,187.603317,196.595062,194.462830,182.595047,158.545456,137.396713,125.033073,121.363655,116.909103,89.685966,71.677704,86.809937,99.421501,73.537209,35.628120,14.201671,10.628118,5.806623,7.485138,6.983482,7.731417,3.217361,1.002481,0.385125,0.385952,0.048760,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.355000,4612665.550000,5401,3605,116.197525,163.238846,166.751236,161.528107,145.247116,134.974380,132.916534,132.412399,131.288437,134.247116,133.478516,143.957855,161.346283,179.354553,190.602478,199.379349,197.627274,187.544632,161.313232,139.742981,128.809097,124.561157,120.536369,91.536385,73.015724,89.329773,101.313225,76.825638,37.453739,16.289274,10.957870,5.451251,9.670265,9.451254,7.947948,3.666951,1.168597,0.041322,0.227273,0.000000,0.000000,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.955000,4612665.550000,5414,3605,116.269432,162.257858,169.307449,159.001663,145.869431,138.084305,134.943817,133.547119,133.795044,137.009933,136.852905,147.439682,164.266129,181.266129,193.059509,201.720673,201.059509,189.654556,164.968597,142.200012,130.051254,126.241333,121.563652,93.919022,75.290924,91.026459,103.009926,77.059525,37.200024,16.285143,11.051258,5.970259,7.314890,9.578526,9.305799,4.138025,1.380168,0.082645,0.277687,0.381819,0.000000,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601828.355000,4612665.550000,5431,3605,130.395874,170.957855,168.767776,157.999176,144.503311,132.933075,131.007446,128.850418,127.627281,131.379349,130.643814,141.751236,158.643799,175.023972,187.759506,196.354553,196.495041,184.990906,160.470245,137.842148,126.420670,121.495056,117.354553,90.784309,71.759514,86.619019,99.247116,74.759521,36.189274,14.077706,10.668614,3.986785,7.061997,6.145466,7.084310,2.766949,0.259505,0.319009,0.057025,0.049587,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.155000,4612665.550000,5460,3605,116.285973,167.649597,167.269440,157.740509,144.575226,134.319016,130.352081,128.922333,129.558685,130.236374,131.376877,142.087616,158.269440,175.195053,188.492569,196.442993,195.839676,185.244644,161.360336,137.781830,125.790092,123.525635,117.600014,90.566963,71.773575,85.095886,100.269432,76.666130,34.773575,13.209936,10.690928,5.666952,8.176872,6.546292,9.042990,1.220667,0.441324,0.331406,0.234711,0.002479,0.000000,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.955000,4612665.550000,5474,3605,124.469437,171.064484,170.750443,162.320679,146.494232,135.064484,131.998367,130.419846,129.105804,132.089264,131.642990,141.700851,160.560349,176.940521,188.659515,197.485962,197.609924,185.915726,161.552094,139.882660,127.535553,123.114067,119.163651,91.452904,74.047951,87.973572,101.337204,77.461174,36.535557,15.942994,10.833076,4.951251,8.978528,9.035552,9.534726,4.557033,0.324794,0.000000,0.301654,0.008265,0.006612,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601840.955000,4612665.550000,5494,3605,121.959518,167.390091,165.621490,159.720673,146.381821,134.191757,132.654556,130.927292,131.142166,133.604980,133.125641,145.191742,163.224823,178.885956,191.398361,199.051254,198.679352,187.175217,163.026459,141.489273,129.084320,125.299194,120.745476,91.795059,74.679367,87.894234,101.580185,74.753746,36.018204,14.714067,10.976878,5.911582,7.299186,8.414062,8.529765,2.755378,0.773555,0.339670,0.693390,0.785952,0.244629,0.000000,0.137191,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.955000,4612665.550000,5509,3605,110.684311,181.585159,170.386780,165.932251,147.998352,136.841324,134.213242,133.386795,130.915710,135.031418,133.990097,144.122314,161.519028,177.998367,191.229797,198.362015,199.039703,186.783508,163.700851,140.833069,128.667786,125.171913,119.618195,91.345467,74.279350,89.452904,101.097534,75.940514,36.973576,16.581837,10.874399,5.165299,8.054560,7.462823,8.354560,5.427282,0.433885,0.095868,0.317356,0.000000,0.046282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601847.355000,4612665.550000,5526,3605,113.140511,170.082657,168.462830,157.611588,145.652908,132.024811,130.512405,128.446304,127.247948,132.504150,130.181839,140.322327,158.247955,175.537201,187.652908,196.396713,196.157043,185.016541,160.289276,138.198364,126.066132,122.016548,116.909103,89.157043,72.454559,85.363655,98.818199,74.123985,35.033077,14.148777,10.628119,3.365297,6.906626,6.657863,6.395052,2.967776,0.654547,0.003306,0.057025,0.000000,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.355000,4612665.550000,5591,3605,122.866127,171.965302,172.560333,158.907440,143.485962,133.345459,132.064484,128.469437,128.461166,127.940514,129.147125,139.990082,158.948761,173.254547,184.915710,193.444641,191.932236,179.932236,154.824799,135.676056,123.733902,121.626457,116.072739,87.271080,72.105804,85.337204,99.395050,72.808289,34.188454,15.257044,10.552085,8.533073,7.864476,8.329765,8.479353,2.330585,0.752068,0.140497,0.320662,0.049587,0.000000,0.000000,0.062810,0.354546,0.000000,1.229752,0.000000,0.000000,0.000000,2.213223 -601863.355000,4612665.550000,5606,3605,124.196709,176.832245,170.055359,157.435532,142.675217,131.171097,131.104980,127.534729,126.518196,128.171097,127.402496,138.402496,157.799164,172.956207,184.468582,192.071899,191.898346,179.509933,155.567764,135.154556,123.352913,122.931419,114.881836,87.840515,71.700020,85.989273,99.014069,73.658699,34.474400,15.347126,10.443820,9.149602,8.448772,9.194228,10.493402,3.995876,0.672730,0.483473,0.434711,0.000827,0.066942,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,1.204959,0.000000 -601865.955000,4612665.550000,5619,3605,116.717369,179.871078,170.251236,158.193390,141.879349,131.276047,131.209930,127.788445,126.672745,128.557037,127.813232,138.796692,158.490906,173.317352,184.904129,192.904129,191.226456,178.862808,154.854553,135.350418,123.821510,121.276054,114.763657,87.143822,70.945473,84.714066,98.391747,73.325638,33.639690,13.719852,10.433076,8.091750,6.896708,6.381003,8.513235,2.204138,0.528101,0.282646,0.149587,0.000000,0.047934,0.000000,0.066116,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.755000,4612665.550000,5633,3605,121.091751,172.711578,170.133072,158.050430,142.157867,131.827286,130.852081,128.860336,127.331421,127.918198,126.480179,138.207458,156.959518,172.695053,183.794235,192.951248,189.347946,177.976044,154.455383,134.232239,123.711586,120.744644,114.827286,86.579361,71.562820,85.719849,96.959518,71.901665,34.091755,14.344646,10.438862,9.352906,8.776873,8.613235,8.576874,3.429761,1.223143,0.107438,0.125621,0.000000,0.223141,0.000000,0.258679,0.044628,0.000000,1.312397,0.776033,0.000000,0.000000,0.000000 -601872.955000,4612665.550000,5654,3605,121.735550,174.580170,170.580170,159.497528,143.927277,132.274384,130.919022,128.390091,126.819847,129.076050,127.695877,138.522324,157.092575,173.365295,183.084305,192.861160,191.092575,177.968597,155.241333,133.902496,123.481003,119.993401,114.563644,86.472740,69.960350,84.257866,97.398354,70.762001,33.935558,13.789273,10.414895,8.628112,7.871088,8.867782,7.495881,3.289264,0.961159,0.195042,0.330579,0.254546,0.048760,0.002479,0.000000,0.116529,0.000000,0.000000,0.000000,1.641323,0.000000,0.000000 -601875.555000,4612665.550000,5667,3605,110.819023,177.237198,171.410767,162.716553,145.410767,133.014053,131.989273,127.749596,127.485130,129.493393,128.542984,139.881851,158.658707,174.567795,184.799179,193.278503,191.361145,178.270264,156.154572,134.476868,123.766129,121.303314,113.881828,85.923157,71.262009,83.394226,97.989265,71.162834,33.228943,13.909109,10.352912,8.899186,5.838852,7.924806,7.741335,2.666123,0.416531,0.137191,0.323968,0.000000,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.355000,4612665.550000,5681,3605,116.019852,182.710754,173.024811,159.702499,143.330597,131.570267,130.520676,127.355385,126.603325,128.933899,127.801666,138.793411,157.322327,173.148773,184.272751,193.140518,191.421509,178.545471,155.619858,134.297531,122.727287,120.247948,114.181831,86.396713,71.892578,84.562004,98.082664,69.702492,33.661175,14.019026,10.380184,8.959517,7.146293,8.871913,9.861999,3.022320,0.536365,0.431406,0.139670,0.112397,0.000000,0.235537,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.955000,4612665.550000,5694,3605,126.715714,178.170242,170.451233,162.211563,146.583466,133.682663,133.319016,130.162003,130.533890,131.360336,129.004974,141.021484,159.087601,174.963638,186.814880,195.748764,193.839661,179.914047,156.442978,135.897537,126.244644,123.195053,116.236374,87.971916,72.790092,87.261169,99.285965,73.294228,33.806629,14.119852,10.566960,9.759517,8.066129,8.981004,7.127285,3.094224,0.429753,0.180166,0.246282,0.000000,0.000000,0.000000,0.000000,0.000000,2.512397,1.155372,0.000000,0.000000,0.000000,0.000000 -601883.755000,4612665.550000,5708,3605,122.656212,177.264465,170.628098,159.099167,142.223145,129.157028,128.933899,127.033066,126.545464,129.206619,126.909096,138.305786,155.338837,173.264465,183.264465,193.793396,190.132233,177.545456,154.504135,134.231415,121.280998,120.867775,113.181831,85.809944,70.074402,85.115730,97.157043,70.586800,32.247952,12.769440,10.289275,7.008278,6.971913,8.042987,6.702492,3.571908,0.671076,0.381819,0.036364,0.000000,0.000000,0.000000,0.057851,0.065290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601888.755000,4612665.550000,5733,3605,123.028954,183.855408,174.781006,163.442184,147.599182,132.095047,132.334717,129.210754,128.913239,132.103317,130.566116,140.946304,158.549622,174.648773,186.392593,196.119858,193.764481,180.268616,156.871933,137.185974,126.351250,123.119843,117.681824,88.508278,71.632256,87.235542,98.838852,72.772751,34.004154,15.687621,10.698365,8.983486,7.265301,6.704144,7.842989,3.156206,0.208265,0.227273,0.131406,0.004959,0.126446,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.755000,4612665.550000,5748,3605,132.028122,180.904129,171.920670,161.292572,144.499191,130.052917,130.085968,126.995064,126.193405,129.300842,126.581841,138.879364,155.350433,172.978516,183.623138,194.350418,192.259506,177.259506,154.490921,133.449600,124.714066,120.771919,115.036385,87.358696,71.209946,85.581841,97.218193,72.061180,33.788448,13.038859,10.457870,8.838858,6.487615,6.783483,8.070262,3.260340,0.500827,0.157025,0.309092,0.000000,0.060331,0.000000,0.000000,0.000000,2.766942,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.355000,4612665.550000,5771,3605,140.290100,184.645462,176.422333,162.628937,148.504974,134.290100,134.579346,131.033890,130.653732,134.529770,130.372742,141.645462,158.430588,174.984314,187.835556,196.752899,193.182663,178.744644,157.124802,137.207458,126.091751,122.521500,117.372742,87.199188,73.248772,88.405800,99.752907,71.843811,33.678532,15.124812,10.670267,11.065305,8.386791,8.833898,7.957866,2.819843,0.959506,0.056199,0.042149,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.555000,4612665.550000,5807,3605,133.071915,188.950409,173.776855,165.057846,148.214874,133.016541,131.595062,128.760345,128.578522,133.586792,128.859528,140.214874,157.867767,174.314056,187.661163,196.826447,193.818176,178.917358,156.545456,137.247940,125.545471,123.157043,117.454559,88.132248,72.454559,87.793404,99.140511,71.752083,34.123985,14.408282,10.677705,12.677701,8.750426,8.016542,9.679354,4.772737,0.988432,0.545456,0.226447,0.000000,0.000000,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.755000,4612665.550000,5858,3605,142.585968,191.825638,175.420685,167.023987,148.404144,136.486786,133.883484,131.635544,131.197525,134.751251,131.387619,142.304977,160.288452,176.726471,188.585968,198.610764,195.486801,181.619034,158.304977,139.057037,125.825630,123.214058,119.445465,88.247124,74.007454,89.635559,100.957863,73.784317,33.602497,14.723984,10.858697,11.283485,7.694228,9.681832,9.472741,4.325628,1.585127,0.309092,0.114050,0.003306,0.000000,0.017356,0.514877,0.000000,0.000000,1.183471,0.000000,0.000000,0.000000,0.000000 -601928.755000,4612665.550000,5933,3605,104.769432,165.843811,167.901672,160.447113,144.000839,134.058685,130.438858,129.438858,128.876877,129.802490,131.000839,141.612411,159.852081,175.562820,186.934723,195.438858,193.719849,181.232239,158.050430,136.951248,125.777702,122.207451,116.827286,89.033897,72.124809,88.571091,99.290092,73.769432,34.017376,14.947951,10.620680,7.597533,6.919849,7.944641,7.911584,4.185959,0.282645,0.000000,0.114050,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.355000,4612665.550000,6046,3605,111.533081,164.629745,166.935532,156.836365,141.894226,131.563660,129.166962,127.580185,127.340515,128.191757,128.778534,139.439682,157.117371,174.373550,185.919006,195.216537,195.092575,182.745453,157.836380,135.348785,124.373573,121.687622,115.563652,88.596710,71.191750,86.538864,99.728943,72.183487,34.406631,12.786796,10.505804,5.484307,6.346293,6.351252,6.381830,2.682651,0.649588,0.000000,0.175207,0.000000,0.000000,0.000000,0.000000,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.155000,4612665.550000,6225,3605,126.855377,171.056198,166.998352,158.659515,144.800003,134.659515,132.221497,129.676041,128.890915,132.742157,133.485962,143.890915,160.973557,176.907440,189.758682,198.990082,198.609924,187.089264,162.948761,141.114059,130.386780,124.965294,118.981827,91.841331,74.196701,90.006615,103.667778,76.568604,36.626469,14.144646,10.816547,5.536375,7.309933,6.298360,7.720674,1.742980,0.881820,0.763638,0.312397,0.052893,0.000000,0.158678,0.005785,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602008.555000,4612665.550000,6332,3605,119.909103,178.925613,172.520660,163.471069,150.388428,138.396698,135.413239,134.859528,133.380188,136.165298,136.578522,147.471069,164.743805,180.743805,192.958679,202.925613,202.330582,191.801651,166.975204,144.421494,133.223160,128.983490,122.818192,94.429771,79.132248,92.322327,104.438026,80.190102,38.669441,15.515720,11.165308,4.956209,8.327289,8.249601,8.352906,2.989263,0.756200,0.162810,0.000000,0.058678,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,1.031405,0.000000,0.000000 -602018.955000,4612665.550000,6384,3605,137.808289,178.378525,170.510757,163.857864,146.940521,134.279358,130.601669,130.452911,128.651260,133.047958,131.965317,142.791763,159.089264,176.122314,188.717361,198.353729,197.626450,188.188431,161.626450,141.229782,128.750443,125.684319,120.527298,91.287628,74.006638,89.923988,102.370270,75.163658,35.452911,12.965308,10.957044,4.471083,6.256213,5.279351,8.142161,2.095047,0.577687,0.141322,0.054546,0.000000,0.011571,0.000000,0.000000,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602024.355000,4612665.550000,6411,3605,115.746292,176.647110,174.176041,159.010757,144.589264,132.233902,131.399185,127.994232,127.085136,128.085144,128.390930,141.052078,159.886780,176.233887,187.465302,198.233887,197.771088,183.382645,159.457031,137.804138,126.663651,123.804146,118.754562,89.357864,76.142990,89.862000,103.498360,74.432243,35.911591,14.644648,10.795886,8.628939,6.717368,6.870262,8.774393,4.696702,0.255373,0.875208,0.000000,0.000000,0.049587,0.000000,0.058678,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.155000,4612665.550000,6430,3605,100.682655,170.167786,174.242172,162.266968,147.232239,136.966965,137.547119,133.406616,132.216553,134.042999,132.978531,145.160355,163.639694,180.342163,192.631424,202.978531,202.879364,187.912415,163.854568,142.400009,131.770264,128.026459,121.927292,93.133904,76.342995,91.423157,105.044640,75.565308,37.200844,15.208282,11.084316,10.928113,10.330591,10.968608,12.058692,7.004968,3.927277,2.872730,3.255375,2.280167,1.664464,0.704959,0.814050,0.880993,0.000000,1.076033,0.000000,0.000000,2.603306,0.000000 -602032.355000,4612665.550000,6451,3605,115.129761,175.774399,174.071930,162.245483,145.501678,133.658691,132.890091,128.311584,128.195877,130.022324,129.179352,141.633911,160.832260,177.782669,188.385971,198.733078,198.617386,183.956223,159.658707,138.625626,127.873566,124.972740,118.790916,89.377693,74.625641,88.204140,102.774391,75.138031,36.187622,14.746300,10.799193,8.912410,8.209930,10.374394,9.161999,5.009099,0.964465,0.419009,0.699175,0.180165,0.000000,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.355000,4612665.550000,6466,3605,116.498360,176.010773,176.696716,162.589279,146.308289,133.895050,134.457047,129.647125,129.291748,130.919846,129.605804,142.845474,161.671921,178.415726,190.266953,199.828934,199.870255,185.415726,161.696716,138.093414,128.382660,125.671913,120.390923,91.010757,75.663651,91.539680,103.093407,76.457039,37.853737,15.187621,10.944648,11.876048,8.539683,7.157037,9.374393,3.290090,0.918185,0.578514,0.219836,0.000000,0.000000,0.022314,0.377687,0.200827,0.000000,0.000000,1.392562,0.000000,0.000000,0.000000 -602037.955000,4612665.550000,6479,3605,118.885139,183.903305,174.655380,164.814056,150.789276,137.921509,134.863647,131.161179,128.838852,130.500015,131.227295,142.638855,160.352081,178.186783,190.881012,200.368607,198.930588,183.963654,161.517365,139.692566,128.238037,126.477699,121.345467,92.502495,76.279358,91.552078,104.411583,75.700851,38.477707,13.118199,11.031424,10.666131,7.723155,8.332246,10.622330,5.301662,0.525622,0.599175,0.335538,0.000000,0.165290,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602041.555000,4612665.550000,6497,3605,101.534721,183.262009,178.104980,166.138046,147.807465,134.452087,134.319855,131.898376,128.716553,130.526459,129.890106,142.195892,161.576065,177.138046,190.766144,201.377716,200.700027,184.253738,161.220688,139.534729,128.989288,126.576050,120.700012,90.518196,77.460350,89.385971,104.171082,76.311584,34.774399,14.526464,10.972746,9.959517,7.742163,8.893401,10.071915,7.004969,1.129754,0.382645,0.147934,0.073554,0.050413,0.000000,0.000000,0.327274,0.000000,0.000000,0.000000,1.553719,0.000000,0.000000 -602045.155000,4612665.550000,6515,3605,106.252907,180.146286,176.653732,172.053741,156.237213,140.964493,139.964493,133.154556,130.790909,131.799179,130.666946,142.162842,161.047134,179.542984,191.534714,203.666946,203.361160,188.840500,167.245483,145.228943,133.658676,130.295883,125.163651,96.800018,79.783485,92.766960,107.089264,77.056213,39.915726,16.473572,11.378533,14.002496,10.148775,11.828942,13.744642,7.169430,3.026449,2.247936,2.614052,2.023142,1.268596,0.932232,0.617356,0.000000,0.623967,0.000000,0.000000,4.656199,0.000000,0.000000 -602048.355000,4612665.550000,6531,3605,114.993408,185.266113,179.836365,166.373566,147.753723,134.042999,133.885971,130.571915,129.555389,131.307449,130.439682,143.158691,160.753723,178.588425,190.274368,201.125610,199.489243,185.092560,160.869431,139.266129,127.828117,124.679359,120.563652,91.604973,76.844635,90.423157,104.323982,75.530594,37.819862,13.899193,10.960349,10.348775,8.264478,10.269438,9.449601,4.871083,0.585953,0.852068,0.046281,0.000000,0.115703,0.000000,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.955000,4612665.550000,6544,3605,100.629768,179.771912,176.251236,163.457855,147.085968,132.333908,133.160355,130.168610,129.127289,131.449600,130.259521,142.945480,160.631424,178.928925,190.085953,201.953735,199.920670,184.375214,161.705811,138.267792,128.019852,125.945473,120.036385,91.028122,75.416550,91.069443,103.449608,75.656219,36.590107,14.642994,10.912416,10.292578,7.078527,9.148774,9.232246,4.828934,0.845457,0.543803,0.305785,0.000000,0.000000,0.000000,0.017356,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.155000,4612665.550000,6575,3605,112.024818,174.900864,169.933914,161.727310,146.704163,131.844650,130.206635,127.826462,127.380180,130.082657,127.272743,138.322342,155.322342,171.429779,182.843002,194.140533,191.826477,178.966980,155.545486,134.801666,124.371918,120.363655,115.181831,88.290924,73.613243,89.107452,99.123985,73.843002,36.190098,12.657868,10.471093,6.954556,7.360344,7.246292,7.748772,4.170255,0.491737,0.640498,0.119009,0.000000,0.000000,0.071075,0.679339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602060.955000,4612665.550000,6594,3605,106.899193,174.775208,169.965302,161.808273,146.271088,131.618195,130.395050,127.766960,126.254562,128.618195,127.097534,137.890915,154.370255,171.965302,183.676041,193.775208,191.907440,179.436371,156.287613,134.428101,124.287621,121.386795,114.981834,88.254562,73.353745,88.981834,98.642990,74.006638,34.200016,12.557867,10.452911,6.819019,7.077700,7.672738,7.988443,2.287608,0.706613,0.126447,0.147934,0.490083,0.050414,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602065.555000,4612665.550000,6617,3605,106.376869,169.699997,165.220657,159.832230,144.799179,133.881836,131.121506,128.840515,126.394234,128.857040,127.509933,137.600845,154.162827,170.658691,181.179367,193.162827,191.237198,177.865311,154.724808,134.881836,123.295059,120.815720,115.700020,89.749603,74.385963,88.402496,100.113243,74.625641,36.129772,14.413241,10.518201,7.004971,7.793402,6.399184,7.773565,2.628929,0.404133,0.190909,0.268596,0.333885,0.000000,0.280166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602072.155000,4612665.550000,6650,3605,117.464470,162.450424,167.177704,160.326462,145.390091,132.051254,131.491745,132.194229,131.053726,132.921494,132.566116,142.966965,158.603317,174.776871,185.785141,195.504150,193.066132,180.958694,155.966965,134.698349,121.458679,118.888428,114.500000,87.629761,72.720680,88.323975,97.728935,73.268608,35.447956,14.998363,10.409109,7.261169,9.685140,9.150424,10.852908,5.297526,2.563638,2.275208,1.537191,0.985124,0.494215,0.332232,1.051240,0.112397,1.424793,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.955000,4612665.550000,6699,3605,110.272743,169.991745,168.024811,158.438034,144.041336,131.925629,129.396713,126.371918,125.330597,127.834724,126.115715,136.537201,154.173569,169.867783,180.793411,190.991745,189.826462,176.966965,154.115723,133.636383,122.165306,118.429771,115.181831,87.132248,73.545471,87.495880,100.231422,73.504150,35.090931,14.814068,10.471093,6.160341,8.110759,7.524806,8.528938,4.004965,0.504133,0.061157,0.044628,0.144628,0.000000,0.061984,0.810745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.955000,4612665.550000,6714,3605,89.053734,160.987640,164.623993,155.706650,142.276886,130.681824,125.367775,124.491745,122.764481,123.376053,123.623985,132.549591,150.500031,166.500031,177.061981,186.574387,185.376038,175.086777,151.599213,131.276871,119.706627,116.541336,111.227287,84.673569,70.450432,84.797539,98.516541,73.210762,32.062004,12.542993,10.111590,3.949595,6.370264,6.541333,6.337203,2.889261,0.939671,0.174380,0.265290,0.078513,0.103306,0.000000,0.228100,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.155000,4612665.550000,6740,3605,90.654556,161.133911,161.993408,155.133911,138.770279,129.555374,125.233070,122.026466,121.902496,121.431412,122.166954,132.216537,149.778534,165.249619,175.208298,186.034729,184.200027,172.274399,149.844650,129.009933,116.795059,114.687614,108.927292,82.439690,67.819855,82.580185,97.348778,73.348778,34.604977,12.264480,9.902499,4.471909,5.492574,6.574393,6.289268,2.685129,0.571075,0.014050,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.355000,4612665.550000,6761,3605,78.810760,157.075211,163.637192,153.157852,138.744629,127.752892,125.108261,121.538010,120.124786,121.108261,120.959503,130.645447,147.926437,162.554535,175.628922,184.033875,182.529755,170.810745,148.455368,128.290085,117.653725,114.463646,107.372742,81.959518,68.323151,84.116539,98.240509,73.306625,32.306633,11.600017,9.761176,4.737201,6.406625,5.655381,5.509927,2.508269,0.345456,0.000000,0.097521,0.017356,0.000000,0.069422,0.283472,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.955000,4612665.550000,6789,3605,98.235542,153.483490,164.723160,155.070267,140.045471,129.995880,126.004143,122.871910,121.367775,121.971085,121.219017,131.888443,149.285141,164.095062,175.756195,185.466949,184.574387,172.210754,150.037201,129.475220,118.929764,114.805794,109.045464,82.723152,68.219025,86.392570,100.400833,74.508278,34.301674,13.546298,9.913242,5.912407,7.123157,7.195880,6.371914,2.176864,0.392563,0.086777,0.146281,0.028926,0.000000,0.065289,0.262810,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602107.555000,4612665.550000,6827,3605,93.369431,149.468597,161.766129,153.038849,139.923157,127.939682,124.906624,119.799187,119.385963,119.311577,119.716537,129.377701,146.873566,162.485138,173.609100,183.113235,181.534714,169.848770,147.129761,126.476868,117.369431,113.295052,107.518188,81.336372,65.782661,82.195877,96.402489,73.766136,33.857044,12.706631,9.774399,4.333895,5.458691,7.341333,8.037203,1.599178,0.383473,0.014877,0.044628,0.020661,0.000000,0.057025,0.176034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.955000,4612665.550000,6859,3605,86.351250,148.946274,164.797516,157.772720,140.871902,130.582657,127.376053,125.103325,121.822327,122.590927,122.847122,133.458694,149.913223,163.326462,175.640518,185.632248,183.442169,171.276871,149.723145,129.318192,119.557869,115.384315,108.681831,83.698364,68.582664,84.805801,99.673569,74.252083,36.268612,14.271917,9.880183,5.152902,8.533072,7.361168,7.807450,2.621492,0.924796,0.318183,0.313224,0.000000,0.004132,0.000000,0.459505,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602118.155000,4612665.550000,6880,3605,84.419029,152.361176,161.195892,151.848785,135.642151,126.452072,122.328110,119.509926,117.939682,119.121498,118.881828,129.129761,146.278534,161.700027,173.385971,181.881851,180.245483,168.402512,146.526474,127.113235,115.063644,113.237198,105.790916,80.600845,64.832253,82.881836,92.774391,71.245476,33.642170,11.268611,9.617375,4.694224,7.917370,6.027284,5.320672,2.577690,0.100827,0.105785,0.097521,0.000000,0.000000,0.107438,0.124794,0.290909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.555000,4612665.550000,6897,3605,97.154564,153.113251,163.890106,154.088455,139.138046,129.278519,126.245461,122.848763,121.385956,121.154549,121.865288,132.658691,148.675232,164.088455,175.476868,185.427277,183.468597,172.303314,149.262009,130.344635,118.410751,115.633896,108.518188,83.344643,69.129768,83.865311,98.427284,73.352913,34.881836,14.333076,9.865309,6.772738,7.842991,8.173565,7.061996,4.475213,0.209918,0.428927,0.137191,0.000000,0.000000,0.000000,0.255372,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.355000,4612665.550000,6916,3605,95.635551,148.387604,161.643799,150.304962,136.842148,127.519836,124.296707,121.156212,118.544640,119.156212,119.470261,129.511566,146.875214,162.817352,173.404129,183.313232,181.304962,170.247116,146.900009,127.404144,116.346291,113.718201,106.627281,81.346298,65.255386,82.263657,96.552910,71.412415,32.792580,14.023158,9.693408,4.133067,5.778526,5.909927,7.137203,3.753726,0.424794,0.040496,0.000000,0.028099,0.005785,0.000000,0.264463,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.355000,4612665.550000,6946,3605,93.214890,148.016541,166.024796,154.851257,139.008286,129.272751,126.495880,123.636383,120.958702,121.826469,122.223167,132.876053,149.247955,164.966965,175.198349,185.198349,185.099167,171.578506,150.181839,129.628113,119.644653,115.198372,109.727303,84.479355,70.256218,84.181831,100.438049,72.966957,36.380184,14.206630,9.975225,5.619018,7.129768,7.541335,8.114890,4.835544,0.404959,0.440497,0.045455,0.075207,0.000000,0.000000,0.404959,0.255372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.355000,4612665.550000,6976,3605,90.060356,154.779358,164.134735,150.969437,136.341324,126.225624,124.151245,119.688438,119.209099,119.093391,119.605789,129.589264,147.060349,161.820679,173.382660,182.729782,182.159531,169.374405,147.729782,125.845459,116.076866,113.341331,106.300003,82.019028,66.010765,83.233910,95.804153,71.002502,30.457043,12.962001,9.663655,4.430588,5.857865,6.672739,5.183482,2.785957,0.416530,0.214050,0.056199,0.152894,0.000000,0.000000,0.221488,0.113223,2.254546,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.355000,4612665.550000,7011,3605,84.014069,147.809113,161.462006,151.709930,138.627289,128.238861,125.288445,120.164474,119.164474,119.718193,120.197533,130.106628,146.428940,162.660355,174.321487,183.156204,180.478516,169.569427,147.090103,127.304970,115.957863,112.825630,107.445465,81.238861,66.900017,82.495056,96.999184,70.271919,33.660351,12.719027,9.767787,6.342160,6.610757,8.542988,7.015715,3.321495,0.480166,0.260331,0.079339,0.023967,0.329753,0.000000,0.178513,0.300000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.555000,4612665.550000,7037,3605,83.328125,154.328094,162.881805,151.964462,138.261978,128.113235,125.104973,121.923157,119.807457,119.212418,120.369438,131.228943,148.468597,162.195862,174.716522,184.617355,183.154541,171.369415,148.890091,127.890099,117.749603,114.799194,108.154564,82.675224,68.377701,83.518196,97.666962,71.823982,34.600849,12.844646,9.832252,6.050424,7.701668,8.947948,7.219848,2.949593,0.309092,0.002479,0.036364,0.041323,0.000000,0.114050,0.657025,0.000000,4.646282,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.355000,4612665.550000,7061,3605,85.124817,151.199188,162.876877,155.662003,140.959534,131.488449,126.719849,123.306625,120.331429,121.372742,121.744652,133.248779,149.066956,162.934723,174.852097,185.100037,185.166138,172.033890,149.042160,129.248779,117.637215,115.083488,109.009117,83.595886,69.000847,85.149605,98.835564,73.149605,34.918198,12.954562,9.909936,6.327284,9.062826,8.340508,6.995055,3.342156,0.113224,0.023967,0.366943,0.308266,0.114050,0.000000,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.755000,4612665.550000,7083,3605,97.143822,152.276047,163.160355,155.143814,139.127289,129.656219,125.077705,121.003326,119.804977,119.705803,119.689278,131.515717,148.019852,163.482666,174.110764,184.639694,183.631424,170.639694,149.656219,128.036377,118.714066,115.251259,108.854568,81.953735,68.019852,84.590103,97.978523,72.879356,33.598370,12.736382,9.895887,4.920671,7.057867,7.274393,5.348772,2.964469,0.800829,0.290083,0.052066,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.755000,4612665.550000,7098,3605,95.278534,154.774384,163.964478,153.245468,138.576050,124.518188,122.204140,118.476868,117.832245,117.328110,118.485130,128.782654,145.832245,161.261993,172.848770,182.493393,181.022324,168.757858,146.923157,125.204140,115.237198,111.881828,105.245461,80.766129,66.104973,81.468605,96.047119,69.576042,32.369442,11.774397,9.567787,5.095877,6.218196,7.542989,6.221498,3.069428,1.023143,0.002480,0.190083,0.301654,0.000000,0.072728,0.000000,0.181818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.555000,4612665.550000,7122,3605,100.121506,149.815720,164.088440,152.088440,136.898361,128.088440,124.609100,120.890091,118.675217,119.435547,120.014061,130.782654,147.419022,163.319839,173.642136,183.096695,182.815689,169.931396,149.815720,128.278519,117.700012,114.576042,107.427284,82.295059,66.939690,82.452072,95.344635,70.576050,32.790928,13.164479,9.766134,5.632243,8.209105,8.306623,7.653731,2.832238,0.476035,0.349587,0.115703,0.058678,0.000000,0.000000,0.242976,0.109918,0.000000,0.000000,1.869422,0.000000,0.000000,0.000000 -602170.755000,4612665.550000,7143,3605,89.263649,153.271912,165.734711,152.461990,138.395874,129.139679,125.635551,120.891747,119.784309,120.321503,119.643814,131.561172,146.718201,163.652069,173.420685,184.734726,182.462006,170.974396,148.015701,128.561172,117.362823,113.718193,107.354553,82.660339,67.585968,83.238853,95.900009,70.825638,33.304977,12.469438,9.759523,5.645466,7.041337,6.286787,6.004143,3.543808,0.944630,0.176033,0.085951,0.059504,0.017356,0.195868,0.128926,0.000000,4.676033,0.000000,0.000000,0.000000,0.000000,0.000000 -602175.955000,4612665.550000,7169,3605,87.536385,157.354568,164.900024,154.602493,140.858704,129.296707,127.073563,122.709930,120.949600,121.883484,122.040504,132.214066,149.668610,163.577698,175.354568,185.222336,185.577698,171.767792,148.734726,129.709930,118.850426,114.635551,110.081833,83.817368,69.090096,84.123154,97.883484,72.015717,33.288452,14.168613,10.007458,7.267781,7.925635,8.119020,8.808279,2.258683,0.624795,0.000000,0.247108,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602178.955000,4612665.550000,7184,3605,101.333900,160.052917,168.449600,154.639709,141.036392,130.838043,128.094238,123.358696,121.441345,123.143822,122.300842,134.490921,150.548798,165.011597,175.722336,186.813232,185.168610,172.168610,149.565323,129.804977,120.185143,116.201675,110.036385,83.747124,68.664482,83.044647,96.631424,71.028130,32.441341,13.763655,10.003325,7.564476,8.257867,7.446292,7.303318,3.525626,1.015705,0.306613,0.000000,0.266116,0.045455,0.064463,0.000000,0.000000,1.474380,0.000000,0.000000,0.000000,0.000000,0.000000 -602182.155000,4612665.550000,7200,3605,95.654556,163.869431,165.704147,154.158691,144.059509,130.712402,128.381821,123.489273,123.704147,123.406631,124.257866,134.704147,151.538849,166.332245,177.142151,186.952072,185.778519,174.927277,151.414886,130.472733,119.414894,115.819855,110.472748,86.241341,71.340515,85.960350,97.166962,72.001671,34.505806,14.100844,10.042994,7.930591,7.842989,7.847120,6.963648,2.866121,0.841325,0.504134,0.195042,0.236364,0.000000,0.183472,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602184.955000,4612665.550000,7214,3605,102.081841,157.147949,164.106628,154.503326,138.280182,128.916534,124.478523,121.387611,120.420670,120.486786,121.172737,130.172745,147.205811,163.709930,174.065308,184.486786,183.247116,168.676880,148.304977,126.809105,117.387611,113.726456,108.900009,82.809105,69.090103,81.470268,93.585960,67.123161,29.767788,12.428943,9.900019,5.722323,6.597534,7.119845,6.914061,2.782650,0.571075,0.031405,0.052066,0.111570,0.002479,0.051240,0.000000,0.211570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.755000,4612665.550000,7238,3605,113.608284,163.195053,167.021500,157.467789,141.335556,130.261169,128.128937,126.732246,124.864479,123.823151,124.996704,135.930588,151.732239,166.872742,178.633072,188.806625,187.814896,174.690918,151.641342,132.285965,121.013237,116.674393,111.781830,86.170265,71.980194,84.657875,98.360344,71.153748,33.781837,14.197536,10.162003,7.386788,8.695884,7.230591,8.947120,5.385130,0.558679,0.097521,0.147934,0.390910,0.000000,0.138843,0.404959,0.433058,0.000000,0.000000,1.949587,0.000000,0.000000,0.000000 -602198.155000,4612665.550000,7280,3605,94.298370,165.471893,166.752884,152.752914,139.571106,128.728119,127.397545,123.042168,121.662003,122.124817,122.670265,132.471924,148.339676,165.248764,175.133057,185.637192,183.422318,173.290085,149.116562,129.835556,118.703323,116.538040,110.009102,83.405807,69.868614,83.785965,93.992584,69.182663,30.124813,11.179354,10.000844,6.848771,5.665302,5.960342,6.704971,2.942153,0.213224,0.396695,0.079339,0.074381,0.000000,0.000000,0.000000,0.222314,0.000000,0.000000,0.000000,1.693388,0.000000,0.000000 -602200.955000,4612665.550000,7294,3605,101.589279,162.143005,165.002502,158.390930,142.704987,129.159531,127.382668,124.316551,122.556221,123.134735,124.225639,134.060349,150.126465,164.787628,176.432251,186.936386,186.969437,173.101669,149.242172,129.374405,120.341347,116.192581,111.845474,87.085144,71.614075,83.481842,93.266968,68.514900,33.217373,12.791751,10.167789,7.456211,7.708279,8.028111,7.767782,2.789261,0.954548,0.247935,0.180166,0.090910,0.109918,0.362811,0.347934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602204.155000,4612665.550000,7310,3605,112.311584,163.503326,165.627274,159.916534,142.569443,129.619034,129.172745,125.288452,124.057037,124.792572,124.395882,135.544647,151.759521,166.619019,179.090103,188.924789,188.395874,173.742996,151.123154,131.858688,121.230598,117.676880,112.718193,87.437202,71.701675,83.891754,94.230591,68.585968,29.519855,12.936381,10.247126,5.396703,7.276047,7.217368,6.766953,3.229758,0.326447,0.114876,0.157025,0.061157,0.052893,0.142149,0.142975,0.123967,0.000000,0.000000,0.000000,3.763637,0.000000,0.000000 -602206.955000,4612665.550000,7324,3605,99.011581,162.383484,165.590103,159.532257,143.722336,131.474396,130.441345,127.540504,126.383484,127.755386,127.185135,137.019852,154.077698,169.755386,181.209930,192.540512,192.110764,178.623154,154.143814,134.614899,124.102493,120.350426,116.036377,89.681007,74.507446,88.887611,97.738853,69.821510,33.755394,14.356216,10.548779,8.881004,8.740511,8.829765,8.519020,4.277693,0.942151,0.041323,0.039670,0.186777,0.000000,0.000000,0.000000,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602211.555000,4612665.550000,7347,3605,97.989273,167.757858,167.361160,158.840500,143.757858,131.195877,129.534729,126.121506,124.939690,126.096710,125.840515,138.460342,154.923157,171.666946,183.452057,195.311569,195.509918,180.237198,159.625626,138.154556,128.022339,123.559525,119.245476,92.361168,76.881836,92.427284,103.873566,76.228943,37.898369,14.539688,10.840514,7.823152,9.369437,9.522327,7.699185,3.493397,1.109095,0.062811,0.370249,0.107438,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.755000,4612665.550000,7373,3605,89.787628,171.828934,167.531418,159.366119,143.134735,131.944656,130.837219,127.184319,126.597542,129.109940,127.382668,139.192581,155.969421,173.126450,185.184311,197.126434,195.861969,182.035538,161.390915,141.903336,130.275223,126.498367,120.663658,92.952911,77.581017,93.308289,106.490105,77.680191,39.804150,15.743821,10.969441,8.829764,9.309105,10.564478,11.322329,4.302489,0.885953,0.220663,0.057025,0.238844,0.000000,0.000000,0.078513,0.519835,0.000000,0.000000,1.987603,0.000000,0.000000,0.000000 -602224.155000,4612665.550000,7410,3605,105.662819,168.968628,166.613251,157.290939,143.447952,129.968613,129.051254,125.646294,125.671089,129.282669,125.894234,138.323990,154.481018,171.464493,184.315735,197.092575,196.109100,180.902512,159.233078,140.547134,129.307449,126.778534,120.018196,91.183479,76.481003,94.109100,104.728935,74.340508,33.861179,14.421506,10.910764,10.682657,9.802494,9.519021,9.128111,4.520671,0.994218,0.246282,0.057851,0.076860,0.180166,0.081818,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.755000,4612665.550000,7438,3605,117.081009,168.873581,165.435562,159.303329,141.873581,129.799194,128.840515,125.344643,124.956215,128.939682,125.840515,136.890106,152.890106,170.617386,183.245483,196.270279,193.815735,180.584320,159.675232,139.452087,129.129776,125.865311,120.972748,91.766136,77.171089,92.600845,101.402496,73.691750,35.369438,15.673573,10.997540,12.720676,9.085966,7.361172,9.422327,3.803316,1.041325,0.195043,0.066942,0.269422,0.000000,0.000000,0.653720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602235.755000,4612665.550000,7468,3605,117.295052,177.650406,167.063644,158.129761,140.981003,126.757866,126.419029,122.542992,121.633904,124.138031,119.551254,132.650436,147.237198,163.509918,175.691727,186.848755,184.138016,169.055359,150.014053,131.005798,121.468613,118.873573,111.427292,85.295052,70.890099,86.708275,96.675217,69.600845,32.518200,12.561999,10.129770,10.366128,8.602492,8.608279,7.155384,4.113232,0.285126,0.734712,0.217356,0.158678,0.038017,0.000000,0.271075,0.138017,0.000000,1.526446,0.000000,0.000000,0.000000,2.190083 -602244.155000,4612665.550000,7510,3605,142.563660,181.588425,171.092560,160.654556,143.009949,130.208282,127.993408,124.687622,124.307457,128.869446,122.960350,134.869446,151.109100,165.828110,179.671066,190.745453,187.390076,173.092575,154.216537,133.976883,124.762001,121.233078,115.745476,87.762001,73.985138,92.084312,102.348778,74.018196,36.042992,14.733900,10.522332,11.658693,7.690922,9.844644,10.679352,4.418192,1.441325,0.576861,0.300000,0.090909,0.180166,0.059504,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602250.155000,4612665.550000,7540,3605,185.406616,162.100830,148.042984,131.348770,117.431412,105.861168,100.067780,95.456207,93.580177,93.811577,93.910751,104.728935,121.051247,135.299179,146.414886,156.563644,156.200012,147.885956,130.952072,113.059517,104.142159,99.671082,94.200012,69.290916,53.175228,74.679352,101.728935,84.481003,38.654568,11.964480,8.563655,7.903319,10.993402,10.176048,12.142990,9.426458,2.522319,1.772730,0.311572,0.290083,0.090909,1.361158,0.028100,0.368596,10.510744,9.634711,5.375207,1.570248,0.000000,8.846282 -601433.155000,4612655.550000,3455,3655,129.040512,138.023972,130.238846,119.800827,105.924805,96.569435,93.412407,92.701668,91.792572,92.858688,94.982658,106.123154,124.428932,141.189255,153.470245,164.908264,165.461990,155.098343,131.850418,112.098358,100.478523,96.453728,90.627281,63.875221,46.387623,61.395885,75.842163,56.222332,24.833906,8.933898,8.238862,11.652081,8.126458,9.038032,11.716545,7.071910,2.444633,0.682647,0.848762,0.908266,0.248761,0.789257,0.246282,0.458679,15.214052,11.876035,10.615705,8.365291,5.729753,13.287603 -601438.355000,4612655.550000,3481,3655,120.927292,139.554565,134.166138,124.389267,112.860344,102.364479,100.703316,97.273567,97.033897,99.157867,100.116539,111.777702,129.124802,146.141342,158.885132,169.744644,170.075226,157.967789,134.240509,113.554558,103.050423,100.661995,95.463646,67.703323,51.711590,66.430603,79.372742,56.852089,26.265308,11.015718,8.678533,11.236380,8.466955,10.861999,10.829767,6.937200,1.457858,1.420665,0.649589,0.567769,0.394216,0.676860,1.043803,1.149588,10.927275,7.785952,4.964463,6.502481,7.542150,3.428926 -601446.555000,4612655.550000,3522,3655,123.549606,141.550415,140.385117,129.889267,115.773567,107.170258,103.368607,101.087616,101.161995,103.087616,103.914062,114.327278,133.476044,149.757019,162.401657,171.599991,171.914047,160.211563,136.914047,116.542152,104.790092,101.360344,94.963646,67.980179,50.773571,65.401672,80.195053,59.319031,27.971922,10.237206,8.633076,7.808278,9.045466,8.529766,7.964476,4.595048,1.265293,0.654548,0.224794,0.185951,0.429753,0.115703,0.287604,0.427273,4.733885,2.623967,3.735538,2.955373,4.327273,1.833884 -601459.155000,4612655.550000,3585,3655,114.197540,144.169434,145.830597,135.590927,123.177696,116.351257,115.020676,112.185959,110.078522,111.954559,112.285141,121.971092,139.433899,155.706635,169.838837,179.797531,179.483490,167.177704,143.781006,122.871918,111.318199,108.615707,101.954552,74.152908,56.202499,71.590927,84.318199,62.640514,28.335558,12.522331,9.268614,6.882658,8.233898,8.557865,9.573568,4.734718,1.211573,0.450415,0.766944,0.193389,0.074380,0.000000,0.131405,0.438843,2.623141,0.976860,0.000000,0.745455,2.744628,3.701653 -601477.355000,4612655.550000,3676,3655,112.690102,147.595062,145.776871,135.421509,121.710762,112.297539,108.950432,107.595055,107.851257,108.917374,109.991753,120.305801,138.033081,154.760345,167.495865,176.710754,175.776871,165.231400,142.479355,120.652908,109.685966,105.966957,100.909103,72.247948,53.975227,69.314064,83.024811,62.842995,27.134729,10.202496,9.173573,3.282653,6.574393,6.947947,5.945467,2.701657,0.314877,0.058679,0.200827,0.335538,0.000000,0.038843,0.266943,0.000000,0.000000,1.038843,0.828926,0.757851,4.033885,1.909091 -601492.355000,4612655.550000,3751,3655,123.966133,155.495880,150.264481,139.454559,126.842995,116.132248,112.512413,111.396713,110.033073,112.900841,113.487617,124.181831,141.975220,158.421509,170.966965,179.925629,179.719025,168.223160,145.892578,124.016548,112.884315,108.479355,103.090927,75.553734,56.702496,72.942162,87.834724,65.148773,29.446299,12.015719,9.371920,5.914886,7.880178,7.438030,8.044641,3.979345,1.320663,0.166117,0.110744,0.000000,0.269423,0.034711,0.000000,0.338843,0.000000,0.000000,0.828926,0.000000,2.134711,0.000000 -601497.555000,4612655.550000,3777,3655,147.067795,185.414902,166.753738,158.414902,137.770264,126.042984,124.042984,120.728935,121.191742,126.505798,121.241333,133.274384,148.456223,165.737213,178.547134,189.580185,187.357056,171.894241,151.208298,131.712402,119.704140,117.555382,112.654556,82.968613,67.274391,82.257866,93.795052,66.828117,34.100845,13.210762,10.241341,12.438860,8.319848,10.615719,10.484313,4.216538,0.512398,0.218183,0.107438,0.000000,0.220661,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.955000,4612655.550000,3794,3655,122.242165,184.192581,163.787628,155.473572,137.291763,124.134727,122.134727,119.415718,120.019020,125.952904,119.622330,131.126465,148.068619,165.052094,178.556213,187.828949,185.647125,171.506638,149.680191,129.514893,118.762825,116.903320,111.027290,81.167786,65.647125,81.275223,92.671913,67.109940,32.969440,12.832249,10.093408,11.206629,7.504147,8.662827,7.756212,4.782655,0.437191,0.152067,0.337191,0.068595,0.000000,0.000000,0.000000,0.060331,0.000000,2.514050,0.000000,0.000000,0.000000,0.000000 -601504.355000,4612655.550000,3811,3655,119.809113,179.610733,162.742981,151.668594,135.767776,121.941345,121.453735,118.850433,117.619026,123.701675,118.338036,130.189270,146.792572,162.999176,176.354538,186.726456,184.015686,169.519836,148.098343,128.065308,117.767792,114.825638,109.172745,79.536385,63.627293,81.139687,91.114899,65.759521,29.503325,13.305803,9.924811,10.766956,7.038856,8.784311,6.965300,3.661992,0.204960,0.125620,0.000000,0.057851,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.891736,0.000000,0.000000 -601509.355000,4612655.550000,3836,3655,115.273567,180.752884,162.397537,154.480179,136.248779,123.356209,121.777702,120.529762,119.100014,123.620674,119.579353,131.620667,147.703323,165.686768,176.918182,187.959503,185.835541,171.521484,149.893402,130.331421,118.504974,116.364479,111.009102,82.323158,66.149605,80.083488,93.207458,67.463654,31.248779,12.749603,10.091756,9.584314,6.441337,9.766131,8.139683,3.219016,0.617357,0.043802,0.109091,0.180992,0.000000,0.000000,0.000000,0.081818,0.000000,0.000000,1.085124,0.000000,0.000000,0.000000 -601514.555000,4612655.550000,3862,3655,102.232254,171.695038,163.967789,153.414062,135.637192,121.810768,122.736382,120.157875,119.777710,123.182663,120.306633,131.306610,148.000839,164.934723,177.099991,186.645447,186.190903,171.670242,148.984314,128.901657,118.455391,115.488449,110.281837,81.546303,65.331429,79.223991,92.645477,67.207458,31.009109,12.771919,10.025640,10.579355,7.676874,9.376874,9.512411,3.844636,1.142151,0.089257,0.181819,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.555000,4612655.550000,3877,3655,123.626450,176.494217,161.452896,154.527283,136.857864,123.940506,123.618187,120.419838,119.585129,123.287613,120.188438,131.328934,149.800003,165.378525,177.485962,188.800003,184.981827,173.353729,149.824799,129.750427,119.519012,116.304138,110.436371,82.097534,65.527290,79.882660,94.204964,68.775223,32.535557,12.802496,10.039688,10.819024,8.615718,7.124808,8.812410,3.562819,0.921490,0.289257,0.114050,0.000000,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.955000,4612655.550000,3924,3655,115.255386,166.552917,162.123154,150.619034,136.519852,122.503319,122.288445,119.461998,118.428940,121.883484,119.652077,130.933075,149.114899,165.685150,178.495056,187.040512,186.296707,172.883484,150.610764,129.395874,118.850426,116.296707,111.263649,82.098358,65.511589,79.858688,92.676872,68.181007,31.032253,11.647125,10.114896,9.615717,7.804974,7.556213,7.097532,3.728107,0.538018,0.000000,0.090083,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.555000,4612655.550000,3937,3655,99.294228,165.186783,161.591751,149.525635,134.583481,123.343811,123.302483,119.153725,118.781822,122.285957,120.095871,131.938858,150.211578,166.244644,177.847946,187.095886,186.029770,173.550430,150.740509,130.814896,119.161987,116.682655,110.418198,81.153732,65.897545,79.352081,93.723976,68.327293,32.740517,13.166133,10.038035,10.104147,8.266957,9.213238,7.070260,2.624800,0.826449,0.101653,0.000000,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.755000,4612655.550000,3953,3655,99.016556,169.793396,161.008270,150.074387,136.000000,122.487610,122.066124,117.520668,118.404968,119.652901,119.173561,131.371918,149.537186,165.710739,177.206604,187.223145,184.727280,174.231400,149.413223,128.438019,117.644638,115.173561,108.909096,80.933891,64.487617,78.446297,91.454559,68.454559,31.446299,11.904976,9.900846,7.119848,5.993403,9.284314,6.628111,1.923972,0.319836,0.359505,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.555000,4612655.550000,3967,3655,112.659515,166.824814,159.320679,149.444641,133.915710,121.510750,121.890915,119.667778,118.568604,118.841331,118.915710,130.328934,148.378525,164.304153,177.204971,186.361984,185.700836,172.742157,149.064468,129.180176,118.692566,114.543816,109.618187,80.543808,65.163658,78.014893,91.651245,67.271095,30.238037,11.583489,9.965308,6.895056,6.116545,7.230594,8.492575,2.543807,0.326447,0.104133,0.000000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.355000,4612655.550000,3986,3655,101.171082,168.914902,161.493408,151.485153,136.171082,123.600838,123.840508,119.724800,119.220673,120.534721,120.204140,132.220673,149.625641,165.129776,178.377716,187.518204,186.303329,173.691757,150.460358,129.724808,117.890091,116.815712,110.336372,81.708275,65.683487,79.138031,94.179352,69.443817,31.171093,12.473571,10.030599,7.888444,8.119849,8.097535,7.911583,3.578519,0.632233,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.205785,0.000000,0.000000,1.423967,0.000000,0.000000 -601544.755000,4612655.550000,4013,3655,96.576881,161.932251,159.585144,149.684326,134.543823,122.287628,120.758690,119.014893,117.180183,119.378525,119.593407,130.717377,148.758698,165.147125,176.221512,186.056213,184.370270,172.659515,149.973572,128.221512,117.684311,114.717369,108.527290,81.246307,64.461174,78.618202,92.337212,68.171921,29.684317,11.599191,9.866136,7.380179,6.587617,6.943815,7.094228,2.891742,0.308265,0.139670,0.138843,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.555000,4612655.550000,4027,3655,106.796715,160.631409,160.540482,149.127289,135.391754,123.267776,122.937202,119.482658,118.813232,119.631416,120.358688,132.449600,149.557037,166.143784,177.284286,186.036346,186.127258,173.466110,151.135559,129.433075,118.838028,115.846291,109.581833,80.631424,65.441345,79.309113,94.044647,68.606628,32.011589,13.570267,9.962004,7.621503,6.656212,8.204975,6.532242,3.249593,0.763639,0.290910,0.050413,0.100000,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.265289,0.000000 -601550.555000,4612655.550000,4042,3655,113.903320,168.101654,162.895050,151.638855,137.258682,125.481834,123.473572,121.266960,121.068611,121.828941,122.167786,133.052078,151.547943,166.704971,178.688431,188.275208,187.159515,175.349594,151.845459,130.019012,118.862000,116.266960,111.118195,81.845474,65.159523,81.870270,93.952904,70.490105,32.291756,13.022332,10.101672,10.171090,8.554561,8.631420,9.199188,3.377694,0.490910,0.215703,0.128099,0.087604,0.000000,0.289257,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.555000,4612655.550000,4077,3655,98.749603,159.766129,160.865295,148.708267,135.303329,123.782661,122.873573,120.328117,118.427292,120.757866,120.716545,132.204147,149.576050,166.146286,176.534714,186.352905,185.964478,174.063644,150.220673,129.774399,118.567787,115.584312,109.700020,80.914894,65.782669,78.964478,94.774399,69.138031,31.832251,13.031425,9.972746,7.069436,7.281007,7.614891,7.531419,3.538850,0.290084,0.145455,0.052893,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.355000,4612655.550000,4091,3655,105.159508,162.919846,162.779343,150.010757,135.233887,124.531410,122.795876,120.547943,119.457031,120.266945,121.357857,131.663635,150.283478,166.126450,177.209091,186.184311,185.572739,174.580994,151.027283,129.002487,118.448769,115.481827,109.118187,81.572739,65.093407,80.886795,94.027290,69.440514,31.291756,12.184315,9.919854,6.491751,7.182660,6.886792,7.994228,3.108272,0.341323,0.132232,0.157025,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.309091,0.000000 -601565.155000,4612655.550000,4115,3655,112.200020,161.481003,161.042984,150.026459,135.191757,124.695892,122.836388,120.084320,119.952095,121.381844,120.613251,132.241348,150.001663,166.150421,178.018188,186.348770,185.439682,173.662827,150.910751,129.092590,117.910767,115.646309,109.381836,81.390099,65.175232,80.489273,94.166969,69.431419,31.646301,13.297540,9.943821,6.326460,5.614064,7.645470,7.574395,2.716535,0.652068,0.071901,0.000000,0.101653,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.972727 -601570.755000,4612655.550000,4143,3655,107.261993,155.709091,161.733887,150.461166,135.709091,125.775223,123.535553,120.485962,119.659515,120.254562,120.957039,132.279358,150.238022,166.469421,178.262817,187.436371,185.552078,173.659515,151.138855,130.014893,118.700844,115.676048,110.163651,81.262825,64.725639,80.800018,94.758690,70.006622,32.948780,13.439688,10.014895,7.900014,7.367784,8.271090,7.157864,2.729758,0.823969,0.264463,0.103306,0.106612,0.000000,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.843802,0.000000,0.000000 -601576.355000,4612655.550000,4171,3655,97.307457,159.213226,159.609924,149.419846,134.973557,124.056206,121.642982,119.857857,119.180168,120.097527,120.651245,131.560333,149.824799,165.080994,176.948761,187.130585,183.783478,172.651245,150.023148,128.279343,117.213226,113.948776,109.072739,80.114067,63.957047,79.469437,94.279350,69.105804,32.064480,11.314893,9.915722,6.357038,6.285964,7.343816,7.971915,3.668603,0.696696,0.052066,0.050413,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.755000,4612655.550000,4188,3655,111.650429,156.609100,160.997528,149.476868,136.427277,125.625641,123.005806,120.204147,120.336380,121.055389,121.683487,132.419022,149.873566,166.162827,176.708267,186.799179,186.468597,173.923157,150.650421,130.774399,118.286797,114.443817,109.881836,81.675224,64.328117,79.774399,94.964478,70.005806,32.642170,12.071919,9.989276,7.759519,6.102496,7.009105,7.606626,3.718189,0.341324,0.067769,0.185124,0.188430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.221488,0.000000 -601584.755000,4612655.550000,4213,3655,94.730598,155.966965,160.132248,148.917374,134.082657,124.727287,122.041336,119.181831,118.388443,119.619850,120.504150,131.123978,148.537201,164.181839,175.933899,185.090927,184.347122,172.958694,148.917374,127.619850,116.710762,112.851257,106.909103,79.041336,63.429764,78.454559,93.289276,69.181831,31.702499,12.048779,9.719028,6.464477,5.950428,6.829766,6.304145,1.851245,0.471076,0.035537,0.000000,0.000000,0.000000,0.159504,0.000000,0.000000,1.286777,0.000000,1.998347,0.909091,0.000000,0.000000 -601591.355000,4612655.550000,4246,3655,109.400009,154.523972,159.276031,148.986786,135.152069,125.267776,122.168610,120.895882,119.697533,120.714058,121.044640,131.482651,150.325623,166.085953,176.862808,186.838013,185.747116,173.747116,150.763641,127.788429,118.152077,115.019844,109.036377,81.019844,63.895885,80.664474,94.631416,69.176880,33.156219,12.887620,9.912416,7.061170,7.155388,7.736377,7.571915,3.084304,0.385125,0.175207,0.052066,0.052066,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.930579,0.000000,0.000000 -601595.155000,4612655.550000,4265,3655,92.019028,152.833069,161.527283,150.155380,136.791763,125.419846,123.766960,120.609932,120.229767,120.874397,120.676048,131.899200,149.824799,165.800003,177.907440,186.452896,185.758682,173.337204,150.039673,128.527283,117.965302,114.221504,109.709106,80.651260,63.824806,81.196709,95.957039,70.601669,33.700848,13.090927,9.973573,6.774395,7.745471,6.331419,7.657037,3.793395,0.335538,0.092562,0.086777,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612655.550000,4283,3655,100.008278,158.728912,158.819824,150.514038,136.340500,127.166954,123.266129,120.274391,119.514061,121.414886,120.712410,131.745468,149.447922,165.927261,177.530579,186.034698,185.778503,173.538834,151.100815,128.778519,117.538849,113.968605,108.200012,80.200020,64.514069,79.976883,95.076050,69.563652,33.191757,12.646298,9.836383,5.685135,7.480179,7.042989,7.938856,1.944634,0.409092,0.111571,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.355000,4612655.550000,4301,3655,100.611588,154.303299,160.452072,151.683472,137.683502,128.352905,124.956215,122.650429,121.741341,122.782661,124.055389,133.981003,152.402466,167.956207,178.989273,189.088440,187.501663,175.989273,152.956192,131.865311,119.369438,117.063652,111.063652,83.055389,66.014069,82.063652,96.567787,72.286797,33.857048,14.429770,10.096712,6.513237,7.275221,8.415718,9.142991,2.770254,0.716531,0.276034,0.000000,0.168595,0.000000,0.022314,0.000000,0.000000,0.000000,0.000000,1.035537,0.000000,0.000000,0.000000 -601605.755000,4612655.550000,4318,3655,111.336388,153.023148,162.403336,148.932236,135.097549,125.618202,122.973579,120.642998,120.304153,121.271095,121.725639,132.957047,150.328934,166.229782,178.791748,187.039673,185.800003,174.601654,151.271088,129.436386,118.684319,114.064484,110.072746,80.750435,63.552086,80.981842,95.279358,72.213249,31.743820,13.364481,10.006630,5.804144,8.478528,7.309104,7.547120,2.845461,0.371076,0.385951,0.027273,0.000000,0.000000,0.000000,0.320661,0.050413,0.000000,0.000000,0.934711,0.000000,1.089256,0.000000 -601609.155000,4612655.550000,4335,3655,106.085144,155.992584,161.017380,149.364487,135.703323,126.571091,123.810760,120.488441,120.728111,122.050423,121.529762,132.810760,151.042175,166.761185,178.967804,187.728119,186.438873,174.628952,151.926468,129.843811,119.116539,115.455383,110.190926,81.480186,64.356216,81.488449,95.604149,70.794235,33.488445,14.291753,10.017374,5.826459,7.662825,7.322329,5.796708,3.581825,0.623142,0.037190,0.054546,0.052893,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.955000,4612655.550000,4359,3655,95.338036,151.404144,159.990921,149.032257,135.784317,124.883484,120.718193,118.825630,118.189270,120.486786,120.131416,130.478531,148.304977,164.635559,177.495056,185.809113,184.627289,173.040512,149.552917,128.428940,116.842163,113.709930,107.445465,78.205803,62.164482,79.842171,94.288452,70.371094,30.486795,11.704150,9.767788,4.303319,5.842164,4.479352,5.538030,1.634715,0.152893,0.079339,0.000000,0.061984,0.000000,0.019835,0.000000,0.000000,1.145455,0.000000,0.000000,0.000000,1.063636,0.000000 -601617.555000,4612655.550000,4377,3655,92.447121,155.761993,160.960342,149.439682,135.018188,125.249596,123.662819,121.200012,120.910751,121.968605,121.910751,133.034714,150.208267,165.654556,178.274384,187.943817,187.051254,174.704147,151.241333,130.026459,117.514061,113.604965,109.563644,80.580185,63.704155,80.638031,95.778519,71.084312,33.200024,13.111588,9.960349,5.697532,8.124807,6.351254,7.511582,2.958684,0.547109,0.171075,0.057025,0.109091,0.000000,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,1.077686,0.000000,0.000000 -601622.155000,4612655.550000,4400,3655,103.060349,160.123154,160.428940,150.982666,136.693405,127.329765,124.627281,120.776047,120.701668,122.445465,122.296707,132.718201,151.776047,166.949600,179.536377,187.503326,187.387619,174.585968,151.734726,130.461990,118.957863,115.313232,109.536377,81.073570,64.222336,80.412415,96.304970,71.999191,32.412415,13.671092,9.957870,6.040510,7.025636,6.947122,8.300015,2.594221,0.611572,0.209918,0.000000,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.355000,4612655.550000,4416,3655,103.154556,158.014862,159.527283,150.180161,135.618195,126.246292,123.965302,121.866127,121.072739,122.436378,122.766960,134.204971,151.766937,167.204971,179.791748,188.047943,187.717361,175.312408,152.328918,130.717377,118.709106,115.973572,109.890923,81.254570,64.271103,81.039696,94.692574,71.791756,32.370270,13.247126,9.990102,5.671088,6.595056,8.271915,7.413237,2.799180,0.428101,0.306612,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,2.352893,0.000000,0.000000,0.000000,0.000000 -601630.955000,4612655.550000,4444,3655,110.377701,156.485138,160.666946,151.914886,135.823990,126.790924,123.228943,121.328117,120.352913,121.708282,122.328117,133.443817,151.741333,167.195877,178.683487,188.179352,187.303314,175.303314,152.559509,130.476883,118.956215,114.452087,108.700020,80.336380,63.832245,80.435555,94.906631,70.716545,32.198364,12.602498,9.881837,5.200012,6.244643,6.274394,5.943815,2.000831,0.273555,0.113224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.955000,4612655.550000,4459,3655,105.716553,164.261993,163.261993,151.666946,137.220673,126.931419,123.138039,120.865318,120.700027,122.997543,123.691765,133.129776,150.964478,167.328110,180.295044,189.336380,187.642151,175.757858,152.476868,130.584320,118.815727,114.716553,109.427299,81.220680,64.030602,81.584312,96.104973,72.964485,32.212414,13.514069,9.947952,5.523979,6.897538,7.304974,5.822328,1.471080,0.142976,0.158678,0.083471,0.000000,0.247108,0.000000,0.000000,0.000000,1.216529,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.755000,4612655.550000,4483,3655,99.234734,157.399170,159.490067,151.299988,135.911575,126.531410,123.804138,121.961166,121.473557,122.828934,122.589264,133.176041,151.804123,167.142960,179.184280,188.762802,186.465286,176.233871,152.399170,130.870255,119.052071,114.936371,108.663643,81.572739,64.242165,80.936378,95.390915,72.217369,32.547951,12.942166,9.878531,6.122325,6.481007,6.705799,7.226460,2.394221,0.526448,0.203306,0.000000,0.057851,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.186777,0.000000 -601641.555000,4612655.550000,4497,3655,91.875229,153.660339,160.395874,152.263641,136.891754,127.784317,123.933075,121.594231,121.271919,122.718201,122.668617,132.676880,151.461990,167.742981,180.090088,188.205795,187.461990,175.693390,152.057022,129.387619,119.552910,116.015724,109.536385,81.776054,63.924812,78.999191,95.685143,71.817375,32.966137,13.160348,9.957870,4.144638,6.804974,6.682659,5.561994,1.333062,0.457026,0.061984,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.955000,4612655.550000,4519,3655,109.019844,160.689255,163.309097,150.920670,137.821487,126.697525,123.813225,121.251244,121.482651,122.664467,121.887604,132.978516,151.664459,167.813232,179.647934,188.871078,187.912399,176.499176,152.052902,130.515701,119.358681,114.854546,108.763641,81.193405,64.490929,80.879356,94.986786,71.995064,32.507458,12.853737,9.887623,5.248772,6.071089,5.924807,6.278525,2.069427,0.156199,0.185951,0.047108,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.355000,4612655.550000,4561,3655,111.525642,159.087616,163.451263,153.029770,138.831436,127.864479,124.029762,122.476044,121.897537,124.004974,123.914062,133.988449,152.401672,169.558701,180.401688,189.814896,189.228119,178.657883,153.922333,132.343811,119.988441,115.864479,111.054565,81.831429,65.442993,79.666138,98.170258,74.071098,34.137207,13.914895,10.095888,6.398359,8.453734,7.581831,6.454558,2.001659,0.518184,0.308265,0.200827,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.937190,0.000000,0.000000 -601658.555000,4612655.550000,4582,3655,116.968605,162.671097,159.993408,152.919037,140.373581,126.671082,124.133896,122.348770,120.414886,122.439682,122.927284,133.414886,150.943832,168.133911,180.266144,189.406631,189.357056,177.266144,152.365311,131.621490,118.249596,114.695877,109.927284,80.257866,63.877705,80.654564,96.340515,73.885971,33.489277,14.004977,9.993408,4.776872,7.796710,7.264477,8.223982,2.182649,0.229753,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.955000,4612655.550000,4609,3655,107.228104,163.310776,163.542175,153.831436,139.591766,127.509094,125.360336,122.889259,120.988434,124.310745,123.178520,133.666122,152.071106,168.236389,181.004990,190.162018,188.806641,176.980194,154.500854,131.872726,119.963638,115.071075,110.327278,82.376862,65.162003,79.426460,97.500839,75.054565,34.186794,13.428943,10.029771,4.365300,7.201668,7.651255,7.135550,1.918187,0.505786,0.166116,0.098347,0.000000,0.000000,0.153719,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.755000,4612655.550000,4623,3655,116.462006,163.147949,161.139694,154.619034,141.338043,128.205811,125.346298,123.908287,122.685143,124.569443,123.255394,134.668610,152.139694,169.751266,182.065308,190.420670,189.354553,178.643814,154.941345,132.833908,119.800842,115.949608,110.627289,81.908287,64.966133,82.065308,98.974396,74.131424,34.181011,12.192579,10.057043,4.490921,6.205800,6.088443,6.411584,2.034717,0.500002,0.049587,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.355000,4612655.550000,4636,3655,109.541344,166.673553,162.301651,154.144623,140.814056,127.747940,125.359512,123.500008,121.797531,124.681824,124.359512,134.409103,151.780991,169.623962,181.524796,189.508270,188.995865,178.301651,154.152893,131.607452,120.500008,115.747948,109.863663,82.053741,64.227295,80.524818,97.541344,74.177711,33.863659,13.240515,9.987623,5.376047,6.311586,8.096709,6.799188,2.217361,0.406613,0.000000,0.066116,0.400001,0.247934,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.355000,4612655.550000,4666,3655,100.532249,166.085953,162.647934,154.614883,140.292572,128.540497,126.242981,124.507439,122.391739,124.738846,123.755379,135.482651,153.201660,170.730576,182.928925,191.127274,190.069427,179.259506,154.681000,132.747116,119.871078,116.838020,110.400002,82.416542,64.135559,80.019844,97.978523,74.771912,34.681015,12.690101,10.036382,5.675218,6.633073,5.819848,5.919021,1.714054,0.453720,0.134711,0.000000,0.000000,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,1.037190,0.000000,0.000000 -601678.355000,4612655.550000,4681,3655,117.202507,176.185944,164.012390,158.260330,142.599182,130.136383,128.260345,125.954552,124.202484,127.946297,125.747940,135.987625,154.566116,172.359497,183.665283,192.665283,191.714874,180.590912,155.921494,133.739685,121.508278,117.301666,111.954559,83.376053,64.995880,81.516548,98.276878,74.797546,34.566135,12.822332,10.177705,4.495051,7.831420,6.810757,7.482657,3.332239,0.308265,0.342150,0.051240,0.104133,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.155000,4612655.550000,4695,3655,117.404152,169.933075,165.280182,156.825623,142.850433,128.891754,125.908279,125.247116,123.057037,125.990921,124.098358,135.263641,152.660355,170.164490,182.263657,192.296707,190.338043,178.503326,155.280182,133.908264,120.057037,116.461998,111.263649,81.362831,64.660347,80.048775,97.048775,72.338028,33.528118,13.147126,10.114896,3.908274,7.090097,6.485137,5.670260,2.356204,1.004961,0.105785,0.000000,0.057851,0.100000,0.000000,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612655.550000,4715,3655,104.788452,177.490891,167.400009,157.218185,142.821503,128.986786,126.548782,125.036385,123.714058,128.557037,125.523987,135.242981,154.499176,172.573578,184.011597,194.342163,193.499191,180.697540,155.895874,134.846298,121.565308,117.185143,112.490929,84.209938,65.333900,82.507454,97.614899,74.391754,34.829773,13.606630,10.226465,4.494225,6.713237,6.009929,8.395056,2.771081,0.397522,0.364464,0.103306,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.355000,4612655.550000,4741,3655,115.081841,167.949600,165.685150,155.164490,140.073578,128.007462,125.718193,122.511581,121.147942,121.354553,122.032242,133.495056,152.462006,168.247131,179.428940,189.395889,187.759521,173.833908,151.635559,129.784317,118.594223,115.875221,110.536385,81.478531,65.891754,81.048782,97.098366,71.734734,34.519855,14.089275,10.048780,7.971915,7.478524,8.211584,7.242161,3.597529,0.223142,0.234711,0.295869,0.000000,0.137190,0.000000,0.000000,0.042149,0.000000,0.000000,0.772727,0.000000,0.000000,0.000000 -601693.755000,4612655.550000,4758,3655,122.197540,168.809097,165.825623,154.123154,137.048767,127.288452,125.147942,122.296707,120.445465,121.387611,121.387619,133.288437,151.445480,168.090088,180.313232,188.164459,187.503311,174.371078,150.933075,129.809097,118.395889,115.660347,109.809113,80.519852,65.073570,79.495064,96.263657,70.709938,33.544651,12.658694,9.982664,8.852079,6.652903,8.467780,7.525632,2.885958,1.147110,0.325621,0.302480,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,1.076033,0.000000,0.000000,0.000000 -601696.755000,4612655.550000,4773,3655,129.995056,166.061157,164.821487,153.796692,138.276047,126.408287,125.201668,121.995064,121.234734,121.482666,121.309113,134.036377,152.449585,169.003311,179.400009,189.689255,187.606613,174.441330,150.127274,130.077698,118.466133,117.044647,109.763657,82.325638,64.747131,80.127289,97.499191,71.251259,33.218201,12.604977,9.978532,9.121500,7.459517,5.459514,7.303318,3.356207,0.720663,0.042149,0.134711,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.555000,4612655.550000,4792,3655,124.125641,172.365311,166.753738,154.150436,139.100845,127.563644,125.976868,122.266129,121.117371,121.910751,121.770264,133.654556,152.175232,168.753738,180.348785,189.819855,187.762009,175.224823,151.249619,130.704147,118.026459,116.348770,109.109100,81.646301,65.505806,79.092583,96.489265,70.431419,33.968613,11.884315,9.919028,7.664476,6.395880,7.373567,7.360343,3.169429,0.657853,0.053719,0.194216,0.000000,0.000000,0.000000,0.000000,0.029752,0.000000,0.000000,1.093389,0.000000,0.000000,0.000000 -601704.155000,4612655.550000,4810,3655,105.978531,175.904144,166.755386,154.449600,140.366959,126.813240,125.424812,122.581841,121.697540,124.085968,121.771919,133.449600,152.400024,168.986801,179.168610,189.474396,187.821503,174.730591,150.515717,129.193405,118.970268,116.036385,108.763657,80.763657,63.821507,79.788452,96.077705,69.234734,32.358696,12.237207,9.887623,8.128939,7.471914,6.412408,6.873565,3.767775,0.638845,0.147108,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.745455,0.000000,0.000000 -601707.355000,4612655.550000,4826,3655,109.242996,170.738846,166.532242,154.879364,140.598343,128.276047,127.135551,123.044640,122.986786,124.457863,123.433067,134.937210,154.168610,169.102478,180.689255,191.127274,189.284302,175.705795,152.218201,130.433075,119.457863,116.548775,110.581833,80.862831,65.490936,80.267792,96.284317,71.945480,32.904152,12.085142,10.052912,8.352905,6.933896,7.958692,6.789268,1.567775,0.057852,0.152066,0.197521,0.213224,0.000000,0.000000,0.004132,0.000000,0.000000,1.228926,0.000000,0.000000,0.000000,0.000000 -601710.955000,4612655.550000,4844,3655,119.896721,171.623947,166.152893,155.706604,139.673569,126.458702,126.714897,124.301674,123.632256,124.913246,123.062004,135.491745,153.938019,169.599167,180.904938,191.871887,189.136353,175.747925,152.797516,131.169449,119.301674,116.169449,110.409119,80.805809,65.384323,79.830605,96.177711,69.995895,32.367786,12.035556,10.037210,7.534723,6.694228,6.352904,7.179351,2.580173,0.164463,0.092562,0.098347,0.000000,0.000000,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.355000,4612655.550000,4861,3655,119.213226,175.800003,169.485962,158.791748,140.452896,128.089264,128.882660,125.378525,123.642990,125.957039,124.965302,136.585129,155.114059,171.849594,184.171906,192.725632,190.808273,176.477692,153.601654,131.833084,120.709106,117.750427,111.709099,82.932251,67.196716,81.081017,96.667778,71.163658,33.246304,13.552910,10.155391,9.406627,7.366128,8.738029,8.785137,2.965296,0.614051,0.431406,0.277687,0.049587,0.000000,0.209091,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.755000,4612655.550000,4878,3655,116.931419,182.625641,169.038864,158.088455,140.898376,127.212410,127.542984,124.369431,123.906624,126.104965,124.096703,135.088440,153.212418,171.377716,182.146301,190.898376,189.427292,175.129776,152.328125,130.840500,119.427284,117.427284,110.518188,82.030594,66.328117,81.518196,95.683487,70.237206,32.402500,10.911587,10.047126,7.828939,7.190921,7.188442,8.085963,3.550421,0.169422,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.024794,0.000000,1.333058,0.000000,0.000000,0.000000,0.000000 -601722.355000,4612655.550000,4901,3655,123.758682,186.047943,171.064468,159.593399,143.221497,128.733887,128.180176,126.056206,125.262817,127.874390,125.196701,136.833069,154.981827,171.783478,183.047943,192.973557,189.419846,176.204971,152.775208,131.444641,119.923973,116.725624,112.436371,81.700851,66.155396,81.444641,98.337204,71.651260,32.965313,12.333075,10.221506,8.964478,7.408277,8.045467,7.495055,2.231411,0.337191,0.076033,0.035537,0.000000,0.000000,0.000000,0.054546,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.355000,4612655.550000,4916,3655,116.657875,186.062820,170.062820,159.889267,143.657867,128.451248,129.872742,126.203316,126.368607,128.558685,125.823151,136.723984,155.236374,172.120667,183.500839,194.269440,190.360336,175.980179,152.484314,132.558685,121.046295,117.914062,112.418198,82.343811,67.657867,82.798363,96.517357,69.145470,30.500845,11.802496,10.219853,9.018195,8.517368,7.985963,8.751252,2.765296,0.652894,0.000000,0.028099,0.166116,0.000000,0.000000,0.000000,0.098348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.755000,4612655.550000,4933,3655,118.309937,190.657043,171.789276,161.979355,141.491745,130.946289,130.243805,127.045464,126.367775,129.342987,126.367775,137.921509,155.276871,172.400848,185.301666,194.243820,193.392578,177.061996,153.409103,134.516541,120.921494,119.756203,113.136375,82.987617,68.293404,83.342995,97.995880,71.756218,32.574402,12.262827,10.285143,11.197535,7.032244,8.652081,9.004972,4.800837,0.416530,0.634712,0.033058,0.066116,0.000000,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601732.355000,4612655.550000,4951,3655,138.728958,190.340515,173.026474,162.613251,144.943832,131.662827,129.919022,127.687622,127.224808,131.365311,126.828117,138.076065,156.373581,173.497543,185.712418,195.770279,193.034729,177.439697,154.844650,134.018204,122.009933,118.861168,113.836372,84.489265,69.150429,84.695877,99.042984,71.233078,32.489277,13.875224,10.348779,10.194231,7.238029,8.775221,9.412412,2.835546,0.652895,0.123141,0.073554,0.002479,0.068595,0.000000,0.000000,0.136364,1.328099,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.155000,4612655.550000,4965,3655,147.845459,192.523148,174.457031,162.655380,144.911575,131.919846,130.341339,129.101669,128.266953,133.142990,128.002487,139.126450,157.275208,174.324799,186.870255,196.655380,192.498352,176.936371,155.192566,134.704971,122.506622,120.886795,114.027290,84.390923,68.928116,85.126457,96.985962,71.142990,32.779358,14.681836,10.366135,12.460346,7.887617,8.344642,7.161169,3.961167,0.395869,0.037190,0.068595,0.061157,0.219009,0.000000,0.099174,0.000000,1.380992,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.355000,4612655.550000,4981,3655,138.963654,195.657867,175.219849,166.285965,147.542160,132.922318,130.922318,128.616531,128.393387,133.806610,128.310745,139.062820,156.442993,174.566956,186.757034,196.831421,193.666122,176.591751,154.814896,134.500824,122.409920,119.434715,114.327278,84.137199,68.649605,84.418198,97.856209,70.947121,33.393406,13.839688,10.393408,11.332247,6.497531,9.123156,6.226459,3.767776,0.247108,0.165290,0.223141,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.555000,4612655.550000,5002,3655,147.020676,193.615707,176.392563,165.871902,146.739670,133.301666,130.541336,128.954559,128.698349,134.640503,127.789276,139.549606,157.466949,174.359497,186.623962,197.657028,193.128098,176.888428,154.880188,134.086792,122.326462,119.731422,113.954559,84.070267,68.946297,86.219025,98.640511,69.128113,32.929771,13.700017,10.359524,11.363651,6.901664,7.339681,7.117368,3.680173,0.625621,0.199174,0.070248,0.000000,0.000000,0.000000,0.000000,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.955000,4612655.550000,5029,3655,110.603317,157.330582,164.330582,152.661163,137.363632,128.148773,124.438026,123.438026,121.826454,123.256203,123.413231,135.074387,154.322311,168.702484,181.198349,190.231400,189.000000,176.314056,151.628098,130.603317,120.066124,116.123978,111.818199,82.322327,66.685966,81.776878,95.826462,71.454559,32.338860,13.876051,10.165308,7.100013,6.855384,5.106621,5.295053,3.543810,0.491736,0.175207,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.355000,4612655.550000,5051,3655,122.063652,165.613235,165.414886,154.241333,140.456207,130.365295,126.968605,124.795052,124.555382,126.042984,125.894226,137.315720,155.993393,172.481003,183.993393,192.456207,192.241333,179.026459,155.183487,134.241333,122.968605,120.373566,114.563644,85.935547,70.472755,85.381828,100.629761,74.018211,36.795059,15.285969,10.414895,7.392576,8.736379,9.158691,8.340511,5.142159,0.838845,0.132232,0.061157,0.080992,0.000000,0.000000,0.100827,0.204960,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.555000,4612655.550000,5067,3655,95.611595,158.495865,164.859497,153.942154,139.049591,128.396713,125.917374,124.528938,124.297539,124.966957,126.090927,136.049606,155.719009,171.735535,183.057846,192.826447,190.438019,177.793396,154.867767,132.876053,122.462830,118.355385,113.727287,85.479355,68.528938,84.644646,99.115715,73.206635,35.677711,14.509934,10.338862,6.473565,7.795053,8.461170,7.152080,3.428934,0.386778,0.267769,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.755000,4612655.550000,5088,3655,97.792580,154.338013,161.627274,152.776031,140.428940,129.081833,126.486786,124.503319,124.445465,124.610756,125.296707,136.949600,155.726456,172.197525,182.999176,191.387604,190.982651,177.999176,153.354553,132.544632,121.346291,119.023987,113.172745,84.784309,67.974396,85.131424,98.032242,72.552910,34.569447,14.060349,10.288448,6.379351,7.797534,7.810757,6.821501,4.038023,0.798349,0.203306,0.214877,0.000000,0.151240,0.000000,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601765.355000,4612655.550000,5116,3655,116.228119,161.525620,164.211563,154.963638,141.905777,131.409943,126.385147,124.674400,125.451263,126.302498,127.228119,139.038025,157.285950,174.038010,185.690903,194.385117,193.451233,180.723969,156.533875,134.500854,123.476051,121.120682,116.509109,87.029770,70.790100,86.195061,99.765312,75.872749,36.409939,13.876052,10.591755,6.656210,6.980178,9.620675,7.495054,2.290091,0.615704,1.025621,0.062811,0.000000,0.000000,0.000000,0.147934,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.755000,4612655.550000,5138,3655,107.978523,157.722321,163.738846,153.995041,139.821487,129.317368,126.730591,124.887611,124.581833,126.259514,125.904144,137.193390,156.267776,171.879349,183.449600,193.400024,190.722336,178.846283,155.920670,134.424805,122.664474,118.738853,114.854553,86.664482,68.962013,85.548782,100.061180,73.185150,33.672749,14.358696,10.441342,6.278523,7.540508,7.719021,8.273567,3.508273,0.283472,0.216530,0.038017,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.155000,4612655.550000,5155,3655,103.990921,159.437195,163.395874,155.445465,139.263641,130.511566,126.619011,125.544640,124.280174,126.511581,126.445457,137.181000,157.057022,171.718185,184.809097,193.966125,192.428925,180.106613,155.875214,134.139679,123.833893,119.511581,114.263649,86.908264,69.255394,85.726456,99.412399,72.776054,35.015724,14.431421,10.387622,8.040508,7.019020,8.136375,7.213237,3.121496,0.551241,0.208265,0.106612,0.000000,0.052893,0.000000,0.044628,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.955000,4612655.550000,5169,3655,102.122330,157.361984,163.932236,153.684311,138.899185,129.866135,128.147125,125.560356,126.733910,126.485970,126.841347,138.725632,156.692566,172.725632,184.378525,193.312408,192.337204,180.717361,157.262817,134.791748,122.725639,120.171921,114.800026,87.386780,69.428116,85.238022,98.667786,72.452896,33.213245,14.000016,10.436382,5.886787,7.200839,7.639682,7.509931,3.647941,0.684299,0.220661,0.042149,0.000000,0.057851,0.000000,0.008265,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.355000,4612655.550000,5186,3655,110.769432,160.942978,164.934708,155.744629,140.273560,131.587601,128.265289,125.810745,125.967773,127.042160,128.091736,138.827286,157.091736,173.595871,185.802475,194.009094,193.157852,180.538010,156.827271,135.628937,124.050415,120.843811,116.736374,87.959518,71.017365,86.347946,99.033897,73.389267,34.671921,13.442992,10.612414,6.420674,7.937203,7.863648,8.362824,3.279347,0.601654,0.028099,0.291737,0.000000,0.000000,0.226446,0.077686,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.555000,4612655.550000,5202,3655,106.660339,157.201660,163.276031,153.523972,140.292572,129.714066,126.366951,124.044640,124.515717,125.631416,126.945465,137.523972,155.656204,172.143799,185.019836,192.714050,192.242981,179.077682,155.127274,133.598358,123.226456,119.218193,114.400017,86.829773,69.052910,84.400017,97.069443,72.829773,34.366959,12.400844,10.400019,5.204968,6.785964,6.342162,6.596707,2.655378,0.674382,0.175207,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.155000,4612655.550000,5215,3655,114.083488,159.199188,165.504974,154.942993,139.736389,129.662003,128.628952,126.438866,127.083488,128.017380,128.579361,138.967804,158.017365,174.331421,185.843811,196.174393,194.397537,181.290100,156.835556,134.909943,124.438866,120.100021,115.827293,87.306625,68.306625,84.050423,98.405807,72.703316,34.323162,12.384315,10.529771,4.991746,7.612410,6.500012,8.381005,4.621497,0.697522,0.040496,0.091736,0.299174,0.000000,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.755000,4612655.550000,5233,3655,100.343826,160.600006,165.153732,158.054565,141.451248,130.963654,127.914070,125.616547,126.004974,127.980186,129.162003,139.484314,157.004974,173.938858,186.203323,193.963654,192.228119,180.062820,157.211578,134.310760,124.558701,119.930603,115.054565,88.071098,69.459518,84.773575,99.269440,72.566963,33.831425,13.776052,10.459523,5.173564,7.985964,8.181005,8.111583,3.083479,0.467770,0.169422,0.467770,0.515703,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.355000,4612655.550000,5261,3655,109.251259,165.937195,166.242981,156.375229,143.755386,132.003326,130.251266,128.672745,127.408287,129.697540,130.160355,141.185150,159.242981,175.821503,187.342163,196.788452,195.209930,183.466141,158.771912,137.044647,125.945473,122.937210,117.490929,88.581841,71.028122,87.160347,101.573570,73.606628,35.408283,14.593406,10.681011,6.659514,8.094228,7.804144,9.284312,2.989264,0.653721,0.144629,0.250414,0.000000,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.555000,4612655.550000,5287,3655,106.320679,165.114075,166.345474,158.345474,142.932251,132.519012,130.841324,129.973557,129.800003,132.328934,132.626450,143.866135,161.229782,178.510757,190.262833,199.485977,197.510773,185.940521,160.890930,139.105789,127.874390,124.436371,118.163643,91.502495,72.965302,88.923981,100.403320,74.502495,37.452915,14.885968,10.742168,6.409928,7.494228,7.790923,8.780179,3.228932,1.194217,0.404133,0.730580,0.130579,0.000000,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.155000,4612655.550000,5305,3655,122.292580,166.573578,167.499191,156.813248,144.044647,133.499176,131.953720,128.912399,129.523972,132.110748,131.044632,143.573578,161.300842,177.218201,188.681015,199.325638,196.912415,184.755386,160.962006,139.821503,128.085953,122.647934,119.854546,91.375221,73.085968,87.846291,100.127281,74.441345,35.474400,13.951258,10.895887,5.147943,7.644641,8.450426,5.439681,3.010751,0.389257,0.111571,0.285951,0.124794,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.555000,4612655.550000,5327,3655,111.328117,165.047119,164.873566,157.460342,142.898361,132.890106,130.096710,129.898361,128.890106,131.402496,131.617371,141.774384,160.410751,176.228943,189.055374,196.906616,196.956207,184.576050,159.724808,138.171082,127.691750,123.625641,118.881836,90.749603,73.005814,87.600853,101.410759,75.038872,34.923161,14.503325,10.807457,5.835550,7.716543,6.832244,8.007450,3.418190,0.533886,0.407439,0.159505,0.130579,0.004132,0.000000,0.006612,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.755000,4612655.550000,5343,3655,115.284317,164.978531,167.986801,158.705811,143.614899,132.854568,130.110764,128.614899,128.069443,129.879364,131.085968,141.722336,160.284317,176.623154,187.523987,196.738861,195.705811,185.573578,159.904144,137.606628,126.441345,124.152084,118.672745,89.193405,72.945473,87.937210,100.061180,74.490929,34.887623,13.630597,10.788448,4.685960,7.541337,6.938856,7.915716,2.695876,1.035539,0.150414,0.053719,0.000000,0.000000,0.000000,0.034712,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.755000,4612655.550000,5368,3655,140.978531,167.523972,167.714050,160.639679,145.441330,134.978531,131.457870,129.300842,129.838043,131.300842,132.656219,143.457870,161.011566,176.681000,189.234711,198.738846,197.152069,185.325623,160.912399,140.681015,126.499191,124.441345,119.127289,90.904152,73.986794,89.102501,100.433075,75.937210,34.970272,14.738861,10.829770,5.236374,8.203320,6.042985,8.386792,3.024801,0.197521,0.082645,0.200001,0.054546,0.080992,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.555000,4612655.550000,5392,3655,129.547134,163.216537,167.200012,159.373566,146.001663,133.571915,131.580185,131.034729,130.084320,133.109116,132.704147,144.009933,161.390091,178.282654,190.629761,199.398361,198.365295,187.398361,161.332245,139.472733,128.588440,124.274399,118.927292,91.191750,74.026466,87.530594,101.224808,75.844650,35.646301,15.764481,10.811589,6.395879,7.790095,9.092576,8.371088,3.574387,0.742150,0.338017,0.000000,0.042149,0.053719,0.108265,0.000000,0.000000,0.947934,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.155000,4612655.550000,5450,3655,125.199188,168.802490,172.488449,162.199188,147.695053,134.744644,131.529770,131.414062,131.207458,131.926468,133.901672,143.554565,161.480179,178.009109,191.091736,198.546280,198.174377,187.083466,163.199188,139.967789,127.860344,124.182655,121.100014,92.174393,76.232254,89.075218,101.843811,76.488449,35.562832,15.195887,11.009109,4.990093,7.369436,6.862823,7.735549,2.803312,0.883473,0.140496,0.059504,0.266943,0.000000,0.000000,0.014050,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.155000,4612655.550000,5465,3655,120.357864,172.729752,176.085129,165.547943,149.498352,136.209091,131.870270,131.473572,130.994232,135.671906,133.845474,144.118195,162.961166,179.903305,192.647110,200.605789,199.440506,187.539673,164.043808,141.886780,129.886795,125.713234,121.027290,91.390923,73.961174,88.936378,100.969437,77.027290,36.713245,16.124813,11.002499,5.816539,8.383485,9.502495,10.081833,5.542984,1.711573,1.132233,1.512398,1.055373,0.532232,0.276860,0.166116,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.755000,4612655.550000,5483,3655,124.758690,174.766953,171.023148,161.114059,148.213226,135.328934,133.320679,131.469437,130.014893,133.072739,134.213242,143.361984,160.874390,176.932236,190.907440,200.428101,198.122314,186.461166,162.395050,141.188431,129.874390,124.849602,120.527290,91.295883,73.849609,89.791748,101.287621,77.064484,36.105808,14.710763,10.957045,5.083481,7.248771,6.624804,8.008278,1.847115,0.230579,0.000000,0.131405,0.005785,0.004959,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601847.955000,4612655.550000,5529,3655,117.640503,177.711578,169.042160,160.521500,148.257034,137.389267,135.554565,132.513245,130.744644,132.810760,131.430603,142.546295,158.645462,175.785965,187.909927,196.422333,195.058685,183.695053,160.546295,138.480179,127.009102,124.058693,118.100014,90.306625,72.397537,87.447121,101.612411,73.802490,34.959522,14.010761,10.736382,5.802490,6.936376,6.447120,6.924804,3.774387,0.568596,0.339670,0.147108,0.011571,0.079339,0.120661,0.009091,0.000000,0.000000,0.000000,0.718182,0.000000,0.000000,0.000000 -601853.555000,4612655.550000,5557,3655,112.426468,173.723984,170.269440,159.500839,143.186813,131.831421,130.591751,127.690926,127.525627,127.583473,127.922318,140.054581,158.087616,174.162003,183.881012,193.261169,192.236374,179.228119,155.352081,134.310760,123.550415,121.244637,116.236374,87.897537,71.492577,84.790092,98.649605,74.038033,34.219852,13.819026,10.566961,7.484311,8.494228,8.762822,8.619849,3.957034,0.771076,0.168596,0.191736,0.000000,0.236364,0.000000,0.033885,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.555000,4612655.550000,5572,3655,115.191742,172.819855,172.662842,159.034729,144.695892,134.076050,131.530594,128.662827,127.811577,128.390106,129.067780,140.431427,158.927292,173.737213,185.935562,193.687622,193.365311,180.414902,157.009949,135.563660,124.464470,122.753731,116.109100,87.538864,71.894234,85.762001,98.795059,73.365311,33.877705,15.078530,10.555391,9.058691,7.321500,8.423980,9.364478,3.097528,0.396695,0.359505,0.285125,0.047934,0.051240,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.355000,4612655.550000,5591,3655,126.524803,179.913254,172.169434,158.863647,142.896713,130.805786,129.409103,126.623978,126.119843,127.458687,127.376038,138.698364,156.376053,172.177719,183.260361,191.400864,190.706650,177.962845,155.119858,134.847122,123.210754,120.780998,113.136375,86.623978,71.574394,83.797531,97.607445,70.367783,33.648781,13.955391,10.285143,8.663649,7.035550,7.760343,6.519847,4.233893,0.434712,0.457853,0.247934,0.049587,0.148760,0.157025,0.000000,0.528926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.555000,4612655.550000,5607,3655,119.987610,174.847107,170.871902,159.500015,144.326447,131.400833,130.921494,128.549591,126.673561,128.111572,128.210754,139.061996,157.805801,172.500000,184.276855,193.458679,192.367767,179.061981,155.202499,135.557861,124.326454,121.119843,114.772736,87.359512,71.764481,85.500008,97.954552,73.293404,34.838860,14.362828,10.433904,9.358691,7.720676,9.172743,8.785136,3.718190,0.700828,0.542150,0.098347,0.134711,0.097521,0.000000,0.000000,0.000000,1.285951,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.555000,4612655.550000,5637,3655,122.899178,178.768616,170.429764,161.330597,145.305786,132.909103,132.123978,129.082657,128.231415,129.553741,129.256210,140.652908,159.008286,174.694229,185.214890,194.388443,192.727280,179.090927,155.454559,135.000015,123.983490,121.975220,115.000015,88.206627,71.595055,85.198364,99.090927,73.884315,34.512417,15.523158,10.454565,10.104146,9.486790,9.145468,10.234725,4.850423,1.027275,0.642150,0.321488,0.048760,0.086777,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601872.555000,4612655.550000,5652,3655,110.378517,177.652878,172.338821,161.214890,145.123978,134.016541,134.107452,131.561996,129.801666,131.776871,130.297531,142.090927,159.404953,176.603287,187.297501,196.545441,194.619812,181.132217,157.917358,137.016541,125.479347,122.553726,116.727280,87.685966,71.809937,86.115715,99.471085,71.801666,33.851261,14.525638,10.611589,9.823154,8.721502,8.527287,9.099187,3.450420,0.613225,0.414051,0.066116,0.146281,0.000000,0.000000,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.755000,4612655.550000,5668,3655,126.262825,180.020691,174.483505,161.731415,145.690094,131.466949,133.028931,129.466949,128.433899,130.756210,127.400833,140.747955,158.731415,174.896729,185.541351,195.070267,193.169434,179.252106,155.838852,135.863647,124.855377,121.847115,115.590919,86.805809,71.739693,86.268608,98.053734,72.078537,33.814068,12.946300,10.508284,9.091749,7.818194,7.485136,8.211583,3.147114,0.681821,0.369423,0.543803,0.000000,0.066116,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.555000,4612655.550000,5687,3655,126.797546,183.120651,171.476028,161.285965,145.376877,132.839691,131.360352,130.128952,128.757050,131.542175,129.269440,140.484314,158.393402,174.128922,186.616531,195.624786,192.880981,178.839661,156.566956,135.054565,124.343826,121.162003,115.781837,87.575226,70.624817,86.004982,97.418205,70.509109,31.228119,12.819854,10.525640,8.843817,7.174393,8.526460,9.404146,3.490917,0.819837,0.104959,0.229752,0.000000,0.000000,0.000000,0.000000,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.955000,4612655.550000,5719,3655,127.109108,185.880173,169.830582,162.772751,146.078522,132.855392,132.144638,130.078522,129.888443,133.119858,129.351257,140.739685,157.152908,174.797516,186.516525,196.483475,192.690079,179.070251,155.847122,135.731415,124.880180,122.037209,115.681831,87.045471,71.987617,85.938034,98.070267,71.466957,33.987625,13.571094,10.516548,9.129766,8.104971,7.031417,8.942163,3.599181,0.696696,0.247935,0.213224,0.107438,0.000000,0.000000,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.155000,4612655.550000,5740,3655,126.448776,188.481827,173.407440,162.341339,145.688446,131.440506,131.275223,129.498367,127.539680,132.448776,128.837204,139.200851,156.481842,173.415710,185.167770,194.531418,193.638855,176.969421,154.647125,134.514893,123.415718,120.242165,114.209106,85.820686,70.258698,84.994240,96.423988,69.696716,32.647125,13.110763,10.382664,11.227288,6.662822,7.736377,9.028940,3.008272,0.747109,0.078513,0.166943,0.000000,0.000000,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.755000,4612655.550000,5773,3655,141.672729,194.726456,175.988434,168.682648,149.608276,134.467789,135.057037,132.087616,131.081833,136.908264,131.922333,143.073563,159.280167,177.073563,189.536362,198.205795,195.610748,179.585953,157.528107,136.941330,125.643822,122.346298,116.445473,87.577705,72.379356,87.428947,97.164482,68.982666,32.709938,14.376877,10.585970,12.035554,6.903317,8.446295,7.754558,4.785133,0.942152,0.664465,0.760332,0.649588,0.670249,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.555000,4612655.550000,5817,3655,124.353729,186.684311,176.552078,165.684311,147.957031,136.395065,134.064468,132.816528,132.824799,135.882660,133.543808,144.436371,161.527283,177.428101,189.502487,199.047943,196.841324,181.783478,158.700836,137.857864,125.841331,123.171906,118.163643,89.378525,73.758698,89.576874,100.552071,71.461182,35.849606,14.252910,10.742167,12.336379,8.435551,9.392577,8.751255,2.890917,1.390086,0.319836,0.377687,0.411571,0.278513,0.000000,0.000000,0.000000,0.000000,0.000000,2.200000,0.000000,0.000000,0.000000 -601919.555000,4612655.550000,5887,3655,106.775223,164.367767,168.946274,155.599167,141.731415,131.243820,129.731415,126.855385,127.830597,127.747948,128.607452,140.086792,158.219009,173.623978,185.508286,194.433899,193.351257,180.508286,157.359497,135.880188,125.276878,121.781006,115.863655,88.409103,71.747948,85.995880,99.458694,72.334724,35.252087,13.685142,10.533077,6.488442,7.595881,6.475219,8.657866,3.485130,0.785125,0.057852,0.170249,0.046281,0.000000,0.000000,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,1.193388,0.000000 -601941.955000,4612655.550000,5999,3655,107.081833,158.617386,165.799194,154.939697,142.146301,130.939682,129.328110,126.840515,126.493401,127.939682,128.286789,140.419037,157.427292,172.989273,185.179352,194.823959,195.319824,182.890091,158.171097,136.567795,125.559525,122.014069,115.609100,88.154556,71.666962,86.336372,98.724800,71.295059,33.691757,12.755389,10.509937,5.262820,6.095055,5.442986,6.507449,2.373560,0.174381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.955000,4612655.550000,6169,3655,102.390106,168.828110,170.456207,160.373566,147.910751,137.720673,133.332260,133.042999,131.770264,134.489273,135.555374,146.753723,163.885956,179.943817,192.489273,200.638031,200.059509,189.472733,165.241333,142.472733,131.125641,126.497543,121.290932,93.323982,77.571922,91.489273,105.373581,78.357040,38.976883,15.442993,11.026465,5.114061,9.615720,9.745470,8.832246,3.044635,1.041324,0.183471,0.054546,0.129752,0.000000,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602000.355000,4612655.550000,6291,3655,109.685966,174.429764,172.338837,163.404968,149.057861,138.132248,135.396713,134.512405,133.404968,136.231415,136.487625,147.462830,163.305801,180.859497,193.041321,202.768600,201.950409,190.884293,166.743820,145.347122,132.933899,128.776871,123.545471,94.173569,77.396713,92.371918,105.545471,79.214890,36.785145,15.161174,11.231424,5.655382,7.423155,7.370262,8.367782,3.757859,0.438018,0.246282,0.000000,0.064463,0.098348,0.000000,0.024794,0.336364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.355000,4612655.550000,6341,3655,125.999184,182.108276,174.909927,167.504974,150.951248,136.819000,135.794205,133.752899,132.083481,136.504959,135.529755,146.414062,163.554565,180.785965,194.033890,203.174393,203.182663,191.124802,167.843811,145.314896,133.281830,128.182648,123.645462,94.306625,77.645477,93.323151,104.331421,79.290100,37.050434,15.344646,11.240515,5.373564,7.681006,8.600015,8.735551,3.770255,0.615704,0.192563,0.361158,0.053719,0.008265,0.000000,0.014050,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.555000,4612655.550000,6367,3655,107.433891,172.253738,174.724823,160.939697,143.204163,132.460342,131.865311,128.576050,127.195885,128.237213,128.468613,140.923172,159.518188,176.394241,188.394226,199.104965,198.088440,185.658691,161.997528,140.452087,128.303329,125.096710,120.972748,92.385963,76.518188,90.782654,105.328117,75.402489,38.402496,14.268613,10.997540,8.838856,8.188443,8.623156,9.535551,6.586786,1.749590,0.966117,0.729753,0.475207,0.574381,0.309091,0.649587,0.072728,0.000000,0.000000,1.233884,0.000000,0.000000,0.000000 -602024.555000,4612655.550000,6412,3655,121.613251,175.803329,174.745483,161.662842,145.274384,132.332245,132.976883,128.390106,128.456223,129.274399,130.365311,142.224808,160.654572,176.952087,189.497528,198.910751,198.687607,183.952087,159.919037,137.811584,127.150436,123.679367,119.290932,89.282661,73.919037,89.224808,102.505806,73.919037,35.604977,14.005803,10.844646,10.166956,8.161997,9.244641,10.452909,3.209097,1.480168,1.138017,0.319009,0.176860,0.635538,0.000000,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.755000,4612655.550000,6433,3655,115.487625,185.818176,178.504135,164.198364,146.363647,134.628113,134.214890,130.165298,129.429764,131.867783,131.231415,143.578522,162.694229,179.239670,190.553726,202.305786,199.983475,185.776855,162.628113,140.008286,129.826462,126.933899,121.000015,91.363655,76.768616,91.842995,105.487617,74.305809,37.000023,16.238033,11.000019,12.042165,8.352906,11.278527,9.809933,4.215713,1.678515,0.770250,0.255373,0.000000,0.052893,0.000000,0.300001,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602033.555000,4612655.550000,6457,3655,119.776878,179.214890,178.892578,166.041336,147.115707,135.090912,136.000015,132.380188,132.090912,132.363647,133.082657,145.000000,163.553741,180.297531,191.181824,202.454544,200.206604,187.652908,161.966965,140.355392,129.132248,125.297539,120.909103,91.694229,75.702492,90.876053,104.107452,76.413239,39.198368,15.806630,10.991754,10.031420,8.191752,8.129767,9.052081,5.039678,0.883473,0.914878,0.208265,0.074380,0.052893,0.000000,0.357852,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.955000,4612655.550000,6489,3655,95.854568,182.178528,173.107452,158.970261,144.342163,132.512405,131.454559,128.661163,128.396698,130.446289,127.661163,141.363647,159.603317,176.603317,188.760345,200.057861,198.595062,184.702499,160.256210,140.297531,128.685959,125.553726,121.272736,92.214882,78.256203,91.371910,104.917366,75.776871,37.173573,13.719027,11.024814,11.328117,7.593403,9.521502,9.593403,4.653728,1.618184,0.726448,0.476034,0.000000,0.171075,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.755000,4612655.550000,6503,3655,103.559525,182.494217,174.155380,163.089264,143.525635,131.542175,131.833069,129.485962,126.841339,129.824814,129.105804,140.915710,159.213226,175.915710,188.064468,200.411575,198.485962,185.023148,160.527283,137.676041,128.692581,124.857864,120.236382,91.062820,76.492584,91.112411,103.236374,74.634727,37.881012,13.964481,10.930597,13.000016,7.719020,9.256213,9.128112,6.628109,2.006615,1.145456,1.045456,0.766116,0.146282,0.082645,0.214877,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.355000,4612655.550000,6526,3655,131.855392,185.623962,179.012390,167.252106,147.599213,135.235550,134.169434,131.855377,130.359512,133.549591,131.756210,143.557877,160.863663,177.971069,189.938034,201.929764,200.342987,185.334732,161.995895,140.384323,128.020676,125.268600,120.409096,91.500015,74.962837,90.508278,102.433899,74.590935,37.169437,14.897537,10.946300,9.761997,8.544642,9.475220,10.793404,3.296701,0.843804,0.513225,0.112397,0.117356,0.000000,0.196695,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602052.755000,4612655.550000,6553,3655,111.061996,167.657043,170.177704,161.690094,145.392578,134.285141,131.971085,128.351257,127.037209,130.268616,128.921494,138.400848,155.276871,171.202499,183.285141,193.475220,192.202499,179.690094,156.028946,135.896713,124.632248,121.607452,115.500015,90.028938,74.516556,88.896713,101.706627,74.367783,35.235558,13.434729,10.500019,6.157036,7.897537,6.129762,6.195879,1.908268,0.177687,0.152067,0.057025,0.290083,0.133885,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.955000,4612655.550000,6579,3655,105.375221,164.656219,170.433075,160.499191,144.515717,133.490906,132.052902,128.920670,126.763641,129.705795,128.127274,139.300842,154.838043,171.226471,183.333908,193.937210,192.028122,179.813248,155.523987,135.176865,125.102486,120.978516,115.763641,89.722336,75.152084,89.077705,100.945465,74.664482,34.320679,13.434728,10.523986,6.544638,8.479354,8.394228,6.762821,2.297524,0.470249,0.037191,0.404133,0.276034,0.000000,0.140496,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.955000,4612655.550000,6599,3655,104.272743,167.041336,169.528931,162.528931,145.933899,133.429764,130.363647,128.074387,127.479347,129.347122,127.752075,139.099213,154.520676,172.264481,182.719025,193.247955,191.818192,178.818192,156.082657,134.553726,124.595047,120.570259,115.909103,88.388443,74.281006,89.727287,100.132248,74.694229,35.165306,13.928117,10.537210,6.480177,8.019851,8.343814,7.244640,2.697524,1.336366,0.390084,0.352067,0.191736,0.204132,0.070248,0.241322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602067.955000,4612655.550000,6629,3655,105.979355,165.962830,168.623978,162.136383,145.243820,133.301666,130.566116,128.359497,126.764465,129.690079,127.822311,138.359528,154.888428,170.607452,182.549606,192.020676,192.070267,178.904968,156.012390,134.698349,123.648758,120.665291,114.954544,88.797523,74.152908,89.334709,100.227280,74.607452,37.037209,14.401670,10.450433,5.075216,7.961173,7.105794,8.056211,1.838020,0.675208,0.257026,0.147934,0.000000,0.078513,0.285951,0.639670,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602076.755000,4612655.550000,6673,3655,108.199188,167.810760,171.025635,159.009109,145.298355,133.678528,130.356216,128.736374,126.785965,128.314896,128.496704,138.711578,154.827286,170.248779,181.976044,191.356216,190.347946,179.356216,155.223984,135.190918,123.108276,120.819023,115.827286,88.323151,74.860344,89.248772,101.538033,75.347946,37.529774,16.784315,10.529771,8.932245,8.419849,7.939681,8.453732,2.706616,1.332234,0.163637,0.142976,0.109918,0.000000,0.097521,0.549587,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.955000,4612655.550000,6724,3655,97.033073,155.586792,165.330597,156.380188,142.008286,131.429764,127.206627,125.520676,122.752083,123.876053,124.578529,135.495880,151.760345,166.859528,178.289276,188.404968,186.553741,174.834732,152.520676,132.090927,121.049606,117.272743,111.272743,86.355392,71.214890,87.421501,100.181831,75.198364,36.008286,14.582664,10.115722,5.758688,8.657866,6.998360,6.634723,2.405790,1.029754,0.225620,0.603308,0.000000,0.053719,0.069422,0.000000,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602092.355000,4612655.550000,6751,3655,88.223160,148.710754,162.958694,155.214890,139.066132,128.041336,125.413231,121.504143,121.471085,121.975212,121.008270,133.024796,149.247955,163.991745,175.735550,184.033081,183.016541,171.148773,148.966965,127.661163,117.826454,114.545464,108.000008,82.281006,66.760353,84.388443,99.388435,73.628113,34.322334,12.314066,9.818200,5.522324,5.224808,5.245464,5.887616,1.777690,0.436365,0.028926,0.097521,0.033058,0.000000,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.155000,4612655.550000,6765,3655,86.185143,160.094238,162.796707,153.540512,141.375229,129.094223,125.887611,124.003319,122.639679,122.623154,122.557037,133.581833,150.342163,165.466141,177.267792,187.218201,184.532257,173.028122,151.094238,130.697525,119.424805,115.771912,111.309105,84.738861,69.920677,85.937210,99.218193,73.953735,35.600845,13.662827,10.119028,4.953729,6.942989,7.260343,7.754558,3.331412,0.243803,0.265290,0.268596,0.000000,0.052893,0.000000,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.955000,4612655.550000,6784,3655,89.019028,155.399200,166.101654,154.605789,140.423981,130.324799,126.630585,123.614059,121.283478,122.333061,123.118187,133.787613,151.093414,165.878525,176.184311,186.845459,184.349594,173.655380,149.795883,129.374390,119.944633,115.184303,110.300003,84.126472,69.614067,85.572746,99.597527,74.589272,34.060349,14.749605,10.027291,4.879349,8.254560,6.253729,7.705797,3.270254,0.981821,0.289257,0.190083,0.023967,0.043802,0.000000,0.698348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.555000,4612655.550000,6807,3655,90.849609,149.105804,165.105804,152.064484,137.849609,127.543816,125.419846,122.081009,120.204971,120.585136,120.642990,130.494232,147.882660,162.651260,173.750443,183.403336,183.047958,169.213242,147.742172,127.510757,116.667786,113.047951,108.163651,82.287628,66.477707,83.130600,97.808289,72.411591,33.477703,12.907455,9.833077,5.171911,7.074395,5.958690,6.273565,2.452898,0.416531,0.203306,0.054546,0.095042,0.000000,0.000000,0.148760,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.755000,4612655.550000,6823,3655,92.069435,150.242981,162.094238,151.391739,137.647934,128.366943,125.135551,121.788445,119.614891,120.416542,121.259514,131.333893,148.044632,164.127289,174.970261,183.292587,181.738861,170.606628,148.557022,128.490906,117.300835,113.276047,108.127281,82.234718,66.821503,84.507446,97.995056,71.532242,34.408283,13.468613,9.829771,4.901663,6.431417,7.468608,7.490095,2.841328,0.339671,0.224794,0.047934,0.000000,0.103306,0.062810,0.256198,0.041322,0.000000,0.000000,0.000000,0.000000,1.828926,0.000000 -602111.555000,4612655.550000,6847,3655,84.647125,154.969421,163.762817,155.870255,140.407455,130.713226,126.837196,123.432236,122.564468,122.465294,121.762817,131.622314,149.895050,164.118195,175.448761,184.465302,183.043808,170.275208,149.002487,128.390915,118.490089,115.382652,108.390915,83.399178,68.019020,85.531410,99.671906,75.225624,36.539688,15.752085,9.853738,6.215714,7.508281,7.197531,6.029764,3.753726,1.399176,0.720662,0.257852,0.258678,0.000000,0.190910,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.355000,4612655.550000,6896,3655,89.223160,155.239685,164.487625,153.586792,138.851273,127.768608,123.859520,120.578529,119.702492,119.842995,120.000015,129.950424,146.834747,163.429764,173.809952,184.049622,182.925659,169.495880,148.644653,128.264481,116.917374,113.768608,108.727287,81.884315,67.694229,84.256218,99.322327,74.719025,33.909111,13.339688,9.884317,4.850423,7.579354,8.521502,8.047121,3.260337,0.859506,0.484298,0.402480,0.017356,0.221488,0.000000,0.019008,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.155000,4612655.550000,6910,3655,82.280182,149.974396,166.594238,155.346298,140.627289,130.858688,126.982658,124.247116,122.635551,121.585960,121.759514,131.982651,150.255386,164.990921,176.139694,185.296707,184.503326,172.709930,150.172745,130.420670,119.519844,116.181000,109.172737,83.891747,68.313240,84.949600,99.346291,74.908287,35.776051,14.796714,9.924812,5.271911,7.901669,8.851254,9.328115,3.411577,1.032232,0.433059,0.000000,0.039670,0.000000,0.297521,0.262810,0.350414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.155000,4612655.550000,6930,3655,79.850433,145.387619,161.941330,152.486801,139.709930,128.205811,125.156219,120.346298,118.635559,118.916550,118.825638,130.230591,146.900024,161.842163,171.957855,181.883469,181.354553,168.833908,147.313248,125.891754,116.792580,112.619026,106.172745,80.404152,66.635551,83.296715,96.966133,72.718201,34.262005,13.223985,9.652084,4.380174,6.726462,7.254559,6.723153,4.011578,0.683472,0.460332,0.000000,0.061157,0.000000,0.147934,0.273554,0.116529,0.000000,0.000000,0.000000,1.609918,0.000000,0.000000 -602131.155000,4612655.550000,6945,3655,95.787628,149.498352,169.704971,154.688431,139.109940,127.820679,126.911583,122.333084,120.911591,121.019028,120.010765,131.242157,147.663635,163.680176,173.878525,184.085129,182.977692,171.192566,148.523148,129.027283,118.581017,114.688454,107.027298,81.457047,66.366135,83.985970,98.903328,73.060356,35.275227,13.333076,9.729772,5.811582,6.995056,7.989270,5.177697,2.840501,0.667770,0.280992,0.170249,0.347935,0.000000,0.062810,0.217356,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602134.355000,4612655.550000,6961,3655,88.985130,152.175217,162.514053,153.993393,138.381821,129.481003,125.481003,120.646294,119.968605,119.662819,119.844635,130.431412,147.472733,162.530594,173.885956,183.522324,181.728943,169.555374,148.282654,128.200012,117.596703,112.034721,106.563644,81.894226,67.638031,85.092575,98.976868,72.414886,34.993412,13.001670,9.687622,6.651250,7.526462,6.638028,6.673566,4.778521,0.430580,0.094215,0.090909,0.116530,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.155000,4612655.550000,6985,3655,82.466957,151.781006,164.227295,153.177704,139.119858,128.524796,126.714874,122.814049,120.466942,121.351242,121.442146,131.475204,148.599182,164.235550,175.781006,185.078522,183.863647,171.243820,151.152908,129.359497,119.086777,114.549583,109.227272,83.400841,68.516548,85.888443,98.334724,73.756218,34.731426,13.613241,9.929771,7.814062,7.651255,7.755386,8.121501,2.811575,0.350414,0.251240,0.137191,0.000000,0.133885,0.111571,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602146.955000,4612655.550000,7024,3655,93.553734,150.760345,164.743820,153.504150,139.305801,127.768600,126.487610,122.198357,121.190094,120.041328,120.942154,132.074387,149.115723,163.528946,175.826477,185.024826,184.173584,171.719040,149.760345,128.471085,118.330589,115.371910,108.818192,82.066132,67.809937,84.512413,97.652908,74.685966,36.942165,14.413241,9.892581,5.790920,6.971917,7.970261,7.715717,4.055379,0.440497,0.185124,0.086777,0.238844,0.000000,0.000000,0.376860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.955000,4612655.550000,7059,3655,96.198364,154.024811,160.636383,151.628113,136.264481,126.512413,124.231415,120.049591,118.611580,118.338852,119.371910,128.462830,146.330597,161.024811,173.454544,182.198349,181.198349,170.247955,146.322327,127.280998,116.586784,111.776871,105.727280,81.330597,66.289276,81.553726,96.710754,69.008278,31.049608,10.797537,9.611589,6.030589,5.066129,5.484308,6.493400,3.169429,0.412398,0.371075,0.309918,0.023967,0.038017,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602160.355000,4612655.550000,7091,3655,97.919029,146.869431,160.976883,153.778519,139.059509,128.671097,124.679359,122.117371,120.679359,120.224808,120.728943,131.861176,148.282654,163.993393,174.067780,183.869431,183.795044,170.737198,148.084305,128.745468,118.357040,113.795052,108.381828,82.200020,67.423157,83.076050,94.819855,71.373573,31.993406,13.376878,9.852911,6.137202,7.618196,8.975220,6.748773,2.892568,0.649588,0.184298,0.100827,0.159505,0.000000,0.068595,0.157851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.755000,4612655.550000,7123,3655,95.850426,154.809113,163.784317,155.693405,140.693405,128.106628,124.594223,121.933067,120.412407,120.048775,121.123154,131.999191,147.387619,163.437210,175.189270,184.833908,183.503326,170.817368,149.230591,128.106628,117.767776,114.073563,108.536377,82.676872,68.205803,82.776047,96.536377,70.048775,33.990929,12.823157,9.866961,6.678523,6.856214,8.507451,8.133897,2.733889,0.519010,0.368596,0.000000,0.102480,0.000000,0.064463,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.355000,4612655.550000,7136,3655,101.396713,153.314072,168.041336,159.148773,141.148773,130.619858,128.429764,124.628113,123.545471,123.082664,122.297539,132.768616,149.851257,165.537201,177.099182,187.256210,185.165298,172.760345,150.297531,130.223160,120.181831,116.942162,109.727287,84.743820,70.338860,84.909103,96.842995,71.462830,33.495888,14.667787,9.975225,6.166955,8.279355,7.479351,7.380179,2.995874,0.966118,0.266116,0.452894,0.000000,0.004959,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.155000,4612655.550000,7150,3655,98.538864,161.323959,170.158676,155.224792,142.323975,129.613235,127.481010,123.819855,123.679359,123.249603,122.910759,134.414886,151.514038,165.761993,177.175201,188.001648,186.753708,174.282639,151.274368,130.414886,120.514069,116.481010,111.109108,84.613243,70.456215,85.803322,97.629768,71.704147,34.109112,13.041340,10.100845,6.604971,8.378528,9.347947,7.181831,3.657032,0.528101,0.181819,0.039670,0.162810,0.000000,0.000000,0.646282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.955000,4612655.550000,7164,3655,104.673576,159.417358,166.260330,154.376038,141.260330,130.219040,127.508286,125.219032,122.450439,122.574402,123.210770,133.466965,149.632233,166.260330,177.061981,186.607437,185.078506,172.376038,150.243805,129.466965,119.252090,116.095062,109.500023,83.706635,69.731430,84.929779,95.458702,71.177711,32.210766,12.801670,9.954565,6.915714,7.159519,7.081830,7.765301,2.223145,0.809093,0.431407,0.052066,0.000000,0.026446,0.000000,0.123967,0.000000,0.000000,0.000000,1.173554,0.000000,0.000000,0.000000 -602178.955000,4612655.550000,7184,3655,100.269440,153.876053,166.603317,155.776871,139.537201,130.694229,128.785141,124.280998,123.090927,123.446289,122.264473,133.710754,149.528946,166.396713,177.272751,187.107452,184.884308,172.743820,150.842987,128.702484,119.826454,115.553726,109.454559,84.429764,70.471085,84.884308,95.801666,69.239677,31.900848,13.593404,9.950432,7.835550,7.183484,7.212409,7.677700,4.189263,0.739671,0.090909,0.304959,0.020661,0.315703,0.000000,0.573554,0.335537,0.000000,0.000000,0.000000,0.000000,0.000000,3.103306 -602185.555000,4612655.550000,7217,3655,91.651260,159.114059,168.874390,159.436371,143.271088,131.948761,130.428101,126.725624,124.849594,125.469429,125.948769,135.957031,152.180176,168.014877,178.824814,189.890930,188.039688,175.700851,152.014877,132.163635,122.833061,118.899178,113.800003,87.477699,72.841331,85.874397,97.857864,72.039673,34.312416,15.063654,10.345474,7.879350,8.650428,8.515714,8.818195,3.456204,0.378513,0.160331,0.337191,0.289257,0.000000,0.066116,0.739670,0.301653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602192.755000,4612655.550000,7253,3655,107.509109,163.426453,168.872742,154.864471,141.980179,129.062820,127.690926,123.046295,122.583481,123.897537,122.674393,133.228119,150.038025,164.996704,175.806625,186.509109,185.781830,172.252899,149.426453,129.261169,119.277702,115.740509,111.054558,84.757057,70.988457,83.996712,94.021515,68.814896,31.319027,13.604976,10.095887,7.881004,7.551254,7.460342,7.747121,2.579343,0.393390,0.000000,0.345455,0.162810,0.103306,0.066116,0.777687,0.258678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.555000,4612655.550000,7272,3655,88.520676,160.909088,171.900833,160.785126,145.867767,132.099182,130.636368,127.090927,127.603317,127.479355,127.033073,137.347107,152.983490,168.975204,180.404953,191.305786,189.727280,176.512390,152.925629,134.000015,122.479347,120.107445,113.363647,88.578529,71.818207,84.429771,97.074394,70.272743,34.578537,14.359521,10.305804,10.640510,8.700842,7.415715,6.776046,3.153724,1.314878,0.239670,0.255373,0.060331,0.000000,0.000000,0.000000,1.300001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602200.955000,4612655.550000,7294,3655,104.714890,166.921494,168.888428,159.194214,144.566132,131.781006,129.962830,125.243820,124.814064,126.243820,125.673569,136.144638,151.913223,167.673553,179.318176,189.334717,188.053726,174.185944,151.458679,130.880188,121.012413,119.516548,112.409103,87.500015,72.070267,85.590927,95.640511,68.607452,31.654568,13.514893,10.219027,8.803317,7.786789,8.393401,6.713234,3.352898,0.277687,0.466117,0.244629,0.142976,0.006612,0.068595,0.090909,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602207.955000,4612655.550000,7329,3655,114.461174,172.676041,166.147110,159.064468,143.155380,129.676041,129.676041,126.155388,124.866127,128.271088,126.328941,137.502487,153.666946,170.055374,182.154541,193.212387,192.881805,178.832230,156.097534,135.841339,125.452904,123.287621,117.890923,90.254562,75.395058,88.857864,97.700844,70.129768,32.742172,14.128942,10.717374,8.784308,7.954560,8.142162,6.520672,3.986784,0.424795,0.388431,0.146281,0.263637,0.106612,0.000000,0.572728,0.561158,2.423141,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.755000,4612655.550000,7358,3655,114.675232,171.369415,166.766129,160.377701,143.807449,130.857040,130.518204,126.840523,126.394241,128.873581,127.716545,139.129776,155.195892,172.708267,184.956192,196.790909,195.749573,181.179352,159.898361,140.088440,130.220688,125.832260,120.609116,91.584305,77.113235,92.766136,102.460350,75.088440,36.369442,14.270266,10.964482,10.991748,7.285138,8.828938,9.072740,3.795876,0.713225,0.259505,0.000000,0.319835,0.087604,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.555000,4612655.550000,7382,3655,104.966957,177.842972,169.297516,159.611572,143.256195,131.181839,128.446304,127.619850,125.140511,128.388443,125.983490,137.818176,154.264465,171.685944,184.743805,197.049591,195.487610,181.330582,161.033051,140.000000,130.231415,126.140511,120.272743,92.099190,76.429771,93.661171,105.892578,75.809937,36.851265,14.205803,10.933904,8.585136,9.590099,9.646297,8.708276,3.724803,0.532234,0.200001,0.000000,0.052066,0.000000,0.373554,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.755000,4612655.550000,7398,3655,114.712418,165.563644,168.704147,157.753723,141.406616,129.200012,129.588440,125.654564,125.547127,128.919022,126.406631,137.076050,153.894226,170.720673,184.315720,196.745468,195.332245,180.555374,160.166946,140.158691,129.596710,126.042992,119.836380,90.795059,76.216545,92.811584,104.142166,75.852913,34.943825,14.420679,10.894234,10.562823,8.816544,8.332245,10.039684,3.118189,1.334714,0.465291,0.125620,0.250414,0.000000,0.000000,0.458679,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602224.555000,4612655.550000,7412,3655,118.194229,169.020676,164.417374,158.995880,141.508286,130.185974,127.714890,124.615715,124.103325,128.268616,124.086792,135.508286,151.946304,169.260345,181.607437,194.780991,194.185944,178.342972,158.648773,138.681839,127.334724,124.458694,119.136383,91.995880,74.566132,92.111588,102.665306,73.590927,35.351261,12.563653,10.830598,8.796706,6.992575,8.108279,8.469434,2.755380,1.296697,0.110746,0.217356,0.000000,0.000000,0.000000,0.171075,0.000000,0.000000,0.000000,1.995041,0.000000,0.000000,0.000000 -602227.955000,4612655.550000,7429,3655,106.930588,175.881012,167.170258,159.145462,143.459518,130.938858,127.790092,124.038033,124.112411,128.641342,123.806625,135.525635,150.013229,167.013229,179.657867,192.368591,190.914047,175.889267,155.343811,137.285965,126.690926,121.930588,118.509102,89.376869,74.723976,91.285965,102.591751,71.302490,35.352089,15.264481,10.773573,10.474394,10.270264,9.394230,7.244639,3.833893,0.644630,0.163637,0.172728,0.104959,0.000000,0.068595,0.000000,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,3.236364 -602233.555000,4612655.550000,7457,3655,112.564468,178.928101,168.308273,162.556198,145.002487,131.928101,129.638855,126.812408,125.316544,130.027283,126.233902,135.812408,149.622314,167.390915,179.448761,190.266953,188.630585,174.035538,154.589264,134.457047,126.109932,122.349602,117.845467,88.977692,73.804146,90.671906,99.506615,70.333069,35.143826,16.079355,10.713243,11.761170,8.632245,9.305802,9.504145,6.895880,1.321490,0.417357,0.134711,0.282645,0.000000,0.055372,0.219009,0.561158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.955000,4612655.550000,7484,3655,148.193390,176.879349,166.689255,156.986786,138.102493,127.912415,125.234741,122.019859,120.350441,125.457878,120.804985,131.028122,147.292572,163.920670,176.548767,187.152069,184.970245,171.383469,152.714050,134.102493,125.028122,121.887634,116.945473,89.061165,73.433083,91.523987,106.226456,76.449615,37.780190,14.881010,10.631424,12.797535,8.495881,10.412411,9.214890,4.199185,1.537193,0.489257,0.201653,0.055372,0.000000,0.299174,0.000000,0.229752,1.329752,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.155000,4612645.550000,3405,3705,124.190926,138.133896,132.100830,117.952072,104.704140,94.902489,91.381828,89.257858,89.001663,90.910751,91.960342,102.737198,121.695877,138.034714,152.315720,162.133896,164.001663,153.274384,130.431412,109.497528,99.687614,96.125633,91.109100,62.332249,46.315723,61.439686,77.001663,55.604977,26.300846,8.497536,8.282664,11.943819,9.766955,10.659518,12.284313,7.723978,2.569427,0.906613,1.504136,0.607439,0.342977,0.885952,2.028101,0.984299,17.005789,14.611572,4.909918,7.068597,15.004134,9.892562 -601427.555000,4612645.550000,3427,3705,134.746292,141.205002,135.800018,123.502495,109.378525,99.543816,96.428116,94.890923,93.700844,96.353737,96.998360,107.866127,125.923981,142.725662,156.535553,166.609940,167.155396,156.477707,133.684311,111.874397,102.047951,98.386795,91.890923,65.808281,47.411591,63.609936,77.056213,56.890923,25.349604,10.014066,8.353739,10.500015,7.326458,10.061172,10.717370,6.052902,1.614054,0.995044,0.477687,0.330579,0.328927,0.612398,0.347935,1.724795,15.799176,5.295869,9.043803,3.133059,7.536365,15.151241 -601434.355000,4612645.550000,3461,3705,125.213234,140.890915,136.742157,127.345467,112.857864,104.304146,100.957039,99.254562,99.692574,101.618195,102.353737,111.816544,131.081009,147.609924,161.271088,170.833069,170.221497,158.775208,134.899185,115.122330,104.957039,101.155388,94.436378,67.866127,49.998371,65.750435,78.940514,57.411594,27.857870,10.912412,8.585142,8.924807,8.548775,9.513238,10.613236,5.941330,1.299179,0.736366,0.704133,0.306612,0.578514,0.537191,1.058680,0.216529,10.783472,5.009918,5.259505,8.518184,5.625620,5.300000 -601444.955000,4612645.550000,3514,3705,115.667786,144.483490,140.210754,129.822327,115.326462,106.805801,103.185966,101.789276,102.475220,102.987617,104.938034,114.971092,132.590927,148.946304,163.020676,172.243820,171.483490,160.219025,136.119858,115.293404,104.185966,100.549606,95.045471,68.632248,50.756218,65.822327,78.880180,57.475224,24.228943,9.877703,8.640515,5.514061,6.642160,6.184311,7.447946,2.669427,0.475208,0.238844,0.368596,0.000000,0.132232,0.000000,0.687605,0.932232,5.352894,4.557852,3.858678,5.861985,4.292562,3.573554 -601460.755000,4612645.550000,3593,3705,113.469444,147.704132,148.117355,135.323990,121.919029,112.034729,110.414894,109.464478,108.563652,109.753738,111.092583,121.927292,139.555405,155.514038,168.290909,176.803314,177.728943,166.406601,143.629761,122.018196,111.439690,106.786797,100.472748,73.629768,56.026463,70.671097,84.315720,63.332249,28.687618,12.257870,9.133904,7.738856,8.040509,7.661997,7.990924,3.699180,1.114053,0.592564,0.133058,0.091736,0.246281,0.016529,0.547108,0.000000,6.966117,4.244629,2.560331,3.577686,4.863637,7.300827 -601479.155000,4612645.550000,3685,3705,116.833900,151.765305,148.459518,139.319016,126.624809,115.195053,112.145470,110.963646,110.426460,112.616539,113.385139,123.500839,140.847946,157.442993,170.434723,179.947113,179.409927,169.327286,144.335556,122.847946,112.418198,107.740509,103.145470,75.170258,56.773575,72.285965,85.219849,64.038040,28.242167,11.332249,9.376879,5.820671,6.728939,7.066128,7.382658,3.475211,0.587605,0.408266,0.152893,0.267769,0.000000,0.259505,0.416529,0.000000,0.929752,2.263637,1.804132,2.641323,0.938017,3.834711 -601488.955000,4612645.550000,3734,3705,119.757866,170.708252,156.576019,150.807434,135.204147,121.303314,118.567780,116.113235,115.228935,120.485130,116.179352,127.452072,144.931396,159.683472,174.617355,184.476852,182.939667,169.129745,148.468582,127.129761,116.799187,113.071907,108.700012,79.303314,63.898365,79.881836,90.270256,65.253738,29.138037,12.121507,9.881837,11.151256,7.048773,8.201667,7.836380,3.317363,0.857026,0.116530,0.040496,0.401653,0.061984,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.355000,4612645.550000,3776,3705,137.031418,181.684311,163.312424,155.576889,138.081009,123.031425,122.642998,120.899193,120.857872,125.196716,121.039696,131.890930,148.081009,165.378540,177.692581,189.105789,186.353745,171.717377,149.692581,130.659531,119.196716,117.221512,111.436386,81.568619,66.535553,80.824814,94.700851,67.386795,31.072746,13.310762,10.130598,11.483488,7.428940,7.636379,7.270261,3.913232,0.433060,0.260331,0.052066,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.507438,0.000000 -601500.955000,4612645.550000,3794,3705,123.859512,178.595078,163.404968,157.165298,137.479355,124.231415,122.975212,121.512405,120.900833,124.867775,121.380173,131.644638,148.289276,166.173569,179.404984,189.223175,187.148788,172.900848,151.388443,131.289261,120.165298,117.388435,112.000008,83.727287,66.578529,83.082664,93.826462,67.380180,33.123989,13.101671,10.181836,11.795058,6.905799,7.976047,8.437202,2.649595,0.733059,0.307439,0.033884,0.000000,0.000000,0.304133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.755000,4612645.550000,3813,3705,129.561172,173.023987,163.238846,153.057037,135.990921,123.685135,122.511581,120.759514,120.015717,124.172737,120.660339,131.875214,149.387619,165.652069,177.742996,189.495056,186.833908,172.404144,150.354568,130.511581,120.404144,117.189270,111.809105,81.693405,65.751259,80.957870,93.048782,66.990929,31.338036,12.357043,10.164483,9.006628,7.323154,8.473569,6.683484,3.211578,0.885952,0.052066,0.227273,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.355000,4612645.550000,3836,3705,111.434731,178.674408,161.699203,153.757034,136.426453,123.757050,122.484322,121.079361,120.327293,124.137215,119.707458,131.666122,148.914062,166.360367,178.385147,188.533920,185.947144,173.261185,151.079346,129.914062,119.616547,117.806633,111.236382,81.773575,67.087624,81.004982,93.798370,69.145477,31.938860,12.536382,10.112415,10.828941,8.462825,9.241339,7.332244,3.613231,0.579340,0.309092,0.112397,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.222314,0.000000 -601514.155000,4612645.550000,3860,3705,104.575218,171.988449,161.104141,151.674393,135.533890,123.566956,123.087616,119.509102,120.038033,121.699188,120.476044,131.947113,148.533890,165.765305,177.963654,187.285965,185.847946,172.790100,150.732239,129.170258,119.054558,116.558693,111.145470,82.104156,67.062828,79.525635,94.186790,68.128944,33.046299,12.062827,10.104151,7.834726,7.120675,7.848774,8.552078,4.713232,0.637192,0.197521,0.028099,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.307438,0.000000 -601517.555000,4612645.550000,3877,3705,107.289276,169.256210,163.702499,152.404968,137.504150,123.487610,123.743813,120.206619,119.652901,122.297531,120.330589,132.082657,150.297531,166.223160,178.198364,187.545456,187.074402,173.487625,150.173569,129.950424,119.462814,117.016548,112.272743,82.024811,66.388451,80.289276,93.363647,68.842995,32.487625,12.975224,10.206631,9.061997,8.766956,8.631420,7.868609,3.014057,0.462812,0.189257,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.355000,4612645.550000,3896,3705,126.029762,166.137192,162.153717,149.856201,135.261169,123.277702,122.666130,120.434723,118.839684,121.319023,120.269432,132.095886,149.757019,166.161987,178.682648,187.790085,185.996689,174.236359,150.509094,130.459518,119.236374,116.690926,111.690926,81.930588,66.104149,80.690926,94.335548,69.533897,31.451262,13.906629,10.153737,7.071088,7.221501,8.141336,7.346292,3.975215,0.701655,0.183472,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.183471,0.000000 -601530.155000,4612645.550000,3940,3705,113.406624,167.795044,164.183472,154.001648,137.224808,124.464470,124.200012,122.109100,120.398354,122.009926,122.447945,132.720673,151.728912,167.183487,179.076050,188.051254,187.423157,175.985138,152.555359,131.968597,120.869431,117.828110,112.290916,83.514069,66.563652,80.348778,94.166954,68.902504,32.737209,13.604979,10.208284,7.521502,7.633074,7.504148,8.838856,3.249594,0.908267,0.266116,0.053719,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.155000,4612645.550000,3955,3705,105.616547,171.418198,162.054565,151.203323,135.013245,123.872749,122.616547,119.839691,118.376877,120.723991,120.368614,131.558701,149.881012,164.897537,177.723984,187.244644,186.624802,174.657867,150.104141,130.847961,118.170265,116.236382,110.327293,81.633080,66.013245,78.467789,93.112419,68.930603,32.517376,11.744646,10.029772,7.008280,6.543817,6.776874,8.482659,2.739675,0.246282,0.000000,0.104959,0.120661,0.243802,0.000000,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.755000,4612645.550000,3978,3705,109.235550,160.954544,160.458679,150.028931,133.648773,122.714890,123.012421,119.276886,118.929779,119.946304,120.334732,131.194229,149.880173,164.458679,176.962814,186.442154,185.739670,173.615707,150.888428,130.805801,119.103333,116.243820,110.863655,81.078537,65.161171,79.863655,92.888443,69.111595,31.202497,12.662828,10.078532,7.063650,5.742988,7.188443,7.204145,2.348767,0.614052,0.048760,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.755000,4612645.550000,3998,3705,104.471100,157.159515,163.721497,148.977692,133.721497,124.895058,122.779350,119.754562,118.490097,119.308281,120.316544,131.895050,150.390915,165.448761,176.506622,187.019012,185.911575,175.167770,150.465302,129.911591,117.828941,115.333069,109.300018,81.448776,65.184319,79.250427,93.002495,68.614075,30.919855,11.467787,9.936383,6.976047,6.694229,6.521500,5.530589,1.557856,0.609092,0.258678,0.000000,0.000000,0.000000,0.000000,0.000000,0.048760,0.000000,1.237190,0.000000,0.000000,0.000000,0.000000 -601545.155000,4612645.550000,4015,3705,87.757034,159.021500,162.500839,151.360336,135.690918,125.244644,124.038033,120.178528,119.823151,121.740509,121.252907,133.079346,151.203323,166.600006,178.021500,188.013229,187.500839,175.600006,151.252899,130.757034,119.732246,116.715714,112.054558,82.434723,66.087624,80.914062,94.781830,69.285973,32.509113,12.852910,10.186796,7.993401,8.147950,11.190926,8.263650,3.588438,0.322315,0.155372,0.304133,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.955000,4612645.550000,4034,3705,105.465309,158.754562,161.316559,151.184326,135.291748,124.506622,123.605797,120.382660,120.076874,120.432243,121.853737,133.523163,150.911591,166.349609,178.564484,186.547958,187.126465,174.878540,151.952911,130.572754,119.754562,117.019020,110.663658,82.481842,66.142990,80.085144,95.002502,70.258698,33.076878,13.573572,10.060350,7.004145,6.901669,9.508280,8.352906,3.858686,0.478514,0.189257,0.107438,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612645.550000,4064,3705,105.850433,159.255371,161.941330,149.891739,135.371094,123.354568,123.577705,119.891754,119.181007,120.842171,120.718201,131.866959,149.189255,165.288437,177.503296,186.966110,185.618988,173.759491,150.395874,129.966141,118.627289,115.999191,110.354568,81.362831,65.304985,79.767792,94.891754,69.536385,32.164478,11.639688,10.032250,7.581006,6.919024,7.561999,7.769437,2.825626,0.437191,0.197521,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.037190 -601560.955000,4612645.550000,4094,3705,101.781006,157.632233,160.665283,150.450409,134.946289,123.177704,122.607452,119.260338,118.814056,119.962814,120.698364,132.020676,149.871902,164.904953,177.376038,187.409088,185.797516,174.227280,150.706604,129.524811,119.061989,115.012405,110.136375,80.301666,64.838860,80.921501,95.855377,69.681839,31.541340,13.471919,10.012417,7.842163,6.612411,8.525635,7.158690,2.279345,0.516531,0.089257,0.000000,0.057851,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.915703,0.000000,0.000000,0.000000 -601563.755000,4612645.550000,4108,3705,104.428940,155.299164,161.018173,148.414871,135.009933,124.621506,122.935555,120.009933,118.621506,120.084312,121.009933,131.993408,149.596695,164.902466,177.166931,186.373550,185.836365,174.629745,151.059494,129.456223,118.662827,114.927292,109.927292,81.266136,64.481010,80.332253,94.133904,69.728943,32.563656,12.993407,9.993408,6.278527,6.241338,6.370262,6.970260,3.397527,0.666944,0.133885,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.155000,4612645.550000,4125,3705,111.064468,162.928925,162.160339,149.234711,134.912415,125.028107,123.747116,120.656212,120.581833,121.433067,121.871086,133.019852,151.251236,166.714050,179.507446,187.714050,187.755371,175.036362,151.937195,130.705795,119.945465,116.780174,111.127281,82.011589,66.862831,81.292580,94.937202,70.061165,33.598366,13.193407,10.102498,7.242162,6.625635,7.004148,8.219849,3.036370,0.371076,0.246282,0.000000,0.167769,0.000000,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.955000,4612645.550000,4139,3705,102.385963,157.311584,161.286789,150.278519,133.873566,124.336372,123.187614,120.790916,118.881828,120.435547,121.675217,131.509933,150.485138,165.270264,178.228943,186.625626,186.129761,174.080170,150.460342,129.981003,117.551247,115.485130,109.063644,80.790916,63.683487,79.361168,93.559517,68.600845,32.022331,11.013240,9.914895,5.601665,6.981835,7.085136,7.784312,3.313231,0.738845,0.148761,0.058678,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.755000,4612645.550000,4153,3705,99.349602,156.835556,161.984314,149.769440,136.628937,125.893402,123.942986,121.628937,120.885139,122.025635,122.802490,133.496704,151.670258,166.810760,178.323151,188.240509,187.430588,175.471909,152.141342,131.761169,120.000839,117.075218,110.827286,83.050423,66.612419,82.513237,95.736374,70.471924,33.364483,12.736382,10.075226,7.437205,7.337205,7.841337,8.919024,3.473561,0.557853,0.066942,0.000000,0.100000,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.947108,0.000000,0.000000 -601577.355000,4612645.550000,4176,3705,105.116539,157.583481,161.252899,149.095886,135.302490,125.104149,122.996704,120.327286,120.004974,120.889267,120.955383,132.451248,150.046295,164.847946,177.459503,186.476028,186.409927,174.219833,150.889267,129.947113,118.864479,116.269432,110.236374,80.657867,65.575226,80.707451,94.839684,70.310760,33.368614,11.788446,10.021507,8.260345,5.533072,7.814891,6.728938,2.999180,0.641324,0.071075,0.305785,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.755000,4612645.550000,4208,3705,109.992577,156.938034,159.772720,149.838837,134.466949,124.789276,123.020676,121.144646,120.326462,120.871918,121.971092,132.194229,150.524796,166.161163,177.706604,187.061981,185.838837,173.888428,151.747940,130.012405,119.772743,115.004150,109.227287,81.871910,65.739693,80.690102,95.268608,70.037209,33.491756,13.029770,9.929771,7.806625,6.587617,7.455386,8.088444,2.962817,0.256199,0.186778,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.955000,4612645.550000,4239,3705,107.760345,151.749603,157.336380,147.022324,134.633896,124.146294,122.162819,119.518188,118.394226,120.022324,120.204140,130.567780,149.080170,164.311584,176.559509,186.129761,184.666946,173.088440,150.022324,128.551254,117.179352,113.766129,108.790916,79.567780,64.262009,79.311577,92.865295,69.700012,31.981014,11.240514,9.890101,5.507450,5.750428,6.472741,6.209103,3.332237,0.442150,0.139670,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,1.252893,0.000000,0.000000,0.000000,0.000000 -601592.555000,4612645.550000,4252,3705,106.355385,155.592575,163.088440,150.832245,137.617386,127.237206,125.104973,122.757866,121.890099,122.807457,123.790924,134.534714,151.923157,168.708267,179.832230,188.799164,188.609085,176.823959,153.509933,131.592575,120.551254,117.237206,112.154572,84.262001,66.162834,82.220688,97.377701,72.212425,34.518200,13.188448,10.195888,7.728114,8.885967,8.222329,7.728114,2.832239,0.495869,0.166943,0.173554,0.051240,0.307438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.555000,4612645.550000,4272,3705,102.860344,155.598343,159.102478,149.127274,134.970261,124.383484,122.548775,120.127281,119.523979,121.672737,120.928940,131.532242,150.366943,165.937195,178.573563,186.664459,186.970245,174.234711,150.028107,129.358688,118.234718,114.813232,109.763649,80.763657,64.879356,79.829765,95.697533,69.168617,32.507458,12.242166,9.978531,5.766129,6.752909,7.378526,6.871915,1.730583,0.204133,0.157852,0.000000,0.097521,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.044628,0.000000 -601601.155000,4612645.550000,4295,3705,92.936378,156.859497,158.520660,148.892563,136.388443,124.578529,122.628113,121.165306,120.413239,120.727287,121.479355,133.223145,150.380173,166.297516,178.677689,187.570251,186.322311,174.371902,151.347107,129.743820,118.793404,115.454559,110.272743,82.148773,65.710762,80.479355,96.090927,71.396721,32.619854,12.123158,10.024812,5.238029,6.339685,6.319849,6.034723,2.471081,0.360332,0.233058,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.555000,4612645.550000,4322,3705,108.057869,154.016541,161.024811,149.983490,137.165298,126.818199,123.322327,122.553734,121.380180,122.247948,123.652908,133.471085,151.925629,167.545471,179.826462,189.066132,188.611588,176.685974,153.247955,131.090927,119.909103,116.404976,110.636383,82.264481,66.338867,81.446297,97.057869,71.628113,34.603325,13.088448,10.057871,6.428112,8.097537,7.491750,7.039683,4.252075,0.523968,0.314051,0.052893,0.126446,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.355000,4612645.550000,4336,3705,89.419029,156.969421,160.010757,149.952896,137.870270,126.911583,123.804146,121.795883,121.126457,122.994232,123.242165,134.010757,152.308273,168.134720,180.895065,188.390930,188.432251,176.233902,152.903305,131.589264,120.258690,116.870262,110.754562,82.481834,66.597542,81.341347,96.977699,71.936386,33.308285,13.716547,10.068615,5.809929,7.961171,7.488444,7.215715,3.223974,0.338018,0.095868,0.102480,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.009917 -601615.155000,4612645.550000,4365,3705,111.555389,156.604980,160.084320,150.704163,137.233078,126.795059,125.249603,122.175224,120.778534,123.224808,123.547127,134.406631,152.299194,168.241348,180.596725,189.414902,188.373581,177.398376,153.150436,131.505798,120.464478,116.869438,110.745476,82.993408,65.704147,81.348778,96.257866,73.489273,33.844646,14.309109,10.067787,6.693401,7.213240,8.223156,7.586792,2.484304,0.554548,0.279340,0.057025,0.111571,0.000000,0.000000,0.008265,0.000000,2.548760,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.755000,4612645.550000,4383,3705,105.926460,158.463654,162.504974,150.852081,136.397537,126.199188,123.827286,121.604149,121.347946,122.992577,123.637199,134.405792,151.752899,168.546295,180.281830,189.042160,188.480179,176.422333,153.785965,130.471909,119.678528,116.108276,109.918198,81.628937,64.967789,81.397537,96.893402,71.058693,33.686798,12.856215,9.992581,6.470261,6.951254,7.834725,6.536376,3.164470,0.472729,0.169422,0.116529,0.173554,0.000000,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.355000,4612645.550000,4411,3705,102.828110,158.846283,160.449600,149.234711,136.433075,125.623161,123.838036,121.061180,121.135559,122.813240,122.995064,134.102493,151.920670,167.953735,180.019836,188.647949,187.937210,176.267776,153.044632,131.135559,119.366959,116.920677,110.127289,83.284317,64.292580,80.928947,96.623161,72.689278,33.003323,13.628944,10.011589,5.129763,7.190924,7.103321,7.312409,3.341328,0.181819,0.068595,0.042975,0.000000,0.000000,0.080165,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.755000,4612645.550000,4448,3705,99.907463,154.609100,159.609100,151.799179,137.295044,126.724808,125.121506,121.576050,121.981010,123.096710,123.691750,134.749603,151.807449,168.121490,180.600830,189.947937,188.129761,177.055374,153.774384,131.501663,120.799194,116.220673,110.700020,82.576050,66.534729,81.757866,96.518196,72.972755,34.121510,13.119853,10.063655,4.605795,6.972743,7.769436,6.176046,2.789263,0.268596,0.116529,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.188430,0.000000 -601637.555000,4612645.550000,4477,3705,108.023155,153.585129,162.436371,151.733887,137.180191,126.824806,124.444641,121.800018,121.031418,123.213234,123.345467,133.502487,152.626450,169.337204,180.965302,189.981827,187.758682,176.791748,153.626450,131.130600,119.337204,116.047951,110.345467,82.138855,65.866135,81.692574,95.552078,72.527290,33.469440,12.466960,10.031424,5.890095,5.626459,7.450429,7.405799,3.722321,0.253720,0.142976,0.058678,0.000000,0.000000,0.106612,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.155000,4612645.550000,4510,3705,101.147125,158.766968,161.948776,152.304153,137.907455,126.138847,123.733894,122.519012,122.973557,124.742157,124.081001,134.320663,152.295883,168.651260,181.568619,188.899200,189.502502,177.568619,153.328949,130.965302,119.659508,115.568604,110.981827,82.568611,64.642990,80.791748,97.072739,71.692574,32.816547,11.972744,10.089275,4.542160,6.975222,6.218195,5.866954,3.376866,0.435538,0.111571,0.057025,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.155000,4612645.550000,4530,3705,102.584312,161.285965,159.740509,153.616547,137.831421,127.748779,125.484314,123.112411,122.211586,124.467781,124.633072,135.401672,152.930588,169.657867,181.269440,189.707458,190.434723,178.525635,154.451248,132.666138,120.583481,116.591759,111.145477,83.228111,66.327293,81.013237,98.872749,74.079353,34.715725,13.284315,10.104151,5.147119,7.900015,7.619849,6.531417,2.790915,0.427274,0.187604,0.000000,0.000000,0.005785,0.101653,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.555000,4612645.550000,4547,3705,102.270264,163.385956,162.939682,152.551254,140.121490,128.559509,125.906624,123.815712,122.650421,125.708275,124.501663,135.675217,152.551254,169.782654,180.840500,191.121490,189.840500,178.989273,155.666946,131.733063,120.295052,116.857033,111.336372,83.295059,65.923157,82.443817,97.385963,74.534729,32.518204,14.477703,10.121507,4.821499,8.289273,7.190924,6.984309,3.080172,0.604961,0.166116,0.000000,0.181819,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,1.228099,0.000000 -601654.755000,4612645.550000,4563,3705,98.355385,159.743805,162.123962,152.157043,140.049606,127.495880,123.768608,122.305801,121.975220,124.148773,123.338860,133.942169,152.082657,168.429749,180.892563,190.553726,188.570251,177.776855,154.388443,132.033081,120.082664,115.752083,111.090927,82.041336,64.867790,79.570274,96.512413,73.264481,33.636379,12.840514,10.099193,4.282654,6.480180,6.681006,5.008276,2.547113,0.569423,0.395868,0.115703,0.000000,0.000000,0.098347,0.000000,0.000000,1.263636,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612645.550000,4586,3705,114.871094,165.234726,163.581833,153.160355,139.681015,128.094238,125.482666,124.466125,122.557045,125.986794,124.482666,135.135544,153.499191,170.920685,182.176880,191.829773,189.995056,178.920685,155.937210,133.986786,121.193405,117.209938,111.127289,83.325638,65.242996,81.871094,98.143822,74.433075,34.928944,13.543819,10.102498,5.617365,7.788445,6.702492,6.252905,2.480998,0.250414,0.103306,0.147934,0.049587,0.067769,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.355000,4612645.550000,4601,3705,112.640511,165.508270,164.714874,155.351242,141.276855,129.772751,127.202492,124.946297,123.880180,125.871918,125.367783,136.061996,154.152893,171.838837,182.615707,191.392578,191.483490,179.847107,156.185944,133.921509,122.260345,118.293404,111.863655,83.954559,67.318199,81.632248,98.318199,74.904976,35.086792,13.496712,10.169440,4.347945,7.483486,6.100012,6.118193,1.797527,0.749589,0.043802,0.123141,0.057851,0.162810,0.000000,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.555000,4612645.550000,4617,3705,125.804146,170.027298,165.514893,155.324814,141.068619,129.977692,126.324806,124.738029,124.043808,127.696709,126.308281,136.919861,154.597549,171.266968,183.002502,192.787628,190.597549,180.498367,155.630600,134.647125,121.275223,117.060333,112.845467,83.366127,65.754562,82.622330,98.134727,74.506622,34.010761,12.770265,10.258698,4.183480,8.125635,6.601666,6.847946,1.940501,0.656200,0.106612,0.129752,0.000000,0.000000,0.108265,0.017356,0.000000,0.000000,0.000000,0.000000,1.105785,0.000000,0.000000 -601668.355000,4612645.550000,4631,3705,125.978523,171.532242,165.953720,157.317352,143.251236,130.895874,128.110748,126.747116,124.871086,128.383484,127.209930,138.044632,155.590088,172.234711,185.499176,194.986786,192.862808,181.540497,156.689255,136.342148,123.292572,118.722328,113.309105,84.036385,67.639687,83.333900,97.333893,75.614899,34.978535,12.948777,10.300845,6.571913,7.432248,6.983486,6.044641,3.105792,0.323968,0.220662,0.138843,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,1.060331,0.000000,0.000000,0.000000 -601673.555000,4612645.550000,4657,3705,119.958694,175.760361,164.677719,157.388458,143.033081,129.429764,127.404976,125.190102,123.743820,127.214890,125.801666,136.801682,154.438034,172.413254,183.347137,193.371933,191.479370,180.727310,156.223160,135.181839,121.702492,117.917374,112.454559,84.884315,66.537209,82.446304,99.933899,75.479362,34.396709,14.687621,10.223160,4.842161,5.635552,6.890923,7.167782,2.519840,0.831406,0.630579,0.063637,0.139670,0.000000,0.000000,0.004959,0.000827,0.000000,0.000000,2.187604,0.000000,0.000000,0.000000 -601681.155000,4612645.550000,4695,3705,111.165306,170.727295,166.305801,154.256210,140.520676,129.148773,126.281006,123.966957,122.611588,123.264481,123.471092,134.975220,154.099182,169.206635,180.760330,189.900833,189.115707,176.520660,151.917374,132.148773,120.049606,117.545471,111.272743,82.942162,67.371910,81.876053,96.685966,71.677704,34.033077,14.342994,10.115722,8.179353,9.047946,9.120674,7.864476,3.030587,0.504133,0.122314,0.229753,0.041322,0.000000,0.000000,0.000000,0.099174,1.342975,1.218182,0.000000,0.000000,0.000000,0.000000 -601686.955000,4612645.550000,4724,3705,114.441345,168.598343,166.127274,154.152084,140.094238,128.350418,126.152077,123.482658,122.193398,122.862823,123.557037,135.209930,153.474396,168.821487,181.416519,189.763657,189.383484,175.391739,152.127289,130.548767,119.730591,116.978523,110.763657,82.672745,66.400017,80.838036,95.862831,70.474396,32.920681,13.257869,10.069441,8.439684,7.420673,7.415714,8.158691,2.726454,0.328100,0.061984,0.216530,0.000000,0.000000,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,1.015703,0.000000,0.000000 -601690.155000,4612645.550000,4740,3705,109.781013,171.359497,167.260330,154.756195,139.739670,128.921509,126.838867,123.425644,123.152916,123.797546,124.078537,135.243820,153.086777,170.772720,181.144623,190.739670,189.764465,175.830582,152.309921,131.524811,120.260353,117.797546,110.772751,82.888451,66.789276,82.062004,97.929779,71.086800,33.574398,13.776051,10.070267,9.364475,7.583482,8.771087,7.376872,4.215713,0.428927,0.185951,0.038017,0.000000,0.003306,0.000000,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.755000,4612645.550000,4753,3705,105.464478,171.960342,167.695877,154.274384,139.472733,126.844643,126.687622,123.282661,122.522331,123.927292,122.985138,134.943817,153.381821,168.456207,180.538849,189.414886,189.505798,175.357040,151.646286,130.646301,119.497536,117.398361,111.109108,81.861176,66.439690,81.365311,96.423157,71.638031,33.191757,13.545473,10.100846,8.297535,6.909102,8.214062,7.289269,2.630585,0.966118,0.031405,0.139670,0.000000,0.000000,0.000000,0.094215,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.555000,4612645.550000,4767,3705,120.358688,176.573578,167.267776,157.152084,141.623154,129.375214,127.606621,125.069435,124.424805,125.317368,125.185135,136.681015,155.152084,171.110764,183.028122,192.499176,190.441330,176.474396,153.358704,133.119019,121.242989,117.788445,112.672737,83.325630,67.664490,82.714058,97.722328,71.945480,34.573574,15.238036,10.242995,9.517370,7.990923,8.165302,7.782657,2.942982,0.285125,0.158678,0.171075,0.000000,0.000000,0.000000,0.000827,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.355000,4612645.550000,4791,3705,102.817375,175.255371,168.643814,156.081833,141.354568,128.809113,127.966133,124.990929,124.123161,124.701675,124.156219,136.057037,155.073578,170.445465,182.139679,191.933060,190.982651,176.404129,153.313248,132.131409,120.966133,117.610756,112.172737,83.197540,67.288445,81.842171,97.585960,71.999191,32.842167,13.589272,10.197540,9.116542,7.052906,7.885963,7.033897,3.490091,0.685126,0.317356,0.302480,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.155000,4612645.550000,4805,3705,108.385963,175.055374,168.708267,156.914886,141.675217,128.336380,127.385963,124.443810,123.237198,125.509926,123.815712,135.617371,154.584305,171.154556,182.749603,192.782654,189.799179,176.253723,152.369431,131.261993,119.460342,117.625633,111.245461,82.518211,67.228951,81.220680,96.187614,71.394241,33.476883,11.671092,10.113242,8.052905,4.960340,6.782657,6.214888,2.620669,0.258678,0.112397,0.578513,0.000000,0.105785,0.000000,0.006612,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.555000,4612645.550000,4822,3705,124.038025,175.554535,167.752884,158.835541,142.546295,128.695053,128.397537,125.686790,124.116539,126.942986,124.488441,136.438858,155.810745,171.802475,183.290085,193.670242,191.033875,176.777679,152.554535,132.009094,121.909927,118.414062,112.463646,83.166130,67.133072,82.405800,96.678528,70.248772,32.438866,12.624810,10.223985,7.905798,7.271913,8.205798,7.780179,4.743811,0.435539,0.074380,0.076033,0.047108,0.000000,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.355000,4612645.550000,4836,3705,123.154564,180.931412,171.476868,159.675217,145.551254,130.352905,131.014053,127.873566,126.212410,129.187607,127.063644,138.419022,157.832245,174.228943,185.972733,195.245468,193.352905,178.410751,155.890091,133.981003,123.319847,119.906624,115.245461,85.485153,69.890106,84.162834,100.344643,73.129776,34.700016,14.671918,10.476878,10.581833,8.304972,8.419847,8.885964,3.000008,0.636365,0.027273,0.297522,0.000000,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.555000,4612645.550000,4867,3705,127.096710,185.228912,172.303299,161.733063,144.939682,130.179352,130.138031,127.923157,126.542992,129.088440,126.410759,137.708267,156.311584,173.154541,185.576019,195.104950,192.972717,178.022308,154.708267,133.749603,122.749603,119.815720,113.972748,84.749603,68.658699,83.666962,97.228943,70.675224,34.468616,13.461175,10.361176,9.841337,7.511582,8.901667,9.669436,4.801663,1.004135,0.032232,0.328100,0.114050,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.755000,4612645.550000,4883,3705,112.398361,183.117371,171.952072,159.704147,144.646286,130.919022,130.274399,128.100845,126.695885,130.852905,126.852913,138.224808,156.257874,173.803314,185.447937,194.695877,191.720673,176.753723,153.836395,133.067780,121.786797,119.109108,112.563652,83.299202,67.869438,83.290932,96.770264,71.216553,33.092579,12.251258,10.233077,10.140511,7.666128,7.887617,7.857038,3.053727,0.680993,0.042975,0.363637,0.223141,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.555000,4612645.550000,4897,3705,139.685974,187.016541,171.652908,162.561996,147.495880,132.231415,132.041336,130.016541,128.165298,132.256210,128.446304,139.900848,157.966965,174.950424,186.553741,197.016541,194.041336,178.851257,155.619858,134.900848,123.735550,120.231422,114.545471,85.256218,70.247948,85.446297,99.041336,70.545471,35.735558,13.790102,10.413242,12.052909,8.222327,8.777700,10.076048,2.758685,1.376862,0.226447,0.255373,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.555000,4612645.550000,4922,3705,144.686813,188.257034,174.199188,164.447113,146.133072,131.860336,131.108276,128.637207,128.405792,133.397537,128.397537,139.827286,156.794235,175.100006,187.339676,196.893402,193.942993,178.480179,155.323151,134.033890,122.504974,119.769432,114.281830,84.819031,69.232262,84.703323,97.513245,69.240524,33.926468,13.654564,10.389276,11.119023,8.302493,7.478525,7.080178,3.966125,0.462811,0.147108,0.087604,0.000000,0.071901,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.755000,4612645.550000,4963,3705,155.133072,203.133072,181.918198,169.422333,149.794235,135.554565,133.091736,131.992569,132.389267,137.166122,130.769424,142.852081,159.893402,177.108276,189.893402,200.463654,196.091751,179.422333,157.942993,136.992569,125.496696,122.595871,117.645462,86.273567,71.827286,87.728111,99.389267,71.248772,34.885143,16.495886,10.695061,12.466133,9.008279,9.981005,7.766129,3.947943,0.352068,0.231406,0.390910,0.000000,0.057851,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,2.328926,0.000000,0.000000 -601737.755000,4612645.550000,4978,3705,125.743813,180.652924,173.173584,161.057861,146.702515,135.123978,132.305786,129.628113,129.033066,132.983475,130.132233,140.834747,158.446304,175.446320,188.586807,197.669449,194.495895,179.933914,157.090942,135.669434,125.495880,122.190102,116.909096,86.008270,71.991745,87.487610,101.388435,72.793396,35.702496,16.338036,10.628119,10.900015,9.819022,9.843815,8.727287,3.904968,1.097523,0.267770,0.329754,0.057025,0.000000,0.000000,0.000000,0.035537,1.204132,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.755000,4612645.550000,5003,3705,103.122330,156.965302,162.221497,152.254547,137.907440,128.419846,125.510757,123.601669,123.081009,124.337204,124.890923,135.940506,154.428101,170.618195,182.783478,191.213226,189.800003,176.403305,154.089264,132.973572,120.791748,117.816544,112.163651,84.519020,67.841339,82.295883,99.097534,72.816551,34.271095,13.306629,10.196713,5.176871,6.974392,6.809929,6.590095,3.104139,0.436364,0.060331,0.010744,0.000000,0.000000,0.000000,0.000000,0.396695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.755000,4612645.550000,5028,3705,100.935555,159.348785,166.414902,155.671097,142.067795,131.323990,128.687622,127.059525,125.671089,127.158699,128.026459,138.522339,157.621521,173.200012,185.588440,194.233063,193.803314,180.142151,156.588455,134.778534,124.919029,119.894234,117.109108,87.505806,70.770264,86.332253,100.224808,73.299194,35.902496,15.514068,10.646300,7.096706,8.168609,8.217369,7.342162,3.661991,0.678514,0.406613,0.276034,0.123967,0.143802,0.000000,0.075207,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.555000,4612645.550000,5057,3705,102.928940,161.289276,164.950424,153.826462,137.330597,129.281006,125.942154,125.710762,124.041328,124.966949,126.049606,137.553741,156.322327,171.553741,183.595062,191.347122,191.132248,179.371918,154.289276,133.991745,122.173561,118.537201,113.909096,86.008278,70.264481,84.148773,100.297539,74.471092,35.537209,13.941339,10.355392,6.457038,9.398362,8.224808,6.852079,3.688438,0.505787,0.100827,0.133885,0.000000,0.000000,0.000000,0.095042,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.155000,4612645.550000,5075,3705,103.938034,154.962814,166.359497,152.582642,138.888428,130.334717,129.425629,125.095047,125.053734,126.367783,127.161171,138.318176,156.301651,173.607437,185.954544,193.574387,192.590912,181.053726,156.202484,134.764465,123.855385,120.880173,114.772736,85.351257,70.169441,86.095055,98.458687,73.219025,34.931423,14.634729,10.433904,5.893399,7.775219,7.609929,6.663649,2.733065,0.343803,0.036364,0.034711,0.109918,0.000000,0.000000,0.052893,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.755000,4612645.550000,5093,3705,104.551247,160.063644,165.154541,154.286789,138.509933,129.055374,127.253731,124.840508,124.881828,125.972740,126.534721,137.179352,155.361160,172.047104,183.551239,192.179337,190.542969,178.476852,154.914886,135.237198,123.138023,118.931412,114.427284,85.138023,69.914886,86.253731,99.162819,72.270256,32.997540,13.185967,10.402498,5.320671,7.070261,6.792574,6.632244,2.617362,0.409919,0.115703,0.052893,0.000000,0.057851,0.000000,0.040496,0.044628,0.000000,0.000000,0.000000,2.064463,0.000000,0.000000 -601763.955000,4612645.550000,5109,3705,105.971916,157.426453,162.881012,152.707458,140.203323,130.162003,126.442986,123.575218,124.054558,124.897537,125.542160,136.740509,156.153732,171.682663,182.641342,191.633072,190.327286,178.624802,154.542160,132.889267,122.376869,117.831421,114.418198,84.947121,68.434723,84.947121,96.856209,71.633072,32.476055,11.668612,10.401671,4.320672,6.134722,6.672739,6.469435,2.544635,0.257026,0.066942,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.051240,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612645.550000,5123,3705,105.590103,161.327301,165.195068,154.823166,139.814896,129.864471,126.542160,124.219849,124.616539,125.864479,126.145470,137.409927,156.153748,172.814911,184.244644,192.831421,191.434708,178.930603,155.542175,134.509109,122.558693,118.500839,113.600014,86.195061,68.897552,85.029770,98.500839,71.864494,32.922333,12.284315,10.327291,6.026458,6.435551,7.748773,7.978525,2.776039,1.459507,0.554547,0.514051,0.380166,0.407439,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,1.195042,0.000000 -601770.555000,4612645.550000,5142,3705,103.954559,157.557861,164.359528,155.318192,140.004150,129.103317,127.747940,125.855385,124.797539,126.053726,126.855385,138.061996,156.012405,172.797531,184.640518,193.822327,191.185974,179.764481,155.706635,135.028946,124.334717,119.342987,114.500015,86.962830,68.987617,85.623985,98.450432,72.367790,33.698368,12.777704,10.409110,5.433894,6.807449,8.190920,6.771913,2.501659,0.348762,0.156199,0.000000,0.509918,0.000000,0.000000,0.053719,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.955000,4612645.550000,5174,3705,106.970261,158.623138,164.490906,155.573563,141.003311,133.895874,132.061157,129.887604,129.689255,130.193390,130.507446,141.474380,160.920670,175.689270,188.242996,195.606628,196.292587,183.441345,159.557022,137.829773,126.920662,122.879341,116.945473,89.085968,70.986794,85.573570,98.259521,72.251259,32.755390,13.029770,10.631423,7.075219,7.261995,8.727285,8.904144,4.213231,0.774382,0.533058,0.609091,0.467769,0.377686,0.494215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.755000,4612645.550000,5203,3705,114.433899,162.359528,168.185974,156.665298,143.078522,132.888443,130.781006,129.615723,127.962830,130.103333,130.863663,142.293411,159.136383,176.045471,188.268616,196.723160,195.425629,183.747955,159.789276,136.772751,127.012413,122.698364,118.045471,89.549606,71.549614,87.012413,99.045471,74.012413,36.078533,14.106630,10.731424,6.838028,6.690922,7.102489,7.307451,3.665298,0.224794,0.038017,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.755000,4612645.550000,5218,3705,113.581017,162.473572,168.977707,157.291763,142.977707,134.151260,130.349609,128.696716,129.564484,129.853745,131.225647,142.052094,160.539688,177.308289,188.696716,198.266968,195.977707,183.771103,159.845474,137.382660,127.771095,122.721512,119.754570,90.457047,72.944649,88.390930,100.275230,74.242172,35.357868,13.835555,10.886796,6.497532,6.742162,10.362825,7.657037,3.205794,0.510745,0.395869,0.047934,0.000000,0.172728,0.000000,0.000000,0.061157,3.959504,0.000000,0.000000,0.000000,1.152066,0.000000 -601789.355000,4612645.550000,5236,3705,122.895882,167.895889,165.821503,158.193405,143.614899,131.813232,130.598358,129.515717,129.011581,130.573563,131.945465,142.606628,160.962006,176.160355,189.474396,198.127289,197.540512,184.168610,160.623154,137.226471,127.061165,122.961998,118.400009,90.251259,73.986786,87.763649,100.854553,73.904144,35.358696,16.052912,10.763656,7.938030,7.071087,8.565303,8.888443,3.082653,1.369425,0.093389,0.171901,0.000000,0.000000,0.000000,0.000000,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.355000,4612645.550000,5251,3705,105.630592,156.101654,165.944641,155.118195,143.085129,132.333069,129.985962,127.804138,128.093399,130.572739,130.523148,141.564468,159.721497,175.614059,187.779358,196.341339,195.341339,184.382645,159.200836,137.795868,126.101662,122.729759,116.845459,89.754562,73.142998,87.209106,99.250427,72.531418,34.043823,13.542993,10.622333,5.249599,7.624806,7.547946,7.704145,2.933065,0.718184,0.111571,0.163637,0.000000,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.355000,4612645.550000,5271,3705,115.712410,159.373566,169.365295,156.514053,142.795044,134.348770,131.059509,129.381821,130.233063,131.282654,131.208267,142.985138,160.927277,176.547119,190.133896,198.588440,197.051254,185.034714,161.166946,139.059509,126.985130,124.009926,120.381828,91.257858,73.869431,88.142159,101.084305,75.001671,35.646297,14.753736,10.943820,4.898359,7.425633,9.535552,8.517368,3.280173,0.735539,0.085124,0.047108,0.112397,0.000000,0.000000,0.000000,0.190910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.555000,4612645.550000,5287,3705,119.052086,162.556213,165.671921,156.291763,141.531433,132.506638,130.308289,128.911591,128.969437,131.638870,132.060349,142.795883,160.316559,176.729782,187.423996,197.523148,196.027283,184.655396,159.886795,137.928116,126.457047,122.275230,118.300026,90.481842,73.225639,85.886803,100.432251,73.324814,34.994232,14.221505,10.754565,5.049597,7.604146,7.298358,8.820675,4.076866,0.591737,0.046281,0.101653,0.046281,0.000000,0.000000,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.555000,4612645.550000,5312,3705,112.857048,168.549591,166.855377,161.417374,142.747955,133.913239,131.657043,129.483490,128.789276,131.615723,131.640518,142.169434,160.847122,177.309921,188.665298,197.665298,197.103317,185.194214,161.673569,139.235550,126.789284,123.169449,118.045479,90.781006,73.285141,88.243828,101.723160,75.037209,36.414894,15.266960,10.731424,6.299184,8.291751,7.832244,8.838856,4.352901,1.313226,0.611571,0.343802,0.173554,0.174381,0.035537,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.155000,4612645.550000,5340,3705,124.256226,162.296707,169.362823,159.850433,144.090103,132.908279,129.114899,127.495064,128.941345,130.924820,132.619034,142.288452,160.023987,176.966141,190.536377,198.420685,197.222336,186.023987,160.462006,139.247131,127.329773,124.428947,118.536385,91.445473,74.271919,88.139687,102.081841,76.619026,36.511589,15.569440,10.776052,6.107449,8.537205,9.192575,10.104147,4.510753,1.837193,0.191736,0.343803,0.455372,0.126447,0.000000,0.009091,0.267769,1.409091,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.755000,4612645.550000,5378,3705,118.292572,168.342163,164.862823,158.821503,145.152084,133.011581,130.681000,130.267776,129.598358,132.309097,131.342163,143.689270,160.366959,176.846298,188.829773,197.953735,197.119034,186.350433,161.077698,139.565308,128.085968,124.424805,118.763649,91.251251,73.937202,88.193398,100.251251,75.747116,35.924812,14.545473,10.796714,5.653729,8.209933,8.758690,6.633896,3.925628,0.766944,0.056199,0.238844,0.000000,0.057025,0.000000,0.008265,0.052066,0.000000,1.109918,0.000000,0.000000,0.000000,0.000000 -601821.555000,4612645.550000,5397,3705,115.206627,166.771927,168.317368,157.284317,143.143814,130.928940,130.507462,129.061172,128.681000,131.714066,131.945480,142.350433,160.606628,176.185150,188.532257,198.804977,197.557037,185.350433,161.879364,139.937210,128.887619,122.953728,120.218193,91.375221,74.912415,87.978523,101.499191,76.201675,35.697540,13.997539,10.928944,3.533890,8.088445,4.677697,8.009929,2.113228,0.830581,0.484298,0.267769,0.166116,0.132232,0.000000,0.000000,0.155372,0.000000,0.000000,0.368595,0.000000,0.000000,0.000000 -601826.555000,4612645.550000,5422,3705,128.944641,171.481827,171.283493,162.407455,146.903336,135.506622,131.324799,131.729752,128.994217,133.448761,133.085129,142.911591,160.870270,176.928101,188.845459,197.514877,197.283478,186.655380,161.713242,139.002502,127.068604,123.853729,119.027283,90.837196,72.903320,88.589264,101.655380,76.423981,36.043819,14.293406,10.820679,4.952076,6.524805,6.243812,8.337204,2.991742,0.431406,0.566943,0.193389,0.388430,0.142149,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,1.030579,1.361157,0.000000 -601832.355000,4612645.550000,5451,3705,121.176880,176.631424,170.292587,161.730591,148.036377,134.705795,132.763641,130.953735,129.895874,134.044632,133.317368,144.631424,161.664490,178.234726,189.879364,199.532257,198.366959,187.325638,162.689270,141.631424,129.945465,125.796707,120.672737,92.945473,75.242989,91.119026,102.904152,77.152077,36.614895,15.125639,10.970267,6.223978,6.985966,8.399188,8.305799,3.819015,0.392563,0.131405,0.385951,0.000000,0.353720,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.355000,4612645.550000,5466,3705,132.894226,180.715714,169.955383,161.971909,146.550430,135.170258,132.401672,131.013229,129.790100,134.021500,132.649597,143.600006,160.641342,177.955383,190.335556,199.128937,198.104141,186.566956,162.451248,141.343811,128.269440,125.566956,120.509102,91.004974,73.517380,88.038033,102.624809,76.517380,35.790104,14.920679,10.955391,5.967780,7.067783,7.281831,7.219848,2.104964,0.228100,0.292563,0.000000,0.000000,0.020662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.955000,4612645.550000,5514,3705,120.314064,173.123962,172.421494,162.842972,144.446274,132.099182,132.900848,130.165298,129.140518,129.553741,131.016541,142.123962,158.702484,173.743805,185.735535,195.239670,194.074387,180.528931,156.347107,135.859528,124.694229,122.256218,115.727287,88.512413,72.024811,84.900841,98.421509,73.710762,35.041348,15.002497,10.520680,9.180179,7.996707,7.783483,8.287619,3.870256,0.591737,0.095868,0.045455,0.000000,0.000000,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,2.109091 -601847.555000,4612645.550000,5527,3705,113.879349,170.664459,169.085953,159.614883,144.358704,132.077698,131.697525,128.366959,128.061172,128.069427,129.441330,140.143814,158.317352,173.094223,185.193390,193.457870,193.879364,179.416534,155.234711,134.953735,124.697533,122.416542,116.218193,87.804970,72.854553,84.441330,98.366951,71.978531,33.590103,14.429770,10.565309,7.822328,7.549599,9.164477,8.333899,2.375211,1.104961,0.261157,0.149587,0.000000,0.218182,0.000000,0.016530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.755000,4612645.550000,5543,3705,117.179359,176.509933,171.964478,160.898361,143.038864,131.873566,130.823990,127.790916,127.005806,127.278534,128.286789,138.559525,157.749603,173.460342,184.518188,193.997528,190.716537,179.476868,155.063644,134.369431,123.518196,120.716545,113.700020,87.286797,70.898361,84.633904,97.947952,71.526466,34.402496,14.703322,10.336384,8.739683,8.251254,8.840508,7.213237,3.933066,0.703308,0.394216,0.109091,0.230579,0.118182,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.155000,4612645.550000,5565,3705,132.925644,179.223145,173.611572,162.628098,147.669418,135.074387,133.438019,131.801666,129.090927,130.917374,130.272751,141.305786,159.380173,174.016525,185.446274,195.008270,192.305786,181.396698,155.966949,135.619858,124.132248,121.429771,116.090927,87.140518,72.206627,85.041344,98.644646,72.446297,34.305809,15.276052,10.553739,7.675220,8.566955,8.703320,9.866131,4.188437,1.009093,0.505786,0.462811,0.205785,0.196695,0.255372,0.147934,0.280165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.155000,4612645.550000,5585,3705,126.066963,180.909088,173.049591,162.942154,146.553726,133.214905,131.859512,130.710754,128.991745,129.793411,129.115707,140.578506,158.652893,173.528931,185.702484,194.041321,192.884293,179.991730,155.272720,135.942154,124.801666,122.165306,116.181831,88.082672,71.851265,85.239693,98.520676,72.388451,33.082668,13.271918,10.562002,8.803320,7.585963,9.017368,8.703319,3.042155,0.585952,0.734712,0.151240,0.238843,0.059504,0.000000,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.355000,4612645.550000,5601,3705,125.446297,177.082657,169.958679,159.752060,145.462814,132.570251,130.752075,128.082657,128.049591,129.966949,127.950424,140.165283,158.264465,173.520676,184.859528,194.636383,192.983490,179.561996,155.661163,135.157028,124.595047,121.669426,115.000008,87.644646,71.404984,85.272743,97.413239,72.247955,32.123985,13.066133,10.454565,9.029765,7.328938,8.579352,8.237204,3.283479,0.904134,0.666944,0.452894,0.000000,0.000000,0.002479,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,1.395868,0.000000 -601865.155000,4612645.550000,5615,3705,117.933891,174.521484,166.298355,155.551254,138.037201,127.542984,126.838852,124.351250,123.840515,126.724800,124.923149,137.508286,154.318192,169.492554,181.583466,190.517349,187.971893,174.211563,150.492569,131.666122,120.440506,117.583481,111.490913,84.442986,69.542168,84.573570,96.476044,69.947128,32.633076,13.871918,10.135555,9.867783,8.690095,10.347121,12.140508,5.806620,3.580996,3.408268,2.834713,2.857026,3.424795,1.528927,1.057026,0.814050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.955000,4612645.550000,5634,3705,113.920677,184.129776,173.476883,160.261993,142.642151,130.799179,129.989273,127.642159,127.633896,130.807449,129.121490,141.782654,159.195877,174.881851,187.030594,194.799179,195.022324,179.270279,155.675217,135.485138,124.468605,120.245461,115.063644,86.650421,71.964470,84.898354,97.716537,69.766129,30.906630,12.595884,10.460349,8.659516,8.690922,8.842161,10.242163,5.095050,1.503309,0.687606,0.934712,0.704960,0.242150,0.371901,0.000000,0.046281,1.318182,0.000000,0.000000,0.000000,0.000000,0.000000 -601872.555000,4612645.550000,5652,3705,127.673561,182.048782,170.503326,160.338043,145.602493,132.205795,132.511581,129.023972,127.585960,131.090088,128.966125,140.619034,158.065308,173.800842,185.850433,195.106613,192.660339,179.519852,155.420685,136.139694,125.354553,122.503319,116.445465,88.594223,73.123154,85.734718,97.585960,71.734718,31.875225,12.940514,10.585970,9.747123,7.209929,9.588444,9.157039,3.436372,0.595869,0.769423,0.351240,0.259504,0.000000,0.239670,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.955000,4612645.550000,5669,3705,128.127274,181.319016,173.856216,164.294235,147.938858,134.922318,133.963638,130.699173,129.856201,132.996704,130.219833,141.195053,158.583481,175.335556,187.542160,197.723984,194.930588,180.145462,157.393402,137.922333,125.864471,121.856201,118.963638,89.831421,73.112419,89.252907,98.971916,72.550438,34.327293,16.112415,10.814895,11.717371,9.157039,8.857864,9.164477,4.162817,0.958680,0.708267,0.085124,0.112397,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,3.354546,0.000000,0.000000,0.000000 -601881.355000,4612645.550000,5696,3705,130.857864,190.733902,173.981842,164.643005,147.295868,134.576859,133.130569,130.271088,131.006622,134.461166,130.535538,141.907440,158.766968,175.973572,187.221497,196.700836,193.990082,179.981842,157.006638,136.907440,126.370255,122.833069,117.072739,88.874397,72.312408,87.262825,98.411583,71.857864,34.006630,13.348778,10.642995,10.820678,7.976047,8.903320,8.750428,2.290915,0.234712,0.211571,0.194215,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.355000,4612645.550000,5736,3705,137.065292,181.446304,169.776871,163.289276,149.090912,135.314072,133.303314,130.669418,129.223145,133.884293,127.264465,138.314056,155.981003,173.377701,187.295044,197.774384,195.476868,180.005798,159.096710,140.741333,130.625626,126.766129,121.336372,92.005806,77.534721,91.881828,101.253731,73.154556,32.509937,15.991754,11.030598,12.501669,8.747947,9.913236,9.719024,5.987612,1.496697,1.386779,2.464465,0.709918,0.650414,0.000000,0.000000,0.042975,2.514050,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.955000,4612645.550000,5789,3705,137.704163,190.390091,177.580185,167.323975,148.563644,136.381821,134.059525,132.183487,131.712418,136.158691,132.522339,143.704147,161.059509,177.059525,189.638031,199.009933,195.728943,181.357056,158.555374,138.076050,126.621506,123.613243,118.109108,89.976875,73.737206,88.952087,99.249603,72.604973,35.142166,14.801671,10.737209,11.427287,7.372741,9.195883,9.264478,4.455382,1.231408,0.904960,0.909091,0.658678,1.020662,0.328099,0.740496,0.971901,0.000000,1.014050,0.881818,0.799174,0.000000,0.000000 -601915.555000,4612645.550000,5867,3705,103.788445,160.816559,168.626465,157.833084,143.089279,133.213242,130.469437,127.642990,128.081009,129.362000,130.072739,140.791763,158.990112,175.031433,187.031418,195.196701,194.229752,182.204987,159.089279,136.866135,126.188446,122.957039,117.072739,88.948776,73.287621,88.279350,99.155388,72.593407,34.816547,13.300844,10.642994,5.453732,7.805797,7.422327,7.980178,2.426452,0.767770,0.025620,0.052066,0.000000,0.000000,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,2.147108 -601938.955000,4612645.550000,5984,3705,99.688446,161.598373,167.110764,155.333908,142.804962,131.920670,129.300842,128.457855,128.557037,129.209930,130.590088,140.218201,159.019852,174.317368,187.094223,194.821487,195.267776,183.317368,157.978531,137.722336,126.441330,123.226456,117.490921,89.623154,73.251266,88.474388,99.912407,73.366966,34.771095,13.309109,10.681011,6.022324,7.704972,6.872739,6.484309,2.818190,0.208265,0.242976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.155000,4612645.550000,6170,3705,121.599190,167.070267,171.483490,158.037201,147.318192,135.590927,132.582657,131.103317,131.012405,132.995880,132.847122,144.326462,161.045471,177.657043,190.392578,199.185974,199.276871,187.161179,164.086792,142.276871,130.185974,125.566132,120.772743,92.466957,75.400841,90.177704,102.830597,78.938034,36.409111,15.142166,10.979357,5.505796,7.481006,7.236375,7.372741,3.304140,0.561984,0.048760,0.069422,0.187604,0.000000,0.252893,0.005785,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.755000,4612645.550000,6268,3705,132.313248,174.676865,171.362808,162.123154,149.701675,137.205811,135.619034,134.214066,132.247116,137.073578,135.759521,145.850433,163.701675,180.065292,192.668594,202.172729,200.891739,190.610748,165.445480,144.313248,132.123154,128.701660,123.900009,94.090103,77.263657,91.776047,104.833893,78.726448,37.032249,15.275224,11.263655,5.329762,6.945469,7.382659,7.681005,3.295876,0.636365,0.143802,0.065289,0.000000,0.011571,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.355000,4612645.550000,6321,3705,114.563660,178.633072,177.988449,164.864471,147.666122,136.013229,134.996704,132.806625,131.575226,132.996704,133.054565,145.054565,161.889267,179.071091,191.343811,200.715714,200.583481,186.707458,163.575226,141.757034,130.459518,127.203316,121.872742,92.889267,76.732254,91.781837,103.641335,77.938858,36.905804,14.800018,11.079358,6.647945,7.937203,7.265303,8.241337,4.314884,0.843804,0.318183,0.179339,0.285951,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.755000,4612645.550000,6373,3705,106.823982,180.061157,175.598373,162.507462,145.135544,134.838028,136.135544,132.689270,131.763641,132.152084,132.523972,144.077682,162.119034,180.044632,190.557022,199.292572,198.226456,185.284302,160.292572,137.887604,127.424805,123.639679,119.400009,91.135551,74.309113,89.829765,101.540504,73.185135,36.152088,13.126465,10.854566,8.371088,6.628111,9.486790,9.325633,4.091743,1.167771,0.285125,0.778513,0.000000,0.000000,0.000000,0.009091,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.955000,4612645.550000,6394,3705,108.712418,180.898376,177.724823,161.898376,146.303329,135.295059,133.733063,130.038864,128.972748,131.394226,131.551254,143.303329,161.964493,177.914902,190.121521,200.790939,199.923172,186.187622,161.708298,138.989288,129.138031,126.080185,120.427292,90.460350,75.534729,90.385971,101.187622,74.823982,37.088448,13.594234,10.947952,8.797534,7.188443,8.639683,10.783485,5.146291,0.986780,0.283472,0.266116,0.195042,0.147108,0.657852,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.755000,4612645.550000,6423,3705,144.718185,183.726456,180.379349,165.784302,150.147949,136.048767,135.709915,132.875214,131.957855,133.544632,132.734726,143.784302,163.379349,179.701660,193.420670,202.866943,201.486786,188.205795,163.900009,141.875214,130.147949,126.048775,122.809105,92.420670,77.015717,91.205803,104.114891,75.833900,37.023991,15.358696,11.164482,10.185140,8.265304,10.566959,11.595057,5.366124,1.161987,0.220662,0.204959,0.403306,0.122314,0.000000,0.197521,0.088430,3.279339,0.000000,0.000000,3.358678,0.000000,0.000000 -602031.355000,4612645.550000,6446,3705,112.500839,190.132248,183.221497,168.056213,148.084320,135.241333,135.398361,132.114059,131.469437,135.039688,132.609924,145.403305,163.601654,180.299179,191.877701,202.538849,201.778519,187.125626,162.753738,139.638046,130.398361,127.092583,122.836380,93.968613,77.274399,91.299194,104.266136,75.737206,37.142166,14.728944,11.166962,11.093405,9.200842,11.773569,13.164479,6.163646,2.318185,2.152067,2.199175,2.995043,1.295042,1.642976,0.170248,0.429752,2.990083,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.955000,4612645.550000,6469,3705,110.475220,180.195038,174.914062,161.126465,145.333084,133.605804,134.043823,129.291748,128.924820,130.709930,129.685150,142.528107,161.511566,178.996704,190.550430,202.244644,201.434723,184.971909,162.352081,140.231415,129.198364,125.785141,121.363655,90.586792,75.115715,90.876053,101.740509,72.633072,35.958698,13.369439,11.033077,12.359519,8.970263,9.556211,11.499188,5.789263,2.063639,1.593390,1.582646,1.285124,1.623141,1.004133,0.952067,1.572728,0.062810,1.209091,0.000000,0.000000,1.043802,0.000000 -602039.755000,4612645.550000,6488,3705,123.548782,178.430588,173.686783,162.827286,148.901672,135.025635,133.240524,131.488449,129.918198,133.496719,131.438858,142.339676,159.438858,177.207458,188.595886,198.761169,198.339676,183.546295,160.430588,139.546295,128.620682,124.496712,120.554565,94.017380,77.033905,91.604156,103.571098,76.628944,37.100021,14.514894,10.959523,8.142162,7.848774,8.738854,9.732246,3.379345,0.977689,0.300828,0.164463,0.098347,0.019008,0.178513,0.000000,0.382645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602044.755000,4612645.550000,6513,3705,119.686783,170.504974,167.504974,160.174393,144.199188,131.661987,129.951248,127.058685,126.075211,128.438843,126.637192,136.471909,154.033890,170.810760,183.604141,192.000839,192.852081,179.017365,156.347946,134.083481,123.595871,119.942978,115.281822,88.174393,73.777702,87.331421,98.422325,72.488441,33.455395,12.043818,10.480185,5.076042,5.953733,7.016539,8.522326,3.197527,0.285125,0.246282,0.161158,0.069422,0.000000,0.122315,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602052.755000,4612645.550000,6553,3705,103.053734,168.632233,170.219009,163.210739,147.318176,134.458694,132.235550,128.855392,128.260345,129.227295,128.747955,139.194214,155.673553,171.508270,184.086777,193.640503,192.590912,179.913223,157.747940,135.037201,125.210762,121.202492,116.045471,91.177696,73.731422,88.756203,100.409103,73.913246,35.268616,13.962827,10.549606,5.727283,6.414063,7.097532,7.395881,2.047111,0.338017,0.000000,0.277687,0.107438,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.555000,4612645.550000,6577,3705,110.804138,175.217361,170.580994,161.754547,144.779343,133.407440,131.357864,128.440506,127.250420,129.184311,128.589264,138.977692,155.457031,171.159515,183.010757,193.985947,192.490067,178.333069,156.242157,135.076859,124.349594,122.291740,117.572731,90.572739,74.465302,89.647125,100.324806,73.457039,35.622337,12.937208,10.688448,7.102490,7.084312,6.408276,7.781830,3.328104,0.881820,0.543803,0.159505,0.000000,0.009918,0.069422,0.000000,0.256199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602062.155000,4612645.550000,6600,3705,122.400841,167.747955,169.979355,160.367783,145.880188,132.458679,129.285126,126.847115,125.458687,128.929764,127.888443,137.070251,153.921509,169.855392,181.590927,191.475220,190.384308,178.615723,155.285141,135.252075,124.004143,120.483482,115.318199,90.177704,73.805801,88.772743,101.648773,73.714890,35.326466,14.607454,10.483490,5.093399,8.425635,6.285960,7.308278,2.862815,0.447108,0.220662,0.356199,0.062810,0.000000,0.000000,0.311571,0.603306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602067.555000,4612645.550000,6627,3705,108.494240,159.576859,169.560333,160.171906,148.609940,136.593399,134.180176,132.072739,129.866135,130.634720,130.659515,140.874390,156.477692,172.105789,183.642975,193.287598,191.700821,180.006622,157.196701,136.915710,126.990097,122.642990,116.618202,90.180191,74.890930,89.932251,101.461166,75.180191,35.857868,13.261175,10.601672,6.269433,7.326462,6.599185,7.422327,2.652897,1.013225,0.171901,0.562811,0.226447,0.390083,0.000000,0.000000,0.431405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.155000,4612645.550000,6660,3705,90.219025,158.640518,166.078522,158.185974,142.475220,130.929764,128.913239,125.409103,122.946297,125.078529,124.747948,135.615723,151.756210,167.657043,178.714890,187.971085,187.549606,175.037201,152.078522,130.698364,122.053734,117.367783,112.772743,86.318199,72.128120,87.466957,98.946297,72.822342,33.475224,14.504976,10.252086,5.514887,7.627288,7.079350,5.521500,2.078517,0.725621,0.108265,0.052066,0.000000,0.000000,0.139670,0.494215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.155000,4612645.550000,6675,3705,93.010765,158.324799,167.126450,158.324799,144.638855,134.176041,130.845459,126.919846,124.209106,127.308273,126.977699,137.432236,153.027283,169.754547,180.771088,189.440506,189.167770,177.531418,154.382645,133.498352,123.696709,118.886795,115.390923,87.944649,72.233910,88.349609,101.035553,76.076881,35.308289,16.213240,10.490101,6.476046,8.073567,10.222327,5.889268,4.507444,1.188432,0.254546,0.049587,0.549588,0.000000,0.127273,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.155000,4612645.550000,6695,3705,98.364479,156.339676,164.257034,158.025635,140.876877,130.628937,128.042160,126.042160,123.298363,124.025635,124.769432,134.744644,152.430588,166.785965,178.480179,187.777679,185.719849,174.794235,152.852081,131.356216,120.901665,118.100014,111.554558,85.785965,72.273567,88.661995,100.083481,73.422325,35.529774,14.462002,10.141341,4.790919,7.825636,6.710755,6.809929,2.326451,0.321488,0.094215,0.149587,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.155000,4612645.550000,6710,3705,81.658699,156.501678,165.542999,156.270279,142.890106,132.493393,128.493408,124.947952,123.766136,124.468613,125.311584,136.377716,151.981018,167.650436,178.683502,187.369446,187.328125,176.154572,152.724823,131.857040,120.691750,116.790924,112.063652,86.600845,70.914894,87.104973,102.104973,75.146301,35.848778,15.646298,10.187623,4.550425,10.101667,8.033070,6.372738,2.357857,0.621489,0.176034,0.158678,0.145455,0.076033,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602087.555000,4612645.550000,6727,3705,86.127289,151.019852,165.672745,157.069443,140.656219,130.631409,128.028107,125.201653,123.623146,124.085953,123.895874,135.499191,151.226456,166.548767,177.466125,186.937195,185.887604,173.061157,151.019852,130.482651,120.391747,117.201668,110.672737,85.276054,70.763657,87.226463,99.350426,74.193405,35.573574,13.523984,10.061176,4.454555,6.821501,6.619847,6.124805,2.249591,0.262811,0.359505,0.045455,0.078513,0.000000,0.000000,0.364463,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.355000,4612645.550000,6766,3705,94.623985,154.632248,165.524811,155.904968,139.987625,130.202484,126.855377,122.582649,121.665298,121.698357,121.979347,131.863647,149.673569,165.400848,175.698349,184.847107,183.541321,171.640503,149.615723,128.202484,118.409103,116.227287,108.954559,84.541336,68.012413,85.896713,98.301666,74.086792,34.086800,12.677703,9.904977,4.443812,8.191751,7.393402,6.138028,2.700832,0.238017,0.190083,0.000000,0.222314,0.000000,0.000000,0.193389,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.155000,4612645.550000,6780,3705,80.885139,151.637207,163.876877,156.785965,141.463654,128.546295,126.083481,123.455383,121.744644,122.232246,123.513237,133.579346,150.637207,164.257034,174.166122,184.290100,183.075226,173.033890,151.058685,128.314896,118.918198,115.199188,110.554558,82.463646,69.009102,84.604149,100.265305,73.901665,34.653740,14.760349,10.050432,7.685136,6.512413,6.746293,7.806623,3.809098,0.642978,0.114051,0.103306,0.323141,0.000000,0.090083,1.047108,0.000000,0.000000,0.000000,3.971901,0.000000,0.000000,0.000000 -602102.955000,4612645.550000,6804,3705,95.080177,148.485138,161.171082,152.295044,139.956207,128.245468,125.245461,121.171082,118.716537,119.898354,120.576042,131.518188,147.179352,163.625626,174.435547,183.964478,183.104965,171.716537,148.245468,128.187607,118.377693,114.377693,108.245461,81.716537,68.476868,84.319847,99.195877,73.766129,34.790932,12.027288,9.840514,4.837199,7.898362,6.522326,5.454556,2.471905,0.120661,0.001653,0.236364,0.020661,0.000000,0.061157,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.955000,4612645.550000,6839,3705,81.471092,152.404953,164.305786,151.289261,137.272720,127.991745,124.826454,120.892570,119.314056,118.504143,121.082649,130.776871,147.280991,162.785126,174.388428,183.305786,182.115707,170.512390,147.966949,127.016541,117.057861,113.925629,107.636375,81.537209,67.446297,82.677704,99.330597,72.289276,33.911591,13.963654,9.785142,5.028108,6.264474,6.481003,5.511581,3.710751,0.934712,0.065289,0.110744,0.138843,0.002479,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.755000,4612645.550000,6858,3705,80.773582,152.302490,163.757034,151.773560,137.897537,128.120667,124.161995,120.583481,119.079353,119.277702,119.790092,130.277695,147.641342,162.079346,173.476044,183.054565,181.095886,168.963654,147.550430,128.459518,117.500839,113.244644,106.509102,81.128944,66.310768,83.153740,98.798363,73.368607,35.624809,12.900845,9.682664,5.888440,8.190097,8.990924,4.906622,2.939676,1.195870,0.252067,0.233885,0.155372,0.000000,0.140496,0.000000,0.272727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.355000,4612645.550000,6876,3705,92.313232,148.949600,165.255386,154.742996,137.627289,131.032242,126.263649,121.742989,119.842163,121.495056,120.486786,131.271912,148.420685,164.081833,174.652084,185.387604,183.833893,171.123154,150.304977,127.561165,117.437202,113.255386,107.354553,82.685135,68.139687,85.999184,97.784309,74.181000,34.627293,12.709936,9.759523,5.182653,8.028114,7.387614,7.169434,3.999181,0.947110,0.289257,0.212397,0.312398,0.219835,0.000000,0.000000,1.606613,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.755000,4612645.550000,6893,3705,79.965302,151.378555,160.196732,152.833099,137.576889,127.279350,124.634727,120.105797,119.618195,118.444641,118.923981,130.304153,147.114075,162.494232,174.056213,182.618210,181.279358,169.469437,147.295883,126.957039,116.039680,111.791748,107.618195,80.519020,65.684319,82.766960,97.676048,72.758698,33.628944,12.100017,9.783490,5.471912,5.332245,6.742989,6.044640,2.438848,0.362812,0.234712,0.044628,0.261158,0.000000,0.014050,0.333885,0.112397,0.000000,0.000000,1.330579,0.000000,0.000000,0.000000 -602123.955000,4612645.550000,6909,3705,80.975220,151.247955,162.685974,152.545471,141.033081,129.049606,126.157043,123.173569,120.421501,121.710762,121.495880,132.561996,148.512405,163.942169,176.512405,185.842987,185.619858,172.256210,148.760345,129.735550,119.652908,114.652908,108.818199,83.826462,66.983490,84.842995,98.628113,73.462830,34.966957,13.956215,9.892581,6.281830,7.041336,7.729764,7.681831,2.952899,0.212398,0.320662,0.036364,0.121488,0.196694,0.066116,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.355000,4612645.550000,6931,3705,88.567787,148.782654,163.782654,154.014053,139.311600,129.171082,126.204140,122.228943,121.278534,121.022331,121.832253,132.022324,149.898361,165.014053,175.567780,184.890106,184.989273,171.195877,149.584305,129.014053,117.857040,114.509933,109.518196,83.815720,68.658699,85.162827,100.047127,73.476875,35.270267,14.804977,9.956217,6.455383,8.147123,8.704972,7.399185,3.338848,0.788431,0.101653,0.111571,0.409919,0.112397,0.068595,0.000000,0.189256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602132.355000,4612645.550000,6951,3705,87.623985,149.638031,162.001663,152.852921,137.910767,128.307449,124.133896,121.001663,119.332245,119.985130,120.290916,130.282654,147.076065,162.257858,174.224792,184.282639,182.538834,171.059494,149.175217,126.902489,117.076042,112.357033,106.590927,81.847122,67.954559,84.728943,98.282654,71.076057,34.489273,12.128117,9.690101,5.923979,7.971917,5.820672,7.081002,3.365296,0.606613,0.358679,0.118182,0.390084,0.092562,0.068595,0.650414,0.275207,0.000000,0.000000,0.000000,1.117355,0.000000,0.000000 -602138.355000,4612645.550000,6981,3705,90.947952,146.733078,164.865311,153.840515,138.476883,128.485138,126.204147,122.981010,121.005806,121.509933,121.228943,131.055389,148.493408,165.435562,174.567795,185.295074,183.096725,171.790939,148.947952,128.394226,118.584312,115.666962,107.972748,83.584312,67.493408,83.799194,98.997536,72.295059,32.782665,11.640512,9.815722,6.203318,6.440511,8.319847,6.240508,2.533062,0.404959,0.047108,0.108265,0.101654,0.223967,0.145455,0.052066,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.755000,4612645.550000,7028,3705,93.507454,159.408279,167.143814,155.738861,141.788452,129.664490,126.647957,122.945473,122.457870,122.044647,123.251259,134.276047,150.557022,165.838043,176.168594,186.317352,185.838013,173.242981,150.647949,130.400024,119.069443,116.259521,110.763657,83.697540,69.730598,84.606628,97.656219,72.829773,36.019852,13.951259,10.069440,7.259516,7.743818,7.949600,7.352079,4.156205,0.470249,0.374381,0.073554,0.271075,0.213223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.955000,4612645.550000,7059,3705,89.114067,155.852890,162.523132,152.043808,137.895065,127.820671,124.746284,121.457031,119.209099,120.159508,119.771080,130.134720,147.572739,162.919830,174.101639,183.547928,183.465286,171.151230,147.308273,127.696701,117.721497,115.688438,109.027290,82.390923,68.176048,84.316544,97.126450,70.853737,34.903324,12.624810,9.911589,7.304146,7.800014,8.960341,7.570261,3.049592,0.881820,0.436365,0.089257,0.176034,0.000000,0.000000,0.190083,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.755000,4612645.550000,7083,3705,83.255394,155.652084,166.222336,155.114899,140.668594,130.090088,127.495056,123.040504,121.949600,122.106621,123.090096,133.544632,150.470245,166.288452,176.957870,186.528122,185.090103,173.627289,150.875214,129.784302,118.627281,115.660339,110.172737,84.552910,69.197540,84.891754,96.255386,70.585968,32.833904,13.999191,10.015722,6.771913,7.305799,8.314064,7.909930,3.819840,0.741324,0.095868,0.052066,0.096695,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.555000,4612645.550000,7117,3705,89.595879,161.488449,167.794235,157.149597,143.174377,132.017365,129.471909,125.331421,124.199188,124.686790,125.554558,134.967789,151.744629,167.529770,177.620667,186.504959,186.447098,172.777695,150.232224,130.042160,120.281830,116.744644,111.100014,85.124809,69.752907,84.942986,95.992577,72.025635,32.901672,12.671918,10.100018,7.111583,8.401669,8.380177,8.020675,3.065295,0.875210,0.609919,0.322315,0.312398,0.148761,0.065289,0.068595,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.955000,4612645.550000,7139,3705,109.414886,157.266129,161.877716,153.679352,139.456207,127.373566,127.307449,122.497528,121.233070,121.249596,121.877693,132.993393,149.745483,163.885971,176.373566,185.861145,184.695862,172.200012,149.588440,128.183487,118.538849,115.497528,109.472740,83.943817,69.026466,82.985130,95.241333,69.869438,30.927292,12.084314,9.952085,6.225629,6.790097,7.381002,5.789267,3.648767,0.017356,0.168595,0.306613,0.014050,0.000000,0.127273,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602175.355000,4612645.550000,7166,3705,85.219032,158.351242,168.458679,156.161179,140.690079,130.690094,128.838852,124.425636,123.243820,123.657043,124.028938,134.111572,150.400848,166.136368,176.822311,187.524796,187.103302,174.417358,150.954559,131.103317,119.458694,117.136383,111.590927,84.334732,70.756218,84.706635,95.549614,68.177704,31.938038,12.623158,10.144648,8.080177,7.794230,8.864477,7.887615,2.319013,0.571075,0.427274,0.251240,0.171901,0.000000,0.225620,0.850414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602183.555000,4612645.550000,7207,3705,106.123978,160.438034,166.685974,157.330597,142.132248,131.578522,129.958679,125.206619,123.140503,125.413231,124.396706,134.223145,151.239685,165.636383,178.033051,188.140503,187.462814,174.330582,150.801666,130.785126,119.950424,117.578522,112.181824,85.991753,71.933899,86.429771,96.495880,70.859520,31.892584,14.376049,10.198366,8.043814,8.846297,9.149599,7.518195,2.821492,0.885127,0.186777,0.409092,0.172728,0.000000,0.065289,0.546281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602192.555000,4612645.550000,7252,3705,93.980186,170.385147,165.120697,158.211594,142.616562,131.409943,130.021500,126.591751,124.616539,126.145470,124.666130,135.831421,151.170273,167.021515,177.955399,189.046310,187.864487,174.137222,151.938873,131.393402,121.302490,118.203316,112.690926,86.195061,71.434731,84.847954,97.484322,70.368614,31.467787,14.071917,10.244648,6.617367,6.645469,6.739683,8.223979,2.247938,0.683472,0.564464,0.097521,0.057852,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,1.619835,0.000000,0.000000 -602196.555000,4612645.550000,7272,3705,96.614891,163.856216,166.434723,157.137207,140.839676,130.988449,129.393402,126.566963,124.872749,126.062828,124.674400,135.418198,150.542160,168.244644,179.690918,189.897537,187.930588,174.600006,152.319016,131.178528,121.393410,119.029770,113.690933,87.690933,71.723991,85.228119,97.137215,68.914070,30.740515,12.877703,10.335556,9.659521,7.602494,7.202490,7.864474,3.842155,1.351242,0.155372,0.000000,0.000000,0.123141,0.000000,0.132232,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.155000,4612645.550000,7300,3705,100.273567,173.015701,166.693390,157.379364,140.999176,128.247116,127.619019,124.205795,123.767776,126.032242,124.015717,135.610764,151.057037,167.544632,179.329758,189.833893,188.676865,173.883469,151.081833,130.321503,119.304970,117.875221,111.354553,86.619019,70.362823,85.139679,93.189270,66.536377,32.428944,12.701668,10.123159,7.715714,7.615716,9.672740,10.191750,5.785959,1.547109,1.737191,2.117357,1.299174,1.214050,0.335537,0.728100,0.320661,0.000000,0.000000,0.000000,0.000000,0.000000,2.338843 -602208.355000,4612645.550000,7331,3705,116.153740,174.790100,165.674393,158.930588,144.500854,131.029770,130.476044,127.335548,126.327286,130.864471,127.360344,139.690933,155.004974,172.839676,184.864471,197.798355,196.343811,182.657867,159.765305,139.624817,128.699188,125.905800,119.509102,91.145470,76.319031,92.558693,101.856209,73.922333,34.327293,15.642166,10.864482,7.979352,9.267783,8.885964,7.969435,4.001661,0.552894,0.550414,0.000000,0.299174,0.247934,0.000000,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.155000,4612645.550000,7365,3705,105.628120,175.272751,167.396713,160.983490,143.115723,131.198364,129.644638,125.404976,124.818199,129.520676,126.231422,138.446304,153.892578,171.809937,184.561996,196.925613,195.735535,180.512405,160.322327,140.256210,130.363647,125.933899,120.727287,91.826462,77.008278,92.983490,104.371918,74.537209,34.702499,14.079357,10.975225,9.882658,7.496708,8.230593,8.004972,3.396705,0.776862,0.112398,0.000000,0.152893,0.071901,0.000000,0.624794,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.555000,4612645.550000,7382,3705,128.984314,173.372726,168.099991,160.521484,141.876877,130.496704,127.612411,124.992577,123.538033,126.918198,123.554558,132.372742,148.447098,163.488434,176.298340,188.058670,184.711563,170.595871,152.174377,133.819016,122.959518,119.000839,113.463646,87.604149,72.174393,87.992577,98.893402,70.976044,32.041344,14.352909,10.314894,10.833073,10.519023,8.166130,9.568606,4.509101,0.386778,0.023141,0.493390,0.133885,0.052066,0.017356,0.226447,0.134711,0.000000,0.000000,0.000000,0.000000,3.957025,0.000000 -602224.555000,4612645.550000,7412,3705,107.154549,171.311569,170.261978,163.931396,145.749573,132.088425,128.766113,125.956200,125.799171,129.592560,124.914879,136.658676,151.625610,168.154541,180.898346,192.542969,191.220657,176.452057,155.815689,136.890076,127.443802,124.055374,118.245453,90.890099,75.344643,93.617371,100.749596,73.352913,35.156219,16.477703,10.749605,9.272739,8.785964,10.245471,9.374393,4.818191,0.725621,0.653720,0.307439,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602228.155000,4612645.550000,7430,3705,115.652901,170.289276,168.140518,157.743820,139.338852,127.074387,124.198357,120.000008,118.743813,122.181824,118.000008,126.471085,139.933899,153.644638,165.132248,174.900848,173.661179,158.438034,141.157043,123.454552,113.966949,111.264473,104.727280,79.008270,68.322327,82.239677,88.900833,62.537205,30.752087,11.028941,9.520680,9.785963,6.666956,6.469436,6.369433,2.600833,0.202480,0.108265,0.178513,0.171901,0.129752,0.044628,0.000000,0.344629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602231.355000,4612645.550000,7446,3705,130.585144,167.849625,167.593430,157.378555,139.981842,127.692574,125.824806,122.874397,121.180183,125.204971,120.601669,131.485962,145.114090,159.965332,172.585159,183.965332,181.915741,169.130615,149.353760,131.147125,120.601669,116.833069,112.345467,84.378525,72.667786,87.081009,94.461174,68.742165,32.504978,13.252910,10.213243,10.561172,7.461171,6.952078,8.346293,4.030587,1.076862,0.401654,0.205786,0.025620,0.009091,0.305786,0.372728,0.924794,0.000000,0.000000,0.000000,0.000000,1.800000,0.000000 -602235.755000,4612645.550000,7468,3705,130.941345,155.023987,155.924820,142.709930,127.428947,117.346298,113.850433,111.007454,110.288452,112.462006,112.205803,123.057045,139.792587,154.693405,167.271927,178.247131,180.197540,168.858704,148.065308,127.511589,117.536385,113.709938,108.445473,82.974396,66.354568,83.759521,96.189278,70.990929,31.726465,11.781836,9.858696,5.417365,8.936377,7.969434,9.907453,4.468603,0.703309,0.634712,0.097521,0.000000,0.163637,0.000000,0.552068,0.342976,0.000000,2.030579,0.000000,0.000000,7.361984,0.000000 -601413.155000,4612635.550000,3355,3755,161.036362,145.747131,130.069443,115.003326,100.681007,90.581841,86.077705,85.218201,84.441345,86.573570,87.813240,98.606628,116.474396,133.127289,146.664459,157.499176,159.193390,151.342148,132.565308,113.391754,103.168617,101.730598,95.581841,68.400017,48.928944,67.573570,86.119026,66.094231,29.069441,9.709931,8.689276,13.398364,11.104146,12.927287,14.378529,12.616543,3.634718,2.184302,1.507442,0.942151,1.420664,1.685954,1.474382,1.968598,24.592566,21.098351,21.084303,12.095045,22.318186,18.986778 -601416.155000,4612635.550000,3370,3755,143.356216,139.571091,133.157852,118.670258,105.992577,94.133080,91.992584,90.414070,90.075226,92.124817,93.414070,104.306625,123.033897,138.893402,153.645462,164.926453,165.273560,154.835556,131.496704,111.149597,99.686798,97.100014,91.736366,63.372749,44.554562,63.430599,77.306633,55.893410,24.529772,10.101667,8.339688,12.486793,7.848774,10.209931,10.827287,9.386788,2.280998,0.459506,0.849589,0.696696,0.433886,0.784299,0.929753,1.084299,17.528929,19.332235,12.826448,11.140500,10.798349,17.363638 -601420.755000,4612635.550000,3393,3755,151.677704,138.644638,135.834732,123.231422,110.801659,99.421501,96.842995,95.297539,94.776878,96.611588,97.983490,108.719025,127.305801,144.289276,157.314072,167.842972,166.413223,156.743820,134.256210,114.743813,103.107452,98.818199,93.363655,65.090927,48.239689,63.801674,78.702492,57.917374,26.298365,10.329767,8.487622,11.243815,7.682658,9.497535,10.272741,5.586785,2.120666,1.002481,1.100829,0.133884,0.295869,0.706613,0.485126,1.453721,10.309919,5.778513,12.576035,4.128926,7.352893,19.908264 -601427.755000,4612635.550000,3428,3755,128.594238,143.582642,139.508270,126.739677,113.301666,104.491753,100.243820,98.772743,97.962830,100.566132,101.061996,111.235550,130.342987,147.243805,159.962830,169.293396,170.235550,158.409103,133.938019,114.078529,103.227287,99.095055,93.772743,66.599190,48.747955,65.070267,77.566139,56.541344,26.513243,9.995883,8.524813,7.859516,6.781003,8.274393,8.314890,5.419016,0.696697,0.314878,0.090083,0.042149,0.000000,0.000000,0.886778,0.871075,9.189258,9.192563,7.042150,4.542150,6.094216,5.352067 -601438.555000,4612635.550000,3482,3755,102.135551,146.447952,142.274399,130.191742,116.571907,107.175217,105.439682,102.960342,102.472740,104.869431,105.852905,115.332245,133.795044,149.481018,162.662842,173.100845,172.547134,160.249619,137.200027,116.885963,105.712410,101.142159,96.290916,69.257866,52.547127,66.786797,77.406631,57.671093,24.438034,8.730594,8.753738,6.986789,7.691749,7.228113,7.625633,3.459509,0.447935,0.049588,0.233885,0.000000,0.000000,0.183471,0.246282,0.188430,8.634712,5.314051,0.798347,2.112397,3.551240,1.825620 -601455.555000,4612635.550000,3567,3755,118.789276,150.521500,148.670258,136.529770,123.422325,113.752914,111.100021,108.843826,108.860352,111.538040,111.587624,121.670265,138.967789,156.133072,168.157867,177.595871,177.992554,167.488449,143.215714,123.381012,111.033905,107.281837,101.645477,74.637215,56.347950,71.752914,85.381012,63.744644,30.100019,12.326465,9.240514,6.747946,8.757039,7.497533,8.613238,3.414056,1.106614,0.152893,0.309092,0.064463,0.509092,0.167769,0.765290,0.000000,1.154546,3.039670,0.000000,3.127273,3.220662,0.000000 -601474.755000,4612635.550000,3663,3755,130.061172,148.866943,148.908264,140.792587,128.023987,116.767792,115.139687,112.379356,111.676880,115.189278,114.685143,125.751259,143.114899,159.503311,173.652069,181.767776,181.767776,171.090088,147.974380,125.280182,114.825638,111.619026,105.354568,77.404152,58.081837,75.131424,88.247124,65.858696,29.751259,12.451257,9.577704,6.369433,7.907452,7.300841,7.664476,3.557031,0.690911,0.305787,0.028099,0.178513,0.028099,0.080992,0.130579,0.000000,1.063636,2.008265,0.000000,0.834711,0.000000,0.000000 -601481.355000,4612635.550000,3696,3755,140.716537,182.774384,166.385956,155.551254,138.080170,124.691742,122.617363,119.757858,119.361168,125.939682,119.683479,131.700012,148.336380,164.154556,178.187607,188.700012,185.757858,171.485138,150.881821,131.542984,119.476868,116.600838,111.518188,82.361168,66.088455,82.080177,93.675217,67.336380,32.485146,13.514893,10.138035,11.559519,8.404974,8.057865,7.043816,3.473563,0.579341,0.219835,0.104133,0.067769,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.155000,4612635.550000,3730,3755,130.113235,187.501663,164.526459,154.559509,138.708267,124.485130,123.666954,121.964470,121.493401,126.319847,121.823975,132.823975,148.947937,166.022324,179.551254,189.683487,187.534714,173.071915,151.857040,130.898361,120.121498,116.881828,112.972740,84.005798,67.303329,83.047119,93.650421,67.005806,31.559523,12.374397,10.270267,15.416545,7.347122,7.735552,9.153733,3.710751,0.880168,0.562811,0.236364,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.355000,4612635.550000,3746,3755,127.106621,182.908264,164.999176,155.602478,138.800827,124.924805,124.238846,121.800827,121.503311,127.478516,121.420662,134.065308,149.280167,166.065292,179.990906,189.751236,188.470245,173.214050,151.751236,131.321503,119.933060,117.114876,113.172729,83.685143,68.585968,83.709938,94.007454,69.544647,32.083488,13.676050,10.288448,10.456214,7.293402,8.509933,8.559519,3.531413,0.461158,0.346282,0.042975,0.084298,0.000000,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,1.069422,0.000000,2.204133 -601494.155000,4612635.550000,3760,3755,129.809113,181.321503,164.255386,155.048782,139.172745,125.263649,124.387611,122.073563,121.503319,126.098358,121.247116,133.478531,149.271927,167.222336,180.329773,189.544647,187.974396,174.354568,152.197540,131.412415,121.387611,117.676872,112.263649,83.437210,67.685143,82.999191,94.924805,69.007454,32.503326,13.524812,10.205805,8.781007,8.504148,7.090923,9.232245,3.804967,0.510745,0.351241,0.471901,0.049587,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,1.322314,0.000000 -601496.955000,4612635.550000,3774,3755,118.095871,182.525635,163.500839,155.773560,138.368607,125.277687,124.128929,121.947113,121.947113,125.442978,122.310745,133.013229,150.244644,167.236374,179.434723,190.236374,189.310760,173.798355,151.343811,132.674377,120.550415,117.327278,113.236374,84.112411,68.748779,83.004982,95.137192,67.823158,32.401672,13.613242,10.294234,10.104147,8.781008,7.669436,9.289270,3.479348,0.574382,0.085951,0.104959,0.105785,0.000000,0.000000,0.004959,0.000000,0.000000,1.276033,0.000000,0.000000,0.000000,0.000000 -601500.755000,4612635.550000,3793,3755,104.128944,169.674377,162.930588,152.872726,135.550430,122.831421,122.401665,119.732246,119.459518,123.451256,121.302490,131.591751,148.178513,165.823151,177.657852,187.864441,186.757019,173.715683,151.203308,130.261185,119.905800,117.451256,111.690926,82.500839,67.533905,79.723991,93.566963,66.633080,30.814896,11.431425,10.153739,8.314065,6.804974,7.261171,7.727284,2.811577,0.890912,0.035537,0.090083,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.355000,4612635.550000,3831,3755,115.812408,174.696701,162.019028,154.399200,137.341339,124.531418,122.969437,120.804146,120.209106,122.622330,121.176048,132.845474,150.481842,167.043823,178.779343,189.002487,187.101654,173.597534,151.209106,131.076874,120.192574,118.010757,111.390923,82.597534,67.308281,82.415718,95.374397,69.498360,33.399193,13.143821,10.126466,7.219850,7.074395,8.225636,7.251253,2.517362,0.533060,0.047108,0.036364,0.055372,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.955000,4612635.550000,3849,3755,92.651260,164.282669,158.852921,146.439697,133.158691,120.150429,121.580185,118.001671,117.381836,119.861176,118.100845,129.588440,147.216553,163.514069,175.431427,186.241333,183.604980,171.431427,149.753738,129.332245,117.687622,114.588448,108.927292,80.555382,63.960350,77.142166,90.894234,66.530594,28.242992,11.044644,9.902499,7.350428,5.378523,5.747120,6.845466,2.171907,0.231406,0.242150,0.203307,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.130579,0.000000 -601517.555000,4612635.550000,3877,3755,108.501671,169.972748,159.311600,151.030609,137.195892,124.344643,123.683487,120.063644,120.559517,121.956207,121.526459,132.972748,150.121521,166.427292,177.989288,188.947952,187.914902,175.600845,152.369446,131.609116,120.476868,118.311577,111.972740,83.179367,67.377708,80.460358,93.989273,68.881844,31.815722,11.968613,10.179359,8.776050,7.411586,8.719024,7.401665,2.393394,0.532233,0.114050,0.050413,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601520.955000,4612635.550000,3894,3755,100.502495,167.246307,163.419846,152.411575,137.279343,124.246292,124.188438,121.750427,120.560349,122.180183,122.031418,133.882645,152.163635,167.609924,179.775208,189.998352,188.907440,176.733887,153.552078,131.800003,121.370262,118.543816,113.345467,84.031418,69.576874,81.105797,95.419846,69.601669,31.585144,13.470265,10.304151,8.522329,7.583487,9.374394,9.552907,3.768603,0.558679,0.228926,0.468596,0.000000,0.447934,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.555000,4612635.550000,3917,3755,116.404144,170.313232,166.503311,152.065292,136.858688,125.238861,124.271919,120.610764,119.850433,121.569443,122.015724,132.792572,150.255371,168.172729,179.478516,188.329758,187.461990,175.685120,152.428925,132.321503,120.767792,117.709938,112.354568,83.214066,66.842171,80.544647,94.751259,71.371094,32.428944,13.151258,10.214068,7.960346,7.642164,9.197535,8.342162,2.668601,0.358679,0.382646,0.050413,0.113223,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.555000,4612635.550000,3932,3755,103.786789,163.919022,165.456223,152.522324,136.852905,126.009926,123.778519,121.092575,120.158684,122.158684,122.629761,133.538849,151.357040,167.431427,179.348770,188.844635,188.489273,176.001663,152.712402,132.753723,120.431412,118.985130,112.290916,83.323975,67.976875,80.902489,96.084305,69.877693,33.456215,13.116547,10.208283,8.244644,8.580181,9.615718,9.099187,3.445462,0.562812,0.054546,0.156199,0.000000,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.145455 -601532.355000,4612635.550000,3951,3755,107.356216,160.860336,161.604141,152.463654,136.554565,123.587624,123.579361,121.951263,119.703323,121.637215,122.215721,133.414078,151.480179,167.728119,179.430588,187.604141,187.091751,175.628937,151.215714,131.455399,120.347954,117.257050,112.009109,82.025642,66.885147,80.124817,94.000847,70.860352,31.025639,12.794232,10.182665,8.228938,7.317369,6.743815,8.455385,3.295050,0.458679,0.048760,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,1.175207,0.000000,2.028926,0.000000,0.000000 -601535.155000,4612635.550000,3965,3755,102.309113,161.276031,163.251236,151.085953,135.309097,123.639687,123.201675,121.251259,119.887619,120.160347,121.581841,132.019852,150.416534,166.573563,178.928925,187.333893,187.309097,175.267776,151.424789,130.557037,119.871094,116.887619,110.672745,82.937202,66.962006,80.325630,94.515724,69.135551,31.565311,12.201672,10.061176,6.733898,6.982658,7.644643,7.530590,2.950421,0.632233,0.262811,0.145455,0.178513,0.082645,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.155000,4612635.550000,3980,3755,108.589264,161.853745,165.539688,152.812424,138.614059,126.721497,125.936371,122.787613,121.052071,122.349594,122.944641,133.969437,153.027298,169.308289,180.647125,189.399200,189.490112,177.787628,153.754562,133.002487,122.142982,118.581001,113.027283,84.316544,68.209106,81.308281,96.333061,71.837204,34.718201,14.708283,10.275226,9.560345,8.552082,9.276049,7.512409,3.021494,1.034712,0.281819,0.327273,0.000000,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.355000,4612635.550000,3996,3755,103.928108,158.142975,164.349594,150.622314,135.126450,126.043808,124.250420,121.614059,121.440506,122.266945,122.622322,133.622314,152.878525,168.027283,180.795868,189.233887,188.663635,177.349594,153.506622,132.572739,121.457031,119.043808,111.936371,84.308281,66.853737,82.721504,96.142982,70.969437,33.878532,15.000844,10.176053,6.725633,8.540513,7.661998,7.095055,2.764470,0.486779,0.216530,0.099174,0.046281,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.955000,4612635.550000,4009,3755,104.176056,159.994217,160.539673,152.184311,137.399185,124.101677,124.101677,120.514900,119.142998,121.275230,121.680191,132.655380,151.655380,167.506622,179.663635,188.258682,187.498352,176.076859,153.076859,132.316544,119.828949,117.531425,111.481834,82.266960,67.300026,80.779350,93.663658,70.142998,32.035557,13.233075,10.134729,5.903318,8.402493,7.917370,8.642987,3.842156,0.601654,0.094215,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.349587,0.000000,0.000000,0.000000,0.000000 -601546.955000,4612635.550000,4024,3755,106.139679,162.709915,163.007446,151.643799,135.982666,124.924797,124.181000,120.957863,119.643814,121.751251,121.842163,133.676865,152.230576,167.412399,179.519836,188.247116,186.891739,175.569427,153.205795,131.412415,121.164474,117.371086,111.809097,83.660339,66.015724,82.230591,95.982658,69.858688,34.379364,13.546299,10.164481,7.058692,7.223156,7.574394,7.960346,3.053725,0.513225,0.202480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.155000,4612635.550000,4045,3755,94.744644,156.769455,163.232239,149.686813,134.959518,125.091759,122.744652,119.331421,118.926468,119.637199,120.314896,132.232239,150.381027,166.058685,178.595886,187.447113,186.017365,175.207458,151.372757,130.728119,119.810760,115.860344,110.281830,82.075218,65.876877,79.529762,94.744652,69.637199,32.182667,13.009109,10.025639,6.923979,7.957039,7.657865,7.771090,4.124801,0.538018,0.158678,0.215703,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.755000,4612635.550000,4068,3755,106.563652,154.282669,163.836395,151.770279,137.390091,126.786789,124.282654,122.009926,121.753731,122.307449,123.960342,134.241333,152.282669,167.745483,180.216553,189.076065,189.456223,176.208298,154.175232,132.472748,122.001663,118.117363,112.381836,83.902496,67.530594,83.464478,97.018188,71.662827,35.009933,12.914894,10.216549,7.931421,8.716545,9.838860,9.877700,3.987612,0.831407,0.113224,0.000000,0.110744,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.955000,4612635.550000,4084,3755,103.428947,158.544647,161.453735,149.999191,136.759521,125.470268,123.081841,121.800842,120.478531,121.470268,122.701675,133.379364,151.486801,166.883484,179.255386,188.470261,187.114899,175.875229,152.619034,131.635559,120.304977,116.114899,111.627281,83.280182,66.156219,80.941345,96.189270,69.164482,33.098366,13.401671,10.147953,4.723153,7.889272,7.832247,8.813238,2.088436,0.557027,0.090083,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.355000,4612635.550000,4101,3755,116.216545,159.142181,163.662842,151.266144,139.051270,127.902489,126.770256,124.026459,123.447945,123.960342,125.092575,135.381821,154.257874,169.745483,182.621490,190.538834,191.836365,179.224808,156.200027,134.249603,122.547119,119.514061,113.018188,85.447945,68.538864,82.786797,97.183479,71.968613,34.943821,15.482663,10.274400,8.098361,8.719851,9.466132,7.871916,2.833892,1.349590,0.376034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.880165 -601565.755000,4612635.550000,4118,3755,112.297539,161.032257,162.900024,150.007477,137.288437,127.585968,125.594231,122.453735,122.081841,122.875229,123.346298,134.652084,152.462021,167.635544,180.519836,189.106628,188.090103,178.181000,153.181030,131.693405,120.652084,116.850433,112.536377,83.288452,66.602493,82.594231,95.346291,70.280182,31.081837,12.748778,10.230597,6.423979,6.611587,8.571090,8.404975,2.725627,1.009920,0.190910,0.008265,0.143802,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.355000,4612635.550000,4136,3755,104.138863,160.213226,161.783478,152.642975,137.485977,128.171921,124.766960,122.411583,121.948776,123.295883,123.915718,135.163666,152.915710,168.998352,181.386780,190.337219,189.081009,177.824799,153.849594,131.609940,121.750427,118.692574,112.709114,83.337212,67.560356,80.998367,94.403328,71.345474,31.370266,12.619025,10.246301,7.141335,8.056215,7.689270,7.817369,2.541330,0.776035,0.194216,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.355000,4612635.550000,4151,3755,111.775223,157.519836,159.428925,149.164459,137.329758,125.627281,125.371086,123.164474,121.379349,122.709930,123.040504,133.900009,152.395874,167.561157,180.304962,189.032242,188.147934,176.528107,152.718185,132.313232,121.313232,118.247116,113.263649,84.230591,66.693405,83.635551,96.850426,71.404144,33.668613,13.225637,10.296714,6.722327,6.858692,8.284312,7.993405,2.647115,0.809094,0.114050,0.091736,0.053719,0.186777,0.364463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.755000,4612635.550000,4168,3755,103.308281,150.676041,159.477692,150.560333,135.965317,125.180183,123.304146,121.634727,120.477699,121.328941,122.221504,133.642990,151.064468,166.874390,179.246292,188.692566,187.684311,176.238022,153.089264,130.990097,120.676048,117.047951,110.890915,83.593391,64.585144,83.238022,95.915710,69.866119,31.849609,13.952910,10.081010,5.788443,6.663651,7.565303,5.884310,1.817361,0.454547,0.105786,0.161984,0.000000,0.000000,0.142149,0.000000,0.131405,1.166942,1.128099,0.000000,0.000000,0.000000,0.000000 -601579.155000,4612635.550000,4185,3755,104.497536,155.923996,162.527298,150.436386,136.320679,127.965302,124.676048,121.717369,120.940514,122.072739,123.626457,133.783493,152.502502,168.353745,180.965317,189.824814,188.221512,176.386795,154.147125,132.370270,121.196709,118.477699,112.709106,84.056213,67.733902,83.006622,97.279350,70.659523,33.965309,14.090928,10.246301,8.810759,7.554560,9.118197,9.354560,3.826454,0.310745,0.219836,0.150413,0.280993,0.000000,0.000000,0.000000,0.000000,0.000000,2.471075,0.000000,0.000000,0.000000,0.000000 -601585.555000,4612635.550000,4217,3755,100.439697,159.145477,160.699188,150.302490,136.980179,127.195061,125.120682,122.162003,122.600021,123.583488,123.566963,135.104141,152.442993,169.195038,181.046295,189.963654,189.459518,178.095886,154.608276,132.285965,121.864487,117.500847,112.418205,82.889275,67.277702,82.748779,96.905807,72.442993,33.773575,13.580182,10.219853,6.757864,8.471916,8.057039,8.185138,3.108272,0.673556,0.070248,0.094215,0.000000,0.000000,0.603306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.355000,4612635.550000,4236,3755,100.965309,157.385147,161.038040,150.434723,136.790100,127.046295,124.666130,122.583481,121.938858,122.302490,123.624809,134.765305,151.914062,168.277710,180.327301,189.996704,187.823151,176.947144,153.062820,132.004974,120.476044,118.054558,111.418198,83.376869,66.723984,83.897545,96.955391,72.137215,33.343819,13.338862,10.128945,6.155385,8.278529,7.181833,7.179354,2.813231,0.468597,0.040496,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.004132,2.304132,0.000000 -601592.755000,4612635.550000,4253,3755,111.577705,155.438034,160.148773,152.355392,136.677704,127.768608,124.752083,122.743820,121.429771,124.214890,123.793404,135.396713,152.289276,169.066132,180.842972,190.603302,190.173553,177.247940,155.033081,131.305801,120.809937,118.264481,112.000015,83.446304,67.223160,83.644653,96.396721,72.859520,34.016548,13.502498,10.181837,6.756212,7.111587,7.197536,7.628113,1.761989,0.708267,0.054546,0.000000,0.033884,0.000000,0.000000,0.000000,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.755000,4612635.550000,4273,3755,101.652077,157.325638,161.466141,150.771927,135.309097,126.176872,125.449600,121.474388,120.796707,122.102493,123.234718,133.887619,152.433075,167.309113,179.945480,189.366959,189.143814,178.044647,153.581833,132.011581,121.044640,115.912407,111.400009,81.656219,66.796707,82.565300,96.069435,71.978531,33.532249,12.922333,10.127292,5.605799,6.260346,7.119850,6.510758,3.309925,0.268596,0.000000,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.955000,4612635.550000,4294,3755,103.596718,154.553741,159.595062,149.776871,135.595062,126.462830,122.611588,121.198364,119.809937,121.479355,122.851257,133.760345,152.289276,167.338852,179.917358,189.396698,188.669418,176.231400,152.834732,130.942169,120.611588,117.239685,111.363655,82.049614,66.909111,82.462837,95.983498,71.024811,32.628117,13.790101,10.123986,6.322326,7.542990,8.598361,7.151253,3.407444,0.584299,0.156199,0.252893,0.053719,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,1.006612,0.000000,0.000000,0.000000 -601609.155000,4612635.550000,4335,3755,103.578529,159.462830,164.272751,152.074402,138.528946,127.677704,126.570267,123.595055,123.735550,124.528938,124.710762,135.404968,153.719025,170.446304,182.504135,190.520660,190.396698,178.892563,155.495880,133.669434,121.933899,118.925636,112.545471,85.041336,68.413239,83.685966,97.454559,74.413239,36.314064,14.947126,10.231423,6.824806,8.417373,7.624809,6.805799,3.491741,0.358679,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.155000,4612635.550000,4350,3755,111.604973,156.927292,159.985153,150.811600,137.365311,127.059525,124.795059,121.902496,121.076050,123.051254,123.629768,133.431427,151.671097,168.522339,179.530609,189.340515,189.604980,177.720688,153.910767,131.117371,120.257866,117.158699,110.654564,82.290916,65.323982,81.745461,96.481010,71.216545,34.629768,12.864480,10.059524,5.599188,6.328941,6.738858,6.561171,3.566949,0.528927,0.054546,0.110744,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.555000,4612635.550000,4372,3755,104.419846,155.932236,159.766953,151.469421,137.510757,128.370255,125.262817,122.899178,122.915710,123.618187,124.147118,134.742157,153.436371,168.973557,181.626434,190.866104,189.477676,177.651230,153.907440,133.097534,121.147118,116.733894,111.163643,84.130592,67.147125,81.899185,97.609924,73.642982,34.328949,13.425638,10.105803,5.345468,7.665306,7.873569,8.314066,2.642155,1.081820,0.320662,0.000000,0.115703,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.155000,4612635.550000,4395,3755,103.581009,162.890915,162.105789,152.378525,138.345459,129.469437,126.056213,124.105797,124.130592,125.560349,126.461174,136.725632,154.940506,171.047943,182.378525,191.709091,190.998352,179.378525,155.692566,133.957047,122.725632,118.609932,113.436378,85.452904,68.238029,83.452904,98.386795,73.709106,34.246300,13.409109,10.312415,5.278524,7.738857,7.414064,7.036377,2.347941,0.368596,0.187604,0.000000,0.056199,0.000000,0.000000,0.005785,0.000000,0.000000,1.124794,1.097521,0.000000,0.000000,0.000000 -601625.155000,4612635.550000,4415,3755,89.941330,157.032257,160.090103,152.751266,139.313248,128.387619,126.412407,124.023979,122.792572,125.371086,125.759514,135.528122,153.635559,169.949600,182.536377,191.585968,189.866959,178.990921,155.635559,133.147949,122.114891,117.552902,113.172737,84.379349,67.123161,82.461998,97.908279,73.784309,34.346302,13.589274,10.288449,6.778525,7.935552,6.236377,7.366956,3.878520,0.699176,0.051240,0.047934,0.000000,0.000000,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,1.032232,0.000000,0.000000 -601629.755000,4612635.550000,4438,3755,104.804153,158.996704,160.781830,150.971909,137.624802,126.451256,124.467781,121.790092,120.674393,123.542160,123.153732,133.277695,151.823151,167.988449,180.137192,189.104126,189.062805,176.823135,153.418198,131.442993,119.087616,115.583481,110.872742,82.715714,65.476051,80.219856,96.352081,72.054573,33.236382,12.283488,10.079358,5.690094,7.233898,6.104146,5.761995,2.665295,0.685952,0.362811,0.100827,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601635.555000,4612635.550000,4467,3755,118.303322,160.369446,162.683502,152.237213,140.212418,127.956215,126.567780,124.890091,123.005798,125.542984,125.741333,136.559525,154.617386,170.493408,182.666962,191.807465,190.840515,179.311600,156.047134,133.972748,121.642159,117.303314,112.518188,84.600845,67.476875,83.427292,98.261993,74.204147,34.617374,12.647951,10.228946,5.648772,8.666132,7.024808,7.841336,2.227278,0.505786,0.234711,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.555000,4612635.550000,4492,3755,111.361168,167.410767,163.286804,153.204163,140.361176,129.071915,126.865295,123.708275,123.807449,126.104965,126.394226,137.931427,155.262009,171.080185,183.914902,191.559525,192.914902,180.319855,156.295074,134.138031,122.832245,118.394226,114.154556,85.080185,68.129776,83.419029,96.848770,73.361176,34.691753,13.503325,10.377705,4.959516,7.504149,7.150428,7.843818,2.888438,0.119835,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.127273,0.000000,2.390083,0.000000 -601644.155000,4612635.550000,4510,3755,109.764481,162.739685,164.739685,153.541336,139.657028,130.243805,124.904968,124.070259,123.516541,125.863647,125.061989,135.855377,154.227295,170.359528,182.433884,192.442154,190.814056,179.037186,154.904968,133.574387,121.458687,117.045464,113.045464,84.450432,67.053741,81.194229,97.177696,74.037209,33.764484,12.885968,10.276879,4.965300,6.680181,6.978526,7.206625,1.852898,0.345456,0.173554,0.050413,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.755000,4612635.550000,4528,3755,111.742996,163.073563,162.404129,154.288437,139.222321,129.610748,127.759514,124.825630,123.999184,126.957863,126.718193,135.957855,154.412399,170.643799,183.643799,192.809097,191.817352,180.362808,156.057022,134.900009,122.470261,117.544640,113.536377,84.255394,67.528122,81.916550,97.825638,73.371094,34.825638,14.190928,10.321507,4.453729,7.062825,8.495055,6.898361,2.241329,0.400828,0.151240,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.955000,4612635.550000,4549,3755,130.423981,163.333069,164.895050,156.704971,141.233887,129.200836,127.886780,124.853729,124.861992,126.308273,126.134720,137.184311,155.291748,171.696701,184.490082,192.820663,192.779343,180.300003,156.870255,134.845459,122.671906,118.242157,114.027290,85.176048,68.498360,83.647125,97.845467,74.457039,34.093410,12.861175,10.366135,4.718192,7.268609,7.796707,7.728938,2.473560,0.832234,0.191736,0.183472,0.061157,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.155000,4612635.550000,4565,3755,123.900826,162.694214,164.074387,155.504150,139.776871,129.388443,126.561996,123.966949,123.272736,126.239677,126.347115,136.884308,154.611588,171.090912,182.884293,192.685944,192.090912,180.404953,155.677704,135.000015,121.033066,118.214882,113.000008,84.595047,67.446304,83.024811,97.264473,73.586784,33.520679,12.187620,10.272746,6.184309,6.625635,6.381831,5.101665,2.181825,1.312398,0.095868,0.000000,0.000000,0.026447,0.000000,0.007438,0.000000,0.000000,0.000000,2.041322,0.000000,1.220661,0.000000 -601660.155000,4612635.550000,4590,3755,107.400009,169.540512,163.970261,154.945480,140.267792,127.474388,125.375221,124.102493,122.681000,125.647942,124.639679,135.821503,153.342163,169.978531,182.590103,191.433075,190.251266,179.317368,154.953735,132.152084,120.755386,115.697533,111.400009,82.838028,65.755394,79.424812,95.961998,71.234734,31.796711,11.719853,10.127292,4.275216,5.993403,4.938029,5.965303,1.642980,0.448761,0.052893,0.062810,0.000000,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.955000,4612635.550000,4604,3755,117.702492,176.016525,170.495865,159.198349,143.991745,131.495880,129.066132,127.876038,126.413239,129.685974,128.181839,139.479355,157.157043,174.396698,186.661163,196.909088,194.561981,183.735535,157.619827,137.148773,123.826462,120.512413,115.090927,86.355385,69.462830,85.057869,100.148766,76.438034,35.785141,15.200845,10.462828,5.628937,8.457865,7.367782,6.568609,3.511578,0.519836,0.186777,0.232232,0.000000,0.164463,0.000000,0.013224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.955000,4612635.550000,4634,3755,124.277702,175.955383,167.740509,157.418198,143.773560,129.277695,127.988441,128.360336,125.674393,129.062820,127.533897,138.376877,155.500839,172.798355,185.682663,195.211578,192.988449,182.699188,157.996704,135.864471,123.707451,119.294228,113.327286,84.740509,67.509109,83.707451,98.071091,74.294228,34.087624,13.697538,10.302498,3.986787,6.492577,6.546294,6.328937,3.151246,0.283472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.555000,4612635.550000,4652,3755,117.273560,177.323135,168.885117,160.529755,145.480164,129.670242,129.686768,125.934708,125.166115,128.620651,127.199173,138.182648,156.504959,172.728088,185.347931,194.653717,193.538010,181.628922,157.463638,136.124786,124.033882,120.389252,113.736366,85.314888,68.108276,83.273567,100.455383,74.182655,34.736385,14.267787,10.339688,6.003316,7.679353,7.392576,6.933071,2.440503,0.771077,0.000000,0.158678,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.555000,4612635.550000,4667,3755,113.014069,163.509949,165.782654,155.526474,140.460358,129.691757,127.832245,125.633904,123.452087,123.890099,124.559525,136.435562,154.989288,170.394226,181.038864,192.278534,190.534729,177.096725,153.799194,132.807449,121.576050,118.633904,112.245476,84.286797,68.526466,83.121506,98.939690,73.129768,35.319851,16.401670,10.204152,9.265302,9.347121,9.456212,9.158693,3.623150,0.844630,0.560331,0.078513,0.000000,0.000000,0.000000,0.002479,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.355000,4612635.550000,4686,3755,108.207458,166.232239,166.595886,153.397537,139.554565,126.637215,125.711594,123.538040,122.133080,122.736382,122.562828,134.124817,153.223984,169.091751,180.785965,189.141342,188.496704,176.083481,151.248779,131.571091,120.033905,117.190933,110.100021,82.504982,65.951263,81.471924,97.364487,71.951263,33.240517,13.434728,10.009109,7.133071,5.936375,7.471086,8.528112,2.772734,0.962812,0.189257,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.155000,4612635.550000,4700,3755,119.897537,166.914062,165.128937,156.352081,140.914062,128.004974,127.327286,124.484314,122.971916,124.219849,123.930588,135.608276,153.864471,170.996704,181.938858,190.492569,189.740509,176.938858,153.137207,132.021500,121.360344,118.781830,111.327286,83.038033,68.104156,82.046295,98.872742,71.938858,34.162003,13.789273,10.120680,8.700014,7.555384,9.377698,6.961170,3.071081,0.734713,0.062810,0.082645,0.000000,0.000000,0.074380,0.059504,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.555000,4612635.550000,4722,3755,116.371086,172.833893,167.057022,156.007446,139.230591,127.866951,127.098366,123.635551,122.784317,124.478523,124.949608,135.652084,154.263641,171.015701,180.949585,191.090088,188.800827,176.792572,152.552902,131.503311,120.949600,118.263649,111.900017,83.908279,67.660347,82.214058,98.247116,72.172737,34.701672,14.002499,10.172748,9.553733,8.072741,8.476046,7.662824,3.742984,0.507439,0.192563,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.755000,4612635.550000,4738,3755,126.775223,170.981827,166.824799,157.122314,142.337204,128.733902,128.461166,125.775223,123.766960,125.262825,124.428116,136.403305,155.254547,170.502487,181.849594,192.419846,190.618195,176.700836,152.990082,132.981827,120.543816,117.981834,112.709106,83.097534,67.337212,81.766968,95.155388,71.461182,33.766964,13.233075,10.246300,7.724806,8.054559,7.643815,7.803319,3.542983,0.730580,0.176033,0.044628,0.000000,0.000000,0.000000,0.042975,0.028099,0.000000,0.000000,0.000000,0.818182,0.000000,0.000000 -601693.355000,4612635.550000,4756,3755,113.934723,172.959534,169.934738,157.397552,142.819016,129.794235,128.769440,126.116539,125.711586,126.959518,126.207451,136.761169,156.108292,172.124817,183.513229,193.637207,192.695053,177.604141,154.595901,132.637207,122.843811,118.901665,113.463646,84.223976,68.273582,83.314896,97.199188,73.984314,33.025639,14.537209,10.314896,9.987618,8.407451,10.002492,7.009930,3.509098,1.724797,0.118182,0.276860,0.038017,0.000000,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.555000,4612635.550000,4772,3755,125.488441,172.050415,167.744629,158.455368,142.876877,129.091751,129.141342,126.612411,125.108276,126.579353,125.992577,137.414062,156.058670,172.099991,183.538010,193.339661,191.951233,178.670242,154.885117,134.149612,122.934723,119.653732,113.827286,84.661995,68.909927,84.033897,97.455383,73.207451,33.802498,13.444646,10.347953,9.709105,8.180180,9.381005,8.627286,3.979348,0.661985,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.971901,0.000000,0.000000 -601700.755000,4612635.550000,4793,3755,120.866127,178.180176,164.981827,157.717361,142.105789,130.403320,128.362000,125.287621,124.651253,127.485962,124.766960,138.006622,155.626450,172.138855,183.700836,192.800003,191.766953,177.196701,153.386780,132.882660,121.990097,118.998360,112.163651,84.180183,68.039696,82.229767,97.081009,70.320679,31.791756,12.708283,10.196713,8.043816,8.053732,6.946292,7.738031,4.521498,0.557026,0.134711,0.071075,0.000000,0.000000,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.355000,4612635.550000,4811,3755,121.103325,184.119827,172.789261,161.376038,145.921494,131.144638,130.789276,127.219025,127.400841,129.136383,126.921501,138.780991,156.830582,173.681824,184.177689,194.714874,192.995865,179.243805,155.491730,134.574402,122.888443,121.004150,114.227287,85.599190,69.979355,83.681831,99.574394,70.871918,34.781013,14.532248,10.384315,10.467784,8.779351,9.462823,8.589269,3.287611,0.576035,0.267770,0.169422,0.000000,0.000000,0.000000,0.245455,0.231405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.755000,4612635.550000,4828,3755,123.499184,185.152069,172.267776,159.879349,143.920685,130.466125,130.656204,126.639679,126.433067,129.433075,126.366951,139.061172,155.961975,173.904129,185.085953,195.003296,192.532211,178.077682,155.102478,133.598358,122.474388,119.176872,113.763649,84.548782,67.681007,84.052910,97.358688,70.879356,31.937208,13.322333,10.342168,8.938857,8.154559,8.476046,7.266129,2.161164,0.774382,0.057025,0.304133,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.355000,4612635.550000,4856,3755,126.218185,186.581818,172.474380,161.507446,145.176865,130.424789,131.028107,129.143799,127.672729,130.209915,126.590088,138.953720,156.548767,174.011566,185.945465,195.846283,193.416534,178.581818,155.333893,134.003311,122.747108,119.532234,114.581818,85.152077,68.755386,85.152077,98.342163,72.424805,33.821510,14.130597,10.416547,10.339684,6.471087,8.772739,8.381832,2.819016,0.902481,0.329753,0.171075,0.000000,0.000000,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.555000,4612635.550000,4872,3755,138.887619,187.102478,171.705795,162.375214,145.565308,131.755386,129.714066,126.738853,127.383484,130.234726,126.573563,138.590103,155.961990,174.085953,185.284302,195.681000,192.284302,178.714050,154.532242,134.119019,121.474388,118.474388,114.127281,85.077698,68.375221,84.036377,98.052902,71.672737,34.482662,12.658695,10.375226,10.171090,5.344638,7.452904,7.390096,3.683480,0.354547,0.065290,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612635.550000,4894,3755,132.792572,193.817352,174.238846,163.362808,146.858688,132.619019,131.619019,129.181000,128.412399,132.875214,128.304962,139.908264,157.230576,173.974380,186.619019,197.007446,194.032242,177.676865,154.858688,135.767776,124.015709,120.420662,115.172729,84.313232,69.081841,85.445465,98.908279,69.891754,33.552914,14.381837,10.470266,10.731421,6.561169,7.995880,7.881831,4.132241,0.179339,0.133885,0.213224,0.000000,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.155000,4612635.550000,4910,3755,133.850433,198.858688,174.255371,168.395874,148.147949,133.271927,132.833908,129.304977,130.065308,135.709930,129.792587,141.552917,158.503311,176.379349,188.693390,198.569427,195.511566,179.742981,157.602478,135.916550,124.627289,121.652084,116.081841,85.478531,69.833900,87.057045,100.842171,70.800842,34.577705,14.129770,10.552912,11.093403,7.434725,8.597533,8.295055,4.508274,0.795043,0.128100,0.000000,0.109918,0.000000,0.024794,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.555000,4612635.550000,4927,3755,152.901672,193.976028,179.662003,168.513229,147.918198,133.901672,132.934723,130.141342,129.967789,134.653732,129.323151,140.331421,158.066956,175.108276,187.637192,197.595871,195.422318,179.314896,156.488449,135.909927,124.364479,120.934723,116.463646,85.604149,69.926460,87.645470,99.868607,69.769432,34.488445,14.200844,10.587622,10.108277,7.462822,8.366129,7.791749,4.585960,0.881820,0.039670,0.033885,0.000000,0.000000,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,2.724793,0.000000 -601731.155000,4612635.550000,4945,3755,119.328941,181.238022,172.395050,160.362000,143.444656,132.659515,130.337204,126.750420,126.890915,129.890915,127.254555,138.758698,157.535553,172.725632,186.006622,194.833069,193.238022,178.940506,156.056213,134.527283,124.287613,119.766945,113.800003,86.742157,69.841331,87.295876,97.841331,72.519012,34.047958,14.476050,10.345473,9.247121,6.261994,7.654558,7.297534,4.151249,0.823142,0.127273,0.438844,0.135537,0.000000,0.000000,0.000000,0.035537,0.000000,1.270248,0.000000,0.000000,0.000000,0.000000 -601734.355000,4612635.550000,4961,3755,110.491753,156.508301,162.326477,150.425659,138.805786,126.764481,124.921501,122.880180,121.855385,122.458694,123.896713,134.971085,153.714890,169.111588,180.549591,191.152893,187.714874,177.400833,151.367783,131.706635,120.971092,116.838860,112.227287,82.425636,67.764481,81.425636,95.863655,72.731422,33.268612,13.081836,10.202498,6.748773,6.207449,7.314888,6.331418,3.429759,0.157026,0.050414,0.000000,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601739.155000,4612635.550000,4985,3755,104.190933,163.389267,163.926453,155.653732,141.802490,131.414062,129.100006,125.827286,124.967781,127.025635,127.521500,139.091751,158.166122,173.025635,185.703323,193.513214,191.546280,179.901672,156.100006,135.728119,124.703316,120.306625,115.554558,87.728119,69.653740,85.438866,98.529770,73.290100,34.876877,15.862827,10.504978,6.776046,9.021501,8.142162,7.171088,2.925627,0.276035,0.226448,0.000000,0.000000,0.000000,0.000000,0.000000,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.955000,4612635.550000,4999,3755,120.576866,163.328949,169.593414,154.998367,141.238037,130.957031,127.312408,125.940514,125.717369,125.593407,127.444641,138.882660,157.014893,172.709106,184.783493,193.692581,192.833084,179.833084,155.998367,134.742157,122.981834,121.428116,114.709106,87.585136,70.023155,86.576874,99.163651,73.667786,34.452908,15.593407,10.428119,8.360344,8.965303,8.376048,9.242164,3.619015,1.061986,0.084298,0.000000,0.128099,0.161158,0.000000,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.755000,4612635.550000,5013,3755,111.618202,159.171906,167.262817,149.783478,137.948776,129.064484,126.667793,124.105804,122.940521,124.196716,125.403328,137.560349,156.279343,170.130585,183.221497,192.502502,189.725632,179.485962,154.684311,134.238037,121.271095,119.585144,113.527298,85.775230,68.527298,85.791748,98.485970,72.593414,34.477703,12.464478,10.320680,7.897534,9.217368,7.188440,8.833898,2.612402,0.128100,0.143802,0.089257,0.000000,0.214877,0.000000,0.366944,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.755000,4612635.550000,5033,3755,109.223152,162.454575,166.181854,155.115738,142.082657,133.165298,129.727280,127.917366,126.851250,129.066116,128.942154,140.049606,159.661194,175.545471,187.123978,196.768616,193.454559,181.495880,159.322342,137.008301,125.553726,120.958687,115.454552,88.677696,72.809929,85.851250,102.099182,73.991753,35.289272,15.895060,10.495888,6.452905,9.164476,10.236378,10.952908,3.808272,0.281820,0.501655,0.100000,0.284298,0.000000,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.955000,4612635.550000,5059,3755,105.443810,159.626465,167.138870,156.105820,141.874420,130.990097,129.535553,127.965302,127.552078,127.295883,128.395050,139.519043,157.229797,173.833084,186.403336,194.750443,193.328949,179.957047,155.924011,134.428116,125.006615,121.114067,115.800003,88.180168,70.659515,86.204964,99.585129,73.081009,35.279358,15.088448,10.527291,6.872738,8.209104,9.333074,7.818196,3.336372,0.726448,0.281819,0.272728,0.000000,0.000000,0.000000,0.000000,0.096694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.355000,4612635.550000,5086,3755,105.845467,154.109940,166.680176,155.258698,139.828949,129.481827,127.556213,125.977699,124.324806,126.680183,128.357864,138.878540,156.093399,173.490082,183.994217,194.258682,192.184311,178.795868,154.333084,133.151260,123.977699,118.308281,114.936378,87.291748,70.647125,84.275223,98.870262,71.572739,32.886799,12.687621,10.448781,4.272738,7.557865,5.444636,6.671915,1.486782,0.261157,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.355000,4612635.550000,5101,3755,104.023155,162.188446,164.576889,157.932251,141.899200,132.717377,129.246292,127.857864,126.064476,128.651260,128.725632,140.056213,158.056213,174.271103,185.841324,194.477692,192.932236,180.750443,157.899200,135.287613,124.940514,121.229767,116.800018,87.287621,71.684311,87.543816,99.998360,74.386795,35.436382,14.678531,10.618200,6.215714,7.633070,6.302491,6.742161,3.721494,0.255373,0.269422,0.219009,0.000000,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,1.056198,0.000000,2.538843,0.000000 -601765.155000,4612635.550000,5115,3755,95.534729,155.881805,164.452072,155.815689,140.823959,131.402496,126.972748,126.576050,125.947952,127.014069,127.154564,138.476852,157.237183,173.914871,186.038834,195.534698,192.609085,180.534698,156.980988,135.914886,125.278534,120.964478,116.336380,87.741341,71.857040,86.493408,99.352913,72.567787,34.154568,14.294232,10.576052,5.617365,7.900014,6.734721,7.946295,2.926453,0.307439,0.189257,0.000000,0.048760,0.061984,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.955000,4612635.550000,5134,3755,90.502502,158.122330,168.114075,157.948776,141.295883,131.552094,129.543823,127.353745,128.089279,128.155396,128.221512,140.626465,158.147125,175.254562,185.783493,194.791763,193.676056,182.081009,156.700851,135.337219,124.345474,120.866135,116.436386,87.890930,71.841347,86.568619,98.709114,72.287628,35.659523,12.501671,10.585143,7.234724,8.637205,6.859516,6.665302,3.539677,0.657027,0.039670,0.238844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.955000,4612635.550000,5164,3755,118.307449,163.055374,169.642151,156.840500,143.113251,133.022324,130.187622,130.253723,127.468613,130.485138,130.427277,141.419037,159.228943,175.741333,188.088440,196.286789,195.328110,184.534714,158.435547,137.328125,127.080185,122.311577,116.881836,89.931427,73.237198,87.815727,99.452087,72.708282,33.716549,14.920678,10.625639,7.207452,8.238855,8.866956,9.167783,3.719843,1.013226,0.234712,0.506613,0.135537,0.059504,0.223141,0.050413,0.714877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.355000,4612635.550000,5196,3755,122.639679,164.846298,167.813248,157.449585,144.375229,134.176865,130.242981,129.854553,129.317368,131.788437,131.986786,142.515717,160.862808,176.135559,188.904144,196.838043,196.755386,185.209930,160.119019,137.242981,126.548775,123.912407,120.581833,91.325630,74.028122,88.383484,100.358688,73.400017,35.333900,14.270267,10.962002,5.683483,9.604145,9.243815,7.582658,4.152900,0.423142,0.041322,0.000000,0.105785,0.000000,0.006612,0.309092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.755000,4612635.550000,5253,3755,128.131409,167.065292,168.147949,159.015717,144.222336,133.387619,132.048767,129.924805,129.114883,131.098343,130.875214,142.404144,160.833908,176.222321,187.949585,198.552902,197.404129,184.800827,160.742996,139.147949,128.495041,124.792564,119.172729,91.098358,73.990929,88.346291,101.040504,74.809113,35.809113,14.036381,10.833902,4.957860,7.004972,6.404144,7.369434,3.738851,0.661985,0.256199,0.290083,0.000000,0.169422,0.000000,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.555000,4612635.550000,5267,3755,120.501671,163.823990,166.914902,156.038864,143.840515,132.146301,129.071915,128.600845,128.303329,130.377701,129.931427,141.914902,159.493408,175.716553,188.352921,195.923172,196.419037,184.228958,160.410767,137.179367,126.187622,123.344643,117.427292,89.790924,73.534729,87.328117,99.890099,73.468613,34.840515,13.185968,10.675226,5.611580,6.528111,7.285962,5.758688,3.645461,0.358679,0.250414,0.103306,0.163637,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.755000,4612635.550000,5288,3755,108.768600,162.809937,167.677704,156.363647,143.462830,132.281006,129.181824,129.553726,127.983482,130.793396,131.033066,141.859528,159.289276,176.446304,188.719025,197.190094,197.033081,184.016541,160.487625,138.644638,126.809929,122.280998,119.272736,91.256203,73.132240,87.000008,99.024803,72.785141,34.942165,12.929770,10.842996,5.017365,6.404146,5.741334,6.331416,3.095048,0.364464,0.154546,0.125620,0.000000,0.107438,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.355000,4612635.550000,5306,3755,121.247940,168.066147,170.504166,159.173584,147.818207,135.446304,132.537201,131.785126,130.809921,133.462814,132.876038,143.710770,161.528961,178.471069,191.462814,199.537186,199.173553,187.520660,162.983505,140.644653,129.099182,125.173561,119.636375,92.528931,75.347122,89.809929,102.198357,77.090927,37.090927,15.785143,10.876052,6.036375,9.385137,7.734723,7.944643,4.551249,0.428927,0.079339,0.100827,0.000000,0.000000,0.000000,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.155000,4612635.550000,5320,3755,105.998367,168.651260,169.362000,158.155396,146.866135,135.023163,131.651260,129.824814,129.320679,132.262833,132.510773,142.535553,160.246307,177.601669,188.667786,197.271103,197.014893,185.543823,162.783493,138.808289,128.097549,125.238037,119.254570,90.932251,73.659523,88.138863,101.601677,75.651260,36.130596,15.027291,10.841342,5.687615,9.106625,6.916541,8.304146,4.052900,0.985952,0.232232,0.095868,0.054546,0.000000,0.000000,0.188430,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.155000,4612635.550000,5340,3755,136.790100,178.723984,178.095886,163.442993,145.385132,133.988434,130.798355,129.889267,128.897522,132.889267,132.856216,144.038025,160.781830,177.352081,190.641342,199.542160,197.319016,185.748779,161.219849,139.715714,127.864479,123.509102,119.872742,92.277687,73.343826,87.492577,101.145462,75.500847,35.616550,14.281836,10.897540,5.401664,8.631420,6.755384,8.352906,3.078519,0.582646,0.142149,0.151240,0.001653,0.104959,0.413224,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.355000,4612635.550000,5356,3755,123.419022,164.650436,165.807465,161.038864,145.741348,134.956207,133.212418,131.832245,131.253738,134.823990,134.675232,145.278534,161.981018,178.906631,191.923172,199.245483,199.476883,188.890091,163.047134,141.005814,129.253738,124.402489,120.063644,91.757858,73.741341,88.700020,101.402489,76.303322,35.262001,13.462001,10.914896,4.259513,6.525632,5.728110,5.840506,2.597527,0.419009,0.217356,0.000000,0.129752,0.077687,0.000000,0.068595,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601819.355000,4612635.550000,5386,3755,105.494232,169.447113,164.422333,157.480179,144.719849,131.876862,129.182648,129.438843,127.711578,131.009109,129.232239,139.959518,157.967789,175.356216,186.323151,196.314896,194.471909,183.959518,158.934723,137.604141,126.471909,123.678520,118.100006,90.595879,73.248779,88.389267,102.050423,76.149605,33.554565,12.819025,10.736382,5.007447,6.219021,7.434723,7.434722,3.285958,0.698349,0.686778,0.627274,0.000000,0.107439,0.160331,0.001653,0.288430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.155000,4612635.550000,5405,3755,127.300842,172.199188,171.455383,162.017365,148.149597,135.703323,134.116547,133.124802,131.769440,135.414062,134.843811,144.595886,161.810760,179.785965,192.397537,201.075226,200.009109,188.207458,164.009109,143.042160,131.116547,127.083481,121.736374,93.761177,76.215721,91.248772,103.562828,78.802498,36.620682,16.698366,11.066961,6.570260,9.406628,9.289270,10.203319,5.352901,1.255375,0.557853,0.163637,0.380993,0.090083,0.000000,0.013223,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.755000,4612635.550000,5438,3755,128.520691,180.082642,173.603302,164.371902,149.338837,136.776871,136.281006,135.132263,135.231430,138.471069,136.520676,147.809921,163.917358,181.074387,193.785126,201.289261,199.099167,189.578506,165.363632,142.380173,131.909119,126.512421,121.181831,93.264488,76.330605,90.917381,102.454567,77.297546,37.338863,15.933076,11.016548,5.333069,7.678527,6.104970,7.050425,3.037197,0.998350,0.144629,0.000000,0.126447,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.155000,4612635.550000,5465,3755,113.721504,172.457031,171.448761,160.250427,143.167786,132.547943,130.415710,127.101669,127.622330,128.390930,128.043823,139.688446,158.680176,173.506607,184.101639,193.771088,192.787613,180.176025,156.903305,135.944656,123.837204,121.787621,116.481834,88.795883,72.514893,86.275223,98.093414,70.994232,33.837212,14.076052,10.589274,7.754560,8.563651,9.889271,7.685964,3.678520,1.010746,0.569423,0.871075,0.191736,0.332232,0.000000,0.000000,0.051240,0.000000,2.479339,0.000000,0.000000,0.000000,2.185124 -601838.155000,4612635.550000,5480,3755,119.385139,176.360336,175.773590,159.583481,143.492569,132.162003,131.128937,127.856209,127.013237,127.988441,128.740509,139.550430,158.228119,173.781830,184.013229,194.583481,192.509109,179.459518,155.186813,135.748779,123.723976,121.649597,114.600014,87.542160,72.236374,83.881004,97.905800,71.773567,33.277706,13.842993,10.418200,9.139683,6.829764,7.033895,6.754558,2.529759,0.757026,0.054546,0.199174,0.000000,0.090909,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.955000,4612635.550000,5499,3755,117.270256,174.295044,173.939682,162.881821,146.295044,135.377686,132.518188,129.319839,127.865295,129.369431,128.047119,140.088440,158.642151,173.204147,186.402496,194.642151,194.014053,180.592575,156.584305,135.625626,125.964470,122.162819,116.609100,88.278519,71.509926,86.030586,98.261993,72.642159,33.237209,13.801670,10.600845,7.874394,6.384310,6.359515,8.387616,2.503313,1.138845,0.205786,0.034711,0.049587,0.268595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.955000,4612635.550000,5514,3755,117.155388,179.357025,173.522308,160.993378,144.530579,133.555374,131.943817,129.712402,128.067780,130.042984,129.249603,140.505783,159.009918,174.034698,185.092560,194.695862,192.414871,179.480988,156.158676,135.596710,125.447945,121.902489,115.836372,88.166962,72.009933,86.555389,97.728943,72.481010,34.109108,13.773573,10.530599,9.531420,6.228110,8.425632,8.811584,3.056205,0.318183,0.177686,0.120662,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.755000,4612635.550000,5538,3755,104.889267,171.868607,169.885132,156.744644,140.275223,128.126450,128.232239,127.339684,125.513237,127.257034,126.711586,138.414062,156.438858,172.777695,183.893402,194.290100,192.116547,179.149597,155.190918,135.339676,125.314888,123.124809,116.463646,88.339684,74.100014,84.777702,99.447121,73.281830,33.182667,16.036383,10.587623,7.715715,8.773567,9.620674,9.328938,5.457859,1.946284,1.709920,0.562811,0.857026,0.742150,0.023967,0.000000,0.049587,1.344628,0.000000,0.000000,0.672727,0.000000,0.000000 -601853.355000,4612635.550000,5556,3755,105.908279,180.205811,176.065308,162.776047,148.214066,135.544647,133.982651,129.866959,129.784302,131.792572,130.883484,142.619034,160.288452,176.362823,187.495056,196.784317,194.048782,180.709930,157.536377,136.172745,125.726456,122.718193,117.354553,89.123154,72.081841,86.875221,97.908279,72.875229,33.478531,14.228117,10.668613,10.819849,8.622328,9.658692,6.519845,2.336369,0.560332,0.063637,0.156199,0.000000,0.051240,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601857.555000,4612635.550000,5577,3755,125.894226,182.538864,171.720688,163.084320,148.290939,134.357040,132.869431,130.059509,129.100830,131.629761,129.447937,141.051270,159.679367,175.150436,186.241348,196.332260,193.795074,180.001678,156.447952,135.828110,125.026459,122.158684,116.472740,88.803314,71.241333,86.547119,98.952072,73.323975,32.819855,13.357042,10.588449,9.938857,7.597532,7.467782,9.042988,3.887610,1.062812,0.096695,0.152067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.077686,0.000000 -601861.555000,4612635.550000,5597,3755,123.478523,180.276871,170.880188,160.731415,142.483490,130.351242,130.161163,128.838852,127.979347,130.508270,127.888435,140.177704,157.549606,173.508286,185.772751,194.549606,192.376053,179.012405,154.590927,135.533081,124.698357,122.004143,116.681824,87.690094,72.557869,86.020676,97.417366,71.293411,33.185974,14.115720,10.607457,10.329767,6.557864,9.294228,8.096708,4.686785,1.026448,0.895869,0.214050,0.000827,0.000000,0.000000,0.121488,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.155000,4612635.550000,5615,3755,121.381828,182.797516,173.122314,164.444641,148.849594,134.976883,135.323990,132.117386,132.365311,134.266144,131.464478,143.530609,160.100830,176.555405,188.390106,198.803329,195.150436,182.588455,158.902496,138.001678,127.274391,124.241333,117.927284,89.571907,74.299194,89.158684,100.654556,72.216537,34.332249,14.028943,10.720681,12.495883,7.150425,8.295056,8.569435,2.973561,1.008267,0.436365,0.333885,0.055372,0.097521,0.000000,0.000000,0.109918,0.000000,2.654546,0.979339,0.000000,0.000000,0.000000 -601868.955000,4612635.550000,5634,3755,117.351250,187.152893,174.995880,162.665298,145.797531,131.367783,132.061996,129.533066,127.376038,131.508270,128.450424,139.500015,157.466965,174.334732,185.739670,194.657028,193.103302,179.028946,155.541336,134.979340,123.450424,121.665298,116.590919,86.557869,70.979355,85.491753,98.409103,70.061996,32.681839,12.440515,10.599193,9.938030,6.395879,9.064476,8.237205,4.181000,0.348762,0.103306,0.030579,0.000000,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.155000,4612635.550000,5660,3755,139.298370,188.938858,175.847946,166.476059,148.079361,135.211578,135.029755,132.616531,131.996704,135.699188,131.955383,143.657883,160.029785,177.385147,189.566956,198.690918,196.641342,181.195068,158.492584,137.112411,126.781822,123.748764,117.509094,88.319023,73.492577,88.219856,99.161995,70.368607,32.616547,12.800017,10.682665,11.233901,6.565300,7.709931,8.680178,3.792570,0.345456,0.184298,0.439670,0.573555,0.153719,0.225620,0.004959,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.555000,4612635.550000,5687,3755,160.251266,200.891754,178.428940,167.354568,147.933075,133.478531,134.040512,132.908279,131.676865,136.900024,131.354553,143.635559,159.528122,175.602493,187.843002,197.132263,195.304977,178.214066,157.106628,136.577698,125.445465,122.833893,116.627281,87.090103,71.561180,87.288452,96.693405,68.329773,32.961174,13.798365,10.602499,10.976048,7.436376,7.642161,8.428112,3.716536,0.800828,0.466117,0.285952,0.044628,0.093389,0.085124,0.000000,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.755000,4612635.550000,5723,3755,132.264481,191.822311,172.388428,167.290085,151.023148,137.196701,138.323135,135.393402,134.276871,140.004135,133.690094,145.359497,161.004135,176.855377,191.143799,200.441330,198.173553,181.234711,160.771912,140.372726,129.674408,128.418198,121.872749,95.666138,79.095886,94.962006,102.892586,74.264488,36.641338,16.151257,11.079358,16.158697,9.943815,10.671916,8.331419,7.000837,1.304962,0.790910,1.019836,0.902481,0.171075,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.355000,4612635.550000,5781,3755,118.100014,165.587616,168.769440,157.901672,144.248779,133.017365,131.356216,129.207458,128.645462,129.761169,131.100006,141.240509,159.331421,174.769440,186.587616,195.422333,194.430588,182.389267,157.248779,137.604141,126.141335,121.992577,117.463646,89.248772,73.298363,88.223976,99.794228,72.802490,34.546303,13.704150,10.678532,8.571087,8.333899,8.888444,6.482656,3.323976,0.845456,0.220662,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601917.555000,4612635.550000,5877,3755,114.274399,165.233078,170.150436,158.241348,145.456223,133.786789,132.042999,129.059525,128.563660,130.133896,130.142166,140.968628,158.365311,175.381851,186.753738,194.390106,194.398376,182.299194,157.844650,137.125641,125.927292,122.968613,116.018188,88.704147,71.811584,86.150429,98.315712,72.018196,32.960350,12.208282,10.547127,5.900839,5.885964,6.323153,6.881005,2.341329,0.458679,0.087604,0.089257,0.000000,0.000000,0.000000,0.000000,0.038017,0.000000,0.000000,1.058678,0.000000,0.000000,0.000000 -601946.355000,4612635.550000,6021,3755,96.891747,164.883484,167.585968,157.156235,143.073578,134.561172,132.023972,130.048767,129.916534,131.114883,131.503311,142.949600,160.643814,176.007462,188.271927,197.288452,196.924820,185.544647,162.453735,139.561172,129.015717,124.519844,118.445465,90.817368,75.007454,89.941330,102.635551,76.230598,35.511589,14.433075,10.767788,7.414062,7.431420,7.456212,6.837204,2.968602,0.692564,0.036364,0.129753,0.000000,0.000000,0.000000,0.000000,0.057851,0.000000,1.249587,0.000000,0.000000,0.000000,0.000000 -601977.355000,4612635.550000,6176,3755,117.313240,176.751266,171.470261,163.486801,149.230591,137.255386,136.462006,134.238861,133.346298,136.486801,137.181015,147.412415,164.908279,181.800842,193.354568,202.288452,202.057037,190.966141,166.957870,145.040512,133.627289,129.371094,122.445473,94.866959,78.709938,92.883492,106.693405,80.734734,40.147953,17.571091,11.131423,6.745466,9.025637,9.756212,8.718195,3.498355,0.379340,0.138843,0.000000,0.000000,0.069422,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,1.387603,2.182645 -601991.755000,4612635.550000,6248,3755,132.283493,170.581009,171.994232,164.308289,151.010773,137.440506,135.093399,132.944641,133.076874,136.647110,135.465317,145.713226,162.853745,180.060349,193.134735,203.151245,202.457047,190.713242,166.473572,146.622314,133.217377,129.035553,124.209114,95.308281,77.911591,92.151253,104.184319,80.663651,37.622334,16.379356,11.291754,6.234721,8.461998,7.152080,8.138856,3.488437,0.936365,0.245455,0.187604,0.289257,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.555000,4612635.550000,6282,3755,118.829765,182.489273,171.985138,163.150421,149.786789,135.381836,133.819855,133.142166,131.753738,136.423157,135.166946,145.332245,163.224808,180.704147,192.051254,200.786789,201.472733,190.307449,166.200012,145.009933,131.943817,129.059525,122.563644,94.274406,76.869446,93.026474,105.133896,79.786804,36.613239,14.290926,11.142167,4.217364,7.553733,7.047120,7.859517,2.794221,0.097521,0.158678,0.000000,0.141322,0.023967,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.355000,4612635.550000,6301,3755,118.641342,174.004974,179.690918,162.930588,145.467789,134.013229,133.236374,128.980179,129.839676,130.690918,130.814896,142.757034,162.170258,177.914062,190.624802,200.285965,200.773560,186.914062,163.666122,140.732239,130.682663,126.856209,121.872742,92.723976,76.847946,92.459518,106.120674,75.864479,37.261177,16.158697,11.079358,10.481006,8.452908,10.228114,10.655388,5.601664,0.616531,0.628927,0.783474,0.000000,0.052893,0.000000,0.003306,0.063637,1.424793,0.000000,0.000000,0.000000,0.000000,6.523141 -602005.555000,4612635.550000,6317,3755,126.880173,171.508270,178.623962,161.987610,146.053757,136.095062,133.954559,130.657028,130.359512,132.219009,131.243805,143.301682,163.376038,179.640503,190.929749,200.491730,201.962814,185.880173,162.400833,140.276886,130.458679,127.723152,123.318199,93.632240,75.789276,92.913231,107.161171,77.475220,37.822330,16.235556,11.210762,13.371917,8.679353,10.053733,8.447122,4.778521,1.380995,0.256199,0.315703,0.381819,0.123967,0.000000,0.019009,0.259504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602008.955000,4612635.550000,6334,3755,120.125641,180.414902,181.340515,168.935532,149.348785,137.547134,136.051270,133.414886,131.571915,132.811584,133.919022,144.224823,164.100815,180.538864,192.836380,202.604965,202.249603,187.084320,163.695862,142.042999,130.398361,127.009926,122.472740,93.861176,78.142166,92.530594,103.695892,74.869438,38.191753,16.385141,11.133902,10.415717,9.458692,9.914063,10.397535,4.392571,0.738845,0.321489,0.283472,0.657852,0.031405,0.037190,0.063637,0.524794,1.351240,0.000000,1.995041,0.000000,1.247108,0.000000 -602014.955000,4612635.550000,6364,3755,121.048775,183.643814,180.214066,164.470261,147.205811,134.065308,134.172745,130.751251,130.247116,130.726456,131.685135,143.619034,161.784317,179.023987,190.933075,201.875229,201.379364,186.999191,163.255386,141.635559,130.073563,127.652077,122.445465,92.949600,77.147957,91.544640,103.990921,75.817375,37.751255,16.164482,11.131424,11.266131,8.302494,9.518195,9.350428,4.759513,1.197524,0.480993,0.459505,0.136364,0.133885,0.000000,0.185951,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.755000,4612635.550000,6378,3755,104.758682,174.764481,177.169434,163.516541,149.307449,137.861160,137.290924,134.086792,133.954559,135.177689,133.549591,145.142151,163.548767,181.176865,192.961990,203.474380,203.548767,188.449600,166.226456,144.209915,131.557022,129.598343,124.581833,94.738861,79.854553,93.623154,106.598358,76.912407,38.920681,16.329771,11.325638,13.462000,10.114065,8.938030,11.035553,5.489265,1.019837,1.019010,0.353720,0.325620,0.319009,0.044628,0.167769,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.555000,4612635.550000,6397,3755,112.209114,179.642151,176.394226,159.840515,142.625641,132.212418,131.625641,128.774399,127.394241,129.063660,129.328125,141.485153,159.328125,176.964478,188.939682,200.964478,199.518188,185.890091,161.832260,139.716553,129.782669,126.865318,122.063660,92.187630,77.030602,91.832260,104.716545,77.022339,38.146301,15.533901,11.096713,9.601666,10.065305,9.672743,11.376047,6.103316,0.940498,1.113226,0.795043,0.470249,0.115703,0.096695,0.019835,0.000000,0.000000,0.000000,2.462810,0.000000,0.000000,0.000000 -602025.355000,4612635.550000,6416,3755,107.071091,183.041336,177.495880,164.900848,147.380188,133.396713,133.710754,131.000015,130.206635,132.760345,130.925629,143.107452,162.322327,179.528946,190.561981,203.123947,201.975189,186.851257,162.966965,141.528946,130.900848,128.231415,123.545471,93.066132,77.008278,92.719025,105.140511,76.570267,37.173573,15.393408,11.231424,10.907454,8.299189,9.563652,8.910756,4.379348,0.577688,0.105785,0.087604,0.123967,0.053719,0.000000,0.023141,0.000000,1.567769,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.755000,4612635.550000,6438,3755,109.234718,194.119034,182.886780,171.481827,153.481827,140.357880,140.597549,136.862000,135.539673,139.514893,137.159531,148.605789,167.837204,185.142975,197.597534,208.457031,207.035538,191.812408,167.498352,144.878525,133.985962,129.514877,123.572731,94.828941,77.423981,91.663651,104.713234,75.746292,37.853737,14.336380,11.233903,11.182659,9.019848,9.321500,9.931419,3.707445,0.528927,0.396695,0.766943,0.395042,0.568596,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.355000,4612635.550000,6461,3755,118.411583,176.979370,175.472748,163.714905,146.466980,133.417374,130.929764,128.538864,127.152908,130.076050,129.059525,139.208298,156.191757,172.745483,183.728958,194.762009,193.307465,181.092590,157.836395,134.505798,125.026466,121.285133,116.590919,88.962830,74.990097,89.020676,100.018196,74.357040,35.403320,14.323985,10.599194,7.353731,8.082659,9.938030,10.908278,4.652899,1.738844,1.415704,1.494215,1.201653,1.118182,0.462811,1.066116,0.717356,0.576033,0.000000,0.286777,0.000000,0.000000,0.000000 -602040.955000,4612635.550000,6494,3755,114.559517,169.757858,171.096710,163.361160,146.997513,135.790924,133.179352,130.295044,129.344635,130.286789,128.741333,139.832230,156.419022,173.840500,184.435547,195.171082,193.270264,180.584305,157.443817,136.154556,125.476868,122.030586,115.881828,89.617363,74.534729,89.295052,101.080177,74.633904,35.584316,14.456216,10.534731,6.224804,8.350430,7.647118,6.606622,3.573559,0.860331,0.806612,0.772728,0.191736,0.333884,0.128926,0.780992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.175207 -602047.355000,4612635.550000,6526,3755,113.082664,166.371918,171.429764,161.479355,147.909103,133.669434,132.380188,129.157043,128.024811,129.413239,129.520676,138.859528,156.231400,173.198364,183.694229,194.413239,193.272751,180.487625,157.900848,136.371902,125.884315,122.347122,118.272743,90.504150,75.876053,90.826462,102.801666,76.363655,36.735554,15.748777,10.752086,8.323979,8.039685,8.005796,9.084312,3.195872,0.322315,0.309092,0.152893,0.141323,0.004959,0.000000,0.560331,0.453719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.555000,4612635.550000,6542,3755,130.582642,168.574402,168.177704,159.359528,145.466965,133.268600,130.111572,127.896698,126.061981,129.409088,127.152893,137.681824,153.805801,169.425629,181.987625,191.252060,190.342972,177.789276,155.574402,134.797516,123.450417,120.632233,115.954544,87.739685,72.442162,89.136383,97.938026,74.078529,36.524815,14.790925,10.541341,4.240504,7.832244,8.518194,7.653730,2.527277,0.491736,0.169422,0.053719,0.091736,0.120661,0.066116,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602055.155000,4612635.550000,6565,3755,96.838036,164.383484,165.523987,158.011597,143.433075,131.127289,129.697525,125.813232,125.077698,127.755386,126.408279,136.829773,152.962006,169.366959,180.540512,190.383484,189.821503,176.854568,154.557037,133.457855,122.912407,118.614891,114.672737,87.829765,71.846298,88.251251,101.019844,72.664482,35.466137,14.336381,10.424812,5.713232,7.390096,6.016539,7.783485,2.467773,0.227274,0.005785,0.190910,0.038843,0.000000,0.063637,0.000000,0.438017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602060.955000,4612635.550000,6594,3755,89.860344,160.529770,166.777710,156.777710,144.257019,131.083481,128.083481,124.769432,124.108276,126.174393,124.951256,135.133072,151.265289,167.868622,179.141342,189.538010,188.124786,175.835556,153.414047,132.628937,121.637199,117.108276,112.645470,85.554558,73.381004,86.314888,97.314888,74.265305,33.628948,14.133901,10.240514,6.347944,6.766957,6.292573,6.198359,3.225626,0.421488,0.000000,0.091736,0.095868,0.110744,0.195868,0.000000,0.643802,0.000000,0.000000,0.000000,1.722314,0.000000,0.000000 -602069.155000,4612635.550000,6635,3755,103.381004,155.372757,167.166138,158.017365,142.422348,132.190918,129.587616,126.463646,124.538033,126.000839,126.306625,136.802505,153.422348,169.108276,179.504990,189.785965,189.083496,177.017380,153.182678,132.662003,122.951256,118.149597,113.009102,87.604156,72.323158,85.612419,101.777702,74.513245,34.992580,14.260348,10.273573,6.046291,6.673568,8.546294,7.906623,2.598351,0.357852,0.176033,0.000000,0.000000,0.000000,0.142149,0.000000,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.755000,4612635.550000,6688,3755,88.940514,145.791763,165.246307,153.403336,139.411591,127.510757,125.676048,122.527290,120.890923,122.279350,122.444641,132.494232,150.089279,164.750443,175.031433,184.742172,184.072754,171.857880,150.213242,128.700836,117.312408,114.626457,109.981834,83.246307,67.923988,84.775223,97.014893,72.163658,32.419853,11.344644,9.998366,4.214884,6.757039,6.397532,5.353728,1.222318,0.428926,0.095041,0.055372,0.184298,0.000000,0.014050,0.316529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.555000,4612635.550000,6737,3755,100.795891,148.151245,165.258698,156.597549,139.481842,129.853745,126.142998,123.795891,122.630600,122.291756,122.490105,132.680191,149.019028,165.357880,176.862000,185.985977,184.969437,173.498367,150.820679,129.721512,119.324814,115.820686,110.390930,84.605804,69.539696,85.523163,98.109940,74.192581,34.242172,13.290101,10.035557,6.671085,7.113239,8.176045,6.261170,3.539676,1.042151,0.108265,0.057025,0.201654,0.091736,0.073554,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.155000,4612635.550000,6770,3755,91.250427,149.200836,163.490082,157.275223,141.771103,132.010757,128.762817,125.878525,123.944641,124.366119,124.663643,134.572739,151.746307,166.919846,179.300003,188.085129,187.853729,174.498352,151.655396,130.977707,120.614067,117.035553,111.027290,85.837204,71.052086,86.845467,99.349602,73.324814,35.407459,12.768613,10.093407,7.263648,7.220675,6.939680,7.107450,4.081826,0.460332,0.292563,0.188430,0.000000,0.002479,0.351240,0.132232,0.247108,0.000000,2.166116,0.000000,0.000000,0.000000,0.000000 -602099.555000,4612635.550000,6787,3755,93.745461,154.191742,165.720673,156.290924,142.257858,132.935547,129.224792,126.447937,124.076035,125.745453,125.753723,135.770264,152.869431,168.067780,179.571915,188.274384,187.580170,174.472733,152.315720,132.563644,121.348763,118.249596,111.654556,86.728935,71.737198,87.216537,99.778519,74.191742,35.786800,14.848778,10.150431,5.438027,9.009107,7.728938,7.613236,3.824800,0.029752,0.219836,0.104133,0.023967,0.000000,0.122314,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.755000,4612635.550000,6808,3755,97.926468,154.463654,166.331406,156.819000,141.976059,132.166138,129.223984,125.860352,123.711594,125.736382,125.298370,136.521500,152.571091,167.405777,179.207428,188.380981,187.009094,175.182648,152.273560,132.372742,121.769440,118.116547,111.827293,85.620682,71.480186,86.364487,100.108276,73.703323,34.298363,13.673572,10.166136,5.532243,8.233073,8.697533,8.231419,2.374385,0.468596,0.200000,0.301654,0.160331,0.000000,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.755000,4612635.550000,6838,3755,92.594231,149.660355,167.445465,157.404129,141.081833,131.833908,127.420677,125.354568,123.346298,124.668617,124.528122,135.189270,152.090103,166.974380,178.883484,188.032242,187.966141,174.817368,152.800842,131.106628,121.437210,117.354568,112.718201,86.486794,72.065308,87.800842,98.982666,75.296715,35.445473,13.362001,10.247127,7.200839,9.209931,7.511581,7.044641,3.261163,0.752895,0.271076,0.242149,0.071901,0.051240,0.290910,1.027273,0.302480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.155000,4612635.550000,6875,3755,91.561180,147.734711,163.048767,154.668594,141.131409,130.602493,127.536377,124.866951,123.214058,123.776047,124.627281,134.048767,151.073563,167.197525,178.189255,188.181000,186.214050,173.767776,152.536362,131.048767,120.230591,117.123154,111.445465,84.999191,69.825638,85.230598,98.767792,72.536385,33.081837,12.660348,10.131424,5.372737,6.100014,6.658689,6.477697,2.005790,0.737192,0.363637,0.150414,0.000000,0.000000,0.065289,0.203306,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.355000,4612635.550000,6906,3755,82.586792,156.900848,165.727295,154.181839,138.528946,128.041336,124.074394,121.206635,120.165306,120.495880,120.760353,130.801666,148.396698,163.818192,174.462814,183.611572,182.760330,169.859497,148.371902,128.198364,116.735550,113.347130,108.363655,82.363663,67.099197,83.165306,97.057861,70.876060,33.429771,11.948778,9.851259,6.844640,8.263651,9.142990,5.434721,2.417361,1.216531,0.320662,0.062810,0.199174,0.390909,0.115703,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.355000,4612635.550000,6941,3755,95.250427,152.977692,164.547958,154.184326,138.729782,128.886780,126.209106,123.547951,120.969429,121.903320,123.366119,132.002487,149.291763,165.167786,176.076859,186.465302,184.886780,172.828934,151.266968,129.366119,119.423981,116.258690,110.209106,83.903313,69.333069,85.225624,98.498352,73.126457,34.167789,13.523158,10.019027,6.409930,7.321504,9.147121,7.438030,3.832238,0.261984,0.267769,0.284298,0.107439,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.238843,0.000000 -602134.155000,4612635.550000,6960,3755,90.553741,150.438034,165.454559,154.942169,139.479355,129.066147,126.289284,122.388451,121.652916,121.140518,122.752090,133.454575,150.206635,164.727295,176.388443,185.834732,185.909103,172.561996,149.322327,129.429779,118.454567,114.719032,110.636391,83.520683,68.330605,85.619858,96.090935,70.652916,33.768616,13.219027,10.057871,4.149597,7.363652,6.147118,7.242988,3.013230,0.763638,0.441324,0.233058,0.071075,0.000000,0.000000,0.302480,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.355000,4612635.550000,6986,3755,99.196709,152.097534,167.841324,155.014877,140.609924,129.593399,126.485962,122.874397,122.295883,122.833069,122.742165,133.213242,150.568604,166.122314,177.527283,187.568604,185.436371,172.196701,150.642975,130.452911,119.221504,115.915718,110.436378,84.056213,69.552086,83.816544,97.436378,70.692581,33.634731,12.605803,10.039688,6.210755,6.128939,6.112409,7.730592,2.380998,0.444629,0.520662,0.114876,0.027273,0.106612,0.000000,0.123967,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.755000,4612635.550000,7028,3755,94.876053,158.512405,165.900848,158.123978,142.074402,131.404968,128.859528,125.413239,123.256218,124.041336,124.049606,134.785141,150.983490,167.669434,178.198364,188.148773,187.512405,173.834732,151.413239,131.950424,121.966957,118.057869,112.000015,86.066132,71.528938,86.123985,99.595055,73.115715,36.363655,14.712414,10.181837,8.083484,8.967784,10.885139,7.466129,3.326452,0.666944,0.299175,0.190083,0.000000,0.000000,0.000000,0.827274,0.000000,0.000000,2.266942,0.000000,0.000000,0.000000,0.000000 -602154.755000,4612635.550000,7063,3755,83.335548,155.996704,162.558685,151.823151,138.591751,126.715714,124.467781,121.806625,120.814888,120.087616,120.451256,131.409927,147.823151,162.690918,173.905792,184.162003,183.442993,170.699188,147.409927,127.302490,118.409927,114.360344,107.327286,82.674393,67.401672,81.368607,94.310760,69.021500,29.996716,10.052083,9.757044,5.752905,5.386788,4.962821,5.976871,2.690915,0.506613,0.000000,0.089257,0.041323,0.000000,0.000000,0.057851,0.000000,2.257025,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.155000,4612635.550000,7095,3755,96.657043,163.946304,169.095047,159.219025,142.566132,131.756210,129.500015,125.623985,124.442162,124.797539,124.979355,134.971085,152.235550,167.921509,178.400833,188.681824,186.896698,174.533051,151.855377,130.838852,120.516548,117.169441,111.863655,85.954559,71.450432,85.194229,97.260345,71.367783,33.367790,13.500018,10.169440,7.812407,8.741337,7.385135,7.352906,4.322321,0.563638,0.570249,0.098347,0.658679,0.039670,0.000000,0.201653,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.155000,4612635.550000,7115,3755,101.301666,159.954559,168.640518,155.219025,140.185974,131.417374,128.913239,124.557869,123.971092,124.764481,124.979355,135.037201,151.376053,166.400848,177.888443,188.070267,188.367783,174.392578,151.367783,129.557861,119.632248,117.491753,111.681831,85.243820,71.285149,86.202492,96.582664,69.847130,33.876053,12.914893,10.152912,5.992572,8.133073,6.576871,6.794228,4.275213,0.530580,0.070248,0.052066,0.065290,0.492563,0.069422,0.000000,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.155000,4612635.550000,7135,3755,104.198364,168.752060,168.330597,160.198349,143.099167,131.247940,129.123978,126.247940,124.297531,125.578522,125.016541,137.314087,152.537186,168.504150,179.884308,189.628113,189.016541,174.776871,152.157028,132.016541,121.140503,118.570259,112.727280,86.966957,72.033073,86.471092,97.330589,70.834724,34.305801,14.204150,10.247953,7.541336,9.004973,7.981004,7.064476,3.020665,0.039670,0.237191,0.361985,0.050413,0.000000,0.211571,0.307438,0.275207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.355000,4612635.550000,7161,3755,97.194229,161.342987,165.954559,157.574402,142.880188,132.351257,130.004150,126.458694,125.475220,125.442162,125.632248,136.309937,153.318192,167.995880,179.508286,189.177704,186.855392,174.838852,151.962830,131.648773,121.888443,118.830597,112.681831,86.557869,72.293404,84.855385,95.466957,70.210762,33.805805,13.806628,10.243821,7.747119,7.748775,7.390920,7.206625,2.555376,0.900828,0.379339,0.109918,0.342149,0.000000,0.133885,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602178.155000,4612635.550000,7180,3755,107.986794,165.978500,170.656189,159.077667,141.928940,132.267792,129.771927,126.375229,124.201675,125.160347,125.879356,134.937210,152.061172,167.837997,177.970245,188.887589,188.160324,174.714050,151.391754,132.656219,122.862831,118.639687,112.581841,87.259521,72.804985,85.796715,96.747124,70.598366,34.292580,15.317373,10.234731,8.267782,9.009107,7.829765,8.693401,2.763642,1.176861,0.359505,0.306613,0.027273,0.000000,0.252893,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602182.755000,4612635.550000,7203,3755,99.649597,162.806625,166.889267,158.831421,142.740509,130.856216,129.062820,124.823151,123.996704,124.806625,124.955383,134.740509,151.112411,165.980179,178.963654,188.732239,187.335556,174.310760,151.492569,131.302490,120.947121,117.203316,112.418198,86.641335,71.219849,84.649597,97.186790,69.600014,31.013245,12.099190,10.219853,6.399185,7.590923,6.438026,5.973567,2.966947,0.838018,0.261158,0.493389,0.060331,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602187.955000,4612635.550000,7229,3755,109.887619,167.375214,169.747131,158.614899,145.152084,133.003311,130.821503,127.664474,125.168610,128.234726,125.664474,136.689270,152.887619,169.102478,180.127289,190.499161,188.780151,175.457870,152.209930,132.185135,121.887619,118.565308,112.672745,86.945465,71.292580,85.928940,96.557045,70.548782,33.747128,15.057041,10.242993,9.552906,9.028113,8.096706,6.976871,1.884300,0.278514,0.285951,0.109091,0.066943,0.000000,0.000000,0.382645,0.296694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602192.955000,4612635.550000,7254,3755,90.161995,165.889267,166.740509,159.434723,143.244644,130.459503,129.327271,127.112404,125.352074,127.161987,125.319016,135.757034,151.542160,167.368607,178.897537,189.137207,188.352081,173.947113,152.558685,131.930588,121.112404,118.765297,112.872734,86.203316,72.550423,85.732246,96.690926,69.343826,33.583492,13.564481,10.261176,7.308276,8.477699,7.628938,7.640508,3.661162,0.661985,0.499174,0.871076,0.295042,0.000000,0.066116,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.955000,4612635.550000,7269,3755,100.604149,178.612411,169.785965,162.042160,145.529770,132.356216,130.141342,127.959518,126.711586,129.405792,126.397537,137.215714,153.298355,169.653732,180.711578,191.802490,189.951248,175.934723,153.736374,133.984314,123.000839,120.438858,114.827286,89.314888,74.240509,87.025635,97.620674,71.918198,33.273571,15.366960,10.438862,9.101667,8.304973,8.243813,9.454559,3.217361,0.682646,0.433885,0.195868,0.194216,0.000000,0.066116,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602200.355000,4612635.550000,7291,3755,113.796715,167.540497,169.482651,161.829758,145.804977,132.193405,131.904144,129.515717,128.185135,130.681000,127.358688,138.523987,153.358688,170.912399,180.970245,193.507446,191.251236,176.391739,154.416534,133.970261,123.168610,120.730591,116.036385,89.209938,73.970268,88.011589,96.614891,69.028122,33.259525,13.343820,10.548779,8.916540,8.642991,9.956212,8.137203,2.712402,0.239670,0.195042,0.314051,0.000000,0.000000,0.210744,0.310744,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602206.955000,4612635.550000,7324,3755,104.847122,171.590912,169.871902,161.376053,145.665298,134.450424,132.045471,128.863647,128.276871,132.111588,128.400848,140.342987,156.210754,174.830582,186.268600,199.185944,198.690079,183.252060,163.136368,143.012405,131.219025,127.838860,122.318199,93.086792,79.086792,94.334724,105.342995,75.012413,35.425640,14.218200,11.119854,9.143814,9.190925,10.221503,10.279352,4.079348,1.093391,0.480167,0.278513,0.096695,0.000000,0.000000,0.352066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602210.155000,4612635.550000,7340,3755,119.993408,175.737198,167.828110,160.778519,143.001663,130.811584,128.580185,124.877708,123.505814,127.927299,123.728951,135.241348,149.629761,166.381821,178.423157,190.042984,188.596710,173.869431,154.233063,135.018204,124.481018,121.704147,116.018196,88.001678,74.365318,88.563660,98.704155,70.844650,32.795063,12.276876,10.547126,8.624806,7.023980,6.909931,7.291746,3.709925,0.478514,0.385952,0.137191,0.000000,0.000000,0.011570,0.295868,0.895868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.355000,4612635.550000,7366,3755,111.961998,173.631409,170.995041,162.573563,145.284317,130.358688,129.614883,125.152077,124.523979,129.052902,123.557037,134.152084,147.780182,163.532242,175.681000,187.284302,185.085953,171.003311,151.689270,132.573563,123.366951,119.474396,114.763649,86.937210,72.846298,88.945473,97.185135,70.085968,33.695889,13.985967,10.433077,9.839681,7.585137,9.312412,7.739681,3.708272,0.690085,0.024794,0.057025,0.161158,0.037190,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.755000,4612635.550000,7383,3755,109.774399,170.972733,168.757874,160.204163,142.443832,130.311584,126.468613,124.129768,122.138031,126.311584,120.518196,130.171097,143.956223,158.956223,170.419037,180.104980,179.204163,165.352921,146.088455,128.179352,119.328117,114.981010,109.518196,83.245461,70.468605,85.972740,93.319855,67.625633,32.865311,14.095057,9.956217,10.509930,6.957037,8.670261,8.427283,3.428106,0.479340,0.575208,0.111571,0.066942,0.000000,0.007438,0.000000,0.622315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.355000,4612635.550000,7396,3755,125.509094,171.228119,169.798355,161.236374,143.038025,131.285965,128.723969,124.633072,123.186783,128.128937,122.451256,132.856216,147.657867,163.153732,175.426453,186.558685,184.847946,169.922333,151.525635,133.476044,122.178520,118.947121,113.418190,87.062820,72.104156,89.120667,96.624802,68.591759,34.196712,13.584314,10.310762,9.819023,8.081004,9.047121,9.707450,5.584306,0.793390,0.323968,0.076034,0.095042,0.129752,0.051240,0.299174,0.000000,0.000000,0.000000,1.966116,0.000000,0.000000,0.000000 -602224.155000,4612635.550000,7410,3755,113.046295,172.046280,166.228088,158.178513,141.525620,129.699188,125.071091,122.013237,120.244644,124.649597,119.831421,129.748779,144.021484,159.211563,171.633057,182.790085,181.335541,167.004959,147.054535,129.186783,118.657867,114.484314,109.690926,83.244644,68.690926,87.128937,95.153732,66.922333,31.666964,13.157041,9.971919,11.290924,6.770260,7.009930,6.406623,3.175214,0.590910,0.538844,0.476034,0.152067,0.129752,0.022315,0.059504,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602227.155000,4612635.550000,7425,3755,129.843002,154.727280,155.214874,146.611572,131.057861,120.330589,117.066124,114.256203,113.851250,114.859512,114.842987,126.942162,141.859497,157.413223,170.826447,181.975204,183.090912,172.429749,150.719009,131.347122,120.809929,117.082649,111.636375,85.281013,68.975227,86.495895,98.396721,73.281013,34.512421,13.148779,10.148780,4.817365,8.048773,7.329765,6.398358,3.766951,0.727275,0.426448,0.122314,0.000000,0.234711,0.000000,0.226447,0.381819,0.000000,0.000000,1.795868,0.000000,0.000000,3.085951 -602230.555000,4612635.550000,7442,3755,126.061165,158.796692,153.912399,145.904129,130.400009,120.804962,117.879341,114.871078,112.854546,114.714050,116.309097,127.044632,142.433060,157.664459,170.003311,181.656204,182.672729,172.796692,150.920670,131.333893,120.408264,116.160332,112.036369,84.920662,69.019852,85.548767,98.176865,73.590103,32.813244,13.598364,10.185143,6.556210,7.649599,7.939682,6.873567,3.629760,1.584301,0.751242,0.148761,0.038017,0.300001,0.004959,0.476860,0.486778,6.920661,2.095868,0.000000,0.000000,1.804132,3.132232 -602236.155000,4612635.550000,7470,3755,122.442162,157.962830,154.128113,143.367783,128.475220,119.458694,116.285141,113.830597,111.028938,113.169441,114.161171,124.524811,139.946304,155.673569,167.962830,177.896713,178.582657,167.566132,147.400848,126.863655,116.962830,113.681831,107.136383,82.252083,67.830605,82.739685,92.772743,68.020683,30.533073,11.793405,9.739690,5.166953,7.066128,7.499186,8.930593,2.634718,1.157855,0.254547,0.231405,0.356199,0.168596,0.000000,0.316530,0.738018,0.000000,0.000000,0.000000,0.000000,1.800000,3.124794 -602244.355000,4612635.550000,7511,3755,141.792587,157.561172,152.552917,141.734726,125.759514,115.809105,112.594223,110.544640,111.123154,112.222328,113.461998,124.090096,141.288452,157.271927,169.585968,180.147949,180.668610,170.346298,148.263657,128.098358,118.759514,114.569435,110.081841,84.032249,67.114899,82.784317,95.900017,69.131424,31.404150,11.796714,10.007458,8.132241,8.700014,8.457864,9.774394,6.105797,0.976035,0.705787,0.583473,0.183472,0.528100,0.786777,3.584300,1.945458,12.887605,5.924794,3.600000,1.510744,5.001653,5.889256 -601405.355000,4612625.550000,3316,3805,154.777695,144.554565,133.157867,119.794235,106.215714,95.728111,93.323158,90.430603,91.281830,92.397545,94.843811,105.587616,124.868614,141.612411,155.984314,166.397537,167.620667,158.645462,135.976044,115.091759,104.265305,101.149597,95.736374,68.223991,48.909939,65.777710,81.653740,59.653740,27.628946,10.191751,8.703324,13.841339,10.328940,10.742164,14.247125,11.014062,3.013230,1.543805,1.916532,0.942977,0.789258,1.924796,0.845456,2.366119,10.515704,19.787605,11.614052,11.095043,12.183474,22.859507 -601408.755000,4612625.550000,3333,3805,142.401672,149.285965,136.864471,125.038040,109.368614,99.814896,97.641342,94.013245,94.409935,95.872749,96.145477,108.236382,126.748779,143.798355,157.839676,167.938858,168.971909,158.054565,135.310760,113.467789,103.310768,100.624817,93.600021,65.517380,47.938866,63.715725,79.327293,57.542175,25.442995,9.807453,8.509109,11.234727,8.398361,10.351253,10.632247,7.580175,2.126453,0.974384,0.776036,0.552894,0.844631,0.361158,1.384299,1.436365,13.112398,12.536365,6.416530,5.444630,5.163637,4.939670 -601413.955000,4612625.550000,3359,3805,131.941330,146.061996,137.904968,126.342987,112.814056,103.400833,99.318192,97.623978,98.177696,99.557861,101.409096,111.590919,129.037201,147.070267,159.309937,170.367783,171.037201,158.268616,134.962814,113.673561,104.384315,99.739677,94.772736,67.219025,48.681839,65.607452,79.392578,58.194237,24.657045,10.335553,8.615722,9.634726,8.272739,8.983485,10.968610,8.009101,2.076038,0.629755,0.033885,0.301653,0.065289,0.470248,0.956199,0.814877,8.264463,6.900001,5.815703,5.200001,5.117356,5.051240 -601421.955000,4612625.550000,3399,3805,127.604973,143.782654,141.014053,129.526459,114.567787,107.088455,105.113251,101.757874,101.088455,103.410767,104.055397,115.675224,132.906616,149.443832,161.790939,172.096725,172.807465,161.410767,137.253723,115.857040,104.848785,101.501671,95.700020,68.551262,50.914894,66.369438,77.782669,58.319855,24.995060,10.016545,8.700019,7.508276,7.179350,7.620674,8.513236,4.781826,0.601655,0.264465,0.270249,0.069422,0.052893,0.038017,0.166116,0.790910,2.621488,2.680166,4.167769,4.215703,4.081819,7.085124 -601434.155000,4612625.550000,3460,3805,120.193398,147.095047,143.475204,132.855392,117.136383,109.293404,106.045471,104.466957,104.648773,105.301666,106.921501,117.037209,136.210754,150.880173,164.979340,174.524796,174.144623,163.342972,140.268600,119.169441,107.962830,104.574394,97.954559,70.260345,53.896717,68.301666,80.458694,59.880184,26.731422,9.380181,8.904978,6.437202,7.114887,7.340510,8.350427,5.461165,0.489258,0.060331,0.000827,0.416530,0.126446,0.000000,0.285951,0.000000,1.961984,3.071075,5.064464,3.307439,3.842149,1.928926 -601452.555000,4612625.550000,3552,3805,106.920677,148.998367,147.568619,134.957047,121.246292,113.105797,109.081009,108.444641,106.899185,110.081009,110.684311,120.618195,138.411591,154.436386,167.552094,177.403336,177.254562,166.502502,142.833084,121.742165,110.238029,106.196709,100.436378,73.502502,55.535557,70.684319,83.031418,62.990101,26.766960,11.083490,9.130598,5.368606,7.865302,7.561996,5.724807,3.032237,0.238017,0.000000,0.104959,0.057025,0.000000,0.000000,0.492562,0.246281,0.000000,4.700001,2.528926,1.485951,2.033058,0.000000 -601469.555000,4612625.550000,3637,3805,120.627281,151.154572,148.757874,140.394241,127.278519,116.832253,114.534729,113.377701,113.047127,115.625633,116.542984,126.468605,144.245483,159.807449,172.476883,182.848785,182.609116,171.452087,148.790939,126.468605,115.642166,109.981010,104.245476,77.138031,59.815720,74.592583,87.113243,67.055389,28.888451,12.595887,9.476879,5.244639,7.937204,8.130594,7.260344,2.555377,0.778514,0.294216,0.208265,0.128926,0.025620,0.226447,0.405785,0.341323,0.000000,2.029752,0.965289,1.507438,1.661157,0.000000 -601479.755000,4612625.550000,3688,3805,142.580170,184.662827,164.985138,156.885956,139.547119,126.034721,124.819847,122.497528,122.522324,128.745468,123.051247,133.968597,150.290924,167.571915,180.935547,191.621490,189.332245,174.431412,152.952072,133.910751,122.150421,119.728935,113.927284,84.687614,69.224800,85.018188,95.976868,67.092583,33.150433,13.814067,10.357043,12.766132,7.663650,8.081832,8.285964,3.542985,0.661158,0.048760,0.100000,0.000000,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.155000,4612625.550000,3735,3805,130.538849,184.216537,164.431412,156.464478,138.439682,125.629761,124.414894,121.927284,121.431419,126.365295,122.133904,133.439682,150.481003,167.191742,180.365295,189.786789,188.786789,174.803314,153.117371,132.753723,122.158684,118.712418,113.654556,84.381836,68.885971,83.216545,94.795059,69.472748,32.514069,12.803324,10.332251,10.376049,7.915716,9.253734,6.676044,4.100835,0.446282,0.146281,0.182645,0.052893,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.755000,4612625.550000,3753,3805,116.942162,173.528931,162.280991,154.190079,137.462814,123.619850,123.917374,121.834724,121.024811,124.380180,121.809937,132.867783,149.884293,166.661163,179.396698,189.925613,187.388428,174.024796,151.297516,131.966965,121.008278,118.198364,112.545471,83.694229,68.082664,81.801674,93.413239,69.247955,31.933903,11.560349,10.231425,8.892578,6.704146,7.952080,9.261172,2.430586,0.711572,0.095042,0.039670,0.057851,0.000000,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.755000,4612625.550000,3768,3805,112.399185,175.423981,163.845459,153.680191,137.523163,124.432243,123.944641,121.630592,121.514893,124.192574,121.754562,132.903320,149.680191,167.019012,178.837204,188.663635,188.407440,173.977692,152.729782,132.432251,121.167778,118.316536,112.663643,84.704971,67.870270,82.242165,94.275215,69.134727,31.308285,12.490100,10.242168,9.785140,7.601666,9.759520,7.953732,4.514059,0.753721,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.116529,0.000000,0.000000,0.000000 -601498.555000,4612625.550000,3782,3805,110.361183,177.956207,166.030594,155.906616,137.724808,125.741333,125.278519,122.385963,121.923149,125.691742,122.873566,134.923157,151.600830,168.609100,179.832245,190.741333,188.848770,176.369431,153.485138,132.295044,122.113243,120.162827,113.609100,84.890091,69.906631,82.981010,95.369431,70.749603,33.286797,13.049605,10.328118,9.736381,8.117372,8.939684,9.661171,4.563646,0.858679,0.340497,0.094215,0.000000,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,1.104132,0.000000,0.000000 -601501.755000,4612625.550000,3798,3805,120.577705,169.916534,163.387604,153.362808,137.949585,125.693405,125.693405,122.883492,122.371094,125.090103,123.470268,134.982666,152.181000,168.767776,180.643799,191.238846,189.387604,176.800827,154.395874,133.023987,123.007454,120.139687,114.990921,84.800842,69.007454,83.751259,95.610764,69.627289,31.698368,13.327290,10.453737,10.589272,7.600842,9.212414,9.642989,3.394222,0.731407,0.235538,0.101653,0.061984,0.092562,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.955000,4612625.550000,3814,3805,105.495056,172.528107,162.767776,151.685150,137.263657,124.511581,123.073563,121.933067,120.346291,122.627281,121.924805,132.610748,151.073578,166.420670,179.519836,189.172729,188.561157,175.875214,152.412415,131.941330,121.007446,118.214058,112.081833,83.602493,66.751259,81.181000,94.181000,69.528122,33.329773,12.514894,10.189276,8.668610,7.473568,7.109105,7.683485,2.352073,0.319836,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.955000,4612625.550000,3834,3805,109.482666,167.185150,163.094238,152.052917,137.044647,124.400017,125.143822,122.300842,120.804977,123.433075,122.846298,134.234726,151.755386,168.507462,180.052917,191.846298,189.573578,176.028122,153.647949,133.548782,121.433075,119.656219,114.490929,84.119026,69.160347,83.127289,95.052910,70.714066,32.995060,12.827291,10.408284,8.533900,7.990098,7.240510,7.928940,3.308272,0.685952,0.239670,0.036364,0.055372,0.000000,0.000000,0.000000,0.028099,1.266942,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.955000,4612625.550000,3849,3805,109.985962,167.994217,163.134720,152.523148,137.382645,125.399185,125.374397,122.407455,121.200844,123.324806,122.349602,134.308273,152.126450,168.457031,180.076859,189.671906,189.233887,176.597534,153.845459,133.498367,122.324806,119.266960,114.481834,84.581009,68.333069,82.465302,95.977699,69.581009,32.696712,13.536381,10.407457,8.528113,7.950429,7.884311,7.833070,3.583479,0.571902,0.238017,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.155000,4612625.550000,3865,3805,106.345467,167.885117,162.405792,152.257034,137.736359,126.290092,123.604149,121.876869,121.728111,123.835548,121.471916,134.100006,151.521500,168.942978,179.819000,190.802490,188.149597,177.852066,153.273560,133.488449,122.752907,118.909927,113.645470,84.951256,68.976051,81.166130,96.719849,70.207451,33.347954,13.093405,10.331424,8.149600,7.834727,8.957038,8.870261,4.315710,0.376034,0.100000,0.347108,0.100000,0.000000,0.000000,0.000000,0.000000,1.347108,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.755000,4612625.550000,3878,3805,106.155388,168.342148,163.623138,152.044632,136.871078,124.928947,124.400017,121.077705,120.697540,122.185143,122.540512,133.267792,151.333893,167.276031,179.300827,189.168610,187.259506,176.623138,152.862808,132.523987,121.342171,117.788452,112.490929,83.085968,67.160347,81.623161,93.185143,69.333900,31.937210,13.706629,10.226464,7.314889,6.785964,7.663650,8.106624,3.742157,0.461159,0.211571,0.055372,0.000000,0.048760,0.000000,0.000000,0.000000,2.280992,0.000000,0.000000,1.351240,0.000000,0.000000 -601521.555000,4612625.550000,3897,3805,110.262825,168.023163,163.072754,152.576889,137.039688,125.097534,123.833061,121.593391,121.023148,121.510750,122.502487,132.890930,151.155396,167.204987,179.667786,189.667786,188.485977,176.196716,153.775223,132.618195,121.527283,119.014885,112.618187,84.089272,68.345467,80.601669,94.742165,70.047951,32.659523,13.132250,10.238035,7.519022,8.442991,7.505799,8.233070,3.842983,0.804134,0.089257,0.488430,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.955000,4612625.550000,3914,3805,130.842987,165.198364,161.743820,151.074402,137.652908,125.421501,123.842995,120.760345,120.123985,121.239685,121.900841,132.834732,150.785141,167.008286,179.462830,189.553741,187.776871,176.049606,153.066132,131.305801,120.752083,118.338860,111.636383,83.264481,66.966965,82.016548,94.975220,70.206627,32.281013,13.878531,10.148779,7.487617,6.820673,7.025634,7.787615,3.427281,0.480167,0.195868,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.955000,4612625.550000,3929,3805,100.764481,163.219025,163.136383,151.491745,136.582657,125.078529,124.194229,121.012413,120.929771,122.276878,121.921501,134.136383,151.458694,167.863647,179.979355,188.938019,188.714874,176.342987,153.309937,132.524811,121.334724,118.219025,112.772743,82.896713,67.095055,81.962830,96.161171,70.028938,32.962830,14.442167,10.252085,8.315717,6.325633,8.233071,8.115716,3.421495,0.659506,0.180166,0.052066,0.000000,0.000000,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.955000,4612625.550000,3944,3805,99.852913,160.819824,163.224792,151.150406,135.514053,124.489273,123.844643,121.117371,120.166962,120.902496,121.861176,132.943817,151.009918,167.175201,179.125610,188.241318,188.563629,176.613220,152.447922,131.274399,120.538864,117.299194,113.290924,83.770264,68.084312,82.621506,96.100845,69.795067,34.390106,12.733077,10.299193,7.738858,8.666958,7.200840,9.278529,2.905792,0.741325,0.494216,0.057025,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.062810 -601533.555000,4612625.550000,3957,3805,107.210754,157.929779,162.425659,149.557877,136.590927,124.681824,123.268600,121.805794,120.500008,122.698357,121.359512,133.698349,151.533096,167.210770,179.747971,188.549606,188.177704,176.690109,152.714905,132.417358,121.070259,118.185959,112.409096,83.252075,67.004150,81.797531,94.681824,70.078522,32.706631,12.858695,10.219027,7.747122,8.267785,8.323156,7.128939,2.990090,0.953722,0.191736,0.114876,0.182645,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.355000,4612625.550000,3971,3805,107.565308,164.366943,160.408264,153.251236,138.110764,126.036385,123.804977,123.218201,122.416550,123.532249,124.201675,135.077698,153.457855,170.135544,182.127274,191.135544,190.614883,178.705795,154.747116,133.862823,123.061180,119.499191,114.672745,85.094231,68.110764,82.689278,97.028122,71.937210,34.656212,14.294232,10.424812,9.980182,8.671917,9.655386,10.213239,3.855380,0.626448,0.178513,0.104133,0.000000,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.155000,4612625.550000,3990,3805,111.042168,164.149597,165.785965,152.405792,136.579361,126.157867,125.529762,122.033897,121.736374,122.604149,123.703316,134.802490,153.000839,168.397537,181.422333,190.281830,190.075226,178.133072,154.207458,133.455383,121.686790,118.604149,113.645470,85.538040,68.447128,84.075226,97.752914,72.463654,33.728119,14.629770,10.331425,9.561172,6.733074,9.566131,9.240510,4.468604,0.852895,0.114050,0.158678,0.211571,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,1.065289,0.000000,0.000000,0.000000 -601543.555000,4612625.550000,4007,3805,104.082664,163.157028,161.190094,149.719025,136.338852,124.454559,124.099190,120.785141,120.140511,121.793404,121.247948,133.107452,151.462830,167.561996,178.834717,189.173553,188.380173,176.190079,152.752075,132.628113,120.909103,117.586792,112.545471,83.330589,67.768608,81.628105,95.066124,70.363655,32.264484,13.982664,10.231425,7.899188,7.719850,8.171088,7.641337,3.364471,0.792564,0.074380,0.099174,0.059504,0.000000,0.000000,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.155000,4612625.550000,4025,3805,91.165298,163.611588,160.231415,150.545471,135.033081,124.289276,124.000015,121.107452,119.966957,121.454559,121.884315,132.743820,151.710754,167.223160,179.289276,188.421509,188.206635,175.685974,152.586792,131.471085,120.173569,117.256218,112.000015,82.462830,66.504150,82.446297,95.636375,70.206627,31.826464,12.800843,10.181837,7.766130,7.091751,8.047949,7.757037,4.194223,0.497522,0.356199,0.131405,0.000000,0.000000,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612625.550000,4064,3805,114.523155,158.539673,162.531418,152.895050,138.390915,127.622330,126.184311,123.597534,122.209106,123.366127,124.779350,135.671906,153.671906,169.440506,182.167770,191.060333,190.779343,178.539673,155.176041,134.002487,123.490105,119.779350,114.845467,85.688446,68.895065,84.151253,95.994232,71.101685,34.919857,14.495887,10.440516,7.719021,9.012413,10.221503,10.555387,4.510753,0.376034,0.257852,0.050413,0.000000,0.000000,0.259504,0.000000,0.033884,0.000000,0.000000,1.005785,0.000000,1.144628,0.000000 -601558.555000,4612625.550000,4082,3805,105.628113,162.173569,160.859528,151.380188,137.570267,126.066132,123.553734,121.239685,121.074394,122.512413,122.462830,133.909103,152.016541,168.570267,180.801666,189.842987,189.528946,177.537201,154.297531,132.991745,120.867783,118.256218,112.181831,83.685966,67.247955,82.619850,97.198364,70.066132,33.776878,13.683489,10.198366,6.757865,7.269437,8.123155,7.209933,3.448768,0.640497,0.118182,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.555000,4612625.550000,4097,3805,107.913239,157.423981,160.845459,151.713242,136.423996,126.688438,123.655380,121.556206,120.812401,122.101662,122.969429,134.614059,152.828949,167.870255,180.754547,190.572739,190.225632,176.787613,154.556213,132.919846,121.382652,117.729759,112.845459,83.696716,67.663651,82.820679,95.663651,71.523163,32.870266,14.158695,10.258697,6.491748,7.162826,7.480180,8.420676,3.033065,0.839671,0.123141,0.132232,0.320662,0.000000,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,2.015702 -601565.355000,4612625.550000,4116,3805,104.717369,154.963638,160.294205,150.476059,135.938858,126.666130,124.666130,120.566956,120.608276,122.021500,122.699188,134.128937,152.277710,168.137192,179.492554,189.889252,188.914047,176.947098,152.847961,132.310760,120.566956,117.723976,112.509102,83.442993,66.442993,82.112411,95.021515,70.343834,32.426464,13.320679,10.228119,7.352080,6.544643,7.363651,7.381834,2.582651,0.361985,0.359505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.097521,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.755000,4612625.550000,4133,3805,117.003326,158.507446,161.300827,151.358704,137.383469,128.135544,124.276047,122.548775,122.557037,122.449600,124.234718,134.681000,154.044632,168.623138,180.953720,190.937195,189.598343,178.598343,155.375214,133.986786,123.548775,119.961998,114.127281,86.523987,68.937210,83.821510,96.102493,72.342171,34.846302,13.968614,10.375225,7.271914,6.646296,7.364476,9.461999,2.925628,0.647935,0.193389,0.415704,0.224794,0.000000,0.000000,0.000000,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601571.755000,4612625.550000,4148,3805,103.517365,152.042160,160.819016,150.033890,137.190918,126.538025,124.017357,122.240501,121.810745,123.157860,124.091743,134.488434,153.050430,168.240509,181.157867,190.538025,189.529770,178.248779,155.347946,133.207443,121.785957,117.984299,113.190910,84.513237,67.852089,83.885132,96.248772,70.926468,34.703323,13.101672,10.290102,7.104146,8.343818,8.250429,9.936380,3.197530,0.685952,0.124794,0.064463,0.060331,0.000000,0.000000,0.000000,0.176034,0.000000,0.000000,2.047934,0.000000,0.000000,0.000000 -601575.355000,4612625.550000,4166,3805,91.610764,158.803314,160.398361,151.596710,137.447922,127.687614,125.084305,123.150421,122.200012,123.117363,124.580177,135.563644,153.852905,170.092575,181.596710,190.629761,190.720673,179.373566,154.084305,133.778519,122.695877,118.852905,113.472740,85.431412,68.216553,83.836380,97.241333,71.175224,34.406639,14.122333,10.315722,6.282657,7.963652,10.231421,8.307450,3.247941,0.618184,0.184298,0.128926,0.000000,0.000000,0.144628,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.155000,4612625.550000,4190,3805,105.493408,156.951233,161.248764,150.728088,136.017365,125.876869,124.149597,121.653732,121.133072,122.100014,123.157867,134.695053,152.612396,168.480164,180.149582,189.901672,189.637207,177.893387,153.976028,132.389267,121.504974,118.612411,111.372742,85.009102,67.108284,82.215714,97.240509,71.661995,33.405807,13.805803,10.124812,6.262823,7.773570,7.017370,7.157865,2.573560,0.575208,0.054546,0.216529,0.051240,0.000000,0.136364,0.000000,0.000000,0.000000,1.175207,0.000000,0.000000,0.000000,0.000000 -601583.555000,4612625.550000,4207,3805,107.681007,156.995056,159.920685,149.846298,137.127274,127.193398,124.507454,122.970268,121.854568,123.962006,123.937202,135.325638,153.796692,168.714066,182.011597,190.771927,189.813248,178.722336,155.176865,133.590088,122.234734,118.953735,114.127289,84.358696,67.267792,83.821510,97.945465,71.110764,33.300846,13.497539,10.375226,5.590094,7.938032,8.142163,8.632245,3.030586,0.660333,0.056199,0.210744,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.155000,4612625.550000,4235,3805,97.114067,157.477707,163.130600,150.948776,136.948776,127.213249,125.196716,122.568619,122.122337,123.337212,124.899193,134.362000,153.130600,169.378540,181.733902,190.609940,190.229782,178.643005,155.014893,133.733902,122.800026,118.866135,113.254570,85.271095,68.138863,83.485970,97.238029,72.783493,34.213242,14.838035,10.295887,6.652079,7.558692,8.114063,6.962823,3.725628,0.673555,0.195869,0.228100,0.051240,0.000000,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601594.355000,4612625.550000,4261,3805,95.323982,158.298355,163.901672,150.604141,136.645462,127.554558,124.050423,122.356201,121.166130,122.298363,123.521492,134.860336,152.785965,168.447113,181.356216,190.562820,189.934723,178.009109,154.149597,131.430588,121.951256,117.579353,112.736374,83.810760,67.281837,82.893402,97.901665,71.455383,32.992580,13.747126,10.248779,6.461997,6.394229,7.936379,6.440508,2.460338,0.769424,0.222315,0.100000,0.000000,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.947108,0.000000,0.000000 -601597.155000,4612625.550000,4275,3805,100.720680,159.881821,160.369431,150.749603,136.997543,126.782654,124.311577,122.468605,122.352905,123.146294,124.204140,133.890106,152.410751,169.014053,181.204147,189.956223,190.394241,177.559509,153.633896,132.328110,120.691742,117.402489,112.881828,84.187630,66.700020,83.344650,98.014061,72.096718,32.749607,13.210761,10.262003,6.223980,6.839684,7.142988,7.201666,3.116536,0.413224,0.178513,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,1.278512,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.355000,4612625.550000,4291,3805,106.563644,157.633057,161.922318,149.798340,137.203308,126.988434,125.343803,122.004967,121.947113,123.228104,123.352074,135.170258,152.922318,169.004959,181.054535,191.360321,190.004959,178.484299,154.806610,133.393387,121.996696,118.294220,112.054550,84.335548,67.310760,83.128937,98.021500,71.682655,33.137211,13.304977,10.186795,6.133896,7.490098,7.316544,8.522329,3.156205,0.604134,0.466117,0.100827,0.238017,0.000000,0.092562,0.062810,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.155000,4612625.550000,4305,3805,100.860344,156.695053,161.364471,149.860336,137.455383,127.207451,124.868607,123.215714,122.612411,124.595879,123.918198,135.662003,153.612411,169.686783,182.124802,190.670258,190.091751,179.116547,155.546295,134.157867,122.009102,119.116539,112.372742,85.232246,67.488449,83.835541,97.728111,72.670258,34.785973,13.545473,10.215722,6.385138,7.946297,7.735551,8.290922,3.861165,0.556200,0.419836,0.106612,0.000000,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,1.158678,2.057025 -601609.555000,4612625.550000,4337,3805,108.138031,156.774399,161.964493,152.377716,137.873581,127.344635,124.526459,123.121498,122.443810,123.633896,124.501663,135.419022,153.741348,169.683502,182.220688,191.022339,190.071930,178.914902,154.890106,132.972733,122.022324,118.551247,113.154556,84.328117,67.377701,83.708282,97.262001,72.633904,33.253738,13.607456,10.286797,4.717366,6.011587,6.653733,7.303319,2.790915,0.656200,0.102480,0.115703,0.059504,0.185951,0.149587,0.000000,0.000000,2.567769,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.555000,4612625.550000,4357,3805,108.265312,157.083481,164.885132,153.133072,138.538040,130.562820,126.645477,124.083488,124.009109,125.009109,126.645470,136.901688,155.174393,171.703323,184.389267,193.215714,192.157867,181.843811,157.397537,135.000839,124.314896,120.207458,114.554558,85.422325,67.967781,85.405800,98.802483,74.835556,34.901672,15.816547,10.414068,6.470259,8.638858,7.743817,7.363650,2.189263,0.551241,0.300001,0.111571,0.000000,0.000000,0.490909,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.355000,4612625.550000,4371,3805,111.412407,159.106628,162.114899,152.825638,138.412415,129.577698,126.767776,124.759514,123.387611,124.941330,125.627281,136.883484,154.569443,170.189270,183.131424,192.329773,192.404144,181.247131,156.197540,134.519852,122.453728,119.395882,114.627281,85.057045,68.924805,84.007446,98.701668,74.296707,35.123161,15.088449,10.420681,6.301667,7.507453,7.367784,7.109931,3.523974,0.823143,0.276860,0.055372,0.054546,0.000000,0.000000,0.000000,0.000000,1.341322,0.000000,0.000000,1.110744,0.000000,0.000000 -601620.155000,4612625.550000,4390,3805,106.341339,157.266953,161.506622,152.655396,138.655380,128.961166,125.432236,123.093391,123.382652,124.283478,125.052071,135.085129,153.820679,169.754547,182.647110,192.035538,190.514877,180.142975,156.333084,133.630585,122.630585,117.994225,114.481827,85.870262,66.721512,82.564476,97.514893,73.556213,34.192581,13.223985,10.407456,6.004971,6.736379,6.763651,7.018195,3.032237,0.391737,0.115703,0.120661,0.000000,0.000000,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,1.930579,0.000000,0.000000 -601622.755000,4612625.550000,4403,3805,102.178528,157.558685,163.542160,153.500839,137.732239,128.451248,127.071091,124.104149,123.757034,125.451256,126.806625,137.153732,154.633072,171.343811,182.864456,193.153717,191.252884,180.310745,158.137207,134.666122,123.071091,119.021500,115.145470,84.079361,68.393410,84.161995,97.881004,74.442993,34.360352,13.881011,10.467789,4.266953,6.885139,7.514065,7.423153,2.630584,0.455374,0.118182,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.955000,4612625.550000,4419,3805,106.652901,161.117371,162.439682,153.398361,138.241333,128.348755,126.001656,124.200012,122.604965,125.844635,124.836372,135.671082,153.133896,169.985138,182.728943,191.654556,191.200012,179.629761,156.009933,133.621490,122.175217,118.902489,113.745461,84.406624,67.406631,82.142159,96.861168,72.381828,32.852913,13.638033,10.340514,5.942162,8.324809,7.313238,6.228938,2.228931,0.322315,0.487604,0.064463,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,1.247934,0.000000,0.000000,0.000000,0.000000 -601630.555000,4612625.550000,4442,3805,113.590103,160.515717,162.970261,154.284317,137.631424,128.490921,124.623161,123.846298,123.672745,124.986794,124.879356,135.515717,154.284317,170.647949,182.755386,192.821503,191.085968,179.623154,155.697540,134.160355,121.945473,117.895889,112.945473,84.606628,66.846306,81.300842,96.036385,72.730598,33.069443,13.106627,10.267788,5.966127,6.933073,6.872741,7.299188,2.221494,0.747109,0.262810,0.066942,0.054546,0.000000,0.000000,0.000000,0.058678,1.217355,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.955000,4612625.550000,4484,3805,111.915718,168.469421,163.849594,156.254547,141.039673,129.857864,127.824806,125.733902,124.056213,127.766960,127.105797,137.411575,155.238022,172.700851,185.328949,193.800018,192.659531,181.444656,157.981827,135.733902,123.419846,119.692574,114.345467,86.221504,67.477707,83.907455,97.940514,74.163651,33.411591,13.764482,10.395061,5.977697,6.517370,7.483485,8.225635,2.932238,0.714052,0.321489,0.061984,0.177686,0.000000,0.000000,0.008265,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.355000,4612625.550000,4511,3805,119.222328,167.379364,165.032257,156.701675,142.197540,131.189270,127.635551,126.354553,125.139679,127.767776,127.023979,138.123154,155.660355,172.957870,185.627289,193.949600,193.643814,182.189270,157.982666,135.858704,124.486786,119.338028,114.627281,86.412407,69.462006,84.329765,99.833893,75.585968,36.164482,14.797539,10.420679,5.484307,7.103320,7.719850,7.081831,2.503312,1.190911,0.216529,0.068595,0.114050,0.167769,0.000000,0.000000,0.052066,0.000000,2.308265,1.124794,0.000000,1.382645,2.273554 -601647.355000,4612625.550000,4526,3805,125.817368,168.280182,165.238861,156.957870,142.189285,131.362823,128.263641,127.123154,125.478523,128.602493,128.023972,138.073593,156.800842,174.205811,184.924820,195.288452,194.842163,182.280182,158.098373,137.057037,124.296707,119.321503,115.990921,87.015717,67.982666,83.891747,99.271912,75.561165,34.511589,14.220679,10.544646,6.265301,8.539686,8.180179,7.652907,2.052900,0.632233,0.130579,0.421488,0.055372,0.000000,0.151240,0.007438,0.000000,0.000000,0.000000,1.060331,0.000000,0.000000,0.000000 -601650.155000,4612625.550000,4540,3805,112.813232,166.681015,165.110764,155.226471,140.879364,130.085968,127.333893,125.474388,124.788445,128.077698,126.854553,137.598373,155.267792,173.185150,184.317368,194.218185,192.523972,181.284317,157.375229,135.176865,122.871078,118.953720,114.490913,85.350426,68.548782,83.482666,98.052902,73.515724,33.912415,13.314067,10.408284,4.395878,6.709106,6.704972,6.966131,2.335544,0.501654,0.041322,0.153719,0.171901,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.955000,4612625.550000,4564,3805,115.552078,173.047943,165.378525,156.543808,142.204971,129.998352,128.692566,126.279343,124.808273,127.519012,126.981827,136.659515,155.775208,173.700836,185.626450,194.874390,193.353729,181.585129,157.857864,136.188431,124.692566,119.262817,115.254555,85.155388,67.857864,83.973572,98.634735,74.147133,34.362007,13.414895,10.477704,4.865301,7.027288,6.799187,7.381832,3.730586,0.303307,0.183472,0.162810,0.005785,0.004132,0.476033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.955000,4612625.550000,4579,3805,116.766129,168.774384,162.923157,156.311584,141.823975,128.096710,125.542984,124.261993,122.691742,126.790916,125.576042,135.336380,154.377701,171.493393,184.460342,192.815720,192.195877,181.286789,157.038849,134.253723,121.683479,118.691742,112.154556,84.361168,67.138031,82.724800,98.774391,73.253731,33.278530,12.481835,10.195887,4.185960,5.952081,6.078525,5.360342,2.125626,0.794216,0.233885,0.164463,0.000000,0.000000,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601661.755000,4612625.550000,4598,3805,112.849602,174.857864,168.080994,158.047943,143.246292,130.155380,127.775223,126.667786,124.122330,127.758690,126.353737,137.419846,155.502487,172.469421,185.452896,194.857864,193.626450,181.378525,157.700836,135.890915,122.510757,118.824806,113.436378,83.899185,67.072746,82.246292,97.543816,73.816551,32.990101,12.290927,10.312416,3.814886,5.970262,7.708278,6.727285,1.770254,0.452894,0.273555,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.155000,4612625.550000,4615,3805,120.510750,171.642975,168.609924,155.866119,141.915710,128.221497,127.254555,126.039673,124.543808,126.386780,125.056206,136.411575,154.535538,171.684311,184.056198,193.072739,192.262817,180.072739,155.196701,133.957031,122.651245,119.196701,112.709099,84.750420,67.957039,82.709099,98.345459,73.097534,34.560352,13.363654,10.246301,6.490095,7.464476,5.839679,8.225634,3.182652,0.652068,0.388431,0.177687,0.000000,0.000000,0.000000,0.042149,0.076033,0.000000,1.235537,0.000000,0.000000,0.000000,0.000000 -601669.155000,4612625.550000,4635,3805,111.663651,167.655396,169.614075,156.928101,140.382660,128.961166,128.184311,123.895058,124.713234,125.300018,125.465302,136.919861,155.853729,171.564468,183.539688,193.415741,192.151276,179.043823,154.283478,133.886795,122.622330,118.423981,114.209106,85.192574,68.043823,84.019020,98.225632,71.845474,33.762829,14.253736,10.382664,10.448775,7.823153,9.031420,7.664476,3.865299,1.062812,0.265290,0.168596,0.050413,0.000000,0.000000,0.000000,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.555000,4612625.550000,4652,3805,115.718193,165.924789,167.875214,155.296692,139.495041,128.379349,126.842163,123.362823,123.081833,122.990921,123.924805,134.974396,154.304962,171.015701,182.106613,191.131424,190.652084,177.164459,152.842148,133.585968,120.999184,118.395882,111.809105,83.536385,67.544647,82.833900,96.263657,71.668617,32.032249,14.115721,10.164482,8.233070,6.990921,7.801665,6.715715,2.900007,0.273555,0.166943,0.187604,0.000000,0.000000,0.000000,0.000000,0.090909,0.000000,0.000000,2.381819,0.000000,0.000000,0.000000 -601676.355000,4612625.550000,4671,3805,120.921494,172.475220,168.483490,155.855377,140.855392,128.706635,127.442162,124.623985,124.177704,124.822327,124.607452,136.028946,155.045456,171.599182,182.805786,191.814056,189.673553,176.855392,153.500000,132.888443,120.971092,117.681831,113.136383,85.351265,68.045479,81.458694,96.475227,72.111595,33.128117,14.201672,10.285144,10.066131,7.897532,8.900839,7.981831,3.405792,0.561158,0.487605,0.385951,0.119008,0.045455,0.000000,0.061157,0.349587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.155000,4612625.550000,4685,3805,118.218193,173.887619,167.069443,156.226471,139.119034,127.606621,127.813232,124.647942,123.267776,124.557037,124.267776,136.152084,154.548782,170.590103,182.011597,191.292587,189.854568,176.160355,153.424820,131.656204,121.400009,118.904144,111.945465,84.135551,67.631424,82.441330,95.209930,71.052910,32.796711,12.848778,10.176879,7.853732,7.611582,7.710756,9.056212,3.159512,0.858680,0.066942,0.309091,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.955000,4612625.550000,4699,3805,112.049606,175.628098,168.289261,156.173553,140.619827,126.842995,127.247948,123.909103,123.190102,124.347122,123.264481,135.371902,154.115707,170.289261,181.702484,191.454544,189.900833,176.140503,153.214874,131.305801,120.636383,117.066132,111.818199,83.479355,67.041336,80.545471,95.900841,71.115715,32.355392,13.326465,10.165307,7.546293,6.678523,6.345466,7.057863,2.659511,0.414051,0.053719,0.047934,0.000000,0.000000,0.000000,0.074380,0.055372,1.257851,0.000000,0.000000,0.000000,1.318182,0.000000 -601685.355000,4612625.550000,4716,3805,113.723976,170.219009,168.177689,157.566116,143.409088,129.764465,129.615707,126.409096,126.475212,127.533066,126.095047,138.657028,156.946274,173.334717,185.590912,194.260330,192.714874,179.136368,154.376038,134.640503,123.384308,120.400833,114.227280,86.152908,69.475220,85.400841,98.012405,72.128120,34.070267,15.070266,10.384316,9.881835,8.232244,8.040506,9.263651,4.048769,0.445456,0.246282,0.039670,0.000000,0.000000,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.755000,4612625.550000,4743,3805,126.491753,174.747955,169.747955,157.880188,141.756210,128.739685,129.012405,125.789261,124.235542,126.838852,124.888435,137.458694,155.648773,171.342987,183.929764,193.781006,191.607452,177.888443,154.632248,133.169434,121.838852,118.260338,112.772736,84.739685,68.508278,81.995880,96.582664,72.111588,33.070267,13.666134,10.252086,7.723153,7.136375,9.660343,7.550425,3.154554,0.269423,0.000000,0.050413,0.000000,0.000000,0.000000,0.049587,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.355000,4612625.550000,4761,3805,117.560356,179.668610,169.693405,157.437210,142.825638,130.784317,130.486801,126.470268,126.371094,128.379364,125.701675,138.528122,156.982666,173.726471,185.437210,194.966141,193.577698,179.470261,154.941345,134.734726,122.982666,120.701675,113.900009,85.255394,69.486794,83.164482,99.404144,71.139687,33.238861,13.302496,10.354565,10.676048,7.425632,7.587615,8.591748,3.227281,0.539671,0.148761,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.355000,4612625.550000,4791,3805,121.883484,179.866959,170.528122,160.561172,141.883484,131.627289,129.486786,127.825630,127.073563,128.222321,126.156212,138.032257,156.172745,173.635559,184.329773,196.354568,192.685150,178.437210,154.792587,134.437195,123.660339,119.511581,115.081833,86.131416,69.313240,84.048775,97.528107,70.627289,33.437210,13.889276,10.462003,9.704148,6.040506,6.788442,7.561996,3.533066,0.396696,0.103306,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.155000,4612625.550000,4805,3805,119.321510,184.147934,171.486786,161.139679,144.470261,131.453735,130.106628,128.057037,127.726463,130.652084,127.040512,139.197540,156.081833,174.131409,184.933060,196.354553,193.800827,179.156204,156.255386,135.519852,124.536385,120.528122,114.900017,85.784317,69.676880,84.338036,97.619026,71.528122,33.883492,13.877703,10.445473,11.019850,8.447947,8.594228,9.170261,3.558686,0.364464,0.297521,0.299175,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.355000,4612625.550000,4836,3805,130.489273,186.266129,171.026459,161.844635,145.993393,130.307449,130.919022,127.307449,127.497528,131.522324,127.299187,138.522324,156.414886,174.183487,185.315720,195.629761,193.414886,178.348770,155.687607,133.613235,122.538849,120.720673,114.290916,84.216545,69.844643,84.431419,98.340508,70.133904,33.563656,13.794231,10.390101,10.867784,6.631415,8.543816,7.446294,3.168604,0.190083,0.090083,0.183472,0.000000,0.002479,0.154546,0.127273,0.057852,2.796695,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.355000,4612625.550000,4881,3805,142.638031,197.547119,177.472717,167.976852,149.464462,135.233063,133.497528,130.993393,131.084305,136.133896,130.563644,142.158676,159.695862,176.786789,188.885956,200.654556,197.042984,181.447937,157.902466,137.199997,126.687614,123.084305,117.836372,87.497536,71.555389,88.720680,99.621498,71.671089,35.357044,14.834729,10.712417,12.344644,8.409103,8.771087,8.988443,4.548769,0.450415,0.229753,0.251240,0.178513,0.057851,0.000000,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.155000,4612625.550000,4895,3805,152.660355,196.462006,178.387619,166.627289,146.858704,133.040512,131.544647,129.974396,129.900024,135.404144,129.040512,141.676880,157.478531,175.205811,187.114899,198.230591,195.073578,178.585968,156.420685,136.602493,124.627289,121.453735,115.445473,85.486794,69.693405,87.916550,98.503326,70.032249,34.205803,13.913240,10.495060,11.752081,6.890093,6.836375,6.800011,3.585959,0.352068,0.122315,0.191736,0.000000,0.075207,0.222314,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.555000,4612625.550000,4922,3805,108.433075,161.565308,167.532257,155.672745,139.639679,129.664490,128.722336,125.416550,124.267792,124.871094,126.928947,137.747116,155.647949,172.433075,183.697540,192.234711,192.044632,179.193405,155.614899,134.871094,123.424812,119.234734,115.400017,85.747124,70.672745,85.829773,98.928947,73.226463,34.143822,13.667785,10.490928,7.488443,7.294227,8.362823,7.748775,3.372735,0.247935,0.079339,0.396695,0.000000,0.000000,0.000000,0.000000,0.000000,1.356199,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.155000,4612625.550000,4940,3805,105.651245,156.295868,167.535553,154.957031,140.626465,130.585129,128.072739,126.138847,125.519012,126.766945,127.403313,138.444656,156.568604,172.163666,185.196716,193.081009,192.047958,180.477707,155.279343,135.907440,123.378517,121.345459,115.436371,87.890915,70.981834,85.271080,98.932236,72.742165,35.651260,15.756216,10.494233,7.516542,7.219020,9.852080,7.638030,5.436373,0.259505,0.151240,0.132232,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.955000,4612625.550000,4964,3805,114.792580,162.387604,167.420670,155.131409,141.585953,132.428925,129.172729,126.866951,125.809105,127.222328,128.329758,139.098343,158.007446,173.668594,185.809097,194.023972,192.445465,179.908264,156.759506,135.982651,125.181000,121.891747,116.263649,87.552902,72.428947,85.792572,101.437195,74.767792,36.676884,16.556215,10.569440,9.660345,8.421501,8.668609,7.752907,4.309925,0.276034,0.036364,0.047108,0.000000,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601740.755000,4612625.550000,4993,3805,107.368607,158.261169,167.310760,157.831421,142.971909,133.591751,130.112411,127.649597,127.971909,128.525635,129.938858,141.211578,159.814896,175.814896,187.409927,196.252899,193.748779,181.178528,158.178528,137.153732,125.905800,122.335548,116.327286,89.699188,72.914070,87.633072,102.153732,74.476051,36.732250,16.476877,10.575226,8.376047,10.242990,7.693401,8.947122,3.530586,0.652895,0.166943,0.152067,0.057025,0.000000,0.000000,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601743.555000,4612625.550000,5007,3805,103.271088,162.721481,165.977676,154.878510,141.423996,130.729752,128.828934,126.564468,125.523148,126.630585,126.952896,139.076859,157.399170,174.308258,184.217346,193.258667,192.762802,180.407425,156.465286,134.506622,123.465294,120.035545,116.118187,87.746292,71.382668,85.754562,98.952896,72.300026,34.142994,11.811587,10.556216,5.616539,5.987614,7.349600,7.635551,3.905793,0.282646,0.034711,0.101653,0.000000,0.078513,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.755000,4612625.550000,5063,3805,106.225632,162.366104,165.142960,156.671890,142.506607,134.184311,130.192581,127.985954,128.200836,129.738037,130.333069,141.242142,159.539658,174.903290,188.275192,196.498337,194.969406,182.448746,159.085114,136.341324,127.052078,122.820679,118.300018,88.382660,72.746292,87.630592,100.010757,73.581009,35.200844,14.038033,10.754564,8.201665,8.329766,8.126459,7.895881,4.166123,0.938019,0.109091,0.226447,0.000000,0.058678,0.000000,0.112397,0.119008,0.000000,0.000000,1.082645,0.000000,0.000000,0.000000 -601757.955000,4612625.550000,5079,3805,114.645470,160.124802,165.083481,156.091751,142.885132,133.091751,130.058685,127.951256,128.190918,128.810760,129.083481,140.860336,159.471909,174.331421,186.662003,195.058670,194.298340,181.959518,157.868607,134.885132,125.471916,121.736374,116.281830,89.405800,73.009102,86.190926,98.314888,72.223976,33.967789,14.738033,10.571094,4.726457,7.067781,7.904143,6.461995,2.730587,1.084300,0.291736,0.252893,0.000000,0.000000,0.000000,0.000000,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.155000,4612625.550000,5105,3805,114.142166,167.158676,169.456192,158.480988,144.604965,133.530594,130.770264,128.059525,128.852905,130.076050,130.762009,141.638031,159.571899,175.059494,187.340485,196.166931,195.555359,183.398346,159.323959,136.803314,125.869438,122.530594,118.109108,88.737206,72.704147,87.621506,101.133904,72.704147,36.109108,13.999192,10.737209,6.615715,6.971087,8.475221,9.151256,4.171082,0.492564,0.727274,0.225620,0.009918,0.053719,0.000000,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.155000,4612625.550000,5130,3805,98.120674,158.658707,161.972748,154.339676,142.378525,130.857864,127.976868,128.987625,129.475220,131.301666,133.040512,143.517365,161.414902,177.638046,190.530594,197.861176,196.993408,186.728943,163.186783,141.823151,131.575226,128.437195,123.809113,96.395889,78.404152,93.858688,103.362816,76.569443,36.982662,16.067785,11.255391,4.877696,9.817370,8.606623,9.761997,5.659513,2.187606,1.267770,1.415703,0.790083,0.690910,0.740496,0.753719,0.542976,1.158678,1.125620,1.523967,0.000000,0.000000,0.000000 -601772.355000,4612625.550000,5151,3805,102.091743,167.240509,170.157867,160.306625,142.637207,131.876877,129.364471,126.579346,126.000832,129.240494,129.901657,139.827286,159.232239,175.529770,187.364471,195.711578,193.736374,181.827286,158.372742,136.595886,125.347939,121.240501,116.281822,87.447113,70.852081,85.595879,99.612404,73.967781,35.083488,13.804976,10.571094,7.101664,7.928941,9.123154,9.717369,4.733067,1.947937,1.385125,0.569422,0.374381,0.219009,0.206612,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.355000,4612625.550000,5171,3805,100.636383,153.407455,162.746307,154.052094,140.374405,130.109924,127.577698,124.751251,124.304970,126.787621,127.528107,137.514893,155.514893,171.655396,183.845474,193.556213,193.671921,180.680191,157.870270,136.457047,124.891747,121.032242,117.300018,90.999184,72.594223,87.787621,100.341339,74.390923,35.671917,14.259521,10.663655,5.515713,7.639682,8.598359,7.577697,2.731411,0.539671,0.394216,0.123967,0.133885,0.315703,0.571901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.555000,4612625.550000,5187,3805,100.865295,160.844635,163.852905,156.522324,144.927277,135.712418,132.423157,131.828110,129.976883,133.274384,133.051254,143.555374,161.175217,177.836365,189.398346,198.299164,197.530579,186.786774,161.547119,139.464478,129.456207,124.348770,120.381828,91.646294,74.737206,90.943810,101.803314,75.018196,35.869442,15.824811,10.943820,5.695880,8.327287,8.833898,6.861996,3.352073,1.044630,0.356199,0.290910,0.050413,0.035537,0.000000,0.100827,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.155000,4612625.550000,5215,3805,107.619850,164.256195,166.636368,156.338837,142.983475,133.528931,132.636368,129.611572,129.834717,131.165298,132.322327,142.132233,160.719009,176.586777,188.190079,197.768600,196.264465,186.272720,159.347107,137.636368,128.206619,124.702484,118.454552,90.644646,72.776878,87.892578,100.107452,74.454559,35.818207,12.765308,10.768614,5.273563,7.842163,6.395879,7.213234,2.333892,0.376034,0.257025,0.000000,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.955000,4612625.550000,5244,3805,127.192581,165.333069,170.109924,157.498352,143.473572,133.473557,129.969421,129.754562,128.977707,131.457031,131.837204,142.035553,160.333069,176.498367,188.151260,197.275208,197.209091,185.465317,159.936371,138.696716,127.457039,124.184311,118.390923,89.969437,73.837212,88.415718,100.258690,74.928123,36.407455,15.574398,10.762829,5.553730,8.475220,6.787615,7.972742,1.830584,0.442150,0.415704,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.755000,4612625.550000,5258,3805,132.606628,164.441330,168.507446,160.069427,146.143799,135.738861,133.234726,131.366959,129.350433,132.755386,133.383484,144.342148,160.466125,176.945465,190.391739,198.730576,197.656204,185.986786,163.300827,140.201660,129.201675,124.714066,119.581841,90.664490,74.276062,89.540520,102.548782,76.234734,36.507454,14.733077,10.871093,7.280178,8.902493,8.399186,7.242990,5.428937,0.715704,0.311571,0.349588,0.184298,0.000000,0.480166,0.079339,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.755000,4612625.550000,5278,3805,110.348770,171.241333,169.679352,156.571930,142.861176,130.952072,128.943817,126.836372,125.613235,128.960342,129.323975,139.803314,156.299194,173.646286,185.274384,194.026459,193.646286,183.018188,159.340500,137.778534,125.943810,123.200012,118.927284,90.894226,73.869431,88.737198,101.563644,76.464470,33.613243,14.306629,10.811589,5.314060,7.568608,8.363649,8.215716,3.884305,0.538844,0.002479,0.066116,0.000000,0.372728,0.000000,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.955000,4612625.550000,5294,3805,111.119850,176.508286,168.508286,159.549606,144.483490,132.830582,130.954559,129.805786,129.020676,132.219009,131.169434,141.516541,159.144638,176.425629,187.599182,197.309921,196.458679,186.037186,160.599182,139.623978,127.037201,124.268600,118.318192,91.400833,72.855385,88.301659,101.053726,74.566132,35.772743,12.686795,10.756218,3.306618,7.067785,7.604972,7.183484,4.125628,0.780994,0.390083,0.582646,0.000000,0.000000,0.000000,0.009918,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.355000,4612625.550000,5316,3805,102.026459,165.892563,160.644623,155.719009,144.752060,135.066116,133.975220,132.545456,130.735550,133.388443,133.363647,142.793396,159.694214,176.471069,189.975220,197.768616,196.991745,186.115723,162.966949,140.793396,128.355377,125.140503,119.545464,91.991753,74.760345,90.512413,101.834724,77.644646,35.628120,15.513241,10.867787,3.094223,7.885138,6.338028,7.419846,2.007443,0.496695,0.303307,0.125620,0.000000,0.011571,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.955000,4612625.550000,5334,3805,106.893402,159.220688,159.807465,155.129776,143.923172,129.767792,128.883484,127.569443,126.676880,130.073563,128.957870,141.230591,157.542999,175.088440,187.319839,196.468597,196.542984,186.055374,161.633911,140.850433,129.369446,124.619026,119.972748,92.171089,75.179359,88.749603,100.691750,76.460350,33.724812,14.098365,10.906631,4.875217,6.834725,8.124807,7.213234,3.096700,1.095043,0.847935,0.283472,0.222315,0.106612,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.155000,4612625.550000,5350,3805,114.742165,171.681030,170.548782,161.433090,148.309113,138.664490,138.251266,136.474396,135.499191,137.342163,136.441345,146.705811,163.656235,181.226471,192.466141,202.143814,201.218201,189.176880,164.846313,144.094238,131.259521,127.986786,124.309105,94.515717,78.176872,92.606621,104.606621,77.788445,37.747128,15.133904,11.300846,5.453729,8.825635,8.948775,6.241334,3.148767,0.805787,0.271075,0.403307,0.009918,0.051240,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.355000,4612625.550000,5366,3805,115.920677,170.514038,170.761978,160.547104,146.836380,134.505798,132.133896,131.522324,131.481003,133.009933,132.671082,144.034714,161.464462,178.522308,189.885956,199.629761,198.852905,187.472717,162.464462,140.828110,128.952072,124.803314,120.654556,91.390099,73.150421,87.935555,102.001663,75.571907,34.290932,13.351258,10.968614,4.992572,7.136378,7.065302,6.536375,3.494222,0.468596,0.001653,0.257025,0.002479,0.000000,0.119835,0.000000,0.000000,1.338017,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.955000,4612625.550000,5379,3805,124.038864,182.890076,174.162796,164.427261,149.757843,137.402496,134.865311,133.154556,132.262009,136.146286,135.121506,146.361145,162.939667,179.931396,192.534698,201.609085,201.104950,189.071899,164.815689,143.253708,130.898361,127.518196,122.609108,94.071922,75.369438,90.981010,103.005806,78.162827,36.080193,15.858697,11.146299,7.496705,8.494232,7.575221,9.051254,3.294223,0.826448,0.645455,0.123967,0.089257,0.130579,0.000000,0.000000,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.155000,4612625.550000,5395,3805,113.976883,176.877701,171.266129,164.216537,147.985138,132.745468,128.885971,127.365311,126.952087,131.976883,130.439682,141.315720,157.943817,176.340500,189.266129,196.456207,197.687607,185.505798,160.695877,139.423157,128.191757,123.340515,119.654564,91.084312,73.687630,89.315720,100.728943,77.026474,34.489273,14.909109,10.877705,5.602492,7.547123,9.557039,10.388445,5.647116,0.961160,1.892565,1.400828,0.547108,1.483473,0.240496,0.580166,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.155000,4612625.550000,5410,3805,115.821503,179.692566,175.502487,165.163635,148.775208,135.328934,133.122330,131.725632,131.915710,136.238037,134.262817,144.047943,162.072739,179.337204,191.808273,201.031418,199.618195,188.378525,163.403305,142.477692,130.833069,126.295883,121.436378,92.295883,74.890923,90.535553,101.923981,76.403320,36.519032,14.409107,11.039688,4.736373,8.876872,7.266956,6.971087,2.885130,0.823142,0.167769,0.052066,0.404960,0.000000,0.000000,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.355000,4612625.550000,5426,3805,128.777710,173.835556,169.959518,161.381012,146.686783,134.075226,131.133072,129.430603,128.885132,129.571091,130.199188,141.042160,159.455383,175.091751,186.678528,196.141342,193.860336,182.050430,157.521500,137.281830,126.157875,122.298363,116.736374,88.430611,72.496727,87.108292,98.546310,74.835564,34.604149,13.981835,10.612416,7.523980,8.532245,8.229765,8.070261,3.984304,0.772730,0.472729,0.100827,0.000000,0.000000,0.033884,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.755000,4612625.550000,5443,3805,105.429779,169.439667,171.836365,159.059494,145.175232,134.142166,134.175232,130.307449,129.439682,130.249603,130.257874,141.464478,159.596695,174.514038,185.497513,195.233047,194.084290,181.018173,158.034698,136.861160,126.233078,124.208282,117.927292,89.249603,73.604973,87.621506,100.646301,72.861176,33.803329,15.124811,10.720680,10.120675,8.304972,9.391748,7.934723,2.490916,0.770250,0.377687,0.291736,0.048760,0.185124,0.000000,0.087604,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.555000,4612625.550000,5477,3805,126.520676,176.198380,172.735565,162.256226,143.735565,132.479355,131.983490,128.462830,127.826462,128.595062,128.603317,140.173584,158.702515,173.859543,184.710770,194.396729,193.371933,180.057877,155.363663,135.140518,124.247948,121.917374,115.090919,86.892578,71.338860,84.876053,97.619843,71.553734,33.586796,14.038034,10.462829,7.523979,6.423153,9.373568,7.723153,3.223147,0.738018,0.412398,0.340497,0.222314,0.144628,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.155000,4612625.550000,5495,3805,129.407455,177.742996,176.420685,162.495056,146.114899,135.197540,133.759521,129.949600,130.420685,131.214066,130.866959,142.569443,160.346298,175.850433,187.354568,196.156219,194.776047,181.933075,158.536377,137.280182,126.404152,123.106628,118.354568,89.858696,74.462006,87.726463,99.900017,74.726463,36.495056,14.908283,10.759523,8.812411,8.628112,9.361997,8.882658,3.395877,0.623969,0.532233,0.094215,0.000000,0.000000,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601845.355000,4612625.550000,5516,3805,122.757858,180.289261,173.355392,162.388428,146.330582,134.165298,132.917358,129.157028,129.421494,131.024796,129.231415,141.347107,158.842972,174.487625,186.165283,195.247955,194.801666,181.495865,156.487610,135.942169,124.603317,122.214882,117.272736,87.851257,72.462830,86.297539,97.950432,70.950439,31.818201,15.119854,10.661175,8.618196,7.854559,9.147122,7.824807,2.602485,0.608266,0.136364,0.010744,0.000000,0.000000,0.000000,0.000000,0.117356,1.271901,0.000000,0.000000,0.000000,0.000000,0.000000 -601848.755000,4612625.550000,5533,3805,107.360352,186.158676,176.414871,164.885941,148.935547,136.042984,135.406616,132.786789,131.514069,133.365311,131.943817,143.497543,160.919006,177.803299,188.489243,197.547104,196.621475,182.968582,159.009918,138.125626,127.555389,124.447952,118.563652,90.679359,73.770264,87.307457,100.290924,74.001671,35.042995,15.892581,10.778532,10.104974,8.447123,9.399188,9.293404,3.695876,0.639671,0.156199,0.210744,0.000000,0.000000,0.000000,0.003306,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601852.155000,4612625.550000,5550,3805,134.222336,183.349609,172.878540,163.019028,147.308289,133.647125,132.680191,131.126465,130.308289,133.043823,130.052094,142.556213,159.283493,175.324814,187.969437,195.614075,194.357880,182.068619,157.977707,137.357880,126.465309,123.333084,117.663658,90.052086,73.010765,86.812416,98.225639,72.374405,33.647125,13.656217,10.696712,9.219024,5.742987,7.402491,8.290095,3.879347,0.929754,0.197521,0.328100,0.113223,0.244629,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601857.755000,4612625.550000,5578,3805,120.730606,184.355392,172.768616,162.702499,144.636383,131.281006,131.752075,129.024811,128.702499,131.834732,128.892578,141.322327,158.264481,174.694229,186.520676,195.966965,192.710754,179.305801,154.586792,134.942169,123.123985,120.173569,115.181831,85.760345,69.917381,84.380180,96.264481,69.099197,30.917374,13.441339,10.471093,9.693402,6.557863,7.571087,7.810759,2.225625,1.136366,0.247108,0.187604,0.276033,0.557025,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.355000,4612625.550000,5596,3805,128.432236,187.005798,172.129761,162.956207,146.146286,131.939682,131.071915,128.799179,128.385956,131.914886,128.865295,139.964478,157.228943,174.509933,185.179352,195.857040,192.898361,178.757858,155.972733,135.766129,125.088440,122.402489,117.063644,88.427284,72.956207,87.179352,99.022324,71.468605,33.956215,14.100844,10.642167,11.091749,8.121502,9.033897,8.697534,3.134718,1.019837,0.424794,0.415703,0.206612,0.060331,0.000000,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.555000,4612625.550000,5617,3805,123.150421,189.910751,175.456207,165.266129,149.340500,134.778519,134.348770,131.919022,131.200012,134.629761,130.985138,143.001663,159.009933,175.852905,188.695877,197.150421,195.034714,180.976868,157.447937,137.332245,126.927284,123.737198,118.018188,89.538849,74.323982,88.927284,98.993401,71.902489,33.943821,15.149605,10.728945,10.041337,7.041336,9.600842,9.766131,3.949594,0.670250,0.213224,0.076860,0.107439,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.955000,4612625.550000,5639,3805,123.624817,187.549591,177.838837,165.739670,147.855392,133.640503,132.599182,130.095047,129.681824,134.351257,129.971085,140.400848,157.880173,175.533051,187.979340,195.731400,192.747940,179.880173,156.640503,137.541336,125.723152,122.326462,117.500015,88.185966,73.409119,88.541328,99.962830,70.136391,34.400848,13.567786,10.681837,10.310760,7.716541,7.989269,7.663650,3.887613,0.479341,0.504133,0.028100,0.000000,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601876.755000,4612625.550000,5673,3805,132.872742,196.600006,175.790100,167.497543,145.550430,131.399185,129.109924,126.760338,126.602493,133.619019,127.387611,139.125641,155.346298,172.718201,185.346298,196.007462,193.792587,177.371094,156.412415,137.230591,126.569435,123.355377,117.818192,88.239677,73.942154,88.231415,98.619019,71.222328,34.223160,14.445472,10.710763,13.304149,8.406624,10.842987,13.856213,7.607449,3.313227,3.314053,3.267771,1.855373,1.073555,0.509918,2.019835,0.498348,4.110744,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.355000,4612625.550000,5726,3805,111.789261,169.623993,170.351273,159.053757,143.582672,135.012405,131.971085,129.384308,128.863647,130.037201,130.747940,141.343002,159.962845,175.400864,188.202499,195.756210,195.400848,183.491760,157.458710,137.557861,127.433899,122.971092,116.045464,89.144646,72.648773,88.524811,100.789276,73.144646,34.962826,14.833902,10.549607,7.172740,7.369435,8.038857,7.395880,3.428107,0.831407,0.089257,0.093389,0.000000,0.055372,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.355000,4612625.550000,5806,3805,104.511589,164.463654,169.967789,159.752899,144.504974,134.951248,133.223984,130.430588,129.711578,131.314896,132.248779,142.620667,160.612411,176.529785,188.628952,197.199203,195.802505,183.976059,159.199188,137.645447,127.265305,122.901665,118.009102,90.290092,73.587616,88.108276,99.273567,72.703316,34.389275,14.619852,10.728117,7.807450,7.474394,8.124806,5.848773,3.735546,0.666944,0.074380,0.056199,0.000000,0.000000,0.000000,0.007438,0.052893,1.280992,1.236364,0.000000,0.000000,0.000000,0.000000 -601928.155000,4612625.550000,5930,3805,112.733894,164.074387,168.801651,158.768600,144.818176,134.619827,132.132233,130.404953,129.892563,131.760330,131.752060,141.991730,160.801651,175.454544,187.446274,196.925613,196.504135,184.190079,159.702484,138.570251,127.305794,123.537209,118.181831,90.157043,73.380180,88.909103,100.438034,73.694229,35.371922,13.549603,10.743820,5.176044,7.187617,7.047119,6.235549,3.087611,0.267770,0.135537,0.123967,0.129752,0.000000,0.000000,0.018182,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.955000,4612625.550000,6124,3805,131.880188,171.309921,169.450409,159.847107,146.351242,137.219009,134.508286,133.169434,131.648773,134.541336,133.838852,145.508270,163.119827,179.095047,191.979340,200.946274,200.698349,189.557846,165.053726,143.706604,131.665298,128.276871,122.500015,94.871918,77.475227,92.136391,103.995880,77.566139,37.012421,14.955392,11.136383,5.696706,8.290926,7.384310,7.175220,2.592569,0.800828,0.070248,0.000000,0.000000,0.000827,0.000000,0.025620,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601982.155000,4612625.550000,6200,3805,124.389275,180.637207,173.033890,164.430588,150.025650,137.670273,135.372742,134.281845,132.926468,136.157867,135.579346,146.257050,163.405792,180.628937,193.133057,202.992554,201.942978,190.703308,168.116547,145.397552,133.314896,129.364487,124.190933,96.000847,78.356224,94.157875,105.463669,79.744659,37.819027,15.116547,11.290102,5.242986,7.252081,6.966130,7.281829,3.040503,0.876035,0.324794,0.133058,0.377687,0.000000,0.000000,0.029752,0.034711,0.000000,0.000000,0.000000,1.105785,0.000000,0.000000 -601989.955000,4612625.550000,6239,3805,128.353729,182.841339,176.229782,166.304153,152.519028,137.287628,137.023163,135.386795,133.444641,138.444656,136.552094,146.998367,164.411591,180.833084,194.262833,204.014893,203.816559,192.990112,167.428116,145.923996,135.081009,130.452911,125.163651,95.932236,77.180183,92.923973,106.618187,79.684311,37.353733,15.714894,11.378532,4.527281,7.890924,7.274394,7.470261,3.723147,0.599175,0.174381,0.217356,0.015703,0.181819,0.000000,0.261158,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601997.955000,4612625.550000,6279,3805,114.338028,176.701675,180.587616,166.592575,149.601654,136.279343,132.725632,128.337204,128.667770,128.733887,129.204971,141.092575,160.472733,177.447937,189.745468,201.514053,201.712402,187.522324,164.133896,142.064468,133.221497,130.527283,124.709099,95.593414,79.006638,93.965309,106.014893,76.386803,38.642994,15.838861,11.337209,11.623981,9.141335,8.746293,10.263652,4.853726,1.632233,1.313224,1.662812,1.065289,1.052894,0.939670,0.202480,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602001.555000,4612625.550000,6297,3805,109.788452,184.614883,178.482651,165.135559,146.846283,136.226456,135.466125,132.358704,130.127289,131.226456,132.656204,144.242981,163.540512,179.887604,191.094223,202.127274,200.631409,186.160339,162.639694,141.094223,129.912415,126.383484,121.036385,92.185143,76.829773,91.540512,104.325638,75.523987,36.995060,14.650432,11.003325,11.657041,8.305799,9.296708,9.676874,4.466951,1.279342,1.154548,0.611571,0.090909,0.288430,0.366943,0.053719,0.212397,0.000000,2.933885,0.000000,0.000000,0.000000,0.000000 -602007.155000,4612625.550000,6325,3805,117.188438,173.482651,176.290100,163.934723,147.075226,133.959518,134.480179,131.223984,131.347946,133.124802,132.491745,142.938019,162.342972,178.830582,190.334732,200.946304,201.037201,186.888443,161.855377,138.863647,128.549606,125.400841,120.409103,91.524811,75.491753,89.698364,103.351257,77.425636,37.179359,14.080182,10.946301,10.524808,8.253733,10.571088,10.696708,5.377694,1.184299,0.809092,1.665292,0.847109,0.360331,0.000000,0.019835,0.511571,0.000000,0.000000,0.000000,0.000000,0.000000,0.038843 -602012.355000,4612625.550000,6351,3805,118.447952,180.460358,178.005798,163.096725,145.906631,134.468613,133.014069,131.047119,129.815720,131.865311,131.303329,142.336395,161.485153,179.609116,190.741333,201.741333,200.716537,186.683487,163.030609,139.609116,128.187622,125.733070,120.518196,91.584312,76.179359,91.096703,103.890091,75.419029,36.162827,14.390926,10.956217,12.476874,9.114891,8.107453,10.153732,4.469430,1.048763,0.202480,0.452067,0.133885,0.200827,0.000000,0.022314,0.153719,0.000000,0.000000,0.000000,0.000000,0.959504,0.000000 -602016.555000,4612625.550000,6372,3805,108.222328,184.495041,178.098343,164.990906,149.156204,137.147934,136.205795,131.288437,131.817368,133.263641,132.767776,144.296692,162.759506,178.990906,192.271927,202.214066,201.676880,186.032242,162.660339,141.131409,129.957855,126.974388,122.081833,92.205803,77.288452,91.081841,104.742996,75.544647,37.718201,14.790101,11.098367,10.340510,8.183485,9.822331,8.765305,5.802488,0.487605,0.278513,0.111571,0.000000,0.047934,0.000000,0.000000,0.141323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.955000,4612625.550000,6394,3805,121.153740,183.052078,177.514877,162.225632,144.977692,131.209106,132.134720,129.514893,127.647125,131.076874,128.870270,141.382645,159.167770,177.390915,190.275208,200.068604,199.589264,183.432236,161.118195,138.457031,129.944641,125.804146,121.390923,93.432259,78.019020,92.663666,105.423981,76.680183,38.333080,14.654564,11.035557,10.334726,7.899186,7.162823,8.373568,5.391744,1.300002,0.942150,1.168596,0.616529,0.238017,0.354546,0.037190,0.066942,0.000000,0.000000,0.000000,0.000000,1.403306,0.000000 -602026.155000,4612625.550000,6420,3805,121.699196,186.820679,175.539673,163.878540,145.903336,131.795883,132.203323,127.889275,127.740517,132.101669,129.360352,141.600006,159.996719,176.533890,189.814911,200.881027,199.261185,184.748779,161.062836,139.252899,127.633080,125.608284,120.054565,91.261169,75.426468,90.252907,102.740509,73.980186,36.211590,14.064482,10.914068,11.081834,9.219848,10.445468,11.387619,6.388439,1.475210,0.742150,0.451240,0.158679,0.287604,0.043802,0.085951,0.482645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602032.155000,4612625.550000,6450,3805,116.967789,162.364487,168.992584,160.992584,146.157883,134.538025,131.612411,128.083496,127.463654,129.785965,129.389267,139.232254,154.546310,170.579346,182.653732,193.438858,192.025635,179.835556,156.430603,135.033905,125.843826,121.042168,116.009109,90.273575,75.414070,90.447128,100.050438,75.744652,35.447124,13.919026,10.546300,5.598358,9.738033,7.540508,6.506624,3.557855,0.204959,0.196695,0.491737,0.157025,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.355000,4612625.550000,6481,3805,111.548775,156.474380,168.978516,160.474380,145.474380,133.466125,130.829758,128.408264,125.755386,128.391739,127.854553,138.755371,153.358688,171.011566,182.242981,192.391754,191.838043,179.028107,156.242981,135.366943,123.838028,119.366951,114.854553,88.061180,73.094231,89.226463,98.044640,74.490929,34.763657,12.491751,10.441340,3.996701,6.586792,5.691745,5.473563,2.011574,0.000000,0.071075,0.060331,0.038843,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602041.155000,4612625.550000,6495,3805,103.114891,169.387604,170.131409,160.734726,145.503326,133.040512,131.321503,128.428940,128.313232,130.313232,129.676865,139.387619,155.296707,172.478516,183.776031,193.387604,192.693390,179.916534,156.420685,136.032257,126.073563,121.445465,117.263649,89.189270,75.007446,91.371086,101.511581,75.238853,36.164482,14.417373,10.660350,5.857863,7.683486,8.113235,6.631417,2.578517,0.464464,0.462811,0.109091,0.014050,0.009918,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.955000,4612625.550000,6509,3805,114.984322,166.141342,168.273560,161.942993,145.744644,134.827286,131.546295,128.951248,126.579353,129.372742,128.091751,139.248779,156.116562,172.124802,183.942993,193.496704,193.455383,180.083481,156.571106,136.761169,125.190926,121.397537,115.827286,90.025635,73.967781,90.298363,100.521500,74.496704,35.116547,14.404150,10.529770,5.753729,6.845468,7.471087,5.818193,4.146286,0.122314,0.165289,0.308265,0.000000,0.123967,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.355000,4612625.550000,6526,3805,108.788445,160.391754,167.358704,159.242996,143.573563,132.433060,129.317352,126.656204,125.722321,128.135544,126.722321,137.143799,154.515717,170.193405,181.441345,190.441345,190.821503,178.383484,155.871094,134.300827,123.755379,120.143806,114.127274,87.623161,73.705803,88.647957,99.714066,72.234734,34.606636,13.308280,10.375226,5.014059,6.907452,7.545465,6.709103,1.845457,0.649588,0.457025,0.432232,0.028926,0.000000,0.000000,0.310744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602052.155000,4612625.550000,6550,3805,109.778534,164.646301,168.588455,158.439697,145.687622,132.282654,130.976868,127.018188,127.166954,129.042984,128.968597,138.902512,155.332260,170.919037,182.728958,191.571930,191.770279,178.728958,155.671097,134.456207,124.514061,121.059517,116.290916,88.919029,74.836380,89.695885,102.423157,76.869438,35.927292,14.026465,10.571920,5.072736,7.785965,7.645466,8.365303,3.267773,0.485125,0.251240,0.068595,0.139670,0.121488,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.155000,4612625.550000,6595,3805,97.609116,153.501663,167.947937,158.328110,145.981003,133.782669,130.617371,127.724823,126.295067,126.782661,127.749603,136.989273,153.981003,169.873566,181.947937,190.270264,190.394226,178.055374,155.460342,134.220688,124.129768,119.113243,114.427292,88.096710,73.633911,88.832253,99.518188,76.716553,36.617378,15.082664,10.402498,6.823978,8.748775,9.349600,7.451252,3.468602,0.847935,0.531406,0.252067,0.330579,0.119835,0.152066,0.305785,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602064.155000,4612625.550000,6610,3805,96.894241,152.753723,168.348770,159.348770,143.927277,133.596710,130.803329,127.076050,125.861176,127.142166,127.770264,138.505798,154.646286,169.439682,181.662827,191.067780,189.852905,177.935547,155.224808,134.695892,123.547127,120.687622,115.563652,89.299194,73.414902,89.555389,101.919029,75.596718,37.745476,15.516547,10.505804,6.876046,7.886792,8.469434,8.466956,3.830585,0.328926,0.261984,0.284298,0.000000,0.000000,0.000000,0.000000,0.486777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.355000,4612625.550000,6636,3805,100.276878,159.615723,166.781006,158.673569,142.557861,131.491745,128.516541,125.599190,124.342995,125.392578,125.690102,135.913239,151.880188,169.037201,179.367783,189.954559,187.161179,176.483490,153.351257,132.111588,122.045471,118.475220,112.590927,86.574394,72.309937,87.152908,100.921501,75.607452,36.574402,12.804150,10.235557,5.075216,7.144644,7.171085,7.369435,2.019011,0.542976,0.090910,0.156199,0.078513,0.006612,0.223141,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.355000,4612625.550000,6676,3805,106.447960,154.762009,165.315735,155.762009,141.001663,131.307449,126.654572,124.249611,124.662834,124.166969,124.927299,135.051254,151.902512,167.960358,180.332260,190.026459,187.976868,175.852921,153.596725,132.993408,122.910767,118.481018,112.290932,87.323990,72.456215,87.522331,101.778542,75.009941,37.687626,14.694232,10.208283,4.590094,9.762000,9.724807,8.095054,2.219837,0.304133,0.114050,0.310745,0.078513,0.107438,0.571902,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602083.155000,4612625.550000,6705,3805,83.954559,152.665298,162.227295,153.880188,140.417374,130.417374,127.706627,124.144646,122.442162,123.326462,123.665306,134.690094,150.971085,166.962830,177.632248,186.781006,186.607452,173.979355,151.797531,131.136383,120.491753,117.028938,111.590927,85.557869,70.822327,86.351257,101.483490,73.219025,33.425640,13.602497,10.144647,4.885135,5.989270,8.061996,6.919847,2.411576,0.333886,0.011571,0.108265,0.000000,0.000000,0.000000,0.134711,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.755000,4612625.550000,6768,3805,88.452095,149.551254,166.633896,157.658707,142.047134,131.435547,128.047119,125.534729,123.402496,124.195885,125.526466,134.369431,152.187622,167.832245,178.774399,187.865311,186.295074,175.377716,152.551270,131.286789,120.840515,116.741341,111.790916,86.303314,71.047134,87.964478,100.567780,74.592590,35.162827,13.413239,10.162829,5.423978,8.607453,6.976871,8.677698,2.799180,0.241324,0.052067,0.046281,0.028099,0.060331,0.193389,0.630579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.355000,4612625.550000,6786,3805,92.431419,150.718201,163.486801,157.503326,143.296692,132.313232,128.866959,126.304970,124.569435,124.461998,124.999184,134.891754,151.701675,167.742996,179.065308,188.156204,186.883484,174.255386,152.230591,132.338028,121.635551,118.635551,111.990921,85.759521,71.974396,87.701668,99.916542,75.032242,36.065308,14.165308,10.181011,5.988441,7.512413,7.123152,5.607450,3.220667,0.916530,0.570249,0.000000,0.376034,0.000000,0.069422,0.134711,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602105.355000,4612625.550000,6816,3805,86.572739,153.531403,164.258667,156.341309,139.746292,130.374390,126.498352,123.977692,121.762817,123.333061,123.473557,134.423981,150.721481,166.209076,178.333069,186.547958,186.209106,174.597534,150.622299,130.886780,119.142982,115.622322,109.936371,85.556213,71.192581,86.052071,98.994225,72.878525,33.828945,13.257043,9.994234,6.342161,6.968610,5.004967,6.483484,4.402486,0.832233,0.332233,0.300001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.197521,0.000000,0.000000,0.000000,0.000000 -602113.755000,4612625.550000,6858,3805,86.068619,151.927277,163.852905,156.720673,141.084305,131.563644,128.365295,124.604965,122.580177,123.423149,124.357033,133.993393,151.877701,166.274384,177.555374,187.100830,186.026459,174.406616,151.456207,130.902496,119.993401,117.076042,110.927284,85.290916,70.836380,86.762001,98.332245,73.671089,34.728943,12.875224,10.084316,6.540508,7.987619,6.969432,7.094228,2.923974,0.555373,0.438844,0.095868,0.032232,0.470248,0.056199,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.355000,4612625.550000,6871,3805,89.988441,155.021500,161.624802,154.186783,139.277695,130.740509,127.343811,124.757034,122.219849,121.996704,123.715714,134.252899,151.128937,166.963654,178.310760,187.095886,186.459518,174.707458,151.104141,130.740509,120.988441,117.343811,111.690926,84.748772,70.525635,87.211586,99.533897,74.666130,36.831425,13.337207,10.153738,7.922327,8.095057,6.929763,7.493401,3.065294,0.607439,0.476034,0.273554,0.000000,0.000000,0.000000,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.155000,4612625.550000,6885,3805,82.632248,157.004150,165.037186,156.789276,140.260330,130.053726,127.698364,124.822327,124.119850,124.764481,124.318199,134.549591,150.979355,167.128098,178.657028,188.004135,187.483475,174.144623,152.177704,131.954559,121.392578,118.185966,111.681831,85.822327,69.285141,87.318199,98.871918,73.797539,33.640514,12.856216,10.152911,6.660343,7.991750,6.416539,7.754558,1.354548,0.414877,0.000000,0.280166,0.017356,0.058678,0.061157,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.755000,4612625.550000,6908,3805,81.747116,154.813232,167.656204,156.581818,139.532242,127.705788,126.590096,123.284309,121.862831,122.598358,123.482658,133.639679,149.780167,165.515701,177.490906,186.515701,185.581818,173.581818,150.887604,130.284302,120.152084,116.127289,110.763657,84.879349,70.953728,84.077705,97.523987,70.069435,35.127296,13.061999,10.069440,6.342988,7.514065,7.395880,6.557862,2.805790,0.252893,0.000000,0.081818,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.555000,4612625.550000,6947,3805,83.798370,157.831436,163.236389,156.823166,141.162003,131.269440,128.575226,124.335556,122.947128,123.302498,125.558701,134.798370,152.137222,166.914078,177.889267,189.790115,187.955399,173.616547,150.533920,131.252914,120.707458,117.409935,111.418205,86.476051,71.558701,86.153740,97.633080,72.476059,32.316551,13.029770,10.128944,5.870259,7.566131,7.056210,7.197535,3.002485,0.824795,0.009918,0.039670,0.203307,0.314050,0.008265,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.155000,4612625.550000,6980,3805,98.338036,160.000824,169.934708,155.736359,142.455383,133.893402,131.562836,126.934723,125.223976,126.843811,126.009102,136.066956,152.769424,168.538010,180.232224,190.711563,190.223969,178.075211,155.356201,133.339676,124.075218,119.124809,114.827286,88.761169,73.414062,88.595879,101.248772,74.381004,36.719860,14.925638,10.438861,8.040508,9.119849,9.461170,9.425632,3.785956,0.333885,0.161984,0.395869,0.000000,0.037190,0.130579,0.000000,0.557025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.555000,4612625.550000,7002,3805,86.212425,161.063644,163.741333,155.113235,141.857040,131.262009,127.815727,126.485153,124.328125,124.121513,124.857048,135.807465,152.766129,167.840500,180.063644,188.493393,188.733063,176.419022,152.774384,131.716553,122.220688,118.468620,112.245476,86.352921,72.154572,85.171097,97.253746,71.923164,33.223160,12.695883,10.204151,8.590095,7.797535,8.314891,6.981830,4.032238,0.364463,0.042149,0.590911,0.024794,0.034711,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.955000,4612625.550000,7029,3805,96.785141,162.942184,164.206650,157.537216,142.231430,131.413239,128.685974,125.528938,124.297539,125.132248,124.793404,135.512405,152.809952,167.710770,178.603317,189.818192,187.884308,175.289276,152.074417,131.991745,121.471092,118.380180,113.090927,85.619850,71.363655,85.884315,97.644638,71.289276,33.487625,14.695058,10.281011,7.542990,8.341339,7.904971,8.000839,3.866121,0.633886,0.421488,0.144629,0.033058,0.000000,0.256199,0.000000,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602152.155000,4612625.550000,7050,3805,90.655396,156.903305,168.002487,155.192566,141.804153,130.969437,129.035553,124.795883,123.382660,124.704971,125.771088,135.473557,151.349594,167.423981,179.159515,187.886780,187.738022,174.481827,151.076859,130.779343,121.721504,116.490097,110.754570,86.952911,71.118202,85.118202,96.564484,71.448784,32.407455,12.887620,10.068615,6.696707,8.514067,7.747946,8.138029,3.578519,0.445455,0.099174,0.378513,0.179339,0.045455,0.069422,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602155.755000,4612625.550000,7068,3805,90.655388,158.506622,170.771088,156.853729,143.300003,130.870270,130.283493,127.142990,125.952904,125.531418,125.473572,135.680176,153.076859,168.746292,178.812408,189.374390,189.266953,176.928101,153.886780,133.622330,122.109932,119.176048,112.845467,87.597534,72.870262,84.795883,97.614067,70.357864,31.804153,13.369439,10.258697,6.723151,7.615717,7.036376,6.739682,2.853724,0.572729,0.456199,0.304959,0.052066,0.000000,0.057851,0.090083,0.528926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.355000,4612625.550000,7096,3805,89.458694,162.557846,169.227280,159.194229,142.086792,131.904968,130.392563,127.648766,125.276871,126.400833,126.219017,136.954544,153.690079,168.276855,180.417358,189.607437,189.128098,176.657028,153.070251,132.954559,121.500008,119.442154,113.863647,88.863655,73.144646,89.061996,97.243813,70.260345,33.293411,13.473571,10.351258,7.236376,8.119849,6.276043,7.492575,2.585128,1.119837,0.192563,0.165290,0.677687,0.000000,0.209918,0.485124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602164.755000,4612625.550000,7113,3805,106.404968,161.404968,167.958694,160.917374,142.396729,133.454559,131.123978,126.619843,126.504143,127.727280,127.264473,137.033096,154.446304,170.206635,180.355392,191.140503,190.561981,177.297531,153.636383,132.338852,122.991745,119.330589,115.090919,88.826454,74.438026,87.842987,97.694221,70.380173,35.504147,14.952910,10.462829,9.214063,9.529769,9.432244,9.061996,3.550419,1.044630,0.088430,0.306613,0.000000,0.206612,0.000000,0.071075,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.955000,4612625.550000,7134,3805,97.266144,160.059509,168.836380,155.894226,142.629761,133.423157,129.836380,127.117371,124.175224,125.844643,125.927292,136.885956,152.629761,168.588440,180.414886,188.753723,188.935547,174.307449,153.761993,132.852905,121.720680,119.538864,113.927292,88.084312,72.340523,87.489273,97.679367,70.315727,32.059525,12.664479,10.357043,6.552077,7.011586,8.555384,7.656212,4.014882,0.476034,0.092563,0.052066,0.130579,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.155000,4612625.550000,7160,3805,96.100021,171.083481,174.347946,164.091751,145.290100,134.083481,132.157867,129.571091,128.579346,128.819016,129.083481,138.976044,157.000839,171.108276,181.488449,194.496704,192.785965,178.695053,155.554565,135.984329,125.785965,122.033897,115.463646,89.802490,76.207451,88.579353,99.422325,74.157875,34.604153,16.391752,10.496714,9.116542,11.719025,9.778526,10.084313,4.544635,1.385126,0.876034,0.102480,0.221489,0.024794,0.000000,0.540497,0.509918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602180.355000,4612625.550000,7191,3805,93.361183,172.906616,171.204147,162.700012,144.642151,133.228943,132.204163,127.237206,127.096718,129.328110,126.774391,138.419022,155.129761,170.270264,181.600830,192.253723,191.402496,177.708267,155.799179,136.551254,124.055397,122.030594,116.972748,89.741348,74.931427,87.708290,99.385979,72.427299,35.501675,15.434729,10.633904,8.366129,8.696709,8.190922,8.156212,2.685128,0.509092,0.185951,0.285951,0.177687,0.000000,0.000000,0.000000,1.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.755000,4612625.550000,7218,3805,103.281006,169.239685,169.396713,161.157043,145.049606,132.413239,131.512405,128.289276,127.082664,131.000015,128.528946,139.206635,154.008286,170.842987,182.322327,193.363647,191.289276,177.330597,155.281006,135.214890,125.074394,121.281006,116.272743,88.322327,75.041328,87.768608,97.371918,69.528938,35.049606,13.961175,10.570267,8.624807,8.669437,10.191749,9.212409,3.753725,0.464464,0.725621,0.470248,0.843802,0.428926,0.067769,0.482645,0.903306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.355000,4612625.550000,7261,3805,110.719849,173.141342,168.645462,161.513229,142.323151,130.604141,128.496704,126.290092,125.405800,127.587616,125.620674,136.141342,150.595886,167.976044,180.835556,191.066940,190.141312,174.174393,153.149597,132.984314,122.959518,120.819023,115.190926,87.885139,73.100014,87.794228,94.670258,68.298363,33.695061,11.747123,10.471920,8.397533,6.257040,7.490921,6.536375,3.747114,0.088431,0.034711,0.255373,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602198.355000,4612625.550000,7281,3805,104.670265,172.686783,169.116547,161.422333,144.290115,130.959518,129.447128,126.893410,125.868614,130.207458,127.190933,137.777710,153.405807,170.389267,184.174393,194.248779,193.711578,179.108292,157.141357,136.769455,126.810768,124.075226,119.100021,89.430611,76.438873,91.356224,99.835564,71.670280,34.116550,12.531423,10.827291,10.471913,6.977700,7.250426,7.685964,5.599182,0.428101,0.000000,0.057851,0.000000,0.130579,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602204.555000,4612625.550000,7312,3805,117.985130,172.635559,169.486801,160.139694,142.412415,131.238861,129.924805,126.966125,126.081833,128.552902,126.106621,138.329773,153.371094,171.569443,182.635559,195.627289,194.866959,178.412415,159.172745,139.470261,129.304977,124.734718,119.900009,90.941330,75.635551,92.313232,101.850426,71.437202,33.701675,14.047952,10.900020,8.977698,8.739686,9.374394,10.079352,2.786784,0.761159,0.529753,0.383471,0.519009,0.000000,0.000827,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602208.755000,4612625.550000,7333,3805,108.546295,178.108261,168.860321,164.323135,146.463654,132.926453,131.455383,126.637199,126.612411,131.736374,125.529762,137.033890,151.306625,167.579346,179.042145,191.595871,190.488434,174.678513,156.538025,137.381012,127.397537,123.108276,117.100014,90.843811,73.852089,90.083481,101.025635,72.356216,35.529770,15.622332,10.645473,9.847118,7.297535,10.566957,8.669434,5.927283,1.364465,0.486779,0.580993,0.000000,0.000000,0.016529,0.530579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602214.955000,4612625.550000,7364,3805,122.672737,173.441345,170.085968,162.052917,143.796707,131.598358,129.871078,126.705795,125.259506,130.168610,124.416534,135.036377,149.540512,166.168610,179.267792,190.003326,188.995056,173.565308,153.838043,136.102493,125.242989,122.019844,117.127281,89.557037,74.846291,91.036377,99.391739,71.333893,33.595058,14.572743,10.647953,11.391750,7.824808,8.985965,7.350426,3.632240,0.451241,0.325621,0.176860,0.099174,0.038843,0.132232,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602217.955000,4612625.550000,7379,3805,138.948776,170.700851,171.271103,160.915726,144.618210,131.642990,128.700836,124.171913,122.998352,127.800018,123.262825,133.337204,148.783493,163.461182,177.866135,187.998352,186.783478,172.585144,153.775223,135.403320,123.899185,120.783485,115.890923,89.659515,74.262825,92.155388,102.188446,73.254562,36.122334,15.757042,10.535557,11.582659,9.571088,10.926461,8.952079,5.647944,0.871077,0.758681,0.071901,0.130579,0.000000,0.193389,0.336364,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602223.755000,4612625.550000,7408,3805,106.615715,158.888443,153.351257,145.342987,132.632248,120.747948,118.128113,114.954559,113.714890,114.962830,115.814064,127.400841,143.557861,159.483490,170.706635,181.433899,182.590927,173.219025,149.607452,131.095062,120.929771,117.698364,110.318199,86.913239,68.557869,85.739685,100.020676,73.995880,35.433903,13.728116,10.028945,4.104140,10.953734,7.133897,7.369435,4.590091,0.377688,0.092563,0.142149,0.000000,0.300828,0.444629,0.559505,0.262810,2.345455,0.000000,0.000000,0.000000,1.802480,0.000000 -602226.755000,4612625.550000,7423,3805,121.269432,156.310760,153.839676,145.434738,129.285965,118.434723,115.021500,114.600014,112.583481,114.608276,114.451256,125.930588,140.674408,157.583481,168.608276,179.988449,181.137207,169.649597,149.269440,128.533890,120.426460,115.294228,109.418198,83.897537,67.938866,84.302490,96.864479,72.046295,35.550434,13.838034,9.947126,7.546293,8.377699,8.008277,8.285137,2.965296,0.705787,0.183472,0.163637,0.631406,0.138017,0.000000,0.182645,0.596695,0.000000,2.086777,0.000000,0.000000,3.922314,0.000000 -602231.555000,4612625.550000,7447,3805,104.604965,157.753723,155.985138,145.423157,130.778519,121.348770,117.497528,114.571907,114.373566,115.249596,115.142159,124.778519,142.439682,156.439682,169.538849,179.712402,180.894226,171.365295,149.092575,128.158691,118.109100,115.067780,108.018188,83.538849,67.621506,84.877693,95.034721,71.340508,33.447952,12.925637,9.819854,5.456209,9.430592,8.476871,9.348774,2.703313,0.994219,0.750416,0.429753,0.000000,0.290910,0.379339,0.000000,0.733885,0.000000,0.000000,0.000000,4.341323,0.000000,0.000000 -602235.955000,4612625.550000,7469,3805,135.387619,158.329773,153.577698,142.701675,130.255386,119.123161,117.569443,113.189278,112.751259,113.032249,114.131424,125.313240,141.437210,156.668610,169.635559,179.395889,180.247131,168.619034,146.412415,129.147949,117.271919,115.420677,109.536385,84.759521,68.197540,84.181007,93.693405,69.709938,33.528118,13.128942,9.957870,5.853731,7.774393,7.990095,8.012410,5.688438,0.441325,0.779340,0.676861,0.000000,0.045455,0.000000,0.490910,0.159504,0.000000,0.000000,0.000000,0.000000,1.857851,6.084298 -602242.755000,4612625.550000,7503,3805,155.454559,162.834717,153.421494,142.157028,127.793411,117.438042,114.429779,110.909119,110.719032,112.272751,111.793411,123.289284,140.090912,155.471069,167.611572,177.760330,179.396698,169.074387,146.570251,127.801674,117.173576,113.710770,109.363663,83.099197,65.809944,83.297546,96.859528,69.330605,32.802498,11.498363,9.942168,6.324803,8.252905,8.554559,9.024809,6.300007,0.818184,0.601654,0.453720,0.076033,0.183472,0.535538,0.302480,1.841324,2.271075,2.035537,0.000000,1.502479,1.761984,0.000000 -602250.355000,4612625.550000,7541,3805,175.561996,167.157043,156.239685,139.066132,124.198372,115.198372,111.900848,108.338867,109.446304,109.942169,111.785149,124.123993,140.892578,158.115723,170.818192,182.206635,185.008286,173.330597,150.677704,129.809937,121.198372,116.041344,111.454567,85.090935,68.016556,86.479362,100.603333,73.429771,34.867790,13.213241,10.132251,11.110758,11.414065,9.700841,12.690926,8.656212,3.063641,1.807443,0.985952,1.742979,1.949588,3.742152,0.604133,2.057854,47.609093,17.494217,20.152893,16.938019,0.000000,2.836364 -601403.155000,4612615.550000,3305,3855,161.176880,154.168610,141.317368,127.614891,112.970261,104.408279,101.333893,98.309105,98.631416,99.606621,102.209930,112.904144,129.986786,147.176880,160.209930,171.523987,171.424820,161.028122,137.747131,117.160339,105.590096,102.565300,96.763649,69.102509,52.077705,67.862831,80.664482,60.862831,27.333904,10.432247,8.796714,10.791752,7.688441,10.625634,10.899189,7.813234,2.371080,1.000002,1.559507,0.361158,0.204959,0.971075,0.880994,1.399175,10.979341,14.215705,4.249588,3.054546,13.010746,10.385125 -601409.555000,4612615.550000,3337,3855,138.792572,153.098328,142.982635,130.619019,116.784309,106.652084,103.470268,101.916542,101.057037,102.536385,104.098366,114.594223,132.296707,147.941315,161.197510,171.800812,172.544617,161.585938,137.387589,116.065300,104.800842,102.081833,95.900009,69.924812,50.999191,66.776054,78.734734,56.966137,25.552910,9.671917,8.718202,8.709105,7.238028,8.202493,9.468608,4.450421,1.107442,0.611573,0.459505,0.128099,0.208265,0.426447,0.871902,0.663637,6.642976,4.395042,3.800000,8.468596,3.367769,8.639670 -601419.555000,4612615.550000,3387,3855,129.523972,145.804138,144.572739,132.804153,119.109932,109.539680,109.614067,106.341339,105.498360,108.010757,108.324806,119.713234,137.233887,153.845459,166.936356,176.845459,176.845459,165.729736,142.605789,120.341339,109.473572,105.498360,101.209106,72.547958,54.952915,70.308281,80.886803,60.366138,28.217375,10.637209,9.200846,6.769432,7.915716,6.833899,8.798362,5.021495,0.422316,0.600828,0.152067,0.000000,0.036364,0.000000,0.287604,0.760331,3.061984,4.500827,3.623968,1.322314,4.469422,3.512397 -601434.955000,4612615.550000,3464,3855,129.242981,148.328934,144.353729,132.990097,119.709106,110.031418,107.775223,104.948776,105.262825,107.114067,108.634727,119.328941,137.204971,152.676041,165.874390,175.618195,176.411575,165.006622,141.072739,119.411583,108.064476,105.097534,99.709106,71.229767,53.676056,69.089272,80.998360,58.560352,26.084318,9.775224,9.064483,6.129765,6.645466,6.631418,6.508278,3.092568,0.705787,0.189258,0.070248,0.000000,0.000000,0.000000,0.122314,0.371901,4.084298,0.000000,3.189257,1.482645,3.678513,1.733058 -601455.155000,4612615.550000,3565,3855,123.216537,149.242157,148.142975,139.300003,125.019020,115.564468,111.985962,110.638855,110.969437,112.754555,113.399178,123.729767,141.200836,157.109924,171.118195,180.118195,180.217361,170.671906,145.928101,124.192566,113.423973,110.109932,104.209106,76.680191,58.242172,73.440521,86.242172,65.060349,29.531424,12.790099,9.473573,6.971087,8.250428,8.738858,8.364476,3.357030,0.999176,0.228928,0.189257,0.145455,0.000000,0.000000,0.000000,0.200000,3.031405,1.119835,1.718182,0.779339,3.104133,3.968596 -601466.555000,4612615.550000,3622,3855,125.658684,163.155380,157.626450,146.948761,131.056198,120.196701,117.196701,115.758682,115.006615,119.742157,118.081001,128.047943,145.114059,162.031418,174.907440,184.684311,184.229752,172.485962,149.130585,128.874390,116.519012,113.676041,108.436371,79.279343,62.469440,77.023148,90.452896,66.601669,29.676052,12.018196,9.857870,7.157036,8.163650,9.601668,7.504972,2.523145,0.402480,0.253720,0.118182,0.079339,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.001653,0.000000 -601471.755000,4612615.550000,3648,3855,124.023987,184.445465,165.982666,157.412430,139.172760,125.627289,124.478531,122.792580,122.825638,129.462006,122.643822,133.891754,150.668625,167.577698,181.495041,191.900009,189.379349,175.057022,153.891769,133.561172,123.238861,119.610764,114.990929,84.866959,70.924812,85.057045,93.792580,67.652092,32.379356,13.542993,10.453737,11.398363,6.946294,8.956213,10.112411,3.741332,1.071077,0.174381,0.438017,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.755000,4612615.550000,3668,3855,120.418190,181.418198,166.095886,156.261169,139.393402,125.798355,125.104134,122.492569,122.566948,127.930580,123.451248,134.120667,150.492569,168.038025,180.781830,191.533890,190.666122,175.434723,153.740509,134.657852,123.442978,119.087608,114.600006,85.897537,70.368614,83.955391,94.823143,67.666130,32.079357,13.617373,10.418200,11.700841,6.831418,9.925636,8.482658,4.353728,0.351241,0.095042,0.000000,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,1.144628,0.000000,0.000000,0.000000 -601481.755000,4612615.550000,3698,3855,115.822327,183.466965,160.946304,153.888443,137.425629,126.896706,124.632240,121.533066,121.805794,125.582649,122.219017,132.995880,151.020676,167.896713,179.582657,190.871918,189.020676,176.020676,152.739685,132.574387,121.384308,118.318192,112.045464,84.533073,69.747948,84.582664,93.995880,69.136383,33.557873,14.179357,10.185969,10.136379,6.703318,7.803319,8.081829,2.811578,0.860333,0.251240,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.155000,4612615.550000,3735,3855,121.985138,179.423157,163.728943,153.935547,137.538849,124.943810,125.952072,122.976868,122.803314,125.993401,123.819847,135.117371,150.571915,168.811584,181.497528,191.737198,190.671082,177.472733,155.092575,135.009933,123.894226,120.555382,115.927284,85.968613,71.183487,84.150429,97.357040,70.447952,34.414894,13.959522,10.538861,9.881005,9.944644,9.074395,8.419022,4.282655,0.690911,0.104959,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.457851,0.000000 -601492.355000,4612615.550000,3751,3855,117.386803,175.337204,166.213226,153.857864,137.072739,126.337204,124.783485,123.188446,122.089272,125.180183,123.064476,134.163651,151.733887,169.766953,180.378525,190.742157,190.461166,177.064468,153.791748,134.568604,121.998360,118.725639,114.800026,85.758698,68.601677,82.857872,94.998367,70.238037,31.725641,13.374396,10.436382,8.994230,7.887619,7.274394,8.235550,3.338852,0.644630,0.254546,0.186777,0.000000,0.000000,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.755000,4612615.550000,3768,3855,129.390930,171.878525,165.275208,154.605789,138.432236,125.291740,123.886780,121.118187,121.556206,124.035545,122.514885,133.787613,150.432236,168.035538,180.217361,190.068604,189.382645,176.614059,153.498352,132.853729,121.432236,119.911575,114.027290,83.614067,68.680183,82.870262,93.886795,68.969444,32.324814,11.976875,10.366135,8.786793,7.396707,8.081830,8.980178,3.160340,0.553720,0.094215,0.338844,0.094215,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.555000,4612615.550000,3787,3855,120.909927,170.595871,163.017349,151.893402,136.190918,124.761169,124.050423,121.984314,121.058693,123.628937,122.207451,134.637207,152.166122,168.438843,179.918182,191.339661,189.976028,177.480164,154.050430,133.678528,123.199188,118.827286,113.009102,84.769432,69.174393,82.199188,94.678528,69.232246,32.364483,13.776051,10.273572,8.060347,6.857864,8.712413,7.681829,4.185132,0.833060,0.050413,0.040496,0.119008,0.000000,0.155372,0.130579,0.000000,1.249587,1.161157,0.000000,0.000000,0.000000,0.000000 -601505.955000,4612615.550000,3819,3855,96.990097,170.634720,164.684311,153.271088,139.155380,126.180183,125.816544,123.560349,122.089272,124.254562,124.006622,135.866119,152.766953,170.238022,181.543808,190.312408,190.089264,178.279343,154.428101,133.692581,123.262825,121.155388,114.345467,86.006622,70.337204,82.477699,97.717369,71.874397,33.188450,13.931424,10.395061,9.133900,8.457040,9.190097,8.646295,2.795875,0.442150,0.461159,0.249587,0.000000,0.000000,0.000000,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.155000,4612615.550000,3835,3855,105.300835,170.557037,164.226471,154.771927,137.168610,127.325630,125.309105,123.573563,122.540504,124.928940,123.540504,134.937195,153.408279,169.747131,180.829773,191.110764,190.309113,178.738861,155.292587,134.276047,123.788445,119.862823,114.763649,85.722328,69.705803,82.664482,95.408279,73.011589,36.069443,14.064481,10.433076,8.567782,8.664477,10.026461,8.965302,3.448768,0.178513,0.055372,0.103306,0.126446,0.000000,0.000000,0.000000,0.506612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.355000,4612615.550000,3861,3855,115.987610,163.095047,164.053726,151.888428,136.409103,125.376038,124.954552,121.045464,121.111580,122.276871,123.202484,134.433899,152.235535,168.285126,180.020676,189.078506,189.342972,176.781006,154.690079,133.781006,121.855377,120.301659,113.772736,84.731415,68.334724,81.648773,94.871910,70.822327,32.805809,13.149605,10.342994,7.790097,8.114065,8.749602,8.026460,2.757033,0.283472,0.276860,0.326447,0.051240,0.000000,0.000000,0.079339,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.955000,4612615.550000,3889,3855,106.271919,162.247116,162.966125,151.412399,137.313248,126.883492,125.057045,123.147957,122.511589,123.495064,123.247124,135.023972,154.057022,169.544632,181.106613,191.131409,190.577682,178.900009,154.619019,134.255371,123.428947,120.395889,114.990929,85.123161,69.891754,83.660347,97.271919,72.205803,34.073578,13.489274,10.453738,8.511585,9.342163,8.896710,8.989270,3.083479,0.627275,0.247935,0.110744,0.048760,0.056199,0.165289,0.000000,0.000000,0.000000,0.000000,0.000000,0.966942,0.000000,0.000000 -601525.355000,4612615.550000,3916,3855,114.861168,165.042969,162.919022,154.274384,138.761993,127.051247,125.530586,123.026459,122.340508,123.076042,122.604965,135.381821,152.530594,169.596710,181.381805,191.538834,190.770248,179.042969,154.679352,134.514053,123.100838,119.638023,113.654556,85.505798,68.340515,81.935547,96.431412,70.985130,33.456219,15.180182,10.332251,8.898362,9.204973,9.204146,8.328112,3.384305,0.484299,0.043802,0.273555,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,1.562810,0.000000,0.000000,0.000000 -601535.955000,4612615.550000,3969,3855,96.247948,164.438034,165.818192,151.892578,139.223160,127.198364,125.198364,121.933899,122.396713,122.198364,124.495880,134.719025,153.347122,169.619858,181.462830,190.842987,190.214890,178.595062,155.198364,133.619858,123.520676,120.041336,113.272743,85.066132,68.909119,83.636383,96.008278,71.595055,34.892582,13.602498,10.297540,7.356210,7.706626,7.881006,7.599189,3.987612,1.083474,0.163637,0.057851,0.000000,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.223141,0.000000 -601539.155000,4612615.550000,3985,3855,101.091743,160.281830,162.504974,150.571091,135.885132,125.653732,124.083481,120.579353,121.025635,121.794228,123.645470,134.207458,152.108276,168.538040,179.703339,189.339661,190.157867,178.207474,154.744644,132.934723,122.695053,119.083481,113.645477,85.050423,67.942986,81.686790,96.323151,71.405800,33.579361,14.345472,10.331423,7.795882,8.550428,6.949602,6.999187,3.255380,0.534712,0.309092,0.100827,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.355000,4612615.550000,4006,3855,107.466957,158.530594,164.456207,150.332245,138.183487,126.133896,125.150421,122.340508,121.340508,121.505798,124.191742,134.538849,152.960342,168.836380,180.960358,191.381851,189.712418,179.191757,155.117371,134.489273,123.001663,119.100838,113.927284,85.770264,67.357040,83.158699,97.282661,70.935555,33.762001,12.494232,10.357044,7.624808,7.060346,7.561172,7.923154,4.138024,1.545458,0.256199,0.061157,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.955000,4612615.550000,4034,3855,100.629768,161.175232,161.571930,149.927292,136.555405,126.423149,125.009926,121.745461,121.051247,121.811577,123.315712,134.497528,153.646301,168.737213,180.654556,189.861160,190.505798,178.241333,154.547134,132.472733,122.621498,119.613235,113.836372,83.778534,68.076057,82.596710,97.480995,72.158699,34.580185,14.558697,10.348780,8.583486,7.156213,8.300014,7.995882,4.526456,0.638844,0.249587,0.110744,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.155000,4612615.550000,4055,3855,113.763657,158.333908,161.011597,152.259521,136.094238,126.077705,124.400017,121.028122,120.631424,122.085968,122.069443,134.366959,152.523987,167.730591,181.143814,189.482666,188.738861,178.623154,154.920685,132.763657,121.342171,119.102501,112.400017,84.400017,67.788452,82.970268,97.995064,72.755394,32.689274,13.295885,10.218200,8.459519,8.238859,9.108280,6.585963,2.590091,0.543803,0.048760,0.000000,0.183472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.355000,4612615.550000,4071,3855,106.942162,155.991730,162.338837,150.371902,136.487625,125.892570,123.776878,121.818199,120.404976,122.900841,123.016548,134.404968,152.066116,168.314056,179.793396,190.115707,189.537186,177.438019,154.132233,133.305801,121.231422,118.685966,112.272743,83.958694,67.107460,82.305801,96.157043,71.396713,33.123985,13.764480,10.206631,6.246294,6.842163,8.433073,7.051252,2.966124,0.329753,0.095042,0.000000,0.093389,0.153719,0.229752,0.000000,0.131405,0.000000,1.233058,0.000000,0.936364,0.000000,0.000000 -601559.155000,4612615.550000,4085,3855,97.919846,155.837204,162.432236,150.647110,136.919861,126.556213,124.200844,122.300018,121.539680,122.614067,124.266960,135.266953,152.845459,169.366119,182.283478,191.390915,189.837204,179.019012,154.671906,133.597534,123.605797,119.713234,114.390923,85.432243,68.779350,83.473572,98.002495,72.630592,33.333076,14.926465,10.399192,6.007450,7.430593,8.338031,5.380178,3.809100,0.636365,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.555000,4612615.550000,4112,3855,95.763649,154.492554,159.732224,149.682663,136.393402,126.542160,124.244644,122.087616,122.013237,122.856209,124.203316,134.633072,152.385117,169.087601,181.393387,191.029770,190.823151,178.914047,155.145447,133.723984,122.186790,118.723976,114.054558,84.864479,68.186798,84.244644,97.517365,70.442986,34.591755,12.636381,10.368613,6.615716,7.047949,7.058691,8.790922,3.201661,1.003309,0.308265,0.219835,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.001653,0.000000,0.000000,0.000000 -601567.155000,4612615.550000,4125,3855,98.097534,151.436371,161.130585,149.791748,135.725647,125.337204,124.337204,121.262825,121.072739,120.965302,122.915718,132.816544,152.345459,167.758682,180.494217,190.196701,189.105789,177.452896,154.196701,131.965302,120.750427,118.089272,111.254562,83.626457,67.304146,83.890923,96.808281,70.833084,32.114067,11.857869,10.114068,5.667780,6.635551,7.910758,7.691749,3.124801,0.798350,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.955000,4612615.550000,4139,3855,92.523155,157.096725,161.129776,152.146301,136.700027,127.584305,126.278519,123.518188,122.716537,123.832245,124.964470,135.865295,153.319855,170.385971,183.162842,192.443832,190.964493,178.947952,155.410767,133.733063,123.328110,119.782654,114.609108,86.038864,69.311584,84.195885,99.964478,73.981010,34.782661,14.528945,10.419028,7.033897,8.263650,8.996708,8.629766,3.490090,1.528101,0.109918,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.555000,4612615.550000,4162,3855,98.240524,159.166122,160.199188,151.372742,137.124802,125.595886,125.587616,121.190933,121.926468,123.504974,123.926460,135.546295,153.397537,168.843811,181.918198,190.951248,190.612411,178.257034,154.381012,133.810760,122.232254,118.323158,113.372749,85.306633,67.942993,83.075226,96.149605,71.207466,32.645470,13.419852,10.306629,6.338030,8.481833,7.344642,8.400015,3.003312,0.732233,0.080992,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.555000,4612615.550000,4177,3855,108.887619,157.234711,160.449585,147.689285,136.565323,126.871094,123.598366,120.970268,120.887619,122.284317,123.606628,134.416550,151.887619,168.391739,180.540497,189.722321,189.879349,178.003311,154.796707,132.193405,122.044647,118.218201,112.309113,83.986794,66.995056,83.160347,95.912415,71.085968,33.780186,11.726464,10.209936,5.957863,6.449602,8.108278,7.509930,2.126453,0.728101,0.074380,0.176860,0.000000,0.000000,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.355000,4612615.550000,4191,3855,100.516548,148.536362,157.817352,149.660339,136.156219,127.098366,123.387619,121.362831,121.577705,122.602501,123.643822,134.090103,151.875214,168.924789,181.379349,189.999176,189.833893,178.197525,155.552902,132.660355,121.924812,118.189278,112.627289,84.602501,67.709938,82.833900,96.015724,70.486794,33.247128,13.709109,10.238862,5.501666,6.633073,7.433071,6.690921,5.040503,0.393389,0.034711,0.000000,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.955000,4612615.550000,4214,3855,114.162003,155.658691,160.956207,149.906616,136.493393,126.212418,123.468613,121.650429,121.361176,122.700020,124.286797,134.476883,152.245468,167.989273,181.733063,190.063644,190.063644,178.063644,154.989273,133.096710,120.989273,118.030594,112.336380,83.700020,67.609116,82.898361,96.666962,71.857040,32.220680,13.438036,10.212417,5.644641,7.087617,7.448773,7.705799,4.266124,0.407439,0.213224,0.099174,0.056199,0.000000,0.000000,0.000000,0.108265,0.000000,1.180992,0.000000,0.000000,0.000000,0.000000 -601587.555000,4612615.550000,4227,3855,102.283493,150.979355,160.235550,150.690094,138.301666,127.483490,125.070267,121.326462,122.524811,123.276878,125.078529,134.822327,153.450424,169.400848,181.309937,191.384308,190.863647,178.433899,156.095062,133.632248,123.095055,120.417374,113.681831,85.252090,68.400848,82.789284,97.954567,71.904984,33.557869,14.055389,10.334730,5.300014,8.866959,8.747122,6.956212,3.001660,0.756200,0.000000,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,1.274380,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.355000,4612615.550000,4246,3855,104.739685,157.714890,161.657043,151.260345,139.144638,127.640503,124.747940,122.210754,121.747940,122.880173,124.351250,135.491745,153.648773,170.169434,182.243820,189.979355,191.103317,179.929764,155.789276,133.260345,122.285133,118.929764,114.045464,84.913239,68.756218,83.615715,98.913239,71.268608,34.351261,13.308282,10.367787,6.714889,8.911586,7.848774,8.509106,2.381825,0.203307,0.261984,0.172728,0.000000,0.086777,0.000000,0.072727,0.000000,0.000000,0.000000,1.928926,0.000000,1.292562,0.000000 -601594.555000,4612615.550000,4262,3855,104.522324,153.718185,160.544632,150.974380,137.048767,126.478523,124.908279,122.552902,122.065300,123.230591,123.751251,134.949600,152.569427,169.693390,181.090088,191.081833,190.701675,178.131424,155.676865,134.296707,121.957863,119.296707,113.081833,84.544640,66.585968,83.238853,98.123154,72.957863,33.420681,13.318199,10.280184,6.450426,7.260346,7.112411,9.237205,3.402486,0.455373,0.277687,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601599.155000,4612615.550000,4285,3855,92.842171,156.891754,162.271912,152.015701,138.098343,127.015717,124.238853,121.800835,122.404144,123.966125,124.619019,135.131409,153.817352,169.189270,182.503326,191.635559,190.767792,179.495056,154.759506,133.982651,122.900009,118.569435,113.900009,84.437210,65.974396,82.321510,99.098358,72.222336,32.495060,13.022331,10.354564,5.739682,6.660345,6.625633,6.751254,2.976866,0.709919,0.180166,0.028926,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.955000,4612615.550000,4324,3855,105.576874,156.907440,162.014877,151.337204,137.461166,128.750427,125.568611,123.494232,122.485962,124.196709,124.733902,136.362000,155.444641,170.353729,182.957031,192.386780,192.361984,181.056198,156.857864,134.395050,123.328941,119.378525,114.436378,85.800018,68.915718,83.750427,98.733902,73.304146,34.725643,14.556215,10.403324,5.289266,7.428941,7.726460,7.333071,2.850420,0.884299,0.431406,0.064463,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.951240,0.000000,0.000000 -601610.155000,4612615.550000,4340,3855,113.976875,158.290909,162.001648,152.257874,139.654572,129.902496,126.819847,125.315712,123.596703,125.894226,126.695877,136.447952,155.505814,172.257843,185.274368,192.927261,192.662796,181.257843,158.406601,136.671097,124.142159,120.406624,115.290916,86.357040,68.919029,85.249603,98.671082,73.481010,35.811588,15.027291,10.481009,5.819020,6.876873,7.402492,8.488442,3.164471,0.743804,0.333059,0.165289,0.056199,0.000000,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.355000,4612615.550000,4366,3855,115.267776,162.730591,162.978531,154.697540,139.416550,130.829758,126.854553,125.176872,125.127281,127.449600,127.003319,138.003326,155.085968,171.656219,184.292587,193.829758,193.242981,181.838043,158.631424,136.168594,124.598358,120.804970,115.945465,86.920670,70.094231,85.639679,99.019844,73.242996,35.540516,15.047125,10.540514,6.461168,8.871090,8.521502,7.581006,3.036372,0.482646,0.171901,0.298348,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.355000,4612615.550000,4381,3855,108.753738,160.896713,163.235550,151.640518,139.491745,128.359512,125.367775,124.012405,123.053726,125.500008,125.599182,136.144638,154.309937,169.880188,183.797531,193.020660,191.516525,180.152908,157.342987,134.276871,123.516541,118.971085,113.045464,85.359520,67.698364,83.549606,97.103317,74.342995,33.723164,13.278530,10.276878,5.058689,8.004148,8.101667,6.456211,3.585131,0.780168,0.316530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.755000,4612615.550000,4398,3855,107.408279,158.570267,161.545471,153.892578,138.867783,128.396713,126.264481,124.272743,123.603325,126.677704,125.710762,136.281006,154.776871,170.371918,183.099182,193.082657,191.281006,180.198364,156.735550,134.578522,122.652908,119.570267,113.090927,84.776878,68.000015,83.396713,97.677704,74.305801,34.702499,12.722332,10.281011,6.005797,6.532246,6.870261,6.768608,2.506618,0.506613,0.128926,0.112397,0.167769,0.000000,0.000000,0.000827,0.000000,0.000000,1.241322,0.000000,0.000000,0.000000,0.000000 -601625.755000,4612615.550000,4418,3855,107.228935,162.898361,162.104965,154.286789,140.427277,130.485138,128.005798,125.121498,124.823975,126.981003,126.972740,137.700012,155.014053,172.567780,183.749603,193.848785,192.956223,182.385956,158.576050,135.865295,123.468605,119.600838,114.700012,86.633896,68.534729,84.914886,98.377693,73.493408,35.501675,14.348778,10.427291,5.602492,7.307453,7.677701,8.775222,3.075214,0.357852,0.273555,0.161984,0.000000,0.008265,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.555000,4612615.550000,4437,3855,124.904144,166.028107,165.052902,155.342148,141.366959,131.689270,127.796715,124.928947,125.209938,127.416550,128.391754,137.185120,155.573563,172.350433,184.490921,193.614899,194.052917,182.804977,158.862808,136.854553,123.813240,121.276054,115.763657,85.052910,68.441345,83.804977,99.647957,75.796715,36.416550,14.598366,10.523985,5.383482,7.798360,8.084312,7.253732,3.972735,0.761159,0.172728,0.193389,0.064463,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.955000,4612615.550000,4454,3855,103.366135,159.035538,162.465302,154.523148,140.531433,128.812424,125.663658,124.961182,124.490105,127.060356,127.192581,138.473572,154.390915,171.655380,184.308273,194.506622,192.787613,181.969421,157.052078,135.134720,123.093414,119.762833,114.481842,85.556221,68.151260,83.300026,98.721512,73.994240,34.820679,13.732250,10.407457,6.323978,7.173569,7.114889,6.509104,3.126453,0.937193,0.000000,0.413224,0.011571,0.015703,0.000000,0.006612,0.065289,1.271901,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.955000,4612615.550000,4489,3855,113.104156,164.806610,164.740509,157.087631,143.219849,130.542175,129.153748,126.806633,125.476051,128.723984,127.905807,138.798355,155.757050,174.004974,185.839676,194.252884,193.583466,182.054565,157.748779,136.418198,123.575226,120.418205,115.327293,87.062820,70.153740,84.302490,99.120682,74.376877,35.013241,14.943820,10.484318,6.703317,8.712413,7.364478,5.772738,2.674387,0.826449,0.151240,0.179339,0.000000,0.010744,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.155000,4612615.550000,4505,3855,106.737206,164.993393,163.654556,156.431412,141.968597,129.885971,127.439690,125.489273,124.051262,127.117371,125.976875,136.654556,154.125626,170.885956,184.067780,193.447937,193.431412,181.109100,156.671082,134.447952,122.274406,118.695892,113.654572,84.919029,67.753738,83.464485,96.704147,73.216553,34.390106,13.978531,10.332251,4.518192,5.886790,6.245469,7.036376,2.203313,0.509919,0.049587,0.059504,0.134711,0.005785,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.155000,4612615.550000,4525,3855,112.333893,174.796707,168.325638,158.218201,144.003326,130.995056,128.854553,126.730591,125.714058,129.631409,128.366959,138.317368,157.052917,173.656219,186.292587,195.342163,194.838043,183.234726,158.895889,136.565308,124.333893,119.796707,115.581833,87.019844,69.028107,84.457863,98.821503,74.937202,34.052906,14.052911,10.507458,4.556210,6.865305,7.076874,6.626460,2.412402,0.824795,0.107438,0.163637,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.555000,4612615.550000,4547,3855,114.874405,172.056213,166.072754,157.981842,143.651260,130.717377,129.072754,127.833084,125.816551,130.155396,129.593414,139.072754,156.568619,174.378540,186.833084,195.700851,194.345474,182.609940,159.915726,136.717377,125.147133,120.775230,115.981842,87.246307,70.229774,84.667793,98.676056,73.560356,34.395061,13.085969,10.543820,5.263646,6.690098,7.070262,6.622328,2.822323,0.412398,0.529753,0.000000,0.184298,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612615.550000,4587,3855,116.077698,163.143799,166.598373,153.656204,138.317368,127.218185,126.176865,123.284302,121.796700,122.813225,123.532234,135.110748,153.102478,169.185150,181.102493,190.061172,190.697540,174.887619,151.928925,129.912399,119.722321,117.408264,110.763649,82.102501,66.507454,82.242996,97.557037,69.424812,31.681011,12.332247,10.069440,6.979350,6.423150,6.484309,5.442988,3.427280,1.089259,0.233058,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.355000,4612615.550000,4601,3855,111.166962,163.720657,167.877686,156.844620,141.778503,128.927292,127.522331,125.018196,123.770264,125.158699,124.406631,136.654556,155.059494,170.629745,182.191727,191.877686,190.323959,177.786774,153.803299,132.745468,121.935555,118.952087,113.109108,84.712418,68.133904,83.166962,97.621506,72.200020,33.613239,14.501672,10.282663,7.951252,7.774392,7.053730,7.913238,3.170255,0.455373,0.101653,0.534712,0.038843,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,1.609091,0.000000,0.000000,0.000000 -601666.355000,4612615.550000,4621,3855,111.279358,165.700836,169.386780,153.122330,139.766953,127.750420,127.899178,124.543808,123.229759,124.023148,124.147118,135.659515,154.560349,171.023148,182.271088,190.907440,190.238022,176.709091,152.502502,132.477692,119.692566,118.403313,113.345459,83.419861,66.899193,83.229774,96.229759,69.824814,32.907455,12.093406,10.304152,6.776871,8.113236,5.961994,6.885136,2.823148,0.623968,0.476034,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.955000,4612615.550000,4644,3855,118.519028,174.601654,170.907440,156.345459,140.907440,128.833084,128.039688,125.097542,125.089279,126.345474,124.766968,137.304153,154.609924,171.023148,183.626450,192.213242,191.064484,177.502487,154.527283,132.841339,122.047958,120.023163,112.345474,84.064484,68.072746,82.130600,97.940521,71.882668,33.163658,14.061173,10.213243,9.133900,9.070262,9.380178,7.991749,4.308273,0.709919,0.032232,0.298348,0.189256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.955000,4612615.550000,4679,3855,116.359520,173.425629,171.491745,159.384308,143.194229,130.681839,130.508286,126.673569,126.673569,128.194229,126.326462,138.243820,157.425629,172.797531,185.483490,194.855392,193.078522,179.913239,155.053741,135.326462,123.111588,119.962830,115.318199,86.962830,70.938034,83.400841,99.309937,72.607452,33.747952,13.974398,10.483490,8.862824,8.090096,8.017367,8.606625,5.595878,1.037193,0.433885,0.216529,0.000000,0.000000,0.000000,0.042975,0.052893,0.000000,0.000000,0.000000,0.742149,0.000000,0.000000 -601680.955000,4612615.550000,4694,3855,116.531418,178.903305,172.853729,158.547943,143.399185,130.919846,129.696716,127.192574,125.713234,128.002487,126.490097,138.556198,156.704971,173.399185,185.283478,195.076859,193.746292,178.870255,155.630585,134.754562,124.027290,121.506622,115.118195,85.903320,70.002495,84.531418,97.762825,71.754562,34.415726,14.915720,10.465308,9.252080,8.148773,8.441335,8.666955,3.819843,0.636365,0.163637,0.186777,0.123967,0.049587,0.004959,0.075207,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.955000,4612615.550000,4734,3855,123.443825,178.369431,169.857040,159.526459,142.187622,130.195892,129.807449,126.708282,126.344643,127.708282,126.609108,139.038849,155.766144,172.914886,185.179352,194.030594,192.286789,179.162827,154.179367,133.931427,122.179359,119.625641,114.518196,85.939690,69.600845,83.427299,96.881836,70.047134,34.280186,13.535554,10.410763,7.903320,7.850426,8.114889,8.319847,3.542986,0.444629,0.128099,0.162811,0.000000,0.063637,0.000000,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.155000,4612615.550000,4785,3855,135.220673,191.022324,174.584305,164.509933,146.633896,132.369446,132.187622,129.518204,128.774399,133.526474,130.022339,140.402512,158.129761,175.055374,187.840500,197.799179,195.187607,180.187607,156.336380,137.129776,124.741348,122.981018,115.609116,86.551254,71.832253,86.154572,98.873581,70.691750,34.485146,15.085968,10.509936,11.391752,6.230589,8.786792,7.658691,5.457036,1.280994,0.063637,0.057852,0.049587,0.188430,0.000000,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.955000,4612615.550000,4799,3855,131.609924,191.238022,172.328934,163.948761,145.990082,132.428116,131.295883,128.841339,128.923981,132.775223,127.907455,140.312424,158.361984,175.328934,188.114059,197.948761,194.766953,179.047943,156.808273,135.122330,124.353737,121.948776,115.890923,85.295883,70.560349,85.709106,97.899185,71.353737,33.130600,14.072744,10.535556,10.474396,7.346293,7.361169,7.575220,3.504966,0.794216,0.104133,0.204133,0.000000,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.755000,4612615.550000,4838,3855,142.000854,195.389267,175.802490,166.240509,149.422348,133.860352,132.777710,130.422333,130.223984,135.885147,130.025635,142.100037,158.752899,176.356216,188.455383,198.670258,196.538025,179.918198,156.852097,136.695068,126.546303,123.232254,117.100021,87.942993,72.926460,88.579353,100.827293,71.504974,33.430599,13.426464,10.645473,10.873569,7.666955,8.441335,7.773567,3.939679,0.450414,0.166116,0.170249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.072727,0.000000,0.000000 -601712.955000,4612615.550000,4854,3855,143.871918,188.731415,172.615723,165.227295,146.483490,131.714890,131.252075,128.863647,127.946289,133.772736,128.367783,139.723160,156.466965,173.681839,186.913239,198.301666,193.500015,177.400848,155.045471,134.425629,124.359520,120.979355,115.772743,85.731415,70.880188,87.053726,96.020676,68.971092,31.673573,12.416546,10.524813,8.984312,6.057862,8.112409,4.803316,2.963643,0.394216,0.194215,0.206612,0.056199,0.000000,0.000000,0.052893,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.355000,4612615.550000,4871,3855,151.390091,194.340500,180.629761,168.117371,150.150421,135.257858,134.852905,130.604965,131.811584,136.985138,131.761993,142.315720,159.117371,176.778519,189.588440,200.588440,195.836380,180.737198,158.166946,137.563644,126.728935,123.968605,117.836372,88.778519,72.555382,88.398354,100.307449,69.819847,34.894238,15.296713,10.712416,12.845470,7.415715,7.708277,8.321500,4.797532,0.367770,0.172728,0.161158,0.376860,0.000000,0.000000,0.066942,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601719.155000,4612615.550000,4885,3855,115.593407,160.444641,165.965302,155.766953,141.709091,132.742157,129.130600,127.609932,126.568611,127.155388,128.717377,138.403305,159.014877,174.006622,184.833069,194.725632,193.626450,181.262817,156.642975,135.056213,125.890923,121.221504,115.981834,87.295883,71.395065,87.386795,100.180183,74.824814,35.295891,14.981838,10.543821,7.468609,8.144641,9.413237,7.620674,3.934720,1.174383,0.033884,0.099174,0.000000,0.115703,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612615.550000,4899,3855,104.113251,166.278519,167.551254,155.071915,142.104965,131.311584,128.840500,127.261993,126.063644,127.658684,127.741333,139.427277,158.823975,173.642151,186.138031,194.823975,193.658691,181.261993,157.460342,136.865295,125.691742,122.080177,116.518188,88.385971,71.700027,88.443817,99.931419,74.642166,36.311592,15.767787,10.592581,8.403320,8.587617,9.304971,9.271088,3.296701,0.709919,0.409092,0.133885,0.000000,0.108265,0.000000,0.245455,0.055372,2.363637,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.555000,4612615.550000,4922,3855,106.127289,161.135559,167.449600,156.284317,142.507462,130.755386,129.474396,126.606628,126.490929,127.028122,127.838036,138.317368,157.110764,173.904129,185.416534,193.813232,192.548767,181.813232,156.763657,135.400024,125.598366,121.813240,116.036385,88.714066,71.218201,87.201675,100.152084,73.383492,35.003326,13.890100,10.548779,6.604145,7.870262,8.052905,8.642162,3.074386,0.827275,0.561158,0.000000,0.000000,0.000000,0.000000,0.040496,0.212397,1.345455,0.000000,0.000000,0.000000,0.000000,0.000000 -601732.155000,4612615.550000,4950,3855,102.669441,160.057846,165.702484,155.049591,139.966965,130.363647,128.487610,124.909096,126.429764,127.768600,127.867775,138.917374,156.834717,173.099167,185.173553,194.454544,192.826447,180.561981,156.504135,134.388443,124.528931,121.603317,116.181824,87.107452,71.438034,86.347122,99.000015,73.677704,34.719028,13.469440,10.562002,6.558690,7.428937,8.827287,8.378526,3.061990,0.547935,0.200001,0.133058,0.000000,0.000000,0.000000,0.080992,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.155000,4612615.550000,5030,3855,111.434731,164.591766,166.748795,157.690933,141.773590,132.872742,130.343811,128.980179,127.947128,130.244644,130.021515,140.517380,159.236389,175.723999,187.285965,195.657867,194.029770,182.178543,158.690933,137.021515,125.566963,123.261169,116.690926,89.269432,72.533905,87.029762,99.442986,72.864487,35.790100,14.211587,10.608282,6.514061,7.190096,6.842987,7.490096,4.910753,0.944630,0.073554,0.158678,0.000000,0.000000,0.000000,0.000000,0.175207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.355000,4612615.550000,5056,3855,103.484314,164.269440,168.591751,157.938858,142.575226,134.575226,131.062820,129.831421,129.062820,130.566956,131.079346,142.889267,160.029770,176.335556,188.145462,196.434723,195.451248,183.922333,160.319016,137.831421,127.203316,123.988441,118.509102,89.897537,72.864479,88.071091,101.649597,75.120674,36.690929,15.690101,10.773573,7.099187,8.017368,8.043814,8.333899,3.033065,1.371077,0.377687,0.061984,0.105785,0.000000,0.004959,0.000000,0.186777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.555000,4612615.550000,5087,3855,106.862007,162.457031,168.316528,156.961166,145.804138,133.795868,131.498352,130.176041,129.209106,131.217377,131.481827,141.457031,159.275208,175.275208,188.795868,196.225632,195.605789,184.572739,159.043808,138.415710,127.399178,124.085129,118.300018,89.432236,74.746307,88.167778,101.713234,74.233910,36.060349,14.106630,10.754564,6.066953,5.689269,6.869434,9.301667,3.584306,0.571075,0.300000,0.304133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601764.955000,4612615.550000,5114,3855,108.920670,162.069427,170.995041,156.557022,142.209915,131.317368,130.036377,128.647949,127.788445,128.821503,130.383484,141.176865,159.003311,174.738846,187.581818,196.267776,195.342148,182.829758,158.532242,137.234711,126.614891,121.895882,117.945465,90.019844,73.077705,87.763649,100.598358,73.970268,35.573578,15.454563,10.722333,7.100838,7.949603,8.818196,7.995054,3.078519,0.353720,0.189257,0.319835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.755000,4612615.550000,5128,3855,102.624817,160.671906,166.614059,158.167770,145.837204,136.209091,133.738037,129.423981,130.696716,131.862000,132.151260,142.572739,161.556198,176.804138,189.250427,197.994217,197.878525,185.547943,160.523148,138.465302,128.457047,125.176048,118.845467,92.300018,74.837204,90.581009,101.382660,74.754562,36.630600,14.397540,10.804152,5.363647,6.714889,8.188443,8.145468,3.902487,0.882647,0.120662,0.054546,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601772.555000,4612615.550000,5152,3855,118.035553,164.217361,166.142975,156.738022,145.101654,134.324814,132.423981,130.961166,129.828934,131.738037,132.804153,143.019012,160.415710,177.423981,189.531418,198.630585,198.638855,185.828934,161.068604,140.151245,128.382660,125.225632,119.936378,92.242165,74.399185,88.862000,100.225632,75.159515,35.374401,14.506631,10.903325,5.961168,8.701667,7.338856,7.281831,3.399180,0.804134,0.428926,1.071902,0.331405,0.321488,0.000000,0.000000,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.755000,4612615.550000,5168,3855,113.141335,162.942993,166.083481,155.744644,143.637192,135.777695,132.100006,131.645462,131.620667,133.381012,133.678528,143.926437,162.232239,177.827286,190.761154,198.604126,197.736359,186.182663,161.232239,140.066940,127.761169,124.819023,119.918198,91.595879,74.273567,89.149597,100.868607,74.959518,34.719852,13.143818,10.901670,4.969432,7.126460,7.969435,8.209105,3.333065,0.542150,0.140496,0.182645,0.138017,0.000000,0.022314,0.000000,0.054546,0.000000,0.000000,1.159504,0.000000,0.000000,0.000000 -601779.355000,4612615.550000,5186,3855,119.208282,162.530609,169.819855,161.571930,146.687622,136.869446,134.125626,131.993393,131.464478,134.042984,134.373566,145.365311,162.985153,179.142181,191.365311,199.943832,199.877716,187.687622,163.224823,141.456223,130.332245,125.968613,121.654564,92.960342,76.175224,88.877701,103.497528,77.580185,37.720680,16.637209,11.059524,7.216542,9.421502,9.671088,10.614064,3.828107,0.961159,0.130579,0.148761,0.247108,0.000000,0.234711,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.955000,4612615.550000,5214,3855,107.559525,166.633896,168.782654,158.600830,145.600845,133.344650,131.617371,130.237213,129.237213,132.518204,132.344650,143.295074,161.220673,177.063644,189.600830,198.493393,196.633896,186.187607,160.881821,139.749619,128.204147,124.080185,119.518196,90.683487,73.840515,87.857040,101.171089,74.881836,35.220684,13.218199,10.865309,4.318191,8.464478,7.448773,7.363648,3.689264,0.632233,0.000000,0.059504,0.133884,0.009918,0.000000,0.008265,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.955000,4612615.550000,5249,3855,114.739685,164.652069,169.627274,159.635544,147.147949,136.875229,133.362823,133.147949,131.147949,134.949600,134.420685,144.676880,162.453720,179.751236,190.974380,199.338013,198.924789,187.908264,163.577682,141.610748,129.511597,125.668617,121.718201,93.445473,75.784317,89.313240,101.313240,77.660347,37.610760,14.558695,11.065308,5.790093,8.572742,8.454558,7.483484,2.476039,0.815704,0.205785,0.127273,0.381819,0.000000,0.000000,0.004132,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.355000,4612615.550000,5276,3855,119.438034,170.548782,171.267792,163.647949,148.457855,137.515701,133.928940,132.127289,132.094238,135.028122,135.317368,145.557022,162.441345,179.565292,191.970245,200.829758,199.160339,188.143799,164.028122,141.548767,129.681015,126.548775,121.581833,92.416550,75.606628,89.548782,101.342171,77.317375,35.879364,14.357043,11.052911,5.403315,8.494230,9.441339,9.006626,2.861991,0.901655,0.145455,0.227273,0.120661,0.019009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.555000,4612615.550000,5302,3855,115.592583,173.118179,169.919830,164.928085,146.671921,137.010757,135.043808,133.531418,133.085129,135.382645,136.729782,146.126434,161.886765,180.506622,191.192551,201.002472,200.556183,188.605774,164.671890,141.052094,131.448776,127.002487,123.481827,94.663643,76.597534,90.688438,104.357857,79.357864,36.688450,16.341339,11.225637,6.793400,7.815717,8.290923,8.071089,5.558687,0.683473,0.265290,0.187604,0.021488,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.955000,4612615.550000,5319,3855,122.435555,173.423981,169.911575,161.118195,148.589264,135.845459,134.688431,131.738022,131.109924,134.564468,132.977692,144.721497,161.828934,178.754547,191.564484,199.556213,198.382660,186.977707,163.184311,141.985962,129.266953,124.564468,119.754555,91.671906,73.779350,88.076874,101.366119,75.473572,35.448784,14.046299,10.886794,4.712406,7.392576,6.132243,6.179352,1.966947,0.457853,0.009091,0.000827,0.000000,0.000000,0.000000,0.000000,0.074380,0.000000,1.348760,0.000000,0.000000,0.000000,0.000000 -601808.955000,4612615.550000,5334,3855,130.275208,173.886780,173.093399,163.184311,149.457031,136.804153,134.589264,132.886780,132.118195,136.035553,134.514877,146.432236,162.994217,179.787613,191.341324,201.994217,200.762817,189.010757,164.845459,142.671906,130.275208,126.762817,121.390915,92.547943,76.209106,89.630585,101.581001,74.911583,35.465309,14.405803,11.035557,5.809927,7.188444,7.110757,7.479352,2.282652,0.886779,0.043802,0.158678,0.000827,0.104132,0.000000,0.033885,0.356199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.355000,4612615.550000,5351,3855,126.687614,178.588440,170.505814,162.720673,149.704147,134.158691,134.018188,131.109085,130.737198,134.406616,132.257858,143.406631,160.778519,177.968628,190.133896,199.001663,198.042984,187.852905,163.142151,141.026474,129.175201,125.514053,120.563644,93.018196,74.952087,90.009933,102.563652,76.191750,34.266132,14.701673,10.960350,3.607447,6.106626,7.251255,7.722327,3.627281,0.738845,0.015703,0.032232,0.000000,0.000000,0.000000,0.000000,0.082645,0.000000,0.000000,1.034711,0.000000,0.000000,0.000000 -601815.955000,4612615.550000,5369,3855,123.858688,182.409927,169.219849,162.798355,148.029770,136.633072,132.484314,131.029770,129.500839,134.112396,131.509109,142.071091,158.575226,176.682663,188.467789,198.153732,197.434723,186.021500,162.285965,140.608276,128.517365,125.161987,120.236366,91.798363,74.310768,90.071091,100.880997,75.938866,34.517372,14.676878,10.930597,4.888440,8.788445,8.521502,8.776874,3.652899,0.461158,0.533060,0.364463,0.104133,0.166116,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.355000,4612615.550000,5396,3855,127.423981,175.492584,177.484329,162.145462,146.145462,134.575226,133.120667,130.616547,129.517365,130.492569,131.186783,141.426453,159.376877,175.674408,187.352081,196.773560,195.798355,183.343811,158.550430,139.137207,128.269440,125.170258,119.963646,90.963646,75.137199,90.740509,101.889267,73.740509,35.484314,16.286793,10.905804,10.488442,10.088445,9.628114,10.154560,4.062819,1.669425,0.443803,0.423968,0.243802,0.000000,0.442149,0.016530,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.555000,4612615.550000,5412,3855,123.749596,168.501663,171.840500,160.972733,144.691742,134.104965,132.592575,129.650421,128.063644,129.022324,129.493393,139.187607,159.113235,173.542984,185.576050,193.848770,193.146286,180.394226,156.551254,135.807449,124.328110,122.204140,115.972740,88.683479,72.261993,87.104965,98.683479,71.997528,33.584320,13.938034,10.542994,8.525634,8.636376,7.672739,7.595880,2.504965,0.536365,0.208265,0.172728,0.000000,0.000000,0.000000,0.062810,0.032232,1.266116,0.000000,0.000000,0.000000,0.000000,0.000000 -601828.955000,4612615.550000,5434,3855,116.932236,173.180191,173.353745,162.733902,146.395050,135.477692,134.361984,131.163635,130.659515,131.204971,130.808273,142.204971,160.494232,175.700851,187.502502,196.700851,195.766968,182.147125,157.147125,137.056198,126.064468,123.626450,117.709099,90.031418,74.585144,87.651253,99.014885,73.469444,34.328945,15.317373,10.700845,10.040511,8.314890,8.853732,8.250426,3.476868,0.972730,0.380993,0.071901,0.045455,0.048760,0.000000,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.355000,4612615.550000,5456,3855,126.063652,177.427261,175.972717,160.947937,144.724808,133.476883,132.848785,128.923157,128.526459,129.460342,129.609116,141.038849,158.047119,174.162796,185.559494,194.823959,193.493378,180.419006,157.311584,135.823975,125.245476,121.741341,117.427292,88.815720,72.898361,85.138031,98.757866,71.129768,33.311588,13.504976,10.675225,8.175220,7.704972,8.992575,9.195882,3.535545,0.445456,0.214877,0.225620,0.000000,0.109918,0.158678,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601840.155000,4612615.550000,5490,3855,120.338860,182.821503,179.598373,167.838043,149.168610,134.738861,134.102493,130.722336,129.259521,131.011597,131.350433,143.540512,161.061172,177.945480,187.457870,197.325638,195.755386,181.160355,158.110764,137.160355,126.771919,122.796715,117.218193,89.036385,72.259521,86.110764,98.623161,73.251251,34.408283,15.465308,10.656218,10.111586,8.318196,10.123155,10.974394,4.952074,1.519837,1.265291,1.703307,0.379340,0.220662,0.157025,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.955000,4612615.550000,5514,3855,112.338036,180.742981,176.379349,163.238846,147.362808,134.445480,133.908279,130.437210,130.205811,131.395889,130.139694,142.486786,160.371078,177.114883,187.701675,198.767792,196.164490,182.693390,159.189255,137.933060,126.015724,123.594231,118.718201,88.288452,73.040512,87.073570,99.387611,71.990929,33.668613,13.303323,10.792581,10.816545,7.713237,8.390924,8.000839,2.116534,0.876035,0.461985,0.052893,0.000000,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601847.755000,4612615.550000,5528,3855,122.707451,177.484299,176.732224,165.938843,149.170242,136.649597,135.467789,132.409927,131.740509,134.095886,132.261169,144.368607,161.368591,178.062805,189.748779,197.715714,196.038025,183.657852,160.004959,138.930588,127.624809,124.649597,118.509102,90.368607,73.079353,86.847946,98.666130,72.682655,35.285973,13.362827,10.773573,8.945469,6.824808,8.813237,8.200841,4.258685,1.020663,0.397521,0.439671,0.000000,0.198348,0.000000,0.000000,0.052893,0.000000,1.147934,0.000000,0.000000,0.000000,0.000000 -601850.755000,4612615.550000,5543,3855,134.124802,183.876877,175.513229,162.967789,146.761169,133.414047,132.405792,129.711578,128.670258,132.017365,128.546280,141.257034,158.777695,175.447113,185.860336,196.860336,194.124802,180.447113,156.876877,137.116547,124.901665,122.752907,116.827293,88.232246,72.794235,86.653732,98.422325,70.984322,32.579357,14.047125,10.620681,7.870263,6.549599,9.000014,7.310758,2.728933,0.659506,0.164464,0.220662,0.000000,0.000000,0.000000,0.057851,0.115703,1.147934,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.155000,4612615.550000,5560,3855,137.654572,185.877701,172.960342,162.109100,145.357040,130.447952,131.307465,128.745483,128.695892,130.704163,128.390106,140.166946,157.770264,173.993393,186.018188,195.117371,192.861160,178.687607,155.042984,135.274399,124.745483,122.877708,115.200027,87.414902,71.935562,86.290932,96.695892,69.976883,33.224812,12.429770,10.472746,9.999187,7.317368,7.642160,8.450428,3.284306,0.352068,0.470249,0.228100,0.105786,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.955000,4612615.550000,5574,3855,134.521515,195.372742,176.463654,166.645462,149.257034,135.042160,135.017365,131.587616,131.521500,134.604141,131.604141,142.810760,160.438858,177.033890,188.306625,198.447113,195.223984,180.728119,158.066956,138.240509,126.091759,123.364479,118.190926,90.463646,73.347946,88.339684,99.182655,70.579353,33.637211,14.105803,10.744646,10.723157,8.004972,10.067784,8.518196,4.176866,0.800002,0.203307,0.059504,0.076034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.555000,4612615.550000,5597,3855,136.945480,192.861160,177.596710,166.290939,150.877716,134.175232,134.257874,132.100845,131.720673,135.481003,131.580185,143.026474,160.497543,177.390091,189.208267,199.084305,196.753723,181.753723,158.580185,138.580170,126.621506,124.299194,118.745476,89.266136,73.621513,89.059525,98.795059,72.026474,33.976879,14.250431,10.795060,11.531421,9.190924,9.277700,9.378528,3.641330,0.447109,0.523968,0.500001,0.799174,0.357025,0.082645,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.355000,4612615.550000,5636,3855,156.383469,196.757019,180.319016,168.914062,151.947113,138.666122,137.914062,135.029770,133.360336,138.533890,132.657867,144.897537,161.343811,178.252899,190.575226,200.566956,197.434723,181.178528,160.112411,140.261169,129.558685,124.847946,120.509102,90.600021,75.707458,91.021507,99.806633,71.674400,33.186794,14.798367,10.955392,14.848778,7.735550,8.411582,8.384312,3.971083,0.347935,0.201654,0.195868,0.000000,0.000000,0.000000,0.055372,0.220662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.155000,4612615.550000,5695,3855,114.732254,161.285965,170.186783,158.971909,143.029785,132.038040,129.823166,128.674408,127.021507,128.616547,129.575226,139.608292,158.170258,174.195053,184.616547,193.674393,192.269440,180.773560,157.029770,135.806641,124.690933,121.542168,115.509109,88.649605,71.740517,86.732254,98.831429,71.261177,32.938862,13.242167,10.500845,6.710756,5.658691,6.255385,5.977696,2.992571,0.366116,0.090909,0.105785,0.000000,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.155000,4612615.550000,5780,3855,104.386795,163.742172,168.791763,158.097549,143.147110,133.709106,132.477707,130.089264,129.535553,131.312408,132.601669,142.907440,161.419861,176.560333,188.353729,198.262817,196.444641,183.725632,159.857880,139.304138,128.510757,124.510757,118.981834,90.915718,74.411583,89.064476,101.948776,73.882660,35.370262,14.190101,10.816547,7.235550,7.741335,8.397533,8.687617,2.766950,0.933061,0.132232,0.000000,0.191736,0.000000,0.000000,0.042975,0.000000,0.000000,1.308265,0.000000,0.000000,0.000000,0.000000 -601924.155000,4612615.550000,5910,3855,110.496704,167.785965,166.455383,159.240509,144.819016,135.182663,132.306625,130.942993,129.504974,131.868622,132.480179,142.893402,160.190918,176.381012,188.967789,197.405792,197.587616,185.042160,160.571091,140.248779,127.761169,123.538033,118.009102,91.124809,73.777702,89.976044,101.323151,75.571098,34.066963,12.319853,10.728118,5.571085,7.251254,7.357865,7.310757,3.925628,0.623968,0.240496,0.000000,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601961.155000,4612615.550000,6095,3855,124.947960,167.947922,169.088425,160.790909,146.666931,135.038849,133.501663,131.452087,131.204147,134.534729,133.782669,145.419006,163.138016,179.228912,191.295029,200.592560,200.385941,189.014038,165.055359,144.245453,131.319855,127.121506,121.427292,94.493408,76.262001,91.576050,104.625641,78.171089,36.162834,15.509109,11.038861,4.923976,8.529768,8.018196,8.009106,3.724802,0.826448,0.386778,0.061984,0.057851,0.069422,0.000000,0.044629,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.155000,4612615.550000,6180,3855,132.671097,178.828125,172.125641,164.299179,150.885956,138.042984,136.646286,135.299179,134.026459,137.604965,136.390091,147.910751,165.869431,182.166962,194.753723,205.042984,205.076050,193.133896,168.646286,146.357040,134.398361,130.910767,125.381844,97.026466,79.580193,94.224808,106.580185,79.877701,38.728943,15.481835,11.398366,4.895877,9.425636,7.475221,8.539683,3.105793,0.739671,0.090909,0.000000,0.000000,0.013223,0.091736,0.015703,0.142149,1.337190,1.273554,0.000000,0.000000,0.000000,0.000000 -601984.355000,4612615.550000,6211,3855,113.863655,175.896713,177.665298,164.078522,147.880188,137.723160,135.334732,133.731415,131.896713,134.111588,134.161179,145.764481,164.301666,180.557861,192.690094,202.557861,203.202499,190.252075,165.987625,143.384308,132.095062,128.210754,123.227287,94.095055,77.962830,93.772743,106.004150,77.161171,38.533077,14.814894,11.202498,8.339683,8.061999,9.170264,9.433900,5.970257,0.673556,0.358678,0.495869,0.000000,0.146281,0.100000,0.066942,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601989.955000,4612615.550000,6239,3855,113.985130,176.571915,176.985138,163.720657,147.133896,134.935547,135.018188,132.241333,131.530594,131.604965,132.786789,143.869431,162.199997,178.497528,190.489273,200.414886,200.282654,186.522324,161.985123,140.902496,129.786789,126.439682,121.563644,93.166954,76.712410,91.018188,105.059517,75.919022,37.795063,14.742993,11.051258,9.200015,8.387618,8.838031,10.445470,4.489264,1.061160,0.137191,0.238017,0.062810,0.000000,0.011570,0.058678,0.409918,0.000000,0.000000,0.000000,0.000000,1.355372,0.000000 -601992.755000,4612615.550000,6253,3855,112.020676,181.533051,177.962814,163.028931,145.714874,132.466965,133.219025,130.533081,129.665298,130.301666,131.533081,142.739670,161.690079,177.780991,189.855377,201.078506,200.103302,185.400833,161.673553,139.161163,129.161179,126.152908,121.409103,91.119850,76.987617,90.657043,103.971092,74.508278,36.599194,15.118199,11.037210,8.047121,8.704144,9.912411,11.038857,4.987612,1.861160,1.478514,1.286778,0.285951,0.313223,0.571075,0.119009,0.412398,0.000000,1.011570,0.000000,0.000000,0.000000,0.000000 -602001.755000,4612615.550000,6298,3855,112.301666,178.133896,176.028946,164.648773,149.442169,136.946304,137.475220,133.508286,132.136383,134.276871,134.061996,145.830597,164.904968,181.533081,193.260330,204.161163,203.524796,189.938019,165.359528,143.599182,131.458694,129.417374,122.863647,93.210762,78.202492,92.739685,104.731422,76.268608,36.466965,15.338034,11.169440,9.714890,8.143814,9.924807,8.865302,5.252076,1.095870,0.839671,0.634712,0.282645,0.386778,0.171901,0.074381,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.955000,4612615.550000,6314,3855,118.016541,185.487625,178.512405,164.752075,148.190109,135.694229,135.281006,131.140518,131.454559,133.256210,133.223160,144.289291,163.008286,180.338852,191.933899,202.289276,201.743820,188.446304,164.173569,141.380203,130.628113,127.057861,122.090919,92.719017,77.735542,91.363647,105.272736,76.322319,38.644646,15.282662,11.099192,10.726460,8.317371,9.146297,8.184312,4.710752,1.105788,0.490084,0.108265,0.060331,0.000000,0.000000,0.089257,0.007438,0.000000,0.000000,0.000000,2.765290,0.000000,0.000000 -602007.955000,4612615.550000,6329,3855,120.492569,181.020691,178.921524,163.433914,147.714905,134.326462,134.136368,129.764465,129.342987,131.706619,130.681824,143.417389,161.252106,177.698380,191.384323,201.797546,200.557877,186.640533,162.863663,140.103333,129.442154,126.268600,121.409096,92.045464,75.987617,90.690094,103.714882,74.276878,36.615719,14.609109,11.037209,10.082660,7.542989,7.628112,10.816545,4.982653,0.361984,0.514877,0.107438,0.000000,0.089257,0.000000,0.000000,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.755000,4612615.550000,6343,3855,115.704147,186.629761,179.704147,166.679367,148.100845,134.580185,135.786804,132.795059,131.481003,132.687607,132.530594,143.828125,162.745483,179.423157,192.109100,202.952072,201.613235,186.753723,162.960358,141.133911,130.009933,126.935555,122.200020,92.431419,75.646301,91.249603,104.216545,74.737206,37.456215,14.906630,11.109111,10.261173,7.642163,7.411584,7.994228,3.961165,0.913225,0.558679,0.154546,0.000000,0.000000,0.013223,0.127273,0.247934,1.561984,0.000000,0.000000,0.000000,0.000000,0.000000 -602013.555000,4612615.550000,6357,3855,110.467789,177.962006,177.755386,167.804977,150.110764,136.565308,138.590103,134.854568,132.995056,135.813248,134.466141,146.201675,165.763657,183.061172,194.647949,206.747131,205.705811,190.110764,166.309113,144.102493,132.945480,128.540512,123.036377,94.226456,78.135551,93.424805,104.135551,75.160347,37.375229,15.828118,11.185143,12.211586,9.767783,8.571087,11.209105,4.344637,1.504136,0.806613,0.145455,0.061157,0.045455,0.000000,0.121488,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.955000,4612615.550000,6374,3855,117.130585,189.588455,179.976883,166.877716,150.166962,136.563644,136.919022,133.464462,133.191742,136.109100,134.018188,146.142181,163.398376,181.654572,193.861176,204.505814,202.704163,187.009949,163.960358,142.538849,132.464462,128.861160,124.109100,94.166954,77.596703,93.051247,104.596703,76.621498,37.241341,14.206629,11.282664,13.682660,8.138031,9.166957,9.438858,3.920669,0.654548,0.457026,0.198348,0.061984,0.051240,0.000000,0.310744,0.000000,1.539670,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.555000,4612615.550000,6392,3855,117.591751,176.790100,172.608276,164.467789,148.657867,134.451248,132.401672,129.732239,128.715714,131.360336,129.814896,140.095886,157.707458,174.203323,185.409927,196.319016,195.699188,181.963654,159.104141,138.558685,127.459518,123.476044,118.963646,91.996704,75.872757,90.492577,102.178528,75.327301,34.748775,15.410761,10.814895,6.847946,7.433073,7.906622,8.356212,3.147941,0.352894,0.399174,0.421488,0.030579,0.000000,0.270248,0.312397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602023.955000,4612615.550000,6409,3855,113.963646,176.244644,169.633072,162.236374,146.938858,134.269440,132.938858,129.451248,127.583481,131.046295,130.153732,139.170258,155.533890,171.872742,184.021500,194.773560,193.633072,181.087616,157.542160,135.773560,126.699188,122.914062,117.236374,90.533897,75.732246,90.484314,100.790092,73.872742,35.608284,12.921504,10.657870,5.588440,8.073569,6.395051,8.723154,2.220665,0.404134,0.576035,0.081818,0.132232,0.000000,0.006612,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.755000,4612615.550000,6433,3855,114.152084,175.738846,170.333908,162.259521,146.011597,133.061172,130.168610,128.788452,126.821510,129.871094,128.309113,138.565308,154.689270,171.995041,183.259506,193.044632,192.366943,179.722321,156.284317,135.342163,125.358696,122.160347,116.854568,90.044647,74.523987,89.474396,100.647957,75.490929,35.685143,14.546300,10.623159,6.770260,9.232247,7.206623,7.228938,4.059511,0.461984,0.437191,0.527274,0.000827,0.108265,0.069422,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602033.955000,4612615.550000,6459,3855,109.801659,168.950424,169.636383,160.694229,146.024811,133.123978,131.231415,128.826462,126.776871,130.016541,128.603317,138.719025,154.677704,172.247940,183.289261,193.380188,193.157043,179.900833,156.504150,136.140518,124.760338,121.330589,116.636375,90.066132,74.628113,89.272743,99.983482,74.057869,35.438038,13.509107,10.603324,6.300836,7.419850,7.238854,6.960343,3.045459,0.566117,0.095868,0.060331,0.064463,0.152893,0.070248,0.157851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.355000,4612615.550000,6481,3855,114.178528,174.566956,170.459518,160.368607,147.087616,134.046295,131.649597,128.319016,128.624802,130.376877,128.847946,138.914062,155.699188,171.600006,183.178528,194.409927,193.038025,180.757034,157.203323,135.442993,126.467781,121.236374,118.054558,91.261169,74.360344,90.930588,102.368607,76.087616,37.740517,14.441339,10.732250,6.903317,8.226461,8.949600,7.720674,3.829757,0.702481,0.334711,0.045455,0.060331,0.000000,0.000000,0.747935,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602044.955000,4612615.550000,6514,3855,100.501663,162.964478,168.162827,162.096710,145.807449,134.890091,132.104965,128.989258,127.138016,129.377686,129.352890,139.319839,155.790924,170.914886,183.956207,192.154556,191.939682,179.476868,155.981003,134.212402,125.113228,121.088432,115.790909,90.518188,74.328117,89.509926,101.080170,74.799194,34.906631,14.658695,10.526465,6.037200,7.523155,7.726458,7.905798,2.614881,0.396695,0.386777,0.217356,0.094215,0.539670,0.138843,0.568596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.955000,4612615.550000,6544,3855,107.338860,159.371902,166.157013,157.231415,142.512405,132.471085,128.710754,127.297539,124.702492,127.570267,127.421501,136.975220,153.256210,168.991714,180.528931,190.768600,189.966949,177.834717,154.884308,133.983490,122.958694,119.223160,113.818199,88.314064,73.809929,89.933899,99.281006,73.438026,35.950432,14.642165,10.347127,5.974391,7.762825,7.486788,8.040509,2.500831,0.303307,0.361984,0.258678,0.144628,0.049587,0.264463,0.057851,0.295868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.155000,4612615.550000,6575,3855,103.781830,149.095871,164.765289,157.442978,147.123138,134.957870,132.338043,127.718193,125.032242,125.247116,125.362823,135.238861,150.569427,166.569427,177.660355,187.990921,186.825638,174.271912,153.131409,132.536377,122.354553,120.131416,116.354553,90.106621,75.957870,89.858688,102.619026,75.032249,37.238861,13.451258,10.577704,4.348770,7.775222,7.051252,6.119845,3.191741,1.502481,1.328100,1.740497,1.790083,2.011571,1.905785,1.583471,1.628926,0.000000,0.000000,1.064463,0.000000,1.089256,0.000000 -602065.555000,4612615.550000,6617,3855,85.418198,157.195053,165.938858,156.641342,141.310760,131.814896,128.600006,126.509102,124.897537,125.971916,126.319023,136.467758,153.071091,168.525635,181.302490,189.484314,190.170258,177.996704,155.302490,133.781830,122.476044,119.186790,114.236366,88.889267,74.128944,87.806625,101.013237,74.723991,35.814896,13.796713,10.385144,5.357036,7.050427,6.935549,7.038854,2.727277,0.347935,0.031405,0.049587,0.106612,0.000000,0.065289,0.137190,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.155000,4612615.550000,6665,3855,95.510765,152.849609,165.246307,156.857880,142.684326,130.064484,127.469444,125.138863,124.552086,124.684319,124.585144,136.618210,152.436386,167.725647,179.948776,189.510757,188.469421,175.254562,153.238037,131.874405,121.568619,118.626472,113.163658,87.733910,72.196716,86.312416,100.560356,73.196716,33.626469,12.910761,10.287622,5.098358,7.637205,6.713234,7.247120,3.598353,0.617357,0.091736,0.245455,0.000000,0.000000,0.000000,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.955000,4612615.550000,6689,3855,96.762825,158.804169,166.275223,156.605804,143.184311,131.266953,129.068604,126.052078,125.250427,126.457039,126.886795,137.068634,153.589279,169.019028,179.952896,190.870255,188.911575,177.506622,153.911606,132.300018,123.068611,118.704971,113.754562,87.506622,72.142990,86.994232,100.266960,72.969437,35.300018,13.435554,10.341341,6.299185,8.055387,7.598359,6.247119,3.836370,0.249588,0.085951,0.233885,0.000000,0.000000,0.130579,0.127273,0.489257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602083.755000,4612615.550000,6708,3855,85.747116,161.515717,167.110764,155.358704,144.201675,132.557037,129.119019,126.912407,126.449600,126.077698,126.747116,136.664490,154.945480,169.829773,181.416550,190.366959,189.168610,176.854568,154.631424,132.730591,123.218193,119.747116,113.400009,88.499191,74.284309,88.482658,101.482658,73.639679,36.110764,14.897538,10.309111,5.755383,8.947948,7.156208,8.402493,3.033889,0.109091,0.164463,0.211571,0.000000,0.000000,0.064463,0.451240,0.600000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.755000,4612615.550000,6723,3855,88.527290,154.527313,167.800034,158.667801,143.204971,133.014893,130.171921,128.138855,126.395058,127.064476,127.766960,137.254562,153.981857,170.585144,181.105789,191.196701,190.014877,178.006622,154.800034,134.353729,123.105797,120.130592,115.527290,89.370262,72.783485,89.419846,101.461174,74.957039,36.981838,15.359522,10.502499,6.514061,9.259520,9.409105,9.057865,3.915708,0.559507,0.626447,0.292563,0.183472,0.148761,0.225620,0.228926,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.955000,4612615.550000,6739,3855,94.438858,150.719864,162.133087,155.381027,139.893387,130.843811,127.414062,124.314888,123.000839,123.876869,125.075218,135.637207,150.678543,166.860336,178.777679,188.058685,187.595871,174.942978,151.595901,131.645462,119.752907,117.339684,112.372742,86.075218,70.777702,86.455383,97.504974,70.562820,30.223988,12.223983,10.215720,5.457861,6.300840,6.538855,4.683482,3.034716,0.572729,0.185125,0.199174,0.000000,0.000000,0.080992,0.623968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602092.955000,4612615.550000,6754,3855,92.922325,154.211578,165.542160,155.748779,139.566956,132.823151,128.889267,125.864479,123.418198,124.542160,126.153732,136.062820,153.748779,168.839676,179.608276,189.938873,187.492584,175.682663,153.509109,132.170258,121.343811,119.575218,114.054558,87.335548,73.484314,87.963646,99.525635,72.360344,34.426468,13.105801,10.368614,5.764474,7.292577,6.998359,6.901666,3.168600,0.376034,0.332233,0.314876,0.000000,0.001653,0.000000,0.225620,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602095.755000,4612615.550000,6768,3855,96.706627,153.095078,165.417374,155.731430,141.210770,130.814072,128.623978,125.169441,124.516548,125.318199,125.342995,135.615723,152.797546,168.053741,179.152908,189.376038,188.623962,176.012405,153.219040,132.070267,122.681831,118.111588,114.590927,88.235550,73.219025,88.863655,100.326462,73.797539,35.574398,12.602497,10.417374,6.452076,7.061998,7.710756,6.676044,3.440503,0.732234,0.500002,0.142976,0.308265,0.000000,0.328926,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.555000,4612615.550000,6792,3855,75.442169,157.318192,167.640518,157.913239,143.409103,132.268616,128.979355,125.731430,125.954567,124.921509,125.863655,136.227295,153.359528,168.756210,179.971085,190.450424,189.111588,176.830597,155.078522,133.053741,124.086800,118.913239,114.590935,88.128113,72.863655,88.392578,99.177704,72.814064,35.028946,15.520679,10.417375,5.701663,7.567783,9.007451,7.351252,3.407445,0.233059,0.209092,0.557026,0.027273,0.000000,0.072727,0.444628,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.355000,4612615.550000,6831,3855,87.278534,152.807434,165.609085,155.088440,142.625626,131.286789,128.501663,125.377701,125.832253,125.055389,126.534729,136.609100,153.956207,168.807434,179.898361,189.493378,187.361145,176.724808,152.576050,133.237198,122.385971,119.014069,112.972748,87.972748,71.609108,88.212418,99.352913,72.427292,33.774399,12.527289,10.270267,5.040507,6.602493,7.214888,6.612409,3.579344,0.626448,0.440497,0.084298,0.156199,0.076033,0.065289,0.000000,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602112.755000,4612615.550000,6853,3855,90.662834,154.340500,168.604965,157.497528,142.290924,131.233078,128.497543,124.538864,124.233078,125.431427,125.753738,136.183487,152.778519,168.786789,180.290924,190.514053,189.770264,177.728943,153.803314,133.753738,122.522331,119.737206,113.654572,88.538872,73.877708,88.150436,98.902504,71.762009,34.662830,13.739687,10.332251,5.613235,6.951256,7.819022,8.187617,3.719014,0.576860,0.065290,0.228100,0.062810,0.106612,0.000000,0.470248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.555000,4612615.550000,6872,3855,79.046310,152.170273,167.542175,157.228134,143.500854,133.269455,130.583496,126.814896,125.930603,126.062828,126.988449,136.600037,153.062836,169.368607,181.071091,190.393402,188.914062,177.178528,153.261185,132.649612,122.955391,119.319031,112.690926,88.120689,72.715729,88.401680,98.228127,72.352097,33.641338,13.637208,10.244648,6.252077,8.361997,7.405797,7.713236,3.561163,0.551241,0.193389,0.000000,0.000000,0.000000,0.347108,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.355000,4612615.550000,6891,3855,90.553734,148.190094,165.115723,154.702499,140.132248,130.223160,127.818199,124.438034,123.347122,123.504150,124.892578,135.545471,152.380188,167.842987,178.520676,188.884308,188.355392,176.595062,152.528946,131.512405,120.561996,117.553734,112.545471,86.859520,72.140511,86.842995,97.735550,72.074394,32.628120,13.328115,10.231424,5.321497,7.199189,6.509928,7.987615,2.366947,0.909920,0.194216,0.354546,0.369423,0.000000,0.222314,0.733058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.955000,4612615.550000,6919,3855,100.892586,154.206650,168.148788,158.363663,143.008301,134.380188,132.198364,127.495880,126.371918,126.685966,127.355385,138.702515,154.661194,169.950439,181.628128,190.702515,190.214905,177.528961,154.454575,133.504150,123.347122,120.396713,114.636383,89.528938,73.661171,89.685966,98.413239,72.768608,33.991756,14.633904,10.421507,6.971913,9.241338,7.160342,8.904147,5.489264,0.561984,0.210745,0.309918,0.055372,0.000000,0.000000,0.000000,0.116529,0.000000,0.000000,1.895041,0.000000,0.000000,0.000000 -602131.555000,4612615.550000,6947,3855,97.818207,159.695892,165.472748,157.571930,141.786789,132.357040,129.208282,127.332253,125.340515,125.753738,126.323982,136.811584,153.447937,170.803314,181.059509,191.257858,190.514053,178.274384,155.580170,133.249603,123.233078,119.985138,115.018196,89.530594,72.646309,89.018196,100.687622,71.092590,35.712418,13.247124,10.456217,6.318193,8.135552,8.135550,7.626460,2.296699,0.718183,0.085951,0.000000,0.016529,0.001653,0.129752,0.000000,0.841323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602136.955000,4612615.550000,6974,3855,89.194237,159.219025,168.541336,158.913239,145.433899,135.367798,132.475235,129.343002,128.318207,127.648781,128.483490,140.417374,155.871918,170.781006,182.293411,191.954559,190.805801,179.582657,154.880188,133.946304,123.764488,121.582672,117.136391,89.252090,75.326469,89.326469,99.086800,72.549614,34.557873,13.046297,10.648780,7.690095,7.613237,7.769434,7.309929,3.100005,1.002482,0.228926,0.382646,0.114050,0.000000,0.000000,0.000000,0.295868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602140.555000,4612615.550000,6992,3855,96.929771,155.789261,166.590927,159.177704,141.971085,131.450424,129.219009,126.309929,125.020668,125.929771,126.756203,136.938034,153.607452,168.954559,180.417374,189.136383,189.764481,176.334732,153.962830,134.210754,123.045471,119.128113,115.409103,88.698364,73.921501,87.078529,98.227287,70.797539,35.070271,14.494231,10.491754,6.662822,8.180181,6.951252,7.556211,3.096699,1.014052,0.023967,0.217356,0.028099,0.000000,0.072727,0.264463,0.592562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.555000,4612615.550000,7012,3855,93.037216,162.822311,170.086777,160.227280,143.615723,133.318192,130.921509,126.690102,125.285141,127.103325,127.648773,138.508286,155.070251,169.458679,180.541321,190.433884,189.847107,177.037186,154.243805,132.690094,123.078529,120.334724,113.318207,88.260353,73.028954,87.194237,97.599197,72.814072,33.318203,11.698366,10.301673,7.708278,7.888445,6.800837,6.394227,3.396700,0.703307,0.422315,0.039670,0.000000,0.000000,0.068595,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.755000,4612615.550000,7038,3855,93.680183,159.580994,167.680176,157.423996,143.250443,130.862000,130.853729,127.572739,125.399178,127.407455,127.622322,138.167786,153.903336,169.911575,180.382645,191.762833,191.085144,178.837204,155.853745,134.581009,123.828934,120.134720,115.300003,89.250427,74.134727,89.804146,98.985962,71.688446,34.399193,14.153737,10.481836,6.632243,7.910759,8.276046,7.007450,2.468600,0.361984,0.208265,0.309918,0.060331,0.111570,0.133058,0.787604,0.795042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.755000,4612615.550000,7063,3855,102.408287,162.119019,169.970245,159.540497,143.730591,133.193405,131.953735,127.962006,127.201675,128.490921,127.383492,138.019836,154.590103,170.218185,180.623138,191.119019,190.887604,176.986786,154.028122,133.127289,124.995064,120.639687,114.400017,88.036385,73.242996,86.920677,98.135559,70.267792,32.871094,12.492578,10.400020,6.841333,8.254561,6.819019,7.267781,2.416533,0.495869,0.211571,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,4.495868,0.000000,0.000000,0.000000,0.000000 -602161.555000,4612615.550000,7097,3855,94.358696,161.970245,167.780167,158.358688,143.160339,132.424820,129.829773,127.623161,125.722336,127.160347,126.738861,137.804962,153.176865,169.606613,180.598343,191.143799,190.515701,177.201660,154.862808,134.573578,124.152084,121.515724,114.036385,88.887619,73.631432,87.350433,96.904152,69.854568,32.499191,13.369440,10.366961,7.420673,7.145470,8.511583,8.069436,4.029759,0.502480,0.006612,0.396695,0.038017,0.043802,0.072727,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.135537 -602168.555000,4612615.550000,7132,3855,92.305801,165.446274,170.347107,159.785141,145.115723,132.314072,130.892578,127.239685,127.206627,127.595055,127.842995,137.123978,154.454559,169.338852,181.504135,191.842987,191.314072,177.876038,155.553741,135.181839,124.140511,120.975220,115.090927,88.495880,74.851257,86.495880,97.867783,69.719025,33.107460,13.409107,10.462829,7.127285,7.930593,6.023977,7.076045,2.625625,0.763638,0.303306,0.384299,0.028926,0.000000,0.268596,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.955000,4612615.550000,7164,3855,94.611588,166.016541,169.661179,159.404968,143.933899,131.702499,128.578522,125.991753,125.528938,126.157043,125.586792,136.462830,152.148773,168.735550,180.404968,190.917374,190.347122,175.942169,153.264481,132.851257,123.413239,118.413239,114.090927,87.702492,72.355385,86.685966,95.685966,69.371918,31.223160,13.128942,10.371920,7.866953,6.964477,5.993398,5.897531,2.658683,1.061985,0.223968,0.285125,0.153719,0.000000,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.755000,4612615.550000,7198,3855,99.997543,173.799179,173.683487,159.964478,146.328110,132.881821,131.047119,128.881821,127.410751,131.443817,127.873566,139.162827,153.369431,170.071915,182.047119,192.749603,192.493393,178.724808,156.815720,135.881821,125.964470,122.526459,117.154556,90.278542,75.336388,89.617378,99.146301,70.741348,34.295059,16.293407,10.650432,10.137204,10.046297,9.279351,7.938856,4.921494,0.622315,0.695869,0.507439,0.163637,0.142976,0.278513,0.000000,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.355000,4612615.550000,7221,3855,109.519020,175.047943,169.163635,158.659515,142.593399,130.229767,129.890930,126.742165,125.676048,127.642990,125.700844,135.626450,151.072739,167.717361,180.130585,189.626450,189.238022,174.180176,152.535538,133.138855,123.543816,119.957039,114.163651,87.948776,72.403320,87.543816,95.766960,69.469437,32.981838,11.748776,10.378532,7.914888,7.321502,8.761170,7.785964,2.047938,0.439671,0.114050,0.000000,0.552067,0.000000,0.000000,0.474380,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602190.755000,4612615.550000,7243,3855,108.487617,178.909088,169.669434,162.049606,147.900848,132.694229,132.099182,128.652908,127.826462,131.140518,128.181839,138.917374,153.561996,170.702499,182.537186,192.942154,191.685944,177.264465,155.264481,135.867783,125.677704,122.479355,116.818199,90.603325,75.636383,89.231422,97.247948,70.413239,34.727291,15.188447,10.619854,10.955385,8.571916,8.736376,9.497535,4.054552,0.540497,0.271901,0.185951,0.475208,0.000000,0.070248,0.378513,0.000000,4.842976,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.355000,4612615.550000,7276,3855,116.186798,175.806610,172.302475,163.368607,145.228119,134.963654,132.277710,128.013245,129.211594,132.095886,128.335556,140.079346,155.806625,173.294235,185.153717,196.872726,195.509094,180.517349,160.831421,142.178528,129.261185,126.385147,121.327293,93.087624,78.525642,96.038040,102.732254,73.228119,36.823162,13.362001,11.029771,8.866954,8.883485,8.814889,9.611584,3.963644,0.672729,0.058679,0.205786,0.085124,0.000000,0.073554,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.355000,4612615.550000,7296,3855,127.069435,175.391739,169.928925,162.738846,145.995041,133.995056,131.829773,128.143814,128.276047,132.871094,127.639687,138.705795,153.788437,170.251236,183.226456,194.532242,193.821487,178.681000,159.664459,140.276031,129.127289,126.135559,120.672745,92.284317,76.920677,93.548782,102.267792,74.350433,35.138863,15.610760,10.970267,11.462823,8.139684,10.352907,10.344641,3.845462,1.328102,0.356200,0.240497,0.200827,0.000000,0.000000,0.000000,0.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.955000,4612615.550000,7319,3855,113.459518,171.393402,172.062820,162.914062,144.996704,134.930588,130.988449,127.922325,126.492577,131.591751,125.252907,135.839676,149.517365,166.707458,178.294235,188.790100,185.451248,172.376877,153.558685,135.211578,124.542160,121.302490,116.781830,89.426460,76.327286,91.161995,98.285965,70.525635,34.896709,16.147951,10.616548,13.190924,8.393403,10.658692,9.143814,4.154553,0.695870,0.361985,0.087604,0.093389,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602208.755000,4612615.550000,7333,3855,130.927292,175.398361,173.051254,164.315720,143.547134,133.828110,130.183487,126.952072,125.497528,129.604965,125.571907,135.109100,149.547134,165.447937,176.778519,188.671082,186.481003,171.894226,153.472748,135.042999,124.968605,120.233070,115.927284,87.720673,74.745461,89.852913,99.348770,70.728935,34.158695,14.357041,10.538863,10.699188,9.713238,9.825635,10.712409,5.696704,0.739671,0.374382,0.080166,0.109091,0.414876,0.025620,0.959505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602214.155000,4612615.550000,7360,3855,114.000847,151.075226,154.951248,146.752899,131.422333,123.463646,119.992577,116.149597,115.653732,117.166130,118.604149,128.331421,145.157867,161.769440,173.430588,184.744644,185.480179,176.670258,154.232239,134.133072,122.455383,118.926460,113.009102,86.951256,70.843811,87.860344,102.389267,75.819023,34.628944,13.620678,10.273573,4.234721,7.314889,8.026461,8.248774,2.470255,1.171077,0.405787,0.146281,0.078513,0.000000,0.000000,0.072727,0.522315,0.000000,2.117356,1.933884,3.280165,0.000000,3.105785 -602218.555000,4612615.550000,7382,3855,104.414894,140.993408,152.447952,144.563660,129.505798,118.910759,116.877701,114.505806,113.109108,114.042992,114.770264,126.580185,142.894241,158.753738,170.249619,182.844650,182.059525,171.547134,151.067795,132.051254,119.662827,116.704147,110.200020,85.679359,69.390099,85.786797,99.274399,74.059525,33.662830,12.477703,10.018202,5.887614,7.566955,6.357037,6.260341,3.360340,0.409092,0.423142,0.361984,0.000000,0.153719,0.000000,0.258678,0.326447,0.000000,0.000000,0.000000,1.533058,0.000000,0.000000 -602223.755000,4612615.550000,7408,3855,108.002495,152.804153,155.143005,145.085129,130.300003,119.812401,116.787613,114.324799,112.845459,114.572731,115.333061,125.448769,142.209106,157.828949,170.035553,182.101669,182.266968,172.895065,150.696716,130.853729,120.159508,116.283478,110.300003,84.349594,69.961182,86.647118,99.192566,74.300026,33.333080,12.643818,10.027291,6.400011,8.560344,7.714063,8.473566,3.642156,1.039673,0.200828,0.021488,0.148761,0.304133,0.730579,0.342976,0.210744,0.000000,0.000000,1.795868,0.000000,0.000000,0.000000 -602226.955000,4612615.550000,7424,3855,119.757866,149.807465,153.311600,145.162842,130.757874,122.336380,119.179359,115.914894,114.840515,115.766136,117.237206,127.799194,144.460358,160.286804,173.055405,183.625641,184.865311,174.625641,153.014069,133.956223,123.278534,119.014069,111.881836,87.212418,71.972748,87.832253,100.658699,76.121506,35.262001,14.670266,10.171094,7.063649,9.828939,8.371916,9.158691,4.054555,0.946284,0.571076,0.094215,0.040496,0.089257,0.000000,0.309091,0.340496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602229.755000,4612615.550000,7438,3855,116.871918,153.789276,151.690094,143.219025,129.400848,120.276878,116.028938,113.491753,112.566132,113.904976,115.012413,126.078529,142.433899,157.161179,171.392578,180.061996,181.152908,170.227295,149.764481,128.318192,118.946297,115.789276,109.590927,83.995880,68.392578,84.541336,98.028938,72.524811,33.185970,12.493403,9.962829,4.147117,6.917367,7.099186,7.196707,2.791742,0.708267,0.214051,0.020661,0.194215,0.047934,0.000000,0.072727,0.260331,0.000000,2.114050,0.000000,1.483471,0.000000,0.000000 -602232.355000,4612615.550000,7451,3855,114.590935,153.450439,154.962845,144.648788,131.268616,121.648781,119.144653,115.871925,115.095062,114.871925,116.731430,126.995895,143.136398,159.888458,172.847137,183.855408,183.979370,174.078552,151.185989,131.648788,122.648781,118.351265,112.500023,87.219025,70.714897,87.004150,100.268616,74.433907,34.855389,14.584316,10.227291,6.923978,8.924807,9.989270,7.838856,4.252073,0.937193,0.358679,0.235537,0.000000,0.043802,0.000000,0.362811,0.933059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602236.755000,4612615.550000,7473,3855,139.012405,156.814056,156.508270,146.285141,131.805801,123.590927,119.971092,115.632248,114.706627,115.995880,116.979355,128.442169,144.318192,159.351242,172.028931,183.871902,184.293396,174.103302,151.615723,132.185974,123.169441,119.648773,112.590927,87.863655,71.830597,87.425636,99.252083,74.904976,33.566135,14.525639,10.235556,7.294226,8.209931,8.650426,9.359520,4.561166,1.019012,0.326449,0.314877,0.260331,0.244629,0.000000,1.051241,0.500827,0.000000,0.000000,0.000000,0.000000,0.000000,2.990909 -602244.155000,4612615.550000,7510,3855,148.665329,171.400864,155.004166,143.814087,128.466965,117.814072,115.665314,111.805809,111.202507,112.227295,113.078537,124.483498,140.466980,159.210770,170.020691,180.500031,182.268631,170.979370,147.590942,127.657051,119.632256,115.822342,110.681839,85.028938,68.772743,85.400841,97.541344,68.739685,34.243816,11.871092,10.062002,8.685963,8.233896,7.936375,6.902492,5.447115,0.715706,0.138017,0.856200,0.118182,0.052066,0.000000,0.160331,0.644629,2.184298,0.000000,0.000000,0.000000,1.746281,0.000000 -601383.155000,4612605.550000,3205,3905,168.020676,151.665298,133.293411,119.764481,102.747948,93.938034,90.830597,87.136383,88.219025,90.376053,91.599190,103.425636,122.590927,139.516541,154.161179,167.152908,171.557861,163.549606,143.838852,124.219025,114.632248,112.954559,108.045471,77.028938,55.764484,77.243820,100.805801,75.227287,34.847122,11.313239,9.822333,16.953737,11.903322,17.614895,18.463654,18.917372,6.426457,1.528103,1.889262,1.350416,0.153720,1.789259,1.651241,3.578517,28.392567,23.319014,11.669426,12.957029,12.486779,11.388431 -601386.755000,4612605.550000,3223,3905,169.726471,158.222336,140.329773,126.247116,111.900009,101.222328,98.147942,95.817368,95.263649,97.660339,98.900009,111.081833,129.081833,146.767792,161.652084,173.660355,175.346298,163.701675,141.073578,120.214058,109.569435,106.048775,100.627281,71.933075,53.742996,70.495056,83.817368,61.668613,28.707457,11.134727,9.147953,13.460347,9.490925,11.314891,13.943819,8.692575,3.037197,0.625622,0.713225,1.543803,0.321489,1.831407,0.409093,0.553720,10.254547,15.809093,17.571905,7.995043,3.972728,8.294216 -601391.355000,4612605.550000,3246,3905,156.377701,155.080170,144.650421,130.286789,114.609100,107.303314,103.947945,101.658684,100.352905,102.716537,103.319847,114.270256,132.749603,149.245468,163.592575,173.509933,175.303314,164.460342,140.443817,118.807449,108.485130,106.195877,99.154556,72.055397,54.204155,69.840515,82.600845,59.848782,28.138037,9.459520,9.014069,10.876049,8.266955,9.218197,10.359518,6.380173,1.698353,0.866946,0.570250,0.489257,0.390084,0.680166,0.488431,1.162811,7.576861,13.844631,12.387606,6.772729,1.766942,3.280992 -601397.555000,4612605.550000,3277,3905,134.416550,152.507462,143.350433,133.540512,119.309105,109.771912,106.044640,104.590096,104.424805,106.077698,107.714058,118.573563,135.995056,152.523987,166.457855,177.366943,177.920670,165.978516,141.681015,121.019844,110.763649,106.391747,100.945473,73.284317,57.085976,70.978539,82.623154,60.804977,26.571920,11.576877,9.176879,10.306626,8.484310,10.264478,10.979355,4.126454,1.918187,0.383473,0.492564,0.129752,0.000000,0.543802,0.614877,0.362810,11.521488,6.103307,7.494216,5.408266,7.865290,3.395042 -601406.155000,4612605.550000,3320,3905,132.727280,152.338852,143.264481,131.239685,119.380173,109.578529,106.289276,104.413239,104.719025,106.900841,107.768608,117.842987,135.661179,152.057861,165.512405,175.561996,176.892578,165.793411,140.917374,121.214882,108.983490,106.471092,99.909103,74.768608,55.281010,70.793404,82.975220,60.264481,27.231422,10.949604,9.082664,8.836378,7.081004,8.817370,9.746296,4.026454,0.982648,0.725622,0.335538,0.398348,0.072728,0.000000,0.732233,0.000000,5.542150,5.497521,0.738843,4.462811,1.797521,1.817355 -601418.355000,4612605.550000,3381,3905,132.857849,143.733063,144.757858,133.782654,119.658684,110.278519,106.741333,105.898354,105.402489,107.402489,109.369431,118.947945,136.295044,152.518188,166.129761,176.865295,176.104965,165.319839,141.328110,119.592575,109.278519,105.352905,100.518188,72.939690,56.005802,71.319855,82.997536,60.733074,25.691755,10.588448,9.138037,4.992571,7.027285,8.401667,6.640508,5.194222,0.828929,0.183472,0.369422,0.162811,0.000000,0.337190,0.228926,0.000000,3.815703,1.827273,1.422314,0.809918,3.705786,1.895041 -601437.155000,4612605.550000,3475,3905,125.874397,149.504135,147.090912,136.628098,122.561996,112.330597,110.727287,108.743820,107.735550,110.305801,111.181831,121.553734,138.834717,155.148758,167.909088,178.082642,178.024796,167.942154,143.636368,121.917374,111.644646,106.892578,102.272743,74.281006,58.082664,71.867783,83.479355,61.396713,26.892580,11.219852,9.297540,6.544641,7.141334,7.069435,6.870263,4.747115,0.818183,0.192563,0.097521,0.000000,0.000000,0.042149,0.355372,0.000000,2.091736,4.021488,1.723141,0.000000,0.915703,3.611571 -601451.355000,4612605.550000,3546,3905,135.533081,153.619827,150.388428,138.545456,125.826469,115.462837,113.223167,111.570274,109.793411,112.892586,113.214897,123.148781,141.702484,157.479340,170.396698,180.520660,179.867767,168.471069,146.950409,125.363663,114.181839,109.586800,105.727295,76.809944,58.264488,73.314072,86.677711,63.520687,29.206629,12.354562,9.611589,6.550425,8.281006,6.966130,7.925633,3.230584,0.629755,0.100827,0.280166,0.231406,0.026446,0.052893,0.192562,0.159504,2.143802,5.224794,0.833058,0.757851,0.999174,1.924793 -601458.355000,4612605.550000,3581,3905,135.012405,158.045486,155.574417,142.855408,129.351242,117.161171,114.739685,113.309937,111.797539,115.351257,115.458694,125.508278,142.326477,159.814087,172.185989,181.078552,181.657059,170.954575,147.103333,126.466949,114.665306,111.665306,105.227287,77.698364,60.524811,73.442162,87.210762,65.161171,27.764482,11.311588,9.566135,5.937201,6.039681,6.328940,6.593401,3.588436,0.609093,0.263637,0.108265,0.000000,0.000000,0.042149,0.000000,0.000000,1.067769,0.000000,0.000000,0.000000,2.087604,2.014876 -601462.755000,4612605.550000,3603,3905,159.080185,181.485138,167.567795,158.146301,139.162842,125.534729,124.782661,123.576050,122.782661,129.014069,123.286797,134.890106,151.121521,167.823990,181.468628,192.146286,189.716537,175.063660,154.394241,134.410767,123.179359,120.138031,115.427292,87.063652,70.088455,86.881836,95.286804,68.989281,33.030598,13.203323,10.493407,11.336378,8.272741,8.087616,8.123981,4.557034,0.404134,0.147108,0.038843,0.221488,0.000000,0.322314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.955000,4612605.550000,3629,3905,129.953735,190.218201,160.730591,154.408279,137.747131,124.821503,122.317368,122.482658,121.234718,127.127281,122.606621,133.119019,148.565308,167.614899,179.292587,190.912415,188.400024,174.333908,152.937210,132.350418,122.730591,118.614891,114.490921,83.862823,69.441353,84.350433,93.986786,67.292580,30.482662,12.079358,10.408284,11.037207,6.722328,8.135550,8.893402,3.191743,0.258678,0.038843,0.221488,0.111570,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.555000,4612605.550000,3672,3905,121.759514,178.238846,166.519836,156.718185,139.313248,127.238853,126.222328,124.594223,123.189270,127.652077,125.362823,135.676880,153.131409,169.511566,183.131409,192.627274,191.123138,178.536362,154.999176,135.561172,123.652077,121.866951,116.445465,87.081833,71.718193,84.610756,96.023979,71.313232,34.230602,14.504976,10.585969,12.506627,9.011584,9.785965,10.026461,4.203316,0.914877,1.327274,0.120662,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.555000,4612605.550000,3692,3905,114.908279,177.354553,165.379349,154.891739,138.247116,124.536369,125.371078,122.668602,121.528099,126.222328,123.528099,134.594223,152.147934,168.726456,180.999176,192.296692,189.528107,176.247116,154.792572,134.090088,123.544632,120.933060,113.718185,85.784317,69.759514,84.230598,95.007446,69.809113,32.271919,13.458694,10.338035,8.942991,7.944642,7.362824,8.644641,3.723149,0.519836,0.342150,0.261984,0.053719,0.000000,0.000000,0.074380,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.755000,4612605.550000,3713,3905,108.629768,174.447937,163.274384,154.076050,138.166946,125.423149,125.390091,122.761993,122.902489,124.844635,123.233070,135.811584,152.753723,168.778519,181.414886,191.282654,190.009933,177.497528,154.811584,134.456207,122.646294,120.398354,114.927284,85.373573,69.621513,84.340515,96.026459,70.588455,32.059521,13.457870,10.447952,8.756211,8.993403,9.019022,10.624809,3.110752,0.338844,0.327274,0.069422,0.000000,0.071901,0.000000,0.000000,0.000000,2.654546,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.955000,4612605.550000,3749,3905,96.880188,169.227280,164.128098,152.607437,136.929764,124.524818,124.491760,121.781013,121.797546,124.194237,122.243828,134.871918,151.954544,167.871902,180.657028,191.086777,190.028931,177.086777,153.673553,133.095062,122.260353,120.144653,113.590935,85.343002,70.252090,82.979362,95.161171,70.086800,30.194233,10.931420,10.326466,8.685965,6.760344,8.766129,8.030592,3.434720,0.581820,0.276034,0.000000,0.000000,0.000000,0.000000,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.955000,4612605.550000,3764,3905,104.579361,164.000824,159.587601,151.670258,135.083496,124.744652,124.058701,121.562828,121.331429,122.471924,122.381012,133.579361,151.099991,168.290085,179.389252,190.174377,189.265289,177.562805,153.976028,132.934738,122.645477,119.381012,113.645477,84.893410,67.984322,82.579361,94.331429,69.678535,32.058697,12.101669,10.331424,11.223156,7.068608,7.673567,6.850424,2.747941,0.829754,0.128926,0.294216,0.000000,0.000000,0.158678,0.008265,0.071075,0.000000,0.000000,0.000000,1.095041,0.000000,0.000000 -601497.755000,4612605.550000,3778,3905,112.333061,168.490082,160.870255,152.258698,137.473572,125.043816,124.762825,123.052078,122.564476,124.225632,121.895058,135.019012,151.118210,169.035538,180.647110,190.630585,189.771088,178.217361,154.605804,134.167770,122.870262,121.068611,114.572739,85.481834,69.985962,84.266960,96.961174,70.655388,33.458698,13.292581,10.415722,8.329766,6.542162,10.476049,6.497533,3.209098,0.260332,0.241323,0.050413,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.140496 -601501.155000,4612605.550000,3795,3905,116.074387,168.057846,165.553726,153.520691,137.330612,126.446289,124.776871,122.148766,121.694221,123.512405,123.214882,134.785126,152.586807,168.504135,179.909088,192.033051,190.198349,178.074387,153.727310,134.000015,122.776871,119.842987,114.363647,85.603317,69.107445,83.851250,95.785133,70.900833,33.049606,11.784316,10.396712,7.412412,7.603322,8.019023,6.823153,2.642156,0.478514,0.052066,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.099174,0.000000,0.000000 -601505.355000,4612605.550000,3816,3905,112.574394,169.500015,164.028946,154.309921,138.177689,127.640511,126.334724,123.582664,121.979355,124.417374,124.086792,135.896713,153.979340,170.103317,182.177689,191.260330,190.954544,180.392563,155.863632,134.987625,123.789276,120.723160,115.681831,86.987617,70.053734,83.962830,98.144646,72.690102,33.838863,13.969440,10.516548,7.946296,8.599189,9.799190,8.782659,4.418190,1.434714,0.000000,0.750415,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.155000,4612605.550000,3845,3905,111.242165,163.242157,161.366119,151.853729,135.845459,123.696709,123.903320,122.415718,121.200844,122.762825,122.903320,134.134720,152.647110,168.886780,181.192551,190.176025,189.266937,178.531403,153.804138,133.316544,122.539680,119.118195,112.845467,84.862000,68.357864,82.663651,96.531418,69.994232,32.985970,13.533077,10.258698,7.795055,7.099189,8.379354,7.716541,2.447941,0.907440,0.406613,0.080992,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.027273,0.000000,0.000000,0.000000 -601515.155000,4612605.550000,3865,3905,125.674385,171.740494,163.219833,153.649582,139.484299,126.145462,125.087616,122.467781,122.376869,124.054558,124.798363,136.426437,154.451233,169.765274,182.277679,192.500839,190.360336,179.905777,156.434708,134.591736,123.847946,122.806618,114.327286,86.319031,69.748779,84.467789,98.963646,69.914070,33.690929,13.100017,10.393409,7.646294,8.178529,8.296708,8.495054,4.042986,0.727275,0.095042,0.191736,0.213224,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.755000,4612605.550000,3888,3905,98.085968,165.899200,164.312424,152.370270,138.717377,125.287621,124.295883,121.915726,120.849609,122.395065,122.543823,134.246292,153.262833,168.279358,181.576889,190.279358,190.890930,179.254562,155.171921,134.271088,123.700851,120.560356,114.527298,86.494240,69.742172,82.981842,95.213249,70.411591,32.444645,12.852909,10.411590,6.402492,7.390924,10.354561,8.261996,3.245463,0.614877,0.166943,0.059504,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.929752,0.000000,2.029752 -601523.755000,4612605.550000,3908,3905,112.441345,165.986786,165.656204,151.788437,137.003326,126.606628,126.052910,122.928947,122.813240,123.664474,124.962006,134.928940,154.598343,168.590088,181.961990,190.937195,190.937195,179.416534,155.945465,135.871094,123.548782,120.681007,115.672745,86.366959,70.003334,82.937210,97.276054,71.573578,35.094238,14.225637,10.515720,8.028113,7.447949,8.132245,10.519025,4.312405,0.632233,0.080166,0.220661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.755000,4612605.550000,3923,3905,101.000839,158.918198,161.984314,149.562820,135.281830,126.265305,124.678528,121.000839,120.174393,122.182655,122.100014,133.670258,152.587616,168.108276,179.901672,189.719849,188.595886,177.761169,154.711578,133.761169,121.711586,119.918198,113.100014,85.389275,68.504982,82.562828,96.232246,69.860352,31.149603,13.047125,10.281837,6.776873,6.256211,6.581832,5.402491,3.268603,0.588431,0.257025,0.058678,0.000000,0.000000,0.000000,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.755000,4612605.550000,3953,3905,95.220680,165.906601,159.195862,150.823959,137.336380,125.716545,123.939690,121.113243,121.245476,123.650429,123.733078,134.138031,153.369415,168.939667,180.468582,191.286774,190.823959,178.518173,155.699997,133.311584,123.162827,120.278534,114.609108,86.642166,69.617371,83.129768,96.311584,70.609108,33.683491,13.411589,10.419028,8.351252,7.330594,8.149600,7.542988,3.492570,0.532233,0.261157,0.000000,0.000000,0.449587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.555000,4612605.550000,3967,3905,105.847122,161.071075,162.401657,151.294205,136.599991,125.897522,124.153725,121.674385,121.261162,122.525627,124.046288,134.798355,152.649582,168.723969,181.310745,191.145462,189.360336,179.087601,154.616531,133.798355,122.616531,119.120667,114.327278,84.831429,68.641342,83.310760,96.690933,71.360352,33.823162,13.169439,10.393408,5.295054,7.876048,8.632247,7.234723,3.183479,0.798349,0.223141,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.955000,4612605.550000,3984,3905,114.073555,160.741333,161.600830,154.228943,136.212402,126.419022,124.757858,122.154556,122.204140,123.584305,124.038849,136.121490,153.352905,169.038849,182.757858,191.675217,191.617371,180.328110,156.063644,135.658691,123.311577,120.344635,115.245461,86.997528,70.096710,84.460342,98.691742,72.352913,35.766136,14.600017,10.476878,8.621501,8.558693,9.045467,10.442989,4.210752,0.390910,0.080166,0.159505,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.955000,4612605.550000,3999,3905,112.810768,155.876892,160.199173,150.240524,134.918198,124.637199,123.620682,120.587624,119.876877,120.290100,122.670265,132.587616,151.223999,167.066940,179.546280,189.124786,188.769424,176.827271,153.934738,132.009109,121.488449,118.331429,111.827301,83.967789,66.785965,81.835556,95.860352,69.240517,32.934731,11.837208,10.166135,6.630592,5.630593,6.602494,8.091749,3.187610,0.261158,0.052066,0.191736,0.109091,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.155000,4612605.550000,4015,3905,109.850426,160.486801,162.676880,149.933060,136.230591,125.858696,124.114899,121.081841,121.784317,122.999191,123.495064,134.734726,152.404129,168.718201,181.280182,189.809113,190.891754,179.090103,155.461990,134.007462,121.627289,119.015724,113.263657,85.313232,68.759521,83.792580,98.329773,70.924812,34.891754,14.426465,10.296714,6.799187,7.893404,7.593403,7.290923,2.172734,0.694217,0.174381,0.142149,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.154546,0.000000 -601550.155000,4612605.550000,4040,3905,116.776054,163.974396,161.602478,149.949585,137.916534,126.585968,125.561165,122.528107,122.858688,123.329765,124.610756,135.453720,153.891739,168.891739,182.032257,190.949600,191.073578,179.776047,156.255371,134.346298,123.776047,120.974388,114.809105,86.883492,68.974396,84.057045,98.230591,73.800842,34.685139,15.314069,10.437208,7.528941,10.485965,9.421503,8.940512,3.110753,1.787606,0.033058,0.127273,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612605.550000,4064,3905,118.145462,155.442978,159.905777,150.484314,137.682648,128.327271,125.426453,122.145462,122.418190,122.459511,123.980171,135.715698,153.748779,169.492554,181.558655,189.277664,190.583450,179.930557,154.922318,133.500824,122.723969,120.021492,114.872742,85.633080,68.864487,84.252914,98.368607,72.128944,32.914070,14.458695,10.442995,7.363650,6.696709,7.028113,7.439682,3.657033,0.613225,0.118182,0.038843,0.037190,0.000000,0.080165,0.000000,0.000000,1.097521,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.555000,4612605.550000,4092,3905,95.309929,153.056198,159.461166,150.328934,135.965302,127.370262,124.957039,122.783485,122.180183,123.808281,124.709106,135.023148,153.386780,169.659515,181.957031,192.097534,190.791748,180.742157,156.626450,134.618195,123.461174,119.064476,114.800018,86.246292,69.692574,84.700844,98.585136,72.279350,35.229774,14.459523,10.436383,7.561996,7.233073,7.776048,9.018196,2.767775,0.942978,0.000000,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.112397,0.000000,0.000000 -601564.755000,4612605.550000,4113,3905,108.972748,156.716537,158.609100,151.600830,137.617371,127.212418,124.774399,122.452087,121.790924,122.377701,123.055389,135.319855,153.410751,169.840485,182.071915,191.047119,190.733063,178.476868,155.154556,134.295059,121.815720,119.675224,113.518196,84.815720,67.468613,83.823982,97.691750,72.617371,32.442165,12.478529,10.319854,6.751253,8.752910,6.647948,7.812411,3.933894,0.445456,0.069422,0.157852,0.102480,0.000000,0.235538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.955000,4612605.550000,4129,3905,109.504150,161.757858,163.534714,152.187607,139.071930,127.683479,124.617363,122.071907,123.559517,123.336372,124.311577,135.642151,153.757858,169.319839,181.658691,192.567780,191.328110,178.419022,156.014053,134.096710,122.815712,119.526459,113.427284,85.377693,67.526466,83.807449,98.625633,71.683487,32.823986,13.374399,10.311590,5.419847,7.025634,7.548775,8.016541,3.500007,0.124794,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.155000,4612605.550000,4155,3905,89.077705,151.166122,161.967789,148.744644,136.860336,125.620674,122.909927,122.000839,121.331421,122.463646,122.645470,134.174393,152.397537,168.942993,180.670258,190.323135,189.852066,178.306625,153.339676,132.728119,121.711586,118.033897,113.190926,83.703316,67.471916,82.356209,96.414062,72.695053,34.587624,13.111588,10.290102,7.495882,6.655386,7.214064,5.987617,2.396701,0.419836,0.572728,0.052066,0.148761,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.555000,4612605.550000,4182,3905,101.915718,158.890915,161.395050,150.907440,138.651245,127.271088,126.204971,123.287621,123.081009,124.709106,124.552078,135.609924,153.238022,169.717361,182.890915,191.171906,190.998352,179.791748,155.386780,134.692581,123.031418,120.023155,115.254562,85.642990,69.114067,84.659515,98.667786,71.957039,34.287624,13.404151,10.477706,7.088442,7.019850,7.676046,6.857865,4.238852,0.817357,0.458679,0.052893,0.000000,0.237190,0.000000,0.000000,0.000000,0.000000,0.000000,1.092562,0.000000,0.000000,0.000000 -601592.355000,4612605.550000,4251,3905,101.605804,159.324814,162.192581,154.027298,139.928116,128.704987,126.605804,123.812416,124.250435,125.200851,126.473579,137.118210,155.283493,171.812408,184.159515,193.721497,192.407440,181.961166,157.663666,135.531433,124.423988,120.539696,115.572746,86.614075,70.721512,84.035561,99.895058,72.952911,36.547951,14.365308,10.506631,6.165301,7.808278,8.133898,7.408279,3.419016,0.670249,0.495869,0.222315,0.000000,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.555000,4612605.550000,4272,3905,119.916557,157.933075,160.544647,151.635559,138.676880,128.552902,124.982674,123.346298,123.362831,124.420685,125.569450,135.792587,153.949600,169.304977,181.561157,191.883453,191.048752,179.999176,155.817368,135.098373,123.602501,118.676888,112.627289,85.304977,68.304977,84.751259,98.759521,73.842171,34.048779,13.466960,10.238862,6.203317,5.981831,6.707452,7.287616,2.534717,0.771903,0.072728,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.355000,4612605.550000,4316,3905,91.024818,164.239700,164.975235,151.512436,138.198364,129.380173,127.826454,124.942154,123.867775,125.165298,126.867775,138.024811,155.710770,172.024826,183.859543,193.826477,194.396729,182.173584,158.446320,136.049606,124.297531,120.495872,115.272736,86.454552,69.413246,84.768608,98.033066,75.338860,34.562000,13.511589,10.479358,5.313236,7.243818,6.815716,8.109931,1.845459,0.776035,0.375207,0.000000,0.000000,0.000000,0.731405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.755000,4612605.550000,4333,3905,114.712410,161.142151,163.761993,153.613235,141.059509,130.514053,127.249596,125.538849,125.100838,127.704140,126.819847,137.414886,155.621490,173.018188,186.456207,195.150421,194.935547,183.481003,158.836380,137.274384,125.092575,121.009926,116.109100,88.100838,70.241341,85.472748,100.257858,75.208282,34.299194,15.246301,10.555390,5.829763,7.786793,7.019848,9.528113,2.776041,1.374383,0.309092,0.106612,0.054546,0.000000,0.000000,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.355000,4612605.550000,4361,3905,115.794228,167.397537,165.620667,156.009109,141.017365,129.372742,127.794235,125.860344,125.488441,127.323151,128.066956,138.513229,157.009109,172.637207,185.794235,194.934723,194.835556,184.257034,159.025635,136.538025,125.843811,122.166130,116.554558,89.141335,70.620682,84.827286,101.281830,75.009102,34.918201,14.652911,10.595887,6.739683,9.420678,9.146294,9.296708,3.055380,0.804960,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.755000,4612605.550000,4398,3905,113.405800,162.695053,167.025635,154.769440,141.232239,129.744644,128.124802,126.372742,126.058693,128.009109,127.769432,139.422333,156.207458,172.752899,185.711578,194.447113,194.984314,183.190918,159.984314,137.587616,125.223976,120.513237,115.463646,87.604149,70.207458,84.480179,100.876869,75.719849,35.050430,14.111589,10.496714,6.380177,8.092578,7.587619,6.752079,2.157032,0.603308,0.586778,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.099174,0.000000,0.000000,0.000000 -601633.155000,4612605.550000,4455,3905,111.244644,163.707458,164.459518,154.864471,144.162003,130.054550,128.880997,127.434715,124.889259,129.352066,127.748764,139.062820,156.690918,172.930588,186.434723,194.112411,195.137207,182.426453,158.666122,136.252899,123.740501,120.591751,114.327286,86.798363,69.682663,84.170258,98.740509,74.409935,34.252914,13.573571,10.393408,4.044639,6.618197,7.112410,5.554556,2.928934,0.399174,0.141323,0.238844,0.127273,0.022315,0.181819,0.004959,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601635.955000,4612605.550000,4469,3905,122.675232,166.187622,166.609116,156.625641,142.220673,131.460342,130.733078,127.939690,126.278534,130.385971,128.931427,139.708267,157.071930,174.005814,185.625641,196.270279,195.138046,184.460358,159.584320,137.947937,126.228943,121.542992,116.063652,88.138039,70.857048,83.857048,99.452087,76.071930,35.171097,12.999192,10.551258,5.591746,7.770263,7.212411,7.219021,2.497526,0.575207,0.100827,0.056199,0.110744,0.010744,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.374380 -601644.155000,4612605.550000,4510,3905,132.075226,177.157867,168.794235,160.257034,145.934723,133.992569,130.959518,130.604141,128.562820,132.025635,130.571091,141.182663,159.133072,175.901672,188.628937,198.504974,198.042160,186.587616,161.273560,139.232239,128.761169,123.199188,118.918198,89.447121,71.306625,86.686790,102.785965,76.686790,37.587624,15.966959,10.810762,7.322326,8.966131,9.876048,7.553733,2.941331,0.971903,0.422315,0.456199,0.000000,0.000000,0.000000,0.023141,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601649.155000,4612605.550000,4535,3905,115.401672,176.881012,167.624802,160.583481,145.509109,131.897537,128.467789,128.236374,126.236374,130.757034,127.723976,139.889267,157.170258,175.723984,188.277695,196.319016,195.649597,183.476044,159.244644,137.500839,124.971916,122.128937,116.145470,87.550423,69.376877,86.178528,99.170258,75.831429,34.029774,14.414066,10.558697,3.590919,5.809931,6.065300,6.394226,2.942155,0.766117,0.157025,0.037190,0.000000,0.005785,0.000000,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.155000,4612605.550000,4550,3905,121.082664,176.404968,170.000015,159.371918,143.438034,130.223145,130.223145,127.140495,126.710747,128.628098,127.975204,138.909103,155.917374,172.975220,185.809937,195.917374,193.793411,181.462830,157.247955,135.107452,125.256195,121.487602,116.363647,85.975220,69.090927,84.388443,99.611580,74.851257,33.272747,13.268612,10.578530,6.829762,7.443815,7.579352,7.435550,2.031411,1.001655,0.262811,0.314877,0.018182,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.155000,4612605.550000,4565,3905,114.915718,165.485962,168.775208,154.940506,142.114059,131.155380,125.808281,123.709106,124.287621,124.791748,125.196709,135.808273,154.535538,169.907440,182.039673,190.502487,190.238022,177.510757,153.494217,133.965302,121.056213,119.262825,113.163651,84.527290,69.147125,81.783485,96.874397,72.271088,34.899197,16.337208,10.287622,9.604973,8.681831,7.716542,7.381003,3.608271,0.923143,0.000000,0.000000,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612605.550000,4586,3905,124.709114,177.271088,168.709106,158.072754,141.965317,129.204971,129.527298,125.841347,124.560349,126.287621,125.552078,136.907455,156.204987,171.370255,184.494217,192.312408,191.188431,177.618195,153.634735,133.419861,123.419846,119.957039,114.072739,85.419861,69.659523,83.618202,96.816544,72.345474,34.461174,14.183489,10.370267,8.819849,7.927284,8.583482,7.489269,3.671083,0.428927,0.371902,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.155000,4612605.550000,4615,3905,125.803322,173.290939,170.952087,154.770264,140.175232,129.125626,127.952072,125.183479,125.009926,125.340508,125.456207,136.133896,155.224823,171.084320,182.233063,191.728943,190.299179,177.381821,152.819855,132.828110,121.406624,119.952072,112.200012,84.621506,68.042992,84.150429,97.514069,71.737206,34.208286,12.652911,10.200020,8.451254,6.605795,7.223979,6.988441,2.064467,0.454547,0.360331,0.356199,0.000000,0.000000,0.000000,0.046281,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.155000,4612605.550000,4635,3905,116.843811,176.488449,172.463654,159.033890,142.571091,130.364471,130.678528,127.926460,126.504974,127.149597,126.661995,138.686783,156.670273,172.785965,184.777695,193.595901,192.670273,179.595886,155.463669,134.273560,123.422325,120.042160,113.736374,85.678535,69.455399,82.488449,97.405800,70.347954,33.893410,14.825638,10.339689,8.124805,8.597533,8.923154,9.048775,2.834717,0.141323,0.034711,0.050413,0.000000,0.000000,0.000000,0.000000,0.100827,0.000000,0.000000,0.000000,1.841323,0.000000,2.190909 -601673.155000,4612605.550000,4655,3905,103.642166,183.716537,169.295044,158.385956,143.063644,130.352905,130.898361,127.625641,126.361176,126.774399,125.989273,138.741333,157.261993,173.352905,185.030594,196.171097,191.509949,180.253723,154.526459,133.427292,122.964478,119.898361,114.427292,85.237206,69.187630,82.782661,97.650429,70.286804,34.187626,12.949605,10.402498,6.305798,6.463648,6.971912,8.266129,3.706619,0.396695,0.079339,0.052893,0.000000,0.000000,0.000000,0.066942,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.155000,4612605.550000,4670,3905,103.085144,172.680176,171.126465,159.688431,141.713242,131.870270,129.680191,127.820686,126.919861,128.828949,128.143005,140.109940,157.564468,175.184326,186.167786,196.291748,193.804138,180.969437,156.423996,134.291763,122.258698,122.721512,116.209114,86.572746,70.754570,84.399193,98.101677,71.787628,36.308285,14.198365,10.564483,9.019849,8.302493,7.623979,9.673569,2.842982,1.114052,0.387605,0.155373,0.000000,0.000000,0.000000,0.000000,0.036364,0.000000,1.333884,0.000000,0.000000,0.000000,0.000000 -601679.555000,4612605.550000,4687,3905,110.880188,183.342972,171.384293,159.392563,142.326447,132.648773,130.351242,128.739685,127.500015,129.309921,128.657043,140.962814,157.780991,174.665283,186.252060,196.747940,192.541321,180.409088,156.756195,136.921494,123.946297,120.673569,116.136383,86.144646,71.590935,85.062004,97.533073,72.764488,33.590931,14.037209,10.557871,7.968610,8.321500,8.553733,8.590924,5.395879,0.799176,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612605.550000,4715,3905,130.276047,179.168610,172.358704,161.672745,142.598373,133.119019,130.871078,128.623154,128.738861,130.490921,128.838028,140.276047,158.342163,174.383484,186.193405,195.862823,193.780182,180.309113,154.267792,134.391754,123.606621,122.433067,115.945465,87.945465,70.581841,84.623154,98.796707,72.937210,33.259525,13.670265,10.540516,10.874395,7.378524,8.615717,6.898360,3.124801,0.262811,0.110744,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612605.550000,4731,3905,135.600006,188.566940,173.112396,164.211563,145.327271,130.401657,132.178513,127.600014,128.897522,131.376862,127.971916,140.781815,157.029755,174.104126,186.773544,196.186768,194.914047,179.831406,155.409912,135.492569,123.393402,121.062820,115.963646,86.897522,70.600014,86.219841,97.657867,71.104149,33.211590,13.275224,10.542169,12.095056,7.657037,7.968607,8.384310,3.748768,0.154546,0.059504,0.000000,0.000000,0.000000,0.000000,0.063637,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.555000,4612605.550000,4747,3905,131.608276,182.327271,172.038010,161.608261,144.657867,131.905792,130.509109,128.856216,128.732239,132.740509,128.699188,140.360336,157.302475,173.988434,187.781815,196.633057,194.442978,179.798340,156.575211,136.418198,124.087616,122.054558,117.054558,86.393410,71.690933,85.814896,98.244644,72.252914,32.905804,13.381835,10.641341,10.785138,6.431417,7.770261,8.403319,3.631414,0.384299,0.125620,0.036364,0.000000,0.060331,0.000000,0.003306,0.117356,0.000000,0.000000,1.179339,0.000000,0.000000,0.000000 -601694.555000,4612605.550000,4762,3905,139.587616,194.347931,175.810745,165.025620,147.199173,133.000854,133.009109,129.529770,129.794235,134.455399,131.273575,142.199188,158.752884,177.364456,188.711563,199.628922,196.529755,181.174377,158.794205,137.232239,126.257050,122.951263,118.918205,88.273575,72.389275,89.257050,101.290100,72.174400,36.628948,14.168612,10.810762,11.937207,8.295053,10.693401,8.826461,2.973561,1.080994,0.509919,0.164463,0.000000,0.000000,0.000000,0.000000,0.261984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.755000,4612605.550000,4778,3905,133.290924,193.514053,176.530594,165.861160,147.704147,133.464478,133.481003,129.927277,130.902496,133.538849,128.472733,140.836380,158.109100,175.629761,187.646286,198.249603,195.414886,179.770264,157.596710,136.175217,125.786789,121.522324,117.200012,86.629761,71.084305,87.390091,98.894226,71.811577,33.704155,13.970265,10.654564,12.789270,8.041333,9.723155,6.934724,2.901660,1.274383,0.125620,0.160331,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.755000,4612605.550000,4798,3905,140.044647,197.862808,173.895874,161.383484,144.466141,131.515717,130.069443,126.771904,127.912415,132.242996,127.606613,137.962006,155.466141,173.391739,185.738846,196.152069,192.342148,176.003311,152.978531,133.689270,122.821487,119.771904,114.036369,86.011574,69.920677,84.358681,95.846283,67.656219,29.300848,11.037208,10.366961,7.908278,3.904140,5.566950,4.798358,2.704965,0.062810,0.000000,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612605.550000,4813,3905,157.431412,198.092560,180.472733,168.125626,149.034714,134.819855,136.596710,132.728943,132.299194,137.571915,131.762009,142.836380,159.943817,177.439682,190.183472,200.604950,197.514038,182.373566,160.100830,138.092575,126.505806,123.654556,118.018188,88.704140,73.084312,91.257858,100.960342,70.299187,35.357044,15.909936,10.728945,13.175223,8.892575,7.504145,8.379354,4.839680,0.577688,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.955000,4612605.550000,4829,3905,147.214890,193.735535,180.347107,170.388428,149.421494,135.950424,135.694229,132.388443,132.504150,138.223145,132.504150,143.669418,159.809921,178.305786,189.727280,200.347107,199.074387,180.628098,159.388428,138.049591,126.123985,124.214890,119.727287,89.975227,74.314072,89.082672,100.404984,71.471100,34.231426,14.889275,10.884316,12.184314,8.386790,7.532245,9.076873,4.169430,0.220662,0.356199,0.797522,0.065289,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.555000,4612605.550000,4847,3905,115.337204,160.857864,167.816528,157.461166,142.419846,131.915710,128.866135,126.651253,126.585136,128.585144,129.006622,139.833069,158.386780,174.229752,186.428101,194.742157,194.452896,181.882645,158.229752,137.279343,126.138855,122.709106,117.345467,88.808281,72.882660,87.147125,100.229767,75.485962,36.800014,15.025639,10.667788,6.980178,8.523981,8.109103,7.530594,3.108269,0.674382,0.133885,0.110744,0.000000,0.000000,0.000000,0.079339,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.955000,4612605.550000,4864,3905,108.710762,164.727280,165.586777,157.851257,143.132248,132.595047,129.099182,127.834717,126.280998,126.851250,128.933899,140.140518,157.859528,173.793396,187.049591,194.644623,192.851242,181.842972,156.909103,135.504150,125.148766,121.710754,116.090919,88.454559,72.008278,86.793404,99.479355,74.256218,35.966961,13.860350,10.553739,5.571914,7.622328,8.504147,9.511585,5.220670,0.410745,0.147935,0.352894,0.135537,0.000000,0.000000,0.041322,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.955000,4612605.550000,4879,3905,107.172737,161.990906,164.098343,155.354553,140.561157,130.453735,128.842163,125.974388,126.073563,126.742989,127.619019,138.643799,157.445465,174.412399,185.081818,193.577682,192.693390,180.585953,157.032242,135.949585,126.065300,121.652077,116.536377,88.329765,70.015717,86.263649,99.271912,72.131416,35.891762,13.787621,10.594234,6.709104,8.159517,8.110756,10.241339,2.959511,0.672729,0.137191,0.105785,0.000000,0.000000,0.000000,0.000000,0.209092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.555000,4612605.550000,4897,3905,96.284309,157.689255,165.342148,155.218185,138.730591,129.193405,127.127281,124.028107,124.383484,124.697533,125.532242,137.416534,156.598343,171.581818,183.780182,192.928925,191.755371,178.647949,156.019836,132.722321,121.995056,119.548775,114.672737,85.871086,70.242996,84.548775,97.433067,69.780182,35.069447,13.100018,10.424814,6.805798,6.353730,8.059517,8.531419,2.451246,0.219010,0.457853,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.555000,4612605.550000,4927,3905,107.852081,166.058685,166.521500,158.967789,143.257034,134.157867,131.967789,129.083481,128.744629,130.661987,131.025635,142.926453,160.257034,175.967789,188.290100,197.918198,195.885132,183.976044,158.984329,138.686783,126.587616,123.240509,118.554558,89.695053,73.496704,88.942986,103.100014,75.108276,37.860352,16.081835,10.777704,6.790921,8.171914,9.347947,8.096708,3.676868,0.617357,0.123141,0.256199,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.555000,4612605.550000,4942,3905,106.397537,163.513214,163.909912,156.157867,141.678543,130.918198,129.422333,127.967781,126.819023,128.422333,129.819016,140.785980,159.149597,174.918182,187.273544,195.628922,194.504959,183.141312,158.331406,137.967804,126.116539,122.248772,118.190926,89.761169,73.438858,89.240509,98.868607,73.422325,35.265316,14.236382,10.744646,6.549599,9.295882,7.257864,9.813240,3.498356,0.554548,0.130579,0.249588,0.048760,0.095868,0.000000,0.047934,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.355000,4612605.550000,4966,3905,107.921494,162.954559,168.533081,156.235550,141.409103,131.921494,130.400833,127.954552,127.921494,128.797531,129.326462,140.409103,158.648773,174.169434,185.822327,195.235550,194.111588,182.004150,157.458694,137.706635,125.095047,122.607445,117.409096,89.847115,73.252090,88.119843,100.400833,72.425644,36.062004,13.985970,10.673573,5.273565,8.807453,6.814062,7.848774,4.923979,0.214877,0.368595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601739.555000,4612605.550000,4987,3905,116.609108,163.034729,167.208298,156.737213,144.051254,133.249603,129.357040,127.993408,129.687622,129.952087,129.877701,140.902496,159.166962,174.489288,186.943832,195.968597,195.348770,182.745468,159.166962,137.026459,126.935555,122.464478,118.745476,89.323982,72.092583,87.919029,100.762001,73.266136,35.142174,15.184315,10.795060,7.433897,7.553731,8.881004,8.457865,3.846289,1.081821,0.164464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.155000,4612605.550000,5030,3905,104.596703,162.629761,169.720673,154.993393,144.166946,134.596710,131.018188,129.456207,127.753731,129.340500,129.571915,140.919022,158.704147,175.034714,187.340500,194.315720,194.481003,181.993393,159.092575,135.770264,125.811577,122.604965,118.290916,90.191742,71.762001,87.241333,98.844635,73.257866,35.976883,13.330596,10.753737,6.872739,7.381830,7.074393,6.153731,4.011577,0.614051,0.088430,0.268596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.155000,4612605.550000,5050,3905,93.788452,157.393402,164.600006,156.963654,144.335556,136.773560,131.947113,129.021500,129.004974,130.302490,131.542160,141.195053,159.492569,174.740509,187.699188,195.748779,195.302490,184.170258,160.104141,138.930588,128.418198,125.699188,120.327286,91.277702,75.401672,89.897537,101.798363,74.434723,36.790104,15.690100,10.938862,7.571087,8.181831,8.601666,9.559518,5.037199,0.444630,0.162811,0.081818,0.000000,0.000000,0.000000,0.053719,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.555000,4612605.550000,5067,3905,99.818199,165.661179,164.371918,154.694229,141.082657,129.892563,126.380173,126.198357,126.305794,127.669426,128.033066,137.603317,156.809937,172.867783,185.206604,195.140503,193.479340,180.760345,156.355392,135.504150,124.851250,120.553726,116.727287,87.479355,70.016556,85.504150,99.421501,71.570274,32.256218,11.801671,10.611589,4.518191,7.002492,5.694226,6.648772,1.881823,0.188430,0.115703,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.155000,4612605.550000,5090,3905,99.710762,161.380188,170.520676,159.338852,145.281006,136.553741,133.454559,131.322327,130.793411,132.710754,134.090927,144.545471,162.809937,177.421509,189.933884,199.537186,197.314056,186.661163,161.628113,140.446304,129.264481,124.380180,121.363655,93.884315,75.809937,88.752083,103.148773,76.487617,38.140514,14.223160,11.033077,6.267782,9.878526,8.020675,8.186791,3.402487,0.269422,0.052066,0.230579,0.000000,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601764.555000,4612605.550000,5112,3905,139.606628,166.457840,168.680984,159.895859,145.656204,134.664490,132.085968,131.532257,131.722336,132.119034,132.887619,143.970261,161.738831,178.548752,190.680984,198.127258,197.383453,186.234695,162.573547,140.366959,128.862823,124.333900,119.945473,92.912415,74.722336,90.416550,103.474396,76.986794,36.540516,15.349605,10.904152,6.931417,8.823981,8.679353,7.571087,3.361165,0.269423,0.199174,0.000000,0.022314,0.058678,0.084298,0.000000,0.509092,0.000000,0.000000,0.000000,0.940496,0.000000,0.000000 -601769.555000,4612605.550000,5137,3905,110.458702,164.367767,169.268616,159.442154,144.243805,136.169434,130.541336,130.367783,130.838852,132.590927,133.194229,142.632233,161.987610,177.533051,189.450409,198.012390,196.871902,185.227280,161.665283,138.780991,127.367783,123.731422,118.863655,91.533073,73.921501,89.524811,101.690102,75.260345,35.781013,13.678531,10.805805,4.776044,7.269435,5.860343,7.286788,3.538025,0.604960,0.057852,0.000000,0.116529,0.000000,0.000000,0.003306,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.155000,4612605.550000,5155,3905,105.678528,162.852081,166.017365,158.207458,143.653732,133.488449,131.901672,129.976059,129.422333,131.926468,131.802505,142.926453,159.223984,175.298355,188.306625,196.802490,197.042160,185.827286,160.711578,139.166122,127.364479,123.529762,118.827286,91.752914,74.257050,87.670258,102.653732,75.265312,35.538033,14.246299,10.802498,5.614061,6.153733,6.689270,8.597533,3.642157,0.839671,0.419836,0.020661,0.028099,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.155000,4612605.550000,5195,3905,107.281830,161.188446,167.072754,158.089279,145.345474,136.213226,134.659515,133.651260,133.692581,134.932251,135.667770,146.428101,164.477707,180.320679,193.750443,202.006638,200.948776,189.841339,165.163666,142.981827,133.006622,128.609924,122.618202,93.808289,74.585144,90.072746,102.775230,77.411591,38.047951,14.500019,11.147127,4.233068,6.876046,5.974391,7.828113,1.757030,0.270248,0.695869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.955000,4612605.550000,5209,3905,106.376869,167.988449,170.533890,160.145462,146.467789,133.228119,132.467789,131.930588,130.732239,133.054565,132.533890,142.327286,159.476044,176.699188,188.922333,197.269440,196.864471,187.120667,161.633072,139.285965,127.261169,124.327286,119.418198,91.426460,73.228111,89.219849,101.120674,73.690926,35.484318,12.254562,10.856217,4.616538,7.881007,5.662821,6.793402,3.416534,0.044629,0.167769,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.955000,4612605.550000,5224,3905,109.464478,166.235535,165.086777,159.987610,145.714874,135.028946,131.822327,130.590912,129.913239,132.756210,132.524811,142.747940,159.772720,176.681824,188.855377,197.409088,197.681824,186.417358,160.723145,139.756195,128.574387,124.714882,119.136375,91.351250,75.004158,89.466965,102.417374,76.632248,36.698372,13.530597,10.830598,4.070257,7.085963,6.491748,7.787616,2.763643,0.709093,0.365290,0.150414,0.000000,0.067769,0.480992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.955000,4612605.550000,5239,3905,107.602493,163.623978,165.500015,159.789276,146.252075,136.252075,133.061996,130.210754,131.392578,135.822327,134.913239,145.533081,162.061996,179.144638,191.681824,200.541321,199.309921,188.268600,163.442169,140.913239,129.252075,126.185966,119.954559,93.177704,76.243820,88.987617,100.938034,76.871918,34.698368,15.060349,10.904978,6.238026,6.618196,9.213238,9.824808,3.004138,0.722315,0.365290,0.178513,0.262811,0.347108,0.028926,0.009918,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.555000,4612605.550000,5252,3905,115.563644,172.902466,172.340485,163.447937,149.175201,137.431412,134.745468,132.704147,131.629761,134.580170,134.803314,144.340485,162.414886,178.910736,190.423141,200.323959,198.505783,188.183472,162.894226,141.547104,131.241333,126.299187,122.018188,93.629761,75.100845,90.009926,103.216537,78.125641,38.373573,15.319853,11.092580,5.195053,6.659521,7.701667,7.679354,2.958686,0.669423,0.136364,0.068595,0.459505,0.053719,0.000000,0.015703,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.955000,4612605.550000,5269,3905,135.534714,178.157043,176.371918,166.619858,150.338852,136.760345,137.520676,135.942169,133.198349,136.471085,136.966965,145.851257,162.595062,180.702499,193.066116,201.297516,201.429749,190.776855,164.958694,142.785141,132.281006,128.884308,123.545464,95.446297,76.917366,91.570267,106.123985,79.719017,37.677704,18.193407,11.231424,6.545465,10.119025,9.232246,10.347123,3.659511,0.839671,0.161158,0.051240,0.027274,0.009091,0.000000,0.004959,0.000000,6.645455,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.555000,4612605.550000,5287,3905,116.119026,177.970245,174.110748,163.107452,148.264481,134.247940,131.181824,131.300827,129.573563,132.317368,131.871078,142.251236,159.986786,177.168594,188.722321,198.771912,197.528946,186.512405,163.429764,140.388443,129.198364,125.909103,120.545471,92.256218,74.454559,90.586792,102.586792,77.305801,37.322334,14.905802,10.958697,5.257036,8.415717,8.770264,8.189270,3.103314,1.026449,0.296695,0.000000,0.042149,0.023141,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,1.409917,0.000000 -601803.755000,4612605.550000,5308,3905,131.508270,178.437195,169.255371,160.230576,146.114883,134.734711,132.875214,130.627274,129.395874,132.643799,132.643799,142.015701,158.966125,176.304962,189.296692,197.280167,196.900009,186.792572,160.850418,139.106613,127.982651,124.015717,118.445465,90.957863,73.478531,88.833900,101.693398,74.709938,34.866966,13.506630,10.767787,4.074390,6.765303,6.071087,6.416540,2.974385,0.820663,0.123967,0.071901,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,2.674381,0.000000,0.000000,0.000000,0.000000 -601809.555000,4612605.550000,5337,3905,121.082672,178.585144,170.841339,161.965317,148.345474,135.692581,134.411591,133.180191,134.204987,138.023163,137.428116,149.370270,165.436386,182.353729,194.568604,204.518997,202.502487,189.419846,166.725647,143.461182,132.254562,126.585144,121.345474,93.122337,75.758698,90.370270,102.874405,78.808289,36.601673,15.780184,11.031425,5.890092,7.039680,6.860343,8.161997,3.113229,0.741324,0.472728,0.314877,0.149587,0.119835,0.373554,0.000000,0.088430,0.000000,0.000000,2.327273,0.000000,0.000000,0.000000 -601814.955000,4612605.550000,5364,3905,116.797546,173.979355,177.987625,165.913239,147.607452,136.623978,136.293411,134.210754,132.409103,133.623978,133.061996,144.772751,163.458694,177.781006,189.632248,199.103317,196.929764,183.508286,160.400848,137.979355,129.301666,125.202492,118.681831,90.739693,74.921509,88.252083,101.260345,73.640518,35.400848,14.778530,10.789274,8.916543,8.791750,10.866130,11.452080,2.700008,1.293391,0.903308,0.304133,0.465290,0.052893,0.092562,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.555000,4612605.550000,5377,3905,125.428940,173.521484,174.637192,160.571075,144.686783,132.471909,131.951248,128.389267,128.240509,128.819016,129.992569,140.670258,159.926437,175.298340,185.736359,195.265289,193.752884,180.769424,155.885132,135.719849,124.554558,121.496704,116.190926,87.480179,71.190926,86.207451,97.777702,69.942986,32.683487,13.331422,10.562829,10.453732,9.241336,10.169435,9.467784,4.814057,2.301656,1.128101,1.086778,0.791736,0.435538,0.026446,0.000000,0.292562,0.000000,0.000000,0.842149,0.000000,1.314876,0.000000 -601827.155000,4612605.550000,5425,3905,113.498352,180.754547,175.093399,163.440506,146.936371,133.820679,133.076874,130.564484,129.994232,132.151260,130.886795,142.093399,159.655380,176.101654,187.118195,195.655380,194.919846,181.952896,157.399185,137.878525,126.399185,122.886795,118.390923,89.126457,73.192574,86.283485,99.820679,72.614067,34.614067,15.686795,10.762830,6.319847,7.996710,7.042986,9.001668,3.385131,0.317356,0.189257,0.185125,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.355000,4612605.550000,5441,3905,117.642990,178.533051,174.962814,161.962814,145.871902,133.756210,132.904968,129.921494,129.417358,130.549591,129.384308,140.334717,159.648758,174.855377,186.574387,195.714874,194.417358,181.020660,158.260330,136.681824,125.549606,122.392578,116.772743,87.971092,72.971092,85.929771,98.516548,71.714890,34.202499,13.000844,10.615722,8.696709,6.890097,6.720674,8.479351,4.675215,0.998349,0.418183,0.462811,0.000000,0.176860,0.090083,0.000000,0.051240,0.000000,0.000000,0.000000,1.496695,0.000000,0.000000 -601835.555000,4612605.550000,5467,3905,117.285973,185.514877,173.465302,161.969421,144.556198,131.630600,132.457047,129.655396,128.539688,129.870270,129.374405,140.308273,158.490082,174.217361,185.647110,196.663635,194.647110,180.630585,157.514877,136.746292,127.151260,124.333084,117.845474,88.952904,73.870270,86.605804,99.151253,72.704979,34.118202,14.774400,10.713243,10.561998,7.322328,8.238029,8.495882,3.720669,0.699175,0.605786,0.376860,0.228099,0.552067,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.555000,4612605.550000,5497,3905,122.928116,192.333084,176.341339,165.382660,148.134735,135.192581,135.465302,130.870270,130.936386,134.052094,131.994232,143.490112,160.275223,176.622330,189.134735,198.465317,196.440521,182.440521,159.118210,138.316559,126.663651,124.870262,119.118195,90.159515,73.762833,87.688446,100.498367,73.349609,35.671921,14.577704,10.828945,9.729768,8.060344,8.557865,9.795055,5.525629,1.185126,0.400828,0.532232,0.000000,0.000000,0.291736,0.000000,0.033884,0.000000,1.152066,0.000000,0.000000,0.000000,0.000000 -601845.755000,4612605.550000,5518,3905,118.948784,180.947113,171.847961,159.550446,146.905807,134.674408,132.633072,130.550430,129.492584,132.368622,130.038040,141.385147,158.897552,176.153748,186.922333,197.509109,195.864471,181.087616,158.137222,139.062836,128.219864,124.624825,119.872749,90.806625,74.790092,88.790092,100.616547,73.409927,34.153740,14.186795,10.897540,9.019847,7.243814,9.116541,8.105799,3.561166,0.668597,0.381819,0.204133,0.000000,0.103306,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.755000,4612605.550000,5538,3905,132.680176,196.524811,173.838852,165.260345,146.276871,133.202499,132.880188,130.318192,130.095062,132.880188,129.673569,140.714890,158.268616,176.309937,187.888443,197.714890,195.235550,180.185974,157.004150,137.309937,126.342995,122.871918,117.227287,88.632248,71.392578,85.756218,97.450432,70.995880,31.177706,11.734728,10.657044,11.477701,6.717369,8.325633,7.501666,3.019015,0.549588,0.142976,0.643804,0.288430,0.000000,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.955000,4612605.550000,5569,3905,135.659515,191.353729,179.494217,167.948761,152.923981,137.923981,135.957031,133.742157,132.940506,137.221497,133.568604,144.923981,161.766953,179.147110,190.824799,200.609924,197.519012,182.758682,159.552078,139.147110,128.428116,126.072739,118.981834,90.171913,74.791756,89.221504,99.378525,73.130600,35.246304,14.206631,10.816548,11.329768,8.320675,9.003320,9.403320,4.201663,1.024796,0.164463,0.047108,0.071902,0.000000,0.000000,0.070248,0.067769,0.000000,2.557025,0.000000,0.000000,0.000000,0.000000 -601863.755000,4612605.550000,5608,3905,155.192566,197.743820,176.575226,169.231415,152.740509,137.591751,137.062820,135.624802,135.396698,140.363647,135.809937,146.264481,162.611588,180.595062,193.165298,203.462814,199.760330,183.140518,161.115723,140.669434,128.057861,125.214890,119.636383,89.966957,74.462837,91.314064,99.429771,70.793411,34.723984,15.040514,10.876052,13.292580,7.625634,7.912409,8.995882,5.066950,0.459506,0.644630,0.860333,0.696695,0.547108,0.015703,0.000000,0.000000,0.000000,1.462810,0.552066,1.072727,0.000000,0.000000 -601875.355000,4612605.550000,5666,3905,111.329765,165.359543,169.814087,159.376068,144.243835,133.285126,132.037201,128.582657,128.210754,129.541336,129.995880,141.062012,159.351273,174.772751,187.070267,195.475235,195.202515,182.417374,157.789276,138.020676,126.070259,122.962814,116.772736,89.979347,73.756218,88.260338,99.342987,73.566139,33.326466,13.815722,10.615723,7.270261,7.228114,8.657865,7.815717,2.355379,0.581820,0.181819,0.052893,0.059504,0.000000,0.000000,0.000000,0.108265,0.000000,1.238017,0.000000,0.000000,0.000000,0.000000 -601893.755000,4612605.550000,5758,3905,109.252083,165.301651,167.706635,156.723160,143.318176,134.235550,130.681824,128.731400,128.533081,129.739685,131.756210,142.657028,160.772751,177.177704,188.673569,196.995880,196.268616,184.318192,160.037201,138.177689,127.739677,123.880173,118.136383,89.904976,74.268608,89.194229,100.814064,74.590927,34.747955,13.609109,10.739689,6.723978,7.357039,8.054559,7.531416,4.795875,0.327274,0.399174,0.390083,0.000000,0.061984,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601921.955000,4612605.550000,5899,3905,113.959526,163.744644,173.868607,162.381012,148.141342,138.009109,134.604141,132.819016,131.761169,133.711578,133.967789,144.496704,162.538025,179.223984,191.463654,200.422333,200.257034,187.612411,162.810760,142.240509,130.124802,126.942986,121.009102,93.562828,75.496712,91.347954,103.116539,76.455391,37.571095,16.257044,11.000845,6.316542,7.326462,8.561172,7.891749,1.869429,0.424795,0.000000,0.176034,0.071901,0.003306,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,1.984298 -601956.955000,4612605.550000,6074,3905,116.316544,174.060349,170.291763,163.473572,151.184326,137.977707,135.936386,134.936371,134.076874,136.779358,136.547958,147.564484,165.547958,181.101669,195.151260,202.407455,203.762833,191.597549,167.225647,146.060349,133.184311,129.936371,123.663651,95.795883,77.151253,93.002495,105.994232,78.291748,36.795887,16.057043,11.242167,5.257860,7.714064,7.676048,8.165303,3.835546,0.901655,0.042975,0.137190,0.080166,0.016529,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601972.155000,4612605.550000,6150,3905,129.623169,180.656204,172.714066,165.962006,151.986801,139.689255,139.193390,135.838013,135.052902,139.284302,137.862808,148.507462,166.532257,183.052902,196.424789,206.152069,206.011566,193.135544,169.771927,147.871094,136.408264,129.953735,124.945465,97.069443,79.383492,94.846298,107.383484,80.490929,38.590103,15.818200,11.358697,6.355382,8.792579,8.226462,8.755386,2.929758,0.961985,0.067769,0.190083,0.016529,0.026447,0.000000,0.000000,0.140496,0.000000,1.222314,1.094215,0.000000,0.000000,0.000000 -601979.155000,4612605.550000,6185,3905,117.831421,184.657852,176.294205,163.608261,149.872726,137.277695,135.864471,132.600006,132.029770,135.600006,134.583481,145.095886,163.674377,181.922318,193.599991,202.360321,202.467758,190.285950,165.459503,143.583481,132.765305,128.699188,123.963646,94.525635,77.418198,92.930588,104.889267,78.368607,36.914070,13.805801,11.269440,5.576043,7.411585,6.955386,7.618196,3.480999,0.643803,0.094215,0.350414,0.013223,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601982.755000,4612605.550000,6203,3905,111.188446,177.171906,179.403305,163.899185,146.337219,135.345474,134.981827,130.444641,130.494232,131.609924,132.419846,144.064484,162.775208,179.180176,191.411575,202.155380,202.163635,186.676041,163.122314,140.733902,130.932251,127.362000,122.618195,93.444641,77.585136,92.692574,106.461174,75.659515,38.056217,13.469438,11.147125,10.185139,8.603321,8.322330,10.330594,4.738851,1.154548,0.340496,0.176860,0.000000,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601986.955000,4612605.550000,6224,3905,106.857033,182.228943,179.319839,164.584305,148.815720,136.733063,136.038849,131.989273,132.146286,133.898361,133.476868,145.146286,163.162827,180.419022,192.030594,203.328110,203.584305,188.369431,164.344635,142.237198,131.154556,128.509933,123.154556,93.493401,77.129768,92.493401,104.733070,76.171089,39.328121,14.741340,11.195887,9.823981,9.895884,10.886791,11.975222,4.428108,1.066118,0.589257,0.672729,0.055372,0.015703,0.000000,0.287604,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601990.155000,4612605.550000,6240,3905,111.391747,178.604980,176.621521,163.290939,147.447952,134.530594,134.819855,130.406631,129.026459,130.257874,130.125641,142.935562,160.919037,178.538864,190.117386,202.307465,200.200027,186.704163,161.588455,139.629776,130.414886,126.431419,121.927292,91.762001,76.720680,91.819855,105.332253,75.935555,37.125637,14.067786,11.084316,10.879354,9.100015,10.761171,9.431418,4.181827,1.504135,0.480992,0.257851,0.000000,0.076033,0.084298,0.044628,0.153719,0.000000,0.000000,1.183471,0.000000,0.000000,0.000000 -601993.555000,4612605.550000,6257,3905,121.700012,182.662003,180.323151,163.719849,147.521500,137.298355,136.794235,131.645462,130.942993,132.959518,132.612411,144.695053,163.207458,179.579346,191.777695,201.612411,201.281830,187.529770,163.876877,141.190918,130.290100,128.521500,122.100014,92.860344,77.033897,92.017365,104.058693,76.984314,36.670265,15.406630,11.100019,8.316542,7.524806,7.023979,8.675222,3.056205,1.073556,0.532233,0.094215,0.000000,0.065289,0.000000,0.050414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601996.555000,4612605.550000,6272,3905,108.204971,185.604950,180.034698,164.464462,148.009933,134.877701,134.406616,130.894226,130.373566,130.993408,131.034714,143.340500,161.357025,177.571899,189.952057,201.447922,200.340485,186.034698,162.166931,140.117371,129.439682,127.621506,121.927292,92.200020,75.935555,90.414894,103.819855,75.671089,36.166962,13.531423,11.084316,9.475222,7.919848,7.986791,8.189268,4.132239,0.429753,0.142976,0.000000,0.000000,0.353720,0.000000,0.070248,0.000000,1.484298,0.000000,0.000000,0.000000,0.000000,0.000000 -602000.555000,4612605.550000,6292,3905,112.795059,186.943832,181.869446,164.927277,149.398361,135.786804,134.745468,131.257858,132.067780,133.125641,131.274399,142.795044,161.629761,178.621521,191.481018,202.547134,200.720688,185.786804,163.381821,139.191742,129.067780,126.233078,121.563652,92.836380,75.885971,90.745476,103.447952,75.042992,36.117374,13.145473,11.051259,8.740509,7.385138,9.234726,7.848773,2.864469,0.947936,0.366117,0.000000,0.000000,0.000000,0.000000,0.075207,0.143802,0.000000,0.000000,0.000000,0.919835,0.000000,0.000000 -602003.955000,4612605.550000,6309,3905,114.695885,186.241333,178.869431,165.522324,147.778519,134.315720,133.919022,131.332245,130.910751,132.224808,131.877701,143.894226,162.704147,179.662827,191.423157,202.464462,201.753723,186.786789,163.092575,141.133896,130.638031,128.307449,123.836372,92.844635,77.497528,92.588440,103.728935,76.051254,36.018200,15.565308,11.257869,11.461174,8.062000,10.080181,9.513237,3.815710,0.436365,0.097521,0.024794,0.000000,0.000000,0.000000,0.115703,0.199174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.755000,4612605.550000,6323,3905,101.845467,189.813248,181.259521,168.061172,149.755386,136.234726,137.780182,133.796707,134.036362,136.681015,134.854553,147.069443,165.639694,181.606628,194.937210,204.433075,203.557037,188.788452,165.433075,142.689270,131.028107,127.375221,122.945457,92.565300,76.697533,91.672737,105.267769,75.052910,36.317375,15.342994,11.176879,8.466130,7.209105,8.147122,9.633900,3.906620,0.689258,0.323968,0.277687,0.168595,0.341323,0.233884,0.121488,0.121488,0.000000,0.000000,1.331405,0.000000,0.000000,0.000000 -602009.555000,4612605.550000,6337,3905,117.913239,184.739685,180.574402,167.037201,149.756210,136.896713,136.194229,131.524811,130.483490,134.847122,132.276871,144.954559,163.855392,181.318192,192.904968,203.103317,202.623978,187.169434,164.781006,142.351257,131.028946,127.128113,122.863655,92.318199,78.698364,94.574394,105.020676,76.384315,36.714897,14.240514,11.169440,11.389270,8.799189,10.695057,10.597537,4.466950,1.236367,0.805787,0.111570,0.000000,0.007438,0.231405,0.343803,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.355000,4612605.550000,6351,3905,113.241348,184.456207,178.150421,166.233063,149.646286,135.381851,136.563644,132.439697,132.563660,134.588455,132.489288,144.795044,162.877701,179.216537,191.464478,203.646286,201.001663,188.183487,163.993393,142.142151,131.249619,127.910767,123.654572,95.166969,78.919037,93.208290,104.530602,76.084320,38.067787,15.992580,11.241341,11.484312,9.693404,9.684312,10.337205,4.126453,0.552069,0.044629,0.237191,0.112397,0.066116,0.009091,0.079339,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.955000,4612605.550000,6369,3905,114.003326,165.077682,172.251236,162.606613,147.391739,134.185135,132.606628,129.871078,128.358688,131.160339,129.218201,140.474380,156.251236,173.342148,185.168594,195.565292,194.565292,182.400009,157.995041,136.507462,128.499191,123.978531,119.218201,92.226463,76.722336,90.821510,100.962006,74.540512,35.681007,13.751256,10.838035,5.502491,7.779352,8.137202,8.534724,2.284301,0.592564,0.237192,0.439670,0.035537,0.009918,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,1.167769,0.000000,0.000000 -602018.755000,4612605.550000,6383,3905,114.557045,172.763657,172.350433,162.862808,146.887619,132.267776,131.755386,129.119034,126.383492,130.242981,129.507462,139.408279,155.986786,172.366943,183.623154,195.441330,193.557022,181.928940,158.862808,137.085968,126.829773,122.771919,119.490929,91.846298,75.738853,89.284317,102.879356,75.085960,35.914070,14.679355,10.862829,7.621499,8.631419,7.910757,8.195054,4.590915,0.487604,0.752894,0.856199,0.664463,0.752066,0.132232,0.394215,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602022.555000,4612605.550000,6402,3905,108.400002,170.110748,172.672729,160.102478,143.705795,132.614883,131.945465,129.606613,127.160332,129.705795,128.598343,139.251236,155.507446,172.251236,183.548767,194.705795,193.813232,180.730576,157.829758,136.557022,126.218185,122.400002,117.036369,90.358681,75.928940,89.961990,100.747108,74.970268,34.400021,13.956215,10.639688,7.116541,6.737206,6.976871,7.461171,2.185128,0.360331,0.317356,0.052893,0.088430,0.000000,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,1.341322,0.000000,0.000000 -602028.955000,4612605.550000,6434,3905,102.623985,166.106613,166.470245,159.519836,145.048767,132.726456,130.552902,127.313232,125.007446,127.916542,127.346291,137.528107,155.057022,171.040497,182.726456,193.420670,192.379349,179.040497,155.461990,135.304962,125.040497,121.809097,116.081818,90.668610,76.247124,91.007446,101.511581,76.313240,37.023991,14.176877,10.552911,5.883482,8.101668,6.909928,8.430593,2.313227,0.871076,0.592563,0.421488,0.209918,0.000000,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.414876,0.000000 -602032.755000,4612605.550000,6453,3905,102.607452,164.847122,165.863647,160.863647,145.309937,132.673569,130.400848,126.962830,126.450432,128.632248,127.053734,138.376053,154.202499,169.665298,182.425613,192.557846,191.698349,179.632233,156.954559,136.665298,125.070267,121.458694,117.136383,89.599190,74.706627,88.632248,100.648773,75.103325,34.433903,13.904977,10.648780,6.092572,8.190097,7.440507,8.109104,2.406616,0.758680,0.087604,0.167769,0.000000,0.000000,0.230579,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.955000,4612605.550000,6469,3905,100.502495,162.816559,171.064484,158.279358,143.998367,132.560349,130.659515,126.502495,126.882660,129.023148,128.271088,137.659531,154.758698,171.039688,183.262833,194.593399,192.502487,179.527298,156.676056,136.419846,126.130592,121.271088,117.163651,89.618195,75.618195,90.659515,101.204971,75.824806,34.601673,15.352084,10.651258,5.953729,7.681832,7.550426,8.062822,2.777690,0.073554,0.545456,0.290083,0.000000,0.000000,0.000000,1.083472,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.955000,4612605.550000,6484,3905,91.736382,161.389282,170.232254,161.356232,144.257050,132.108276,128.009109,125.100021,125.042160,126.455391,127.009109,136.959534,153.703339,169.116562,181.215714,192.769440,191.728119,179.422348,156.323166,134.827286,123.273575,120.463654,116.281837,89.529770,74.108284,87.662003,100.521507,75.546303,36.430595,13.389273,10.571094,4.971910,7.794230,8.162822,6.033896,3.868599,0.976861,0.647108,1.433059,1.158678,0.365289,0.523967,0.910744,0.505785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.555000,4612605.550000,6502,3905,105.064476,159.948776,167.238022,157.981842,145.386795,132.485962,129.700836,125.783485,124.808281,126.973572,127.684311,136.923996,152.833084,169.031433,180.965317,190.312424,189.874405,177.882660,156.023163,133.700836,123.642990,120.552078,115.254562,89.428123,73.651260,87.469444,100.064484,74.221512,36.196712,13.985970,10.477706,5.709929,7.525635,6.960341,6.322327,3.460336,0.393389,0.000000,0.218182,0.109918,0.000000,0.073554,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602048.355000,4612605.550000,6531,3905,103.243820,157.979340,167.161163,158.830582,144.169434,133.012405,130.293411,127.987617,126.136383,128.177704,128.574402,139.020676,154.863647,171.367767,182.657028,191.971069,191.690079,180.301651,156.657043,135.400848,124.177704,120.500015,116.045471,89.640511,74.714890,90.632248,101.276878,74.979355,36.483490,14.952910,10.549607,6.874392,8.207454,7.517367,7.377699,3.181823,0.690084,0.476860,0.289257,0.196695,0.000000,0.217356,0.403306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.755000,4612605.550000,6548,3905,88.904152,156.780182,165.499191,158.342163,143.623154,134.127289,130.532242,127.862831,126.912415,127.697540,128.457870,138.176880,154.928940,170.705811,181.639694,193.036377,191.738861,179.623154,156.540512,134.482651,124.681007,122.119019,115.218201,89.829773,74.019852,90.433075,102.755394,73.350433,36.383492,15.112413,10.474400,6.485962,7.305801,7.571086,7.761169,3.030583,0.455372,0.045455,0.333885,0.041323,0.106612,0.057851,0.220661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.355000,4612605.550000,6576,3905,93.011581,157.714050,166.218185,153.218185,141.209930,131.846298,128.242981,126.143814,124.606621,125.862823,126.135551,136.457870,152.672729,169.168594,180.135544,190.945465,189.259506,177.276031,155.102478,133.201660,122.532242,118.176872,113.763657,86.970268,72.631424,87.937210,99.052910,73.391754,33.358700,12.899191,10.342167,4.969432,8.438032,7.725631,7.299187,2.687608,0.323968,0.035537,0.000000,0.024794,0.000000,0.000000,1.135538,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.355000,4612605.550000,6606,3905,95.945465,159.300842,166.366959,157.821503,143.449615,133.854553,130.961990,128.143814,127.821503,128.912415,128.664474,138.135559,156.251266,171.168610,182.581818,192.540512,191.606628,181.276031,156.515717,134.978531,125.160339,121.366951,117.127281,89.970261,74.962006,88.738853,101.218193,76.292572,35.201668,14.987621,10.647953,4.555381,6.814892,7.508276,8.115716,3.226453,0.668597,0.019835,0.185951,0.056199,0.116529,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,1.651240,0.000000,0.000000 -602066.155000,4612605.550000,6620,3905,105.789284,150.756226,164.533096,155.855408,140.020691,131.599182,127.706619,125.367783,124.202484,124.871910,125.599182,136.144653,152.301682,168.433914,179.062012,188.483505,189.078552,175.731430,152.888458,131.442154,121.111580,117.954552,113.227280,87.574394,73.285141,88.533073,98.293411,73.855392,34.557873,13.257042,10.293408,5.412408,5.747123,7.580177,6.418195,3.229757,0.271075,0.042149,0.284298,0.062810,0.047934,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602070.155000,4612605.550000,6640,3905,91.830605,147.946274,167.946274,158.466949,142.954544,135.020676,130.508286,127.516548,125.888443,125.838860,126.086792,137.566116,153.797516,169.442154,180.500000,190.648758,189.780991,178.607437,155.995865,133.979340,124.690102,119.979355,116.409103,89.929771,73.566139,89.152916,99.673576,73.805809,35.475227,15.939688,10.582664,4.938028,7.281007,7.232243,7.118195,3.379343,0.326448,0.331407,0.068595,0.029752,0.000000,0.000000,0.205785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.755000,4612605.550000,6663,3905,95.177711,153.987640,164.276871,157.533081,143.665329,134.384323,130.376053,129.235565,126.607460,126.830605,128.037216,138.136398,155.566132,170.979355,182.615723,191.987625,190.293411,178.309937,154.995880,135.318207,124.830605,121.136391,116.590935,89.433899,75.095055,90.698364,100.640518,75.392578,37.491756,15.161176,10.599193,7.148772,8.176874,9.607452,6.876045,5.215710,1.016531,0.173554,0.480993,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.755000,4612605.550000,6693,3905,91.857864,155.254547,167.692566,158.849594,144.031418,135.998367,131.477707,128.436371,127.188446,127.965302,128.882660,138.114059,155.700836,171.378525,182.775208,192.543808,192.337204,179.519012,156.527283,134.866135,124.783485,121.973572,116.163651,89.519020,74.585136,89.395058,99.948776,73.866127,36.320679,15.018200,10.560350,6.600838,7.604973,8.143815,7.157038,2.167773,0.384299,0.094216,0.223968,0.216529,0.047934,0.279339,0.363637,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.955000,4612605.550000,6719,3905,86.055397,157.650421,168.468597,158.055374,142.782669,132.468628,129.576065,126.336388,125.204155,126.452095,126.790932,136.683502,154.096710,169.361160,180.981003,190.352905,190.749603,178.187607,154.509933,134.030609,124.220688,120.666969,114.063660,87.757874,73.476883,89.179367,99.923164,73.609116,34.311592,15.396713,10.369440,5.833068,8.656215,8.775219,7.465303,4.282651,0.248762,0.110745,0.166116,0.242976,0.000000,0.226447,0.371901,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.555000,4612605.550000,6742,3905,87.882668,153.411591,166.238037,158.659531,144.866135,134.262817,132.717377,128.998367,126.981834,128.370270,128.907455,139.461182,154.676056,171.535538,183.312424,193.593399,191.940506,178.494217,156.915726,135.874405,125.808281,121.775230,116.345474,90.163651,74.907463,90.196709,99.973579,74.386803,37.370266,16.994236,10.576880,6.673567,8.949603,9.879354,8.447120,4.190915,0.692564,0.133886,0.198347,0.138017,0.000000,0.358678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602093.955000,4612605.550000,6759,3905,89.132248,153.396713,164.338852,156.421509,140.776871,132.537201,129.578522,127.264481,125.719025,125.305801,127.520676,137.826462,154.115723,169.157043,181.677704,191.388443,190.396713,176.966965,154.917374,134.528946,123.586792,120.380180,115.545471,89.446297,73.752083,88.801666,102.438034,73.760345,36.404980,14.409935,10.504151,6.377697,8.239684,8.254558,9.418196,2.144632,0.207440,0.130580,0.320662,0.000000,0.000000,0.002479,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.155000,4612605.550000,6780,3905,81.231430,150.404968,168.281006,154.264481,140.190094,132.066132,128.462830,125.297539,124.876053,124.809937,125.512413,135.611588,153.966965,169.826462,178.793411,189.157043,189.305801,176.322327,152.752075,132.909103,123.438034,120.024811,114.545471,87.520683,73.033081,87.247948,97.404976,71.363663,35.413242,12.866134,10.413242,5.583482,7.254560,7.806625,7.841335,2.537195,0.590084,0.080992,0.232232,0.007438,0.000000,0.000000,0.566943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.155000,4612605.550000,6795,3905,89.633904,158.278519,166.129761,155.476868,141.104965,130.997543,128.790924,126.394234,125.452087,125.658699,126.584312,137.303329,153.956207,169.700012,180.923157,190.931412,190.666946,177.311584,155.749603,133.832245,124.410759,120.328117,115.609108,90.104973,73.956215,88.914894,99.873573,72.195885,34.617374,13.666960,10.509936,6.181828,8.472742,9.761171,5.968606,4.147941,0.408266,0.300001,0.090083,0.113223,0.000000,0.138843,0.056199,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602105.955000,4612605.550000,6819,3905,89.823982,150.890091,166.402496,158.055374,143.906631,135.576065,130.997543,128.005798,126.534729,126.567787,128.592575,138.245483,155.377716,170.666962,182.113251,191.658691,191.088440,178.832260,155.708267,133.749603,124.823982,120.559525,116.063652,89.410759,74.584312,91.840515,100.691750,70.468613,35.476883,14.509935,10.551259,5.699185,7.929768,7.645466,7.611582,3.885130,0.368596,0.395042,0.079339,0.031405,0.043802,0.195868,0.000000,0.552066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.155000,4612605.550000,6840,3905,97.571922,153.390106,166.852921,156.671097,142.282669,130.307449,128.464478,125.555389,125.059525,126.150429,127.051254,136.431427,153.084320,168.373581,179.357040,189.968628,189.224823,178.034714,154.274399,132.885971,123.514069,120.844643,114.563652,89.257866,73.200020,88.910759,98.150429,71.042992,31.943821,13.595057,10.414896,6.233069,7.347123,8.339683,7.189268,3.366122,0.967771,0.130580,0.279340,0.347108,0.118182,0.154546,0.226447,0.040496,0.000000,0.000000,2.071901,0.000000,0.000000,0.000000 -602113.555000,4612605.550000,6857,3905,92.127281,155.176880,165.697540,157.400024,142.788452,132.185150,128.714066,127.003326,125.523987,126.639687,128.391754,137.895889,153.226471,169.309113,180.614899,190.523987,189.383484,177.664490,154.193405,134.408279,123.251259,120.499191,115.400017,89.557045,73.557045,88.350433,99.061165,71.226463,33.226467,14.678530,10.490929,7.119846,8.043817,7.885135,7.664475,3.185956,0.228927,0.348762,0.149587,0.136364,0.000000,0.076860,0.480166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602118.755000,4612605.550000,6883,3905,105.830605,155.805817,166.533096,156.962845,145.161194,135.334717,132.053741,127.161179,127.318207,128.673569,128.425629,139.045471,155.938049,170.739700,181.789291,192.838882,191.557877,179.632263,156.343002,135.566132,125.219032,122.219032,116.409119,92.219032,75.690109,90.954567,101.483498,75.119858,36.326462,15.149606,10.582664,7.764476,8.481834,9.508277,8.677700,3.021492,1.219011,0.146282,0.000000,0.000000,0.085951,0.083471,0.698348,0.129752,0.000000,0.000000,0.000000,1.280992,0.000000,0.000000 -602125.355000,4612605.550000,6916,3905,108.353745,154.279358,165.981842,157.353745,143.585144,132.800018,131.155396,127.436386,126.808289,128.981842,128.560349,139.775223,155.188446,171.262833,181.899200,191.395065,192.138870,178.485977,156.403336,134.626465,125.031425,121.246307,116.254570,91.766968,73.808289,88.915726,98.709114,71.800026,34.097538,12.721505,10.568615,6.457862,9.076049,7.104143,6.732243,2.046285,0.476860,0.000000,0.282645,0.084298,0.000000,0.282645,0.000000,0.124794,2.333884,0.000000,1.289256,0.000000,0.000000,0.000000 -602128.555000,4612605.550000,6932,3905,97.757050,154.798370,170.525635,157.509109,142.616562,134.418198,130.525635,128.633072,126.748772,127.732246,128.889267,138.781845,154.674393,170.459518,182.715729,192.814911,191.575241,180.120667,156.500839,135.310760,125.013237,121.385139,115.963646,90.013237,75.509102,90.219849,100.409927,72.988441,32.426464,14.771919,10.542168,6.091747,8.763653,7.466954,7.376045,3.998353,0.222315,0.161984,0.000000,0.062810,0.009918,0.310744,0.139670,0.318182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.155000,4612605.550000,6945,3905,102.487617,157.743805,168.404953,157.446274,144.462830,131.661163,129.942169,126.685966,126.330597,126.099190,126.867783,137.107437,154.512390,168.528931,180.958679,191.231400,190.462814,178.322311,155.264465,134.719009,123.173569,121.338860,115.727287,88.909103,73.809937,88.991753,98.082664,71.206627,34.413246,13.065307,10.520680,6.853732,7.015718,7.691748,7.498361,3.216534,0.634712,0.174380,0.100000,0.117356,0.109918,0.199174,0.026446,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.555000,4612605.550000,6967,3905,98.109932,154.581009,166.865295,159.708267,144.228943,134.088440,131.195877,128.947937,127.766129,129.584305,130.906616,141.427277,157.823975,172.890091,185.030594,195.592575,194.666946,181.923157,158.460342,136.559525,126.832245,124.385963,118.609100,91.815720,76.807457,90.708282,99.898361,72.319847,35.361179,15.915721,10.782663,6.801664,8.882660,8.577699,8.433896,4.515708,0.719010,0.079340,0.160331,0.000000,0.066116,0.076860,0.380992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602141.355000,4612605.550000,6996,3905,90.774406,164.700012,167.757858,159.658691,146.047119,135.138031,132.947937,128.815720,127.584305,128.782654,128.410751,139.576050,156.865295,171.443817,183.138031,193.881821,192.551254,179.848770,155.741333,135.187607,126.088440,122.567780,118.063644,91.146309,76.724823,91.129776,99.790932,71.815727,35.749607,13.223984,10.733077,7.393401,9.012413,10.333898,8.221501,4.046288,0.313224,0.626448,0.064463,0.058678,0.005785,0.000827,0.311571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602146.155000,4612605.550000,7020,3905,105.927292,160.018188,170.869431,159.547119,145.042984,134.720673,133.431427,129.819855,128.042999,129.332245,129.704147,140.299179,155.902496,172.414886,184.042984,194.249603,193.274384,180.604965,157.365295,136.745468,127.034729,124.720680,118.745476,92.357040,76.745476,91.357040,101.976875,72.919029,36.497543,15.051256,10.795060,7.759518,9.637207,8.405797,8.925634,3.174385,0.768597,0.532232,0.305786,0.107438,0.030579,0.072727,0.048760,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602151.355000,4612605.550000,7046,3905,101.858696,169.734726,169.990921,160.445465,142.519852,131.784317,130.842163,126.676880,125.445473,126.338036,127.007454,136.916550,154.404144,169.974396,181.197540,191.404144,191.693405,177.313248,154.825638,134.230591,125.197540,121.585968,116.172745,90.338036,75.693405,87.974396,98.156219,71.990929,32.776054,13.768611,10.561176,6.133068,8.824808,6.476869,6.053730,3.924799,0.614051,0.002479,0.232232,0.033058,0.099174,0.217356,0.010744,0.000000,2.330579,0.000000,0.000000,0.000000,0.000000,0.000000 -602155.155000,4612605.550000,7065,3905,91.167793,161.746292,169.027283,159.151245,145.787613,133.746307,132.126465,128.754562,126.994240,128.547958,128.275223,139.167770,155.093399,171.035538,183.118195,193.754547,193.390915,178.539673,156.382645,136.060349,125.382668,124.085144,118.118202,90.060349,76.465302,88.200844,98.754562,71.994240,34.159527,14.117372,10.738035,7.524806,8.649602,8.571088,8.285136,3.152898,0.621489,0.186778,0.225621,0.120662,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602159.355000,4612605.550000,7086,3905,100.945465,167.590103,170.904129,159.523987,143.581833,132.755386,131.267792,127.705803,125.722336,127.490929,128.028122,137.416550,154.557037,169.565292,181.383469,190.796692,191.185120,178.928925,156.400024,134.945480,124.201675,122.548782,117.036385,91.408279,75.061180,88.838028,97.813232,71.325638,34.391754,14.157868,10.639688,8.844640,8.026460,8.209929,8.044641,4.338024,1.104134,0.139671,0.084298,0.480167,0.005785,0.369422,0.000000,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602165.755000,4612605.550000,7118,3905,85.771095,164.118210,169.407440,161.440521,145.564484,132.531433,131.316559,127.647133,126.151253,129.448776,126.597534,138.382660,154.035553,170.209091,181.985962,193.638855,192.300003,177.828934,156.366135,135.547958,125.605804,122.738037,116.481842,90.258698,75.382668,90.498367,100.704979,70.250435,33.333080,11.692578,10.589274,7.819847,8.590098,7.909104,7.805798,3.252897,0.343803,0.511571,0.056199,0.113223,0.009918,0.068595,0.365290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602170.355000,4612605.550000,7141,3905,99.603325,171.189240,167.015686,160.552887,142.445435,131.247116,130.718201,127.544640,127.197533,130.495056,127.817368,139.561157,156.180984,171.007431,183.015686,194.346268,193.486771,179.577667,156.511551,137.280167,127.147942,124.966125,118.900009,91.759521,76.362823,90.181000,101.015717,72.643814,35.817379,16.338861,10.809111,9.510756,9.943817,9.688441,9.785966,3.496699,1.056200,1.073555,0.000000,0.160331,0.060331,0.067769,0.000000,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.555000,4612605.550000,7162,3905,100.957855,176.255371,169.263641,159.222321,143.660339,132.048767,131.057037,127.776047,125.866951,130.338028,127.065300,138.974380,154.387604,170.627274,182.346283,192.635544,192.627274,177.817352,155.181000,135.329758,126.437202,122.147942,116.445465,89.652077,74.081818,88.734718,99.784302,71.693390,34.701675,14.313240,10.585969,9.856211,10.451255,10.382658,7.877699,4.235543,0.414050,0.271075,0.100827,0.122315,0.000000,0.409092,0.000000,0.538017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.555000,4612605.550000,7187,3905,103.388443,171.198349,167.950409,160.652893,145.297516,132.206635,130.636383,128.173569,126.743820,129.966965,127.669441,138.884308,153.033081,169.619827,181.917374,193.760345,191.760345,178.008286,155.198364,135.603317,124.603325,122.173569,117.636383,89.909103,74.925636,88.801666,96.305801,70.066132,32.487625,12.471918,10.694233,9.811583,7.816544,7.219021,8.934725,4.108270,0.299175,0.264464,0.518183,0.275207,0.123141,0.076860,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602183.355000,4612605.550000,7206,3905,103.920670,176.333893,169.011566,161.077682,145.697540,132.160339,130.771912,128.631409,126.904144,130.672745,127.672737,139.234726,153.920670,170.061157,182.152069,193.995041,193.350418,176.821487,155.598343,137.110764,125.697533,121.102493,117.581833,90.267776,75.218193,89.077705,97.028107,70.995064,33.532249,13.261174,10.689275,9.909103,7.862825,7.671912,8.037203,4.227280,0.860332,0.087604,0.053719,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.155000,4612605.550000,7220,3905,113.474388,174.119019,171.325623,163.110748,146.342148,133.507446,130.846298,128.193405,127.664474,131.466125,128.251251,138.424789,153.846298,169.953720,183.656204,193.449585,193.168594,178.036362,155.623154,135.871078,126.424805,123.160339,117.490921,90.879349,76.168610,89.681000,98.127281,68.375221,33.449608,13.807455,10.681011,8.600014,6.949602,7.753733,9.776874,3.092568,0.426448,0.200001,0.154546,0.041322,0.000000,0.073554,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.155000,4612605.550000,7235,3905,109.771912,174.614899,172.681015,164.019852,146.738861,135.094223,133.366959,129.606628,129.986786,134.218201,129.681000,140.722336,156.424820,172.606628,185.135559,195.920685,194.887619,179.242996,159.573578,138.681015,128.540512,125.573563,119.672737,92.581833,77.251251,90.887611,99.251251,70.251251,33.664486,12.948779,10.879358,11.064477,9.300843,8.094227,7.027284,3.864469,0.744630,0.280166,0.302480,0.053719,0.002479,0.000000,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602193.355000,4612605.550000,7256,3905,107.947121,179.947098,172.104141,165.409927,146.814896,134.583481,133.905792,130.624802,130.434723,134.426453,129.500839,141.104141,155.104141,171.591751,184.533875,195.699173,195.459503,180.880981,159.633072,140.442993,129.401672,127.360344,120.690926,93.294228,80.426468,95.038033,101.128937,73.137199,35.806633,15.342166,10.971920,11.901666,9.167783,8.604147,9.590096,2.601660,0.839672,0.328928,0.038017,0.173554,0.000000,0.206612,0.317356,0.512397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.755000,4612605.550000,7273,3905,124.668610,177.247131,172.767792,166.015717,146.362823,135.817368,133.503311,131.668610,130.809097,134.470261,129.941330,141.561172,156.569443,174.023987,186.709930,198.495041,198.197525,182.577698,162.503326,143.238861,132.709930,129.032242,123.445465,95.057037,80.478531,95.718193,105.023979,73.966133,37.362831,15.035554,11.222332,11.365303,9.625634,9.578526,7.683482,5.736374,1.039672,0.247935,0.373555,0.124794,0.059505,0.009918,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.955000,4612605.550000,7299,3905,118.676048,175.461182,176.717377,164.519028,148.014877,134.403305,131.485962,129.171906,129.328934,134.039673,128.733887,139.452896,154.031433,171.163666,182.122330,195.659531,194.411591,178.188446,159.932251,139.998352,129.676041,125.593391,119.254555,92.849602,78.700844,94.477699,102.006622,71.907463,34.254562,13.888447,10.841341,11.936378,7.683487,9.197534,8.016542,4.690091,0.765292,0.653721,0.142149,0.000000,0.014050,0.000000,0.340496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.755000,4612605.550000,7318,3905,99.795883,154.076904,153.151260,146.630600,133.382660,121.523155,119.374397,117.283485,116.258690,117.928116,119.126457,129.605804,146.547958,162.597565,175.572769,186.118225,188.366150,176.878555,155.614090,135.795883,123.663651,120.870262,113.845467,87.671913,70.514893,89.052078,102.961174,77.390923,36.109936,12.439686,10.349606,3.832243,9.169434,6.795880,8.285137,2.216537,0.940500,0.328927,0.055372,0.161158,0.095868,0.000000,0.519009,0.380166,0.000000,2.107438,1.998347,0.000000,0.000000,0.000000 -602211.355000,4612605.550000,7346,3905,108.903320,150.746307,153.382660,144.382660,131.043823,120.151253,118.010757,115.374397,113.043816,115.101669,115.738029,127.399185,144.547958,159.671921,171.192581,182.415726,184.399200,173.886795,150.572754,131.853729,121.936378,116.556213,112.300018,85.746292,70.572739,86.638855,101.184311,74.531418,34.167786,12.637207,10.209109,5.459516,8.266954,6.637203,7.465303,3.819017,0.588432,0.765290,0.340497,0.000000,0.000000,0.000000,0.264463,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.355000,4612605.550000,7381,3905,112.206627,143.710754,152.876053,141.380188,129.991745,120.652908,116.743820,114.719025,112.603325,115.049606,115.438034,126.867783,142.801666,158.793411,170.710754,180.636383,181.768616,171.826462,149.297531,130.636383,120.115715,116.214890,111.181831,84.471092,69.016548,85.487617,99.008278,74.793404,35.396713,11.732248,10.107456,4.653728,6.916541,10.118196,6.951252,3.684305,0.944630,0.500829,0.000000,0.325621,0.138844,0.000000,0.489257,0.419009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602223.755000,4612605.550000,7408,3905,102.333900,149.193390,154.705795,144.961990,129.705795,122.242989,119.036377,116.961998,116.391747,116.085960,117.325630,128.540512,145.995041,160.317352,174.309097,187.317352,186.085953,177.218185,153.722321,134.234726,124.036377,118.796707,114.036377,87.912415,73.267776,88.689278,102.788445,76.887611,34.515724,14.845472,10.366961,6.043816,10.434727,9.761998,10.416543,2.820669,0.395043,0.533061,0.113223,0.162811,0.043802,0.000000,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,1.623141,0.000000 -602231.355000,4612605.550000,7446,3905,118.328941,140.461166,153.477692,141.543808,128.618210,119.510757,116.634727,115.072739,113.477699,114.064476,115.171913,126.155388,142.965302,157.857864,171.403305,181.758682,182.915710,171.800003,149.403305,129.866119,120.353737,115.866127,109.618195,84.750435,69.684319,85.907463,97.973579,71.981842,33.560352,13.816545,9.965308,6.137201,7.610755,8.412411,9.314063,3.303312,0.506614,0.109092,0.475208,0.082645,0.037190,0.000000,0.201653,0.506612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.155000,4612605.550000,7490,3905,127.591751,153.715714,152.038040,144.542160,130.641342,121.352081,117.120674,114.930588,113.467781,115.525635,116.451256,126.195053,143.120667,158.244659,171.277695,181.657867,182.095886,172.029770,148.996704,127.980179,119.509102,116.269432,111.145470,85.517365,68.988441,86.211586,96.856209,69.426460,31.251261,11.311587,10.104153,5.760342,7.399186,8.857865,6.573565,3.407446,0.500829,0.358680,0.017356,0.042149,0.151240,0.353719,0.316530,0.455372,0.000000,0.000000,0.000000,0.000000,3.652893,3.100000 -602250.355000,4612605.550000,7541,3905,210.808273,177.981827,157.080994,141.477692,125.874397,116.816544,110.923981,107.816544,107.337204,108.204971,109.981834,121.725632,140.031418,156.056198,169.998352,180.585129,180.304138,170.775208,152.485962,135.006622,125.138855,123.907455,122.436378,96.527290,76.171913,98.287621,128.816544,100.932243,49.857872,14.581010,11.130597,12.840509,12.004973,15.257042,18.081009,15.650430,4.258685,2.329756,0.737192,1.264465,1.041323,3.433887,2.663638,1.516530,31.219835,12.738844,9.796696,0.000000,6.319835,2.776860 -601373.155000,4612595.550000,3155,3955,205.788452,183.730591,145.119034,134.548782,114.598358,102.160339,98.532242,97.408287,97.540512,104.581833,99.664482,111.408279,129.681000,149.375229,164.829773,179.003326,178.424820,163.664490,141.614899,121.515717,109.937202,109.011581,102.945465,71.995064,52.647953,71.036385,84.780182,58.523987,27.424812,11.660346,9.358697,23.809111,11.446296,13.015718,14.966958,11.502492,3.252074,1.412400,1.347937,0.575207,0.979341,1.146282,2.233062,2.090911,23.024797,13.698349,14.702481,12.586780,16.610746,7.820662 -601378.155000,4612595.550000,3180,3955,156.479355,151.665298,141.938034,128.276871,113.268608,104.863655,101.822327,100.202492,98.888443,100.623985,103.433899,114.384315,133.599182,149.400848,163.929764,175.004150,177.450424,165.648773,143.152908,122.136375,111.582664,107.326462,101.500015,72.979355,55.235558,71.243820,84.119850,60.673573,28.484318,10.231421,9.227292,11.080180,8.277700,10.462824,12.014063,7.210754,2.419014,1.876038,0.650415,0.734712,1.321490,0.345455,0.779341,0.628926,16.068598,11.309093,4.775208,6.009919,5.376860,1.825620 -601384.955000,4612595.550000,3214,3955,145.425629,153.192566,144.795868,130.754562,117.366127,109.283485,106.184311,103.985962,103.952904,105.853737,107.928116,118.043816,136.390915,152.754547,166.333069,177.638855,178.109924,167.349594,142.886780,122.341339,112.134727,109.142990,102.754562,76.357864,57.804153,72.209106,83.151253,61.787624,28.514893,10.912414,9.341342,10.078527,8.347946,8.071916,10.447948,5.538852,1.002483,0.887606,0.533885,0.180992,0.405786,0.000000,0.336364,0.604959,4.956199,3.547934,2.170248,4.260332,6.200828,3.562810 -601394.555000,4612595.550000,3262,3955,121.351250,150.787613,146.258682,135.060349,120.159508,110.746284,108.581001,106.531410,106.142982,107.068604,109.126450,120.985954,137.291748,153.688431,166.886780,177.994217,177.448761,167.572739,142.556198,121.886780,111.440506,107.713226,102.572731,74.118195,58.605808,73.225632,83.118195,59.093410,26.914894,10.211586,9.324813,8.484312,7.388442,9.408278,8.119849,4.449595,0.742152,0.199175,0.392563,0.157852,0.369422,0.062810,0.390910,0.183471,1.013223,0.802479,4.771075,2.068595,2.688430,1.809091 -601407.755000,4612595.550000,3328,3955,120.728111,147.477692,145.204987,134.568604,120.494232,110.742157,109.089272,105.800003,106.485962,107.444633,109.271088,119.808281,137.725647,153.634720,166.014877,176.758682,177.667770,166.766953,143.138870,121.477699,111.709106,107.882652,101.618187,74.783485,57.204971,71.816544,83.833061,61.849602,28.998367,12.700845,9.238037,6.529764,7.557865,7.633899,8.400014,4.460338,0.764465,0.159505,0.496696,0.000000,0.000000,0.212397,0.703307,0.241322,3.185124,1.814876,2.314876,4.447108,2.764463,3.495868 -601426.155000,4612595.550000,3420,3955,133.224808,150.104950,148.840485,137.088440,124.336380,114.733078,111.452087,108.981010,109.311584,111.295059,112.344643,122.567787,140.468582,155.625610,168.410736,178.832230,179.567764,169.179337,146.121475,123.700020,112.898361,108.906631,103.881836,75.881836,59.022331,73.576050,86.427292,62.038860,28.898367,11.966959,9.443820,7.252078,8.174395,8.072741,7.040510,4.095874,1.528929,0.266117,0.281819,0.214877,0.223967,0.252893,0.203306,0.000000,1.991736,6.767770,0.000000,1.486777,0.957851,1.725620 -601444.755000,4612595.550000,3513,3955,124.353729,155.403305,151.543808,141.006622,127.833069,116.097534,114.229767,112.213234,112.246292,114.568611,115.428116,125.800018,143.056198,158.890915,171.907440,182.006622,182.204971,171.750427,148.246292,127.097534,115.081009,111.370262,106.345467,77.940514,60.601673,75.221504,87.717369,65.874397,29.188448,12.665306,9.667788,7.387615,9.293404,8.975221,8.591749,4.134716,0.985953,0.485126,0.559505,0.247934,0.035537,0.034711,0.471901,0.000000,2.242149,1.087603,0.000000,1.466116,0.000000,0.000000 -601450.755000,4612595.550000,3543,3955,117.407455,154.936371,155.233887,142.002487,128.266953,119.060349,116.258690,113.895058,113.349602,115.837204,116.308281,126.985962,144.275208,158.638855,173.490082,182.060333,183.291748,172.812408,148.258682,127.638855,116.895058,112.473572,107.209106,79.242165,62.151257,75.539696,89.068611,66.721512,30.109938,13.118200,9.746301,6.407448,8.637204,8.509931,8.959517,4.042155,1.035540,0.395870,0.538018,0.000000,0.104133,0.042975,0.133884,0.000000,1.066116,2.027273,0.938017,0.837190,2.295041,1.936364 -601454.155000,4612595.550000,3560,3955,135.453720,184.456207,166.414886,157.282654,139.654556,127.514061,124.728935,123.290916,123.001663,129.282654,123.919022,134.067780,150.902496,167.588440,181.166946,191.976868,190.885956,175.406616,154.373566,134.993393,123.910751,120.885963,115.836372,85.919022,71.200012,85.009926,96.166954,67.927292,33.910763,15.097537,10.530598,12.495059,8.307452,7.571088,7.394228,4.580174,0.777688,0.040496,0.066116,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,2.032232,0.000000 -601458.955000,4612595.550000,3584,3955,142.254547,186.320663,168.312424,156.180176,139.014877,125.800018,124.543816,122.155388,121.824806,128.948776,123.370262,135.328934,150.609924,168.081009,181.585129,192.353729,190.634720,176.213226,152.800003,133.923981,123.295883,121.238029,114.800018,87.089272,69.932251,85.130592,93.535553,68.271095,31.535555,12.022329,10.436383,11.011584,7.863650,8.337205,8.975221,3.233066,0.852068,0.180166,0.046281,0.000000,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.955000,4612595.550000,3614,3955,130.572739,183.465302,165.308289,157.547958,141.200851,128.043823,126.969437,125.052078,124.010757,129.382660,124.663651,136.564484,153.242172,169.440521,182.539673,193.622330,192.911591,177.944641,155.771103,135.423996,124.985962,122.448776,117.390923,88.407455,72.432243,86.457039,95.944641,69.771088,33.820683,15.753736,10.671920,12.296712,8.974396,8.142163,8.443815,4.352902,0.735539,0.234711,0.121488,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.261984 -601473.155000,4612595.550000,3655,3955,114.335556,174.707458,164.137207,154.137207,137.897537,125.046303,124.798370,123.013245,122.385147,126.153740,123.104156,135.195068,151.765305,168.566956,181.533890,191.657852,191.013214,176.831406,154.277695,134.459518,123.566963,119.773575,114.418205,86.476051,70.806633,83.434731,95.889267,70.723991,32.583488,12.491755,10.401673,9.352907,7.297536,8.107451,7.512409,3.837198,0.497522,0.322315,0.076033,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.155000,4612595.550000,3670,3955,120.590103,175.928925,166.705795,155.854553,140.350418,128.061172,126.681000,124.333900,123.590103,126.961998,125.218201,136.061172,153.119019,170.474380,183.052902,193.069427,192.862808,179.466125,156.623138,136.532257,124.573563,122.160347,117.309113,87.887619,71.309113,85.714066,96.267792,71.416550,32.846298,14.207456,10.664483,9.154560,9.041337,9.705799,9.782660,4.589267,0.969424,0.109091,0.239670,0.062810,0.000000,0.000000,0.000000,0.000000,1.328926,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.355000,4612595.550000,3686,3955,123.081001,173.262817,162.684311,152.634720,139.188431,125.419838,125.552071,123.254555,122.287613,125.800003,123.064468,134.477707,153.080994,169.023148,181.510757,191.766953,190.105789,178.609924,154.816528,134.238037,123.370255,120.609924,115.618187,85.593407,70.882660,84.246292,96.634727,69.791748,31.882664,13.711587,10.510762,9.752080,7.029765,7.896708,9.422329,3.122323,0.320662,0.000000,0.098348,0.000000,0.000000,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.555000,4612595.550000,3727,3955,108.247948,166.991745,160.371918,151.247955,137.595062,126.033073,124.512413,122.719025,122.074394,124.735550,123.983490,134.719025,153.685974,169.595062,181.090927,191.859528,192.214890,179.528946,156.396713,135.041336,124.595055,120.876053,115.636383,86.413239,70.553734,83.471092,95.198364,69.528954,32.338860,13.458695,10.512416,11.122330,6.881006,8.253734,7.679351,3.695876,0.676034,0.183472,0.051240,0.221488,0.000000,0.160331,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.755000,4612595.550000,3743,3955,107.285133,169.541336,164.367783,154.929764,139.640503,126.913231,127.028931,124.747940,123.342987,125.409096,125.681824,136.929749,154.681824,171.061981,183.136368,193.384293,192.185944,180.632233,156.582642,136.640503,125.648766,123.012405,117.136383,87.962830,71.938034,84.954559,97.516548,70.896713,33.838860,15.042993,10.648779,9.268609,7.854561,10.308280,9.107451,5.009927,0.974382,0.152893,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.955000,4612595.550000,3769,3955,117.884315,169.628113,165.553741,154.140518,138.752075,126.867783,126.933899,124.743820,123.165306,124.760345,125.264481,135.966965,154.661179,170.842987,181.859528,192.462830,191.801666,180.214890,156.975220,134.925629,124.471092,122.355385,115.727287,87.595055,70.074394,83.355385,96.628113,71.099190,34.082664,13.830597,10.520679,8.186790,8.768610,7.743815,8.528112,4.588438,0.705786,0.566943,0.052066,0.000000,0.000000,0.000000,0.088430,0.000000,0.000000,0.000000,1.099174,0.000000,0.000000,0.000000 -601503.955000,4612595.550000,3809,3955,103.338036,168.784317,165.577698,154.916534,138.924789,127.792580,127.222336,125.503326,123.495064,125.891754,126.544647,137.288437,155.230576,171.420685,183.139694,194.238846,193.825623,181.313248,158.445465,135.982666,125.511589,122.123161,116.900017,87.957870,72.065308,85.800842,98.990929,72.883492,33.627293,14.130596,10.627291,10.171916,8.248776,8.324809,8.533072,3.590092,1.466945,0.247935,0.050413,0.161157,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,1.021488,0.000000,0.000000,0.000000 -601509.355000,4612595.550000,3836,3955,105.858696,165.809097,164.453720,153.271912,137.817352,127.304970,126.428940,124.106621,121.974388,123.776047,124.982658,136.635544,153.668594,169.800827,182.098343,191.842148,191.776031,180.676865,156.619019,134.742981,124.238853,121.123154,115.809105,86.313240,70.850433,84.933075,96.255386,70.966133,33.817375,13.028943,10.528119,7.890097,7.833899,8.418197,7.802493,3.414885,0.475208,0.232232,0.155372,0.106612,0.000000,0.000000,0.006612,0.660331,0.000000,0.000000,0.000000,0.000000,1.166942,4.114050 -601511.955000,4612595.550000,3849,3955,109.958702,165.495865,161.966949,150.652893,136.314072,126.206635,124.330605,121.991760,120.933907,123.066139,123.363663,134.314072,152.644623,168.181824,180.000000,190.619827,190.669418,178.719009,154.669418,133.933914,122.677711,120.206635,113.454567,85.628113,69.562004,82.900848,96.066132,70.719032,33.016548,12.728945,10.314069,7.747945,7.920675,7.524806,8.961170,4.469430,0.618184,0.182645,0.000000,0.000000,0.000000,0.180166,0.000000,0.000000,0.000000,1.180992,0.000000,0.000000,0.000000,0.000000 -601514.755000,4612595.550000,3863,3955,96.307457,163.464493,164.819855,151.960342,137.960342,127.472748,125.828117,122.985138,122.464478,123.200020,123.563652,135.076050,153.811584,169.952072,181.869431,190.067780,191.348770,180.332245,155.299194,134.613235,123.861176,120.514069,114.472748,85.638031,69.985138,83.786797,97.398361,71.538864,32.613239,12.977704,10.406631,7.001666,8.182659,9.442165,8.548774,3.692569,0.420662,0.239670,0.111571,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,2.522314,0.000000,0.000000,0.000000,0.000000 -601519.355000,4612595.550000,3886,3955,110.663651,165.614059,164.167770,152.944641,137.300018,126.845474,126.101677,122.671921,121.614075,123.151260,125.266968,135.316559,154.481827,169.118195,181.853729,191.861984,191.696701,181.043808,157.390915,135.184311,124.209114,121.382668,115.481842,86.060356,69.465309,83.134735,97.928123,71.010765,33.448780,14.599192,10.498366,6.822328,7.509932,7.971915,8.246293,3.179346,0.205786,0.479340,0.181819,0.205785,0.000000,0.218182,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601522.755000,4612595.550000,3903,3955,118.050438,157.042160,166.100006,153.777695,139.347946,129.182663,126.471924,124.546303,124.405807,125.025642,125.976051,137.397537,155.480179,171.347946,183.529770,193.422333,193.190918,181.422333,157.711578,136.868607,125.769440,121.934731,116.463654,88.174393,70.604156,86.356209,98.645477,74.000847,35.662003,15.268612,10.587623,8.533073,7.891750,9.153733,8.670261,3.598356,0.823142,0.073554,0.628100,0.059504,0.000000,0.000000,0.452066,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.955000,4612595.550000,3919,3955,105.290932,161.381821,161.654556,151.704147,137.580170,126.373566,124.522331,122.307457,121.679359,122.778534,123.968613,135.034714,152.712402,169.497528,181.233063,191.348770,191.398361,180.133896,156.249603,134.679352,123.753738,120.357040,115.654564,85.919022,69.555397,84.629761,98.109100,71.390106,33.687622,12.454562,10.514069,7.509931,7.581833,8.087618,8.885964,3.216537,0.551242,0.046281,0.205786,0.000000,0.000000,0.000000,0.009091,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.755000,4612595.550000,3938,3955,116.142166,160.580170,161.604965,151.133896,136.902496,126.414886,124.819847,123.191742,122.290916,123.786789,123.852905,135.299179,153.357040,169.150421,183.084305,192.340500,191.803314,179.158691,157.224808,134.439682,124.290916,121.241333,115.745461,87.026466,69.828117,84.051254,97.753738,71.704155,34.770267,13.209934,10.522334,7.182658,7.526461,8.698362,8.244641,3.935545,0.575208,0.276034,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.555000,4612595.550000,3972,3955,100.866959,154.668610,162.057022,148.982666,137.057022,125.974388,124.767776,121.528107,121.602493,123.660339,123.552902,134.709930,152.709930,169.197525,182.123123,190.461990,190.850418,178.850403,155.519852,134.941330,122.610756,120.528107,115.354553,86.511589,69.519852,84.387619,96.742996,71.866959,32.891754,12.394234,10.486797,8.304974,7.264479,9.422330,8.026461,3.651248,0.532233,0.040496,0.147108,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.755000,4612595.550000,3988,3955,110.342995,157.822327,162.293411,151.566132,137.351257,128.070251,125.607445,123.119843,122.814056,123.367775,124.309929,135.814072,153.938034,169.301666,182.979355,191.913239,192.004150,180.673569,156.425629,135.582657,123.929764,121.095047,116.590919,86.657043,70.194229,85.706627,97.822319,73.078529,33.681839,13.908282,10.599192,7.314890,7.714065,7.481832,7.148775,4.909099,0.397522,0.213224,0.267769,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.355000,4612595.550000,4006,3955,111.454559,156.454544,163.388428,150.809937,137.504150,126.785141,125.289276,122.983490,122.107452,123.082664,123.884315,135.074402,154.082657,169.190079,181.842987,191.809921,191.223145,180.446304,156.041321,135.082657,123.727287,121.586792,114.727287,87.024811,69.669441,83.752083,98.214890,71.338860,34.826466,15.058697,10.429770,7.206624,7.678528,9.090097,8.358693,4.019017,0.771903,0.302480,0.055372,0.000000,0.000827,0.000000,0.000000,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.955000,4612595.550000,4034,3955,108.327293,155.074417,161.471085,150.000031,135.157043,125.900833,124.231422,121.842995,121.619850,122.826454,124.016548,135.281006,152.661194,169.429764,180.702499,191.553726,192.148758,179.396713,155.495895,134.619843,123.033073,120.760345,115.090927,86.454552,68.066132,83.859512,98.950424,72.702492,33.710762,13.838862,10.462829,5.757864,6.734726,7.188443,7.544641,3.058686,0.517357,0.085951,0.047108,0.228100,0.000000,0.142149,0.000000,0.000000,1.213223,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.755000,4612595.550000,4058,3955,100.136383,155.466965,161.243820,151.805801,138.185974,127.764481,125.623985,122.342995,121.673569,123.566132,124.805801,135.483490,153.971085,169.318192,183.061996,193.549606,192.971085,180.235550,156.524811,135.723160,123.847122,120.590927,115.772743,86.409103,69.004158,85.235550,98.491753,73.334732,33.726467,13.919853,10.524813,7.944642,7.706628,7.691750,8.561172,3.610752,0.675208,0.095868,0.158678,0.109918,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.155000,4612595.550000,4075,3955,104.637215,157.728119,160.810745,150.017365,136.819016,127.124817,125.554565,123.240517,121.604156,123.571098,124.133072,135.397537,154.141342,169.918182,182.827271,192.257019,192.612396,180.604126,157.099991,134.934738,123.463654,120.455383,115.372742,86.389275,68.885147,85.025642,98.918198,72.232254,33.157871,13.312415,10.488450,6.068606,6.138856,7.652081,7.532245,2.380999,0.771902,0.302480,0.052066,0.000000,0.000000,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.955000,4612595.550000,4109,3955,97.650436,155.052078,162.448761,152.035538,139.382645,127.233902,126.647125,123.713234,123.944641,125.118195,125.589272,137.390915,155.052078,172.134720,184.176041,193.366119,192.374390,180.663635,158.936371,136.035538,124.366127,120.969437,115.663651,86.630592,70.928116,86.043816,99.349602,72.969437,34.936386,14.274399,10.514895,6.555385,8.783487,8.005800,9.385138,2.759512,0.276861,0.038843,0.107438,0.000000,0.000827,0.083471,0.000000,0.087604,1.104959,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.755000,4612595.550000,4138,3955,105.207451,154.246292,162.147110,149.692566,138.361984,128.907455,126.791748,124.039680,123.395058,124.709106,125.750427,136.047943,154.981827,170.816528,183.345459,192.882645,192.684311,181.560333,157.469421,135.444641,123.981834,120.337204,116.072739,87.081009,70.155388,84.510757,98.742165,73.428116,34.238041,14.167789,10.552086,6.952905,7.391750,6.071087,8.165302,3.533064,0.646283,0.039670,0.103306,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.155000,4612595.550000,4170,3955,108.819847,154.812408,161.853729,150.068604,136.911575,127.655380,124.019012,122.845459,122.324799,124.068604,124.804138,135.671906,154.250427,169.820663,182.341324,192.390915,191.316528,180.209091,156.820663,134.490082,124.283478,119.903313,114.845459,85.357857,68.754562,84.225624,98.019012,71.878517,34.969444,14.010762,10.440516,6.006624,7.440510,6.281831,7.621501,2.533890,0.476861,0.120661,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.555000,4612595.550000,4202,3955,105.286797,160.220673,162.989273,152.733063,139.394226,130.237198,126.981003,124.700012,124.204140,125.542984,127.286789,136.947937,155.848770,172.625626,184.245468,194.113235,194.526459,183.501663,159.055374,137.402496,126.113235,122.493401,116.245461,87.187614,70.468613,84.344635,98.823982,74.063652,36.733074,14.414067,10.567788,5.631416,8.258692,7.771088,8.082658,3.981000,0.454547,0.342976,0.261158,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.555000,4612595.550000,4252,3955,104.070259,162.826477,164.991760,154.281021,140.181854,129.809921,126.958687,126.099182,124.537201,125.611580,127.123978,137.776886,156.281021,173.057861,184.933899,193.859528,194.000015,183.413239,159.190109,136.322327,126.603317,121.479347,116.636375,88.256203,70.338860,87.206619,100.809929,73.504150,34.330593,14.560349,10.603325,5.814062,8.276049,8.691751,7.464478,2.642156,0.539671,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.355000,4612595.550000,4266,3955,100.805801,162.698364,164.673584,154.004166,139.946304,130.194229,128.491745,126.491753,125.623985,127.053734,127.723160,139.665298,156.623993,173.756226,185.260361,196.235565,195.219040,183.929779,159.946304,138.012405,126.037209,123.119850,117.681831,88.797539,71.053734,86.731422,100.028938,74.648773,35.177708,15.469440,10.698365,6.599185,7.438857,9.315717,8.602494,2.779346,0.485126,0.433059,0.016529,0.110744,0.000000,0.000000,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,1.107438,0.000000 -601598.155000,4612595.550000,4280,3955,109.929771,159.929749,161.731400,153.913223,140.342972,129.144638,126.268608,124.252083,123.789276,125.665306,125.938034,137.037186,155.491730,171.194214,184.780991,193.640503,192.913223,181.673553,159.020660,136.318192,123.723160,120.756218,115.318199,86.466949,68.301674,84.979347,98.739677,73.805801,33.309937,13.103324,10.483489,5.446292,6.492578,5.945468,6.309103,2.771080,0.336365,0.174380,0.095868,0.142149,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,1.244628,0.000000 -601604.155000,4612595.550000,4310,3955,120.688446,157.943817,164.216537,154.026459,139.952087,128.679352,126.621506,124.819855,124.596710,126.274399,126.216545,138.200027,155.985138,172.621490,185.943817,193.927277,194.406616,183.274384,159.125626,136.431412,125.315720,121.125641,116.563652,87.671082,70.166962,85.158684,99.828110,72.852913,36.052086,14.247952,10.596714,6.315715,7.883487,8.378528,6.365302,3.238849,0.499175,0.000000,0.052893,0.000000,0.013223,0.165289,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.555000,4612595.550000,4347,3955,114.409096,160.888443,162.566132,153.962830,140.681839,130.896698,128.508286,126.309937,126.210754,127.929771,127.764481,139.747955,156.549606,172.904968,185.590927,195.797531,195.061996,184.342987,159.921509,138.466965,125.904968,121.822319,116.681824,87.764481,70.417374,86.871918,99.632240,74.814064,36.475227,13.528943,10.607457,6.023154,8.179355,6.650428,6.592575,3.652900,0.242976,0.000000,0.285125,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.355000,4612595.550000,4361,3955,118.112419,163.277679,165.219849,155.385132,142.484314,130.608276,129.153732,126.153740,125.905807,129.401657,129.600006,139.327286,157.542160,173.401672,186.996689,195.550415,196.285950,183.996689,160.773560,138.856216,126.451263,121.988441,116.963646,87.971924,71.368614,86.757050,101.170265,75.360352,34.616550,14.992581,10.633078,5.172739,9.625638,7.728940,7.446297,2.307443,0.568597,0.195042,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601619.155000,4612595.550000,4385,3955,117.171089,172.228943,165.906616,158.633896,142.592560,131.947937,129.766129,127.402489,126.187614,130.551254,129.873566,139.261978,157.551254,174.146286,188.485138,196.708267,196.377701,184.733063,160.261993,139.088440,127.113235,122.956215,118.154564,89.113243,71.129776,85.542992,100.964470,75.642174,36.104980,15.411589,10.741343,6.003317,8.685966,8.586792,7.518196,2.794221,0.890911,0.169422,0.176034,0.249587,0.006612,0.095868,0.007438,0.053719,1.209091,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.955000,4612595.550000,4434,3955,110.821510,166.267792,166.226471,156.771927,143.226471,132.028122,129.523987,127.532249,126.862831,129.424820,128.887619,140.003326,158.416550,174.284317,187.201675,197.333908,195.912415,184.755386,159.639694,137.796707,125.052910,121.838036,117.400017,89.515724,70.276054,86.697540,101.325638,76.375237,34.813244,14.878531,10.672747,4.915712,7.225634,6.542161,7.945470,2.364469,0.756200,0.048760,0.590910,0.061157,0.002479,0.242149,0.005785,0.080165,0.000000,1.280165,0.000000,0.000000,0.000000,0.000000 -601631.755000,4612595.550000,4448,3955,122.338867,175.793411,167.685974,158.578522,145.454559,131.338867,129.462830,128.041351,126.462830,129.801682,128.644638,139.925629,157.760345,175.305801,187.049606,196.429764,196.371918,184.446304,160.801666,138.363647,125.611588,121.000015,117.545471,87.975220,70.314072,85.421501,99.347122,75.900841,34.355389,13.822332,10.685969,4.480174,7.442991,6.865301,5.856211,2.818188,0.568596,0.000000,0.063637,0.139670,0.009091,0.174380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.955000,4612595.550000,4464,3955,124.183487,172.596695,167.199997,158.571899,143.390076,130.687622,129.629776,128.133896,126.522331,130.381836,128.026459,140.084290,156.869415,174.819824,187.274368,195.604950,195.745453,184.307434,159.629745,137.133881,126.034729,122.009933,116.200020,87.960350,70.481010,85.646301,100.076050,74.596710,34.588448,13.512414,10.563655,6.041333,7.559520,7.811584,7.292576,2.184304,0.407439,0.056199,0.234711,0.207438,0.000000,0.314050,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.355000,4612595.550000,4501,3955,120.496704,178.281830,170.372742,161.108276,145.604141,133.058685,130.662003,129.976044,128.314896,131.670258,130.058685,141.075226,158.166122,176.033890,188.066956,197.306625,196.835556,184.686783,160.686783,138.885132,126.265305,122.496704,117.645470,88.835548,71.860344,85.794228,100.058693,76.223976,34.918201,14.276877,10.695061,5.024803,6.080178,6.427283,7.490921,2.766949,0.502481,0.157852,0.042975,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.555000,4612595.550000,4517,3955,102.028938,169.987625,166.954559,157.359528,140.723160,129.855392,128.599182,125.376053,124.714890,125.871918,126.152908,137.838852,156.136383,172.309937,183.657043,192.417374,192.111588,180.086792,156.632248,134.648773,123.210762,120.566132,114.863655,86.450432,70.979355,85.045471,98.904976,71.888443,33.640514,15.026464,10.442168,9.315716,8.094228,8.449599,7.152079,3.968603,0.505787,0.056199,0.128926,0.048760,0.050413,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.755000,4612595.550000,4533,3955,113.871918,171.648773,168.698364,159.483490,142.747955,130.615723,129.243820,126.690102,125.367783,125.747948,127.177704,138.921509,157.037201,172.632248,183.458694,192.971085,192.318192,179.078522,155.177704,135.400848,123.285141,120.789276,114.681831,85.929779,71.640518,84.987617,99.144646,73.004158,34.103325,14.367787,10.425639,9.038857,8.430592,8.473566,7.981832,5.130588,1.183473,0.103306,0.101654,0.085951,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.955000,4612595.550000,4549,3955,109.058701,169.190918,167.381012,157.430588,141.091766,129.529770,128.719849,125.190933,124.835556,124.934731,126.058701,137.009109,155.711578,171.273560,183.314896,192.133072,190.331421,178.876877,154.852081,132.967789,122.637215,119.695061,113.463654,84.364487,69.777710,83.662003,96.819031,72.339691,33.562828,13.675223,10.314895,9.449601,7.202491,8.261995,8.684311,3.313230,0.439671,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,2.012397 -601659.755000,4612595.550000,4588,3955,116.674400,177.806625,170.732239,157.657867,141.310760,130.657867,127.988441,125.657867,125.087616,125.798363,126.054558,137.757034,156.153732,172.170258,183.566956,193.087616,191.095886,177.434723,154.145462,133.393402,121.418198,119.988441,112.509102,85.856216,70.426468,83.401672,98.137199,71.004974,33.095886,12.106629,10.228118,8.361170,7.175217,5.788440,7.139682,2.909099,0.335539,0.162811,0.242976,0.034711,0.000000,0.000000,0.047934,0.000000,1.199174,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.555000,4612595.550000,4617,3955,122.431412,172.414886,169.613235,160.200012,143.604965,130.390091,130.720673,127.365295,126.745461,128.100830,127.497528,139.067780,156.861160,173.828110,185.414886,195.712402,193.704147,179.423157,155.745468,135.481018,123.910751,121.828110,115.472740,87.158684,70.142166,85.447945,98.604965,72.877693,34.852913,14.028115,10.497540,10.683485,7.066127,8.586789,7.653732,3.733891,0.493390,0.048761,0.105786,0.000000,0.062810,0.000000,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.555000,4612595.550000,4632,3955,117.696709,185.440521,169.242172,160.316559,145.399200,130.465302,130.903320,129.333069,129.217377,130.118195,128.291748,140.862000,157.845474,174.754562,186.382660,196.919861,194.729782,181.060349,156.721512,135.878540,125.415718,121.233902,115.936378,88.093407,72.432243,86.109932,99.390923,74.490097,33.994232,13.671092,10.539689,10.328940,7.679351,7.347121,8.600015,3.577694,0.476034,0.142150,0.102480,0.000000,0.000000,0.000000,0.000000,0.037190,1.461984,0.000000,1.146281,0.000000,0.000000,0.000000 -601676.955000,4612595.550000,4674,3955,125.365311,182.737183,173.497513,160.505783,144.538834,130.026459,129.976883,126.737206,127.307457,129.704147,126.852913,138.968582,156.059494,173.662796,184.952057,194.819824,192.538834,178.183472,155.547104,135.704147,123.026466,120.786797,113.836380,85.547127,70.133911,85.150436,96.811584,71.059532,31.943821,12.958697,10.348779,9.973568,7.185964,6.833897,8.268608,2.807444,0.557853,0.130579,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.276860 -601680.355000,4612595.550000,4691,3955,121.376053,183.830582,170.714874,160.301666,144.566132,130.888443,130.194229,128.433899,127.417374,130.673569,128.219025,139.309937,156.516541,174.971069,186.334717,195.764465,193.442154,178.640503,155.243820,134.590927,123.359520,121.028938,115.045471,85.590927,69.392578,84.045471,98.466957,69.772743,33.433903,12.252085,10.458697,9.019022,5.990095,7.733896,6.599188,2.858685,0.209092,0.123141,0.028099,0.000000,0.120661,0.152066,0.000000,0.000000,1.325620,0.000000,0.000000,0.000000,0.000000,0.000000 -601683.355000,4612595.550000,4706,3955,127.159523,182.399200,173.721512,162.506638,146.952911,133.366135,132.002502,129.845474,129.225647,132.473572,129.564484,141.019028,158.589279,176.035553,187.837219,197.795883,195.589279,180.622330,157.423996,136.614075,125.506638,121.928123,116.754570,87.721504,72.085144,86.448776,98.366135,71.159523,34.126465,13.858696,10.614069,11.826462,7.857864,8.609104,8.030591,4.599184,0.721490,0.000000,0.066942,0.055372,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.355000,4612595.550000,4736,3955,134.109924,189.060333,175.564468,164.771088,148.498352,133.746292,133.514893,130.853729,131.473572,134.564484,129.407455,142.002487,159.580994,176.564468,188.969421,198.374390,196.812408,180.977692,156.969421,137.109924,124.771095,122.928123,116.027298,88.209106,71.357872,88.151253,99.721504,70.680183,34.126469,12.876878,10.547954,10.390924,6.521499,7.493400,8.669436,2.739678,0.138843,0.168596,0.064463,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,1.214876,0.000000,0.000000,0.000000,0.000000 -601692.955000,4612595.550000,4754,3955,138.348785,193.943832,176.158707,168.166962,149.315720,133.679352,134.340500,131.993393,130.869431,135.902496,130.795044,143.290924,159.720688,176.894241,190.282669,199.398376,196.753738,180.464493,157.877716,138.076050,126.357040,124.117371,118.381836,88.200027,71.687630,88.604988,99.357040,71.357048,34.381836,15.206629,10.762002,10.628116,6.950426,8.081833,7.252080,5.356207,0.647109,0.109918,0.106612,0.047934,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.355000,4612595.550000,4771,3955,143.423157,197.877686,177.828094,167.588425,148.861160,134.530594,133.464478,131.737198,130.852905,135.976868,130.993393,142.530594,158.514038,176.910736,189.042969,198.638016,196.233047,181.191727,158.224792,136.968597,126.357033,122.679359,117.836372,87.927292,71.654564,88.059525,99.778534,71.042992,34.026466,13.203323,10.712417,10.687619,8.726460,8.298360,7.252904,3.851248,0.623969,0.319836,0.047108,0.296695,0.000000,0.000000,0.157025,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.355000,4612595.550000,4786,3955,149.806625,193.641342,179.219849,167.128937,149.525635,136.542160,134.624802,131.781830,131.178528,137.186783,130.889267,143.310776,160.104141,176.757034,190.740509,199.385132,197.013229,180.765305,158.542160,137.252899,126.104149,123.335548,118.509109,89.707458,72.277710,89.426468,99.682663,71.343826,33.591755,14.251257,10.773573,12.376876,6.837202,7.900839,7.533070,4.635547,0.617357,0.211571,0.198348,0.000000,0.000000,0.000000,0.000000,0.407439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.355000,4612595.550000,4801,3955,146.717377,189.419846,176.700836,167.700836,147.502487,135.576859,133.857864,131.659515,132.213226,135.485962,130.907440,142.378525,160.519012,176.948761,189.808273,199.312408,196.254547,180.320663,157.403305,137.155380,126.171906,124.361992,118.345459,88.180183,72.890923,88.535553,100.824806,71.180183,33.899193,14.787621,10.758697,11.787618,7.411582,7.598361,7.537204,2.903312,0.806613,0.220662,0.142976,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.155000,4612595.550000,4815,3955,115.842171,172.643814,171.619034,159.652084,143.668610,133.709930,130.420685,129.156219,129.081833,129.619034,130.114899,141.635559,160.486786,175.776047,186.817352,196.131409,194.495041,181.842163,157.908264,137.701675,125.817375,124.238861,118.354568,89.090103,73.205803,89.048782,101.280182,74.346298,34.619022,15.209109,10.759523,8.452080,7.812409,7.702492,9.522329,3.633893,0.642977,0.671902,0.231406,0.257852,0.058678,0.000000,0.000000,0.055372,0.000000,0.000000,2.477686,0.000000,0.000000,0.000000 -601709.155000,4612595.550000,4835,3955,111.393402,163.145462,167.947113,156.451248,143.368591,132.120667,131.004959,128.128937,126.360336,127.806618,129.219833,140.773544,158.748779,174.831406,185.856216,195.434708,193.161987,181.980164,157.690918,137.186768,126.236366,122.649590,116.963638,88.302498,72.112419,87.418205,99.839684,73.600021,34.682667,14.451259,10.633078,6.547945,7.206623,8.375219,7.461171,2.935544,0.702481,0.022314,0.000000,0.194215,0.057025,0.000000,0.232232,0.409918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.355000,4612595.550000,4851,3955,97.361168,165.815720,167.923157,156.923157,141.733063,133.063644,129.485138,127.187614,126.857033,126.708275,129.799179,139.625626,156.923157,173.129761,185.394226,194.212402,193.104965,181.848770,157.419022,136.741333,125.840508,122.286789,117.154556,89.460342,72.914894,87.410751,102.212410,74.757874,35.005806,14.482663,10.650432,6.007452,8.188444,9.311584,8.379353,3.388437,0.212398,0.136364,0.043802,0.000000,0.056199,0.000000,0.121488,0.000000,0.000000,0.000000,2.191736,0.000000,0.000000,0.000000 -601715.355000,4612595.550000,4866,3955,99.057869,161.983490,169.190094,154.950424,143.793411,131.818192,130.330597,127.743820,127.710762,128.768616,129.834732,139.578522,159.446304,172.925629,184.752075,195.727295,194.677704,183.074402,158.123978,137.586792,125.884315,122.429771,117.272743,89.090927,71.347122,88.157043,100.115715,72.661171,36.338863,11.900845,10.661175,6.982657,7.671913,10.084313,11.024810,4.730587,0.581820,0.245456,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.555000,4612595.550000,4892,3955,116.872742,159.889267,169.476044,157.418198,142.451248,132.930588,131.236374,128.897537,127.707451,130.095886,130.327286,140.029770,159.955383,175.558685,188.814896,196.476044,195.897537,183.343811,159.426453,139.054565,126.963646,124.930588,119.872742,91.583481,74.442993,89.170258,101.120674,74.409935,36.219852,15.916547,10.897540,9.541336,7.822327,6.727286,8.827288,3.261992,1.312401,0.123967,0.035537,0.000000,0.000000,0.005785,0.043802,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.755000,4612595.550000,4908,3955,120.569435,162.474396,166.631409,155.094238,141.383484,131.300842,128.714066,127.912407,127.689270,128.623154,128.838043,141.011597,158.391754,173.689255,186.714050,196.028122,194.152084,182.234711,159.168610,136.788452,126.871086,123.234718,118.036377,90.366959,73.127289,88.565308,101.102493,74.631424,35.499191,14.685969,10.730597,7.132244,7.614064,7.357036,7.085137,2.828933,0.903308,0.135538,0.340497,0.455373,0.000000,0.000000,0.047934,0.127273,1.350413,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.955000,4612595.550000,4924,3955,110.385139,163.699188,167.938858,154.897537,141.790100,132.145462,129.666122,128.360336,128.674393,129.360336,130.046295,141.806625,157.996704,174.996704,185.831421,194.600006,194.517365,182.219849,159.038025,137.319016,126.261169,122.203316,117.509102,89.583481,72.418205,86.509102,100.095879,73.823158,34.211590,14.019025,10.682664,7.264476,7.808277,8.507450,8.227285,3.141328,0.674383,0.291737,0.009918,0.000000,0.000000,0.000000,0.038843,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.355000,4612595.550000,4941,3955,96.055389,159.659515,167.684311,158.866119,144.452896,134.676041,132.271088,129.171921,128.461166,130.626465,130.940506,141.601654,160.841324,176.163635,187.692566,197.775208,195.328934,183.816528,159.411575,137.998352,126.841339,123.543816,120.163651,90.990097,75.271088,89.006622,100.981834,74.097534,35.362007,15.613242,10.923986,7.757037,8.489271,8.319848,8.524808,3.041330,0.871077,0.200827,0.323141,0.052893,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.355000,4612595.550000,4961,3955,104.222328,157.822327,165.107452,158.752075,141.942169,131.338852,126.876038,126.115715,125.570267,126.619850,127.818192,139.561996,157.909103,173.768616,185.520660,195.090912,194.446274,182.140518,157.264481,137.429764,126.165306,122.247948,117.090927,89.355385,71.652908,88.000015,100.520676,72.330597,35.677708,12.231421,10.644647,5.306622,7.891749,8.187616,8.738856,4.729761,1.176862,0.900829,0.285124,0.164463,0.200000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,2.168595 -601737.355000,4612595.550000,4976,3955,111.476051,161.015701,165.495041,156.081818,142.428925,132.726471,130.304977,129.139694,129.643814,130.544647,131.486801,141.751236,159.271912,175.619019,187.610748,195.676865,195.643799,184.990906,158.701660,137.536362,126.957870,124.197540,118.263657,89.891754,73.809113,87.172745,101.048782,75.536385,34.238857,13.674398,10.751258,7.997532,9.138029,7.056210,7.512408,4.980173,0.756200,0.604960,0.028099,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.735537,0.000000,0.000000 -601750.755000,4612595.550000,5043,3955,113.413231,162.235565,169.640533,157.202515,144.161194,135.417374,131.409103,129.838852,129.309937,130.136383,131.698364,142.078552,160.516556,175.789276,187.888443,196.954559,196.533081,183.979355,160.078552,138.574417,127.888443,124.582649,119.590919,92.780998,75.938034,89.995880,103.450424,73.764481,35.772747,14.076878,10.871919,6.557861,6.677700,8.017368,9.189269,2.702487,0.601654,0.111571,0.000000,0.050413,0.149587,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.307438 -601753.755000,4612595.550000,5058,3955,107.579361,153.859528,164.206604,157.512390,143.520676,137.702499,138.760345,137.082657,135.710754,137.082657,136.115723,147.247940,165.942154,181.289276,194.545456,202.495865,200.694214,190.008270,166.214874,143.314056,133.404968,128.710754,123.181831,96.710762,78.297539,92.768608,105.776878,78.363655,36.041340,15.236382,11.198366,5.486789,7.472739,9.523980,7.133070,4.159511,1.404134,0.542150,0.598348,1.800001,0.535538,0.985125,0.000000,0.142149,0.000000,1.319835,0.000000,0.000000,0.000000,0.000000 -601759.355000,4612595.550000,5086,3955,122.016548,164.289261,165.057846,158.834717,145.198349,135.132248,133.537201,131.281006,130.322327,133.074402,132.702499,142.851242,161.966949,176.479340,190.669418,198.429749,197.413223,186.363632,161.669418,139.041321,129.685974,124.702492,119.909103,91.925644,75.115730,89.314072,102.578529,76.685974,36.355389,14.403324,10.900846,4.982655,7.362822,9.536377,7.164475,4.019844,0.290084,0.227273,0.110744,0.000000,0.105785,0.000000,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.355000,4612595.550000,5101,3955,109.733070,160.838013,170.766129,160.427277,144.138031,134.394226,131.063644,128.245468,127.228935,129.584305,130.402496,142.080170,159.881821,176.633896,189.485138,198.534714,198.427277,185.766129,162.179352,139.452072,129.501663,123.840508,118.609100,90.584305,73.848770,87.328110,101.245461,73.104965,32.344646,13.125637,10.782663,4.378521,7.517368,8.485963,8.108276,5.973562,3.403308,2.952068,2.911571,3.961158,4.271902,3.372728,1.666943,1.168596,0.000000,2.519008,0.000000,0.000000,0.000000,0.000000 -601767.355000,4612595.550000,5126,3955,121.028938,171.373566,170.307449,162.538849,145.629761,136.976868,133.604965,132.456207,131.662811,133.571899,135.390091,144.836380,162.910751,178.447937,191.654556,198.828110,198.447937,186.861160,163.414886,141.447937,129.927277,126.357025,120.927277,93.092575,76.257858,89.563644,103.051239,76.770256,36.514072,16.096710,10.993407,6.076044,9.247122,7.687617,8.890924,5.454554,0.904960,0.217356,0.000000,0.003306,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.155000,4612595.550000,5140,3955,117.889275,166.451248,167.418198,159.881012,145.319016,134.649612,131.806625,129.335556,129.434738,131.558701,131.426468,141.831421,159.128937,175.343811,188.071091,196.558670,195.583466,184.418198,161.244644,138.864471,127.905807,122.881012,118.600021,90.079361,72.781837,87.459526,100.674400,74.509109,35.823162,12.530597,10.781838,4.992571,6.739683,7.866129,7.204971,4.729761,0.189257,0.541323,0.105785,0.000000,0.000000,0.000000,0.077686,0.126446,0.000000,2.573554,0.000000,0.000000,0.000000,0.000000 -601773.955000,4612595.550000,5159,3955,112.755394,165.771927,168.656204,161.110764,146.879364,136.193405,133.557037,132.672745,131.085968,133.416550,134.160355,144.738861,161.788452,179.152084,190.647949,199.788452,199.623154,187.714066,163.201675,141.854568,129.953735,125.672745,121.036385,92.276054,75.771919,90.490929,103.366959,77.350433,36.730598,15.914895,11.003325,6.406623,8.193404,7.982658,9.512411,4.266124,0.879341,0.218183,0.238017,0.272728,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.355000,4612595.550000,5191,3955,113.945473,166.349594,165.721497,159.465302,146.746292,136.010757,133.275208,132.523148,131.291748,133.936371,133.374390,143.547943,161.498352,178.349594,189.738022,199.258682,198.870255,187.448761,163.432236,141.506622,130.118195,125.275230,120.390930,92.779358,75.134735,90.341347,103.242165,77.481842,36.647129,16.233902,10.944647,5.234721,9.349602,8.054560,9.904147,4.971908,1.249589,0.500001,0.095041,0.000000,0.159504,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.429752 -601783.755000,4612595.550000,5208,3955,126.557869,164.243820,170.772766,162.880188,147.781006,136.285141,133.359528,130.566132,130.045471,133.293411,133.326462,144.318192,162.161179,178.268631,189.673584,199.070282,198.805817,187.681854,162.921509,141.128113,129.152908,126.086792,120.136383,92.400841,76.152908,87.582664,101.425636,75.409103,35.772747,15.348778,10.921506,5.129762,7.827287,6.521502,7.027286,4.137197,0.742151,0.042975,0.226447,0.059504,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.355000,4612595.550000,5221,3955,112.520676,169.287613,168.469421,160.948761,145.684311,134.676041,133.758682,131.990082,132.180176,135.601654,136.527283,147.320663,163.196701,180.527283,193.171906,201.370255,201.709091,189.370255,164.163635,142.304138,130.072739,126.494225,119.890915,92.353745,73.899193,88.576881,100.841331,75.122337,34.047958,12.933902,10.899192,4.226456,6.276875,7.138029,6.561167,2.712403,0.372728,0.808266,0.000000,0.061157,0.156199,0.000000,0.004132,0.177686,0.000000,1.333058,0.485124,0.000000,0.000000,0.000000 -601789.355000,4612595.550000,5236,3955,125.430603,171.480179,171.414062,158.843811,147.430588,134.579361,132.967789,131.397537,130.794235,134.058685,132.600845,143.620667,161.108276,177.951248,190.571091,199.819016,197.901672,186.769440,162.976044,139.852081,129.645462,126.100014,121.009102,91.984314,75.166138,90.455383,102.752899,76.529770,36.504978,14.052084,11.000845,5.504969,7.878528,8.706626,8.949601,2.011574,0.351241,0.040496,0.650414,0.000000,0.000000,0.000000,0.030579,0.277687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.955000,4612595.550000,5249,3955,117.247116,173.204147,169.642151,161.468597,146.873566,135.947937,134.799194,134.080185,131.121506,134.576050,132.906631,144.047119,161.567780,178.542984,189.708252,198.799164,200.179337,187.832230,162.534714,140.939682,129.146301,125.476875,121.245476,92.204147,75.741341,90.898361,102.501671,76.567787,36.956219,14.885143,11.022334,5.783480,8.358693,6.692575,7.879352,3.334717,0.810746,0.276034,0.084298,0.122314,0.050414,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.355000,4612595.550000,5271,3955,114.060356,169.921494,171.466949,164.483475,150.020660,136.921509,135.293411,134.367798,131.384308,135.301666,132.838852,144.450409,161.855377,178.566116,191.797516,200.830582,199.657028,187.293396,164.194214,142.557846,131.714890,127.822327,121.409103,94.342995,76.607460,91.500023,104.648773,78.326469,37.533077,15.375224,11.037209,6.157861,8.164477,10.577702,8.649600,2.539675,0.613225,0.377688,0.066116,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.355000,4612595.550000,5306,3955,132.758698,184.395050,175.287613,164.775208,149.824799,135.766968,134.419846,132.006622,131.890930,135.353729,133.502487,144.742157,162.072739,179.287613,191.320663,200.890915,199.361984,188.378525,165.543808,142.700836,130.362000,127.105804,122.436386,92.651253,76.047951,91.452904,102.039680,77.064476,34.626469,14.973573,11.130599,4.814059,7.257040,6.834723,7.713238,3.407446,1.175210,0.808266,0.409092,0.000000,0.019835,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.755000,4612595.550000,5333,3955,128.522324,179.604965,179.348770,166.803314,149.993393,135.943817,135.604965,131.960342,130.852905,132.662827,132.125626,144.547119,161.613235,179.332245,190.629761,198.704147,199.497528,185.869431,161.976868,140.175217,129.001663,126.208275,119.836372,92.249596,74.968605,89.571922,102.034721,74.786797,36.191753,14.900018,10.894234,10.319847,10.335551,11.023154,9.276047,4.890918,1.739672,0.049587,0.340497,0.140496,0.018182,0.000000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.555000,4612595.550000,5347,3955,121.522331,175.316528,173.465302,162.341339,148.076859,134.961166,134.002487,131.423981,130.531418,130.597534,130.903320,143.184311,161.002502,176.291748,188.481827,196.399185,195.366119,182.556198,158.994232,138.680176,127.539680,124.523155,117.754562,89.638855,74.052078,87.622330,101.076874,73.862000,34.291756,15.994233,10.704977,9.004972,8.770263,8.261170,8.042988,3.279346,1.306614,0.556200,0.194215,0.088430,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.355000,4612595.550000,5371,3955,124.954559,179.855392,177.491745,163.458679,145.929764,134.210754,133.285126,130.524796,129.706619,132.028931,130.433899,141.979340,160.095047,175.433899,187.268616,196.161179,194.574402,181.243820,156.962814,136.822311,126.384308,122.995872,117.772736,88.309937,72.929771,85.871918,98.442162,72.260345,33.318203,14.428943,10.706631,8.489270,7.548774,8.330593,9.381006,3.805794,0.649589,0.260331,0.180166,0.391736,0.161984,0.000000,0.007438,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.755000,4612595.550000,5398,3955,124.094223,184.557037,180.036377,164.813248,149.507462,137.077698,136.193405,131.945465,132.028107,133.242981,132.069427,143.962006,160.697540,176.962006,188.474396,198.631424,196.681015,184.515717,160.408279,139.325638,127.482658,124.011581,118.400009,90.160339,75.143814,86.276047,100.077698,74.846291,34.747128,15.488449,10.763656,8.142163,8.285963,8.274394,9.753733,4.561166,0.457026,0.221489,0.466944,0.115703,0.000000,0.254546,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,4.170248 -601824.955000,4612595.550000,5414,3955,121.678543,185.871902,175.500000,162.946304,146.400848,132.772751,131.731415,130.359528,128.227295,130.450424,129.342987,141.814072,160.235550,175.128098,186.838837,195.194214,194.549591,180.500000,157.409103,136.351257,126.268608,122.177704,116.590927,88.599190,72.384315,86.681839,98.128113,71.582672,33.243820,13.247952,10.599193,9.389271,8.223156,9.253734,7.995882,2.926452,1.151242,0.076860,0.118183,0.303306,0.000000,0.000000,0.000000,0.047934,2.629752,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.955000,4612595.550000,5429,3955,122.414070,185.442154,176.351242,164.871902,147.863632,136.425629,135.095062,132.822327,130.929764,133.904968,132.210754,144.524811,161.012390,177.524796,189.665283,198.541321,196.747940,183.227280,158.962814,137.640518,127.384315,124.326462,117.863655,89.309937,74.491753,86.954559,99.318199,72.061996,33.706631,13.631421,10.714895,9.028940,6.577698,7.768607,8.342988,3.280173,0.628101,0.454546,0.373554,0.000000,0.223967,0.477686,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.955000,4612595.550000,5449,3955,135.374405,182.766129,176.303314,164.551254,147.832245,133.865311,135.427277,132.063660,130.823990,131.981003,131.700012,143.146286,161.666946,176.840500,187.956207,198.898361,196.485138,182.212402,160.138031,137.385956,126.989281,123.972755,118.154564,89.708290,72.947960,88.782669,99.485153,72.551262,33.931427,14.300845,10.741341,9.953734,8.188442,8.485964,9.495881,4.567776,1.519838,0.057025,0.321488,0.244629,0.391736,0.081818,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.555000,4612595.550000,5472,3955,142.310760,185.157028,172.538849,164.084305,146.257858,131.613235,131.803314,128.869431,128.654556,130.795044,128.340500,140.373566,158.009933,174.042984,185.571915,195.613235,194.299179,181.398361,156.770264,137.390091,126.431412,124.109100,118.200012,88.795059,72.811584,86.753738,98.720680,71.952087,32.828117,12.019024,10.745472,9.290923,7.468608,7.380178,8.228114,3.511578,0.507439,0.285951,0.176034,0.069422,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,2.300827 -601841.355000,4612595.550000,5496,3955,126.442986,188.052902,176.226456,167.003311,147.796707,134.631409,134.523987,131.730591,131.259521,134.490921,130.763641,142.730576,159.672729,176.639679,189.457855,197.879349,195.705795,181.358688,157.697525,137.061172,127.168610,124.416542,117.854553,89.780174,73.639687,87.953728,100.028107,71.325638,34.804977,14.462828,10.714068,10.847950,8.559518,10.192576,10.004147,4.806621,1.092564,0.109092,0.095042,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601845.555000,4612595.550000,5517,3955,118.523163,186.619019,174.974380,167.222321,148.585968,135.395889,134.387619,131.652084,130.627289,134.437210,131.172745,142.519836,159.495056,176.255371,188.685120,198.924789,196.222321,182.073563,159.263657,138.528122,127.784317,124.552910,118.809113,90.313240,73.313240,86.718201,98.594231,71.676880,32.875225,12.918200,10.800845,11.057866,7.557865,8.221500,8.742164,5.887613,1.457027,1.038845,0.881819,1.613225,0.324794,0.000000,0.123967,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.955000,4612595.550000,5539,3955,147.314880,192.728119,178.835556,166.471909,151.066940,137.620667,137.909927,135.893402,135.215714,138.414062,134.752899,145.819016,162.025635,179.149597,191.381012,201.323151,197.695053,182.033890,159.017365,138.736389,126.736374,122.959518,117.281830,88.257050,74.009109,86.620682,98.744652,70.909935,32.959522,14.656217,10.662004,10.363651,7.163649,9.219022,9.476048,4.379346,0.774382,0.562811,0.240496,0.293389,0.000000,0.191736,0.063637,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.755000,4612595.550000,5573,3955,141.702484,201.551239,182.906601,172.128098,153.617355,139.204147,138.666946,136.427277,135.493393,140.683472,135.270264,146.121475,162.518173,179.576019,193.443802,202.253708,199.551239,183.476852,161.832230,141.873550,130.361176,127.030594,121.154564,91.369438,75.766136,90.253738,101.807457,73.733078,35.154568,16.134729,11.014070,13.252911,8.135550,8.932245,10.316545,4.206620,1.214052,0.744630,0.559505,0.271901,0.333059,0.000000,0.107438,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.155000,4612595.550000,5630,3955,113.082664,165.396713,169.272751,158.363647,144.743820,133.785141,132.719025,129.752075,129.107452,130.305801,130.429764,141.140518,160.057861,176.066132,187.809937,196.900848,195.644638,184.049606,160.057861,138.842987,126.603325,124.603325,118.727287,89.735550,74.148773,89.570267,100.917374,74.595055,35.363651,15.130596,10.793407,8.142161,7.805798,9.058691,7.638029,4.142159,0.509919,0.417356,0.312398,0.000000,0.000000,0.000000,0.095868,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.755000,4612595.550000,5723,3955,122.027298,166.677704,169.851257,159.380188,145.198364,136.933899,133.826462,130.760345,130.479355,132.173569,133.504150,144.000015,162.066132,178.123978,189.611588,197.925629,198.297531,186.107452,161.851257,140.735550,129.884308,125.834724,120.454559,92.223167,75.876060,91.223167,102.495895,75.553741,37.330597,15.110764,10.950433,7.476046,9.069437,8.595883,8.018195,4.085132,0.218182,0.278514,0.047108,0.000000,0.000000,0.000000,0.000000,0.256199,0.990083,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.355000,4612595.550000,5866,3955,111.597534,166.704971,170.820663,160.903305,147.233887,136.076889,133.382660,131.680176,130.704971,132.713242,133.994232,144.564468,163.151245,178.399185,191.903305,199.870255,198.250427,188.308273,163.043808,140.366119,129.795883,125.680183,120.390923,92.605804,75.266968,90.985962,102.977699,74.812416,33.762829,13.163655,10.944647,5.362820,8.250428,7.752907,6.687615,2.684304,0.881820,0.043802,0.166943,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.155000,4612595.550000,6040,3955,125.267792,173.375214,169.656204,164.234711,150.028107,137.548767,136.003326,133.945480,132.466141,135.623154,136.251266,146.986786,163.995041,180.598343,193.218185,202.507446,202.242981,191.424789,166.416534,144.557022,132.796707,129.416550,123.309113,94.937210,76.928947,92.796715,105.317375,78.391754,36.416550,15.123985,11.209937,4.609099,7.598362,7.933900,7.104145,2.565295,0.704960,0.000000,0.158678,0.068595,0.003306,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.555000,4612595.550000,6112,3955,119.329773,182.238861,172.362823,164.883484,151.023987,138.585968,136.511597,135.751266,134.742996,138.842163,137.214066,148.577698,166.395889,182.916550,195.635559,206.205811,205.040512,195.379364,169.164490,147.875229,136.891754,131.313248,125.718201,96.205803,79.676880,94.792580,106.404152,81.222336,38.040516,16.192579,11.428945,5.630589,8.482662,7.566957,7.934724,3.456206,0.329753,0.000000,0.270249,0.075207,0.011570,0.000000,0.014876,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.355000,4612595.550000,6146,3955,100.769440,172.607452,176.880173,163.541321,148.161179,136.309937,137.070267,135.739685,133.690094,135.342987,135.797531,147.276871,166.136368,182.152893,194.830582,204.599167,204.971069,192.070251,166.954544,144.640518,133.772751,130.020676,126.045471,94.739685,80.342995,93.301666,106.103325,77.070267,37.227291,16.304977,11.458695,8.911584,7.630593,8.851253,10.251254,6.566126,0.838845,0.781820,1.008266,0.388430,0.587604,0.000000,0.099174,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601974.955000,4612595.550000,6164,3955,116.999191,180.908279,179.900024,163.412399,146.181000,134.536377,135.734726,131.701660,130.643814,131.561172,132.379349,143.288437,162.544632,178.974396,192.123154,201.635559,200.949600,188.453735,164.346283,141.437195,130.924805,127.461998,122.900009,92.420670,78.081841,91.900009,103.569443,77.139687,38.081841,14.018199,11.172746,7.831418,8.453732,8.771088,8.881832,4.492570,0.546282,0.671076,0.343803,0.000000,0.000000,0.000000,0.001653,0.426447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.555000,4612595.550000,6177,3955,118.969437,184.688431,181.142960,167.076889,150.944656,138.812424,138.275223,134.242157,134.019012,135.291748,135.440521,147.060349,165.143005,182.192551,193.333069,205.010757,205.027283,190.002487,166.448776,143.738037,132.407440,128.944641,125.754562,95.407455,79.928116,93.572739,106.109932,77.828934,39.713242,17.107458,11.432249,12.332247,10.229767,11.750429,10.480180,4.627281,1.263639,0.197521,0.100001,0.053719,0.000000,0.000000,0.017356,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.555000,4612595.550000,6192,3955,118.433891,177.979355,176.814087,160.020676,147.475235,133.880173,134.045456,130.268600,130.161163,131.648773,131.632233,144.549622,161.433899,178.309952,190.863647,201.822327,200.880188,186.979355,163.318192,141.144653,130.888443,126.913231,121.954552,93.805801,77.227287,92.657043,104.871918,75.177704,37.533073,15.889273,11.086796,9.859518,8.169435,9.481006,8.644640,4.400008,1.017358,1.002481,0.324794,0.187603,0.000000,0.000000,0.152893,0.262811,0.000000,0.000000,0.000000,0.000000,2.613224,0.000000 -601988.555000,4612595.550000,6232,3955,122.995880,191.739670,179.177689,160.904953,144.137207,132.930588,134.046295,131.723984,130.881012,133.541336,133.698364,144.639679,161.466125,177.714050,189.416534,199.242981,199.176865,183.614883,161.143799,138.085953,126.872742,122.879349,119.309105,89.953728,74.499191,88.590096,100.383484,74.557045,37.971920,13.986795,10.846300,11.086792,9.717370,13.033075,11.755386,7.489264,3.303310,2.702482,3.115705,2.471076,1.376860,1.285951,0.877686,1.631406,0.000000,0.671075,0.456199,0.039670,2.643802,0.000000 -601991.555000,4612595.550000,6247,3955,106.763649,181.719025,176.289276,161.958679,144.231400,132.719025,132.785141,129.793411,127.826462,131.685974,130.429764,141.983490,161.355392,178.148773,190.066132,200.570267,199.322327,186.479355,162.024811,140.198364,129.570267,126.727287,121.636383,92.727287,77.057869,90.735550,104.256218,74.049606,36.099194,14.300844,11.057869,11.159518,7.510757,9.371915,9.449599,5.184306,1.690086,0.985125,0.412397,0.134711,0.000000,0.000000,0.141323,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601996.755000,4612595.550000,6273,3955,110.171913,187.506622,176.762817,166.101669,148.812424,136.349609,135.142990,132.093399,131.597534,134.597534,133.589264,145.828949,163.101669,179.878525,192.655380,204.184311,203.093399,188.390930,164.498367,141.572754,131.151260,128.539688,123.572739,94.217369,79.085136,93.589272,105.357864,76.349602,37.349606,16.376877,11.233903,13.322330,8.633897,8.670260,12.088445,5.272735,1.193391,0.957026,1.257854,0.258678,0.443803,0.233884,0.070248,0.068595,0.000000,1.487603,0.000000,0.000000,0.000000,0.000000 -601999.755000,4612595.550000,6288,3955,118.023155,187.782639,180.782639,166.708298,149.129776,135.113235,135.642181,132.650436,131.600845,134.195892,132.138031,144.551270,162.906631,180.526443,192.295029,204.402466,203.121490,187.989243,163.931427,141.981018,131.385971,129.104980,123.609108,93.931419,77.129768,93.617371,106.038864,74.782661,38.683487,16.228945,11.237210,11.840513,8.415717,10.757867,9.404147,5.800835,1.300830,0.191736,0.259505,0.000000,0.019835,0.000000,0.023141,0.000000,3.123967,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.355000,4612595.550000,6306,3955,109.126472,188.638855,180.465302,164.985962,148.531418,135.052078,135.109924,132.539688,131.853729,134.671921,132.985962,145.242157,163.977692,181.498352,192.564468,203.250427,202.746292,188.043808,164.341324,143.415710,131.837204,128.671921,123.300018,95.647125,78.514893,93.713234,105.787621,76.514893,38.630600,14.876050,11.209110,11.871091,8.363650,8.775221,9.852907,5.701663,0.350414,0.077686,0.090083,0.000000,0.147934,0.000000,0.085951,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.955000,4612595.550000,6324,3955,115.752907,170.265305,168.728088,159.653717,146.645462,132.554565,131.769440,128.744644,127.257034,130.265305,128.513229,139.438873,155.405777,172.017365,183.422333,194.050430,194.240509,180.769440,156.422318,136.215714,126.678528,123.223976,118.281830,91.579353,74.909927,89.918198,99.587616,73.678528,35.496716,13.825636,10.752911,5.061167,6.668609,6.626458,6.591748,3.109923,0.408266,0.255373,0.138843,0.157852,0.031405,0.197521,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.755000,4612595.550000,6348,3955,122.842995,180.776871,170.710754,163.826462,147.933899,135.884308,132.925629,130.140518,127.867790,131.909103,129.834732,140.214905,157.371918,174.462830,184.330597,195.917374,195.578522,181.834732,158.636383,139.694244,127.933907,124.330605,119.454559,91.272743,77.826469,90.859520,100.512413,75.380188,37.082664,14.514894,10.859524,8.629765,7.212411,9.409931,8.687616,3.589262,0.280167,0.011570,0.094215,0.076033,0.000000,0.066116,0.006612,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.355000,4612595.550000,6381,3955,110.198357,167.289276,173.190094,162.165298,149.404968,135.842987,135.223160,131.264481,130.495880,132.545471,131.090927,143.247955,158.809937,175.264465,187.190079,197.049591,195.983475,183.743805,161.074402,138.603317,127.495880,124.537209,119.727287,93.876053,78.148773,91.123985,103.694229,76.677704,37.818203,15.694233,10.884315,7.552079,9.349603,7.901666,8.761171,2.891740,1.066945,0.311571,0.000000,0.000000,0.000000,0.066116,0.247934,0.239670,0.000000,0.000000,2.044628,0.000000,0.000000,0.000000 -602021.555000,4612595.550000,6397,3955,107.195885,167.820663,168.886780,159.638855,145.093399,132.713242,130.936371,128.647125,126.680183,129.010757,128.382660,138.688431,153.911575,170.721497,182.787613,192.283478,192.432236,179.738022,156.374390,135.969421,125.233902,121.118195,117.481834,90.167786,75.035561,91.382660,101.043823,75.250435,35.019032,15.653737,10.680185,6.544640,9.114892,8.269434,8.015717,2.315706,0.896695,0.467769,0.148761,0.376033,0.128926,0.119835,0.233884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602024.755000,4612595.550000,6413,3955,101.962830,167.747940,171.095047,162.095047,146.466949,135.797531,133.194229,129.508286,129.681839,131.409103,130.789276,140.706604,157.219009,173.433884,185.301651,195.078506,194.871902,181.475204,158.483475,137.929749,126.590927,123.516548,118.681831,92.210762,76.334724,91.119850,100.830597,75.516548,38.128124,13.938861,10.789275,7.587615,8.211586,8.354558,6.095878,3.042153,0.435538,0.358678,0.604134,0.512397,0.010744,0.000000,0.318182,0.169422,1.551240,0.000000,0.000000,0.000000,0.000000,0.000000 -602033.755000,4612595.550000,6458,3955,95.441345,156.548767,164.424789,158.209915,142.532257,128.887619,128.532257,124.895889,125.193405,128.251266,126.176880,136.457870,153.590088,169.474380,181.664459,191.796692,191.127274,178.209915,155.656204,134.309097,124.548782,119.728935,115.836372,88.357040,74.340523,90.753738,100.216545,73.803329,34.555389,13.882659,10.530599,6.051250,8.246293,7.854557,7.490093,4.431410,2.076862,0.964464,1.003307,0.696695,0.811571,0.064463,1.014050,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602037.155000,4612595.550000,6475,3955,101.381004,161.174393,168.686783,159.017365,144.604141,132.976044,130.860336,128.157867,126.827286,128.860336,129.215714,138.752899,155.736374,171.381012,182.248764,191.843796,192.306610,179.612396,156.438843,136.835556,125.678528,122.595879,116.918198,90.893402,75.017365,90.984314,100.976044,74.951263,35.290104,15.611589,10.628944,4.585960,7.614892,7.692573,7.127284,3.408270,0.481820,0.054546,0.311571,0.032232,0.000000,0.343802,0.167769,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602041.955000,4612595.550000,6499,3955,103.029770,155.062820,163.922318,157.029770,142.748779,133.277710,129.476059,128.038040,126.657875,126.757050,127.376877,137.575226,154.195053,170.310745,181.765289,190.699173,191.757019,178.649582,154.905792,135.062836,123.004982,120.203323,115.781837,91.633080,75.120682,90.360352,100.806633,72.244652,34.690929,15.010762,10.525639,6.639681,7.426460,6.529763,7.481006,2.991740,0.403307,0.619009,0.312398,0.214876,0.000000,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.355000,4612595.550000,6536,3955,99.576057,158.823975,166.121490,156.823975,144.319839,133.749619,131.162842,128.014069,126.534737,128.352921,128.295074,138.559509,154.956207,170.823975,182.394226,192.435547,191.997528,180.344635,156.204147,134.997543,125.567795,120.898376,116.881844,90.212425,75.352921,90.220688,100.609116,74.220688,35.278534,13.381835,10.625639,5.054555,8.797536,7.304971,7.054557,2.520666,0.418183,0.320662,0.284298,0.035537,0.002479,0.130579,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602056.955000,4612595.550000,6574,3955,98.802498,160.372726,165.695038,158.835541,145.926468,135.422333,132.447113,129.133072,128.976044,130.199188,130.604141,140.529785,156.438843,172.174377,184.471893,194.273544,192.802475,181.314880,157.612396,135.967804,126.579353,122.645470,116.736374,90.909927,75.620682,92.009109,100.728111,75.314896,36.620682,15.013241,10.612415,6.219020,7.960346,8.340508,7.138029,3.066122,0.651241,0.312398,0.271075,0.166943,0.007438,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602064.555000,4612595.550000,6612,3955,93.354553,149.809113,167.081833,156.470261,142.643814,132.205795,130.032242,126.081833,125.280174,125.784309,127.040504,137.404144,153.569443,169.462006,181.569443,191.197540,191.230591,179.685150,155.420685,134.338028,124.007446,120.842163,116.172737,90.255386,74.875221,88.709938,99.445465,73.437210,36.205803,14.919026,10.561176,6.663649,8.742990,8.056211,7.653733,2.813228,1.058680,0.124795,0.166116,0.148761,0.001653,0.072727,0.000000,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602071.355000,4612595.550000,6646,3955,100.390930,155.597549,167.853745,158.804153,143.862000,133.985977,130.382660,127.085144,127.473579,127.977707,128.853745,139.118210,155.729782,171.564468,182.771088,191.531418,192.944641,180.506622,156.787628,135.655396,126.308289,121.415726,117.754570,91.366135,75.118202,89.928131,102.043823,75.101677,36.076878,14.226464,10.704978,6.404971,10.264478,8.233069,7.509929,3.978518,0.498348,0.245455,0.044628,0.000000,0.019835,0.152067,0.277686,0.000000,2.329752,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.155000,4612595.550000,6675,3955,103.490105,143.828934,166.762817,156.167770,143.217361,133.052094,131.275223,126.680191,126.762833,127.399193,127.200851,138.853729,154.828934,169.531433,181.010788,191.423981,191.043808,179.019043,155.440506,135.572754,124.680191,121.423988,115.936378,90.134735,75.341347,90.233910,100.771095,74.655396,35.547958,14.502498,10.539688,5.852903,7.452908,8.495053,5.838028,4.104137,0.347935,0.481819,0.228100,0.000000,0.000000,0.271901,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602083.155000,4612595.550000,6705,3955,93.652908,149.104141,163.980179,154.426468,143.814896,134.872742,132.633072,128.236389,127.633080,127.376877,128.261185,138.690918,153.699203,169.682663,181.781830,192.393402,192.038025,179.608276,156.608276,134.732239,126.087624,122.360352,116.781837,91.128944,76.145477,89.285973,98.963654,72.773575,35.393406,14.852910,10.616548,5.300837,8.051255,8.308276,6.314888,2.614054,0.195042,0.031406,0.235538,0.064463,0.100000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.755000,4612595.550000,6733,3955,95.347122,158.305786,166.140503,154.694229,141.743820,132.900848,128.272751,126.619850,124.768608,125.842995,127.173569,137.438034,153.603317,168.900833,180.537201,190.785126,190.099167,177.950424,155.057861,133.727295,124.644646,120.966957,115.545471,90.314064,73.710762,89.966957,97.867783,71.652908,34.099194,12.649604,10.504150,4.825628,6.866130,8.211583,6.086789,2.547112,0.290910,0.233059,0.223968,0.058678,0.000000,0.076033,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.955000,4612595.550000,6764,3955,97.590927,159.111588,165.111588,157.342987,144.400848,133.805801,130.334732,128.466965,126.987617,126.863655,128.219025,138.384308,155.012405,170.028946,181.946274,191.458694,192.095062,179.549591,156.524811,135.037201,125.433899,121.285141,116.318199,90.524811,74.971092,89.855385,100.772743,73.078529,33.714897,14.752085,10.574399,6.804144,7.883485,7.341335,6.193400,3.633063,0.646282,0.003306,0.151240,0.000000,0.006612,0.064463,0.184298,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,3.147934 -602102.355000,4612595.550000,6801,3955,84.503326,155.387619,166.619034,156.866959,143.453735,133.172745,130.825638,128.288452,126.015717,127.197533,127.974396,138.230591,155.767792,169.751266,181.900024,191.073578,191.594238,179.577698,156.098373,135.503326,125.238853,121.379349,116.627281,91.255394,74.767792,90.073570,99.850433,73.949608,34.288448,13.617373,10.602499,7.338856,7.423156,8.370260,7.489269,2.781822,0.525621,0.180166,0.323141,0.209918,0.107438,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.955000,4612595.550000,6844,3955,106.097534,159.378555,167.601669,158.295914,144.312439,133.915710,131.370270,129.180176,127.692574,128.271088,129.419846,139.312439,155.783508,170.890930,182.783493,193.568619,193.056213,180.601669,157.494247,137.419876,126.519020,123.667786,118.072739,91.271088,76.833069,91.535553,101.337204,73.766960,35.560352,16.208282,10.733903,6.418194,9.461174,9.236377,8.208279,3.325626,0.455374,0.295043,0.161158,0.178513,0.000000,0.085951,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.955000,4612595.550000,6874,3955,101.191765,161.026459,169.233063,159.580185,142.257874,131.547134,129.778534,127.894241,127.051262,127.753746,128.464493,138.728958,154.431427,170.398361,182.282654,192.414886,191.555374,180.216537,157.414886,135.646301,125.828125,122.200027,116.472755,90.786804,75.786804,91.026474,99.952095,71.439697,35.902496,14.378531,10.588449,6.451251,8.865305,7.554557,7.461170,3.519840,0.662812,0.030579,0.199175,0.105786,0.161984,0.609092,0.785951,0.557025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.555000,4612595.550000,6907,3955,98.885139,161.009109,166.504974,156.802505,142.000854,132.265305,129.976044,125.794228,125.819023,127.703316,127.480179,138.356232,153.802505,169.645462,180.802490,191.885117,191.257019,179.488449,155.852097,135.331421,124.463646,121.612411,117.009102,90.752907,76.066956,88.835548,97.934723,71.314903,34.257042,13.757868,10.637210,6.808276,8.132246,8.071913,8.184310,2.375211,0.171076,0.640497,0.347935,0.042976,0.044628,0.000000,0.000000,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602129.355000,4612595.550000,6936,3955,97.171913,162.940521,173.304138,161.014893,145.312439,134.824814,131.725632,128.386795,128.419846,129.089264,129.618195,140.320694,156.940521,171.337204,182.634720,193.684311,193.940506,181.080994,157.287643,137.023178,126.816544,123.229767,118.254562,92.287621,76.593407,90.494232,101.940514,73.138855,33.634731,15.185968,10.750432,7.065301,7.883485,8.061996,7.969434,3.623972,0.903308,0.180166,0.147934,0.029752,0.008265,0.228926,0.412397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602133.355000,4612595.550000,6956,3955,101.895889,161.490921,171.276047,162.193405,147.953735,136.416550,133.441330,129.722321,129.573563,129.912415,131.102493,141.119034,158.168610,172.466141,185.036377,195.928940,196.036377,183.672745,158.342163,137.846298,128.366959,125.019844,119.218193,93.548775,78.044647,92.780174,102.317368,74.044647,38.284317,16.199190,10.838035,9.295054,9.696711,10.910757,7.081004,4.362817,1.285127,0.033059,0.369422,0.086777,0.000000,0.232232,0.666943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.755000,4612595.550000,6978,3955,101.865311,167.493393,170.865295,157.956207,142.419022,133.402496,131.832245,128.443817,126.931419,127.931419,129.642166,139.319839,155.741333,171.840500,182.716537,194.303314,193.080170,180.997528,157.989273,137.204147,127.369438,124.319855,118.609108,92.741341,76.592583,90.923157,100.881836,73.022339,33.741341,14.093405,10.782663,8.167783,8.927288,9.204973,8.170263,4.246287,1.042151,0.539671,0.338844,0.073554,0.002479,0.131405,0.271075,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.955000,4612595.550000,7009,3955,98.943817,162.142151,169.885956,159.158691,143.844635,134.505798,130.332245,127.753738,126.249603,127.200020,128.150436,139.431412,155.952072,170.720673,181.819839,193.538849,192.629761,179.629761,157.464478,136.158691,125.588448,123.365311,116.563652,91.439690,75.547127,89.704147,99.249603,71.985138,33.745476,14.394234,10.596715,8.300839,8.885139,9.056210,7.558691,3.723146,1.964467,0.231406,0.175207,0.097521,0.107438,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.555000,4612595.550000,7037,3955,91.470268,162.767776,166.916534,158.833893,143.445465,133.800842,130.982666,128.197540,127.057045,128.329773,128.486801,137.784302,155.255371,170.387604,181.660339,192.602478,193.338013,178.751236,155.850418,136.263657,125.420677,122.594231,117.354568,90.214066,75.990929,88.412415,99.585968,73.643822,34.181011,13.020679,10.668614,8.209104,7.929767,7.532244,8.034723,2.540501,0.539671,0.385125,0.309918,0.288430,0.000000,0.078513,0.077686,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602152.355000,4612595.550000,7051,3955,101.098366,166.842163,171.519852,162.090103,145.023987,133.825638,132.222336,128.561172,127.660347,128.751266,128.321503,138.858704,154.503326,170.933075,182.800842,193.445480,192.693405,180.395889,156.924820,137.362823,126.181007,124.296715,118.445473,90.420677,76.693405,89.552910,100.957870,74.569443,35.114895,15.125638,10.767787,8.726459,8.000842,9.082658,7.047946,2.445458,0.811572,0.104132,0.448762,0.257852,0.000000,0.065289,0.066116,0.000000,0.000000,0.000000,1.980992,0.000000,1.915703,0.000000 -602156.355000,4612595.550000,7071,3955,104.047127,161.509933,169.038849,160.691742,145.146286,133.757874,131.964478,130.121506,128.262009,129.551254,128.270264,140.890091,156.410751,172.344620,183.385956,194.807449,194.038849,181.270264,157.369431,138.898361,128.485138,123.485138,120.336380,92.080185,77.071922,90.898361,102.956215,74.179359,35.675228,14.781011,10.939688,8.981006,9.327289,9.293402,8.937202,5.237198,0.482646,0.283472,0.262811,0.039670,0.244628,0.069422,0.082645,0.000000,0.000000,0.000000,0.000000,1.385951,0.000000,0.000000 -602165.355000,4612595.550000,7116,3955,111.928940,167.928925,171.185120,163.201660,146.912399,134.416534,132.557037,129.780182,127.606621,131.011581,129.094223,140.813232,155.838013,172.631409,185.003311,194.606613,194.234711,181.780167,158.234711,138.077682,127.309105,126.036377,119.763649,92.507446,76.449600,90.821503,101.152077,73.821503,36.251263,15.271091,10.887622,7.080176,9.413239,9.200014,9.260344,3.066947,0.419836,0.185951,0.166943,0.109918,0.000000,0.147108,0.000000,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.155000,4612595.550000,7130,3955,111.602501,178.214050,170.214050,160.809097,145.288437,134.371078,133.057037,127.933067,128.866959,130.445480,129.131409,140.090088,155.941330,172.544632,183.709915,195.081818,194.751236,179.280167,158.982651,138.660339,128.495056,125.156212,119.809105,92.784309,76.833893,90.974388,101.321503,71.858688,34.445477,15.033076,10.891754,8.301665,9.203321,9.190096,9.318196,3.414882,0.658680,0.049587,0.114877,0.000000,0.002479,0.128926,0.000000,0.295041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.155000,4612595.550000,7150,3955,114.236374,174.649597,172.525635,162.872742,145.566956,134.740509,132.806625,129.021500,128.773560,132.881012,129.327286,140.302490,156.021500,172.566956,184.087616,196.864471,193.385132,180.633072,158.219849,137.426453,128.104141,124.252907,119.327286,91.542160,77.707458,90.864479,100.409927,72.641342,35.732254,15.344646,10.847953,9.515717,7.828116,7.842160,8.223980,3.150419,0.652895,0.339671,0.167769,0.560332,0.180166,0.076033,0.000000,1.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602177.755000,4612595.550000,7178,3955,120.722336,176.854553,170.259506,163.152069,146.309097,132.606613,130.383469,128.028107,127.052895,131.730576,128.474380,139.218201,154.548767,170.986786,184.490906,195.813232,193.788437,178.846283,158.085953,137.846298,127.259506,124.548767,119.490913,92.871078,76.970261,90.309097,99.383476,72.143822,33.656219,13.517372,10.862828,8.948772,7.215716,6.721499,9.283484,3.143807,0.295042,0.163637,0.307439,0.156199,0.014876,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602184.955000,4612595.550000,7214,3955,121.342171,172.689270,170.614899,164.185150,146.862823,134.962006,133.664490,131.094238,131.267792,135.912415,132.333908,142.598373,159.152084,174.300842,188.011597,199.507462,198.697540,183.854568,162.590103,142.813248,132.598373,129.242996,125.400017,96.747124,81.995064,96.276054,101.978531,71.209938,34.226467,13.562827,11.400019,10.352079,9.365303,8.211584,9.035549,3.700833,0.623970,0.163638,0.000000,0.029752,0.000000,0.000000,0.000000,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602188.355000,4612595.550000,7231,3955,105.302490,176.285965,171.426453,164.120667,145.674393,133.740509,133.575226,129.533890,128.600006,133.988449,131.153732,142.211578,156.500839,173.203323,186.244644,196.988449,196.674393,181.963654,162.236374,142.013229,132.707458,129.723984,123.781830,95.864479,80.244652,96.153732,103.252907,74.401672,37.261177,14.371094,11.252913,12.284312,8.657866,9.430595,8.630591,3.934717,0.473555,0.044629,0.179339,0.000000,0.048760,0.000000,0.208265,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602192.755000,4612595.550000,7253,3955,125.832245,182.344650,174.377701,163.369446,147.129776,136.840515,133.485123,131.319839,131.138031,137.245483,131.559509,142.576065,158.146301,175.848770,188.708252,202.749603,201.501663,185.733063,164.295074,145.394226,134.394211,130.501663,126.881821,96.377701,83.220680,96.724808,106.782654,74.179359,35.113239,15.085140,11.534730,12.181832,8.059518,8.699189,8.735551,5.155381,0.523968,0.291737,0.257852,0.000000,0.000000,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.955000,4612595.550000,7279,3955,109.367783,150.541336,160.607452,151.541336,136.838852,126.929771,123.871918,121.822327,121.227287,123.161171,123.409103,133.731415,150.880188,166.318192,178.971085,190.814072,190.747955,180.814072,157.723160,138.623978,126.458694,123.177704,118.318199,91.938042,75.260345,90.847122,103.987617,77.012413,35.384319,14.866960,10.756218,6.014887,9.393403,8.140512,7.712408,3.261166,0.304960,0.200001,0.000000,0.155372,0.000000,0.000000,0.458678,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.555000,4612595.550000,7297,3955,101.042160,154.785965,158.868591,148.653717,136.785980,126.794228,123.653732,121.934723,119.356209,121.414062,122.199188,133.612411,150.290100,165.769424,178.058685,189.124802,190.926453,181.215714,158.389267,138.290115,127.901665,123.562820,117.918198,91.232246,76.000839,91.752907,103.595879,78.728111,35.298367,15.423158,10.719852,6.625633,10.159517,9.512413,9.384311,3.721496,0.676035,0.453721,0.192562,0.032232,0.118182,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.955000,4612595.550000,7319,3955,111.804977,149.747116,156.168594,148.606613,135.573578,123.871086,122.267776,120.333893,118.714058,119.598358,120.681000,131.961990,148.292572,163.449585,177.036362,186.945465,188.945465,178.143799,156.953720,135.937210,126.986786,121.292572,115.400009,90.028107,73.672745,90.656212,102.350426,78.433075,37.499195,15.155390,10.490928,5.495053,10.371090,10.092579,8.777699,3.287612,1.113227,0.122315,0.624794,0.095868,0.047934,0.000000,0.300000,0.695042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602210.555000,4612595.550000,7342,3955,100.427292,146.104980,154.691757,146.047134,131.022308,122.823967,118.840500,116.501656,115.518181,116.369423,118.311569,128.857025,144.708298,161.204163,173.972748,184.774399,185.741348,174.997543,154.047134,134.385956,123.435539,119.881821,111.790916,87.030594,71.104973,87.187622,103.981003,77.452087,36.485142,13.219853,10.162829,4.186789,8.109103,8.457039,7.729764,3.277693,0.759506,0.135538,0.000000,0.031405,0.000000,0.000000,0.000000,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.755000,4612595.550000,7368,3955,95.018211,148.224808,155.109100,145.654556,132.770264,121.976868,119.373566,117.018188,115.563644,117.604965,118.497528,128.522324,146.175217,162.282669,175.439697,185.299194,187.456223,176.505814,153.290924,135.142151,124.530586,119.885963,113.472740,87.464470,71.671089,88.795052,103.257858,77.125641,35.935558,14.153736,10.315722,5.605799,8.727287,7.985964,8.085135,3.028934,0.722317,0.631407,0.105785,0.000000,0.239670,0.073554,0.141322,0.278513,0.000000,0.000000,0.000000,1.618182,0.000000,0.000000 -602221.355000,4612595.550000,7396,3955,104.577713,145.495071,152.974396,145.007462,131.519852,121.767792,118.280182,115.354568,115.214066,115.395889,116.776054,128.428955,144.189270,160.718216,174.024002,184.825653,186.024002,175.057068,153.313263,132.916550,123.189278,119.470268,112.081841,86.462013,69.916557,86.982674,101.544647,77.792587,35.478531,13.841340,10.189275,5.071912,8.420676,9.218196,6.827285,3.010753,0.808268,0.289257,0.105785,0.095868,0.098347,0.000000,0.277687,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602226.955000,4612595.550000,7424,3955,114.663658,150.027283,154.217361,142.704987,130.861984,120.300026,117.655396,113.845474,113.704979,114.176056,117.076881,126.547943,143.820679,159.853729,171.804138,182.580994,184.200836,173.093399,152.944641,131.308273,121.630600,117.457047,111.118202,84.498367,68.721512,87.176056,101.242172,73.556221,34.903328,12.403322,10.101671,6.765301,7.646294,7.183484,7.038030,2.487609,0.362812,0.293390,0.000000,0.138844,0.158678,0.010744,0.209092,0.276034,0.000000,0.000000,0.000000,1.575207,0.000000,0.000000 -602232.755000,4612595.550000,7453,3955,104.344643,148.972733,152.328110,144.799179,131.518204,122.245476,119.278534,115.923157,114.204147,116.303322,117.080185,129.129776,145.675217,160.584305,173.551270,183.683502,184.005814,174.650436,152.857040,133.129776,122.774399,118.947952,113.790924,87.576050,71.609108,86.857040,99.650429,74.700020,35.311588,15.532249,10.344646,6.823153,10.660345,10.428116,8.066129,3.852076,0.435540,0.606614,0.376860,0.133059,0.085951,0.000000,1.282647,0.851241,0.000000,0.000000,0.000000,1.618182,0.000000,3.116529 -602241.555000,4612595.550000,7497,3955,131.497543,155.076065,157.885971,147.522339,133.009933,123.894234,120.092583,116.762001,116.059525,116.299194,116.778534,127.770264,144.844650,158.935562,170.654572,180.158707,180.092590,170.307465,149.299194,129.704147,121.216545,117.365311,112.200020,87.406631,72.844643,86.770264,99.084312,71.836380,32.745476,14.795886,10.200019,7.374395,9.123981,9.381004,8.945468,3.940505,1.123971,0.471076,0.064463,0.040496,0.175207,0.000000,0.645456,1.043803,0.000000,2.189256,0.000000,0.000000,0.000000,3.037190 -602251.955000,4612595.550000,7549,3955,156.170273,167.757050,155.038040,142.434738,127.872742,118.178528,114.484314,112.153732,110.831421,112.765305,114.889267,125.905800,143.980194,159.938873,174.409943,185.244659,186.558701,177.666138,156.790115,141.566971,133.442993,130.682663,128.327286,101.385139,82.641342,102.996704,122.153732,96.707451,43.517372,13.576877,11.666135,11.581833,10.852907,14.074395,16.459520,13.327287,3.348766,1.619012,1.564466,0.974382,0.533059,0.304133,2.267771,0.942977,6.433884,5.760331,3.356199,2.942976,5.108265,2.900000 -601363.155000,4612585.550000,3105,4005,234.035538,192.506638,152.101669,135.233902,114.738029,102.564476,101.473572,99.341339,99.514893,106.969437,100.754562,113.473572,131.597534,150.407455,164.638870,179.300018,178.366135,162.721512,140.704987,120.473572,109.820679,106.928116,101.845467,70.258690,53.572746,71.250427,84.134727,56.605801,26.581013,7.958694,9.258697,21.769440,8.938856,10.223155,12.161998,10.295053,1.949592,0.857854,0.767771,0.765290,0.335538,0.544629,0.800003,1.377687,31.157856,12.199176,11.380167,15.658680,8.716531,21.497522 -601367.955000,4612585.550000,3129,4005,167.263657,166.941345,149.189270,134.362823,118.602501,108.023987,106.238861,103.544647,104.247124,106.709938,106.751259,118.495064,136.800842,154.214066,168.280182,179.916550,181.974396,168.957870,146.065308,125.007454,114.329773,111.040512,105.445473,75.577698,58.941341,73.982658,85.577698,61.544643,28.908283,11.662827,9.585970,14.209934,8.756212,10.014066,12.044643,8.722325,1.219012,0.819010,1.113226,0.600828,0.160331,0.000000,1.618184,1.009918,4.879340,9.305787,3.309918,10.847110,2.052066,5.596695 -601374.955000,4612585.550000,3164,4005,130.401672,152.555405,145.596725,135.166946,120.076042,110.538849,107.621498,106.009926,105.563644,107.175217,109.737198,120.100838,138.274399,154.133911,168.819855,178.571930,180.381851,169.447952,144.803329,123.902489,113.332245,109.836372,103.745461,77.125633,59.249603,72.894234,84.175217,60.943817,27.737209,10.705803,9.431425,9.273569,7.628111,9.261999,8.839684,5.733893,1.788434,0.318183,0.080992,0.185951,0.000000,0.031405,0.408265,0.252066,2.278513,8.417356,5.249588,2.099174,1.741323,0.000000 -601385.355000,4612585.550000,3216,4005,123.006622,148.266129,148.547119,137.695877,123.728935,111.927284,112.390091,109.993401,109.175217,110.009926,112.795052,122.125633,140.902496,156.968597,170.282654,180.687607,181.638031,170.828110,145.894226,126.191742,115.009926,110.902489,104.200012,77.423149,59.274399,75.299194,84.208290,61.695881,28.894232,11.304150,9.472746,8.498361,8.617368,9.732247,9.059519,5.027281,1.234714,0.529754,0.262811,0.171075,0.025620,0.040496,0.000000,0.247108,2.040496,0.000000,2.428926,0.740496,0.000000,0.000000 -601400.755000,4612585.550000,3293,4005,116.253731,143.859528,144.016541,130.479340,118.636375,110.289261,108.413231,107.132240,106.190094,108.561989,110.223152,121.190094,137.942169,154.702499,167.983475,178.586777,178.495865,168.305786,144.413239,121.975212,112.429764,107.991745,103.636375,75.644638,58.834728,72.743813,85.223152,62.942165,28.528948,10.806629,9.421507,6.976045,7.924807,7.262825,7.423154,3.736370,1.023144,0.295870,0.451241,0.115703,0.400000,0.000000,0.838844,0.000000,1.020661,4.772728,3.194215,0.679339,3.727273,1.824794 -601422.155000,4612585.550000,3400,4005,124.341339,152.782639,149.708252,136.931396,124.443817,116.394234,113.278534,111.369438,111.047127,114.807457,114.972748,125.377701,142.633881,159.080154,172.154541,181.906601,181.906601,171.402466,149.055359,126.311584,115.947952,112.080185,106.063652,79.286797,62.071926,75.171089,86.204147,65.187630,31.030596,11.890101,9.642167,6.873565,9.666132,6.757865,7.960345,2.051244,0.378514,0.221489,0.159505,0.357026,0.033884,0.000000,0.477686,0.000000,1.088430,0.988430,0.000000,2.476860,4.197521,2.032232 -601438.355000,4612585.550000,3481,4005,127.045471,160.223175,150.041336,140.892578,129.008286,116.528938,115.016548,113.636383,112.190102,114.090927,114.909103,125.281006,142.702499,158.876068,172.413254,182.190109,183.504166,172.785156,148.702499,126.743820,116.272743,111.809937,106.818199,79.314064,61.024811,75.413239,87.801666,65.388443,30.314070,11.703323,9.710762,5.705796,8.619849,9.154560,7.408279,3.272733,1.116532,0.198349,0.139670,0.128926,0.000000,0.271902,0.799174,0.000000,2.314050,2.039670,3.372728,0.905785,0.999174,3.781818 -601447.555000,4612585.550000,3527,4005,141.717361,181.006622,167.353729,157.312408,139.320663,125.725624,124.965294,123.097527,122.370255,128.345459,123.238022,134.370255,150.882645,168.105789,181.750427,192.494217,190.849594,177.097534,155.221497,135.056198,124.147118,120.345459,116.072731,86.428108,70.312416,84.601662,95.238022,69.039696,33.138863,14.428943,10.552085,11.863649,7.989270,8.895881,8.804973,4.161166,0.547109,0.057852,0.000000,0.000000,0.037191,0.000000,0.216529,0.000000,0.000000,0.000000,0.861157,0.000000,0.000000,0.000000 -601452.355000,4612585.550000,3551,4005,134.703323,183.397537,169.190918,156.976044,141.009109,128.331421,126.620682,123.976044,124.703323,130.620682,124.901665,135.761185,151.777695,171.042160,182.389267,195.182663,192.744644,178.381012,156.595886,135.678543,125.356209,122.174393,117.554558,88.091751,71.116547,86.959518,96.620674,69.430603,31.744648,12.401670,10.686796,10.636379,7.900841,7.548773,8.886790,3.490918,0.968597,0.138017,0.083471,0.000000,0.000000,0.000000,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.955000,4612585.550000,3569,4005,125.572746,189.060333,165.647110,157.580994,139.316528,128.316528,126.985954,124.002487,124.333061,129.936371,125.192574,136.539673,152.490082,169.688431,183.019012,194.580994,192.093399,177.060333,156.382645,136.696701,125.729759,122.217369,117.754562,88.870255,72.432243,86.754555,95.423981,69.448784,32.159523,12.884315,10.704977,11.271916,8.271089,8.866957,6.778524,5.284308,0.552894,0.000000,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.185951,0.000000 -601458.955000,4612585.550000,3584,4005,131.719849,177.736374,163.942993,157.174393,140.422333,127.290092,125.827286,123.496704,122.686790,128.075226,124.455383,135.587616,152.091751,168.752899,182.166122,192.852081,191.091751,177.207458,155.852081,135.488449,124.273567,121.397537,116.190926,86.885139,71.728111,85.744644,96.719849,69.265305,33.356220,12.279356,10.562829,9.938858,7.969436,7.757864,8.192577,4.271085,0.619010,0.000000,0.000000,0.120661,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.075207,0.000000,0.000000 -601462.555000,4612585.550000,3602,4005,126.058693,177.595886,166.868607,155.819016,140.009109,126.066956,126.083481,122.810760,122.414062,126.984314,123.901665,135.868607,152.116547,169.571091,182.182663,193.141342,191.422333,177.372742,156.281830,135.604141,124.339684,121.182655,116.190926,87.331421,71.761177,86.306625,94.934723,68.496712,32.422333,13.729770,10.562829,9.757867,5.935550,7.880181,9.053732,4.088439,0.259505,0.203306,0.039670,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.220661,0.000000 -601468.955000,4612585.550000,3634,4005,120.052902,173.325638,163.408279,153.804977,139.044647,126.523987,126.515724,125.251259,124.416550,127.424812,125.366959,136.284317,153.036377,171.160355,182.854568,193.813248,193.722336,180.788452,157.557037,136.928940,126.664482,122.408287,116.945473,88.606628,71.804977,85.466133,96.408287,70.424812,32.532253,14.005803,10.631424,9.386791,7.381832,10.340511,9.399188,3.671083,0.591737,0.096695,0.201654,0.057025,0.000000,0.000000,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.755000,4612585.550000,3648,4005,111.221504,173.436371,162.981827,154.585144,141.477692,126.642990,126.254562,124.196709,122.494232,127.155388,125.238029,136.758682,153.725647,170.262817,182.618195,193.469421,192.849594,180.626450,156.039688,135.766968,124.725632,123.072739,116.890923,88.543816,72.246292,85.957039,97.006622,69.957039,33.328945,14.211588,10.626465,10.630593,8.801669,8.324808,10.067783,2.517363,0.527274,0.157025,0.000000,0.200827,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.755000,4612585.550000,3668,4005,117.614067,178.225632,164.192566,154.027283,139.531418,125.614059,126.258682,124.721497,123.581001,125.746284,124.357857,137.498352,154.324799,170.969421,182.688431,193.704971,192.903305,179.919846,157.142975,134.828934,125.176041,122.514885,116.936371,86.944649,71.275223,86.035561,97.514893,71.514893,33.043823,14.075224,10.630597,7.923154,8.063648,8.486792,10.379354,2.823149,0.941325,0.549588,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,1.276033,0.000000,0.000000,0.000000,0.000000 -601482.155000,4612585.550000,3700,4005,106.455391,164.083481,163.852081,153.951248,138.761169,126.463654,125.273575,122.513245,123.604156,125.711594,125.166138,136.050446,153.918198,170.306625,182.513229,192.389267,192.347946,180.298355,156.273560,134.595886,124.620682,121.785973,115.645477,88.645477,71.066963,84.009109,96.207458,70.166138,31.637209,14.730595,10.513242,9.909106,8.028113,9.545469,8.032246,3.861991,1.133061,0.221488,0.000000,0.000000,0.057025,0.157025,0.000000,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.955000,4612585.550000,3714,4005,118.932243,172.221497,164.502487,154.072739,137.585129,126.485962,125.684303,122.684303,122.452896,124.849602,125.039680,136.758682,153.254547,169.386780,182.651245,194.411575,192.295868,179.047943,156.907440,135.477692,124.180168,122.097527,116.163643,86.527290,70.262825,84.114067,96.725632,70.725632,32.477703,13.866960,10.560350,7.819848,7.538030,8.271914,7.893402,4.300008,0.748762,0.292562,0.052066,0.057025,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.755000,4612585.550000,3733,4005,108.698364,167.830582,168.020660,155.417374,139.640518,128.037186,127.789261,125.326447,124.450417,126.219009,125.739670,137.607452,156.524811,171.466965,182.657028,194.979355,193.954559,183.574387,158.235550,138.070267,126.673553,123.053719,117.954544,88.599190,73.111588,86.425636,98.549606,72.938034,34.409111,14.733077,10.723160,7.499187,8.695057,9.014892,8.557866,3.337199,0.617357,0.099174,0.261984,0.053719,0.059504,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.148760 -601493.355000,4612585.550000,3756,4005,120.701675,163.850418,162.825623,151.833893,138.057022,124.263641,124.933060,122.470253,121.850418,123.569427,123.296700,135.139679,152.189255,168.809097,180.354553,191.709915,190.495041,179.123138,155.362808,135.081833,123.924797,120.536369,115.354546,86.635551,70.652077,82.585960,96.387604,70.916542,33.156219,11.792579,10.486795,7.061996,6.894231,9.168611,5.653729,3.212405,0.466117,0.212397,0.000000,0.128099,0.000000,0.000000,0.004132,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.155000,4612585.550000,3775,4005,110.090927,162.892578,162.834732,151.107437,137.685944,127.099197,124.471100,122.289284,121.322342,124.528954,124.330605,135.413223,154.206604,168.975204,182.876053,191.768616,191.768616,179.504135,156.272720,135.272751,124.066139,121.438042,115.727295,86.471085,70.305809,82.851257,94.776878,70.347130,31.900845,11.532249,10.520680,6.828939,7.879353,8.415716,8.005796,1.911578,0.183472,0.179339,0.052893,0.051240,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.955000,4612585.550000,3809,4005,101.552078,160.874405,166.047958,152.419861,136.750443,126.089279,126.452911,122.915726,123.262833,123.593414,124.428123,135.841339,154.295883,170.163666,183.204987,192.585144,192.659531,180.229782,156.271103,134.981842,124.452911,121.552086,116.072746,87.328941,70.642998,83.899193,97.089272,70.213249,32.238033,12.876050,10.552085,8.112410,6.933073,7.738030,8.864477,3.610752,0.668597,0.104959,0.056199,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.051240,0.000000,0.000000,0.000000 -601511.755000,4612585.550000,3848,4005,119.372742,161.728088,163.554535,154.380981,138.265289,127.075218,126.009102,124.695053,122.538033,124.488441,125.381004,136.769440,154.414047,170.438843,182.397522,192.116547,193.182663,180.157852,156.761154,135.951248,124.959518,122.248772,116.372742,87.554558,70.620674,85.050423,97.215714,73.141335,33.017376,12.583488,10.579357,8.873568,7.509108,8.115718,8.300015,3.353727,0.166116,0.028926,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,1.268595,0.000000,0.000000,1.008265,0.000000,0.000000 -601514.755000,4612585.550000,3863,4005,102.074394,163.595062,163.256210,152.462830,138.214890,128.595062,126.495880,124.008278,123.487617,123.776878,125.710762,136.223160,153.933899,169.826462,182.256210,193.272751,193.438034,180.776871,157.958694,135.752075,125.429771,121.578529,116.727287,87.611588,71.066139,84.297539,97.983490,72.528954,35.190102,14.871093,10.611589,9.261998,8.154561,7.636379,8.560346,4.733892,0.204959,0.228100,0.199174,0.058678,0.000000,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.155000,4612585.550000,3895,4005,102.733078,160.030609,163.410767,150.700012,137.022339,127.253738,125.303322,123.063652,122.435555,123.840515,124.319855,136.162842,154.509933,169.047134,182.245483,192.104980,192.534729,180.518204,157.749619,136.121521,124.278534,120.931419,116.245476,87.617371,70.394234,83.923157,98.402504,72.262001,34.278530,13.473571,10.567787,8.113236,6.618196,8.772742,8.340510,4.050422,0.798349,0.054546,0.114876,0.000000,0.000000,0.000000,0.003306,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.955000,4612585.550000,3909,4005,100.735550,162.444641,162.601669,150.138870,135.626450,125.337196,123.155388,121.287621,120.882660,121.147125,123.461174,134.775208,152.758682,169.023163,181.585144,190.560349,190.510773,180.221512,154.973557,134.163635,123.676048,120.965302,114.527290,85.279350,68.932251,84.502495,97.659515,70.279358,32.593410,12.301671,10.411589,6.985137,5.276045,7.038857,6.320671,2.956205,0.438017,0.000000,0.102480,0.000000,0.160331,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.555000,4612585.550000,3927,4005,105.404152,157.033051,159.264465,150.033051,136.429764,126.330597,124.851257,122.231422,121.570267,122.909103,123.909103,134.528946,153.123962,169.669418,182.396698,192.371902,192.347107,180.876038,156.776855,134.636383,123.239685,120.537209,114.909103,86.338860,68.991760,85.090927,97.033073,72.628113,32.636383,12.523158,10.446301,6.551252,7.544643,8.020676,7.814064,2.687610,0.457853,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.916529,1.142975,0.000000 -601531.755000,4612585.550000,3948,4005,112.393410,160.707474,162.988464,151.533920,136.732254,126.583481,124.823151,122.376869,121.847946,122.195053,124.723976,134.881012,154.591766,169.831436,182.773590,192.244659,192.095901,180.219864,156.319031,134.773560,125.195053,121.442986,115.418198,86.095879,69.236382,85.856209,98.682648,72.624809,33.343822,13.232249,10.492581,5.885137,7.104975,8.592578,7.544643,2.969430,0.274381,0.350414,0.047934,0.056199,0.000000,0.000000,0.000000,0.095042,2.430579,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.555000,4612585.550000,3967,4005,111.246284,158.138840,163.138840,152.642975,138.519012,128.485962,125.543808,124.023148,123.849594,124.618187,125.800003,137.436371,155.502487,171.080978,184.056183,194.816513,194.692551,181.601639,158.676025,136.948761,126.023148,123.345459,118.709099,88.395058,71.452904,87.758682,100.221497,74.973572,35.122334,14.824811,10.791753,9.094229,7.818197,8.289271,8.120676,3.445464,1.038019,0.214877,0.208265,0.070248,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.055372,0.000000,0.000000 -601541.155000,4612585.550000,3995,4005,105.766136,160.697540,160.565308,151.614899,136.292587,126.433067,123.664474,121.871086,120.796707,122.614891,123.499184,134.424805,153.218201,169.077698,182.796707,191.119019,191.052902,180.408279,157.119034,135.143814,123.821503,119.647942,114.672737,87.433067,68.548775,85.085960,97.639679,71.945465,33.433079,12.497539,10.424811,5.869434,6.429768,6.487616,8.351254,2.245461,0.314051,0.105786,0.085951,0.220662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.985124,0.000000,0.000000 -601547.555000,4612585.550000,4027,4005,101.088440,156.201660,160.647934,150.433060,136.185120,127.912399,125.680992,122.664467,122.631409,123.523972,123.920662,135.871078,154.523972,170.218185,183.143799,192.590088,193.176865,181.209915,156.953720,136.284302,124.639671,121.185127,115.763641,87.416550,70.160347,85.672745,98.647957,73.119026,34.366962,14.076877,10.523986,6.170260,7.927289,7.307453,7.761998,2.877694,0.562812,0.124794,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.961157,0.000000,0.000000,0.000000 -601550.355000,4612585.550000,4041,4005,113.119850,159.201675,160.557037,152.424820,138.449600,127.912415,127.300842,123.912415,122.499191,125.135559,125.457870,137.300842,156.077698,170.895889,184.094223,193.424789,193.284302,182.672729,157.920685,136.590103,126.193405,120.945473,116.763657,87.094231,71.433075,85.267792,99.532249,73.466133,33.598366,13.073570,10.614896,6.804146,8.390925,8.028939,9.024809,2.796701,0.613225,0.585125,0.117356,0.000000,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612585.550000,4056,4005,108.190102,160.660355,161.395889,153.329773,137.957870,128.255386,125.544640,123.751251,123.346291,125.263649,125.090096,136.387619,155.866959,170.544647,184.181015,193.685150,193.850433,182.990921,158.610764,137.048782,125.461998,122.404144,117.081833,87.371086,71.214066,86.040504,97.924805,72.313240,33.602501,13.490929,10.643821,5.995055,7.161173,8.528942,6.157038,2.572735,0.580993,0.221488,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.032232,0.000000,0.000000,0.000000 -601558.355000,4612585.550000,4081,4005,92.704979,159.551239,163.534698,151.790909,139.212387,128.600845,125.906631,123.427292,123.609108,125.807457,126.253738,137.295044,155.261978,171.600830,185.278503,194.518173,194.055359,182.733047,158.881805,136.228943,126.377701,122.022331,117.790924,88.394234,71.485138,85.551254,100.435555,72.551254,33.989273,13.280183,10.708284,5.846293,7.735552,8.876876,6.197534,3.591743,0.651241,0.249587,0.171901,0.000000,0.000000,0.000000,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.755000,4612585.550000,4103,4005,106.479355,154.801666,159.504150,153.479355,138.636383,129.165298,125.314056,124.669426,124.851250,126.148766,126.421501,137.446320,156.628113,172.041336,185.281006,195.462830,195.347122,182.793411,158.305801,137.347122,126.281006,122.735542,117.000008,89.016541,71.305801,87.438026,100.553726,74.462830,34.685966,13.126464,10.636383,6.479349,7.789271,7.007452,7.707454,2.756207,0.680167,0.080166,0.082645,0.165290,0.000000,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.755000,4612585.550000,4133,4005,98.796715,158.261978,160.675201,152.427261,138.840485,129.427277,126.741333,125.452072,125.427284,126.303314,127.146301,137.964462,155.245453,172.096695,185.733047,193.840485,194.956192,183.658676,159.923141,136.939667,125.551247,122.518196,117.336380,88.171089,72.237206,87.129768,99.410759,73.782661,33.452087,15.033902,10.666961,6.636375,8.392576,8.166130,9.415718,4.592572,0.900829,0.272728,0.281819,0.111571,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,2.132232,0.000000,0.000000,0.000000 -601572.555000,4612585.550000,4152,4005,110.882660,159.328934,161.295868,152.064468,137.692566,129.271088,127.047951,124.535553,124.114067,125.213234,125.362000,137.271088,155.171906,171.651245,184.072739,193.188431,193.213226,181.923981,157.957031,135.742157,124.808281,121.750427,115.345467,86.733902,69.023155,86.163651,98.271088,72.882668,32.436386,13.663656,10.485970,5.920673,8.016544,7.158691,6.939683,3.790918,0.688431,0.180992,0.000000,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.955000,4612585.550000,4184,4005,117.823975,158.377701,163.898361,154.534714,140.005814,130.931412,128.162827,126.485130,124.328110,126.633896,127.038849,137.650421,156.815720,173.691742,186.435547,195.146286,195.088440,183.716537,159.385956,138.047119,126.774391,123.220673,117.518188,89.799187,71.642174,86.741341,100.038849,72.799202,35.435555,14.420679,10.683491,5.514061,7.715718,7.348774,6.446292,3.587614,0.377687,0.154546,0.063637,0.240497,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,2.146281 -601583.355000,4612585.550000,4206,4005,115.540504,159.391724,161.722305,153.052887,139.416519,129.160339,126.871086,124.904144,124.011581,125.788445,127.019844,138.110733,155.771881,172.226440,184.449585,195.127274,194.482651,183.011566,159.672714,136.523972,125.350426,121.846291,117.400009,88.300835,70.705803,85.176872,99.738853,74.383492,33.639690,14.777704,10.672747,6.392576,6.681833,6.801667,7.104972,2.659512,0.375208,0.265290,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.355000,4612585.550000,4226,4005,97.419022,157.931412,162.823975,153.625626,140.261993,131.642151,128.361160,126.452072,126.790916,128.088440,128.774384,139.551254,157.716537,174.121490,186.476852,196.699997,196.947922,186.261978,161.857040,139.104965,128.014053,123.865295,117.881828,91.336372,72.410759,88.138023,102.005798,75.534729,36.220684,14.252083,10.716548,6.323978,7.903321,7.996707,8.155388,3.404139,0.581820,0.259505,0.000000,0.000000,0.000000,0.299174,0.000000,0.000000,0.000000,0.000000,2.201653,0.000000,0.000000,0.000000 -601590.355000,4612585.550000,4241,4005,112.342995,156.128098,161.475204,153.194214,139.475204,130.557861,126.805801,124.698364,124.020676,126.615715,127.169441,137.995865,156.276855,173.144623,185.301651,195.409088,195.004135,183.863632,158.747940,137.508286,125.557869,122.128113,117.590927,88.533073,70.483498,85.987617,100.111588,73.904976,34.673569,14.419026,10.690101,5.551250,6.900841,7.309103,7.738029,2.571081,0.395042,0.099174,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.555000,4612585.550000,4257,4005,104.600838,159.716553,163.146301,154.898376,139.981018,131.270264,128.204147,126.113235,125.377693,127.369431,128.394226,138.592590,157.443832,173.286804,186.567780,196.683487,195.947937,183.832260,160.493408,137.716553,126.567780,121.551254,119.518196,87.964470,70.724808,87.394226,100.113243,75.121498,34.848778,13.396712,10.865308,5.608275,7.676048,5.948773,6.152080,3.090917,0.638845,0.060331,0.058678,0.062810,0.000000,0.107438,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.355000,4612585.550000,4271,4005,104.447945,156.894226,163.175217,155.042984,140.687607,131.150421,128.869431,126.728935,126.381828,128.530594,128.282654,139.357040,157.662827,173.795044,186.323975,196.580170,196.538849,186.456207,160.778519,137.026459,126.861168,124.142159,117.745461,88.836372,72.514061,86.704140,99.885963,76.340508,34.737213,15.004149,10.704151,6.955384,9.662000,8.449602,8.209930,4.698357,0.280166,0.315703,0.111571,0.000000,0.003306,0.000000,0.011570,0.000000,0.000000,1.214050,0.000000,0.000000,0.000000,0.000000 -601601.355000,4612585.550000,4296,4005,107.752907,156.157867,162.182663,155.397537,142.091751,131.223984,128.777695,126.612411,126.182655,128.538025,128.381012,139.538025,158.025635,174.653732,187.769440,196.538025,196.587616,186.025635,160.471909,139.058685,126.711586,123.695053,117.827286,89.257034,71.124817,86.810768,101.381004,74.347954,35.810760,13.935555,10.711589,6.125631,7.981008,7.637206,7.173568,2.713230,0.490911,0.000000,0.242149,0.000000,0.000000,0.000000,0.013223,0.000000,1.285124,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.555000,4612585.550000,4312,4005,116.109108,158.654556,163.952072,155.431412,141.976868,131.092575,127.208275,125.290916,125.431412,126.753731,128.423157,139.563644,157.952072,173.786789,186.803314,195.522324,196.208267,185.150421,161.481003,137.571915,126.390091,123.224800,118.654556,89.109108,70.844643,86.150429,99.150421,75.431419,33.770271,13.281837,10.786796,4.606622,7.758694,5.428939,7.413238,2.388435,0.190083,0.213224,0.000000,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.955000,4612585.550000,4329,4005,108.190102,162.809937,165.983490,154.578522,140.636383,129.669434,128.239685,126.909103,125.471092,128.851257,127.942162,138.917374,156.710754,173.809937,186.818192,194.570267,195.619858,185.644638,160.685974,138.586792,127.082664,122.628113,118.090927,88.528938,71.000015,85.388443,99.388443,73.958694,33.041344,13.693406,10.735556,5.572737,6.759520,6.421502,5.785137,2.505793,0.347935,0.129752,0.202480,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.555000,4612585.550000,4347,4005,115.324814,166.217361,165.242157,157.176041,142.457031,132.473557,130.349594,127.300003,127.374397,130.192566,129.688431,140.547943,158.242157,174.027283,187.556198,198.043808,196.457031,185.589264,161.341324,139.010757,126.903313,124.068611,117.300018,89.771088,71.564476,86.366127,100.308281,75.936371,34.167786,14.729771,10.663656,5.751249,7.342990,9.099188,7.820675,3.523149,0.404133,0.495869,0.180992,0.000000,0.014050,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.355000,4612585.550000,4391,4005,130.590103,168.639679,166.350418,158.507446,143.838013,133.292587,129.705811,128.011597,127.490929,129.631424,129.681015,140.325623,157.540512,174.995041,187.854568,196.928925,196.474380,184.771927,160.945465,138.631409,126.540512,122.796715,117.036385,89.168617,71.358696,85.325638,98.796715,74.788452,35.631424,14.000017,10.639688,5.122324,7.452908,7.010757,7.499188,2.423146,0.861985,0.093389,0.057851,0.000000,0.000000,0.242149,0.010744,0.064463,0.000000,0.000000,0.000000,0.000000,1.290083,0.000000 -601622.955000,4612585.550000,4404,4005,121.531418,173.134720,168.514877,159.738022,145.961182,134.209106,130.928116,129.994232,127.564476,131.300018,130.647125,141.713242,157.969421,175.291763,188.109940,197.506638,197.779358,186.490112,162.043808,139.374405,126.944641,123.952911,119.027298,90.209106,71.721512,86.721504,102.275230,76.101677,35.357868,14.206630,10.820681,4.584307,7.803319,6.897533,7.527287,2.480173,0.653720,0.146281,0.247108,0.117356,0.028099,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.755000,4612585.550000,4423,4005,127.776878,174.685974,169.280991,159.231400,145.578522,132.661179,130.512405,129.917374,128.644638,130.611588,130.570267,141.305801,159.669418,176.652908,188.281006,197.644638,198.024811,186.347122,162.206604,139.760345,127.041336,124.404976,119.000015,89.281006,71.727287,85.636383,101.438034,77.057869,35.512413,14.314068,10.818201,5.836375,6.814065,7.406626,7.733072,2.423973,0.228100,0.242976,0.053719,0.000000,0.007438,0.000000,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.155000,4612585.550000,4440,4005,124.390930,176.771088,168.390930,161.746307,145.043823,133.151260,130.977707,129.407455,127.787628,132.506638,130.217377,140.647125,158.440521,175.961182,186.895050,196.903305,197.465302,185.820663,161.415726,139.597549,126.771095,123.473579,118.209114,88.581017,71.581017,86.597542,99.985970,74.754570,33.167786,13.355389,10.746301,4.283481,6.637204,6.357864,6.845469,2.069427,1.322317,0.241323,0.000000,0.000000,0.014876,0.168595,0.000000,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.955000,4612585.550000,4489,4005,114.579353,167.942993,168.298355,154.232239,139.959518,129.538025,127.273567,125.571091,125.166130,126.240509,125.414062,136.207458,154.331421,170.951248,182.538025,191.141342,190.860336,177.612411,154.124802,133.802490,122.942986,120.397537,113.100014,85.306625,69.852081,83.612411,98.042160,69.719849,32.190929,13.316546,10.281837,7.754559,7.781004,7.201664,7.205797,2.551246,0.296695,0.068595,0.095868,0.000000,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.555000,4612585.550000,4507,4005,119.871918,171.285126,170.541321,156.665283,141.871902,130.111572,129.301666,126.929764,125.582664,126.119850,127.309929,138.409103,156.309921,172.657028,184.152893,193.590912,192.805786,179.822311,156.103302,134.086792,124.475220,122.533073,116.409103,87.252090,70.483498,82.880188,98.938042,71.838867,33.351257,15.200846,10.582664,7.937204,8.140508,8.938857,9.979354,2.897527,0.685952,0.115703,0.213224,0.000000,0.047934,0.000000,0.009918,0.141323,0.000000,0.000000,0.630579,0.000000,0.000000,0.000000 -601646.955000,4612585.550000,4524,4005,131.711578,171.810760,169.752899,158.314896,141.695068,131.480179,130.356216,127.281830,126.166130,126.876869,126.678528,138.504990,155.587616,172.248779,183.794235,193.331421,192.058685,179.893402,156.207458,134.645462,122.893402,120.711586,114.281830,87.050438,70.190933,82.984322,96.323151,71.612419,32.521507,13.442994,10.389277,7.852080,7.136376,6.728936,7.440508,2.611578,0.037190,0.080992,0.000000,0.125620,0.042149,0.000000,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.555000,4612585.550000,4542,4005,106.198372,173.644638,170.776871,159.702499,141.661179,130.834732,130.272751,126.570274,126.818207,126.768616,126.801674,138.371918,156.413239,172.537201,183.049606,193.413239,193.438034,179.735550,154.966965,134.628128,123.694237,120.578537,115.090935,86.314072,71.123993,84.413246,97.462837,71.586792,34.619854,14.606630,10.462829,7.419020,7.686789,8.529765,8.449601,3.340503,0.688432,0.111571,0.045455,0.000000,0.000000,0.000000,0.142149,0.124794,1.351240,0.000000,2.355372,0.000000,0.000000,0.000000 -601654.755000,4612585.550000,4563,4005,125.775215,174.923981,171.262817,161.105789,142.841324,130.552078,129.907455,127.709106,127.114067,127.998360,126.023155,138.378525,156.403305,172.271088,185.023148,194.700836,193.287613,178.965302,155.700836,134.717377,123.626457,121.023155,115.436378,86.957039,71.171913,83.700844,97.105797,71.485962,33.287624,14.156216,10.494234,8.284311,8.322326,8.413237,8.076873,3.690917,0.585126,0.858679,0.596695,0.000000,0.000000,0.000000,0.004959,0.089257,0.000000,0.000000,2.185124,1.490909,0.000000,0.000000 -601657.555000,4612585.550000,4577,4005,122.871918,174.351242,172.004135,160.690094,144.318192,131.442169,130.880188,128.392578,127.004150,129.185974,127.020676,139.227295,158.285141,173.128098,185.334717,195.177704,193.111588,180.028931,156.053741,135.169434,124.425636,121.549606,115.681831,87.557869,70.607468,84.095055,97.235550,71.409126,34.078533,15.195887,10.516548,9.883486,7.847121,7.586789,6.245466,3.453728,0.490911,0.032232,0.049587,0.238017,0.000000,0.000000,0.065289,0.000000,0.000000,1.236364,1.076033,0.000000,0.000000,0.000000 -601661.155000,4612585.550000,4595,4005,120.585960,175.734711,168.776031,159.205795,143.982651,131.073563,131.569427,127.247116,126.594223,128.321503,127.247124,139.205795,157.147934,173.809097,184.635544,194.734711,192.833893,178.536362,156.007446,135.114883,123.660347,121.147942,115.627281,85.718193,69.594231,83.982666,98.040504,71.536385,32.519855,14.209936,10.511589,9.369435,7.477699,8.615713,6.016541,3.464470,0.704134,0.114877,0.289257,0.000000,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.155000,4612585.550000,4620,4005,125.350433,182.366959,172.755386,160.681015,143.474396,131.375214,130.780182,127.647957,127.490929,129.317368,127.276054,139.689270,157.276047,172.127289,185.697540,195.152084,193.416550,179.077698,155.672745,135.590103,123.978531,121.342171,115.218201,85.168610,69.738861,84.846291,97.482658,70.945473,31.864481,12.062827,10.474400,6.394228,7.831418,6.284310,7.440508,2.926454,0.204959,0.363637,0.187604,0.000000,0.000000,0.000000,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.155000,4612585.550000,4635,4005,122.361168,186.212402,173.815720,163.212402,146.708267,134.782654,132.700012,129.790924,130.030594,132.369431,129.741333,141.890091,159.154556,175.989273,187.576050,197.790924,194.890091,181.311584,158.981003,136.691742,125.501663,122.947945,117.790916,88.005798,72.625633,86.939682,98.162819,72.576042,34.691757,14.520679,10.708282,10.247122,6.965301,7.933072,7.865304,2.967775,0.759506,0.053719,0.058678,0.004959,0.108265,0.000000,0.005785,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.155000,4612585.550000,4660,4005,116.745476,190.233063,173.894226,162.233078,147.051270,132.092575,131.216553,128.547119,128.456223,131.596710,127.894234,139.166962,158.001678,174.282654,187.067780,195.993393,194.398361,179.447937,156.133911,135.861176,125.001671,123.076050,115.563652,86.216545,70.778534,86.009933,97.596710,69.943817,32.985146,13.050430,10.505805,10.171915,8.273566,7.160343,6.038027,3.310751,1.130581,0.095042,0.110744,0.000000,0.000000,0.000000,0.057025,0.000000,1.321488,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.755000,4612585.550000,4683,4005,131.056198,192.072754,176.965317,167.469437,147.948761,134.775208,133.461166,130.585129,130.849594,135.642975,129.841324,142.204971,158.733902,175.907455,188.386795,199.196716,195.609940,179.824814,157.271057,137.114059,126.254555,123.254555,117.800003,88.973579,72.593391,88.783493,99.386780,70.973557,33.866138,15.187621,10.709109,9.803321,7.132246,8.056211,6.941336,3.296704,0.549588,0.180166,0.332232,0.002479,0.000000,0.000000,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.955000,4612585.550000,4704,4005,166.647949,198.350418,178.664490,166.928940,149.424820,135.383484,134.672745,132.284302,132.019852,135.631409,131.523972,142.441345,160.218201,176.755371,189.647949,199.978531,197.565308,181.085953,157.647949,138.738861,127.201668,124.664474,119.036377,88.722328,73.606628,88.416542,100.350426,73.474396,34.110767,15.107456,10.821506,10.126461,9.238858,8.218194,10.202496,4.357033,0.861159,0.077686,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.755000,4612585.550000,4733,4005,151.833069,201.444641,177.915710,168.923981,149.552078,136.097534,135.527283,132.849594,131.857864,137.965302,132.114059,142.923981,160.080994,177.089264,190.262817,200.824799,197.560333,180.552078,158.229752,138.527283,127.452904,123.758690,117.800018,88.279350,72.998360,89.700844,100.229767,70.560356,34.626469,14.472746,10.709110,11.937205,7.815715,7.646294,7.047947,4.872736,1.347110,0.293389,0.201654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.555000,4612585.550000,4747,4005,136.455383,195.719849,178.091751,168.951248,148.810760,135.827286,133.306625,132.405792,131.785965,136.761169,131.752899,143.711578,159.976044,177.455383,189.918198,199.951248,197.124802,179.901672,159.662003,138.835556,127.240509,123.364479,119.281830,89.257034,73.223976,89.513237,101.240517,70.686798,33.405804,14.124813,10.843822,10.535552,7.371913,7.595879,7.610756,4.376041,0.432233,0.153720,0.095042,0.000000,0.000000,0.000000,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.355000,4612585.550000,4766,4005,152.208267,196.778503,178.530579,168.547104,150.885956,137.166946,136.662827,134.307449,134.836380,138.514053,133.067780,145.745468,161.621475,177.464462,191.869415,201.084290,198.662796,183.613220,161.604950,138.935547,128.538849,126.117363,121.018188,91.993401,74.786797,89.687614,101.522324,73.695885,34.266136,15.951257,11.001671,12.024809,8.967781,10.114889,9.178526,5.339679,1.068598,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,1.206612,0.000000,0.000000 -601698.355000,4612585.550000,4781,4005,113.127289,167.490906,170.176880,156.325623,143.333893,132.267792,130.879364,128.011597,127.507454,128.119034,128.804993,139.309113,159.548767,173.722336,186.135559,194.722336,193.871094,181.978531,157.036362,136.862823,126.119026,122.804977,117.400017,89.714081,72.028122,86.606636,100.383492,73.284325,35.193409,13.822331,10.672747,6.880177,6.927284,9.106625,7.772743,3.738024,0.557027,0.060331,0.281819,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.755000,4612585.550000,4798,4005,116.152916,162.433884,170.797516,157.475204,143.995865,133.756210,130.863647,129.012405,129.053726,129.169434,130.706619,141.177689,158.995865,175.111572,186.615707,195.938019,194.326447,181.995865,157.921494,137.954544,127.417366,122.425629,117.863647,89.557869,73.623985,87.243820,101.276871,75.136383,34.533073,13.938035,10.714894,7.759519,8.542163,5.918192,7.710759,2.980173,0.295869,0.105785,0.151240,0.000000,0.000000,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.955000,4612585.550000,4819,4005,104.923981,162.593414,166.527283,155.543823,141.965317,132.618195,129.824799,128.361984,127.725624,128.147110,129.543808,139.932251,158.130600,173.866119,185.990082,194.981827,192.948761,181.403305,156.940521,135.923996,125.386780,122.320671,116.709099,87.948769,71.700844,86.262817,98.709099,73.130592,34.014896,14.026464,10.609937,6.492574,6.961994,7.051251,7.595881,3.130586,0.697522,0.099174,0.000000,0.000000,0.047934,0.000000,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.755000,4612585.550000,4848,4005,107.864479,155.245483,165.385956,154.617371,142.716537,132.840500,130.551254,127.394234,128.857040,127.906631,129.799194,140.964478,158.567780,175.336380,186.303314,195.419022,194.476868,182.509933,158.724808,137.435547,126.724808,123.468613,118.154564,90.212418,74.063660,87.485138,100.716545,73.633911,35.790928,14.590927,10.741341,6.002491,8.331416,8.068608,8.608279,4.692569,0.834713,0.326447,0.200827,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.355000,4612585.550000,4871,4005,113.251259,161.090912,167.008270,156.297516,142.595047,132.247955,130.958694,128.322327,127.578529,128.652908,130.586792,140.578506,159.115707,175.297516,187.388428,195.355377,194.702484,182.917358,158.049591,137.479340,125.909103,122.479355,118.181831,90.272743,72.611595,88.132248,101.074394,74.438034,34.917381,13.772745,10.743821,6.347946,8.144641,8.395053,8.638032,3.555380,0.174381,0.229753,0.115703,0.037190,0.000000,0.000000,0.000000,0.261157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.555000,4612585.550000,4892,4005,109.325638,163.019836,164.333893,156.590088,141.350433,132.424805,129.300827,127.821487,127.300827,128.978531,128.970261,139.945480,157.457855,174.466125,185.763641,195.152069,193.416534,182.242981,158.598343,135.953735,125.474380,121.507439,116.854553,87.714066,72.912415,86.176880,99.110764,71.738861,33.309109,13.209934,10.623158,5.129761,5.624804,7.745468,5.614062,3.308273,0.227274,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.955000,4612585.550000,4914,4005,113.283485,163.102478,167.937195,157.400009,142.557022,133.672745,130.895874,129.375214,128.961990,129.953735,129.871078,141.226456,158.747116,175.110748,187.647934,196.507446,195.003311,183.358688,159.209915,136.416550,126.961990,122.829758,116.854546,90.631409,72.614891,87.862816,100.375214,73.995056,36.028122,14.995885,10.623158,6.708277,7.446294,7.769433,9.103320,3.871907,0.495043,0.271075,0.283472,0.195868,0.000000,0.000000,0.098347,0.161158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.355000,4612585.550000,4931,4005,100.734718,160.751236,169.428925,158.230576,144.900024,132.346298,130.957855,129.693405,128.437195,130.007446,131.693405,142.205811,160.197525,177.023972,187.610748,196.495041,197.007446,184.156204,159.784302,137.908279,127.685135,123.362823,118.809105,91.461998,73.280190,88.825638,100.949600,74.759514,37.924812,14.211588,10.800845,5.762821,6.055385,7.790922,10.365306,4.116539,0.642977,0.278513,0.000000,0.048760,0.153719,0.000000,0.000000,0.272728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.155000,4612585.550000,4945,4005,101.395058,170.081009,165.395065,155.122330,144.047943,132.709106,131.246307,127.899193,128.998367,130.981842,131.502487,141.990082,159.758698,175.601654,187.634720,196.642975,195.857864,183.064468,159.552094,138.089279,127.370270,123.039696,118.072746,88.766968,71.866127,87.775230,100.047958,73.742172,33.833076,14.159523,10.733903,6.028937,5.850426,6.553731,5.866955,1.378515,0.372728,0.102480,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.755000,4612585.550000,4968,4005,114.891754,164.470245,168.850418,158.734711,143.990906,133.709930,130.511597,128.850433,129.329773,129.850433,131.296707,142.941330,160.387604,175.602478,188.957855,196.982651,196.371078,184.569427,159.709915,138.924789,127.288445,123.916550,118.354568,90.404152,74.528122,89.462006,101.197540,73.544647,35.511593,15.001672,10.759522,6.692575,7.310758,8.557865,6.429765,3.866123,1.116531,0.028926,0.103306,0.747935,0.000000,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,1.075207,0.000000,0.000000 -601741.955000,4612585.550000,4999,4005,121.860344,162.562820,168.207458,160.323151,144.091751,134.703308,131.223969,129.992569,129.223969,131.257034,131.050415,141.893402,160.893402,176.182663,188.934723,197.066956,197.000839,184.794235,160.628937,139.463654,127.752899,124.471909,120.190910,91.538025,75.083488,89.075218,102.695045,74.637199,35.719856,15.564482,10.926465,5.731416,6.884310,7.933071,8.840509,3.142158,0.905787,0.915704,0.652893,0.492562,0.330579,0.666116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.955000,4612585.550000,5024,4005,112.757858,164.939697,167.542999,156.873581,143.617386,134.823990,132.906631,130.237198,129.261993,131.700012,132.311584,142.402512,160.410767,176.865311,188.187622,197.295074,196.534729,185.576065,160.361176,138.683502,127.551247,124.972740,119.427284,90.790924,73.840515,89.443810,101.666954,76.501671,36.154564,14.805803,10.857044,5.458688,6.411583,5.717367,7.015715,2.876865,0.458679,0.271075,0.000000,0.050413,0.000000,0.000000,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,1.255372,0.000000 -601753.355000,4612585.550000,5056,4005,99.713249,164.862000,167.349609,156.804153,144.862000,134.671921,131.357880,130.911591,129.407455,131.531433,130.506638,141.126465,159.804153,175.862000,187.630600,197.407455,196.423996,186.093414,160.870270,139.638870,126.919846,123.862007,119.390930,92.085144,73.746307,88.655396,101.118202,74.300026,34.308285,13.304977,10.853739,5.808273,6.386790,6.736374,7.718194,3.040503,1.269424,0.233885,0.590910,0.064463,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.155000,4612585.550000,5090,4005,113.307449,149.718185,156.892578,147.801666,143.572739,138.495880,135.958694,132.016541,128.950424,130.818192,129.966965,140.462830,157.033081,173.258698,186.845444,196.779343,196.115707,186.330582,163.446304,142.361160,133.038849,129.609100,123.909096,95.839684,79.261169,93.966957,105.958694,79.305794,39.013241,17.230598,11.264482,4.819019,6.636377,8.276872,9.152905,3.855378,1.509093,0.748761,0.544629,0.631405,0.623968,0.151240,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.555000,4612585.550000,5107,4005,123.564468,169.308289,169.176041,160.647110,146.837204,134.308273,132.721497,129.423981,130.151245,132.911575,133.002487,143.250427,160.738022,178.068619,188.647125,198.176056,198.085144,186.572754,161.977692,139.895050,128.291748,124.357857,120.118187,92.704971,75.159515,88.820679,102.275223,76.638855,36.696709,14.102499,10.919853,7.424807,8.421504,6.670261,7.619024,2.713230,0.719011,0.641324,0.113223,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.355000,4612585.550000,5126,4005,100.766960,169.930573,172.385117,161.137207,147.319016,137.327271,135.715698,134.112396,133.930573,136.029755,135.914047,145.880981,162.856216,180.054535,191.790085,201.252884,199.104126,189.219833,164.690918,141.947098,130.856201,127.310738,121.236359,95.170250,75.723976,90.740501,104.558685,77.690926,35.971920,15.228117,11.021505,5.781003,6.969436,7.885136,6.910756,2.870255,0.637192,0.144629,0.105785,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.755000,4612585.550000,5143,4005,111.800018,165.328934,166.957031,158.047943,144.634720,134.419846,133.477707,131.957047,130.543823,133.039688,133.899185,143.221497,160.684311,177.411575,187.981827,199.585129,198.428101,186.163635,162.155380,140.742157,128.676041,125.932243,119.163651,93.097549,74.271103,89.213257,101.279350,75.973587,35.684319,13.990928,10.833077,4.165298,6.655384,7.881005,6.728938,2.670254,0.939671,0.427274,0.000000,0.244628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.555000,4612585.550000,5167,4005,122.177704,169.716537,168.295044,160.625626,146.303314,134.832245,132.311584,130.542984,129.551254,131.427277,129.633896,141.485138,158.419022,174.187607,188.038849,197.394226,195.691742,185.708267,160.104965,140.014053,129.171082,125.733070,119.245461,92.807449,74.460342,89.625633,101.881828,76.947945,34.427296,14.425638,10.840514,5.652075,9.064478,7.176872,8.513236,2.880172,0.839671,0.550414,0.136364,0.052066,0.044628,0.220662,0.004959,0.248761,0.000000,0.678513,0.000000,0.000000,0.000000,0.000000 -601778.755000,4612585.550000,5183,4005,122.121498,171.104965,170.923157,160.890091,146.642151,136.278519,133.609100,132.766129,130.956207,135.113235,133.981003,145.303314,161.542984,179.286789,190.675217,199.534714,199.691742,187.716537,162.857040,141.212402,130.410751,125.741333,120.972740,92.592583,73.906631,90.377701,101.493408,76.328117,35.972748,14.476878,10.997540,5.552902,6.747121,8.463650,7.331419,3.139676,0.558679,0.221489,0.833885,0.055372,0.072728,0.000000,0.014050,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.755000,4612585.550000,5203,4005,121.248779,182.529770,173.405792,163.777695,149.314911,138.513229,135.414062,133.637207,132.538025,135.075211,134.860336,145.662003,163.133072,179.571091,191.942993,202.281830,200.463654,188.959518,165.703323,142.686783,131.215714,126.876862,121.736366,94.232246,75.934731,91.009102,104.934723,77.562828,36.752911,15.769441,11.066961,5.986787,7.371917,8.443815,7.664476,3.886784,0.142976,0.281819,0.128926,0.000000,0.038844,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.155000,4612585.550000,5225,4005,134.499191,177.364456,176.075211,166.819000,151.009109,137.372742,135.777695,133.752899,133.612411,137.447113,135.868607,147.686783,164.372726,181.604141,193.992569,203.058685,201.827286,190.909927,165.306610,143.595886,130.546295,126.587624,121.100021,93.819031,76.083488,90.538040,102.901672,77.042168,35.223988,13.956216,11.009110,5.414885,7.635551,8.233898,8.873569,4.190091,1.114879,0.301654,0.588431,0.130579,0.628100,0.128099,0.144629,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.755000,4612585.550000,5238,4005,101.449608,174.629761,164.538834,160.985138,149.042984,135.935547,135.952072,135.018204,133.142166,137.034714,135.067780,146.761993,163.712402,180.662827,192.646271,201.340485,201.307434,190.241318,165.662796,144.117371,132.373566,128.547119,123.927292,95.133904,77.481010,91.828117,105.662827,80.423157,38.877708,16.738861,11.266134,3.941330,7.735552,7.457865,7.662823,3.565299,0.570250,0.804960,0.510745,0.000000,0.000000,0.208265,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.955000,4612585.550000,5254,4005,121.328125,176.857056,169.204178,162.476898,152.063644,138.154556,137.352905,137.319839,135.187622,139.939682,138.592575,148.807449,165.576065,183.055374,194.691757,204.906616,203.286804,191.369446,167.666977,144.658691,134.146301,128.807465,124.336388,95.228943,77.245476,92.542992,104.782661,78.104973,37.278530,15.990100,11.303325,6.500011,8.111586,8.061172,8.788445,4.701661,0.649588,0.149587,0.212397,0.571901,0.036364,0.000000,0.000000,0.192563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.355000,4612585.550000,5271,4005,136.802490,178.134720,173.977692,164.845459,149.688431,135.184311,133.027283,130.242157,129.928116,133.291748,131.212418,141.895050,159.514877,176.729752,189.547943,199.266953,199.357864,187.622314,163.390915,142.357864,130.886795,126.886795,121.027290,93.035553,76.002502,89.704971,102.886795,76.820686,35.250435,14.481009,11.002499,5.882655,7.644642,8.884311,8.919021,4.721494,2.403309,1.901655,1.934712,1.387605,1.254546,0.819836,0.628100,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.955000,4612585.550000,5289,4005,111.712410,180.642151,176.080170,165.518188,148.476868,137.708267,135.336380,131.460342,132.336380,133.402496,133.468597,143.840500,163.071915,178.394226,189.840500,199.683487,197.939682,184.724808,160.997528,139.741333,127.377693,124.914886,117.609100,90.691742,73.377701,88.088440,100.790916,73.873573,34.716549,14.353737,10.691754,9.076046,8.077699,8.553732,8.549601,3.866949,0.717357,0.111571,0.151240,0.166116,0.000000,0.000000,0.004959,0.114050,1.269422,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.155000,4612585.550000,5320,4005,127.306625,175.984329,173.719864,163.967804,148.058701,135.414062,133.728119,130.901672,130.678528,131.587631,131.042175,142.595886,160.719864,175.504974,186.686783,197.066956,195.166122,182.422333,158.223999,136.951248,126.372749,123.604156,117.190933,89.628937,72.984322,86.199188,99.942993,72.389275,34.232250,13.477703,10.653739,8.333072,8.055386,7.842987,9.477698,3.121495,0.529754,0.128926,0.107438,0.057851,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.155000,4612585.550000,5335,4005,131.726456,174.242966,169.441315,158.044632,143.251236,130.631424,129.185150,127.185143,126.672745,127.738861,128.333908,138.557022,157.276031,172.490891,185.102463,193.887589,192.300812,180.292542,155.168594,134.110748,122.904152,120.995064,114.036385,86.846298,70.631432,85.242996,98.433075,71.309120,32.061176,13.419852,10.366961,9.223156,8.786791,7.508276,8.189269,4.600008,1.058680,0.241323,0.846283,0.237190,0.009918,0.000000,0.000000,0.000000,2.679339,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.155000,4612585.550000,5350,4005,119.433067,170.341309,172.713211,160.047119,146.476868,135.245468,134.212402,131.167786,130.663651,131.333069,130.481827,141.349594,159.252884,175.938858,186.616547,195.641342,195.219849,182.104141,158.046295,137.732239,126.310760,123.685135,117.263649,89.090096,73.933075,87.682655,99.930588,74.252907,33.842171,14.238034,10.660349,8.314061,8.336376,10.689271,10.210757,4.197529,1.293390,1.131407,0.680992,0.871902,0.406612,0.000000,0.007438,0.483471,0.000000,0.000000,0.444628,1.027273,1.236364,0.000000 -601815.155000,4612585.550000,5365,4005,134.195892,182.344635,176.435532,164.055374,147.592560,135.576050,135.121506,130.981003,130.799194,133.138031,131.369446,142.989273,161.286789,177.394211,188.443817,197.997528,196.981003,184.055359,158.369446,139.030594,126.815720,123.997536,117.427292,90.030594,72.179359,86.542992,100.873573,73.014069,35.262009,14.465307,10.675226,8.652906,8.101665,7.210756,8.949600,3.202487,0.774382,0.222315,0.107438,0.000000,0.062810,0.000000,0.004132,0.053719,0.000000,0.000000,0.000000,0.678513,0.000000,0.000000 -601819.555000,4612585.550000,5387,4005,123.683487,180.553741,180.495880,166.553741,152.314072,137.041351,137.057861,134.834732,133.801666,135.421509,134.528946,146.578552,164.561996,179.826462,191.991730,200.173553,199.157028,185.347107,162.016541,139.652908,129.446289,125.966949,121.090919,92.809937,76.413239,89.644646,102.479355,75.247948,35.206627,16.190102,11.008284,10.416544,10.311586,10.100842,9.520676,3.702487,1.090913,0.074380,0.747935,0.124794,0.000000,0.000000,0.000000,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.355000,4612585.550000,5401,4005,128.167786,180.167770,174.440506,163.399200,147.738037,136.200836,135.118195,132.448776,131.696716,133.019028,130.663651,142.341339,160.886795,177.043808,189.250397,198.374374,196.738007,182.919846,158.944656,137.895065,127.432243,123.696701,118.300003,89.151260,73.490105,87.233910,98.432243,72.556221,33.762829,12.544645,10.754565,8.938029,7.333071,8.592576,7.428939,3.678520,0.755373,0.343802,0.112397,0.065290,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.155000,4612585.550000,5420,4005,130.508286,182.747955,170.318192,161.037201,143.595886,130.989273,131.372742,129.265305,127.934723,130.719849,129.744644,139.521500,157.595901,173.819031,185.700012,195.551254,194.328110,180.943008,156.397552,136.628937,126.190926,122.612419,116.736382,88.828941,72.572746,87.752914,98.427292,72.319862,34.428940,13.418200,10.612415,9.362824,8.934725,9.195882,7.914889,4.769431,1.081820,0.819836,0.489257,0.957852,0.386777,0.299174,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.155000,4612585.550000,5435,4005,116.961998,181.915710,168.186783,159.385132,143.336380,129.436371,129.195877,125.906624,125.270256,127.112411,125.145470,137.005798,154.270248,171.956192,183.427261,194.377686,192.724792,178.650406,156.121490,135.691742,124.989265,122.146294,116.290916,90.010757,73.514893,85.746292,99.741341,70.452087,31.386795,12.882662,10.571920,8.049599,6.593402,7.971914,9.015717,4.454553,0.942151,0.683473,0.562811,0.300827,0.313223,0.000000,0.066116,0.000000,0.000000,0.000000,1.987604,0.000000,0.000000,0.000000 -601833.155000,4612585.550000,5455,4005,116.834732,188.882645,175.808273,165.800003,150.056198,133.907455,134.717377,132.155396,130.973572,133.981842,131.262833,142.014877,159.882645,177.403305,188.262817,198.957031,197.783478,183.014877,159.419846,138.841324,127.229767,124.304146,118.981834,91.023163,75.362007,89.138863,100.717377,73.337212,34.676052,15.633076,10.816547,10.283484,6.148772,7.766955,8.535551,3.950423,0.729754,0.327274,0.163637,0.000000,0.000000,0.000000,0.000000,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.355000,4612585.550000,5481,4005,129.902496,193.580978,175.754532,164.283478,145.853729,131.275208,131.787613,129.465302,128.043808,132.250427,128.564468,139.994217,157.127274,174.127274,186.730576,196.400009,193.085953,178.400009,154.820663,133.936371,123.911575,120.481827,115.845459,86.795876,71.713234,85.027283,96.357857,69.225632,33.206631,12.600018,10.531424,7.907453,6.883482,8.694226,7.499187,3.788439,1.090911,0.724794,1.023142,1.281820,0.512397,0.276033,0.187604,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.155000,4612585.550000,5505,4005,129.923981,191.833069,175.618210,166.089279,147.841324,133.395050,133.800003,130.204971,129.932236,132.824799,130.180176,141.543808,157.732254,175.401672,186.715698,196.467758,194.757019,179.509094,155.395050,136.700836,124.808273,122.287613,116.890915,88.254555,74.039680,87.543808,97.492569,70.352081,32.289276,12.714066,10.626465,11.176874,7.438856,9.665301,10.290094,5.047116,2.083473,1.541324,0.888430,0.673554,0.019835,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.355000,4612585.550000,5541,4005,154.298340,198.251236,178.113235,169.394226,150.807449,136.625626,136.295044,133.071915,132.146286,138.708267,131.438019,142.989273,158.956207,176.033875,188.951233,199.777679,195.942978,179.989273,158.559509,139.609100,127.452072,124.509926,119.245461,91.014061,74.633896,89.964470,99.476868,71.096703,33.071922,14.591754,10.840514,11.796708,6.723979,9.542989,8.723979,5.472735,1.364465,0.595042,0.523142,0.844629,0.461984,0.000000,0.233058,0.438843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.155000,4612585.550000,5600,4005,105.354553,165.222321,168.106613,158.676865,143.652069,134.842163,132.238861,129.660339,128.982651,130.123154,130.660339,142.222321,160.329758,175.709930,187.668594,196.230576,195.916534,183.800842,159.395874,138.974380,126.792572,122.966125,118.354553,89.866951,73.371094,88.999184,99.990921,73.453735,33.205807,14.348779,10.759524,6.377698,7.818197,8.281833,7.660346,3.200834,0.201654,0.102480,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.955000,4612585.550000,5689,4005,110.211586,166.178543,169.443008,159.525650,145.277695,133.971909,132.327286,129.864471,129.352081,130.996704,131.624802,142.715729,160.054581,176.690933,189.153732,198.211594,196.393417,185.476059,161.575241,139.839691,128.690918,124.922325,119.872742,92.649597,74.715721,89.781830,101.550423,76.434731,35.773571,12.858696,10.897540,6.417367,7.855386,8.189270,7.047120,2.695048,0.700828,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,1.361984,0.000000,0.000000,0.000000,0.000000,0.000000 -601908.755000,4612585.550000,5833,4005,122.012413,167.293427,169.227310,160.235565,145.053757,134.500015,132.995880,132.433899,130.285126,133.111572,133.607452,145.004166,162.144653,178.309952,191.078552,199.491760,199.549622,187.566147,163.508301,140.491760,129.185959,124.144638,121.681824,91.541328,76.185959,89.756203,102.706627,75.128105,32.665310,14.183489,11.062004,5.907450,6.462824,6.095881,6.828939,3.928934,0.245455,0.085124,0.066116,0.000000,0.003306,0.000000,0.000000,0.190910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.555000,4612585.550000,5997,4005,120.226456,169.152084,167.416550,160.317368,147.590103,136.102493,133.639679,132.449600,132.036377,134.028107,135.176865,145.647949,163.697540,179.953735,192.557037,202.160355,200.813248,189.672745,165.292587,142.672745,131.309097,125.970261,121.672737,94.135559,75.391754,91.061180,102.738853,76.433075,36.135555,12.909109,11.061176,4.286785,5.943817,6.791749,7.119849,3.005791,0.630580,0.307439,0.061984,0.000000,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601958.955000,4612585.550000,6084,4005,130.395065,178.957047,174.097549,166.841339,152.081009,138.618210,137.147125,135.444656,134.857864,139.006638,138.618210,149.105804,166.155396,184.105804,196.700851,206.626465,205.395065,193.915726,169.370270,146.667786,135.717361,131.750427,124.436378,96.808281,79.700844,93.841339,106.543816,80.717369,38.047951,13.929770,11.312416,4.277695,7.467783,8.187616,10.128941,2.895875,0.736365,0.123141,0.000000,0.007438,0.013223,0.000000,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601965.755000,4612585.550000,6118,4005,109.980179,181.297516,179.066116,165.314056,148.834732,137.057861,137.206635,134.123978,134.247955,134.727295,134.818192,146.644623,165.347107,182.107437,193.074387,203.966949,204.289261,190.512390,165.785126,143.710754,132.966965,129.578522,123.818199,94.975220,79.900841,93.652908,106.404976,77.842995,39.132252,15.788447,11.256218,10.223984,9.090098,9.466130,9.810757,6.927282,2.034715,0.720663,0.518183,0.573555,0.000000,0.000000,0.117356,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.555000,4612585.550000,6142,4005,91.362000,175.613251,178.208298,165.712418,146.381851,137.109116,136.447952,133.257874,132.084320,134.018204,133.059525,144.861176,163.357056,181.026474,191.910767,203.018204,201.481018,187.183502,163.233078,141.241348,130.067780,126.150429,121.472748,92.431419,75.885971,90.200020,102.629768,74.580177,35.357044,13.298365,11.042995,8.728114,7.971914,9.510759,8.451252,5.852074,0.563638,0.707440,0.448761,0.086777,0.243802,0.000000,0.091736,0.395869,0.000000,0.000000,0.000000,0.000000,0.000000,2.151240 -601973.955000,4612585.550000,6159,4005,117.639679,176.912415,176.945480,163.441345,148.003326,135.862823,135.846298,131.523972,130.061172,132.871078,132.970261,145.234726,162.788452,179.614899,191.813248,203.061172,202.466141,189.656219,164.871094,142.251266,130.771912,128.879349,124.127281,94.102493,78.871086,93.309105,103.689270,75.474396,37.722332,14.962001,11.284317,10.091749,9.361171,7.499188,8.900842,3.688437,0.744630,0.083471,0.174381,0.054546,0.000000,0.000000,0.032232,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.355000,4612585.550000,6176,4005,112.790924,183.181824,178.537186,164.280991,148.768616,135.305801,134.595062,131.842987,130.132248,132.264481,132.272751,143.983490,162.925613,179.074387,191.933884,203.413223,203.148758,188.223145,164.677689,142.148773,131.272751,128.785141,122.545471,94.157043,77.826462,92.388443,105.818199,77.438034,37.438038,14.920679,11.140514,9.951254,9.360348,10.000015,9.134726,4.033066,1.129756,0.116530,0.327274,0.171075,0.294216,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.155000,4612585.550000,6190,4005,113.017365,177.670258,178.521500,163.554565,148.587616,135.166122,136.414062,131.802490,130.901672,132.314896,132.281830,144.463654,162.860336,180.331421,191.422333,203.232239,202.066956,186.711578,164.017365,141.827286,131.000839,128.058685,123.190926,94.447121,78.356209,91.885139,103.703316,77.265305,36.612419,14.123158,11.199192,9.461170,8.349599,10.708280,8.992576,3.624800,1.585128,0.313224,0.580166,0.003306,0.045455,0.059505,0.000000,0.519009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.155000,4612585.550000,6205,4005,112.335556,186.880981,177.856216,163.484314,147.277695,133.889267,134.004974,130.294235,130.327286,131.641342,131.839676,142.575226,162.798355,179.294235,191.938843,202.566940,201.757019,188.228088,162.624802,141.798355,131.153732,127.550423,123.509102,92.583481,77.955391,92.955383,103.690926,75.980186,37.971920,14.315721,11.228119,10.182659,7.422328,9.816545,9.132247,6.271910,1.433060,0.804959,0.861158,0.614050,1.151240,0.328099,0.270248,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.755000,4612585.550000,6228,4005,109.028954,190.572739,186.192566,167.878525,151.374390,138.093399,140.399185,137.068604,137.258682,139.994217,137.704971,150.151245,168.176041,184.886780,196.390915,207.167755,206.861969,191.721497,167.440506,145.837204,135.118195,132.052078,126.118195,97.680183,81.547951,94.076874,107.415718,76.589272,39.605808,15.283490,11.465309,11.637206,9.700844,8.751255,12.032248,6.032241,1.604135,0.785126,0.365290,0.192563,0.280166,0.035538,0.431405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601990.955000,4612585.550000,6244,4005,114.636383,183.769440,177.033890,163.843811,151.414062,135.645477,135.397537,133.075226,131.381012,134.843826,132.819016,145.050446,163.926453,180.339676,193.397537,204.703323,203.381012,189.703323,165.942993,143.637222,132.802490,129.562820,125.190910,95.058701,79.645477,95.240517,105.819016,78.075226,38.463654,16.769440,11.381011,11.876049,9.535553,11.129766,10.561997,6.006620,1.048764,0.295869,0.309918,0.057025,0.050413,0.076034,0.000000,0.359505,0.000000,0.000000,0.000000,0.000000,1.437190,0.000000 -601997.355000,4612585.550000,6276,4005,120.863663,186.219025,175.979355,166.268616,149.921509,135.855392,135.533081,133.475220,132.202499,135.260345,133.252075,144.723160,162.458694,179.169434,191.781006,202.566132,201.929764,187.384308,163.987625,142.252075,132.904968,127.987617,123.863655,95.119850,79.698364,93.491753,104.995880,77.161171,36.128120,15.015720,11.260349,10.979353,7.793403,8.238855,9.976049,4.621496,0.341323,0.063637,0.215703,0.004959,0.000000,0.095042,0.091736,0.000000,0.000000,0.000000,1.326446,0.000000,0.000000,0.000000 -602000.155000,4612585.550000,6290,4005,117.938858,173.385132,172.790100,163.889267,147.451248,133.922333,132.038025,130.509109,128.633072,131.740509,129.930588,139.889267,155.748779,172.137207,183.509109,195.046295,193.963654,181.814896,158.029770,137.575226,126.839691,123.947121,118.418198,92.442986,76.186790,91.079353,101.021500,75.583488,35.757042,14.356215,10.765308,5.920672,7.190924,8.004143,7.589269,2.290087,0.571902,0.288431,0.224794,0.000000,0.000000,0.161984,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.755000,4612585.550000,6313,4005,105.426468,174.905792,168.137207,165.079330,146.170258,135.434723,132.509109,129.153748,128.277710,131.261185,129.203323,139.798355,155.170258,172.261154,184.641342,194.674393,193.682663,181.583481,159.839661,136.666122,127.674400,122.690933,117.418205,91.071098,76.459526,91.079361,100.219856,74.112419,35.153740,13.404150,10.674400,6.267780,8.733900,8.282658,8.639683,2.825623,0.467770,0.087604,0.139670,0.039670,0.000000,0.484298,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.555000,4612585.550000,6342,4005,105.393410,165.406631,172.828125,159.530609,147.241348,136.332245,133.183472,131.373566,129.092575,131.580170,130.166946,140.762009,155.497543,173.679367,185.902512,195.662842,194.481018,182.952087,158.133911,138.299194,126.348770,122.720673,117.836372,92.315720,75.406631,89.861176,100.183487,74.621506,34.505802,12.831422,10.712417,6.676043,7.511585,8.408278,5.798359,2.814881,0.337191,0.217356,0.201654,0.277686,0.004959,0.120661,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.155000,4612585.550000,6375,4005,115.438019,159.471069,169.421509,163.239685,147.983475,133.983475,132.793396,130.735535,129.652893,131.090912,131.033066,140.214874,156.247940,173.107452,184.611588,195.851257,195.504150,182.181839,158.768600,138.157028,128.033066,125.157036,119.818192,91.917374,76.520676,91.644646,101.586792,76.041336,36.801674,15.185141,10.892580,6.971085,7.383485,8.063649,7.961998,3.345459,0.469423,0.255373,0.049587,0.404133,0.068595,0.069422,0.657852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602025.155000,4612585.550000,6415,4005,108.957870,164.982651,167.610748,157.933060,144.767792,132.453735,130.495056,129.007462,126.197540,128.734726,128.652084,138.131424,154.850418,170.569427,182.850418,193.098343,191.941330,179.891739,157.189255,136.685150,125.321510,121.974396,118.172745,91.437210,76.833900,91.065308,100.362831,75.660347,35.023987,13.990100,10.742993,6.114886,8.456213,7.157862,8.016542,3.067773,0.810745,0.684299,0.356199,0.057025,0.006612,0.145455,0.492562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.555000,4612585.550000,6447,4005,94.717369,154.378525,168.667770,160.072739,143.295868,134.568604,130.791748,129.006622,126.568611,129.841339,130.196716,139.238022,155.535538,171.932236,182.676041,193.692566,192.915710,181.626450,158.279343,136.833069,126.890923,123.552078,118.890930,91.667786,76.609932,91.419846,101.254562,76.320679,38.023163,14.628944,10.808284,4.836374,9.144644,7.464475,9.498362,4.620667,0.442151,0.368597,0.123141,0.252067,0.011571,0.209918,0.370248,0.000000,0.000000,0.000000,2.000000,0.000000,0.000000,0.000000 -602036.355000,4612585.550000,6471,4005,102.573570,156.780182,166.507446,159.838013,143.185120,132.813248,131.317368,128.358704,127.854568,128.970261,129.110764,140.201660,155.160339,170.714066,183.879349,193.656204,192.540497,181.218185,157.242981,136.052917,126.044647,123.011589,119.763657,91.953735,76.474396,91.457870,102.466133,76.449608,36.309109,15.778530,10.887623,5.956211,9.016545,9.094228,9.068608,3.137194,1.126448,0.247935,0.142976,0.071901,0.007438,0.000000,0.000000,0.655372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.555000,4612585.550000,6502,4005,89.290092,159.496704,167.182663,155.521500,142.802490,132.323151,129.686783,126.868607,125.802490,127.736374,128.182663,138.728119,155.496704,170.347946,181.852081,191.546295,191.761169,180.116547,156.083481,134.265305,124.951256,121.265305,116.190926,90.017365,74.484314,88.223976,100.529762,74.447121,35.529774,13.484315,10.562828,6.073564,8.666959,6.241333,7.915716,2.518186,0.625621,0.056199,0.238843,0.130579,0.004959,0.133885,0.065289,0.397521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.555000,4612585.550000,6547,4005,94.460358,154.228958,164.377716,157.435562,142.733093,133.410767,130.683502,127.683495,126.047134,127.452095,128.476883,139.509964,155.088455,170.047134,181.286804,191.873581,190.766144,180.245483,156.047134,133.997543,125.774406,121.270271,116.790932,89.766144,74.385979,89.443825,100.303329,73.700027,35.278530,13.626465,10.617374,4.374390,8.940512,7.734724,5.224805,2.901658,0.418184,0.065291,0.105785,0.110744,0.200827,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602055.755000,4612585.550000,6568,4005,85.787628,153.581009,168.688446,158.035553,144.514893,133.093414,129.845474,127.448776,126.647125,127.308281,128.771103,138.258698,155.192581,171.233902,182.176056,191.952911,193.052094,179.556213,157.225647,136.060349,125.448784,122.754570,117.118202,90.523163,76.159523,91.630600,101.614075,72.837212,36.233902,14.786795,10.647127,6.338028,8.496710,7.323978,7.228112,3.634716,0.390911,0.111572,0.216530,0.241323,0.203306,0.120661,0.645455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602058.555000,4612585.550000,6582,4005,89.179367,155.633896,166.501663,157.121490,142.394226,133.005798,128.840500,126.567780,124.559517,125.237198,126.923149,137.047119,153.981003,169.154556,181.377716,191.253738,191.063660,179.270279,155.741333,135.096710,124.071907,120.228935,116.336372,89.237213,74.609116,89.914902,99.195877,73.559532,35.096718,13.270267,10.576052,5.311581,7.841337,8.298360,7.342161,3.736370,0.614878,0.291737,0.000000,0.035537,0.002479,0.130579,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602062.955000,4612585.550000,6604,4005,95.978539,159.036362,168.614883,154.573563,143.152069,133.044647,128.176880,126.854568,125.788452,126.507454,128.011597,138.135544,155.069427,169.681000,182.284302,192.193390,191.904129,179.441330,156.251236,135.540512,126.061180,120.920677,116.672745,91.259521,74.871094,89.358696,101.019852,72.755394,34.788445,13.303323,10.606630,6.579351,7.668612,7.007449,7.532244,1.925623,0.876035,0.032232,0.000000,0.161984,0.013223,0.071901,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602067.155000,4612585.550000,6625,4005,87.158699,150.447937,161.646286,157.638031,143.034714,133.117371,129.009933,127.497528,126.836380,127.365311,128.431412,137.993393,153.497528,170.266129,182.365295,191.695877,190.737198,179.142151,156.522324,136.166946,124.249603,121.406631,117.290924,89.390106,74.943825,90.431419,100.505798,73.811600,34.307461,13.800845,10.662829,5.713233,6.854560,8.133899,7.529764,3.895874,0.457026,0.538017,0.317356,0.035537,0.000000,0.126447,0.214050,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602070.955000,4612585.550000,6644,4005,86.981010,156.361160,166.914886,157.452072,138.179367,129.683487,127.377693,125.146294,123.873566,123.873566,125.832245,135.609116,151.460342,167.179352,178.865295,189.369431,188.724808,177.716537,154.361160,134.270264,122.369431,119.352905,115.972740,89.253738,74.138031,87.658699,98.857033,71.402496,33.609112,13.323984,10.542994,4.517364,6.649601,6.095052,6.190920,2.827277,0.086778,0.080993,0.147934,0.394216,0.000000,0.153719,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.555000,4612585.550000,6662,4005,87.302505,151.372757,165.207474,156.364487,142.670273,133.645477,128.860367,125.480194,126.100029,126.174408,127.496727,137.314911,153.951263,169.257050,181.149597,191.124802,190.108276,178.843826,156.463669,135.058701,125.190941,121.752922,117.009117,89.992592,76.033913,90.290115,99.967796,72.976059,35.050430,14.076876,10.637210,7.126458,8.045470,7.228111,6.400838,3.024799,0.952895,0.543803,0.267769,0.165290,0.005785,0.033058,0.162810,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.155000,4612585.550000,6690,4005,83.048782,156.966141,169.362823,156.817368,143.643814,133.462006,130.528122,127.569443,126.982666,128.883484,128.486801,138.858688,154.875229,171.255386,182.924820,192.751282,192.032272,179.495056,157.718201,137.214066,126.288452,122.048782,116.809113,92.453735,75.809113,89.966133,99.387619,73.214066,34.842167,14.792579,10.619026,6.064474,7.425635,7.097533,7.603318,2.431410,0.587605,0.400828,0.195042,0.064463,0.000000,0.242149,0.120661,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.155000,4612585.550000,6720,4005,99.178528,157.459518,170.666122,158.393402,146.087631,133.434723,132.442993,128.525635,128.013229,129.079346,128.748779,140.211578,156.203323,172.343796,182.492554,192.806610,192.914047,181.566956,156.922333,136.839691,126.682655,123.624809,118.327286,91.451256,76.897537,91.591751,101.624809,73.682655,35.038033,15.747126,10.757043,7.127284,7.115718,8.775220,8.534722,4.021492,0.609920,0.096695,0.400001,0.268596,0.000000,0.057851,0.777687,0.235537,0.000000,0.000000,1.282645,0.000000,0.000000,0.000000 -602092.355000,4612585.550000,6751,4005,84.261177,155.682663,166.814880,155.533875,143.004974,133.376877,131.137207,127.558701,125.418205,127.426468,128.649612,138.864471,155.484314,171.484299,182.550430,191.368607,192.087616,180.666107,156.682663,137.120667,125.236382,122.062828,117.327293,90.533913,76.963654,89.914070,99.451271,73.476059,35.029770,12.652911,10.666135,7.039683,7.211585,7.268606,7.365302,2.857857,0.676861,0.094216,0.338844,0.109918,0.002479,0.351240,0.274380,0.597521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.755000,4612585.550000,6798,4005,102.056213,154.461166,167.072739,158.337219,139.609924,133.287613,130.221497,127.651253,127.006622,126.766960,129.023148,138.742157,155.114059,170.023163,182.494217,192.626465,192.833084,179.378525,157.370270,135.171921,125.758690,122.238029,117.527290,90.411583,75.469437,89.957039,99.163651,71.849609,33.667789,13.700018,10.684316,6.245465,7.964478,8.907451,8.092576,3.848768,0.411572,0.267771,0.765291,0.147108,0.200827,0.000000,0.588430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602105.355000,4612585.550000,6816,4005,102.527298,152.477692,172.097534,159.709106,147.147110,135.709091,132.436371,128.742157,129.064468,129.601654,132.147110,140.485962,156.709106,172.403305,183.585129,193.824799,193.097534,181.477692,158.114075,137.196701,127.998352,123.502495,118.527298,92.560333,77.064468,89.791740,99.527283,74.667778,34.965309,13.924809,10.775227,6.843812,8.442163,9.981833,7.225633,3.797526,0.663638,0.606613,0.214877,0.059504,0.004959,0.133058,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.955000,4612585.550000,6834,4005,98.321510,156.114883,170.057022,159.065292,144.222321,134.296707,131.635559,128.379364,127.900017,128.395889,129.147949,139.842163,156.090088,172.057022,183.643799,193.371078,192.776031,180.561157,157.387604,136.825638,127.842171,124.164482,118.081841,92.371094,76.833900,91.891754,100.957870,73.453735,33.635555,13.985141,10.734730,7.228937,9.260345,8.981004,9.049600,3.475213,1.419010,0.580993,0.305786,0.000000,0.156199,0.145455,0.162810,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602114.755000,4612585.550000,6863,4005,96.714066,160.590103,170.590103,159.548782,143.548782,132.474396,131.358704,128.499191,128.234726,129.176880,129.838043,140.201675,157.193405,171.482651,183.391754,193.755371,194.028107,181.656219,158.647949,137.028122,128.036377,124.251259,118.218201,92.730598,77.945473,90.474396,101.523987,73.656219,34.821507,14.407456,10.747126,6.247119,8.319851,8.626459,7.660343,3.722320,0.569422,0.609093,0.249588,0.233885,0.003306,0.000000,0.058678,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.555000,4612585.550000,6887,4005,89.094246,159.333908,166.796707,158.689270,144.499191,135.383499,131.730606,129.557053,127.664490,128.755402,129.119034,141.044647,156.168610,172.416550,183.507462,194.011597,193.697540,180.581833,157.879364,138.350433,128.110779,124.904160,120.127296,92.854568,78.540520,92.168617,100.664490,73.366966,35.606632,14.946300,10.920681,7.381831,9.031422,8.238030,7.636378,4.287609,0.684300,0.393390,0.823141,0.252067,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,1.860331,0.000000,0.000000,0.000000 -602124.355000,4612585.550000,6911,4005,95.152916,161.161194,170.235565,158.880203,144.557877,134.367798,132.103333,129.309937,127.557877,128.772751,128.979370,140.037216,157.466980,172.293427,181.433914,194.466980,194.318207,181.144653,159.177719,137.268631,126.896721,124.962837,117.500023,90.938042,77.095062,91.276878,100.252090,73.128120,36.342991,13.558696,10.681838,7.310758,8.476874,8.977700,6.878525,2.358683,0.090084,0.133885,0.146281,0.000000,0.000000,0.000000,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602128.755000,4612585.550000,6933,4005,94.926468,159.100006,171.967804,158.182663,145.050430,133.447128,131.802505,127.463654,127.653740,127.885147,128.017380,139.752899,155.248779,170.761169,182.017380,193.331421,193.058685,179.223999,158.496704,136.265320,126.794235,123.852089,118.645470,91.215714,76.108284,89.290092,100.199196,73.604156,34.414070,13.658694,10.785970,8.466954,7.265303,8.009105,7.996707,4.172734,1.366118,0.826447,0.296695,0.611570,0.221488,0.126447,0.132232,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602133.755000,4612585.550000,6958,4005,108.558693,162.095886,170.004974,157.765305,143.897537,130.649597,130.236374,126.798363,125.360344,126.856209,127.418198,137.517365,155.277695,170.418198,181.120667,192.269440,191.847946,180.095886,156.699188,136.029770,125.046295,123.996704,117.418198,90.517365,76.219849,89.847946,101.368607,71.740509,33.385147,13.532248,10.674399,7.120673,7.442162,7.532243,7.054558,3.335544,0.787604,0.072727,0.277687,0.453720,0.103306,0.000000,0.367769,0.000000,0.000000,0.000000,0.000000,1.050413,0.000000,0.000000 -602137.555000,4612585.550000,6977,4005,102.821510,165.681000,167.532242,160.375214,142.730576,132.292587,130.895889,128.276047,128.069443,127.631424,128.829773,139.689255,155.036377,170.614883,182.366943,193.433060,192.821487,180.928925,157.259521,136.449600,126.532249,124.366959,118.672745,90.813240,76.416550,90.962006,100.631424,72.433075,35.738865,13.998364,10.788448,6.495878,9.000842,8.527286,7.256210,3.004136,1.234712,0.300828,0.482646,0.524795,0.115703,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.355000,4612585.550000,7006,4005,109.786797,169.464493,171.985153,159.249619,144.687622,133.704147,131.274399,128.671097,126.869438,128.224808,127.662827,138.720688,154.976883,170.290939,182.233078,192.745483,192.786804,179.728958,157.894241,137.357056,128.208282,122.522331,118.109108,90.960350,76.902496,90.315720,101.745476,74.481010,35.299191,15.186796,10.737209,8.695883,8.297536,9.404146,8.773566,4.902488,0.242150,0.282645,0.159505,0.056199,0.000000,0.000000,0.131405,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.755000,4612585.550000,7038,4005,97.501678,167.385956,163.419022,158.014053,142.261993,130.576065,129.452087,127.253746,125.171097,127.642174,126.832260,136.443817,152.890091,168.972733,180.361160,190.939682,191.832245,178.419022,154.501663,134.972748,125.733086,121.014076,115.609116,88.675232,74.113243,88.154572,99.939697,72.071922,34.890106,13.378530,10.509936,5.261168,6.116542,6.397532,6.421500,2.727278,0.175208,0.241323,0.280166,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602152.755000,4612585.550000,7053,4005,91.607460,170.780991,169.772720,160.574387,145.425629,133.847137,132.235565,129.285141,128.971085,129.665298,128.202499,138.814072,155.384293,171.772720,183.194214,193.657028,193.830582,180.962814,157.409088,136.913239,126.615715,123.855385,118.590927,92.128113,75.607460,90.913239,100.235550,73.045479,33.533077,15.010761,10.781011,8.900014,7.726461,8.181830,7.542161,2.878517,0.418183,0.064463,0.217356,0.289257,0.000000,0.069422,0.404959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602155.555000,4612585.550000,7067,4005,97.101677,165.498367,167.225647,159.291763,142.597549,132.729782,130.490112,127.729774,127.291748,128.539688,127.738037,139.242172,155.795883,171.382645,183.068604,193.580978,193.671890,179.878525,158.382660,137.374405,126.167786,124.027290,119.027290,91.795891,76.581009,91.159523,100.440514,72.828941,34.093410,13.785969,10.820681,8.252905,7.689271,6.281002,6.738855,3.448766,0.630580,0.528100,0.000000,0.041323,0.003306,0.072727,0.000000,0.665290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602160.155000,4612585.550000,7090,4005,99.236374,176.046295,173.252899,163.624802,147.996704,136.343811,133.922333,131.087616,131.112411,132.872742,130.484314,142.575226,158.914062,174.633072,186.327286,198.608276,196.509109,183.054565,159.145462,140.781830,129.914062,127.633072,121.236374,94.038033,78.889267,91.723976,103.509102,74.038033,35.641342,15.505803,11.021506,10.512413,10.292578,10.190922,10.930595,2.526452,1.090084,0.288431,0.309918,0.000000,0.014050,0.063637,0.325620,0.295041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602164.955000,4612585.550000,7114,4005,118.309113,173.978516,170.375214,162.937195,148.358704,134.226471,133.325638,131.011581,129.788437,132.631409,130.449600,141.937210,157.201660,173.565292,185.127274,197.771881,195.424774,181.871078,159.714050,139.085968,128.276047,127.061165,121.036377,93.854568,79.490929,91.540512,102.523979,73.242996,35.755390,13.863653,11.003325,8.876871,9.437204,9.366956,10.287618,3.400833,0.515704,0.212398,0.324794,0.131405,0.223141,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602171.755000,4612585.550000,7148,4005,115.622337,182.250427,171.572739,162.093399,145.820663,132.390930,133.300018,130.200851,128.837219,133.531433,129.457047,139.919861,154.861984,172.291748,183.928116,194.878525,194.704971,179.837204,157.118195,138.250443,128.969437,125.440521,120.118202,92.217377,77.713249,90.812416,99.919861,69.911591,33.192581,15.242167,10.919853,9.334726,8.879355,9.185138,7.836377,5.262817,0.253720,0.381819,0.065289,0.000000,0.000000,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.555000,4612585.550000,7172,4005,123.193398,181.325638,172.887619,167.284317,150.292587,137.366959,136.962006,133.945465,133.499191,137.342163,133.771912,145.052917,159.681015,176.267792,189.879333,200.920654,200.234695,185.408279,163.251266,142.755386,134.176865,131.267776,124.945473,97.705795,82.730591,97.871094,103.152077,74.995056,35.466137,15.871919,11.358697,12.100015,10.471917,10.808279,10.500014,4.800007,1.169425,0.400829,0.190910,0.459505,0.000000,0.077686,0.008265,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602182.955000,4612585.550000,7204,4005,120.787621,178.886795,173.085129,166.820679,148.481842,136.762833,134.779358,132.581009,131.647125,137.324814,133.465302,144.853745,159.928116,177.580994,190.423996,202.655396,202.779358,187.217377,166.804153,146.630600,136.746307,133.217377,127.027290,99.448776,84.324814,98.944641,107.531418,77.473579,36.514896,16.866133,11.547953,12.719024,10.047949,10.928942,10.747121,4.261990,0.560332,0.285952,0.251240,0.000000,0.059504,0.224794,0.984298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.755000,4612585.550000,7238,4005,133.595047,177.016525,171.132233,162.942169,147.958694,135.305786,132.446289,130.892563,131.008270,134.677689,131.429749,143.173553,157.446304,173.958679,188.991745,200.198364,201.132248,186.165298,165.371918,144.115707,134.090912,130.173553,125.090912,96.776871,82.727287,96.000008,108.462814,78.041336,38.603325,16.708282,11.371920,14.048777,7.563651,9.435551,8.842162,5.813235,1.025623,0.533886,0.109091,0.053719,0.000000,0.185125,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602195.555000,4612585.550000,7267,4005,105.159515,145.423996,153.473572,148.514893,135.539688,125.787621,121.589272,117.878525,118.407455,119.680183,120.977699,131.118195,147.589279,163.374405,176.192581,187.696716,188.903336,178.531433,154.845474,136.837219,125.242165,120.787621,115.481834,88.275223,72.638855,89.828941,102.440514,77.027290,34.465309,13.698363,10.498366,5.247116,8.118196,8.706626,7.783484,3.274387,0.647936,0.487605,0.063637,0.000000,0.052066,0.080992,0.078513,0.304959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.755000,4612585.550000,7303,4005,91.722336,151.077698,155.218201,147.548782,134.019852,124.887611,122.441330,118.970261,118.755386,120.325630,120.920670,132.796707,148.854568,164.333908,176.276047,188.300842,187.854568,178.077698,156.887619,136.937210,126.747116,120.995056,116.036377,88.499184,73.333900,91.490921,106.044640,79.457870,38.557045,15.448778,10.548779,7.294228,8.833073,8.931420,10.420674,3.439679,1.116533,0.334712,0.075207,0.071901,0.137191,0.000000,0.480992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.155000,4612585.550000,7335,4005,93.976875,150.365311,154.621521,145.571930,131.464478,122.059525,119.042992,116.629768,115.638031,117.489273,118.555389,129.191757,145.571930,162.390106,174.712418,186.861176,187.175232,176.307465,155.811600,134.530594,124.927292,120.836380,112.654556,87.902489,71.208282,89.464470,106.051247,78.943817,37.282661,13.892578,10.241340,6.267781,9.833899,7.485139,6.628109,4.609927,0.602482,0.269423,0.132232,0.066942,0.090909,0.000000,0.152066,0.692562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602215.355000,4612585.550000,7366,4005,100.301666,153.219009,156.301666,146.632233,134.103317,124.690094,123.161163,119.161163,118.028931,119.004143,120.020668,131.971085,148.855377,164.384308,176.152908,188.995865,187.888443,178.252075,156.921494,135.888443,125.590919,121.004143,114.500008,87.714890,72.433899,90.012413,106.037209,78.235550,35.929771,17.085142,10.409109,7.392572,8.630592,10.731419,9.342989,2.817362,0.589258,0.368597,0.158678,0.136364,0.000000,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.355000,4612585.550000,7396,4005,108.381004,146.595886,153.719849,145.075226,129.579346,120.133072,118.240509,115.298363,114.323151,116.025635,117.323151,128.480179,145.885132,162.083481,172.909927,184.604141,184.554565,174.587616,153.042160,133.273560,122.488441,119.455383,112.463646,88.298363,70.678528,87.058693,100.232246,74.281830,33.876881,12.878529,10.223986,5.001664,6.821500,7.797533,6.330590,3.025627,1.201656,0.428101,0.112397,0.239670,0.300827,0.000000,0.333059,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602226.955000,4612585.550000,7424,4005,105.026459,146.175217,154.712402,144.084305,132.323975,121.877693,120.125633,117.406624,115.133896,116.299187,117.158684,129.290924,146.009933,161.051254,174.968597,184.728943,185.596710,174.224808,153.885956,133.398361,123.042984,119.588440,114.018188,87.778519,71.943817,88.563644,101.968605,75.323975,33.712418,13.880182,10.365308,7.670261,10.221502,8.562823,10.004972,3.188439,0.810746,0.665292,0.109918,0.099174,0.249587,0.026447,0.140496,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602232.755000,4612585.550000,7453,4005,96.204979,156.990082,155.849594,144.775208,132.287613,121.973557,119.006615,116.188438,114.766960,115.320671,117.039673,126.758682,144.031418,160.271088,170.833069,181.692566,182.295868,171.436371,150.171906,129.965302,122.196701,117.386780,112.254555,86.676056,71.932251,86.287628,96.403320,73.238037,34.841347,12.846297,10.204977,5.161168,7.938857,7.408278,6.891747,2.796701,0.998351,0.034711,0.000000,0.143802,0.128926,0.000000,0.291736,0.069422,0.000000,0.000000,0.000000,0.000000,1.799174,0.000000 -602241.555000,4612585.550000,7497,4005,150.074417,159.388458,158.586807,144.925659,131.198364,121.661171,117.528938,113.512413,113.537209,114.272743,115.256218,124.694229,141.024811,157.735565,168.223175,175.404984,173.843002,163.363663,144.487625,126.851257,118.553734,115.297539,112.727287,90.223160,72.140511,89.776878,110.909103,84.975220,38.768616,13.119853,10.247953,7.971913,8.772741,9.983485,8.975221,4.914887,0.708267,0.278514,0.065289,0.100000,0.247934,0.000000,0.486778,0.738018,0.000000,0.000000,3.666116,0.000000,0.000000,5.956199 -602249.955000,4612585.550000,7539,4005,196.172745,175.156204,158.172745,141.114883,130.313232,119.767769,117.238846,113.205788,111.048767,111.519836,111.891739,123.544640,140.461990,154.288452,166.569427,174.751236,174.156204,167.073563,147.809113,130.528107,123.594215,120.842155,119.263641,95.635559,76.346298,95.875229,120.999176,94.949608,43.825634,13.570264,10.842167,12.062824,11.612410,12.493402,13.704975,10.245466,1.108266,0.344629,0.713225,0.086777,0.111571,0.467769,0.030579,0.740498,2.109091,1.960331,1.799174,4.248761,1.642149,0.000000 -601335.555000,4612575.550000,2967,4055,180.637192,161.157867,121.741348,108.162834,90.987617,78.822327,77.433899,74.557869,73.574394,77.111588,74.946297,84.625641,100.650429,117.187630,129.042160,140.579361,141.009109,130.513229,116.091759,99.876877,89.956215,88.633904,84.736382,56.516541,39.047951,58.038857,89.744652,74.538040,34.496712,8.523153,7.703325,21.494234,11.025635,19.795883,28.779358,26.676052,6.832243,2.770255,2.663641,2.766121,3.227277,6.257858,13.979345,12.289266,97.537209,56.864471,30.052900,30.075211,32.350418,39.656200 -601338.355000,4612575.550000,2981,4055,191.900848,177.710754,138.024811,122.859520,105.933907,92.140511,92.214890,88.950432,89.487617,92.652908,90.305801,101.661171,118.661171,136.528946,148.743820,160.785141,160.338852,150.314072,130.371918,112.057869,101.628120,100.710770,95.000023,65.347130,47.661179,65.537209,87.834724,68.115730,30.453739,11.002496,8.636383,20.954561,10.564480,15.951257,21.240513,20.035553,6.673564,4.467776,4.412404,2.914055,2.493393,6.042155,7.104964,8.691745,84.799187,44.690918,30.006618,20.627277,26.607443,39.809917 -601341.555000,4612575.550000,2997,4055,190.434738,177.352081,140.699203,126.971924,111.319031,97.120682,96.211594,94.310768,93.905807,99.244652,95.517380,107.401672,123.856216,142.451263,155.509125,168.732254,167.715729,155.533920,133.963654,114.319031,104.095886,102.029770,96.781837,66.674400,48.971916,64.682663,82.856209,59.914070,26.905804,10.557040,8.798367,19.595060,11.117370,13.483486,15.109934,12.833073,5.876869,3.127278,2.986782,2.806616,1.863641,5.450420,3.831412,8.785959,72.592575,48.726452,26.785128,24.549591,21.826450,25.297522 -601345.355000,4612575.550000,3016,4055,203.451248,178.434723,143.525635,131.641342,113.459518,99.889267,98.442986,98.228111,97.153732,102.252907,98.988441,110.038033,129.409927,147.360336,161.145462,174.666122,174.418198,159.674393,138.162003,117.426460,106.674393,104.203316,98.236374,67.277702,49.914070,65.079361,78.674393,56.649609,25.262003,8.419024,8.930597,19.228943,9.123157,11.842163,15.613240,11.886790,3.149594,1.377690,2.334714,1.107440,1.184300,3.229757,4.837198,6.376867,63.377697,50.560337,41.947941,21.180170,20.692564,26.088432 -601350.155000,4612575.550000,3040,4055,203.739670,188.538834,151.795029,137.497513,119.051254,105.968613,105.456215,102.695885,102.588448,110.489273,105.745476,118.323982,135.538849,155.638016,170.704132,184.059494,184.613220,169.150406,147.034698,124.836380,113.712418,110.638031,104.836380,73.646301,57.125641,73.009933,85.431419,59.646301,28.595060,11.938859,9.530598,20.923983,10.390097,11.053733,13.076874,10.672741,2.425626,1.332235,0.695870,0.809093,0.735539,1.651241,2.050418,2.495870,18.223143,25.372732,16.679342,20.704138,17.150415,26.900003 -601356.355000,4612575.550000,3071,4055,218.895065,193.694229,154.966965,143.024811,123.066132,110.884315,108.363655,107.975220,107.958694,115.966957,110.834724,122.396713,138.991745,158.181839,174.429764,187.834732,186.983490,171.603317,148.438034,128.471085,116.727287,114.595055,108.636383,77.272743,60.322334,77.206635,86.223160,60.016548,28.249605,13.071092,9.876052,23.248777,10.804148,12.635553,13.762825,9.773565,2.261163,1.011573,1.404962,0.518184,0.534712,0.528926,1.074382,0.771901,12.912399,11.323969,10.752894,11.477689,10.608265,10.142976 -601364.355000,4612575.550000,3111,4055,152.070267,158.665298,151.855392,139.392563,125.400833,114.475212,112.516541,109.888435,110.590919,111.632240,114.078522,123.632248,141.797516,157.706635,171.450409,183.219009,184.128098,174.500000,149.789276,128.657028,117.789261,114.442162,108.954552,80.235550,62.772743,75.425636,88.681831,62.979355,29.623987,12.030597,9.904978,10.959519,9.317369,10.706628,9.884313,4.498357,2.852898,1.119837,0.612398,0.158678,0.376860,0.307438,0.366943,0.423967,6.211571,1.000827,0.803306,0.660331,0.943802,5.447935 -601375.155000,4612575.550000,3165,4055,135.295883,150.395889,147.676880,137.486801,122.536377,113.726456,111.362823,110.222328,108.916542,110.486786,112.453728,122.916542,140.445480,156.751266,170.032257,181.800842,181.875229,170.842163,147.428940,125.709930,115.718193,112.866951,105.354553,78.660339,59.329773,74.817368,85.718193,61.181011,29.073572,11.490100,9.577705,7.809104,7.824807,9.414892,7.323154,4.802487,0.404134,0.714878,0.035538,0.432232,0.000000,0.034711,0.064463,0.000000,2.153719,1.004959,1.606612,3.044629,0.000000,1.953719 -601387.155000,4612575.550000,3225,4055,120.256203,149.809921,146.512390,135.041336,123.206619,112.123978,111.330589,108.355377,108.595047,110.231415,110.537201,121.909096,138.710739,155.462830,168.247940,179.413223,179.198349,169.330582,146.859497,124.760338,113.991745,110.181824,104.363647,76.735550,59.487625,74.206627,84.933899,61.347126,28.720680,11.435555,9.487622,6.748772,7.291748,7.052906,7.750425,3.696701,0.480993,0.204133,0.133885,0.042975,0.299175,0.100827,0.000000,0.000000,2.029752,4.967770,3.304133,3.064463,6.611571,1.711570 -601401.955000,4612575.550000,3299,4055,111.797539,148.902496,147.613235,135.976868,121.563652,114.340515,110.266136,110.001671,108.919029,110.547127,112.183487,122.596710,140.216553,156.191742,169.423157,179.158691,180.770264,170.481003,146.051254,125.547127,114.133904,110.481010,104.381836,77.323990,58.762001,74.431427,84.877708,63.200016,28.555389,12.387621,9.489275,8.445468,8.871088,8.542162,8.359517,3.869428,0.313225,0.178513,0.000000,0.057851,0.051240,0.000000,0.000000,0.247108,1.959504,0.000000,0.000000,3.637191,2.730579,0.000000 -601424.755000,4612575.550000,3413,4055,120.467781,157.057861,151.917374,141.900848,127.842995,117.685966,116.330597,114.115715,113.008278,115.157043,116.876053,127.206627,143.677704,159.570267,173.504150,183.297531,183.958694,173.752075,150.231415,128.115723,117.826462,112.719025,107.454559,79.297539,61.562004,77.140511,88.859520,64.958694,29.728943,11.725637,9.768614,6.356208,7.064476,7.366955,8.438857,4.733892,0.226449,0.441324,0.495869,0.176860,0.048760,0.115703,0.911571,0.000000,1.140496,0.918182,2.672728,1.538843,4.104959,1.967769 -601434.555000,4612575.550000,3462,4055,118.417374,156.517365,153.418198,144.550430,130.988449,120.327286,118.170258,118.013237,116.186790,118.872742,119.211586,129.376877,147.393402,162.971909,175.542175,185.442993,186.905792,176.831436,152.319016,129.955383,119.211586,114.947121,108.690926,81.021507,63.591755,78.467789,88.732246,66.542168,30.310762,12.770266,9.881011,5.183480,7.609931,8.510757,7.011582,3.282650,0.380168,0.061158,0.000000,0.416530,0.000000,0.000000,0.000000,0.000000,1.088430,1.018182,2.736364,0.000000,0.000000,1.925620 -601439.755000,4612575.550000,3488,4055,141.253738,186.468597,170.815720,159.410751,140.262009,127.675224,126.584312,124.691750,124.154564,130.319855,124.906631,136.121521,152.633896,169.666946,182.923157,193.997528,193.319839,178.220673,157.799179,136.204163,125.931419,122.799194,117.336380,88.204147,72.881836,87.352913,96.931419,69.030594,33.906628,13.295059,10.666961,12.225636,7.881006,9.531420,10.809105,3.695051,0.544629,0.395042,0.149587,0.000000,0.000000,0.000000,0.072727,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.755000,4612575.550000,3523,4055,131.765305,181.368607,166.955368,157.922333,140.095886,126.153732,126.368614,124.335548,124.228111,129.732254,125.368607,136.566956,152.509109,169.352066,183.649597,195.062805,193.599991,179.120667,156.418198,136.740509,125.781830,123.038033,117.600014,87.178528,72.963654,86.674393,96.732246,69.368614,32.004978,13.543818,10.690928,10.381834,7.130592,8.238856,8.285963,3.806620,0.247935,0.194215,0.118182,0.050413,0.063637,0.222314,0.000000,0.037190,0.000000,0.000000,1.147934,1.075207,0.000000,0.000000 -601449.355000,4612575.550000,3536,4055,127.205803,181.321487,165.685120,159.776047,140.866959,128.181015,127.271919,124.908287,125.263657,130.495056,126.164482,137.329773,153.255386,170.577682,183.833893,195.924789,194.007446,180.106613,157.503326,138.313248,127.371094,124.561180,119.172745,88.536385,73.635559,86.362831,96.908287,69.809113,33.189274,13.809936,10.833903,10.094231,6.823981,8.219849,7.614062,3.723976,0.538018,0.200001,0.150414,0.095868,0.000000,0.000000,0.061984,0.104133,0.000000,0.000000,1.129752,0.000000,0.000000,0.000000 -601452.755000,4612575.550000,3553,4055,128.653732,181.918198,166.438858,159.521500,141.587616,128.455383,129.595886,126.604149,126.033897,130.918198,127.405800,138.728119,155.414062,171.752899,184.852081,196.777695,195.546295,182.050430,157.843811,138.876877,126.827286,124.538033,119.645470,90.438858,74.157875,88.695053,98.091751,71.306633,34.810764,14.360350,10.876879,13.141339,9.197535,9.952081,9.563651,3.320671,1.342978,0.228100,0.094215,0.105785,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.155000,4612575.550000,3580,4055,113.723991,174.707428,165.723984,156.633072,140.707428,126.418198,126.054558,124.352081,124.104149,128.145462,125.831421,137.219833,152.476044,170.261169,183.757019,194.955368,193.831406,180.699173,157.517365,137.401657,125.682655,123.600014,117.690926,88.781837,73.261177,85.922333,96.195053,71.269440,32.823158,13.100844,10.699192,11.413240,8.142164,8.244642,8.332246,4.046289,0.457852,0.000000,0.137191,0.000000,0.000000,0.000000,0.004959,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.955000,4612575.550000,3609,4055,118.950432,172.578506,167.041321,155.719009,140.148758,128.008286,128.925629,125.140511,124.388443,128.371918,126.314064,137.586792,154.247940,171.570251,183.256195,194.801651,193.512390,180.173553,158.429749,137.256195,126.446297,123.264481,118.272736,88.603325,72.859520,87.429771,97.504150,71.694229,34.157043,13.447124,10.752086,10.090923,8.283486,8.406627,10.461174,5.061166,0.725622,0.047108,0.097521,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.955000,4612575.550000,3629,4055,113.044647,176.424789,164.400009,153.656204,139.069443,126.672745,126.565308,125.127296,124.185143,126.003326,125.408287,136.945480,154.077682,170.846283,183.019836,193.457855,193.433060,180.920670,157.019836,135.953735,125.342171,122.796722,118.036392,88.722336,71.168625,85.705803,97.523987,70.623161,33.548779,13.443820,10.730597,7.875219,7.725634,7.758690,9.295883,3.957860,0.469423,0.000000,0.203306,0.178513,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,1.044628,1.285124,0.000000 -601473.155000,4612575.550000,3655,4055,118.618187,168.568604,161.957031,154.477692,137.750427,127.304138,126.262817,124.775223,123.973572,127.064476,125.204971,137.742157,156.246292,171.287613,183.783478,194.320663,194.163635,181.824799,158.519012,137.436371,126.725632,123.733902,117.800018,89.552078,71.874397,85.965302,98.047951,72.791748,34.750431,13.946301,10.709111,8.056211,8.510757,8.709105,8.484310,4.413232,0.756200,0.278513,0.113224,0.290910,0.000000,0.000000,0.000000,0.042149,0.000000,0.000000,1.118182,0.000000,0.000000,0.000000 -601479.555000,4612575.550000,3687,4055,115.609108,167.187622,165.633911,154.104980,139.303329,128.187622,127.237206,124.509933,124.518196,126.286797,126.509933,137.658707,155.377716,170.939697,184.410767,194.609116,194.890106,181.931427,157.708298,137.452087,126.518196,123.509933,118.336380,88.799194,72.468613,85.228943,97.650429,71.914894,32.452087,12.926463,10.757871,8.194227,8.287617,7.994227,10.194230,3.793397,0.563638,0.171075,0.174381,0.240496,0.000000,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601483.955000,4612575.550000,3709,4055,112.490936,170.474396,166.036377,155.011597,139.714066,128.854553,128.201660,125.152077,125.019844,125.986786,126.871086,137.771927,155.953735,172.036377,184.507462,194.714066,194.763657,182.317368,158.366959,137.110764,127.738853,123.375221,118.490921,89.375221,73.400017,86.193398,99.333900,71.350433,34.259525,13.876879,10.771920,9.936379,8.505800,9.461172,9.420676,3.017363,0.478514,0.486778,0.403307,0.391736,0.058678,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.755000,4612575.550000,3728,4055,116.373581,164.423157,164.208267,151.861160,138.200027,126.257874,125.993416,123.745483,123.282669,124.290932,125.885979,136.390106,154.795044,170.398361,182.704147,194.571915,193.861160,181.836380,158.414886,137.299194,126.604973,123.191750,116.836380,88.406639,71.819862,84.555397,97.877701,71.266144,32.191753,12.927292,10.621507,11.254561,7.560344,7.102493,8.809931,3.016536,0.882646,0.411571,0.000000,0.000000,0.008265,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.955000,4612575.550000,3754,4055,111.038864,160.336395,162.369446,154.154572,136.253738,127.509933,125.906631,123.600845,123.063652,124.675224,125.295059,137.014069,154.642181,170.584320,183.493408,193.014053,193.956207,182.063660,157.551270,136.617386,125.691750,122.344643,117.609108,88.749603,70.708282,84.245476,96.807457,72.121506,33.352913,12.856217,10.691754,8.864478,7.528114,8.116543,7.666956,2.651246,0.762812,0.298348,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.230579,0.000000,0.000000,0.000000,0.000000 -601496.755000,4612575.550000,3773,4055,103.824799,164.403336,165.204987,152.899185,139.742157,129.833069,127.510750,124.882660,124.543808,125.957031,126.659515,138.155380,157.527298,172.585129,184.477692,194.593399,194.849594,182.676041,159.543823,137.717361,127.213226,123.535545,117.618187,89.791740,72.527283,87.014885,100.006615,71.114059,33.345474,14.761175,10.692580,7.600839,8.185964,9.210758,10.272741,3.404967,0.393389,0.315703,0.214877,0.049587,0.000000,0.092562,0.008265,0.000000,0.000000,0.000000,1.067769,0.000000,0.000000,0.000000 -601500.555000,4612575.550000,3792,4055,115.968613,164.571915,164.828110,156.538849,140.125641,128.877701,128.084320,124.505806,125.968613,125.894234,127.109108,138.638046,156.439682,172.274384,184.133896,195.629761,195.704147,183.761993,159.257858,138.001678,126.489273,124.009933,118.018196,89.076050,73.067787,86.803322,100.117371,73.340515,35.638035,14.054564,10.728946,7.818195,9.188445,7.400013,9.404146,4.916539,0.641324,0.374381,0.174380,0.000000,0.147108,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.555000,4612575.550000,3817,4055,112.427292,164.204132,165.914871,153.336365,138.914902,129.576050,126.435555,125.369438,123.815720,124.898361,125.890099,137.650436,155.633881,170.691727,183.691727,193.881805,193.468582,182.303299,159.253708,137.551254,125.319855,122.609108,117.790924,88.600845,72.121506,85.989273,100.179359,72.551254,34.154564,12.897538,10.708283,6.997533,7.823983,7.303320,9.314892,3.732239,1.009094,0.000000,0.103306,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.755000,4612575.550000,3833,4055,112.569443,163.751236,165.602478,153.412399,137.519836,127.999191,126.544640,123.387619,123.023987,123.776054,125.809105,136.313232,153.990906,171.065292,183.387619,193.933060,193.205795,182.131424,157.023972,136.371078,125.048782,122.081841,116.990929,88.528107,71.073578,85.668617,98.230591,72.908295,33.338036,13.525638,10.635556,6.338853,7.299189,8.435553,8.238030,3.376041,0.465291,0.236364,0.137191,0.179339,0.000000,0.000000,0.000000,0.160331,1.215703,0.000000,0.000000,0.000000,1.128099,0.000000 -601512.155000,4612575.550000,3850,4055,102.559517,163.352905,165.749603,151.815720,137.592575,128.666946,127.113235,124.187614,122.848770,125.592575,126.658684,137.104965,155.344635,171.162827,183.427292,193.237198,193.113235,181.741348,158.179352,136.691742,126.162819,123.336372,117.972740,88.807449,72.567780,86.981003,100.476868,70.939682,36.195889,14.378530,10.724813,8.844642,8.287619,9.249601,9.028940,3.858686,0.977689,0.250414,0.000000,0.261157,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601520.955000,4612575.550000,3894,4055,114.190926,158.361160,164.319839,152.650421,139.319839,129.898361,127.468605,125.385963,124.509926,126.071907,126.799187,138.385956,156.427277,172.989273,185.832245,195.410751,194.485138,183.832245,158.700012,137.435547,127.096703,124.609100,119.518188,89.377693,73.038864,86.881828,100.476868,74.096710,35.683495,15.187622,10.865308,8.710758,9.868611,9.202495,10.172744,3.618190,1.141324,0.290083,0.276860,0.111571,0.000000,0.000000,0.000000,0.026446,0.000000,0.000000,1.038017,0.000000,0.000000,0.000000 -601523.955000,4612575.550000,3909,4055,102.332253,163.142151,164.852905,153.596710,139.753738,128.720673,126.373573,124.613243,124.646301,124.985138,126.770264,137.753738,155.629761,172.629776,184.786804,193.927277,193.357040,182.084320,158.828110,136.671097,126.381828,123.629768,117.927292,90.009926,72.307457,86.580177,99.935555,73.373573,34.414894,14.563655,10.720680,7.273567,8.300015,8.873569,8.262823,2.287610,0.560332,0.504960,0.107438,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.755000,4612575.550000,3933,4055,99.184311,158.233902,163.465317,153.052078,137.258698,129.027283,126.217369,123.572739,123.638855,124.448776,126.663651,137.374390,155.514877,171.936371,184.151245,193.812408,193.729752,183.085129,158.704987,136.944656,126.539680,123.258690,118.300018,88.076874,71.349602,85.919846,99.630592,73.316544,34.771091,13.390100,10.754565,6.208276,7.804146,8.886791,8.919850,2.908273,0.506613,0.222315,0.000000,0.000000,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.155000,4612575.550000,3950,4055,105.629761,153.025635,161.430588,150.959518,136.199188,127.058693,124.488441,122.562828,121.290100,123.852089,125.033897,136.281830,153.050430,169.604141,183.248779,193.736374,192.885132,180.918198,157.480179,134.496704,125.645470,122.876869,115.736382,87.232254,71.149605,85.273575,98.033905,71.992584,32.331421,11.553738,10.521507,6.667780,7.649602,8.134724,6.647949,3.358687,0.340497,0.040496,0.122314,0.000000,0.000000,0.000000,0.000000,0.044628,1.103306,0.000000,0.000000,0.000000,1.216529,0.000000 -601535.955000,4612575.550000,3969,4055,97.628113,153.447113,161.992569,151.819016,137.976044,127.455383,124.661995,123.347946,122.711586,124.265305,125.347946,137.141342,154.819016,171.166122,183.802475,193.306595,193.967743,182.529755,158.976044,136.149597,125.504974,122.513237,116.554558,89.166130,70.918198,86.438858,99.042160,72.777702,34.290104,13.538860,10.595887,6.742160,6.964477,7.149600,7.886789,3.562819,0.471076,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.210744,3.549587,0.000000,0.000000,1.295868,0.000000 -601538.755000,4612575.550000,3983,4055,93.286789,153.043808,162.539673,151.010757,137.928101,128.490082,126.308273,124.002487,123.151245,125.357857,126.729759,136.977692,155.423981,171.101654,184.159515,195.192566,194.490082,182.539673,159.349594,137.167755,126.258682,122.440506,117.209099,87.961166,71.027290,87.870255,99.845459,72.696709,35.837208,12.647126,10.655392,7.463649,7.554562,7.500013,8.050426,2.363645,0.506613,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.355000,4612575.550000,4001,4055,99.179359,156.741348,163.782669,151.823990,139.055405,129.427292,127.906631,124.741341,124.551254,126.080185,126.956215,138.319855,157.402512,172.997543,186.121521,195.939697,196.518204,183.179367,159.443832,137.700027,126.509933,124.154564,118.700020,88.914894,72.873573,87.427292,100.295059,73.501671,34.708282,13.230596,10.790929,7.187615,8.194231,7.946295,7.986790,3.266124,0.952894,0.042975,0.115703,0.125620,0.000000,0.078513,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.555000,4612575.550000,4027,4055,100.957039,158.320663,165.089264,153.676041,139.824799,130.452911,129.023148,126.345467,126.386795,127.593407,128.320679,139.758682,157.890915,173.700836,187.535538,197.345459,198.519012,186.899185,161.849594,140.948761,130.072739,125.477699,120.618195,90.238029,73.733902,89.957039,103.568611,75.254562,37.213245,14.641341,10.965309,7.001665,9.110763,8.885965,10.309107,2.828107,1.171904,0.376860,0.104959,0.063637,0.000000,0.222314,0.000000,0.147934,0.000000,0.000000,1.004959,0.000000,0.000000,0.000000 -601550.555000,4612575.550000,4042,4055,112.265305,156.273560,163.761169,153.381012,141.405792,130.174393,128.447113,125.033897,125.992577,127.182655,127.571091,140.182663,157.571091,174.372742,185.885132,197.000839,196.612411,184.835556,160.719849,140.108276,128.050430,125.009102,119.190926,90.298363,72.901672,90.273567,100.992577,75.215721,35.909935,14.913239,10.835556,7.124807,7.615719,8.160344,8.994230,4.190092,0.973556,0.172728,0.428926,0.000000,0.000000,0.000000,0.156199,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612575.550000,4056,4055,97.704971,155.873566,162.311584,151.708267,138.733063,127.989273,125.476875,124.055389,123.319855,124.733078,125.460350,136.898361,154.956207,171.344635,184.956207,194.592575,195.104965,183.261993,159.592575,136.939682,126.278534,121.328117,117.154564,87.733070,71.113243,85.733070,99.815712,72.890099,33.568615,12.814894,10.650433,7.552079,7.766958,6.668609,7.841338,3.118190,0.643804,0.123967,0.102480,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.219835,1.989256 -601558.955000,4612575.550000,4084,4055,114.813232,156.557037,162.358704,152.185150,138.209930,129.325638,125.342171,123.499191,123.755394,124.565308,126.127289,136.937195,155.350433,171.515701,185.102478,195.036362,194.747116,183.127274,157.895889,137.647949,125.995064,121.895889,117.672745,88.209938,71.077713,86.251259,99.681007,72.755394,34.152084,13.489275,10.697539,5.161994,6.947949,6.139682,4.984309,3.138851,0.242976,0.490910,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.487604,1.065289,0.000000,0.000000,0.000000 -601561.955000,4612575.550000,4099,4055,112.528938,162.545471,161.404968,152.297531,137.925629,129.347122,126.752083,124.818199,124.595055,126.214890,127.338860,138.016541,157.016541,172.834732,185.917374,195.859528,195.586792,184.041336,160.429764,137.785141,127.297539,123.396713,118.727287,89.446297,71.471107,87.066132,100.876053,73.289284,33.859524,13.395059,10.793407,5.300011,7.304148,9.083486,6.542989,3.165297,0.980167,0.181819,0.171075,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.195042,0.000000 -601565.355000,4612575.550000,4116,4055,114.408279,159.652084,163.032257,152.544647,140.007462,130.602493,127.999184,125.304970,125.767776,127.329765,127.478523,138.883484,157.478531,173.023972,186.445480,197.048782,196.147949,185.362823,161.147949,138.966141,127.734718,124.759514,118.354553,89.933067,72.296707,87.577698,100.495056,74.338028,35.172745,13.908283,10.759523,6.994227,7.695056,8.189272,8.136377,3.044636,0.959506,0.199174,0.060331,0.173554,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.355000,4612575.550000,4136,4055,112.406631,161.464478,165.795044,157.059509,142.249603,133.009933,130.398361,127.638031,128.431427,129.274399,130.241333,141.398361,160.175217,176.150421,189.836380,199.290924,198.968597,187.894226,163.084305,141.530594,129.315720,125.993408,121.109108,91.745476,74.406631,90.084312,101.241341,75.588440,36.530602,15.201672,11.009936,6.203318,9.474397,9.200016,8.557865,3.605795,0.832233,0.362811,0.219009,0.000000,0.000000,0.000000,0.000000,0.152067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.955000,4612575.550000,4159,4055,97.768616,160.280991,163.876038,154.495865,140.264465,130.818207,128.256226,126.892586,126.231430,128.413254,128.743820,139.520660,158.330582,174.652893,188.198349,197.380173,197.628098,186.363632,162.611572,140.661163,128.851257,125.462837,119.454567,89.809944,72.925636,89.876060,101.578537,73.661171,34.603329,14.614895,10.859524,6.566954,8.840510,9.850429,8.434725,2.526454,1.001655,0.171075,0.132232,0.000000,0.003306,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.355000,4612575.550000,4181,4055,112.438866,161.703323,165.257034,154.885132,142.042160,130.595886,128.670258,125.959518,126.042160,128.752899,129.025635,140.075226,157.290100,174.959518,187.604141,197.009109,196.662003,186.430588,161.893402,139.546295,129.372742,124.504974,119.100014,90.124809,71.686790,88.471924,100.529770,75.199188,34.257046,14.632251,10.827292,6.581830,7.003321,6.480179,7.924807,2.656205,0.580167,0.196695,0.071901,0.110744,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.755000,4612575.550000,4198,4055,97.915718,162.717361,164.320663,153.775208,140.775208,129.857864,128.246292,126.444641,125.543816,127.750427,128.081009,139.766953,157.469421,173.593399,187.766953,196.849594,197.618195,185.122314,161.609924,139.213226,128.337204,124.114067,118.981834,91.023155,72.204971,87.692574,101.246292,75.204971,34.543819,13.212415,10.816547,5.118193,7.119851,7.826460,8.484311,3.200834,0.575208,0.226447,0.064463,0.064463,0.058678,0.000000,0.000000,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.555000,4612575.550000,4217,4055,106.435555,161.832260,165.592575,155.534729,142.534729,131.716553,129.476883,127.857040,127.278534,129.361176,130.394226,140.749619,158.030609,175.220688,188.063660,197.733078,197.129776,186.005814,162.319855,140.253738,128.633896,124.526466,119.790924,90.228943,72.460350,88.443817,100.600845,75.179359,34.865307,13.499191,10.890102,6.604143,9.004975,7.161173,7.062824,3.459511,0.521489,0.333885,0.000000,0.000000,0.000000,0.000000,0.004132,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.155000,4612575.550000,4255,4055,108.159523,157.721512,162.688446,155.473572,142.432251,130.779358,129.010773,126.771095,126.258698,129.101669,129.052094,139.498367,157.680191,174.531418,186.911575,196.423981,197.374390,185.225632,161.357880,138.762833,126.721512,122.895065,118.572746,89.787628,72.506638,86.787628,100.349609,75.564484,34.068615,14.083489,10.779359,4.209101,9.798363,6.527286,8.051253,3.619842,0.485125,0.045455,0.000000,0.000000,0.000000,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.355000,4612575.550000,4271,4055,106.430611,169.257034,165.976044,157.909927,144.033920,133.108292,131.100021,129.323166,127.108284,130.133072,130.653748,141.199203,159.273560,176.587601,189.000824,198.744629,199.190903,188.083466,164.157867,141.546310,128.430603,125.504982,120.645477,91.306633,73.504982,88.389275,102.695061,76.926476,35.951256,14.540514,10.967788,6.517369,8.704149,8.813237,7.740510,3.599181,0.757027,0.135537,0.052893,0.000000,0.000000,0.109918,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.555000,4612575.550000,4292,4055,109.487617,162.512390,163.917358,153.033081,141.925629,129.942154,128.619843,126.710754,125.322319,128.371902,127.900833,139.487625,157.801651,174.438019,186.454544,196.925613,197.231400,185.396698,161.214874,139.281006,127.975212,123.727280,118.545464,89.661171,71.694229,86.429771,100.239685,73.462830,34.942169,14.143820,10.776878,5.888440,6.531419,5.988443,8.427286,3.222321,0.503307,0.339670,0.000000,0.195868,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.355000,4612575.550000,4306,4055,120.224808,167.464478,166.117371,156.315720,143.456207,130.836380,128.844650,126.671089,126.447952,129.505798,130.133896,140.109116,157.257858,174.844620,186.795074,196.679352,197.166946,185.852921,161.332245,139.166962,127.993408,124.447952,118.745476,90.191750,71.770264,85.538872,100.299194,74.026466,35.414898,13.219852,10.795061,4.857035,6.045471,6.252906,6.476873,1.586781,0.427274,0.248761,0.057025,0.057851,0.000000,0.000000,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.155000,4612575.550000,4320,4055,121.312408,164.709076,167.626434,156.229736,142.684311,132.428116,129.213242,127.386795,125.907455,130.519028,129.775223,140.395065,158.361969,174.882629,188.634705,198.180161,197.171890,185.419830,161.700821,139.667770,128.081009,123.295883,119.254562,89.766960,72.229767,86.295883,99.899185,76.287621,34.923985,13.450430,10.841340,4.352075,7.788444,6.935552,6.785964,2.380999,0.439671,0.413224,0.102480,0.000000,0.000000,0.000000,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.755000,4612575.550000,4338,4055,130.627274,169.619019,165.652069,159.767776,144.362808,131.982651,131.395874,129.048767,128.709930,131.503311,130.883484,141.338013,159.371078,176.114883,189.395874,199.023972,199.635544,188.131409,162.503311,140.511566,128.412415,124.552910,120.172745,91.875229,72.048782,89.048782,103.602501,75.990929,36.023987,15.329769,10.924811,4.455382,8.452909,6.315716,6.368609,2.770255,0.357852,0.280166,0.000000,0.000000,0.009918,0.000000,0.012397,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.755000,4612575.550000,4353,4055,120.862000,173.399185,168.184311,159.407440,145.663666,134.283493,131.862000,129.729767,129.853729,132.423981,132.052078,142.878555,160.151245,177.531418,189.804138,201.126450,200.200836,188.845459,163.580994,142.209137,130.076874,125.349602,121.118195,92.085136,73.729767,89.804146,102.853737,78.142990,36.688446,16.700018,11.010762,6.258689,8.071916,8.706627,7.471089,3.019014,0.395042,0.367770,0.135538,0.000000,0.016529,0.000000,0.028100,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.355000,4612575.550000,4376,4055,105.792580,171.197540,169.395889,160.858704,147.404144,132.544632,132.098358,130.205795,129.304977,132.280182,131.015717,141.999191,160.197540,177.709930,189.197540,199.387619,199.726471,188.536377,163.800842,142.833908,129.420670,126.164474,120.263649,91.850433,73.924812,87.974396,103.627281,76.528122,34.999191,14.066960,10.933077,5.390093,8.490926,7.986792,8.351254,2.885131,0.514877,0.000000,0.247108,0.112397,0.000000,0.000000,0.007438,0.159505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.155000,4612575.550000,4390,4055,118.843826,177.951248,169.628937,162.240509,146.612411,133.356216,132.810760,130.670258,129.141342,132.984314,131.091751,142.405792,160.347946,178.133072,190.447113,199.265305,199.397537,188.554565,164.281830,141.546295,129.777695,125.546295,120.554558,91.347946,73.455383,88.438858,101.248779,77.174393,35.356216,15.852086,10.959523,5.328936,8.190099,7.654560,7.367783,4.581828,0.180166,0.119009,0.406613,0.000000,0.028926,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.955000,4612575.550000,4404,4055,106.185135,176.631424,167.829758,157.424789,144.209915,132.209930,129.862823,127.804970,127.110756,130.077698,129.292572,139.598343,157.862808,175.656219,188.408279,198.433075,196.590103,185.838043,161.242981,138.548767,126.490921,123.085960,118.581833,88.747116,70.747116,84.102493,99.193398,73.490929,33.738861,13.379357,10.780185,4.824804,5.615716,6.738856,6.224807,1.721492,0.257852,0.454546,0.114050,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.555000,4612575.550000,4417,4055,115.785141,181.504150,170.909103,161.545486,145.727295,131.611572,131.330582,128.859512,128.016541,131.950424,130.140503,140.198364,158.404984,175.066132,188.636383,197.727295,197.528946,186.867783,161.809952,139.471085,127.917366,124.239677,118.818192,90.239677,71.157043,85.710762,99.677696,75.867783,34.198364,12.520679,10.801672,5.314060,5.904974,5.799187,6.810757,1.871905,0.600001,0.231406,0.000000,0.000000,0.015703,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.305785,0.000000 -601628.355000,4612575.550000,4431,4055,124.493408,179.113235,171.989243,161.923141,147.096725,134.823990,132.609100,129.584305,128.485138,132.278519,131.005798,141.766144,158.600815,176.840500,188.452072,198.675217,197.972733,186.625626,161.906601,139.708267,127.319847,124.319847,119.245461,89.972740,72.964470,87.385963,99.906624,75.642159,35.443825,14.186794,10.840514,5.360340,7.579354,6.080177,6.699186,2.914056,0.489257,0.117356,0.173554,0.000000,0.000000,0.000000,0.000000,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.555000,4612575.550000,4457,4055,110.225639,176.118195,168.572739,158.242157,142.390930,130.118195,129.795883,126.704979,126.523155,126.605797,127.010765,138.407455,156.861984,172.225632,184.465302,194.366119,193.944641,180.374390,156.316528,135.407455,125.184311,122.200851,115.663658,86.812416,71.928123,86.242172,99.366135,73.283493,35.101673,15.122333,10.514894,8.644640,8.535551,7.497531,7.961997,2.185956,0.519836,0.244629,0.089257,0.000000,0.051240,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.555000,4612575.550000,4487,4055,123.422333,168.852081,169.976044,159.223984,143.546310,133.207474,131.835571,127.670280,127.050446,128.108292,128.794250,139.719864,158.190918,173.521500,185.992569,195.843811,194.662003,181.372742,156.496704,137.042175,126.042168,123.174400,115.918205,88.628944,72.058701,85.182663,99.471924,74.579361,35.769440,15.355392,10.538035,10.191751,7.295053,10.006625,8.489270,4.721497,0.596696,0.327274,0.090909,0.181819,0.000000,0.000000,0.035538,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.555000,4612575.550000,4502,4055,128.977707,171.027283,170.134720,158.333069,144.126450,133.101669,130.804153,129.291748,127.250427,127.729767,128.357864,139.481827,156.878525,174.093399,185.903305,195.457031,193.680176,180.795868,157.423981,135.357864,125.853737,122.523155,116.572739,87.944641,72.490105,86.109932,98.547951,73.382660,33.341343,14.867787,10.597540,9.981832,8.029764,10.549601,9.279354,3.549594,0.395043,0.051240,0.104959,0.049587,0.127273,0.000000,0.000827,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.755000,4612575.550000,4533,4055,117.865295,183.823975,169.865295,161.757858,146.724808,132.939682,131.956207,129.443817,128.815720,128.923141,128.270248,139.650421,158.633896,175.195877,186.642151,195.435547,194.104965,182.600830,157.766129,136.443832,125.542984,122.757858,118.972740,89.848770,71.848778,85.493401,98.493401,72.551254,35.807461,15.717373,10.815722,8.835551,6.827286,8.773566,9.261171,3.644637,0.352067,0.351241,0.457852,0.126446,0.045455,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,2.244628,1.170248,0.000000 -601654.155000,4612575.550000,4560,4055,106.133072,171.835556,171.372742,160.628937,143.240509,132.612411,131.595886,128.819016,127.670258,129.381012,128.066956,139.620667,158.496704,174.157867,186.223984,195.438858,194.934723,180.909927,156.430588,135.885132,125.133072,121.926460,114.645470,86.703316,71.083488,84.257034,97.852081,69.414070,33.432251,13.409108,10.422333,7.985962,7.671087,8.246293,8.582657,3.370256,0.738844,0.180166,0.000000,0.000000,0.000000,0.000000,0.053719,0.117356,0.000000,1.233884,0.000000,0.000000,0.000000,0.000000 -601656.955000,4612575.550000,4574,4055,107.607460,179.706604,171.475204,160.524796,144.500000,132.739685,131.690094,128.921509,128.739685,129.086792,129.615723,141.012390,157.739670,175.169418,186.268600,196.103302,195.524796,181.235535,157.764465,136.838837,124.946297,122.781006,117.045471,87.582672,72.433907,85.607460,98.475227,72.739693,33.542168,13.949604,10.640515,8.402493,7.814890,7.771088,7.611583,2.906619,1.005787,0.100827,0.119835,0.000000,0.000000,0.000000,0.062810,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.355000,4612575.550000,4591,4055,123.959526,179.909927,171.802490,162.571091,144.653732,132.794235,131.885147,128.306625,128.397537,130.447128,128.430603,140.703323,158.265305,174.860336,186.124786,196.488434,193.967758,180.662003,156.513229,135.984314,125.339691,122.984322,116.736382,87.091759,71.108284,84.959526,97.918205,70.942993,35.372749,11.886794,10.612416,7.588442,5.876872,7.338028,7.950428,3.584306,0.757026,0.338844,0.085124,0.000000,0.000000,0.000000,0.000000,0.028099,0.000000,2.552066,0.000000,0.000000,0.000000,0.000000 -601664.355000,4612575.550000,4611,4055,121.956207,186.542999,173.262009,160.997528,146.848770,131.485138,132.733063,129.741333,128.237198,132.361160,128.799179,140.518188,158.162827,175.162842,186.823990,196.633911,194.633911,181.146301,156.485138,136.030594,124.939682,121.832245,116.881828,87.071907,72.014069,85.005806,98.460342,72.881836,33.956219,13.557869,10.625640,8.757865,6.938854,7.661170,8.347121,1.605790,0.133058,0.143802,0.000000,0.107438,0.000000,0.000000,0.000000,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.955000,4612575.550000,4629,4055,124.698357,189.524796,175.623962,163.764465,145.590927,133.219025,132.219025,130.243820,128.723160,132.673569,129.185974,140.731415,158.128113,174.648758,187.037186,196.219009,194.053726,180.334717,157.078522,136.144638,125.301666,121.599190,116.136383,88.342995,71.219025,85.797539,98.433891,70.442162,33.714897,14.235553,10.557871,8.900014,7.538030,8.133898,8.286791,2.871908,0.542977,0.062810,0.115703,0.049587,0.000000,0.000000,0.068595,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.355000,4612575.550000,4651,4055,138.386780,189.147110,174.494217,163.659515,146.527283,132.395050,132.527283,128.725632,128.254562,132.783493,129.246292,140.089264,158.047943,174.824799,186.494217,195.882645,194.452896,179.766953,156.981827,135.229767,124.783485,122.279350,116.254562,85.667786,71.114067,85.138855,97.031418,70.833069,33.744648,12.567786,10.568615,8.487618,6.763648,7.647120,7.284310,2.638023,0.370249,0.024794,0.128100,0.000000,0.010744,0.000000,0.000000,0.131405,0.000000,0.000000,1.113223,0.000000,0.000000,0.000000 -601675.155000,4612575.550000,4665,4055,144.106628,197.701675,177.197540,165.875229,149.090103,134.759521,134.486786,131.238861,130.850418,134.751251,131.114883,142.957870,160.222336,178.247131,189.718201,199.445480,196.255386,181.164490,158.379364,138.891754,126.668610,124.181000,119.081833,89.900009,73.147957,88.230591,100.280174,72.304977,34.123165,14.480183,10.825638,11.546296,8.625632,9.562823,9.277699,4.409100,0.971077,0.246282,0.108265,0.110744,0.000000,0.000000,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.955000,4612575.550000,4699,4055,151.234726,196.028122,177.846298,170.028122,150.920685,135.110748,132.507446,131.532242,131.069443,136.730591,131.110764,142.003326,159.581833,176.375229,189.647949,199.300842,196.011597,180.920685,158.590103,137.854568,125.970268,122.681000,117.309105,86.846298,72.242996,88.176880,98.044640,70.028122,33.193409,13.236381,10.664482,11.490926,8.207451,8.467781,7.785963,4.079347,1.095870,0.500828,0.103306,0.000000,0.000000,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,1.019008,0.000000,0.000000 -601689.355000,4612575.550000,4736,4055,113.126457,169.481827,168.423981,156.671906,142.837219,132.300018,130.242157,128.052078,127.126457,127.688446,129.746292,140.581009,158.283478,173.886780,186.498352,194.952911,192.952911,180.994217,158.176041,136.837219,127.465302,123.895058,117.663651,87.911575,72.134727,88.101662,99.266945,73.597534,35.779358,15.226464,10.696713,7.505798,8.480178,8.224807,9.496709,3.751248,0.671903,0.033884,0.079339,0.113223,0.105785,0.000000,0.044628,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.155000,4612575.550000,4755,4055,99.585144,166.147110,168.213226,156.163635,142.345459,134.171921,132.750427,129.494232,128.560349,130.345474,131.328934,141.998352,160.601654,176.477692,187.750427,197.568604,197.651245,183.948761,160.320663,138.791748,129.006622,125.411583,120.072739,91.709106,75.510757,89.874397,102.519020,75.014893,36.089279,15.795886,10.915722,7.312410,8.250426,7.202491,9.191751,2.774386,0.584299,0.456200,0.138843,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.155000,4612575.550000,4785,4055,107.604965,163.985153,168.117386,158.745483,143.191757,132.117371,131.745468,128.613235,128.885956,128.761993,130.249603,141.282669,159.373581,174.720688,186.307465,195.249619,195.447952,182.894241,159.580185,137.323975,126.208275,124.001663,118.381828,89.514061,72.158684,88.671082,101.357033,73.728943,36.629768,14.616546,10.762002,6.420674,7.865301,9.358691,8.285964,3.781827,0.582646,0.281819,0.029752,0.000000,0.061157,0.000000,0.095868,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.955000,4612575.550000,4799,4055,109.152916,165.326462,167.384308,156.797531,142.987625,133.772751,132.037201,129.144638,129.103317,128.896713,130.582657,141.698364,159.111588,174.822327,186.772751,196.252075,195.557861,182.442169,159.012405,137.615723,127.136383,122.384315,117.500015,89.971092,73.433899,89.483490,100.210762,73.309937,36.524815,15.257870,10.681837,8.455386,7.358691,8.085962,9.638030,2.645463,0.581820,0.089257,0.181819,0.057025,0.117356,0.000000,0.000000,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612575.550000,4813,4055,91.330597,158.382645,166.242157,156.407440,141.977692,132.969421,129.580994,126.746284,127.878517,128.275208,129.366119,139.861984,159.118195,173.597534,185.258682,195.176041,193.812408,182.200836,158.382645,135.903305,125.655380,123.068604,117.572731,89.928116,73.407463,87.862000,102.027283,75.291756,34.473576,14.352912,10.688448,6.347118,6.652905,7.605795,8.978525,3.827282,1.680169,0.409092,0.000000,0.169422,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.555000,4612575.550000,4827,4055,105.215714,164.209106,166.845474,157.547943,144.068604,133.812408,131.572739,129.341324,127.498352,129.622314,132.068604,142.457031,160.019012,175.605804,187.275223,196.134735,195.159531,182.357880,159.300003,137.729752,126.382652,124.142982,117.936371,90.746284,73.547943,88.961166,100.531410,73.820686,37.696716,14.575225,10.721506,6.584309,8.761172,7.485963,7.763651,5.110753,0.850415,0.328927,0.238017,0.000000,0.000000,0.000000,0.050413,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.955000,4612575.550000,4849,4055,108.037209,165.563644,166.315720,155.547119,142.166946,132.332245,128.538864,127.547127,127.745476,129.266129,129.563660,140.844635,158.472733,173.340500,187.042984,195.935547,194.571915,182.092575,158.431412,137.323975,126.299194,122.993408,118.018196,89.406631,72.373581,88.563652,99.695885,72.596718,33.861179,14.133902,10.728945,7.184309,6.994228,7.997535,8.102491,3.288436,0.808267,0.033884,0.219835,0.000000,0.061157,0.000000,0.054546,0.000000,2.131405,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.555000,4612575.550000,4867,4055,108.804146,160.035553,167.143005,155.977707,141.382660,131.820679,129.663651,127.341339,126.506622,128.043823,128.878525,139.729782,157.853745,175.779358,186.382660,195.928116,193.754562,182.878540,158.754562,137.357880,125.564476,122.457039,117.209106,88.366127,74.266960,88.159515,100.349602,73.481834,35.581009,14.938035,10.655392,6.716541,5.890920,7.849598,6.166955,4.034721,0.695869,0.380166,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.355000,4612575.550000,4891,4055,101.923157,161.724808,169.468597,157.683487,144.328110,135.790924,132.468597,130.187607,129.865295,131.526459,133.022324,142.832245,160.493393,177.328110,188.881821,197.724808,197.303314,184.427277,161.691742,140.278519,128.914886,125.295052,120.518188,92.518188,74.823975,90.245461,101.650421,75.675217,37.071922,14.628943,10.956217,5.747119,9.262824,8.085965,8.235552,3.766950,0.771077,0.209092,0.227273,0.000000,0.000000,0.000000,0.045455,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612575.550000,4917,4055,114.571907,160.175217,170.307449,157.505798,144.720673,135.323975,131.662827,130.076050,128.877701,131.365295,132.332245,143.109100,161.629761,177.315720,189.274384,196.580170,197.803314,185.976868,161.406616,139.456207,129.092575,124.629761,120.018188,91.481003,74.563652,89.390091,102.390091,75.051254,36.059521,14.970266,10.910763,5.879350,7.566129,8.508277,9.140511,3.333065,0.347935,0.269423,0.110744,0.000000,0.000000,0.000000,0.000000,0.057025,6.388431,0.000000,0.000000,1.049587,0.000000,0.000000 -601728.155000,4612575.550000,4930,4055,120.927292,162.877686,168.299164,155.555359,140.695877,132.985138,130.687622,129.084320,127.092583,129.290924,129.009933,140.266129,159.166931,174.233047,186.819824,194.919006,193.869415,183.233047,158.456192,136.885956,126.381836,123.109108,117.654564,89.844643,72.150429,87.464478,100.563652,73.993408,35.877708,13.069439,10.695889,5.157861,6.854557,6.605796,9.344644,3.306618,0.198348,0.119835,0.166116,0.000000,0.000000,0.000000,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601732.155000,4612575.550000,4950,4055,117.633904,166.699997,169.063629,157.633881,143.509918,134.195892,131.559525,130.220673,129.245468,131.815720,132.476883,143.237183,160.642136,177.030579,189.683487,198.311584,197.790924,186.419022,161.906601,140.063629,128.071915,125.410759,119.609108,91.005806,74.799202,89.906631,101.997536,74.906639,36.435555,14.063655,10.873574,6.950426,8.058692,7.757037,8.976047,2.937196,0.669423,0.253720,0.102480,0.000000,0.001653,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,1.250413,0.000000 -601737.555000,4612575.550000,4977,4055,119.685135,157.081818,165.470245,159.156204,144.536362,135.751266,132.230591,129.800842,129.866959,131.676880,132.470261,142.181000,160.445465,177.329758,189.288437,197.594223,196.999176,185.065292,161.073563,139.503311,129.643814,125.048775,117.354553,92.032234,73.329773,88.966125,101.742981,75.850433,37.288452,14.075225,10.668613,6.261998,6.242987,7.014061,7.568611,2.241328,0.289257,0.255373,0.275207,0.000000,0.000000,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601743.555000,4612575.550000,5007,4055,102.344635,168.411560,168.585129,160.031403,144.800003,134.684311,131.105789,130.494217,129.899185,133.419846,133.378525,143.659515,162.246292,178.047928,189.841309,198.700821,198.758667,187.163620,162.097534,140.907455,129.229752,126.155380,121.072731,92.824806,76.023155,90.023155,103.254562,76.006622,38.031422,15.228945,11.006630,5.985135,8.014891,7.031419,9.730592,3.700006,0.870250,0.188430,0.026446,0.000000,0.004959,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.355000,4612575.550000,5026,4055,116.104965,172.088425,169.402466,162.410736,145.038834,136.790909,134.344650,132.873566,131.427292,134.352905,134.311584,145.344620,162.171066,177.278503,190.278503,198.154541,198.600815,187.146271,162.823959,141.286774,129.526459,125.419029,120.700020,92.452087,76.187622,90.311584,103.683487,77.757866,37.187622,16.682663,10.972746,6.923977,7.561172,6.540508,6.516541,2.104138,0.354547,0.119009,0.000000,0.000000,0.037191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.355000,4612575.550000,5041,4055,132.538849,167.125641,172.596725,161.902512,145.456207,138.249603,133.481003,132.695892,130.745468,134.638031,132.968628,144.464478,161.720688,176.514069,190.877716,198.538864,199.299194,187.274399,162.547134,141.819839,130.257858,126.133896,122.381828,91.960350,75.935562,90.671089,103.233078,77.067795,37.654568,16.438036,11.125640,8.747119,8.609932,9.620676,8.554559,4.229761,0.769424,0.347108,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.809091,0.000000,0.000000 -601755.955000,4612575.550000,5069,4055,120.106628,169.627289,172.800827,162.552917,148.412415,137.057037,134.924820,131.833908,132.098373,134.577698,134.131424,145.387619,162.933075,179.420670,190.833893,200.048767,199.156204,189.090088,163.900024,141.734726,129.800842,125.990929,121.627289,93.685143,75.842171,91.387619,103.362831,76.949608,37.833904,15.319027,11.057044,6.411582,9.108280,9.369435,10.230593,4.675215,1.000002,0.684299,0.565290,0.133058,0.000000,0.000000,0.083472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.155000,4612575.550000,5085,4055,118.136383,171.798340,170.748764,161.401657,145.566956,137.120651,132.889267,133.021500,131.434723,134.219833,133.219833,144.095886,162.104126,178.914047,191.500824,200.930573,199.699173,187.723969,164.401657,142.426453,130.823151,126.566956,122.600014,94.533897,77.608276,91.368607,102.897537,77.881004,37.021503,16.101671,11.145473,5.323978,8.304974,6.085136,10.549602,3.554554,0.488432,0.634712,0.047108,0.000000,0.000000,0.000000,0.000000,0.529754,0.000000,0.000000,0.000000,0.000000,0.000000,4.304132 -601764.555000,4612575.550000,5112,4055,126.947121,172.699173,170.492554,160.038010,145.004959,133.831406,131.600006,129.352066,127.839684,131.773560,132.352081,142.244629,160.484299,177.087601,188.120651,197.071075,197.277679,186.757019,162.128922,139.029755,129.302490,123.451256,119.327286,91.459518,73.674393,87.699188,101.781822,75.228111,32.814896,13.346298,10.847952,4.848770,7.711583,7.994227,7.272739,2.781826,0.695870,1.742151,0.369422,0.163637,0.000000,0.000000,0.076033,0.932233,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.155000,4612575.550000,5135,4055,113.524811,166.162003,161.244644,156.195053,144.963654,134.550430,133.909119,133.454575,132.578537,133.388458,134.421509,144.487610,161.352081,178.426453,189.095886,197.740509,198.748779,187.492554,163.674393,141.368607,129.723984,125.765305,121.327286,93.757050,76.186798,91.566956,103.690933,77.459526,36.162003,13.866961,11.029772,5.545464,7.965302,7.162823,6.260342,2.974386,1.025622,0.446282,0.171075,0.000000,0.009918,0.282645,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601772.355000,4612575.550000,5151,4055,116.795059,174.489288,170.952087,160.390106,148.100845,134.555389,133.390091,131.695892,129.968597,133.737198,132.092575,143.307465,160.423172,177.571930,190.960358,199.299194,198.042999,186.737213,162.481018,140.076065,128.861160,124.778534,119.381836,91.398354,74.662827,89.117363,104.233070,75.803322,37.274399,15.343819,10.852911,4.172736,7.959519,9.234724,8.004145,2.677692,0.414051,0.354546,0.449588,0.066116,0.175207,0.000000,0.000000,0.000827,2.814876,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.555000,4612575.550000,5167,4055,124.685143,166.744659,166.422348,156.769455,143.769440,133.108276,128.967789,127.273567,128.281830,131.744644,132.447113,142.686783,160.934738,177.538040,190.331421,199.372742,198.819016,186.728134,161.703339,141.108276,128.901672,124.356209,118.645470,91.050423,74.281830,88.934723,102.215714,75.942986,36.133080,13.104976,10.785969,4.149595,6.009105,6.484310,7.495880,2.625625,1.739673,0.481819,0.531406,0.200827,0.007438,0.355372,0.077686,0.109091,0.000000,0.000000,0.000000,0.000000,1.223967,0.000000 -601778.755000,4612575.550000,5183,4055,142.860336,176.070251,174.252060,165.169434,147.731400,135.913239,130.516541,130.012405,129.781006,133.450424,132.574402,143.466949,161.508286,178.318176,189.714874,198.301651,198.731400,187.673553,162.252075,141.599167,128.632233,125.665298,120.681824,91.599182,74.582664,89.227280,101.466949,75.533073,36.756218,13.848778,10.971093,5.281002,8.636377,9.514892,8.761172,2.756205,1.558680,1.344630,0.716530,0.845455,0.571075,0.074380,0.553719,1.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.755000,4612575.550000,5198,4055,119.295883,178.094223,169.061157,161.606613,147.961990,137.838013,135.598343,134.912415,133.714066,136.854553,135.904129,146.904129,163.375214,180.879349,193.796692,202.523972,201.953720,190.540497,167.003311,143.656204,132.152084,128.201660,122.400017,94.821510,76.474396,91.441345,104.813240,76.358696,36.747128,15.800018,11.127292,5.913234,7.328113,9.731421,7.668610,3.306619,0.307439,0.113224,0.064463,0.002479,0.001653,0.000000,0.006612,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.755000,4612575.550000,5233,4055,137.304153,184.378525,173.378540,165.163635,149.419846,137.023148,133.932236,133.948761,130.667770,135.188431,133.618195,143.576859,161.791748,178.494217,190.766953,200.990082,199.973557,188.502487,164.180176,142.923981,131.378525,127.081009,121.709106,92.899185,75.907455,89.775223,103.766960,77.295883,34.816544,14.124810,11.064482,4.504968,6.179351,6.147945,7.052907,4.533893,0.204959,0.190083,0.000000,0.014877,0.022314,0.000000,0.008265,0.092563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.755000,4612575.550000,5273,4055,122.808281,178.370255,175.072739,163.031418,147.469421,135.271088,133.576874,130.477707,130.180176,129.981827,130.378525,141.452896,160.295868,176.122314,188.204971,197.188431,195.874390,183.717361,160.014877,137.890915,127.006622,123.957039,118.890923,91.188446,73.585144,87.932243,99.469437,73.147133,34.709114,14.595058,10.808284,7.945467,7.358689,8.277699,8.376872,3.265297,0.666117,0.141323,0.422315,0.000000,0.000000,0.000000,0.012397,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.955000,4612575.550000,5289,4055,127.141327,176.876053,178.247955,166.041336,148.644638,136.933899,136.157043,133.140503,132.206619,133.561996,132.752075,145.495865,163.644638,178.495880,190.231415,199.942169,198.752075,185.041336,160.785141,139.900848,129.016541,126.371910,120.000008,91.958687,75.735542,91.280998,101.471085,76.239685,36.305805,16.317371,10.909110,10.126462,9.466957,10.642163,10.881833,4.676043,1.540499,0.474381,0.139670,0.442976,0.093389,0.000000,0.041322,0.120662,0.000000,0.000000,0.000000,0.000000,1.309917,0.000000 -601805.355000,4612575.550000,5316,4055,132.650421,184.931412,179.121490,164.923157,149.071915,136.410767,135.501663,133.187607,132.204147,132.807449,132.931412,144.113235,162.146286,177.923157,189.245468,198.939682,197.609100,185.443817,161.171082,140.733063,128.336380,125.509926,121.063644,90.352905,74.881844,88.939682,100.650421,75.509926,36.931427,14.847126,11.005804,10.814890,7.599187,9.015717,8.393403,3.661992,0.678514,0.211571,0.302480,0.000000,0.117356,0.000000,0.107438,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.755000,4612575.550000,5348,4055,124.902489,183.416550,178.887619,166.036377,148.234711,135.796707,135.904144,132.581833,131.755386,133.317368,132.143814,144.466125,161.928925,177.664490,189.639694,198.639694,197.218201,183.119034,159.714050,138.838013,128.201660,124.730591,119.036377,90.094231,74.490929,87.540512,100.838036,73.424812,34.854565,14.674398,10.821506,12.756214,9.006624,10.396708,10.061172,5.719018,1.838845,0.940496,1.423141,1.253720,0.939670,0.691736,0.857025,0.749587,0.000000,0.000000,1.719009,0.000000,0.000000,0.000000 -601817.155000,4612575.550000,5375,4055,124.802498,185.381012,175.438858,167.240509,148.612411,136.628937,136.314896,132.984299,133.323151,134.381012,133.554550,145.414062,162.628937,178.595886,189.802490,200.438858,198.381012,185.058685,160.422333,140.835556,127.852074,126.116531,119.281830,90.992584,74.306633,88.488449,100.215714,73.306633,34.802498,13.337209,10.843821,9.891751,7.822328,9.400015,7.983484,4.259513,0.909919,0.316530,0.427274,0.408265,0.000000,0.000000,0.000000,0.078513,3.859504,0.000000,0.000000,1.021488,0.000000,0.000000 -601820.155000,4612575.550000,5390,4055,127.944633,189.490082,178.423981,166.804138,150.671906,137.771088,136.704971,133.481827,132.597534,135.779358,132.333069,144.498352,161.258682,178.101654,188.300003,198.200836,197.275208,182.283478,158.622314,138.010757,127.374397,124.771088,119.390915,89.870255,73.457047,88.729759,98.498352,74.019020,34.142998,13.604149,10.853738,11.108280,8.762823,8.146294,10.020678,3.314884,1.028929,0.315704,0.576861,0.390083,0.058678,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,1.366116,0.000000 -601826.155000,4612575.550000,5420,4055,133.763641,184.325623,176.226456,167.069427,149.342133,135.862808,136.094223,132.127289,132.540512,134.664474,131.722321,143.747131,161.300827,177.242966,189.292542,199.127274,197.003311,182.953705,160.325623,139.771927,127.309105,125.036377,118.581833,89.672737,74.309105,87.135551,99.342163,72.077698,34.143826,14.149605,10.780185,9.093402,6.919847,8.399186,8.150427,3.090089,0.602481,0.175207,0.185125,0.006612,0.046281,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.155000,4612575.550000,5435,4055,134.039688,189.196701,176.072739,166.279343,151.502487,135.874390,133.907440,132.866135,131.766953,135.973557,132.014893,143.634720,161.171906,176.370255,188.494217,199.485962,196.990082,182.494217,159.147110,138.461166,127.395058,123.725632,118.436378,89.254562,73.659523,88.180183,98.147125,72.386803,33.254566,12.346297,10.766961,8.693401,6.500839,7.981004,8.248774,3.713232,0.789258,0.052066,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.355000,4612575.550000,5456,4055,135.790100,194.145462,178.393417,166.823166,151.492584,136.674408,136.426453,133.385147,132.699188,136.203323,132.426468,144.261185,160.798370,178.310776,191.062820,200.409927,198.327286,182.385147,161.781845,141.352097,129.616547,127.707458,121.236382,92.343811,77.476044,92.021500,102.732246,75.161995,34.798363,14.057869,11.021506,11.298363,8.233070,10.098360,8.469437,4.051248,1.180168,0.280993,0.061984,0.056199,0.000000,0.238843,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.755000,4612575.550000,5488,4055,170.111603,199.648773,183.938034,172.698364,153.673569,140.574402,138.004150,135.690094,135.698364,141.119858,136.119858,147.004150,163.541336,181.144638,193.781006,204.814072,200.508286,184.938034,161.987625,141.822327,130.342987,127.623985,122.227287,92.400833,77.235550,91.185959,103.491753,73.855385,37.309933,15.658695,11.111589,12.719026,8.629765,9.537205,9.408279,5.997530,2.007443,0.321489,0.136365,0.244629,0.061157,0.000000,0.000000,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.355000,4612575.550000,5541,4055,111.814056,166.219864,171.145462,159.889282,145.087631,134.575226,132.145477,130.128952,129.657867,130.988449,131.294235,142.319031,161.104156,175.897537,188.624802,197.922333,196.682663,184.459518,160.203339,139.633087,127.831429,124.550423,119.145470,91.046295,74.748779,90.467781,101.343811,73.889275,34.897537,15.033902,10.831425,8.886789,7.607452,9.238857,7.181830,3.461165,0.972730,0.278513,0.000827,0.306612,0.000000,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.755000,4612575.550000,5618,4055,107.566132,166.342972,169.590912,160.161163,144.880173,134.351242,133.161163,130.326462,130.458694,131.152893,132.111572,142.533051,160.450409,177.235535,189.227280,197.119827,197.747940,184.913223,160.929749,140.400833,129.260345,125.152908,120.136383,91.566132,73.847130,89.442162,102.235550,73.466965,36.334732,13.877704,10.921507,7.707450,6.675220,7.914063,10.029766,3.250421,0.609093,0.000000,0.350414,0.000000,0.000000,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.955000,4612575.550000,5739,4055,114.878532,163.217361,171.895050,161.060333,147.539673,137.060333,134.704971,132.539688,131.828934,134.547943,134.010757,145.283478,163.804138,179.225632,190.952896,200.126450,200.349594,187.754547,163.713226,142.002487,130.250427,126.787621,121.572739,94.457047,75.250435,90.647133,102.762833,76.324814,34.936382,14.960348,11.052085,7.644641,8.261998,8.285137,8.177700,3.654552,0.984299,0.166116,0.000000,0.002479,0.063637,0.228926,0.065289,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601927.755000,4612575.550000,5928,4055,118.858696,170.729752,168.655380,162.242157,148.762817,138.622330,134.820679,133.597549,133.713242,135.696716,136.804153,147.390915,165.275208,180.671906,193.506622,202.481827,202.052078,192.300003,166.928101,144.093414,133.465317,128.581009,123.481842,95.688454,79.539696,94.415726,105.118202,79.027298,36.828945,14.906631,11.225639,5.755382,8.204146,8.460344,8.997535,4.708272,0.353720,0.146281,0.052893,0.114876,0.000000,0.330579,0.008265,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.355000,4612575.550000,6021,4055,123.692574,177.915726,172.882660,166.047958,149.973572,139.147125,137.874405,136.188446,135.204971,138.477707,138.370270,149.155396,167.006638,183.337219,196.328949,206.221512,206.783493,194.510773,169.800018,148.345474,136.089264,132.047943,126.345467,97.626457,79.709114,94.262825,108.510757,81.609940,39.560349,15.963655,11.485970,6.447946,9.370266,8.642991,8.492575,3.053725,0.238017,0.176860,0.069422,0.143802,0.026447,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601957.155000,4612575.550000,6075,4055,119.249596,184.861160,171.778519,165.819839,150.216537,136.158691,135.290924,134.009933,132.852905,136.009933,135.935547,146.588440,164.786789,180.629761,194.489273,204.481003,203.638031,193.522324,167.249603,145.885956,133.828110,130.034714,124.109100,95.307449,77.059517,92.423149,105.125633,78.613235,36.290928,13.395058,11.282663,3.930588,6.535553,5.840508,7.928938,2.289260,0.342976,0.003306,0.129752,0.005785,0.014050,0.000000,0.000000,0.008265,2.773554,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.155000,4612575.550000,6100,4055,102.147118,179.776031,174.858688,161.477676,143.609909,133.709091,133.428940,130.007446,128.470245,131.222321,130.990921,143.784302,162.023972,179.428925,190.825623,200.652069,200.709915,188.561157,163.924789,142.197525,130.858688,127.090088,122.172737,94.701668,77.387611,93.139679,105.395874,75.371086,39.949608,16.719852,11.106630,9.496711,10.593403,11.715717,10.298361,5.301662,1.579342,0.562811,0.533058,0.289257,1.028100,0.341322,0.225620,0.063637,2.966942,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.955000,4612575.550000,6124,4055,115.219025,182.562805,179.719849,164.240509,148.422333,136.480179,135.934723,132.116547,130.794235,132.058701,133.166122,144.298355,163.901672,179.810760,192.339676,203.009109,202.174393,189.579346,164.868607,143.587616,131.695053,128.372742,123.190933,94.843826,79.686798,93.703323,106.728119,76.645477,36.587624,15.062000,11.199194,11.771090,8.813235,8.730593,9.410759,3.562817,0.818184,0.796696,0.275207,0.161158,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.927273,0.000000,0.000000,0.000000 -601971.155000,4612575.550000,6145,4055,127.253731,184.642151,178.865295,164.947937,148.187607,136.898361,134.939682,132.873566,131.261993,133.096710,133.245468,144.890091,163.476868,180.468597,191.468597,202.146286,202.923157,188.881821,164.162827,141.890091,130.873566,129.047119,122.790916,94.518188,77.898354,92.063644,105.253731,75.410759,37.625641,15.479357,11.162828,9.228938,8.749600,9.357865,9.925634,4.895877,0.723142,0.459505,0.363637,0.000000,0.204133,0.000000,0.014050,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601974.355000,4612575.550000,6161,4055,115.138031,185.567780,182.311584,164.939682,150.295074,137.352921,137.468628,133.716553,133.782669,134.666962,134.642166,146.609116,165.113235,182.823975,194.245468,205.923157,204.576050,191.096710,166.939682,143.460358,132.683487,129.981003,124.609100,94.385971,80.162827,94.782661,107.981003,77.485138,39.700016,16.254564,11.328119,11.709932,9.252082,9.874395,11.419024,5.695052,1.100829,0.285124,0.530580,0.404959,0.000000,0.000000,0.000000,0.438844,0.000000,0.000000,0.000000,0.000000,1.247108,0.000000 -601977.355000,4612575.550000,6176,4055,122.315712,182.241333,178.753708,165.059494,145.737198,134.852905,134.935562,131.679352,130.687622,132.877701,132.166962,144.819839,162.555359,179.158676,191.596695,203.695862,203.208252,187.753708,163.547104,142.638031,131.208282,127.720680,124.563652,93.910759,77.489273,92.919022,104.629761,75.852913,38.340519,15.919853,11.323986,10.614892,8.923154,9.985964,10.152907,4.126453,0.949589,0.186777,0.485951,0.196694,0.000000,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.774380,0.000000,0.000000 -601980.155000,4612575.550000,6190,4055,109.617371,189.712402,179.786789,163.241333,148.803314,135.654556,134.332245,132.042999,130.894241,133.175232,133.365311,143.985138,163.274384,180.770264,193.340500,202.943817,204.877701,189.125626,166.315720,143.315720,133.059525,130.175232,124.654556,94.720673,80.464485,94.200012,105.976868,77.439697,40.216549,14.942166,11.332251,9.149602,8.623155,11.704974,10.742990,6.020671,1.161161,0.557027,0.517356,0.072727,0.052893,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,2.956199,0.000000,0.000000 -601983.155000,4612575.550000,6205,4055,106.166962,186.519821,178.982635,163.866928,149.123123,136.957840,136.437195,133.842163,131.643814,135.197525,133.288437,145.800812,164.205765,181.073547,194.205765,204.090073,202.990891,189.073547,165.057007,142.850403,131.957855,129.528107,124.536377,93.891747,77.437218,92.164474,105.032242,77.428947,35.552914,14.702497,11.321506,9.937205,7.785140,9.401669,9.765305,3.523974,0.215704,0.580166,0.180992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.955000,4612575.550000,6219,4055,117.180191,183.105804,178.494232,165.428116,150.618210,136.171921,136.477707,133.461182,132.568619,134.362000,132.246307,145.585144,164.386795,180.750443,193.981842,204.676056,204.122330,188.171921,166.502502,143.915726,132.072754,128.932251,124.527298,94.056221,78.353745,92.039696,106.502502,76.279358,36.477703,14.556216,11.320681,12.172744,6.825632,8.813237,9.396709,4.634718,0.167769,0.104959,0.095868,0.138843,0.000000,0.000000,0.006612,0.061984,0.000000,0.000000,0.000000,0.835537,0.000000,0.000000 -601988.755000,4612575.550000,6233,4055,108.655388,179.261169,176.252106,167.593414,152.178528,140.723984,139.678528,135.078522,135.042160,137.405792,135.447113,147.546295,165.455383,182.719849,194.149597,205.452087,204.433899,190.020676,167.433899,145.723984,135.963654,132.747116,128.581833,98.573563,81.730591,93.755386,107.137199,74.829765,37.714893,13.942163,11.689274,13.562825,10.270262,11.912410,13.337205,8.325629,3.405787,2.972729,3.490911,2.986778,2.222315,1.322314,2.066943,0.808265,0.000000,0.000000,1.283471,0.000000,0.000000,0.000000 -601991.755000,4612575.550000,6248,4055,116.724808,182.123154,177.321503,166.941345,151.668610,136.924820,136.544647,133.214066,132.652084,134.941345,132.875229,143.536377,161.147949,178.718201,190.172745,201.652084,200.685150,186.536377,162.866959,142.280182,130.296707,127.362831,123.263657,94.255394,77.900017,92.172745,104.792580,75.866959,35.627293,13.626464,11.205805,7.637202,8.119023,7.815715,9.246297,2.747940,0.314877,0.333885,0.378513,0.004132,0.065289,0.312397,0.000000,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.755000,4612575.550000,6268,4055,118.633072,173.393402,170.162003,163.211578,146.170258,134.583481,132.707458,129.947113,128.881012,131.104141,129.988449,140.426453,155.856216,172.797516,184.367767,195.012390,194.227280,183.053726,159.417358,138.657043,128.962814,124.557861,121.136375,94.111588,78.607452,93.466957,102.822327,76.285141,37.409111,13.723984,11.012415,7.642161,8.357039,7.536376,7.628939,3.742153,0.509919,0.554547,0.078513,0.411571,0.056199,0.182645,0.322314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602000.555000,4612575.550000,6292,4055,118.432243,173.721497,171.886780,163.176041,146.242157,133.523148,131.911591,130.142990,127.961174,130.820679,130.415710,140.539673,157.019012,173.258682,184.531418,196.556198,194.093399,183.242157,158.738022,138.225632,129.176041,122.862000,118.390923,92.556213,77.457039,90.936378,101.928116,75.300018,35.597542,14.452909,10.762829,7.218193,8.057867,7.306623,8.177700,4.785131,0.921489,0.000000,0.530579,0.025620,0.009918,0.061984,0.241322,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.955000,4612575.550000,6309,4055,110.338028,175.057022,169.528091,162.966110,145.709915,132.461990,130.263641,128.519852,127.718193,130.478531,128.933075,140.222336,155.172714,172.230576,184.139679,193.776031,193.577682,181.486786,159.304947,137.627289,127.156212,123.544640,118.354553,91.280174,75.742989,91.916542,101.619019,74.412407,35.296715,14.241340,10.759522,5.952903,6.123981,6.547118,7.739683,3.569427,0.369422,0.192563,0.314877,0.000000,0.004959,0.155372,0.166116,0.433058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602007.355000,4612575.550000,6326,4055,110.880173,168.012390,166.929749,160.400833,144.814072,133.706619,131.376038,128.822327,127.194221,130.723145,129.557861,139.144638,155.293411,171.772720,183.483475,194.466949,193.342972,181.095047,157.516525,137.458694,127.111580,124.053726,118.045464,91.764481,77.466957,91.557869,99.723152,75.227287,34.946301,14.528116,10.731424,6.657035,7.003321,7.517366,6.046292,2.623971,0.694216,0.453720,0.223141,0.121488,0.000000,0.073554,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612575.550000,6353,4055,106.177704,167.938034,169.318192,162.533081,147.177704,135.657028,131.078522,129.615707,128.152893,130.772736,130.136368,140.433899,156.400848,172.309937,184.599182,195.037201,194.103317,183.260345,159.549606,138.268616,127.888435,124.904968,119.500008,93.632248,78.045471,91.855385,101.095055,75.260345,36.847126,15.469440,10.863655,6.696705,8.338857,8.800838,8.074393,4.233889,0.684299,0.078513,0.394216,0.554546,0.073554,0.076860,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.555000,4612575.550000,6367,4055,103.404144,167.577698,170.660355,159.561172,145.619034,133.767776,130.495056,127.957863,127.387611,129.610748,128.660339,139.057037,155.495056,170.858704,183.561172,194.032257,192.701675,180.495056,157.304977,136.445480,126.908279,122.354553,117.536377,91.329765,75.652077,89.495056,100.164474,73.742989,34.800846,14.470265,10.685143,5.276044,7.099188,8.434724,8.132243,4.661988,1.250415,1.472728,1.146282,1.639670,1.442150,1.919009,1.800000,1.535537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.355000,4612575.550000,6381,4055,103.306625,163.785965,166.521500,160.653732,144.860336,134.496719,132.100006,129.604141,127.852081,129.480179,130.108276,139.876877,155.248779,171.579346,183.042160,193.141312,193.546280,181.562820,158.100006,137.422333,126.223976,123.298363,118.736374,92.595879,76.860344,90.496704,100.579353,73.843811,36.166138,16.400845,10.794234,6.974392,9.182662,8.225631,7.820675,3.610749,0.394216,0.131406,0.150414,0.000000,0.055372,0.000000,0.322314,0.292562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602022.555000,4612575.550000,6402,4055,96.568619,158.899200,169.221512,161.295883,145.923996,136.229782,132.031433,128.791763,128.229782,129.213242,129.163666,140.312424,154.056213,171.667786,182.717377,192.386795,193.196716,180.643005,157.337219,136.262833,126.238037,123.519028,120.163658,93.461182,77.262825,91.031425,102.072746,75.742165,36.948780,15.510762,10.923985,5.467780,8.624808,7.891749,6.892574,2.780169,0.612398,0.110745,0.397521,0.024794,0.107438,0.000000,0.092562,0.300000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602025.955000,4612575.550000,6419,4055,111.791756,159.064468,167.568604,158.973557,145.676041,135.370270,131.552094,130.543823,128.395065,130.254562,130.353745,140.882645,157.560333,172.659515,185.171906,194.072739,194.965302,182.535538,158.857864,138.295868,127.808289,125.147133,119.709114,93.370270,76.800018,94.188454,102.601677,75.320686,37.386799,15.095887,10.882663,7.176045,8.781833,9.048775,8.762823,2.968600,0.942151,0.124794,0.270249,0.118182,0.148761,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.155000,4612575.550000,6445,4055,100.560356,157.915726,164.213226,159.576889,145.064484,133.791748,130.138870,128.899200,126.552086,127.808289,128.386795,138.494232,155.800018,169.981827,182.461166,193.014877,192.080994,179.990082,156.494217,135.428116,125.783493,121.874405,117.163658,90.923988,76.816551,90.709114,100.452911,74.312416,36.527290,14.607456,10.651259,6.742987,9.744644,9.225634,6.007450,2.224797,0.171075,0.198348,0.154546,0.117356,0.012397,0.267769,0.293389,0.428100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.755000,4612575.550000,6473,4055,106.037209,156.863647,167.673553,156.235535,143.061981,133.557861,130.144638,127.557861,126.731422,127.458687,127.119850,138.342972,154.648758,169.483475,182.359497,190.938019,190.723145,179.938019,155.880173,134.458679,125.061996,122.392578,116.681831,89.723160,74.152908,88.971092,100.904976,74.185966,34.855392,14.187620,10.607457,5.667778,6.628113,7.314887,7.261995,1.967772,0.525621,0.092563,0.143802,0.024794,0.000000,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.755000,4612575.550000,6508,4055,104.749611,158.931412,167.923157,157.501663,145.443832,133.600845,130.319855,128.361176,127.741348,128.592590,129.642181,139.832245,156.146286,171.055374,184.171082,193.799179,192.526459,181.485138,159.385956,136.303329,126.468620,122.319862,117.518211,90.493416,77.171097,91.493416,102.204155,75.799202,37.146301,14.120679,10.683490,6.789269,8.845472,8.108277,6.893402,2.948765,1.247111,0.296696,0.373555,0.000000,0.004132,0.161157,0.137190,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602053.755000,4612575.550000,6558,4055,93.917374,160.140518,167.942169,158.413239,142.520676,134.049606,131.272751,129.066147,127.314072,127.074402,128.768616,138.537201,155.421509,171.132248,182.876053,192.685974,193.289276,180.909103,157.545471,136.033081,125.743820,122.049606,117.818199,91.429771,76.049614,90.768608,100.115715,73.776886,35.991756,14.365307,10.710763,6.104143,8.771089,7.009102,7.262823,2.549591,0.914051,0.085124,0.052893,0.024794,0.000000,0.198348,0.135537,0.307438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.755000,4612575.550000,6598,4055,92.100845,151.695892,168.233078,156.919037,141.943832,131.423157,129.943817,126.109108,125.646301,126.224808,128.051254,137.728958,153.728958,169.307465,181.588455,192.646301,190.596725,178.927292,156.001678,135.910767,125.357040,122.266136,117.200020,91.166962,75.431419,89.423157,98.852913,72.588448,35.357044,12.866132,10.654565,6.666128,8.471916,7.012408,5.908275,2.587607,0.507439,0.216530,0.000000,0.036364,0.000000,0.000000,0.062810,0.284298,1.572727,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.955000,4612575.550000,6639,4055,87.712425,150.910767,168.505798,157.695877,142.158691,133.051270,129.299194,126.464485,125.993416,126.786804,127.803329,138.332245,154.852905,169.728958,180.208267,192.266129,192.051254,179.580170,156.588440,135.629776,124.505814,122.481018,116.109116,91.943825,75.398376,90.100853,99.266144,71.762009,34.166954,12.898364,10.555390,6.428936,7.266130,7.643813,6.354557,4.281824,0.958680,0.337191,0.234711,0.054546,0.004133,0.000000,0.228926,0.000000,0.000000,0.000000,0.000000,1.585124,0.000000,0.000000 -602074.155000,4612575.550000,6660,4055,94.849609,150.667786,165.064484,155.147125,144.395065,134.502502,132.039688,128.031433,127.271095,127.271095,128.676056,138.882660,155.965317,170.700851,183.089279,193.328949,193.064484,181.246307,157.171921,135.709106,126.204979,122.948784,116.981842,91.791756,75.899193,91.155396,98.890930,72.899193,34.271091,12.700844,10.634730,7.063647,7.362000,5.892572,8.519850,2.456203,0.729754,0.419836,0.109091,0.058678,0.000000,0.000000,0.672728,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.355000,4612575.550000,6686,4055,96.680183,158.506622,169.085129,159.390915,145.076859,135.423996,132.614059,129.944641,129.109924,128.713242,130.903320,141.076859,158.019012,172.415710,184.291748,194.291748,194.738022,181.961166,158.085129,137.919846,128.316544,124.324806,119.209106,93.787621,78.300018,91.903320,101.886795,73.581009,35.647129,14.828942,10.837209,7.831416,8.544644,6.981003,7.645467,2.062814,0.361158,0.105786,0.052066,0.187604,0.000000,0.000000,0.457026,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.155000,4612575.550000,6715,4055,87.121506,153.873581,166.823990,156.443832,142.592590,134.005814,130.666962,128.096725,128.278534,128.592590,129.402512,139.931427,156.195892,171.394241,184.278519,193.832230,194.138016,182.443802,158.146301,138.113251,127.708290,125.394241,118.609116,93.485138,77.212418,91.840515,101.873573,73.675224,35.567787,15.446301,10.782663,5.208277,8.174396,9.470262,7.608276,3.838022,0.138018,0.092562,0.190083,0.060331,0.029752,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.555000,4612575.550000,6742,4055,88.930603,153.004974,167.872757,157.930588,144.426453,134.748779,131.162003,129.542160,128.211578,129.327286,130.558701,139.682663,157.013229,172.228134,184.864487,194.071106,193.434738,181.542175,158.335571,137.525635,127.831421,125.112411,119.236382,94.203323,78.451263,92.062828,100.955391,73.550438,35.079357,13.752085,10.839688,8.787618,9.185966,8.152905,8.171913,3.714883,0.685126,0.190083,0.594216,0.090910,0.013223,0.071901,0.000000,0.260331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.155000,4612575.550000,6780,4055,93.604973,154.257858,167.191757,158.348785,143.861160,133.489273,132.042999,128.993408,128.447952,128.762009,130.216553,140.365295,157.208267,172.902512,184.257874,194.489288,194.307465,182.538864,158.811600,138.935547,128.687622,125.935555,119.290924,94.596710,78.885971,92.522331,101.596710,73.919029,36.530598,14.763654,10.844646,8.871089,8.600842,8.682657,8.714065,3.053724,1.018183,0.444630,0.177687,0.193389,0.112397,0.000000,0.304959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.355000,4612575.550000,6796,4055,93.297546,154.685974,166.942169,154.471085,142.776886,134.595062,130.702499,128.289276,126.520683,126.851265,128.462830,138.876068,155.528946,170.512405,182.322327,192.570267,192.975220,179.396713,157.107452,137.487640,125.752090,123.760353,118.090935,91.917381,76.355392,90.421509,98.388451,71.710770,33.909111,13.027291,10.735557,5.887617,6.795882,7.567782,6.019019,3.834718,0.305787,0.016530,0.435539,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602104.755000,4612575.550000,6813,4055,100.302498,155.831421,166.385132,159.781830,142.657867,135.013229,131.765305,127.914062,127.509102,127.781830,129.360336,139.566956,157.393402,171.533890,183.773560,193.004974,193.732239,182.707458,158.823151,138.178528,127.798363,125.071091,118.236374,93.600014,77.145470,90.633072,101.038033,74.153732,35.624813,13.605802,10.748779,6.918195,7.656214,9.261170,8.071914,3.698352,0.863639,0.056199,0.216530,0.066116,0.124794,0.000000,0.000000,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.355000,4612575.550000,6836,4055,96.941345,156.147949,169.462006,159.304977,144.693405,135.338028,131.420670,128.982651,128.106628,129.214066,130.139679,139.957870,156.999191,171.817368,183.908279,194.552917,194.470261,182.032257,158.850433,138.949600,127.924805,124.908279,119.536377,93.544647,78.726463,92.561180,102.817368,74.676880,35.437210,14.223986,10.866961,6.232244,8.952909,9.492576,8.347948,3.896701,0.374381,0.197522,0.700828,0.263637,0.000000,0.071901,0.181819,0.505785,0.000000,0.000000,1.812397,0.000000,0.000000,0.000000 -602112.755000,4612575.550000,6853,4055,92.470268,160.057022,169.627274,160.445465,145.313232,136.164490,132.693405,129.577698,127.982666,128.883484,130.197540,139.924789,156.990906,170.023972,182.222321,194.131409,193.999176,181.296692,158.263641,137.767776,127.619026,124.536385,119.263657,92.933075,78.040512,92.304977,101.371094,74.428947,34.776058,14.652084,10.842167,7.112409,8.223983,8.747121,8.250426,4.204966,0.562811,0.158678,0.289257,0.097521,0.000000,0.000000,0.138843,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.955000,4612575.550000,6879,4055,106.899185,156.320679,171.320679,159.262833,142.915726,133.659515,132.262817,128.998367,126.543816,127.494232,127.907455,139.667786,155.684326,172.023163,182.824814,191.816559,194.122330,181.733902,158.733902,138.254562,127.601669,124.213234,120.072739,92.800018,77.576874,91.271088,101.833069,75.229767,35.114063,14.539687,10.915722,7.514062,8.570265,8.911584,7.818195,4.425628,0.534713,0.152067,0.316530,0.000000,0.000000,0.187604,0.500000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.155000,4612575.550000,6905,4055,95.920677,163.780182,169.259521,159.366959,142.317368,134.895889,131.912415,129.152084,128.325638,129.094238,128.937210,141.176880,156.862823,170.821503,183.813248,193.474396,194.424820,181.218201,158.358704,137.284317,127.780182,124.697540,118.672745,92.209938,78.639687,90.920677,102.036385,74.821510,35.656219,15.033075,10.788448,8.318194,8.885965,8.687617,9.776048,5.579347,1.134714,0.100827,0.204133,0.594216,0.516529,0.128099,0.138843,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602129.355000,4612575.550000,6936,4055,105.812416,164.440506,171.457031,160.250427,144.828949,133.952911,131.820679,129.225647,127.465309,128.795883,127.944649,140.126450,156.027283,171.176041,183.399185,194.258682,193.250427,181.564468,159.506622,138.209091,128.828949,124.944649,118.027298,92.399193,76.911591,91.688454,102.878532,75.663658,35.300022,15.508282,10.729771,8.450426,9.231421,9.966129,9.040510,4.266948,0.611571,0.571075,0.504134,0.136364,0.000000,0.000000,0.004132,0.000000,0.000000,2.176860,0.000000,0.000000,0.000000,0.000000 -602135.355000,4612575.550000,6966,4055,101.981834,165.196701,171.552078,156.419846,144.502487,133.138855,131.047943,128.221497,126.758690,127.452904,127.114067,138.080994,154.923981,170.213226,182.114059,193.444641,193.800003,180.386780,158.171906,137.089279,128.023148,124.444641,119.254562,90.328941,76.510757,90.593407,101.180183,74.593407,35.089272,13.459521,10.841342,9.289270,9.635553,9.413238,7.935550,3.427278,0.435539,0.201653,0.422315,0.166943,0.267769,0.000000,0.231405,0.277686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.155000,4612575.550000,6980,4055,101.145485,169.988449,168.839676,162.228119,146.459518,133.889282,131.385147,129.104141,128.195068,129.244644,128.649612,140.029770,155.666122,172.038025,183.104141,193.550430,193.591751,180.211578,157.971909,137.715714,128.046310,124.352097,118.236389,91.641335,76.079361,90.732246,101.393402,73.467789,35.996716,13.871092,10.748779,8.428938,9.250429,8.259517,9.471913,3.709098,0.233886,0.370249,0.634712,0.204959,0.000000,0.064463,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.355000,4612575.550000,7001,4055,94.592583,166.906601,168.658676,159.485123,144.476868,131.038864,131.923157,126.394234,127.336380,128.253738,127.666962,138.617371,155.559494,170.741318,181.906601,193.600815,193.336365,180.716522,158.171066,138.352905,127.419029,123.204147,119.245476,90.460350,76.542992,90.385971,100.790924,73.716545,34.419029,13.976876,10.840516,8.882658,8.086791,7.958689,9.182658,3.538023,0.795870,0.180993,0.055372,0.057851,0.000000,0.000000,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.755000,4612575.550000,7018,4055,106.185143,166.391754,170.507446,160.846298,147.193405,131.986801,131.714066,128.433075,127.738861,129.474396,128.532257,139.242996,155.738861,171.532242,182.647934,194.771912,195.069427,180.854568,158.259521,138.028122,127.408287,125.523987,119.400017,92.094231,77.846298,89.755394,101.656219,73.482666,35.490929,15.073571,10.854565,10.381832,7.719848,7.231416,7.455385,3.010749,0.773556,0.309092,0.191736,0.114050,0.115703,0.000000,0.448761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602151.955000,4612575.550000,7049,4055,101.810760,168.554565,168.992569,161.571091,143.901672,131.984299,131.637192,128.686783,127.513237,130.951248,128.835556,139.438858,155.909927,172.339676,183.108276,195.133072,194.455383,180.480179,158.257034,137.042160,128.306625,125.009102,119.918198,90.876862,75.761169,90.901657,99.380997,71.504974,34.091751,14.118199,10.901671,7.531418,8.185966,8.586791,7.375219,1.823971,0.285951,0.080165,0.114876,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,1.708265,0.000000,0.000000 -602156.155000,4612575.550000,7070,4055,123.819847,169.150436,167.919006,163.828125,147.836395,134.555374,133.795044,129.828110,130.224808,132.910751,130.571915,142.084320,157.307465,174.042969,184.646271,197.985123,195.968582,182.795029,160.150421,139.340500,130.315720,127.596703,122.290916,94.175217,78.621498,92.563660,100.712410,73.257874,34.497540,15.032249,11.117375,9.954559,8.167784,10.138856,9.517370,3.415708,0.435539,0.154546,0.193389,0.111571,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.755000,4612575.550000,7083,4055,117.179359,173.914886,171.576050,164.402496,149.162827,136.914902,133.981003,130.848785,132.435562,134.493408,131.410767,142.890091,158.898361,175.509933,187.452072,199.179352,198.047119,181.989273,161.104965,141.187607,131.468613,128.460342,122.790916,95.344643,79.848778,94.526466,101.270264,73.691765,37.088451,16.076878,11.162828,10.804973,8.349603,9.748775,10.104974,6.552902,0.428928,0.641325,0.215703,0.000000,0.000000,0.000000,0.007438,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.555000,4612575.550000,7097,4055,104.276871,181.756210,172.152908,164.739685,148.086777,135.111572,134.161163,130.723145,129.938019,135.268600,130.954559,141.954575,157.276871,174.053741,186.384308,197.673569,196.111588,182.086792,159.367783,140.599213,130.392563,126.318192,122.227280,93.252075,79.202484,92.954552,101.417366,73.657036,35.797535,15.007456,11.111588,9.506624,8.551255,8.186789,8.997535,3.295873,0.742977,0.157026,0.171902,0.254546,0.000000,0.004132,0.000000,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.155000,4612575.550000,7120,4055,100.742996,177.610779,173.230591,165.809128,150.139709,136.643814,134.949600,133.197540,132.139694,136.536377,133.263657,143.916550,159.486816,177.032242,191.172745,201.833908,201.123154,186.230576,164.751266,144.280182,133.081833,130.875229,125.263657,97.495064,83.585968,96.908287,104.701675,74.800842,38.230595,16.597538,11.387622,11.957039,12.109107,11.573568,8.943814,6.775215,1.078516,0.587605,0.733886,0.041322,0.286777,0.500001,0.682645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602173.355000,4612575.550000,7156,4055,126.990929,173.652084,173.288452,166.387619,149.321503,136.354568,135.131424,132.941345,132.982666,138.850433,134.544647,145.395889,160.610764,177.949600,192.519852,204.635544,203.990921,189.023987,168.189270,147.619034,136.676880,133.428940,128.718201,99.371094,83.982666,100.280182,106.577705,75.387619,35.585968,13.854562,11.701672,8.491748,9.704147,8.985140,9.214063,3.889262,0.301655,0.045456,0.056199,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.155000,4612575.550000,7185,4055,112.728935,172.602478,173.296692,164.032211,147.304962,136.313232,133.371078,130.594223,130.767776,136.825623,131.362823,143.941330,158.379349,176.676865,190.371078,203.503311,200.742981,187.205795,165.809097,146.362808,134.982651,132.767776,126.627281,98.585968,82.718208,99.511589,107.296707,75.982666,36.685146,13.612412,11.511589,10.057865,8.654560,7.514065,8.895055,4.731414,0.814878,0.395043,0.066942,0.043802,0.017356,0.136364,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.555000,4612575.550000,7217,4055,79.815720,154.724823,161.485153,153.435562,137.377716,127.906624,125.724808,122.344643,121.972740,125.129761,124.840508,135.881851,152.625641,169.121521,182.501678,193.823990,194.138046,182.947952,161.047134,141.369446,130.171097,125.402489,119.336372,93.080185,76.997536,92.840515,104.468605,77.468605,36.609108,14.167785,10.848779,5.267781,8.831418,8.032246,7.877697,3.486785,0.483473,0.321490,0.189257,0.076033,0.000000,0.004132,0.000000,0.342149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.355000,4612575.550000,7236,4055,96.095886,145.533920,157.699203,148.748795,134.112411,124.161995,121.773567,118.087616,117.889267,119.790092,120.071091,130.517365,148.682678,164.443008,176.566971,188.170273,189.682678,179.244659,156.434738,136.451248,125.228111,121.550423,114.690926,87.947128,71.831429,88.715721,102.980186,77.509109,35.641338,13.839686,10.426465,4.820671,8.538031,6.396708,6.517365,1.725625,0.440497,0.343803,0.059504,0.035537,0.225620,0.000000,0.101653,0.286777,0.000000,0.000000,0.000000,0.000000,1.885951,0.000000 -602192.355000,4612575.550000,7251,4055,96.255386,148.610764,157.503326,149.338043,134.569443,126.296715,122.371086,119.941330,119.247116,121.106621,122.081833,133.362823,152.057037,166.172745,181.123154,191.098373,192.313248,181.767792,159.156219,138.668610,128.247131,124.073570,117.809105,91.453728,75.123161,91.726456,106.362823,80.379356,38.519855,14.747125,10.709937,5.562822,10.447948,9.288445,9.603318,3.540504,0.908267,0.228100,0.331405,0.142976,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.155000,4612575.550000,7275,4055,90.271919,143.544647,158.371094,149.098373,132.924805,125.495056,120.751251,119.048775,117.470261,117.784309,119.726456,130.015717,147.445480,163.395889,175.346298,186.742996,188.685150,177.602493,155.949600,135.966141,124.941330,119.833893,114.263649,86.858688,70.528107,88.057037,105.073563,79.015717,35.362831,12.636381,10.387623,5.227283,7.695881,6.184309,6.432243,2.222321,0.610746,0.130579,0.000000,0.035537,0.000000,0.061984,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602200.555000,4612575.550000,7292,4055,92.363655,146.330597,154.297531,146.553741,130.925629,121.388443,120.900841,116.768608,115.471092,117.388443,118.553734,129.793411,146.247955,161.330597,175.099182,186.661179,186.619858,176.950424,155.644638,135.363647,123.851257,120.024811,113.181831,86.157043,71.537209,89.834724,105.702492,78.000015,36.983490,13.299190,10.289274,6.133071,8.250426,9.619851,6.842985,3.349597,0.213224,0.304134,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602205.555000,4612575.550000,7317,4055,99.133896,147.679352,155.373566,147.299179,133.456207,125.175217,122.481003,118.861168,118.737198,119.662819,120.456207,131.332245,149.233063,164.439682,176.704147,188.348770,189.175217,178.009933,157.613235,136.307449,125.621498,119.861168,114.109100,87.679352,73.274391,90.464470,106.580177,79.489265,36.588451,14.932248,10.373572,5.080177,8.968609,8.041337,9.140509,4.633067,0.826449,0.023967,0.051240,0.118182,0.000000,0.080992,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.955000,4612575.550000,7359,4055,96.695053,145.637207,151.339676,143.703323,130.628937,120.538033,117.835548,114.281830,114.612411,115.504974,116.133072,126.752907,145.033890,160.612411,173.174393,184.033890,185.521500,175.306625,152.909927,132.174377,121.794228,117.347946,111.554558,85.438858,67.835548,85.843811,102.141335,75.984314,33.496712,12.128117,10.141341,5.284309,6.719020,7.318195,6.852903,2.352898,0.505787,0.182645,0.298348,0.000000,0.000000,0.000000,0.214050,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602218.755000,4612575.550000,7383,4055,94.612419,145.819016,152.017365,144.645462,129.761185,121.422325,117.306625,114.728111,114.166130,115.281830,116.232246,127.298370,145.761169,160.794235,173.323151,184.455383,185.438858,174.628937,152.405792,133.719849,122.810760,118.595879,112.463646,85.240517,70.389275,87.232246,101.711586,75.637215,34.281837,12.005803,10.223987,5.099186,6.984311,8.391748,9.353732,2.770256,0.700002,0.134712,0.000000,0.171075,0.451240,0.000000,0.147108,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602222.755000,4612575.550000,7403,4055,92.183487,151.571930,157.943832,147.042999,131.481003,123.274399,120.307457,117.604973,115.505806,116.745476,118.447952,128.704147,145.852921,161.786804,175.001678,185.142181,185.629776,174.885971,153.241348,134.018204,123.671089,121.117371,114.745476,88.042992,70.985138,88.357040,103.051254,75.662827,35.233074,14.104977,10.431425,5.688443,8.750428,9.238031,7.267781,3.847943,0.479341,1.014878,0.000000,0.086777,0.200827,0.000000,0.417356,0.447934,0.000000,0.000000,0.000000,0.000000,1.793389,0.000000 -602228.755000,4612575.550000,7433,4055,118.150436,151.538849,156.348770,145.671082,132.505798,123.629761,119.423149,116.274391,115.728935,116.183479,117.927284,128.861160,145.613235,160.001663,172.282654,182.629761,183.191742,172.712402,151.728943,132.646286,121.894226,119.166954,113.018188,88.580185,72.472748,87.919029,101.629761,73.836380,35.530602,13.930594,10.274399,5.879350,8.432246,9.839684,8.960342,4.530588,1.028102,0.277687,0.000000,0.298348,0.321488,0.004132,0.000000,0.415703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.555000,4612575.550000,7482,4055,132.296707,163.668625,159.288467,146.660370,133.718201,122.891747,119.759514,116.247116,114.941330,116.164474,117.503319,127.420670,144.585983,159.379379,170.288467,178.387634,179.081848,169.825653,150.081848,131.627289,122.676872,120.751251,116.809105,92.081833,74.304970,92.263649,107.585960,80.338028,36.569435,14.166133,10.619028,8.695056,7.990923,7.953733,10.049600,3.800009,1.507442,0.376035,0.324794,0.213224,0.090083,0.000827,0.599175,0.387604,0.000000,0.000000,0.000000,3.112397,0.000000,0.000000 -601313.155000,4612565.550000,2855,4105,113.214890,128.140518,106.479355,90.793404,77.363655,64.627289,63.420681,61.230598,59.149609,61.040516,59.891754,70.362831,85.513237,98.115715,109.942162,120.247948,122.661171,118.809937,110.512413,95.603325,88.380180,88.677704,86.090927,59.340515,41.036385,62.057045,102.656219,95.086792,46.904980,9.899188,7.826465,15.296711,14.110761,23.405802,38.756218,32.212414,4.776867,0.758679,1.189259,0.722316,0.719836,1.166944,2.107440,1.732234,47.401657,42.930588,15.042153,12.798353,19.033890,15.088430 -601316.155000,4612565.550000,2870,4105,138.147110,144.415710,118.506622,104.820679,88.390923,75.564484,75.547958,71.655396,69.647133,72.200851,70.589279,81.448776,97.300018,111.300018,123.382660,132.597534,135.357864,130.076874,119.696709,105.647125,95.671913,96.729767,93.118195,64.142998,45.953739,67.275230,105.704971,94.448776,47.911594,11.235555,8.465309,15.593405,13.819026,20.414068,30.602497,23.666962,3.436371,0.978514,0.542977,0.761158,0.485126,1.442150,0.332232,1.262813,24.389261,23.706615,13.072730,10.507442,11.771077,10.695042 -601319.155000,4612565.550000,2885,4105,31.085960,27.329763,14.640502,10.140501,6.057029,3.396697,3.772730,3.194218,2.916531,3.438846,3.242151,4.800829,7.291740,11.434716,15.412403,20.226456,21.922323,22.062820,21.156210,16.440504,11.903313,12.114882,13.872735,4.491739,1.364464,4.847111,46.155392,69.542984,38.130596,3.614883,1.261165,15.310758,16.092577,34.666134,55.624809,42.991756,3.342155,0.360331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.814051,1.151240,0.305785,1.209918,0.313223,2.926447 -601323.555000,4612565.550000,2907,4105,121.272743,140.173553,117.462830,103.578529,86.876053,73.545479,73.421509,69.388451,68.223160,70.950439,67.413246,77.099197,90.371918,102.247940,112.429771,122.173569,121.876053,116.471092,107.595047,94.611588,85.330605,85.033081,82.636391,54.760349,36.164482,56.966965,99.735542,93.842995,49.727291,11.280181,7.512416,17.928942,14.160348,23.146301,32.070267,27.362001,1.167771,0.058678,0.241323,0.000000,0.176033,0.045455,0.006612,0.000000,8.161159,4.242150,4.031406,9.252895,3.281819,8.055372 -601330.155000,4612565.550000,2940,4105,160.962845,168.482666,143.738861,132.317368,116.714058,102.829773,102.937210,101.044647,101.457870,105.069435,103.482658,116.317368,134.705795,152.755386,167.152084,181.209930,181.681015,168.102493,145.077698,123.656212,113.581833,111.085960,104.218193,74.152077,55.532246,70.523979,84.986786,60.747124,25.110764,9.170264,9.474400,14.563653,9.297534,9.017370,10.064477,6.441332,1.930584,0.906614,0.393390,0.337192,0.297521,0.780166,0.310745,0.424794,5.894216,8.463637,8.856199,6.195042,5.960331,9.385951 -601338.755000,4612565.550000,2983,4105,167.397537,181.182663,152.372742,140.405792,124.290092,111.587616,111.496704,109.075218,109.405800,115.438858,112.571091,123.703316,142.612411,162.546295,176.967789,191.637207,192.166122,176.711578,155.091751,133.339676,120.893402,118.901665,113.281830,80.455383,62.901672,76.695053,89.942986,64.529770,28.872746,12.619025,10.298367,18.706627,11.262825,13.483487,14.063652,8.621499,2.009923,0.380994,0.961985,0.233061,0.351240,0.000000,0.697522,0.933058,9.441323,7.028927,7.634712,2.494215,2.994215,1.983471 -601348.755000,4612565.550000,3033,4105,181.430588,189.438858,156.050430,144.504974,125.463646,112.587608,112.719841,110.480171,111.000832,118.257027,112.628929,124.496696,142.116547,160.422318,176.670258,190.133072,189.942993,173.323151,151.141342,130.785950,120.182648,115.976036,111.009094,78.868607,62.562832,78.149605,85.926460,59.909939,27.323160,10.248778,10.091756,17.120678,9.776048,10.715718,12.342165,5.567777,1.271904,0.390911,0.261984,0.362811,0.044628,0.890083,0.708265,0.171901,5.334711,3.030579,7.082645,5.735538,1.110744,2.074380 -601360.955000,4612565.550000,3094,4105,128.856216,148.453720,146.825623,138.280182,121.982666,113.833900,111.751259,108.949593,109.023987,111.040512,113.098366,123.635559,141.966141,157.718185,171.825623,183.668594,183.941330,173.585953,148.709915,128.478531,117.395889,113.990929,107.900017,79.478531,62.817379,75.817368,86.552910,62.585976,28.511589,11.300016,9.809110,7.369435,8.140509,7.215718,8.694228,2.622319,0.539672,0.212398,0.243802,0.095868,0.000000,0.000000,0.120661,0.000000,1.859504,1.055372,0.802479,0.720661,0.893389,1.770248 -601373.155000,4612565.550000,3155,4105,120.195053,150.439667,148.778503,136.580170,122.414894,115.414894,112.580185,110.208282,109.646301,111.720680,113.323982,123.679359,141.191742,157.613220,171.993378,182.357025,182.687592,172.199997,148.712387,127.423157,117.481010,113.687622,106.381836,79.819855,63.481014,76.497536,90.034729,64.629776,30.142168,11.687621,9.671093,8.079351,8.947948,8.848775,10.323982,5.526454,0.853722,0.409093,0.271901,0.408265,0.104133,0.414050,0.000000,0.390083,2.109091,0.951240,0.000000,1.393389,0.933058,1.878513 -601378.555000,4612565.550000,3182,4105,126.797539,148.771927,150.995056,138.920685,124.523987,115.408287,112.209938,111.193398,110.664474,111.838028,114.507454,124.276054,142.433075,157.598373,170.499191,181.796707,183.978531,173.185150,148.796707,128.028107,118.457870,114.267792,108.036377,81.317375,63.193409,77.433075,89.259514,66.705803,30.499193,12.819026,9.821506,7.860344,8.910757,9.074395,8.487618,4.485132,0.836366,0.284299,0.315703,0.274381,0.000000,0.000000,0.712397,0.251240,0.967769,0.000000,1.773554,2.339670,4.862811,0.000000 -601384.355000,4612565.550000,3211,4105,114.498360,150.717361,150.320663,140.039673,126.411591,115.469437,114.221504,111.857864,111.428116,112.692574,114.841339,124.866127,142.147110,158.097534,172.279343,182.543808,183.684311,173.204971,149.519012,128.667786,118.882660,112.833069,108.163651,81.386795,63.089275,77.684311,89.295883,66.295883,31.312416,13.260348,9.833076,7.371088,8.855386,8.438857,8.937204,4.480173,1.161987,0.447109,0.147935,0.057025,0.000000,0.000000,0.162810,0.000000,0.957025,0.912397,0.000000,1.505785,5.012398,0.000000 -601393.155000,4612565.550000,3255,4105,114.722328,150.405792,147.744644,137.488449,123.868599,115.199181,112.116531,109.579346,109.521492,110.579346,112.554550,123.133064,141.529770,156.711578,169.769440,180.042160,181.265305,170.290100,147.521500,125.496704,114.942978,111.199181,105.645462,78.455376,60.471916,74.504967,86.265297,63.149605,27.076876,11.258695,9.604153,6.230590,6.900012,7.644642,7.523980,3.537197,0.454547,0.128100,0.141323,0.107438,0.000000,0.037190,0.071075,0.000000,2.109918,1.049587,0.831405,0.737190,0.000000,1.873554 -601407.755000,4612565.550000,3328,4105,115.849602,149.878525,151.399185,139.647125,125.886803,116.713249,113.812416,112.266968,111.655396,114.490105,115.399193,126.101677,142.275223,158.762817,171.630585,182.085129,183.357864,173.333069,148.514877,128.366135,116.738037,113.886803,107.118202,79.779350,62.217373,75.969437,89.308289,66.167786,30.729771,11.754564,9.738035,5.056209,7.494227,7.780180,9.004147,4.188436,0.562812,0.175208,0.201653,0.201653,0.073554,0.019835,0.000000,0.000000,2.246281,1.054546,0.000000,1.558678,1.849587,0.000000 -601425.355000,4612565.550000,3416,4105,139.976868,157.406616,152.547119,144.497528,130.935562,120.737206,118.307457,116.241341,115.621506,119.472748,119.580185,129.323990,147.100830,162.150421,176.299179,185.993393,187.481003,176.001663,152.315720,130.943817,119.885971,115.381836,109.018196,82.166962,64.497536,78.770264,90.563652,68.762009,31.828117,14.339687,9.910763,6.378522,8.497536,9.509105,9.332246,4.606618,0.768597,0.555373,0.138843,0.201653,0.000000,0.045455,0.420662,0.000000,1.088430,2.174381,1.824794,0.000000,2.066942,0.000000 -601432.755000,4612565.550000,3453,4105,124.728119,186.977707,166.547958,157.349609,140.614059,128.085129,126.911575,125.035545,124.291740,130.142975,125.837196,136.597534,153.143005,170.192581,184.052094,196.250427,193.845459,179.928116,158.663666,137.432236,127.895050,124.192566,118.118187,89.126457,72.457039,87.523155,96.316536,69.176056,32.341339,15.168612,10.738035,10.918197,8.052079,9.173568,9.390097,3.913232,0.966944,0.054546,0.081818,0.000000,0.000000,0.037190,0.000000,0.240496,0.000000,0.960331,0.000000,0.000000,1.312397,0.000000 -601435.955000,4612565.550000,3469,4105,140.095078,193.351257,167.789276,159.062012,140.764496,128.012405,127.326454,125.681824,126.210754,131.781006,126.194221,137.995895,153.442169,171.086792,184.227295,195.987625,195.681839,179.880188,158.376053,138.285156,126.681824,123.946289,120.863647,90.037209,74.227280,88.863655,96.847115,68.648773,32.946301,13.726463,10.987623,11.031422,7.890097,10.083486,9.525633,4.694224,0.747935,0.000000,0.202480,0.133058,0.061157,0.000000,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.155000,4612565.550000,3490,4105,125.461182,189.560333,164.510757,159.345459,140.378525,127.783485,127.130592,124.742165,125.717369,130.841339,125.651253,137.221497,153.114059,170.634720,184.543808,195.651245,194.452896,179.667770,158.204971,137.808273,126.857864,123.717369,118.709106,88.659523,73.411591,87.866127,97.089272,68.543816,33.147129,13.613241,10.791755,9.717370,8.531420,8.564477,8.652906,4.093398,0.795871,0.384298,0.299174,0.190083,0.057851,0.000000,0.000000,0.000000,0.000000,1.126446,1.085950,0.000000,0.000000,0.000000 -601443.155000,4612565.550000,3505,4105,131.216537,185.720673,167.051254,157.241333,139.489273,127.175217,127.224800,126.026459,125.042984,129.588440,126.629761,137.307449,153.662827,171.100830,184.290924,195.249603,193.877701,180.580170,158.481003,138.266129,126.447945,124.026459,119.290916,89.241333,73.952087,88.332245,97.001663,69.398361,34.357048,12.730595,10.844646,11.768610,9.091749,8.178525,9.526460,3.117363,0.366117,0.410745,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.955000,4612565.550000,3524,4105,120.143822,178.928940,167.110764,157.400024,140.449600,127.267776,127.689270,125.408279,124.895882,130.176865,127.110756,137.920685,154.333908,171.879364,183.995056,195.771927,193.986801,180.928940,158.185150,138.441345,127.160339,124.755386,119.127281,89.862823,73.466133,87.920670,98.391747,70.152084,33.416546,14.869440,10.829771,10.268612,8.626462,8.920676,9.834726,4.797530,1.111573,0.376034,0.147108,0.176860,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.955000,4612565.550000,3544,4105,117.752907,174.455368,164.066940,156.017349,139.554535,127.447121,127.397537,124.595879,123.728111,129.083481,126.364479,137.711563,154.182648,171.199173,184.571075,196.455368,194.414047,181.777679,157.885117,137.273544,128.215714,124.182655,119.100014,88.587616,73.314888,87.397537,97.752907,71.471916,34.529770,13.109935,10.827291,10.991751,8.924809,11.469437,10.769437,2.777695,0.353720,0.242149,0.036364,0.011571,0.006612,0.000000,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.955000,4612565.550000,3564,4105,114.851265,176.446274,166.049591,156.000000,140.347107,127.900848,127.562004,125.917374,124.611595,128.239700,126.057877,138.107437,154.735535,172.347107,184.462814,195.776855,195.752060,181.876038,159.231400,138.280991,127.066139,124.867783,118.636383,89.173569,72.975220,86.735550,98.148773,70.471092,33.909111,14.187621,10.785143,11.126462,8.285966,9.669436,8.785138,4.985960,0.485125,0.227273,0.105785,0.066943,0.000000,0.000000,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.755000,4612565.550000,3578,4105,114.125641,181.803314,165.745468,156.133896,139.009933,127.489273,128.629776,126.365311,125.076050,128.704147,126.629768,137.869431,155.803314,172.828110,184.927277,195.910751,195.390091,183.233063,159.224808,137.530594,127.307457,125.547127,119.018196,89.737198,74.596703,88.084305,98.778534,71.770256,33.894238,12.990927,10.819855,11.001669,8.533899,8.910757,7.895882,3.124802,0.380993,0.000000,0.166116,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,1.347934,0.000000,0.000000,0.000000,0.000000 -601460.755000,4612565.550000,3593,4105,111.979347,175.219009,165.607437,153.946304,140.747940,128.805801,127.797539,125.533066,125.045471,127.508278,127.004150,138.805786,155.995880,171.921478,185.293365,196.747925,195.623947,183.458664,160.169434,138.772720,127.962830,125.706627,119.590927,90.012413,73.276878,86.747948,97.946297,72.706627,32.615723,13.987620,10.871920,9.750428,8.590924,9.089272,9.556214,3.662819,0.682647,0.372728,0.124794,0.065289,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.555000,4612565.550000,3607,4105,116.261177,172.327286,162.128922,152.591751,139.434723,127.376877,125.806633,123.583488,123.021507,126.426468,125.591759,136.872742,154.335556,171.062805,183.657867,195.087616,194.715714,181.509109,158.757019,136.914047,126.128944,123.814896,117.418205,89.211594,72.360352,84.723991,97.178535,70.930603,32.748779,12.401671,10.674400,8.323981,6.171087,6.796710,6.329764,3.538024,1.030581,0.154546,0.045455,0.009091,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601474.155000,4612565.550000,3660,4105,117.934731,172.174393,165.587616,154.331421,140.752899,128.785965,128.430588,125.876869,125.686790,127.571091,127.637199,138.819016,156.670258,172.761169,185.240509,196.257034,196.455383,184.984314,159.529770,138.893402,127.852081,125.546295,119.554565,91.149597,73.232254,87.190933,98.703316,72.620682,33.579357,13.757870,10.868615,9.174396,8.997536,9.052081,9.171914,3.922323,0.304960,0.449588,0.061984,0.093389,0.000000,0.000000,0.013223,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.355000,4612565.550000,3686,4105,134.315720,167.563644,165.406616,154.117371,139.348770,127.323975,128.026459,125.695877,124.100838,125.406624,126.530586,138.142151,155.885956,171.952072,184.447937,196.282654,195.117371,182.646286,158.968597,138.464478,127.472740,124.233070,117.290916,89.150429,73.571922,86.034729,97.439682,71.753738,34.464485,14.150431,10.662828,8.275220,7.869436,8.673566,9.041335,2.984306,0.854548,0.083471,0.109918,0.000000,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,1.314876,0.000000 -601481.955000,4612565.550000,3699,4105,114.453720,167.032242,165.428925,154.676865,138.924789,128.321487,126.842155,124.652069,123.941322,125.321487,127.230583,137.197525,155.900009,171.404129,184.197525,194.230576,195.511566,182.676865,158.362808,138.478516,126.338020,123.734711,119.354546,87.577698,73.428940,85.214058,98.073563,70.387611,33.701675,13.629768,10.850431,8.921502,6.943816,8.373569,9.092577,3.819017,0.706613,0.441323,0.052893,0.102480,0.000000,0.000000,0.000000,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.355000,4612565.550000,3721,4105,111.628113,164.702499,166.578522,155.702499,141.743820,129.727295,129.165298,126.371918,126.727287,127.628113,128.107452,139.892578,157.991745,174.041336,185.677704,196.322327,197.082657,184.528946,160.330597,139.578522,128.314072,125.917374,120.636383,91.454567,74.776878,86.909119,99.611595,74.446297,35.090931,15.609937,10.966961,10.213239,9.689273,10.528115,9.563651,4.781829,1.167772,0.497522,0.149587,0.052893,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.555000,4612565.550000,3737,4105,114.610756,164.032257,165.164490,154.081833,139.486801,129.619019,127.701668,124.759514,124.652077,125.577698,127.023979,138.495056,155.924820,172.833908,184.784317,195.280182,196.511597,183.313248,159.420685,137.585968,126.916542,124.511581,118.445465,89.428940,74.346291,86.850426,99.230591,71.395882,33.776054,14.329770,10.767788,8.273567,7.895057,7.825633,7.447947,3.633066,0.519836,0.395869,0.280993,0.000000,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.795868,0.000000,0.000000,0.000000 -601493.755000,4612565.550000,3758,4105,116.955383,162.798370,162.443008,154.418213,140.079361,128.087616,126.897537,124.327293,124.038033,124.723976,125.955391,137.715729,155.170273,171.517380,183.095901,194.393417,195.509125,182.889282,158.707474,138.319031,126.170258,122.509109,117.781837,89.624817,72.674400,86.426468,97.657867,72.409935,33.112415,11.879357,10.707456,5.931417,5.857866,8.113236,8.944642,2.806619,0.790911,0.139670,0.118182,0.000000,0.000000,0.161984,0.010744,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.555000,4612565.550000,3787,4105,124.481834,163.407425,167.407425,153.142975,139.093399,128.688446,127.985962,125.076874,125.713234,125.895058,126.812408,138.217361,157.010757,172.068604,185.010727,195.423950,195.696686,183.142975,159.630585,137.514877,126.944641,124.300018,118.481834,89.729767,73.043816,87.366127,100.853737,72.291748,34.423988,13.693407,10.771094,8.357040,7.023156,8.271914,8.958694,3.549595,0.583473,0.176860,0.044628,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.755000,4612565.550000,3808,4105,104.494225,164.403305,163.188431,152.684311,138.196716,127.990089,126.519012,124.147118,123.684303,124.998352,126.353729,136.800018,155.609924,171.312393,183.452896,194.262817,194.130585,182.271057,158.163635,137.320679,126.279343,123.105789,118.527283,88.130585,71.915710,86.328934,99.114059,72.609932,34.841339,13.248778,10.775226,7.947947,7.941338,7.628940,8.399187,4.414059,0.558679,0.186777,0.000000,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601507.555000,4612565.550000,3827,4105,101.773567,160.988449,161.451248,152.674377,137.723984,127.401665,125.302483,124.707451,123.319016,124.856201,125.814888,137.203323,154.542145,170.947098,184.319000,193.938843,193.690903,182.492554,158.368607,136.864471,125.087616,121.484314,118.418190,89.062820,71.442986,85.781830,98.600014,72.004974,32.806629,12.600844,10.765308,7.132244,8.329767,7.126461,7.438030,3.966951,0.221488,0.175207,0.000000,0.000000,0.000000,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.955000,4612565.550000,3854,4105,117.958694,161.148758,163.694214,152.801651,139.347122,128.338852,128.148773,125.768608,124.363655,125.983490,126.743813,138.355392,156.958679,172.148758,185.603302,195.297516,195.446274,183.371902,159.603302,138.272751,127.066132,124.256218,119.000015,89.867783,71.677711,87.140511,99.214890,71.396721,34.206635,14.087622,10.818200,8.084310,8.641338,9.907454,8.361998,3.306620,1.879341,0.043802,0.265290,0.051240,0.000000,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.755000,4612565.550000,3868,4105,108.115707,158.000015,165.363647,151.909103,137.694229,127.487617,126.570267,124.024811,123.892578,125.619850,126.264481,137.933899,155.826462,171.247955,184.264481,195.008286,194.388443,183.355392,158.570267,137.479355,125.991753,123.074394,117.636383,88.694229,71.595055,87.322327,99.801666,72.206627,34.033077,13.277702,10.694233,7.298361,7.750429,8.399189,6.181004,4.783481,0.506613,0.052066,0.101653,0.064463,0.000000,0.000000,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601520.555000,4612565.550000,3892,4105,119.816544,156.849609,164.047958,152.238037,137.485977,128.750427,126.337204,124.155388,124.452904,125.196709,126.171913,137.320679,155.593414,171.362000,184.948776,194.072754,194.163666,183.816559,158.601669,137.957047,125.758690,123.353737,118.072739,88.535553,72.345474,86.973579,97.899185,72.411591,33.254566,13.614895,10.733904,6.854558,7.267782,8.684312,7.775221,3.041331,1.073556,0.304133,0.109091,0.225620,0.000000,0.000000,0.105785,0.000000,0.000000,1.108265,0.000000,0.000000,0.000000,0.000000 -601523.755000,4612565.550000,3908,4105,118.403320,158.229752,163.585129,151.800003,140.279343,128.899185,127.039680,123.899185,125.519012,126.196709,125.882660,138.337204,156.378525,172.824799,185.097534,195.940506,196.254547,184.105789,159.246292,138.477692,127.758690,124.279350,119.890923,89.204964,72.750435,87.254562,99.485962,73.816551,35.593407,14.071918,10.899192,7.052080,7.371090,7.142163,7.318196,4.266950,0.738018,0.142149,0.366116,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.955000,4612565.550000,3934,4105,101.843811,157.662003,165.364471,154.157867,139.207458,130.695053,128.182663,125.381004,124.686790,128.017365,128.752899,139.835556,158.017365,174.075226,186.678528,197.033890,196.852081,185.810760,160.893402,139.381012,128.579346,125.620674,120.281830,91.761169,73.976044,89.298363,101.562820,74.356209,36.182663,14.907456,10.934730,7.471086,9.871091,8.287619,8.068609,4.776869,0.367770,0.276860,0.217356,0.000000,0.000000,0.000000,0.053719,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.955000,4612565.550000,3949,4105,88.433899,155.946304,162.681839,150.987625,138.632248,127.566132,125.789284,124.028938,124.103325,124.747948,126.367783,136.855392,155.318192,172.185974,185.219025,194.103317,194.648773,183.714890,159.219025,136.731415,125.400841,123.442162,118.590927,88.979355,71.855385,87.243820,99.334724,73.285141,33.359524,13.848778,10.781011,7.862824,7.190097,6.960344,7.633071,3.946289,0.777688,0.221488,0.125620,0.000000,0.000000,0.000000,0.057025,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.755000,4612565.550000,3968,4105,107.628113,158.355377,162.330582,153.743805,139.099182,130.768600,128.181824,126.272743,125.760338,126.752075,128.512390,139.752060,157.305786,174.867767,186.504135,197.785126,197.520660,186.247940,161.247940,140.297516,129.016525,125.289261,121.181824,91.396713,73.652908,89.090927,102.082664,73.239693,36.760349,14.488448,11.016547,7.165302,8.738858,9.372744,8.757040,3.461165,0.756200,0.364464,0.209092,0.000000,0.000000,0.171075,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,1.155372,0.000000 -601538.555000,4612565.550000,3982,4105,103.220673,158.658691,163.997528,154.749603,139.220673,130.245468,128.452072,126.724800,125.832245,127.576042,128.881821,139.476868,158.278519,174.179352,187.848770,197.592575,197.881821,186.666946,161.344635,139.815720,128.319839,125.766129,120.790916,90.592583,73.766136,88.600838,100.179352,73.799194,34.956219,14.143819,10.981010,6.995881,8.449601,8.123155,8.920677,3.276040,0.619010,0.282645,0.261984,0.105785,0.057851,0.000000,0.000000,0.061984,1.214050,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.355000,4612565.550000,4001,4105,114.391747,165.937210,163.226471,152.821503,138.722336,128.829758,126.945465,125.879349,124.978523,126.722328,127.804970,139.019852,157.383484,173.342163,186.292587,196.342163,196.333908,184.119034,161.424820,139.482666,127.466125,124.928940,119.854553,90.631416,72.623161,87.598358,100.209930,73.152084,34.433079,13.259522,10.895887,7.063649,7.621503,9.045470,7.499188,2.421493,0.613224,0.314877,0.167769,0.038843,0.000000,0.077686,0.050413,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.955000,4612565.550000,4034,4105,109.532249,160.738846,164.003311,152.738846,139.226456,130.185135,127.565300,124.424812,124.755386,126.838028,128.052902,139.300827,157.871078,173.226456,186.879349,197.267776,197.019836,185.788437,161.507446,139.251236,127.747124,124.598366,119.400017,90.036385,73.647957,89.135559,100.152084,74.143829,34.813240,14.237207,10.854564,6.349600,7.451256,8.159518,6.523979,3.749595,0.613225,0.182645,0.000000,0.059504,0.000000,0.000000,0.000000,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.955000,4612565.550000,4049,4105,102.223160,154.884308,163.099182,151.570267,139.528946,129.661179,126.842987,124.892570,124.173561,126.603317,127.396713,137.776871,156.520676,172.669434,186.636383,195.851257,196.966965,184.330597,160.702499,139.421509,128.669434,124.363647,118.818192,89.900833,71.991745,88.173561,100.636375,73.851257,33.644650,13.447124,10.801672,5.466953,6.252081,7.731419,6.032244,4.322323,0.414877,0.037190,0.061157,0.000000,0.000000,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,1.066116,0.000000,0.000000 -601559.155000,4612565.550000,4085,4105,108.019859,161.581833,162.507462,151.614899,139.135559,130.383484,127.796722,124.664490,125.804985,127.490936,128.011597,138.722336,157.052917,173.804977,186.920670,196.557022,198.168594,187.284302,162.474396,139.515717,128.846313,124.590111,120.400024,90.490929,72.433075,87.854553,101.714081,74.276054,33.804981,13.995887,10.945474,6.163647,7.042990,7.443816,6.789269,4.018191,0.438844,0.042975,0.411571,0.000000,0.059504,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.555000,4612565.550000,4102,4105,116.784317,162.861984,165.176041,155.771088,142.242157,130.911575,129.531418,127.399178,127.233894,128.985962,129.547943,141.903305,158.919846,175.944641,189.109924,197.713226,199.266953,187.861984,163.349594,141.828934,129.473557,125.779343,121.209099,92.300018,74.300026,89.928116,103.795876,75.324814,35.018200,14.073571,11.019027,6.966953,9.675222,8.001668,8.823981,3.527280,0.356199,0.138843,0.164463,0.133058,0.000000,0.000000,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.755000,4612565.550000,4123,4105,113.135559,156.788437,164.953720,154.747131,139.986786,129.862823,127.829765,125.961998,124.879349,127.581833,128.656204,138.920670,157.094223,174.400009,186.829758,197.937210,197.284317,186.284302,161.961990,139.342148,128.416534,124.656212,119.400009,90.094231,72.242996,87.400017,100.606628,73.069443,33.854565,13.469440,10.854565,5.980176,7.104974,8.082658,7.223980,2.952899,0.666117,0.075207,0.000000,0.000000,0.066116,0.000000,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.355000,4612565.550000,4151,4105,120.500015,164.805801,166.012405,157.599182,143.095062,133.673569,131.772751,129.615723,129.061996,131.475220,131.615723,142.863647,161.574402,178.185944,190.210739,200.665283,201.690079,189.888428,165.475220,143.698364,131.764481,127.623985,123.318199,93.673569,75.681831,91.185966,104.500015,77.962830,37.119854,17.361176,11.210763,6.869434,9.834727,9.481834,9.297536,3.626455,0.670250,0.271902,0.323141,0.133058,0.004133,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,1.152066,0.000000,0.000000 -601575.955000,4612565.550000,4169,4105,109.073570,158.759521,162.189270,153.982666,141.453735,130.181015,128.338043,126.528122,126.015724,128.668610,128.949600,139.842163,158.040512,175.602493,188.718201,198.114899,197.900024,187.726471,162.652084,141.156219,129.139694,124.478531,120.809113,91.478523,72.784317,87.858688,103.181000,74.519844,33.635555,13.832249,10.982664,5.568605,6.880179,6.823154,6.828112,3.493395,0.439671,0.257852,0.005785,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.155000,4612565.550000,4195,4105,112.813232,165.226456,164.986786,155.350418,142.193390,131.813232,130.540497,128.342148,127.623146,129.366943,130.821487,140.970245,159.771912,175.970245,189.887604,199.838013,200.259506,188.581818,165.119019,141.986786,129.937195,127.201653,121.672729,91.424805,73.457870,88.565300,102.780174,77.119019,36.466137,14.146299,11.061175,5.650425,7.389270,8.734726,8.424808,3.212403,0.488431,0.172728,0.209918,0.116529,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.755000,4612565.550000,4218,4105,99.795876,163.514893,165.085144,156.862000,141.919861,132.523148,129.572739,128.754547,126.977692,129.514877,129.828934,140.961182,159.258698,176.382645,189.878540,199.333084,199.952911,189.506638,163.994232,142.184326,130.333069,126.605789,121.663643,91.969429,73.845467,89.019012,103.142982,75.903320,35.399197,13.490926,11.060350,5.748770,8.487620,9.423983,6.795056,3.051248,0.390910,0.054546,0.052893,0.000000,0.000000,0.351240,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.555000,4612565.550000,4242,4105,117.103325,165.706635,164.995880,157.095062,144.136383,132.219025,130.111588,128.590927,128.516541,130.409103,130.657043,141.938034,160.433899,176.673569,190.144638,199.549606,199.814072,189.863647,164.665298,142.252075,130.921509,127.706627,122.681831,92.756226,73.640518,90.095062,103.309937,76.524811,35.549606,14.631422,11.152912,5.747945,8.073570,7.715717,7.869436,3.889265,0.398348,0.247934,0.119835,0.002479,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.955000,4612565.550000,4259,4105,104.675217,166.865311,166.832260,156.931427,143.402512,131.369446,130.063660,127.989273,127.881836,129.700012,130.295059,141.047134,159.534729,176.171097,189.427292,199.204163,199.179367,188.452087,164.642181,141.303329,129.700012,126.658699,121.336380,92.055382,74.038864,88.931412,102.542992,77.278534,35.559521,15.228116,11.030598,4.578521,7.938859,7.594229,7.108278,2.447114,0.242149,0.123967,0.055372,0.114050,0.000000,0.000000,0.009091,0.109091,0.000000,0.000000,1.040496,1.057025,0.000000,0.000000 -601596.955000,4612565.550000,4274,4105,106.774399,165.270264,165.534714,158.534714,144.022324,132.402496,129.931427,127.964478,127.642166,130.576050,130.923157,141.443817,159.774384,176.584305,188.997528,199.914886,199.964478,189.460342,164.509933,142.394226,130.311584,126.476875,122.063652,92.923157,74.096718,89.914894,102.526466,76.377708,35.121510,15.159523,11.096713,5.657035,8.619024,7.390097,8.881833,2.851246,0.416530,0.228926,0.159505,0.133058,0.021488,0.000000,0.006612,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.355000,4612565.550000,4291,4105,117.475220,171.152908,168.367783,160.177704,144.483505,133.896713,131.500015,130.103317,129.202499,131.904968,131.847122,143.136398,160.433899,177.665298,190.202499,200.111588,200.475220,189.971085,164.681839,142.714905,130.855392,127.012405,122.136383,92.260338,74.896713,89.119843,101.822319,77.045471,37.062000,16.015720,11.103326,5.932243,8.776875,8.824809,8.700016,3.386784,0.782646,0.376034,0.210744,0.000000,0.018182,0.000000,0.011571,0.111571,0.000000,0.000000,0.000000,0.000000,1.357025,0.000000 -601603.355000,4612565.550000,4306,4105,116.879356,160.796692,166.441330,158.160339,144.945496,133.557037,130.267792,129.631424,128.714066,131.945480,130.689270,142.102509,159.507446,176.515701,190.143799,199.854553,199.234711,189.168594,163.697525,141.482681,129.433075,126.400017,120.127289,91.887619,74.540512,87.986794,101.606628,75.920677,36.201675,14.173572,10.920681,5.566125,6.328941,7.728940,7.473566,2.954551,0.760333,0.312397,0.212397,0.000000,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.955000,4612565.550000,4334,4105,113.715729,171.814896,167.550430,158.690933,145.616562,132.938858,131.087631,129.790100,128.699188,131.757050,130.864487,143.046310,160.170258,177.252914,190.492569,199.476044,199.682663,187.938858,164.633072,142.252914,130.277710,126.773575,121.145477,90.608276,73.889275,89.343811,102.104149,75.657875,36.467785,14.509108,11.013243,5.618192,8.252080,7.870262,7.393403,2.722320,0.521489,0.138017,0.000000,0.061984,0.014876,0.260331,0.009091,0.000000,0.000000,1.332232,0.000000,0.000000,0.000000,0.000000 -601614.755000,4612565.550000,4363,4105,122.483490,174.293411,162.590927,160.657043,145.111588,132.128113,130.971085,129.814072,128.623978,132.202499,131.111588,141.979355,159.061996,177.400848,188.623978,200.169434,198.566132,187.822327,163.946304,140.781006,129.781006,124.648773,120.954559,91.747948,72.855392,88.781006,100.880180,75.111588,34.681839,15.595885,10.995887,5.898359,7.939685,7.718196,6.714062,2.178518,0.617356,0.485951,0.294216,0.134711,0.002479,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.555000,4612565.550000,4377,4105,131.777710,173.314896,168.182663,159.471909,145.513229,131.843811,131.496704,129.331406,128.554550,131.744644,131.397522,141.794235,159.901672,176.984314,188.422333,199.207458,199.405792,187.323151,163.058685,141.232239,128.133057,125.066956,118.918198,90.372742,72.695061,87.331429,99.678528,75.033905,34.389278,13.772745,10.810762,4.859513,7.015716,6.024806,6.487616,2.260337,0.510745,0.490084,0.108265,0.011570,0.237191,0.000000,0.225620,0.080165,0.000000,0.000000,0.000000,0.000000,2.738843,0.000000 -601620.555000,4612565.550000,4392,4105,124.880188,173.747940,171.450409,161.268600,146.714874,133.342987,131.830597,130.342987,128.458694,132.409103,131.037201,141.466949,158.954544,176.417358,188.946274,199.466949,198.880173,186.756195,162.037186,139.756195,128.557861,124.599190,119.681831,90.086792,72.557877,87.590927,100.334724,75.516556,34.053738,12.835555,10.880184,4.209926,6.889270,6.599185,6.688442,2.221493,0.478514,0.055372,0.140496,0.002479,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,1.424793,0.000000 -601623.155000,4612565.550000,4405,4105,122.267792,180.069458,171.044662,161.019852,146.400040,131.499191,131.871094,130.333908,128.226471,130.325638,130.201675,141.532272,159.342163,174.796722,188.449615,198.011612,197.036392,184.028137,160.069458,139.119049,127.738861,125.557045,119.400017,89.201675,72.672745,88.507454,99.664482,75.953735,34.019855,14.847125,10.854564,6.699184,7.120674,7.623153,7.500838,3.290091,0.447935,0.196695,0.102480,0.147934,0.039670,0.383471,0.000827,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.955000,4612565.550000,4419,4105,114.473572,170.068619,172.283493,160.176056,144.093430,132.647125,130.903320,127.614067,127.085136,128.357864,130.283493,140.266968,158.994247,174.002502,185.638870,196.275208,197.151245,182.184326,157.895081,137.721512,126.184311,123.192574,116.300018,89.118195,72.589279,87.093407,100.787621,72.341347,33.531425,13.998365,10.572747,9.399186,7.314889,10.013236,8.032246,4.678522,1.233061,0.095042,0.387604,0.000000,0.092562,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.355000,4612565.550000,4436,4105,118.595055,173.030594,169.774384,158.014053,142.443817,132.923157,131.204147,128.336380,127.311577,128.799179,128.261993,140.509933,158.228943,173.518188,185.576050,194.873550,194.716522,181.823975,156.700012,136.509933,125.212410,123.402489,117.700012,88.121498,73.253738,85.898354,98.873566,70.873573,33.526466,15.883490,10.700018,8.481831,8.581005,8.142162,8.233899,2.868602,0.439670,0.032232,0.119009,0.000000,0.000000,0.000000,0.000827,0.000000,0.000000,1.321488,0.000000,0.000000,0.000000,0.000000 -601635.155000,4612565.550000,4465,4105,118.934723,173.157883,172.719864,159.926453,143.381012,132.653732,131.852081,128.447113,127.794228,128.843811,129.157867,140.728134,158.571091,174.463669,186.108292,195.909927,194.562820,181.802505,157.389267,136.934738,125.686790,123.182655,117.554558,88.538033,72.951256,85.951256,98.463646,72.529762,34.827290,15.852084,10.686795,9.194229,8.714890,9.583483,9.003318,3.617363,1.496697,0.257852,0.056199,0.000000,0.000000,0.000000,0.000000,0.094215,2.462810,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.755000,4612565.550000,4478,4105,113.761177,180.463654,173.744644,161.951263,146.901688,133.430603,132.066956,129.777710,128.496719,131.133072,129.744644,140.513245,159.331436,175.389267,186.942978,196.513214,194.951233,182.686768,157.785980,137.389282,125.959526,123.364487,118.372749,89.769440,73.108284,86.513245,100.504982,72.794235,35.050430,14.707456,10.761175,10.123156,8.440509,9.520675,9.066958,4.720669,1.545458,0.128926,0.163637,0.000000,0.107438,0.000000,0.047934,0.220662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.355000,4612565.550000,4511,4105,118.190933,180.992554,175.529755,162.364456,146.752884,134.546280,133.876877,132.033890,130.662003,133.116547,130.728119,142.827271,159.587601,177.323135,188.521484,198.901657,197.017349,182.951233,159.223969,137.736359,128.595886,124.703323,119.281837,90.554558,73.124817,86.711586,99.042168,73.934731,34.711590,16.024811,10.843822,11.499188,8.081832,9.404146,9.038031,4.866953,0.857853,0.028926,0.414877,0.252067,0.000000,0.000000,0.079339,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.755000,4612565.550000,4528,4105,121.400841,178.780991,171.425613,162.623962,143.747955,131.219009,131.260345,128.268600,128.086792,131.549591,128.342987,140.268616,157.805786,174.979340,185.566116,196.359497,195.764465,180.491730,157.194214,136.144638,125.128105,123.285133,117.318192,87.987617,71.169441,85.574394,97.830597,70.714890,32.979362,13.019027,10.665308,9.319023,7.395880,5.981003,6.014060,2.577693,0.276860,0.273554,0.164464,0.002479,0.068595,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.555000,4612565.550000,4552,4105,120.176872,186.490921,174.408279,162.730591,147.127289,135.623154,133.119019,131.970261,130.218201,133.631409,130.887619,142.920685,160.176880,177.788452,189.292587,199.143814,197.664490,183.160355,159.077698,137.433075,127.028107,124.738853,118.854553,90.722328,72.895882,87.449600,100.350426,73.482658,34.730598,15.424811,10.804977,9.575222,9.521502,9.475221,7.628113,3.733892,0.662812,0.000000,0.198348,0.000000,0.000000,0.000000,0.041322,0.000000,0.000000,0.000000,1.258678,0.000000,0.000000,0.000000 -601657.955000,4612565.550000,4579,4105,123.548782,185.143814,172.846298,161.986801,145.606628,132.300842,130.879349,129.019852,128.457855,131.309097,129.003311,140.342163,157.135559,174.408279,186.846298,196.400024,193.871094,180.119034,156.102493,135.862823,124.383484,122.507446,115.672737,87.499184,71.218193,85.871086,97.234718,71.176872,32.342167,14.037209,10.515722,8.599187,7.942987,7.409102,8.253733,3.753728,0.654547,0.209091,0.152067,0.046281,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.113223,2.666116,0.000000 -601662.955000,4612565.550000,4604,4105,128.790924,191.989273,177.154541,164.873550,151.270264,135.402496,135.253723,132.708267,131.261993,135.179352,131.947937,143.220673,160.385941,176.766129,190.228943,199.179352,196.807449,182.749603,159.278503,138.402496,127.022324,123.823982,118.427292,89.303322,73.377701,87.989273,99.262001,72.055389,34.716545,14.207455,10.766133,9.517370,8.084311,9.480180,8.637205,3.230587,1.078515,0.323141,0.175207,0.003306,0.069422,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.955000,4612565.550000,4619,4105,135.326462,187.943832,175.993408,165.009949,148.538864,132.927292,135.009933,131.381836,131.323990,134.348785,130.150436,141.274399,160.125641,175.919037,188.679367,198.414902,196.414902,181.423172,158.092590,137.315735,126.109108,124.720680,117.927292,89.018196,73.671089,86.786797,98.985138,71.894234,34.489273,14.578531,10.720681,10.641338,7.181004,8.923982,9.728113,4.392570,1.219836,0.894216,0.419009,0.445455,0.403306,0.000000,0.411570,0.033884,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000 -601669.155000,4612565.550000,4635,4105,139.294250,194.153717,176.319016,167.649582,151.203308,135.277695,135.434723,132.550430,132.591751,136.013229,131.781830,143.938843,160.294205,177.980179,189.699173,200.261154,198.054535,182.500839,159.847931,138.434708,126.335548,125.360344,119.690926,90.137199,74.847946,88.368607,100.294228,71.699188,35.757042,15.089273,10.881011,12.054562,8.318195,9.746296,8.722327,3.683479,0.861159,0.330579,0.243802,0.008265,0.000000,0.000000,0.068596,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601673.355000,4612565.550000,4656,4105,133.468597,192.627289,176.552917,167.933075,148.263657,134.643814,134.875214,131.685135,131.916534,136.536377,132.181000,143.966141,160.726471,177.933075,189.883484,200.139694,197.701675,182.073578,159.296707,140.445480,128.007446,124.643814,118.718193,90.362823,74.321510,89.090096,100.957863,72.189278,34.387623,17.388449,10.792582,10.034726,8.720675,8.491749,8.924808,3.661166,0.872730,0.229753,0.399174,0.408265,0.236364,0.102480,0.068595,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.355000,4612565.550000,4671,4105,145.652893,192.322311,175.338837,167.008270,150.887604,137.218201,134.785141,132.752075,132.917374,137.140518,131.760345,143.487625,159.487625,177.727280,190.041321,200.628098,198.284302,182.953720,161.069427,141.846283,130.953735,127.838028,123.581833,93.961998,78.127281,92.854553,102.333893,72.069435,35.025646,14.424810,11.234729,12.786794,7.276045,9.549600,7.867781,4.392570,1.723969,1.181819,1.524795,0.737191,0.467769,0.289256,0.248761,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.955000,4612565.550000,4684,4105,145.619858,201.512436,180.892578,166.809937,148.958694,135.074402,133.462830,131.776871,132.471085,137.661179,132.578522,142.190094,159.537201,176.685974,190.148773,200.884308,196.719025,180.661179,158.330597,138.347122,125.842987,124.181824,119.818192,88.404968,72.958694,88.479355,100.545464,69.909103,34.338863,13.972744,10.892580,13.537207,6.428112,8.785137,7.538027,3.504140,0.076860,0.685952,0.016529,0.065289,0.075207,0.000000,0.000000,0.000000,1.257851,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.555000,4612565.550000,4702,4105,143.455399,200.604156,181.612411,172.579330,153.066956,138.223969,138.025620,135.918198,134.942993,140.306610,134.926453,146.240494,163.190918,180.265305,193.273590,203.100037,200.587631,183.141342,162.893402,141.174377,128.819016,125.331421,119.918198,90.281830,74.901672,89.579353,100.942986,71.488449,35.414070,15.001671,10.901671,12.285966,7.817368,8.939683,8.988442,4.371082,1.384301,0.230579,0.528926,0.123967,0.132232,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.555000,4612565.550000,4722,4105,107.486794,163.081818,168.784302,159.073563,145.164459,134.288452,132.825638,129.924820,129.247131,129.668610,131.842163,143.007446,160.453720,176.577682,188.528107,196.387604,196.139679,183.949585,160.304962,139.544632,128.610764,125.238861,119.263657,91.462006,74.602501,89.660347,102.891754,76.478531,34.982658,16.467787,10.842167,7.164476,9.188444,7.809103,10.142991,3.363643,0.342151,0.150414,0.149587,0.000000,0.000000,0.000000,0.000000,0.129752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.355000,4612565.550000,4746,4105,105.838860,164.508286,168.995880,157.235550,143.880188,134.466965,131.830597,129.508286,128.723160,130.235550,131.243820,141.814072,159.500015,175.995880,188.376038,196.789261,196.458679,183.219009,159.557861,137.392578,127.202492,124.243820,119.500015,90.533073,73.673569,88.400841,100.194229,75.623985,35.136383,13.784314,10.863655,7.267781,8.266955,7.738856,9.249603,3.935546,0.153720,0.114050,0.122314,0.055372,0.000000,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.955000,4612565.550000,4759,4105,101.715721,158.657867,167.864471,159.195053,144.558685,134.385132,132.533890,129.500854,129.938858,130.699173,130.856201,142.757034,160.971909,176.137207,188.178528,196.294235,196.881012,184.434723,160.145462,138.996704,129.145477,125.195045,119.236366,91.285973,75.426468,88.624817,101.566963,74.897545,38.013245,13.783488,10.839689,7.676047,7.957865,10.514891,8.270263,3.828933,1.099176,0.272728,0.169422,0.000000,0.000000,0.000000,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.355000,4612565.550000,4786,4105,96.459518,164.454559,168.148773,157.231415,143.066132,131.809921,131.619843,128.165298,127.983482,129.785126,130.214874,140.347122,158.958694,174.586792,186.619858,196.429764,195.190094,181.735550,157.966965,136.553741,126.512405,123.702484,118.000015,90.024803,73.752075,88.876038,100.578529,73.371910,34.925640,13.673572,10.727292,5.658688,6.675220,8.601666,9.324808,2.641330,0.813225,0.150414,0.352893,0.147108,0.095868,0.000000,0.095868,0.166116,0.000000,0.000000,1.061984,0.000000,0.000000,0.000000 -601702.555000,4612565.550000,4802,4105,104.776047,161.313248,168.164490,157.742996,144.172745,131.619019,131.495041,127.999176,129.428925,130.685120,131.486786,141.585968,158.974396,175.065308,187.470261,197.238861,195.900024,183.453735,159.924820,138.784317,127.486778,123.784302,117.990913,91.371086,74.594223,88.321503,101.486786,74.693398,36.065308,14.141341,10.726465,4.097531,7.085138,7.490095,7.191749,2.407444,0.647935,0.036364,0.094215,0.000000,0.156199,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.355000,4612565.550000,4821,4105,114.659508,165.535538,170.353729,158.328934,144.105789,133.279343,132.593399,128.940506,129.386780,130.709091,131.907440,142.717361,160.651245,176.667770,187.857880,196.725647,197.097549,183.634720,160.378525,139.130585,129.295868,125.494225,119.254555,90.808281,73.667793,90.866127,102.353729,74.998360,36.766960,14.708283,10.841342,4.604969,9.372741,9.590097,8.971089,5.333067,1.019011,0.085951,0.087604,0.000000,0.003306,0.000000,0.000000,0.122314,3.798347,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.155000,4612565.550000,4840,4105,96.252914,162.104126,165.285950,156.178513,143.038025,132.178528,130.393402,127.566963,127.748779,129.319031,130.385147,140.914062,159.889252,173.525604,186.732208,196.690887,195.599976,182.509079,158.608261,137.591736,125.550438,122.352089,118.418205,90.525642,72.872749,89.153740,101.401672,74.319031,35.277706,12.878530,10.765309,5.190920,8.031419,7.239682,7.681005,1.719840,0.377687,0.038843,0.224794,0.067769,0.000000,0.000000,0.000000,0.229753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.755000,4612565.550000,4858,4105,112.808281,163.948761,170.800003,157.750427,141.957047,132.494217,129.485962,128.072739,126.973557,129.742157,130.378525,141.568619,159.229752,175.386780,187.824799,195.791748,194.114059,182.386780,158.618195,137.593414,126.477692,122.857857,117.800003,90.171913,73.510757,88.395058,100.775223,73.089272,36.081009,13.915721,10.709109,6.765300,6.874393,6.742159,7.526460,3.014057,0.318183,0.118182,0.593389,0.054546,0.000000,0.195042,0.000000,0.168596,1.271075,0.000000,0.000000,0.000000,0.000000,0.000000 -601719.155000,4612565.550000,4885,4105,102.175232,160.348770,167.323975,158.365295,144.704147,133.084305,130.844635,128.869431,128.985138,131.100830,131.133896,142.464478,160.216537,176.266129,187.497528,197.439682,196.695877,184.340500,160.943817,138.885956,128.596710,124.712418,120.654564,91.290932,74.166969,89.571930,101.233086,75.621513,34.852909,14.899191,10.968614,5.946291,8.636377,7.371914,7.657865,3.388437,0.314050,0.045455,0.117356,0.000000,0.000000,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.955000,4612565.550000,4909,4105,116.126457,168.159515,167.647110,157.580994,144.076859,135.390930,131.771088,131.481827,130.308273,132.118195,132.027283,143.688431,161.407440,176.242157,190.514877,198.035538,197.754547,186.754547,161.704971,140.539673,128.969437,125.663651,119.754562,92.349602,75.564484,90.589272,101.671913,76.019028,37.581013,13.635555,10.886795,7.244639,8.444639,8.652906,8.104146,2.298353,0.666944,0.400828,0.062810,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.355000,4612565.550000,4926,4105,107.444641,162.287628,169.056198,160.395065,146.428116,135.031418,132.411591,129.328934,130.403320,131.411591,132.006622,142.742172,160.626465,176.973572,189.254547,197.527283,196.642975,185.700851,160.485977,139.006638,129.196716,125.833069,119.618195,90.981827,73.833061,90.039673,102.642990,75.081001,36.081009,15.947952,10.874399,6.023979,7.268609,8.391747,7.719849,5.056210,1.136366,0.887605,0.054546,0.000000,0.058678,0.000000,0.000000,0.124794,1.209091,0.000000,0.000000,0.000000,1.199174,0.000000 -601731.355000,4612565.550000,4946,4105,119.154564,161.857025,168.394226,157.873550,146.914886,135.642151,132.790924,132.022339,130.964478,131.923157,132.857040,142.724808,160.666931,176.460342,188.658691,197.419022,197.328110,184.923157,161.030579,139.394226,128.592575,125.435555,120.518196,92.204147,75.542992,89.509933,102.766136,77.071922,37.542995,15.023985,10.956218,6.512408,7.923980,8.543816,7.766129,3.130586,0.455373,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.330579,0.000000,0.000000,0.000000 -601734.755000,4612565.550000,4963,4105,100.591751,168.897537,168.823151,157.715698,145.186768,135.087616,131.674393,129.856216,129.038025,131.707458,132.285965,143.112396,161.269440,176.881012,187.864456,197.666107,195.963638,186.319016,161.633072,139.608261,128.112411,124.980179,120.054558,91.252907,74.079353,88.963646,102.442986,76.120674,37.153736,15.646298,10.914067,4.820673,10.050427,7.558689,10.098362,2.783479,1.269424,0.871076,0.110744,0.000000,0.000000,0.000000,0.050413,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612565.550000,4980,4105,116.984322,166.257034,167.430588,158.149597,145.042160,135.942993,133.066956,131.083481,130.480179,132.463654,132.852081,143.942993,161.050430,177.042160,189.628937,198.480179,197.083481,185.678528,162.381012,140.744644,129.571091,126.174400,121.645477,92.141342,75.108284,89.438866,101.306625,76.331429,37.281837,16.130596,11.058696,6.282656,8.147121,7.728938,8.504974,3.146288,0.292563,0.260332,0.226447,0.060331,0.000000,0.000000,0.009918,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601740.755000,4612565.550000,4993,4105,111.454559,165.512405,168.685974,161.710754,147.504150,136.933899,134.190094,133.685959,132.057861,135.644623,135.851242,145.330597,163.024811,179.347122,190.719025,199.247955,199.099182,188.305801,163.190094,140.570267,131.033066,126.818192,120.909096,92.570267,75.851265,91.892578,102.611588,77.388451,35.743820,13.872746,10.991755,6.477697,7.220675,7.638854,8.279353,3.496701,0.566117,0.126447,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.155000,4612565.550000,5015,4105,116.536377,163.745483,169.505814,160.018204,144.166962,135.481003,131.373566,131.745468,129.059509,132.679352,133.390091,143.844650,162.067795,177.497543,189.208298,198.795074,198.489288,187.208298,162.844650,139.737213,128.985138,125.770256,119.927284,91.489273,73.621506,89.952087,101.464478,73.861176,36.018200,13.781837,10.902499,4.955381,7.316543,8.304146,7.310758,3.038025,0.800828,0.173555,0.155372,0.000000,0.173554,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.155000,4612565.550000,5050,4105,104.261177,172.831421,173.104141,161.319000,147.616562,137.434738,133.856232,132.889282,132.195068,134.930603,134.963669,144.715729,162.649582,178.971909,191.211563,199.641312,200.161987,187.839661,163.608261,142.128952,130.219864,126.004990,122.236389,92.451263,75.393410,90.616547,103.112419,76.699196,37.947128,15.356217,11.112416,5.162819,6.938858,8.501669,8.046294,2.157031,0.586779,0.230580,0.000000,0.140496,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.555000,4612565.550000,5067,4105,116.475212,157.690094,162.698364,157.427277,146.086792,136.781006,135.582657,133.384308,133.855377,136.136383,135.681839,145.566132,163.904968,180.128113,192.450424,200.657043,200.906616,190.483490,164.995880,143.417374,132.557861,127.483482,122.590912,94.095055,77.485138,90.815712,103.840500,77.534729,36.286800,15.238034,11.144648,6.543812,6.972741,8.196709,7.952079,3.850420,1.538019,0.733059,0.377687,0.414050,0.435538,0.400827,0.280992,0.493389,0.000000,0.000000,0.442975,0.000000,0.000000,0.000000 -601760.755000,4612565.550000,5093,4105,124.907463,179.907440,172.246292,163.957031,150.766953,137.618195,135.626450,132.593399,132.758698,135.576859,135.023148,145.841324,163.386780,181.378525,191.444641,202.155380,200.295868,190.006622,164.816528,144.254547,133.312408,128.006622,121.345467,93.576874,76.593414,91.576874,104.593407,77.568619,38.279362,15.805802,11.031425,7.292573,9.054563,7.986791,9.211584,3.942984,0.701655,0.158678,1.309093,0.009918,0.350416,0.000000,0.001653,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601763.555000,4612565.550000,5107,4105,120.241341,174.737198,168.481018,159.778519,145.390106,136.051254,133.638031,131.547119,131.241333,134.852905,134.109100,143.679352,161.737198,179.117371,190.753738,200.828125,199.538864,189.761993,165.175217,141.687607,130.026459,126.580177,120.836372,93.249596,74.720673,90.109108,104.555382,75.795052,35.447956,13.796713,10.985143,5.252903,6.220676,5.903318,6.275218,1.940501,0.357026,0.059504,0.056199,0.133885,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612565.550000,5123,4105,120.278534,176.702484,173.595047,162.669418,150.016525,135.371918,133.314072,131.355392,131.735550,134.809937,134.256210,145.024796,162.495865,178.859497,192.289261,200.785126,199.380173,189.371902,164.190079,142.363632,130.958694,127.165306,121.181831,93.669449,75.586800,91.157051,103.181839,75.330605,35.520687,14.628943,11.016549,6.625632,7.461171,7.282658,8.646295,3.196701,1.134714,0.334712,0.000000,0.000827,0.025620,0.000000,0.000000,0.000000,1.325620,0.000000,0.000000,1.167769,7.571901,0.000000 -601769.555000,4612565.550000,5137,4105,127.478531,176.590103,168.631424,161.664490,147.904144,137.085968,134.821503,133.325638,131.342163,134.995056,133.895889,144.557037,161.218201,179.127289,192.532257,200.069443,201.300842,187.846298,165.119034,143.375229,131.862823,128.119034,122.672745,95.085968,76.127289,91.342171,103.664482,76.532249,37.978531,15.955391,11.152085,5.702489,8.812411,8.124805,7.114062,3.906619,0.662812,0.825621,0.246281,0.006612,0.161984,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.555000,4612565.550000,5157,4105,117.460358,172.974396,174.784317,165.147949,152.610764,137.453735,134.990921,134.404144,131.776047,135.809113,135.776047,144.999191,163.205811,179.676880,191.445480,201.875214,201.338043,189.990921,165.817368,144.197540,131.635559,128.528122,123.263649,95.362831,76.685143,92.131424,103.924812,77.181007,35.924812,15.503325,11.205805,5.016540,7.466130,9.078526,7.592574,3.737198,0.726448,0.278513,0.401654,0.004959,0.012397,0.000000,0.191736,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.955000,4612565.550000,5174,4105,113.677704,175.544632,171.610748,163.585968,147.420685,136.486816,133.891754,133.164490,132.643814,136.057068,135.850433,145.883484,163.751236,180.528107,192.577682,203.023972,201.329758,190.147934,165.949585,144.214066,132.023987,127.412415,122.081841,93.668617,76.817375,91.412415,103.792580,77.858696,37.255390,13.649605,11.098367,6.428110,7.157865,6.417369,7.161996,2.463642,0.405787,0.055372,0.052066,0.078513,0.011571,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.755000,4612565.550000,5193,4105,122.329773,176.668594,168.585968,164.139694,149.090103,135.536377,133.147949,131.032242,129.585144,132.221497,131.998367,142.866119,158.204971,176.858704,188.825623,198.247116,198.032242,187.015701,162.949600,140.536377,128.734726,125.139679,120.809105,91.577705,74.709938,90.974388,102.825630,76.247124,36.379364,12.982662,10.982664,5.447943,6.956212,5.830590,7.171913,2.391742,0.420662,0.209092,0.191736,0.011570,0.019009,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.955000,4612565.550000,5209,4105,127.138031,175.871902,170.615707,162.045471,149.276855,136.152908,136.152908,131.830597,131.971085,136.227295,135.392578,146.359497,162.995880,180.351242,192.805771,201.764450,201.119812,190.351227,164.508286,143.739670,132.070267,128.227295,121.045471,94.045471,77.706635,92.053741,103.954559,77.929779,34.177708,14.152083,11.004151,6.242159,7.393401,7.288441,8.120674,4.116537,1.000004,0.046281,0.292563,0.264463,0.257025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.208265,0.000000 -601786.555000,4612565.550000,5222,4105,120.734734,174.214066,175.280182,164.090103,147.420670,136.280182,135.404144,133.164490,132.164490,133.776047,133.263657,144.478516,161.718185,178.949600,189.552917,199.338043,198.858704,186.098373,161.395874,140.247131,128.635559,126.023987,120.445473,91.825645,75.842171,89.751266,102.114906,75.709938,35.569443,15.347126,10.949605,7.300013,7.744641,8.132244,8.963651,4.255380,0.689258,0.069422,0.205786,0.159504,0.000000,0.000000,0.084298,0.293389,0.000000,1.251240,1.170248,0.000000,0.000000,0.000000 -601789.755000,4612565.550000,5238,4105,104.403320,177.353729,172.791763,159.089279,144.890930,133.006622,132.213242,129.320679,127.915718,128.742157,129.667786,139.535553,158.081009,173.510773,184.874390,195.419846,193.494217,181.890915,156.510773,135.709106,125.477699,122.502495,115.890923,88.477699,72.279350,85.609932,98.304146,70.998360,32.750435,13.902496,10.535557,7.402492,8.047945,6.539681,6.696708,3.242156,0.477687,0.380166,0.062810,0.000000,0.285951,0.000000,0.000000,0.000000,0.933058,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.155000,4612565.550000,5260,4105,129.682648,175.128937,173.781830,161.649597,147.087616,133.244629,134.054550,129.690918,129.352066,130.434723,130.682648,141.905792,159.748779,175.583481,187.252899,197.591751,195.798355,183.385132,158.955383,137.856216,126.426460,124.294228,118.236366,90.500839,73.038040,88.335556,99.938858,73.062828,34.426464,13.101671,10.748779,7.585965,6.507451,9.204973,7.077699,3.571083,0.621490,0.394216,0.076033,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,1.046281,0.000000,0.000000,0.000000,0.000000 -601797.155000,4612565.550000,5275,4105,108.711594,180.400024,177.234726,161.176880,143.492569,130.285950,129.033066,123.897522,122.856201,125.476036,124.550415,136.390091,154.828125,173.117371,187.026459,199.009949,201.150436,190.406616,168.257874,149.745468,138.447937,135.803314,129.290924,100.817368,84.040512,94.902496,107.315712,79.638031,37.205799,17.465305,11.753738,7.819848,7.804972,10.240509,11.053733,5.780175,1.707440,1.534713,1.139671,0.900001,1.128100,0.450414,0.309918,0.203307,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.755000,4612565.550000,5288,4105,138.028946,181.020660,178.549606,164.376053,149.301666,138.706635,136.318192,133.285126,132.095047,134.103317,133.318192,144.847122,162.739685,178.822327,190.756210,199.384308,198.739685,185.433899,160.772751,141.351257,128.855377,127.524803,119.863647,92.830597,76.111588,89.309929,102.268608,74.615715,36.053738,15.749605,10.896713,10.295056,7.274393,8.738030,9.133072,5.758687,0.982647,0.290910,0.400827,0.000000,0.131405,0.000000,0.036364,0.050413,0.000000,0.000000,0.000000,1.641323,0.000000,0.000000 -601802.955000,4612565.550000,5304,4105,118.800026,184.188446,176.345474,166.089279,149.733902,138.081009,135.568604,134.064484,132.304153,133.750443,132.262833,144.576889,162.411591,178.047958,189.791763,199.899200,197.403336,184.932251,161.147125,140.510773,129.436386,125.973579,119.709114,91.428123,75.097542,89.204979,100.411591,74.800026,34.775227,15.590926,10.882664,10.611587,8.407452,10.054561,9.603321,2.937196,0.447109,0.357852,0.000000,0.000000,0.146281,0.000000,0.000000,0.207439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.355000,4612565.550000,5321,4105,104.433899,181.490921,176.406616,165.423157,148.828125,136.109116,136.142151,132.927277,132.885956,133.563644,133.795044,144.778534,161.968597,178.514053,190.919022,200.571915,198.538849,185.580170,161.638031,140.150436,130.604965,126.952072,121.563644,92.381836,76.001663,90.406631,101.902489,75.348785,34.921509,16.099192,11.051258,11.433901,8.988443,11.061997,9.886789,4.534719,2.352896,1.589257,1.713224,1.900827,1.173554,0.879339,0.053719,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.555000,4612565.550000,5342,4105,139.810776,187.372726,177.257019,166.645462,148.893402,135.769440,135.083481,133.356216,133.009109,134.951248,132.637207,145.025635,162.521500,177.612396,190.314880,200.009094,198.050415,184.703308,160.174393,139.075226,127.967781,125.215714,118.554558,90.290100,73.901672,87.595886,100.364487,73.207458,34.166134,13.812414,10.777706,9.816545,7.761171,8.022327,8.295055,3.618190,0.430580,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.755000,4612565.550000,5358,4105,129.026459,181.222321,173.825623,160.486786,147.123154,135.202499,134.189270,130.990921,131.594223,133.470261,130.825638,142.371094,160.223984,175.678528,188.356216,198.860336,196.513229,183.339676,159.976044,140.785965,129.554550,127.513237,121.736374,92.989273,77.774399,90.033897,103.331421,75.695053,36.447128,15.338034,11.066961,9.685138,8.087617,8.185136,9.847121,2.981826,0.918184,0.176034,0.690910,0.190083,0.043802,0.000000,0.000000,0.234711,0.000000,0.000000,0.000000,0.000000,1.396694,0.000000 -601818.555000,4612565.550000,5382,4105,131.110748,188.119034,176.400024,164.127289,148.755386,134.408279,133.366959,130.499191,130.697525,132.325638,130.044632,142.474396,160.548782,177.358704,188.209930,199.193405,196.705811,182.590103,159.482666,138.937210,127.565300,124.730591,119.854553,89.804970,73.838028,87.978523,99.135551,73.309113,33.052914,13.976877,10.895886,10.921503,7.726460,7.989271,7.501667,4.463646,0.848762,0.244629,0.047934,0.114050,0.000000,0.000000,0.000000,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.755000,4612565.550000,5398,4105,127.151253,197.443817,179.675217,167.559525,149.518188,137.385956,135.724808,133.865311,133.228943,136.055374,133.600830,145.162827,161.022324,178.964478,190.121490,199.947937,198.261993,184.063644,159.757858,139.402496,127.840508,123.567780,119.063644,89.898376,73.914902,88.344650,99.171097,72.138039,33.286793,13.074398,10.823986,11.031421,6.485962,7.448774,7.816543,3.092569,0.158678,0.148761,0.106612,0.116529,0.000000,0.000000,0.007438,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.155000,4612565.550000,5420,4105,149.652908,195.815720,179.361160,170.997528,151.567780,138.245483,138.121521,134.419037,133.559525,138.104980,133.708298,145.080170,161.278519,179.146286,191.700012,202.468597,199.146286,183.154556,161.146286,140.716537,130.154572,126.468620,120.790932,92.138039,75.931427,90.815727,100.923164,73.675232,36.055389,14.134728,10.981010,10.895881,7.683483,10.912411,9.357865,4.724804,1.595045,1.204961,0.491736,0.449588,0.000000,0.033058,0.036364,0.085951,0.000000,0.000000,0.000000,0.000000,3.916529,0.000000 -601832.555000,4612565.550000,5452,4105,142.522324,197.160355,175.689255,167.325623,149.011566,135.424789,133.970261,130.978531,130.449600,135.317368,130.606628,142.986786,160.044632,176.995041,189.738846,200.185150,198.209930,182.226456,161.507446,139.697525,129.317368,126.110756,121.127281,92.515717,76.358696,90.763649,101.350426,73.333900,34.681011,14.492578,11.011589,12.500016,7.665302,10.252907,8.299187,5.128935,1.031407,0.676861,0.438844,0.228100,0.059504,0.416529,0.057851,0.257025,0.000000,1.462810,0.000000,2.150414,0.000000,0.000000 -601843.155000,4612565.550000,5505,4105,157.838852,193.665298,179.334732,172.657043,153.954559,138.268616,136.706635,135.433899,135.194229,139.524811,134.623978,146.177704,162.351257,178.318192,193.276871,202.706635,199.888443,183.723160,162.904968,141.475220,130.086792,126.954559,121.590927,91.987617,76.855392,91.615715,101.367783,72.392578,34.285145,15.057044,11.053739,12.776051,7.343817,9.481008,8.950427,3.506619,0.666118,0.129753,0.141323,0.121488,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.155000,4612565.550000,5585,4105,117.557045,166.325638,171.755386,159.887619,145.928940,135.813248,133.251266,131.366959,130.003326,132.689270,132.218201,143.333908,162.077698,177.730591,189.581833,199.548782,198.928940,186.565308,162.160355,140.738861,129.945465,126.350426,120.490921,93.069435,76.052910,91.350426,102.317368,75.251259,36.697540,15.202497,10.953738,7.990095,7.676873,7.787616,8.059516,3.132238,0.387604,0.369422,0.166943,0.000000,0.058678,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.755000,4612565.550000,5708,4105,121.054558,170.752060,172.512390,161.206604,146.851242,138.462830,134.900848,132.586792,131.842987,133.900848,135.603317,144.958694,163.991730,179.917358,192.206604,201.090912,201.049591,188.669418,164.289261,142.694229,131.504150,127.206627,122.181831,94.000015,77.008278,91.842995,103.636383,76.553734,35.876049,13.695058,11.107456,5.152075,8.477701,8.057866,9.518195,3.995049,0.316530,0.545456,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,1.354545,0.000000,0.993389,0.000000,0.000000,0.000000 -601921.755000,4612565.550000,5898,4105,124.390099,173.646301,167.406631,161.299194,147.497543,136.274399,133.819855,132.390091,131.894226,135.166962,135.290924,146.266144,163.522339,179.704163,193.993408,202.158707,201.852921,190.505814,166.100845,143.902512,131.712402,128.208267,121.472740,94.580185,77.117371,92.390099,105.431419,78.224808,36.373573,14.213242,11.042995,5.516539,8.529768,7.481833,5.825632,2.922321,0.552894,0.270249,0.057851,0.131405,0.009091,0.000000,0.018182,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.355000,4612565.550000,5986,4105,125.038864,181.237198,175.468582,164.179352,150.890076,137.352890,134.675217,133.435547,132.923157,135.790924,135.749603,147.501648,164.468597,181.766129,194.782654,204.080185,203.584305,192.716537,167.840500,146.055359,133.873566,129.179337,124.154556,94.939682,77.675224,91.220673,103.220665,78.476875,35.981014,13.955392,11.286797,5.276043,6.416545,5.709106,7.169434,2.117362,0.366943,0.315703,0.000000,0.000000,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.955000,4612565.550000,6029,4105,126.562004,187.223145,177.710754,167.388443,153.132248,139.289276,138.834732,137.338852,136.024811,139.578522,138.710754,149.793411,167.355392,184.380188,196.876053,206.743820,206.239685,195.338852,171.495880,148.859528,135.975220,132.082672,127.090927,98.371925,79.330605,95.752090,108.066139,80.338867,37.619854,15.619854,11.553739,5.196704,8.185140,6.860343,7.185136,3.384305,0.908266,0.123141,0.142149,0.000000,0.080992,0.000000,0.076860,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601952.755000,4612565.550000,6053,4105,111.738037,181.936371,180.085129,166.250427,149.514877,138.440506,137.663635,134.919861,134.308289,134.886795,135.647125,147.266953,166.622314,182.415710,195.258682,205.729752,206.283478,192.324799,168.564468,145.440506,136.085144,131.961182,126.845474,97.142998,81.027298,96.324814,107.357872,80.085144,40.060349,18.012417,11.531424,12.507454,10.172743,10.557040,10.700015,4.914885,0.764465,0.189257,0.418183,0.000000,0.061157,0.000000,0.004132,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.355000,4612565.550000,6071,4105,104.428940,179.338043,176.652084,164.048782,145.676880,134.866959,135.147949,131.387619,130.131409,131.585968,132.891754,146.057037,163.908279,180.321503,193.362823,203.767792,203.966141,188.825638,165.015717,144.288452,131.842163,128.123154,123.809105,93.809105,78.164482,93.057037,106.809105,76.346298,37.230598,16.238863,11.255391,8.934723,10.160345,9.806627,10.048774,3.311579,0.577688,0.846283,0.612398,0.000000,0.112397,0.075207,0.155372,0.136364,0.000000,0.000000,0.994215,0.000000,0.000000,0.000000 -601960.555000,4612565.550000,6092,4105,113.702484,180.239685,177.281021,163.181839,147.247940,135.165298,134.685959,130.413239,130.991745,131.743805,131.438019,144.281006,162.090927,179.140533,191.272766,201.843002,202.917389,187.834747,164.347122,141.148788,130.157028,127.991745,122.909096,93.570259,77.016548,92.842987,105.586784,76.917374,36.115719,14.166961,11.173573,9.928939,8.019022,8.334723,8.365303,3.545462,0.571902,0.198348,0.379340,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.355000,4612565.550000,6111,4105,104.858696,179.858658,179.866928,165.685104,147.371063,136.635544,137.759506,133.321503,132.280182,133.528122,134.379364,145.536362,165.040482,182.057007,193.255356,203.172714,205.486771,190.412384,166.090073,143.106613,132.594238,131.057037,125.172745,95.486794,81.098366,93.536385,107.379356,76.164482,38.784317,15.514069,11.379358,9.815717,9.922329,9.095057,11.619024,4.031414,0.552895,0.707440,1.231407,0.061984,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.955000,4612565.550000,6129,4105,116.496712,179.711563,181.273544,165.331406,149.571091,135.901672,137.728119,133.298355,133.133072,133.595886,133.579346,146.083481,164.620651,180.752884,193.083466,205.009094,204.042145,190.025620,165.273544,143.794235,132.405792,129.455383,124.918198,95.752907,78.628937,92.323151,104.347946,75.868607,38.819031,15.712415,11.356217,12.794231,8.494231,9.982661,9.228114,5.326456,1.085953,0.143802,0.461158,0.000000,0.000000,0.209918,0.000000,0.082645,0.000000,0.000000,0.000000,1.055372,0.000000,0.000000 -601974.355000,4612565.550000,6161,4105,116.585968,184.538040,179.050446,164.918213,147.538040,134.381027,135.100021,131.504974,130.785965,133.298355,132.182663,144.794250,162.728134,179.257050,191.579346,203.885132,202.711578,187.223984,164.703339,141.976059,130.918198,127.992577,124.100014,94.314888,78.133080,93.761169,104.554558,76.100021,36.785969,14.203322,11.281837,7.617369,7.263650,7.623155,8.894230,6.048769,0.700828,0.275208,0.185125,0.045455,0.000000,0.000000,0.074381,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.355000,4612565.550000,6176,4105,111.715714,188.079346,177.228119,166.509109,149.881012,137.195053,138.178528,134.252899,132.930588,134.996704,134.418198,145.823151,164.128937,182.261169,194.285965,205.500839,204.938858,190.285965,166.674393,143.385132,134.236374,130.294235,125.327286,96.161987,81.277702,95.046295,107.054558,77.327286,37.732254,15.226464,11.393408,10.690099,10.032247,8.486792,10.344643,5.549596,1.242978,0.442977,0.000000,0.000000,0.000000,0.000000,0.188430,0.133884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.955000,4612565.550000,6194,4105,111.397545,186.091751,179.827286,166.215714,148.810760,135.207458,134.992584,132.124817,132.298370,134.554565,133.100021,144.430588,163.331421,181.116547,194.265305,204.141342,204.496704,189.587616,165.604141,144.331421,132.984314,130.438858,125.645477,96.455391,80.017380,95.637215,106.595886,78.207458,37.058701,14.276052,11.422334,12.216546,7.676046,9.976874,11.340511,4.757862,1.051242,0.557853,0.459505,0.113223,0.000000,0.005785,0.116530,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.755000,4612565.550000,6208,4105,117.339691,178.711578,176.141342,163.488449,147.901672,134.141342,132.951263,130.662003,128.959518,132.620682,131.223984,142.017380,158.480179,175.637207,187.637207,198.405792,197.893402,184.653732,161.240509,140.025650,129.372742,126.686798,120.281837,94.033905,77.868614,91.827293,102.595886,75.422333,35.885139,15.224812,10.934730,7.524806,6.276874,9.443815,7.726460,3.657031,0.437192,0.250415,0.351241,0.000000,0.129752,0.258678,0.266943,0.000000,0.000000,2.362810,0.000000,0.000000,0.000000,0.000000 -601987.755000,4612565.550000,6228,4105,115.137199,177.641342,174.013229,163.104141,150.335556,137.509109,134.533890,131.872742,131.013229,133.261169,132.120667,142.269440,158.277695,174.947113,186.054565,196.699188,194.872742,184.476044,161.368607,140.203323,130.418198,124.707451,122.145470,93.980179,79.608276,92.302490,104.062820,76.029770,36.509113,15.674397,11.104151,8.447121,10.728116,9.648773,10.004147,3.889262,1.247109,0.110745,0.000000,0.000000,0.067769,0.010744,0.023967,0.000000,10.330580,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.155000,4612565.550000,6250,4105,97.790100,168.244659,171.533920,161.269455,145.674393,133.963654,132.914078,128.831421,127.955391,130.781845,130.162003,139.864471,156.104141,171.228134,184.748779,193.112411,192.872742,181.095886,158.525650,136.566956,126.575226,123.112419,118.600021,91.872749,75.104156,90.707458,101.467789,73.335564,34.442997,13.438860,10.781837,4.915713,8.118196,6.752903,5.334721,3.003310,0.216529,0.000000,0.098347,0.411571,0.000000,0.000000,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.555000,4612565.550000,6282,4105,96.298363,171.843811,172.133072,160.976044,146.827286,134.719849,133.678528,130.290100,129.414062,131.785965,131.339676,141.033890,158.331421,173.372742,185.711578,197.033890,194.281830,182.496704,160.769440,139.290100,127.405800,124.447121,120.554558,92.785965,76.595879,91.819023,101.951256,74.810760,37.257042,13.956216,10.959523,6.946292,8.138857,6.616539,9.590097,2.221491,0.507440,0.125621,0.435538,0.110744,0.011570,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.755000,4612565.550000,6323,4105,108.013245,161.740509,168.484299,159.988449,144.715714,133.252914,130.319031,127.690933,127.442993,129.591751,129.732254,139.013229,155.236374,171.038010,183.153717,192.674393,193.343811,181.277679,157.947113,136.608276,127.046295,124.732246,119.236374,92.476044,77.112411,91.823151,101.211586,74.980179,35.533905,14.775224,10.839689,6.219846,7.755387,7.966954,8.599188,2.376036,0.794216,0.143802,0.427274,0.052893,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.155000,4612565.550000,6365,4105,103.304153,159.642975,164.361984,157.031418,143.651260,132.485962,128.684326,126.287628,125.114075,127.155396,127.469444,137.072754,153.312408,169.634720,181.535538,191.585129,191.733887,180.287613,155.519012,136.031418,125.056221,120.841347,116.254570,89.973579,74.510765,88.634727,100.700851,76.312416,34.014896,13.125637,10.568615,5.747118,6.488445,6.327285,6.428111,2.630582,0.752895,0.115703,0.354546,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602019.955000,4612565.550000,6389,4105,104.557877,160.886780,166.349594,157.721497,144.085144,134.374390,129.977707,127.812408,127.581009,127.746292,129.531418,138.415726,154.547943,170.994232,182.771088,193.085129,192.076859,181.481827,158.076859,137.630600,125.531418,122.614067,116.936378,91.308281,76.151260,90.895058,100.828941,74.192581,34.886795,12.514067,10.630598,5.422324,8.056214,6.776043,6.575220,2.608268,0.580167,0.256199,0.100827,0.142976,0.000000,0.221488,0.000000,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602023.155000,4612565.550000,6405,4105,111.065308,160.619034,165.875229,159.263657,145.346298,133.933075,130.742996,128.445480,127.288452,129.197540,130.131424,139.346313,155.643814,171.354568,183.156219,194.445480,193.247131,180.313248,158.585968,137.214081,126.106628,123.197540,117.536385,92.569443,76.974396,91.528122,100.933075,74.073570,35.280190,13.704976,10.685144,6.628937,7.871090,9.419021,7.409930,3.647938,0.366117,0.251241,0.309092,0.301654,0.006612,0.069422,0.242975,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602027.955000,4612565.550000,6429,4105,95.466965,162.466965,165.210754,159.665298,145.582657,136.111588,133.053741,130.070267,128.210754,130.351257,132.012405,140.004150,156.673569,172.557861,184.268616,193.359528,195.500015,182.227295,159.615723,138.805801,127.012413,124.128113,118.863655,93.285141,77.376060,93.838860,100.152908,75.227295,37.450432,14.728117,10.805804,6.346292,8.850429,8.681829,8.301667,3.028105,1.052069,0.187604,0.152893,0.237191,0.000000,0.000000,0.133885,0.551240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602032.955000,4612565.550000,6454,4105,102.734734,153.900024,167.395889,158.519852,143.040512,132.114899,131.131424,127.974396,127.371094,128.726471,130.032257,140.230591,155.817368,172.462006,183.800842,192.759521,193.420685,181.428940,158.528122,137.288452,126.668617,123.428947,118.354568,93.147957,77.453735,91.156219,100.247124,73.767792,34.577702,14.101670,10.759523,4.866953,7.934727,7.630591,8.559520,2.887608,0.701656,0.199175,0.278513,0.149587,0.013224,0.306612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.355000,4612565.550000,6486,4105,99.627289,155.941345,164.511566,156.478531,142.726456,133.106628,130.742981,127.982651,127.321487,127.445457,128.718185,138.966141,154.966141,170.891739,182.032257,193.652069,193.247116,181.751236,157.478531,136.329773,126.619011,123.412399,118.990929,91.181007,76.321510,91.057045,101.271904,74.577705,35.453743,14.066958,10.817375,6.230589,7.628940,9.811583,7.194229,3.457030,0.952069,0.180167,0.111571,0.001653,0.136364,0.296695,0.000000,0.000000,2.330579,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.155000,4612565.550000,6505,4105,108.584320,159.146286,166.047119,156.832245,143.906616,132.675217,130.617371,125.989265,126.617363,126.989265,128.286789,137.815720,154.551254,170.212402,182.071915,192.914902,192.576065,181.154556,157.088440,136.212402,126.435547,123.129761,117.700020,91.295067,75.584320,89.807465,98.774406,71.658707,36.071922,14.871918,10.700019,5.759515,8.517369,9.547122,8.147121,1.956203,0.326448,0.052894,0.000000,0.000000,0.001653,0.142149,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.555000,4612565.550000,6537,4105,85.676880,155.164490,167.544647,157.362823,144.561172,132.966125,130.156219,127.792580,126.759521,128.238861,129.395889,138.875229,155.561172,171.734726,182.742996,194.065308,192.883484,180.453735,157.395889,136.023987,126.842171,122.941345,119.445473,90.602501,76.891754,90.966133,99.420677,73.098366,35.362835,12.867785,10.858696,5.018192,8.419024,8.102491,6.852905,3.529758,0.191736,0.000000,0.000000,0.095042,0.002479,0.000000,0.000000,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602056.155000,4612565.550000,6570,4105,94.421501,157.049591,170.214890,157.677689,143.314056,134.933899,129.661179,127.785141,127.057869,127.743820,128.925629,138.099167,155.380188,170.752075,183.181839,193.297531,193.363647,181.950424,157.520676,137.413223,126.380180,123.355385,118.636383,92.504150,76.859520,90.289276,101.661171,73.966965,34.165314,14.362827,10.785142,5.632242,8.671090,7.521499,6.226459,2.914054,1.064465,0.737192,0.295868,0.073554,0.002479,0.071901,0.434711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.555000,4612565.550000,6607,4105,94.002510,156.217377,167.498367,158.250443,142.605804,133.242172,130.217377,127.407463,126.985970,127.233910,129.473572,139.547958,155.746307,171.481842,183.878540,193.498367,192.820679,180.382660,158.242172,136.952911,127.771095,123.680191,118.118202,92.895065,77.134735,91.490105,100.465309,73.440521,34.754562,13.390100,10.738036,6.518194,7.982660,7.974393,8.273566,1.773557,0.300001,0.028100,0.229753,0.000000,0.000000,0.611571,0.000000,0.000000,2.285124,0.000000,0.000000,0.000000,0.000000,0.000000 -602068.555000,4612565.550000,6632,4105,80.204971,156.261993,164.600815,156.352890,144.534714,134.670273,132.794235,128.711594,128.885147,128.265305,129.405807,140.257034,156.567764,171.699997,184.022308,194.311569,194.047104,181.848755,158.311569,138.100006,128.058701,124.918205,121.100021,93.529770,77.785973,93.190933,101.790924,73.956215,36.799191,15.404150,11.009109,7.849598,9.659519,8.876873,9.187616,2.815708,1.047110,0.384299,0.266943,0.060331,0.000000,0.000000,1.119836,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.755000,4612565.550000,6668,4105,90.600845,155.741348,165.609116,158.179367,144.501678,133.642166,131.526459,128.964478,128.501663,128.245468,129.245468,140.402512,157.311600,171.782669,183.220673,193.253708,194.055359,181.790939,158.617386,138.022339,127.427292,124.592583,118.427292,92.526466,76.931419,92.691750,101.724808,73.840515,35.534729,13.462001,10.766134,7.104971,9.046296,6.983483,7.082657,2.604963,0.424794,0.183472,0.252067,0.138843,0.000000,0.000000,0.198347,0.554546,0.000000,2.041322,0.000000,0.000000,0.000000,0.000000 -602079.755000,4612565.550000,6688,4105,94.446297,152.057877,169.206650,158.404984,143.198380,134.140518,131.851257,129.066132,128.000015,128.760345,130.413239,141.090942,156.743835,171.619873,184.322342,194.157059,194.504166,181.198380,158.504166,138.289291,128.942169,124.363655,119.272743,93.082664,76.958694,91.702492,100.925636,74.421501,34.983486,13.249604,10.842996,7.260343,7.069437,7.895882,6.831417,3.839675,1.081820,0.152893,0.000000,0.247108,0.119008,0.141323,0.135537,0.131405,0.000000,0.000000,1.895041,0.000000,0.000000,0.000000 -602085.755000,4612565.550000,6718,4105,92.490105,155.539673,168.399185,158.432236,143.985977,136.118210,133.060349,129.258698,129.043823,129.423981,130.324814,140.655380,157.200836,172.266953,184.085129,194.399185,195.060333,182.283478,159.597534,138.779358,129.473572,125.192574,120.936378,94.531425,79.027290,94.126472,103.539680,74.093414,36.490105,15.728116,10.994233,7.903318,8.714065,8.622328,8.270261,4.269427,0.586780,0.298349,0.110744,0.035537,0.221488,0.000000,0.419835,0.000000,2.086777,0.000000,0.000000,0.000000,0.000000,0.000000 -602091.155000,4612565.550000,6745,4105,103.569450,158.602493,167.900024,161.114899,145.900024,135.387619,133.313248,130.908279,129.404144,129.693405,130.776047,142.255386,157.718201,173.090103,184.354553,195.296692,195.478516,184.462006,159.957870,139.354568,130.156219,126.577705,120.718201,95.313248,79.842171,93.048790,103.098366,74.544647,37.734730,14.798365,10.974400,7.105797,9.924809,10.152906,8.471913,4.607446,1.306613,0.507440,0.226447,0.135538,0.001653,0.354546,0.767769,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602098.955000,4612565.550000,6784,4105,84.536385,160.204987,170.742172,158.254562,145.271103,133.593399,130.006622,129.006622,127.031418,127.461174,129.122330,140.262833,156.287628,172.064484,183.932236,194.221497,194.849594,181.866135,158.204987,138.196716,128.651260,125.395058,119.981834,93.494232,78.081017,91.742165,102.593407,72.634727,35.395061,13.407456,10.907457,6.522325,9.028941,8.514889,8.360344,3.951247,0.519836,0.274381,0.388430,0.223141,0.013223,0.329753,0.437191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602104.155000,4612565.550000,6810,4105,93.886795,168.473572,173.366135,160.465317,147.209106,135.771103,135.357864,130.382660,128.118195,129.399185,131.209106,141.002487,156.845474,174.176056,184.919861,195.134735,195.762833,183.060349,159.068619,139.118195,128.944641,126.432243,119.572739,93.729767,80.019020,92.465302,102.523155,74.605797,36.886795,15.537209,10.870268,6.618193,7.984312,7.349599,9.529769,4.819016,0.311572,0.078513,0.059504,0.173555,0.137190,0.205786,0.000000,0.736364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602107.355000,4612565.550000,6826,4105,105.269440,167.616562,170.666138,159.765320,145.699188,131.988449,132.542175,128.335556,128.145477,129.294235,129.087631,139.500839,156.955399,173.013245,183.872757,194.624817,194.335571,183.657883,160.500854,140.170258,128.517380,124.682663,120.600021,92.633080,78.641342,92.996712,103.162003,76.798370,37.128937,16.300846,10.963655,8.252907,8.538033,9.004147,8.919848,4.958686,0.473556,0.457853,0.465290,0.417356,0.004959,0.143802,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602112.555000,4612565.550000,6852,4105,92.979362,159.797546,169.896729,160.822342,142.458710,132.797546,130.814072,128.756226,126.731430,128.020691,128.309937,139.343002,155.376068,171.020691,182.103333,192.433914,193.772766,180.276886,157.714905,138.359543,127.136391,124.731430,119.863663,91.995895,77.210770,92.574402,101.880188,75.301674,37.028946,14.670266,10.896713,7.318194,7.467783,9.209105,8.860346,2.868601,0.254547,0.247936,0.074380,0.155372,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.555000,4612565.550000,6877,4105,104.975220,164.371918,168.859528,160.958694,144.809937,132.801666,132.834732,129.057861,126.347122,128.611588,128.272751,138.396713,156.776871,172.148773,182.652908,195.537201,193.528946,181.066132,159.214890,138.388443,127.884315,125.950432,118.181831,93.314064,76.016556,92.206627,104.851257,75.363663,34.884319,15.571919,10.743821,7.416543,10.238032,8.980178,7.919847,3.956205,0.723968,0.132232,0.528927,0.024794,0.000000,0.123967,0.444628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602120.355000,4612565.550000,6891,4105,108.885132,163.719025,168.561996,159.223160,144.586792,133.281006,131.694229,127.190102,127.115715,126.859512,128.454559,139.033081,155.041336,171.743805,181.760330,192.768600,193.049591,180.388428,159.223160,137.842987,126.611580,122.578522,118.272736,91.586792,75.661171,89.578529,100.619850,74.049606,36.347126,13.404150,10.752087,7.656210,9.356215,9.892576,8.147121,3.675212,0.863638,0.786778,0.330579,0.115703,0.000000,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.155000,4612565.550000,6915,4105,100.176880,161.813232,169.441330,158.383469,142.705811,133.656219,131.143814,127.598366,126.639687,127.953735,128.267792,138.490921,155.763641,170.606628,182.788452,193.234726,193.119034,180.664490,157.490906,136.160355,126.945473,123.771919,117.854568,91.375229,76.515724,90.433075,102.061180,74.581841,33.077705,13.932250,10.714069,6.038027,7.395057,7.107450,7.795880,3.122319,0.512398,0.374381,0.267769,0.127273,0.105785,0.086777,0.403306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602135.555000,4612565.550000,6967,4105,102.220680,162.485153,169.385971,159.080185,145.956223,132.823990,131.675232,128.675232,127.501671,129.253738,127.576050,138.204163,155.154572,169.972748,183.063660,193.675232,194.022339,180.071930,156.708298,137.187622,125.947952,123.691750,118.972748,91.576050,76.328117,89.790924,101.005806,72.162827,33.328117,12.023983,10.815722,7.909929,7.923156,8.423981,6.479351,2.363640,0.104133,0.045455,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.755000,4612565.550000,6983,4105,102.145477,166.186768,166.021500,159.128952,144.145477,131.525635,131.434738,127.798370,126.583488,128.856216,127.707458,138.566971,154.781830,169.409927,182.302475,193.864456,193.385117,179.732224,157.798355,136.335556,127.765312,123.806633,118.509109,90.690933,76.633080,90.335556,100.492584,73.641342,33.823162,12.761175,10.773574,6.779350,7.052081,7.296708,8.102491,4.201660,0.959507,0.035538,0.369422,0.171075,0.000000,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.155000,4612565.550000,7015,4105,103.492577,170.087616,171.271088,166.023163,149.395050,137.527283,136.527298,132.841339,130.948776,133.667786,132.469437,143.750427,159.138855,174.709091,187.287613,199.378525,200.014877,185.634720,162.725647,142.006622,132.221497,129.750427,124.436386,96.031418,80.295891,94.238029,103.915710,73.642990,37.341339,17.160347,11.312415,9.536377,8.904147,10.561997,9.798360,4.595876,1.228928,0.378514,0.509092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602148.955000,4612565.550000,7034,4105,106.582664,175.764481,170.352905,160.129761,144.931412,133.600830,131.914886,129.873566,129.600830,132.047119,130.253723,141.352905,156.501663,174.047119,185.658691,197.187607,196.724808,181.906616,159.766129,138.138031,128.617371,125.245461,121.518188,94.566132,79.285141,91.832245,101.592583,74.220680,34.857048,14.019852,11.047126,8.778526,9.448776,8.751253,7.031418,4.090915,0.526448,0.104133,0.157025,0.089257,0.000000,0.422315,0.500000,0.000000,0.000000,0.000000,0.000000,1.722314,0.000000,0.000000 -602153.555000,4612565.550000,7057,4105,109.022339,174.650421,170.741333,163.691742,146.129761,133.055389,132.708298,131.476883,129.394241,133.840515,131.187622,142.014053,156.890091,174.278519,186.642151,199.716537,198.261993,183.162827,160.261993,141.402496,131.220688,127.848778,123.700027,95.972755,79.592590,94.088455,101.749611,74.080193,35.212414,14.193405,11.245473,8.902493,9.487618,9.853732,8.809931,3.477693,0.901655,0.010745,0.049587,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.355000,4612565.550000,7071,4105,113.652084,179.627289,170.048782,165.065308,147.114899,135.387619,132.792587,130.842163,129.974396,135.676880,132.635559,143.941345,159.280182,177.470261,189.726440,201.288422,200.503311,186.106613,164.263657,144.569443,133.040512,131.362823,125.536385,97.032249,82.007454,95.833900,104.230598,74.304977,35.933079,13.998364,11.412416,10.353732,7.783485,9.279353,8.677700,4.494222,0.443803,0.040497,0.269422,0.125620,0.000000,0.000000,0.000000,0.669422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602160.755000,4612565.550000,7093,4105,116.639687,172.953720,172.838013,165.300827,145.614883,134.325638,133.606628,130.672745,130.904144,135.631424,133.061172,144.300827,160.391739,177.714050,190.631409,202.854553,202.416534,187.011566,165.267776,145.953720,135.350433,131.771927,127.400017,98.978531,83.242996,97.747124,105.656219,75.771919,36.326466,14.189273,11.581837,10.511584,8.605800,10.075220,8.985963,4.413230,1.369424,0.401654,0.083471,0.076033,0.014876,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602167.955000,4612565.550000,7129,4105,122.920677,173.309937,170.995880,166.061996,150.764481,137.136383,135.285141,131.805801,132.714890,136.838852,133.301666,146.086792,161.318192,179.268616,191.590927,203.946304,203.095062,189.590927,168.161179,147.665298,136.954559,134.070267,130.500015,100.301666,84.533073,100.384315,108.500015,78.028938,37.450432,16.772745,11.863655,9.655384,9.110758,10.362000,8.113235,5.309927,0.836365,0.508266,0.290909,0.049587,0.095868,0.000000,0.476860,0.150413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602175.555000,4612565.550000,7167,4105,97.427292,158.427292,161.344650,156.476883,139.088455,128.642166,127.237206,125.228943,124.022331,126.947952,126.683487,137.857056,154.840515,170.972748,183.435562,196.187622,196.162842,184.542999,162.295074,141.551270,130.898361,128.584320,120.336380,94.468613,78.138031,93.906631,106.724808,78.195885,36.840515,13.385143,10.939688,5.571087,8.045468,6.626459,8.170261,3.557034,0.453720,0.266943,0.219009,0.031405,0.000000,0.000000,0.095041,0.508265,0.000000,0.000000,1.218182,0.000000,1.237190,0.000000 -602180.355000,4612565.550000,7191,4105,94.291748,151.795883,155.275223,149.151260,136.035553,125.754562,122.085136,119.134727,117.928116,120.473572,121.944641,132.035553,150.019028,165.746323,178.019028,190.985977,191.109940,180.704987,158.399216,137.738037,126.614067,122.605797,116.390923,88.688446,73.457039,90.490097,106.010757,77.804146,36.283489,13.009935,10.581012,6.185135,8.714063,7.320676,7.222326,3.126453,0.492564,0.178513,0.290909,0.220662,0.366116,0.000000,0.140496,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.555000,4612565.550000,7222,4105,102.347122,146.942154,153.677689,148.983475,131.909103,124.115715,122.057869,118.297539,117.008278,118.719025,119.421501,129.909103,147.553726,163.909088,175.776855,188.033051,189.016525,178.859497,156.355377,136.975220,125.685966,119.702492,113.727287,87.347122,72.809937,91.545471,104.619850,79.190102,37.041344,14.732248,10.338861,5.557036,8.682659,6.114888,8.552906,5.061992,0.464465,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.561157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.555000,4612565.550000,7262,4105,96.747940,148.896713,156.235550,145.607452,133.723160,124.541336,121.533073,119.243820,117.152908,119.144646,119.789276,130.632248,147.971085,164.227295,176.466980,187.921509,188.764481,178.904984,157.235550,136.409103,125.392578,120.111588,116.045471,87.549591,73.169441,91.342987,106.185959,80.285133,36.227291,14.785141,10.549605,6.828113,7.701665,9.404974,11.009104,3.506620,0.795044,0.684299,0.000000,0.214051,0.123967,0.004959,0.144628,0.584298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602201.955000,4612565.550000,7299,4105,93.166138,146.761169,156.075226,147.290100,132.893402,124.174400,121.273575,118.967789,117.075226,118.794235,120.248779,130.876877,148.554565,164.058685,176.066956,187.587616,187.860336,177.339676,155.546295,134.447128,125.529770,120.389275,114.281837,87.612419,72.240517,87.645477,104.290100,78.042168,35.166138,13.910762,10.389277,5.688441,7.961171,9.317369,7.323152,3.332239,0.309092,0.355373,0.049587,0.157025,0.114050,0.085951,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602210.355000,4612565.550000,7341,4105,93.514069,145.555359,155.026443,144.811569,131.522339,122.795059,119.522331,115.819855,114.299194,116.406631,117.547127,128.026459,146.266113,161.381805,173.629761,185.629761,187.001663,176.439682,153.828094,135.299194,124.166962,119.786797,113.381836,86.861176,71.282661,88.596710,103.869438,77.919029,34.819855,12.710762,10.307458,5.896707,8.719025,8.481833,8.623154,3.236372,0.936367,0.258679,0.065289,0.042149,0.000000,0.000000,0.140496,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,3.045455 -602222.155000,4612565.550000,7400,4105,94.326469,151.566147,155.805817,147.144638,134.144638,124.921501,120.516548,117.640511,116.838860,117.475220,118.276878,129.458694,146.004150,161.533096,173.458710,184.929779,184.293427,174.285156,152.929779,134.111588,125.243820,119.723160,114.409103,88.681831,73.814064,88.781006,103.086792,75.681831,35.417374,14.580182,10.400846,7.146292,9.840512,7.551253,8.338856,4.264472,1.141325,0.752068,0.000000,0.064463,0.047108,0.021488,0.215703,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602233.355000,4612565.550000,7456,4105,151.283478,158.415710,162.531418,149.878525,137.085129,124.795891,120.812416,117.514900,117.390930,117.605804,118.176056,129.217377,145.275208,159.357864,170.547943,180.605789,180.399185,171.349594,150.729752,133.779358,124.762833,122.076881,118.663658,93.572739,76.134727,92.696709,108.845474,81.771088,38.349609,15.649605,10.787621,10.576875,10.261171,11.822330,10.297535,6.567782,1.571906,0.441324,0.719010,0.271902,0.000000,0.082645,0.346282,0.494215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602260.755000,4612565.550000,7593,4105,221.556213,178.368622,153.641342,134.343811,118.922325,106.178528,102.004974,99.054558,98.773567,100.996704,101.426460,113.847946,133.219849,150.261169,164.409927,174.889267,176.054565,170.128937,152.806625,134.980179,127.046295,125.839684,127.054558,100.864479,78.269432,101.823151,138.170258,116.533897,58.963657,16.095886,11.550431,12.838858,15.501671,20.156218,28.699194,24.501673,4.781000,1.223970,0.660333,0.385125,0.368596,0.456199,2.123144,0.718182,20.934711,16.652895,12.767770,8.740497,7.342150,10.090909 -601300.355000,4612555.550000,2791,4155,62.646297,43.563648,17.328938,8.021495,2.566119,0.780993,0.376034,0.114050,0.006612,0.030579,0.000000,0.057026,0.912398,2.175209,3.761161,6.558684,7.553727,7.681827,7.605793,4.095047,1.870250,1.387606,1.590912,0.000000,0.000000,0.084298,33.271091,67.882660,39.626461,2.803313,0.144631,13.156214,13.075222,34.271091,52.081009,40.948776,2.639674,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.142977,0.785952,0.154546,0.000000,1.037192,8.209093 -601303.755000,4612555.550000,2808,4155,137.744629,121.951256,98.223976,85.620674,68.430588,54.422333,53.025639,48.100018,46.546299,45.992580,43.984314,53.298363,66.157875,78.050423,87.356209,97.199188,98.595879,97.595879,91.752907,78.372742,67.265312,66.207458,65.009117,36.147953,15.677701,37.769440,96.116539,102.298363,54.290100,8.559518,5.909937,16.004147,11.776875,24.775225,39.314892,28.169437,1.041324,0.128926,0.000000,0.137190,0.000000,0.000000,0.000000,0.066116,9.352895,7.047936,6.385127,7.759508,8.192564,10.004959 -601308.555000,4612555.550000,2832,4155,139.294235,146.280991,126.710762,115.694221,100.008278,88.272743,85.421509,81.727295,80.785149,82.272751,79.148781,90.247948,105.528938,118.528931,128.925629,141.107452,143.528946,137.057861,126.834724,111.487617,101.057869,99.371918,96.090927,66.644646,44.950436,67.991753,111.628105,99.388443,47.181843,10.966132,8.735557,11.780182,12.049603,15.874397,24.206629,14.072743,1.244631,0.204959,0.071902,0.000000,0.000000,0.000000,0.039670,0.823969,11.764464,3.244629,6.438844,4.895043,6.199174,11.583472 -601315.955000,4612555.550000,2869,4155,149.167786,167.995041,146.565292,133.441330,115.490929,103.945473,103.333900,100.193405,100.218201,102.697540,101.515724,112.681007,129.664490,145.904129,156.763641,167.581818,167.796692,156.201660,135.581818,116.168617,106.523987,104.499191,98.763657,69.168617,52.127289,66.780182,85.441345,64.251251,27.200846,9.420676,8.978532,13.754563,8.354559,10.552908,9.197534,3.832238,1.087606,0.328927,0.484299,0.195868,0.814051,0.000000,0.119008,0.352066,3.106612,3.744629,3.241323,3.103306,0.000000,5.454546 -601325.955000,4612555.550000,2919,4155,141.258682,173.265305,150.323151,140.959518,124.843811,110.653732,110.951256,108.290092,109.405800,114.000839,112.157867,123.777702,141.728119,160.744644,175.157867,189.364471,189.942993,175.951248,154.042160,132.075226,120.893402,118.579353,112.281830,81.298363,63.397541,77.017365,89.273567,64.496712,29.298368,11.230594,10.207457,13.519850,9.217368,10.165305,10.324808,8.381002,1.292566,0.777688,0.248761,0.368596,0.045455,0.281818,0.566116,0.632232,5.037190,2.051240,1.728099,4.278513,3.136364,3.895042 -601338.355000,4612555.550000,2981,4155,152.595886,179.235550,157.202499,144.681824,127.657043,113.351257,113.781006,111.004150,112.384315,120.095055,115.020676,126.004150,142.665283,162.706635,178.326462,191.268616,192.144638,176.904968,153.541336,132.706619,120.971092,119.491753,113.136383,81.516548,63.665310,79.227287,91.433899,63.962830,29.177706,11.695058,10.285142,17.762829,10.323981,9.408280,11.683486,7.200836,0.853723,0.053720,0.078513,0.101654,0.071901,0.000000,0.495868,0.000000,2.102479,1.013223,3.491736,1.671075,2.176033,1.966116 -601354.955000,4612555.550000,3064,4155,119.979355,148.481003,150.067780,139.679352,124.596710,115.795059,114.695885,112.142166,111.952087,113.472748,114.910759,126.836380,143.390091,159.786789,173.431427,184.365311,186.472748,176.133911,151.885956,130.208282,119.654564,116.795059,110.381836,83.092583,63.952087,78.910759,90.638031,65.679359,29.563656,11.904151,10.034731,8.722327,8.578527,9.450428,9.017370,3.485957,0.717357,0.426448,0.114877,0.092562,0.000000,0.052893,0.000000,0.000000,0.916529,0.000000,0.870248,0.000000,0.000000,0.000000 -601371.355000,4612555.550000,3146,4155,124.073563,149.891739,152.825623,142.271927,127.652084,118.329773,117.511589,115.338036,115.412415,116.470268,118.065308,128.561172,146.437195,161.759506,175.288437,187.569412,186.875198,177.470245,152.850418,132.040512,121.693405,117.891754,110.809113,84.181007,66.321510,79.420670,91.313232,67.172745,30.346302,13.352911,10.073573,9.230592,9.590924,9.156215,10.081834,4.342156,1.639673,0.228927,0.591736,0.623142,0.000000,0.000000,0.185951,0.000000,0.971901,0.000000,2.361984,0.000000,0.801653,0.000000 -601377.755000,4612555.550000,3178,4155,124.012405,154.484314,153.517365,142.236374,129.459518,118.856209,116.575218,114.533897,115.038033,116.798363,117.335548,129.021500,146.459518,163.228119,175.459518,186.790100,188.261169,177.781830,152.980179,133.550430,121.963646,117.814888,111.509102,83.707451,64.922333,79.517365,91.748772,65.608284,31.616549,12.904977,10.137209,6.602491,9.063650,9.352079,7.636376,4.387610,1.190913,0.465291,0.287604,0.010744,0.118182,0.093389,0.244628,0.000000,2.001653,1.057025,0.908265,1.565289,1.909918,0.000000 -601383.555000,4612555.550000,3207,4155,115.649597,151.923950,152.948746,142.601654,128.626450,119.461166,117.006615,115.039673,114.337196,116.923973,117.692566,128.337204,145.684311,161.659500,174.890900,185.742142,186.510727,176.271057,152.130569,131.229752,119.766945,116.155380,110.981827,83.444633,65.180183,79.031410,88.923973,67.535553,31.213242,11.468611,10.089273,6.276872,8.065304,8.362823,8.695881,2.948768,0.930581,0.418183,0.079340,0.014050,0.000000,0.000000,0.196695,0.407438,0.876860,0.863636,1.362810,0.000000,1.694215,6.932232 -601391.955000,4612555.550000,3249,4155,121.612411,158.856216,152.955383,144.905792,130.748779,120.963646,117.798363,114.980171,115.095871,117.500839,118.071091,128.178528,145.690918,162.376877,174.294235,185.252899,186.021500,176.195053,150.947113,129.583481,119.897537,116.897537,109.054558,81.814888,64.335556,77.558693,88.971916,66.021507,31.409937,11.833076,9.914068,8.106624,9.376046,8.331419,7.623980,2.674386,0.883473,0.499176,0.136364,0.174381,0.000000,0.355372,0.163637,0.000000,0.000000,0.928099,0.000000,1.517356,0.000000,0.000000 -601405.755000,4612555.550000,3318,4155,113.505806,152.999176,151.147934,141.594223,128.379349,118.908279,116.585960,114.114891,114.205795,115.619019,116.610756,126.883484,144.205795,160.007446,173.966125,183.660339,184.676865,173.734711,149.933060,129.412415,118.486786,114.428940,108.172745,82.205795,61.866962,77.313232,87.445465,65.552910,29.866962,12.371920,9.833903,7.535548,7.926459,6.185963,6.873566,2.666947,0.651242,0.219010,0.328100,0.452067,0.000000,0.000000,0.143802,0.000000,0.934711,1.985124,0.831405,1.732232,1.047934,0.000000 -601422.355000,4612555.550000,3401,4155,123.691750,164.938858,156.550430,148.442993,133.864471,122.674393,120.649597,118.608276,118.922325,120.550423,120.690926,131.294235,148.575226,164.765305,177.748764,188.352066,190.327271,178.905777,154.360336,132.401672,121.872742,117.492577,112.236374,83.732246,66.120682,80.889267,91.872742,67.864479,31.897539,13.399191,10.203326,6.394224,9.533072,8.778527,8.273565,3.585956,0.778515,0.474383,0.111571,0.007438,0.168596,0.085124,0.000000,0.000000,0.000000,0.000000,0.866116,0.000000,2.029752,2.101653 -601431.155000,4612555.550000,3445,4155,117.784317,183.635559,166.784317,157.519852,139.916550,125.288452,126.197540,123.040512,123.643822,128.957870,124.255394,135.098373,151.445480,170.040512,183.718201,194.453735,194.131424,179.552917,157.825638,136.833908,126.040512,123.362831,118.536385,87.561180,72.346298,86.635559,95.817375,68.222336,31.453739,11.888447,10.776052,10.583488,6.938855,7.115715,5.685962,3.531413,0.357026,0.100000,0.234711,0.119835,0.000000,0.000000,0.000000,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.755000,4612555.550000,3468,4155,138.623978,183.855377,167.392563,158.574387,141.417358,128.855392,128.458694,125.607452,126.111588,130.607452,127.194229,138.772720,155.574387,172.136368,186.491730,197.392563,196.095047,182.830582,160.433884,138.359497,128.053741,126.566132,120.500015,91.078529,75.582664,88.979355,97.673569,71.177704,33.053738,15.146298,10.954563,11.596711,8.904975,10.130594,11.461999,4.814886,0.571903,0.323968,0.265290,0.050413,0.000000,0.214876,0.000000,0.072728,0.000000,0.000000,1.057851,0.000000,0.000000,0.000000 -601440.755000,4612555.550000,3493,4155,137.603317,177.975220,167.851257,156.322327,140.363647,127.148773,127.801666,125.785141,125.330605,129.586792,126.900841,138.074402,154.157043,171.619858,184.842987,196.702499,195.735550,181.504150,159.338852,139.380188,128.578537,125.537216,120.090935,90.099197,74.429779,87.504158,97.677711,71.338867,34.272747,13.963655,10.917375,10.737204,8.374395,8.447123,9.684314,4.421498,0.647935,0.184298,0.221488,0.040496,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.155000,4612555.550000,3540,4155,114.748772,176.376862,165.657852,155.310745,140.823135,128.261169,127.517365,124.996704,123.624809,128.054565,125.500839,137.517349,154.872726,171.128922,185.203308,196.071075,196.492554,182.128922,158.980164,138.120651,128.128937,125.087616,119.509102,89.765305,73.864479,88.649597,97.294228,70.748772,32.302502,13.894232,10.864481,9.921503,8.565304,8.642990,9.692576,4.612407,0.961159,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.155000,4612555.550000,3570,4155,110.067780,170.761993,163.927277,156.439682,140.654556,127.150421,127.092575,125.067780,125.109100,128.067780,126.803314,138.117371,155.365295,171.414886,185.274384,196.778519,196.629761,183.968597,160.100830,139.018188,128.778519,125.390091,119.745461,90.852905,73.315712,87.315712,97.712410,71.332245,32.919029,11.794232,10.885969,6.981831,8.386792,8.053733,8.504972,3.955381,0.609092,0.253719,0.123967,0.163637,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.755000,4612555.550000,3583,4155,111.576874,169.271103,165.527298,155.643005,140.411591,127.775223,128.221497,126.147125,125.213234,127.775223,127.320679,139.395065,156.957047,173.452911,186.287628,197.965317,197.618210,185.105804,161.775223,139.948776,129.552078,127.056213,121.800018,91.494232,75.626457,87.568611,100.254562,72.510757,34.138863,14.480184,11.072747,9.583487,8.268611,8.842990,9.598362,4.836375,0.444629,0.040496,0.186778,0.000000,0.057025,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.155000,4612555.550000,3605,4155,117.483490,173.219025,167.450424,157.037201,142.359528,130.028946,129.442169,127.095055,126.425636,127.566132,128.789276,139.458694,158.177704,174.425629,187.772751,198.070267,198.442169,185.409103,162.276871,141.194229,130.103317,127.119850,122.045471,92.169441,75.781013,88.409103,100.871918,72.938042,34.913242,14.326464,11.095059,9.647948,9.867784,8.971916,10.814890,3.881824,1.059506,0.047934,0.508266,0.000000,0.000000,0.000000,0.036364,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.555000,4612555.550000,3622,4155,118.981010,166.766129,164.766129,154.195877,137.848770,126.981010,127.435555,125.129768,123.840515,126.419029,125.724808,137.757858,156.146286,172.113235,184.501663,195.261993,195.063644,184.154556,160.253723,138.212402,127.286797,125.055389,118.972748,88.352905,73.336380,86.551247,97.625633,70.022331,32.923161,13.281836,10.815722,8.175220,6.981005,7.799186,8.609103,5.104141,0.255373,0.190909,0.110744,0.133058,0.080992,0.000000,0.007438,0.061984,2.282645,0.000000,0.000000,1.659504,0.000000,0.000000 -601470.755000,4612555.550000,3643,4155,115.460342,173.038849,164.865295,154.303314,139.344635,129.609100,127.981003,126.129761,125.311577,127.576042,127.501663,139.022324,157.154556,172.642151,185.774384,195.625626,196.576050,184.278519,160.551254,139.600830,128.716537,126.402489,119.881828,90.749596,74.774399,87.675217,100.865295,71.823982,34.476883,14.595883,10.898366,9.865303,9.165303,8.442163,9.880178,4.319017,0.748762,0.322315,0.325621,0.053719,0.000000,0.000000,0.000000,0.119009,0.000000,0.000000,0.855372,0.000000,0.000000,0.000000 -601477.355000,4612555.550000,3676,4155,111.358696,168.424789,165.928925,154.879349,141.449600,130.490921,129.788437,127.185135,126.416542,126.970261,128.796707,139.978531,157.557022,174.152069,187.036362,197.333893,197.441330,184.970245,161.920670,139.920685,128.829758,126.829765,121.400009,92.011581,74.449608,88.523987,100.730591,73.714066,35.036388,15.757869,11.036383,8.215714,7.359519,10.459520,10.514065,3.724802,0.780168,0.258678,0.110744,0.000000,0.000000,0.000000,0.075207,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.955000,4612555.550000,3694,4155,113.492584,162.186768,164.285965,155.566940,140.161987,129.905807,127.244652,125.203316,124.905800,126.715706,127.294220,138.905777,156.368607,173.128937,185.996704,196.740509,196.773560,183.988449,160.583481,138.947098,128.839691,125.376869,119.418198,90.682663,74.773575,87.897545,98.666138,71.847954,33.409935,13.388447,10.856218,7.538856,7.863651,8.262823,8.028112,2.883478,1.066118,0.251241,0.000000,0.099174,0.000000,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601483.955000,4612555.550000,3709,4155,111.163658,162.180191,165.105804,152.775223,138.535553,127.758690,127.857872,124.824814,123.047958,124.700851,126.395065,138.452911,154.816559,170.874405,185.072754,194.808289,195.800003,183.659531,160.510773,138.345474,127.527298,124.841347,118.345474,90.204979,72.882668,87.626472,97.519028,70.800026,32.824814,14.323158,10.758698,6.558690,8.466956,7.900841,9.438857,2.946288,0.522316,0.289257,0.333059,0.134711,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.955000,4612555.550000,3734,4155,122.139679,164.742996,166.048782,153.338043,138.280182,128.090088,126.957863,124.817368,124.825630,126.660339,126.842163,139.114899,156.296707,172.247131,185.329773,195.321503,196.627289,183.585968,160.635559,138.668610,127.519844,124.007446,118.809105,89.470261,72.453735,86.891747,98.792572,72.437210,34.288448,13.282663,10.800846,7.243814,7.997538,7.714064,7.083486,3.823975,0.615704,0.037190,0.209092,0.053719,0.000000,0.000000,0.000000,0.122314,0.000000,2.418182,0.000000,0.000000,0.000000,0.000000 -601492.355000,4612555.550000,3751,4155,118.700844,162.353729,167.221497,153.717361,139.609924,128.543823,128.312408,125.064476,124.502495,126.527290,127.320679,138.064468,156.229752,171.684311,185.023148,195.279343,196.105789,184.709091,160.477692,139.023148,128.262817,124.477699,118.163651,90.990097,73.609932,88.593407,99.411583,71.816544,32.948780,13.361176,10.742168,6.979351,7.707452,7.594228,8.538032,3.935546,0.848762,0.201653,0.300001,0.000000,0.232232,0.000000,0.000000,0.000000,0.000000,1.186777,0.000000,0.000000,0.000000,0.000000 -601495.355000,4612555.550000,3766,4155,112.052086,160.919846,163.919861,153.291748,137.994217,128.407455,127.176048,125.341339,124.961174,125.407463,128.076874,137.407440,156.432236,172.233887,185.217361,194.655380,196.490082,184.043808,159.366135,138.258682,127.010757,124.721504,118.390923,89.804153,73.952904,87.200836,99.258690,73.035561,34.448784,13.219027,10.762829,8.757038,7.395055,8.415719,9.205798,4.124802,0.584300,0.106612,0.191736,0.001653,0.110744,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.555000,4612555.550000,3782,4155,106.938858,158.872742,164.095871,153.385132,137.905792,129.376877,126.393402,124.186790,123.211586,124.897537,126.575218,137.128937,156.385117,171.418182,184.153717,194.624786,194.476028,183.492554,158.971893,137.533890,127.641335,124.087616,119.054558,89.277702,73.409927,86.814888,98.269432,70.889267,34.633076,12.428942,10.823160,7.132245,7.854560,7.720676,8.819849,2.814056,0.600828,0.130579,0.058678,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.035537,0.000000,0.000000 -601503.955000,4612555.550000,3809,4155,116.565308,165.578522,165.198364,154.487625,138.371918,129.438034,127.595055,125.330597,125.371918,125.157043,127.190102,138.181839,156.165298,172.272751,184.950424,194.752075,195.685974,184.570267,159.933899,138.603317,127.462830,124.090927,118.272743,90.603325,73.553734,88.123985,100.090935,73.041336,34.925640,13.765307,10.752086,6.182657,7.155388,9.323155,9.077700,3.752901,0.722315,0.333885,0.044628,0.183471,0.000827,0.000000,0.000000,0.044628,0.000000,0.000000,1.061984,0.000000,0.000000,0.000000 -601507.355000,4612555.550000,3826,4155,102.896706,157.599167,163.756195,151.400833,138.491730,127.681831,126.144630,124.020668,123.847115,124.814056,126.747940,138.417358,155.566116,171.425613,185.838837,195.524811,196.880188,183.764465,159.400833,137.235535,126.847115,124.433891,119.045464,89.954559,71.384315,89.037209,99.524803,73.276878,33.516548,11.787620,10.822332,7.316543,6.630594,8.493402,7.438032,3.376041,0.509919,0.114050,0.117356,0.261158,0.000000,0.300827,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.155000,4612555.550000,3840,4155,108.565308,162.628113,167.413239,154.752075,139.950424,130.892578,128.553741,125.809937,125.991753,126.727287,129.132248,139.876053,158.504150,174.396713,187.024811,196.586777,197.396698,186.727295,160.859528,140.363647,129.099182,125.851257,119.909103,91.876053,74.148781,90.479355,101.008278,73.148781,34.685970,14.277704,10.900846,7.806624,8.859521,9.125634,8.574394,3.033892,1.264466,0.285951,0.000000,0.146281,0.000827,0.154546,0.000000,0.041322,0.000000,0.000000,0.000000,0.000000,2.431405,0.000000 -601516.155000,4612555.550000,3870,4155,111.457863,157.780182,165.515717,150.813248,138.160355,128.904144,126.970261,124.019844,123.986786,126.573563,127.747116,138.912415,156.912415,173.168610,187.052917,196.862823,196.358704,185.276047,161.515717,139.036377,128.110748,125.276047,119.309105,90.350433,73.606621,89.358696,99.152084,72.573563,35.052914,14.252912,10.846300,6.334724,7.989271,7.914890,7.285964,3.233891,1.129754,0.040496,0.188430,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.202479,0.000000 -601519.355000,4612555.550000,3886,4155,121.151245,159.176025,165.052063,154.233871,140.820679,129.746292,126.704964,124.366119,125.572731,126.060333,128.407440,139.547958,157.597504,173.481812,186.828918,196.994202,197.721481,186.027267,162.027267,139.341339,128.886780,125.754555,120.572731,92.052071,73.432243,88.019012,101.572731,74.622330,34.448780,14.254563,10.961177,9.085138,9.002494,9.011586,8.914889,2.390090,0.394216,0.255373,0.147108,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601522.755000,4612555.550000,3903,4155,101.526466,159.319855,165.625641,152.328125,139.890106,130.675217,128.295044,125.939682,126.840508,127.956207,129.038849,140.344650,158.675232,175.319855,187.394241,198.675232,198.559525,187.666962,162.476883,141.228958,130.716537,126.947945,122.063652,92.923157,74.526466,91.228943,102.278534,74.807457,35.716545,14.552085,11.096714,6.910758,9.703321,8.938857,10.516544,5.538853,0.628927,0.055372,0.435538,0.000000,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.755000,4612555.550000,3918,4155,100.568611,156.238022,162.618195,153.502487,139.676041,130.337204,128.262817,127.072739,126.452904,127.593407,128.444641,139.766953,158.477692,174.403305,187.295868,196.808273,198.733887,185.766953,161.676041,141.403305,129.213242,126.188446,121.436378,91.932243,74.717377,89.337204,101.816544,74.609932,35.510765,15.442168,11.039689,9.371088,9.222328,9.023156,8.694229,4.721497,1.024796,0.135537,0.000000,0.000000,0.128926,0.000000,0.112397,0.052893,0.000000,1.322314,0.000000,0.000000,0.000000,0.000000 -601529.555000,4612555.550000,3937,4155,105.709930,159.875229,164.652084,154.957870,140.090103,130.999191,129.676865,127.685135,127.057037,128.875214,130.470261,141.123154,159.313248,175.338043,189.147934,198.908264,200.247116,187.916534,162.949600,142.999176,131.015717,126.734718,122.354553,93.767776,75.908287,90.875221,103.032249,75.759521,36.759525,15.572744,11.123161,8.392575,9.295883,9.424809,9.476875,3.393397,0.514877,0.286778,0.058678,0.000000,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.355000,4612555.550000,3956,4155,104.446297,161.441345,164.300842,154.375229,141.226471,131.879349,129.441330,127.061165,127.978531,128.135559,130.061172,140.647949,158.747131,174.747131,188.656219,198.986801,199.606628,188.226471,162.920685,141.325638,130.639679,127.689278,122.127281,93.408279,75.416542,91.738853,101.300835,74.201668,37.193409,15.565308,11.102499,7.430590,9.089272,9.591750,10.333899,3.761993,0.483472,0.043802,0.423141,0.009918,0.005785,0.000000,0.000000,0.046281,0.000000,0.000000,1.146281,0.000000,0.000000,0.000000 -601536.155000,4612555.550000,3970,4155,114.038025,153.884308,162.776871,152.454559,138.404984,130.041336,126.661163,124.371910,124.727280,126.280998,126.975212,138.586807,156.900848,173.578522,186.933899,196.512405,197.322327,186.272751,161.727295,139.950439,129.000015,124.719017,119.272736,91.471085,73.438026,88.966949,100.157036,73.537209,32.975224,12.751257,10.842995,6.523977,7.690925,9.043817,7.341335,2.972735,0.576034,0.160331,0.043802,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.755000,4612555.550000,3983,4155,112.564476,154.895065,163.151260,152.010773,138.605804,129.176041,125.316544,124.341339,124.118195,125.729767,127.126457,138.300003,156.539688,172.828949,186.010757,195.795853,197.167755,185.068619,161.457047,139.531418,128.002487,124.622330,118.845467,90.465309,73.291756,87.671913,99.919846,73.333069,34.539688,12.876051,10.804152,5.408274,6.761171,6.560344,5.897533,3.304141,0.424795,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.755000,4612555.550000,4008,4155,104.138039,157.881821,164.823975,155.749603,142.377701,131.187622,129.700012,127.923157,126.782669,128.865311,130.344650,141.807449,159.584305,176.468597,189.212402,199.171082,200.981003,188.485138,164.014053,141.931412,130.518204,128.501663,121.881844,94.212418,77.179359,91.766136,102.658699,75.931419,37.195889,16.351257,11.080184,8.105799,8.949602,9.513238,8.057038,3.683480,0.641324,0.030579,0.097521,0.179339,0.006612,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.955000,4612555.550000,4024,4155,101.252907,154.864471,164.385147,153.244659,141.434723,131.583481,129.071075,127.095871,126.509094,128.517365,130.302505,140.492569,157.773590,175.426468,188.839691,199.071106,199.046310,188.343826,162.641357,141.294235,130.004959,126.492577,121.418198,92.666130,73.525642,89.476044,102.814896,74.095886,35.277706,14.395060,11.038035,6.859517,7.530593,9.174396,8.795055,3.534719,0.723970,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,1.195042,0.000000 -601550.955000,4612555.550000,4044,4155,100.372742,160.827286,165.637192,154.471893,140.356216,131.273560,130.331421,127.852081,127.711586,129.066956,130.942993,140.992569,158.819000,175.331421,189.843811,199.471909,201.604141,188.612411,164.703308,141.752899,130.496704,126.909927,123.100014,93.133072,74.951263,88.438858,102.372742,74.711594,36.033905,15.542168,11.190928,6.481003,8.722331,8.957041,8.509930,3.738852,0.528100,0.314877,0.105785,0.000000,0.066942,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.955000,4612555.550000,4059,4155,112.317368,158.532242,163.813232,154.970245,140.912415,131.383484,130.276047,128.052902,126.771912,129.829758,130.928940,142.317352,159.862808,176.862808,190.143799,201.333893,200.003311,190.424789,164.821487,142.606613,131.705795,128.168610,122.945465,94.573563,76.647957,90.986786,103.838028,75.763657,36.185146,15.333902,11.176879,6.304143,8.816545,9.613239,7.781005,3.779348,1.073556,0.563637,0.141323,0.001653,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.955000,4612555.550000,4074,4155,110.952087,162.414902,164.604980,155.753723,141.233078,130.588440,129.282669,126.728935,127.216537,129.464478,130.158691,140.844650,160.299194,176.629761,189.447937,200.191742,200.224808,188.803314,164.795074,141.571930,131.216553,127.720673,122.563644,92.547134,74.596718,90.166969,101.076050,75.348785,35.671097,13.436381,11.142167,6.865302,7.794230,7.552907,8.721502,2.452074,0.924795,0.281819,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.955000,4612555.550000,4089,4155,108.896713,167.210754,166.136383,154.169434,141.814072,134.128113,130.376038,128.681824,127.690094,129.797531,130.202484,142.227295,160.169434,175.979355,191.095062,200.359528,201.342987,190.400848,164.756210,142.227295,132.227280,128.632233,123.681824,93.665298,75.417374,90.797531,104.086784,76.252075,35.128117,15.642167,11.243821,6.859516,7.738859,8.890098,9.336378,3.853726,0.450414,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.355000,4612555.550000,4111,4155,109.109940,161.192581,162.886795,154.630585,141.382645,132.176041,128.581009,127.738037,128.316528,130.242157,130.341339,142.415710,159.366135,177.448761,190.564484,200.795883,201.002502,191.415726,164.762833,142.523148,132.159515,128.143005,123.936386,94.349602,75.076881,91.333069,103.448769,76.862007,36.837208,14.209934,11.266961,6.781830,8.753736,8.581008,8.635551,3.987612,0.616530,0.111571,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,1.248760,0.000000,0.000000,0.000000,0.000000 -601567.555000,4612555.550000,4127,4155,105.938034,154.400848,162.863647,154.285141,141.012405,132.061996,129.161179,127.731422,127.037209,130.103317,131.466965,142.194229,161.037201,176.946274,190.095062,200.607452,201.351257,189.607452,165.177704,143.227295,131.202499,127.442162,122.318199,93.020676,76.359520,91.524811,103.169426,76.243820,34.219028,14.228116,11.119853,6.184309,8.591749,8.863652,6.885964,2.709097,0.679341,0.097521,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.277686,0.000000,0.000000,0.000000 -601572.755000,4612555.550000,4153,4155,108.657043,160.433899,164.342987,156.433914,142.698349,133.450424,130.500015,129.243820,128.409103,130.888443,132.144638,142.590912,160.004150,178.086792,190.574417,202.095078,201.814087,191.359543,166.516541,144.037186,132.128113,128.037201,123.409103,93.549606,75.615715,91.409103,103.781006,76.516548,35.971092,15.752085,11.219028,6.375217,9.214892,8.713238,8.818196,2.791741,0.646282,0.339670,0.061157,0.057025,0.068595,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.955000,4612555.550000,4194,4155,108.800842,164.767776,166.652069,157.784302,143.635544,132.916550,130.924820,129.238861,129.114899,131.313232,131.701660,143.445465,161.023972,178.172729,191.594223,201.544632,202.445465,191.172729,166.205795,144.445465,132.172745,129.048782,123.809113,95.329773,75.255386,91.809113,104.230598,76.445465,35.470268,13.212414,11.255390,5.590093,7.881009,7.817371,6.757038,3.149595,0.901655,0.569423,0.114050,0.000000,0.000000,0.000000,0.015703,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.355000,4612555.550000,4216,4155,117.383484,165.639679,167.011566,155.433060,143.606613,132.846298,129.623154,127.937202,128.573563,131.614883,131.400009,141.978516,160.771912,177.862808,190.358688,201.714050,202.672729,191.904129,166.689255,144.433060,131.738861,128.631409,123.672737,94.705795,75.317368,91.193398,103.532242,75.581833,34.631424,14.178530,11.242993,5.443812,8.377701,6.552080,7.152080,2.315709,0.298348,0.000000,0.064463,0.000000,0.001653,0.000000,0.000000,0.000000,1.271901,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.355000,4612555.550000,4251,4155,114.620682,170.166122,167.157867,158.257034,145.025635,134.686783,131.430588,129.438858,129.058685,132.290100,132.835556,143.471909,159.736374,178.777695,191.422333,202.835556,202.480179,192.141342,166.934723,144.852081,132.033890,128.513229,123.463646,94.562820,74.381012,90.703316,104.397537,77.604149,36.645477,14.119026,11.223986,6.019845,8.504973,9.226460,6.958692,3.874387,0.431406,0.247108,0.105785,0.000000,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.955000,4612555.550000,4269,4155,122.411583,160.229782,164.800003,155.824814,143.419861,130.915710,128.147125,128.419846,126.593407,130.395050,130.890930,139.990112,158.816559,176.047943,188.948761,199.312408,199.502487,189.626450,164.477692,140.890930,129.857864,125.684311,121.436378,91.758690,72.585136,88.593407,101.064476,75.345467,34.304146,12.386793,11.039689,3.724802,6.933899,5.670261,6.467781,2.900833,0.414051,0.175207,0.131405,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.155000,4612555.550000,4290,4155,125.354553,173.172729,167.164490,158.346298,144.594238,132.503311,131.288437,130.048767,129.428940,132.445465,132.569427,142.875229,159.660355,177.833878,190.544617,201.065277,202.346268,190.552887,165.313248,143.701675,131.552902,128.032242,122.536377,92.470268,74.776062,89.123161,102.263649,76.462013,35.875225,13.691754,11.139688,4.761166,6.463651,5.508277,7.936376,2.470256,1.070250,0.115703,0.466943,0.058678,0.076860,0.000000,0.067770,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.155000,4612555.550000,4305,4155,116.107452,175.057846,169.338837,161.809921,147.305786,135.066132,133.239685,131.479340,130.578522,134.504150,133.479340,145.256195,161.553726,179.776855,192.289261,203.314026,203.033035,191.677689,167.818176,144.851242,132.942154,129.173569,124.181824,94.413239,76.909103,90.942162,104.247940,77.909103,35.595062,15.678531,11.289275,6.076044,10.296711,8.207453,8.274393,3.678519,0.354546,0.093389,0.068595,0.000000,0.000000,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.355000,4612555.550000,4321,4155,118.684319,173.692566,169.114059,160.890915,147.180161,133.907440,132.196701,131.601654,130.287613,133.791748,133.725632,144.229782,161.452896,179.403305,191.857864,202.485962,201.808273,191.576859,166.659515,144.328949,132.072739,127.750420,123.618187,93.634735,75.750435,90.444649,102.874397,76.221512,35.370266,15.352083,11.238034,5.103315,8.270265,8.368610,8.078526,3.382652,0.383472,0.034711,0.000000,0.069422,0.037191,0.000000,0.023141,0.000000,1.411570,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.555000,4612555.550000,4337,4155,126.999184,173.528122,168.015717,161.304977,145.544647,133.090088,131.660339,131.023972,130.271912,133.503311,132.255386,143.495056,161.007462,178.966141,191.660355,201.379364,202.048782,191.470261,166.247131,144.189270,131.139679,127.288445,122.627281,93.544640,75.957863,90.205795,100.652077,76.809105,34.552914,13.721505,11.147952,4.998358,6.706626,5.869434,8.308278,1.761162,0.384298,0.261158,0.180992,0.275207,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.355000,4612555.550000,4351,4155,123.879349,178.028107,172.953720,163.862808,146.904114,135.003326,134.300842,132.052917,130.490921,134.342163,133.433075,144.350418,162.573563,179.672729,192.879333,203.036346,203.317337,190.788422,166.606613,143.887604,133.036377,128.143814,123.581841,94.342171,77.433075,89.573570,102.474396,76.276054,37.019855,14.991754,11.234731,5.594226,7.765305,7.127287,9.890924,3.513230,0.761985,0.181819,0.396695,0.002479,0.106612,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612555.550000,4364,4155,120.182655,179.810760,170.670258,161.471909,147.463654,134.025635,131.868607,131.347946,129.612411,133.736374,132.356216,143.653732,160.662003,178.827286,191.389267,201.752899,201.612411,190.976044,163.695053,143.719849,130.678528,127.257034,121.827286,92.744644,74.025642,88.058693,101.562828,76.496712,34.951260,13.493406,11.075226,4.336373,6.928939,5.811583,6.508276,2.709097,0.661159,0.106612,0.048760,0.006612,0.013223,0.000000,0.013223,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.355000,4612555.550000,4381,4155,111.006638,173.857880,171.023163,158.998367,143.990112,132.204987,131.494232,128.378540,128.899200,128.940521,129.824814,141.337219,159.519028,176.072754,186.923996,197.882660,196.312424,184.709106,159.502502,137.370270,127.419861,125.254570,119.527298,90.502495,73.601677,87.419846,99.684319,74.543823,34.461174,14.441340,10.866136,8.250426,9.379353,7.296706,6.832246,3.002486,0.375207,0.209918,0.051240,0.000000,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.355000,4612555.550000,4396,4155,117.781006,175.161179,170.409103,158.590927,144.442169,132.450424,132.185974,128.921509,127.037209,128.342987,129.797531,139.723160,158.599182,175.376038,186.995865,197.111572,194.640503,183.161163,157.921509,137.128113,127.053734,123.409103,118.136383,89.855385,73.342995,86.037209,99.392578,70.847122,35.491756,14.147125,10.739688,9.275220,6.649598,8.504146,8.449600,3.172734,0.644630,0.128926,0.148761,0.000827,0.068595,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,1.172727,0.000000 -601625.555000,4612555.550000,4417,4155,130.848785,176.509933,173.989273,157.923157,144.361176,133.303314,132.460342,129.666946,128.195877,129.460342,129.815720,140.947952,159.419022,175.195877,186.857056,197.452087,196.741348,183.675217,160.212402,137.815735,127.443810,125.724800,119.881828,90.138023,74.055389,86.204140,99.443810,73.691750,34.790928,16.809935,10.898367,9.218196,7.924807,8.711583,11.323156,4.402489,0.804960,0.244629,0.247108,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,2.763637,1.116529,0.000000,0.000000,0.000000 -601629.755000,4612555.550000,4438,4155,121.595047,177.033081,171.148773,159.603317,145.148773,131.090912,130.082657,128.991745,127.363647,129.016541,128.669434,139.785141,157.925629,173.884308,186.611588,196.206635,195.727295,181.950424,157.975220,137.413239,125.462814,122.322319,116.636375,88.892570,71.933907,85.702484,99.421494,71.793404,33.743820,14.262829,10.603326,6.486789,6.635550,6.099185,8.427286,2.633890,0.136364,0.000000,0.098347,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.169422,0.000000,0.000000 -601633.155000,4612555.550000,4455,4155,121.157875,177.613251,170.869446,158.442169,144.392593,132.144638,132.045471,128.640518,128.524811,130.061996,128.144638,140.739700,158.971085,174.962814,186.640503,197.061981,197.309921,183.516525,158.979355,139.128128,128.185974,125.714890,119.136383,90.995880,75.442162,86.640511,100.607452,74.152908,34.533077,16.176878,10.830597,10.560345,8.114890,8.842988,8.583485,2.549594,1.071077,0.395042,0.242976,0.237191,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.355000,4612555.550000,4471,4155,130.851257,172.570267,169.842987,159.099182,146.504150,133.148773,132.338852,129.611588,129.404968,130.206635,130.008286,142.380188,158.537201,175.719025,187.991745,198.578522,196.983490,182.115723,160.173569,137.793411,126.826462,124.132248,117.636383,88.793404,73.380180,87.859520,98.768608,73.140511,32.842995,14.147126,10.694234,8.215717,7.623979,8.847119,10.445469,3.154552,0.637192,0.125620,0.511572,0.052893,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.755000,4612555.550000,4493,4155,127.829773,179.391754,170.838043,161.085968,144.970261,132.416534,131.077698,129.408279,128.590088,131.598358,128.672745,140.234726,158.879364,174.366959,187.176880,198.548782,195.449600,182.028122,157.623154,136.846298,126.077698,122.656212,117.036377,86.325630,72.119019,87.457863,98.995056,71.267776,32.209938,12.556217,10.639688,7.045466,6.127285,7.846294,6.565301,4.731414,0.510745,0.325621,0.104959,0.003306,0.000000,0.000000,0.000000,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.355000,4612555.550000,4511,4155,123.744644,183.662003,174.620667,162.042160,146.604156,134.075211,133.538025,131.298355,130.587616,132.496704,130.595886,143.042175,160.347961,176.703323,188.240509,197.976044,195.736374,181.504974,159.009125,138.116562,126.604149,124.000832,119.100006,89.083488,73.066963,87.852089,100.306633,71.133080,34.083488,14.375223,10.827291,9.778528,7.357865,8.923154,8.794229,2.878519,0.588431,0.171075,0.042149,0.005786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.155000,4612555.550000,4545,4155,134.720673,188.114883,172.528107,163.461990,147.247116,134.941330,132.726456,130.933075,130.900009,133.718201,130.842163,142.437195,159.495041,177.214050,188.453720,198.354553,196.412399,182.726456,158.767776,137.883469,126.040504,123.949600,118.627281,89.495064,73.511589,87.676880,99.222336,71.362831,33.561180,14.242992,10.784317,10.720678,8.442163,9.276048,8.333899,4.809101,0.974383,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.355000,4612555.550000,4566,4155,125.752914,188.199188,175.405792,166.000839,147.785965,134.141342,134.364487,130.802505,130.934738,134.909943,130.356216,142.513245,159.108276,177.108276,188.463638,198.538010,195.587601,181.314896,157.554565,138.066971,127.091759,123.711594,118.190933,88.546303,72.744659,87.306633,99.273575,72.257050,32.942993,12.542166,10.744647,10.885964,7.938856,7.868608,8.384311,4.010754,0.757854,0.276860,0.152066,0.000000,0.000000,0.221488,0.000000,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612555.550000,4587,4155,136.206635,189.685974,177.173569,165.338852,147.867783,133.396713,131.289276,130.512405,130.495880,134.041336,130.446304,140.859528,158.677704,175.148773,188.157043,197.355392,196.578522,180.900848,156.892578,136.776871,126.338860,123.123985,117.818199,87.950432,72.281006,88.553734,99.223160,70.661171,31.655390,12.259521,10.710763,9.560344,6.445466,6.161169,6.991746,2.863644,0.604133,0.132232,0.082645,0.063637,0.004959,0.000000,0.000000,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.155000,4612555.550000,4625,4155,138.292587,198.722321,177.614883,170.094223,149.945480,137.928940,135.540512,133.581833,133.631424,138.928940,133.028122,143.557037,160.119019,177.879349,190.995041,199.639679,198.193390,182.581818,159.557022,139.548782,129.259521,125.209938,120.127289,91.441345,74.424812,89.689278,100.631424,72.028130,34.532249,15.506631,10.920681,11.679356,8.052079,7.997532,7.865303,3.917364,0.773556,0.174381,0.478514,0.000000,0.107438,0.000000,0.052066,0.224794,0.000000,0.000000,2.299174,0.000000,0.000000,0.000000 -601670.955000,4612555.550000,4644,4155,156.356216,199.351242,176.615707,168.763641,152.672729,137.871094,137.011597,134.548767,134.714890,139.895889,134.185974,145.400009,162.474380,179.251236,191.854553,202.672729,200.193390,183.705795,162.284302,140.449585,129.532242,126.565300,121.854553,92.242996,75.895889,92.044647,101.862823,73.540512,34.978531,15.061174,11.077705,13.175222,8.079352,8.827286,10.746297,5.439678,1.047109,0.885952,0.328100,0.265289,0.100000,0.049587,0.000000,0.178513,1.515703,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.755000,4612555.550000,4663,4155,149.652084,198.412415,177.420685,167.106628,149.214066,137.147949,137.404144,135.271912,134.280182,140.304977,134.040512,145.511566,161.858704,178.156219,190.833908,201.230591,197.738861,181.143814,159.813248,139.276031,127.928940,125.424805,121.036377,90.557045,74.970268,90.540512,101.408287,69.457870,33.717373,14.302497,11.003325,11.773570,6.733897,8.263649,8.249600,5.289265,1.608268,0.714877,0.628100,0.484298,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.955000,4612555.550000,4679,4155,94.555389,167.241333,170.671082,157.745468,145.183487,135.877701,132.968613,130.398361,130.935562,129.894226,132.902496,142.861160,160.613235,177.406616,188.588440,196.613235,197.439682,184.158691,160.299179,139.795044,128.200012,124.282661,119.290924,90.976875,74.133904,90.538864,101.968613,74.076050,34.423161,14.860349,10.844646,8.453732,8.526460,7.431419,8.409931,3.980174,0.756200,0.152066,0.122314,0.000000,0.052893,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.155000,4612555.550000,4695,4155,103.597534,163.696716,169.506638,159.225647,143.928101,133.853729,131.060349,128.432251,128.680176,130.324814,131.242157,142.093399,159.853745,176.019028,188.779358,196.828949,196.919861,185.242172,161.076889,139.052078,128.663651,125.167786,119.481834,91.142990,74.498360,88.043816,101.581009,75.250427,36.862000,16.438862,10.862003,7.466129,6.810758,9.082658,9.957039,6.223977,1.001655,0.357026,0.116529,0.000000,0.000000,0.000000,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.355000,4612555.550000,4716,4155,103.045471,164.342987,166.491745,155.632248,142.814072,133.871918,130.756210,128.359528,128.508286,129.987625,130.169434,141.276871,158.764481,175.309937,187.293411,195.896713,195.747955,183.574402,158.475220,138.367783,126.690102,124.194229,118.954559,91.260345,73.466965,89.450432,101.723160,73.995895,35.202499,13.704977,10.814069,6.709930,5.641334,8.408278,7.472743,3.958685,0.538844,0.128926,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.955000,4612555.550000,4734,4155,115.969437,162.663635,169.184311,157.614059,143.382645,133.721497,131.052078,129.382660,128.779358,130.605804,130.457047,142.704971,161.209091,175.820663,188.159515,196.952896,196.531418,183.490082,160.043808,138.457031,128.564484,123.787621,119.027290,92.176048,75.490097,88.101669,101.556213,74.250427,36.423988,14.290099,10.820680,8.385138,7.533897,8.476046,8.546296,3.187610,0.384299,0.262811,0.000000,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.755000,4612555.550000,4753,4155,107.898361,161.311584,164.964478,156.063644,139.369431,130.790924,126.534721,125.724800,125.038849,126.840508,127.485130,137.898361,156.443817,171.237198,183.261993,192.295044,191.857040,180.848770,156.319839,134.666946,123.865295,120.253731,114.336372,87.476868,69.501671,85.344635,98.047119,70.898361,31.812416,11.734728,10.394234,4.868607,6.572738,6.428110,6.878525,2.242982,0.644630,0.000000,0.542977,0.000000,0.052066,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.955000,4612555.550000,4774,4155,106.561165,167.205811,170.428940,159.759521,145.883484,138.313248,134.321503,131.453735,132.222321,133.197525,133.726456,145.329758,163.106628,178.900024,192.619034,200.255386,199.552917,187.288452,163.032257,141.371094,131.329758,126.825630,122.263649,94.461990,76.941345,93.371086,103.536377,76.131424,38.809109,17.346300,11.114896,7.176873,9.937204,9.485138,10.647949,5.292572,1.037193,0.545456,0.215703,0.000000,0.242976,0.228099,0.000000,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.555000,4612555.550000,4797,4155,122.566132,168.516541,169.566132,158.863647,144.417374,134.582657,130.747955,129.781006,128.962814,130.938019,131.309921,142.260345,161.086792,176.078522,188.615707,197.690079,196.020660,185.004150,160.508286,139.103317,128.491745,124.243820,119.227287,91.020676,74.392578,89.946297,102.376053,73.896713,35.202499,15.637206,10.838862,5.519846,8.900840,7.447118,8.252908,3.973562,0.357852,0.066942,0.052893,0.252066,0.119835,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.955000,4612555.550000,4819,4155,101.652077,158.385956,166.658707,156.650436,143.542999,134.716537,133.567780,132.865295,132.410751,134.005798,134.311584,145.658707,163.303329,178.344635,192.476868,200.716537,200.063644,188.435547,163.542999,141.096725,130.162827,127.402489,122.518196,94.295059,77.443817,92.278534,104.096710,76.799194,37.435555,15.229771,11.138037,5.632243,8.180180,9.217369,8.790097,4.009099,0.861160,0.236364,0.130579,0.171075,0.061984,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.755000,4612555.550000,4838,4155,97.834732,158.652908,169.578522,157.950424,142.950424,133.719025,131.421509,129.438034,129.429764,130.628113,131.396713,142.413239,160.983490,176.198364,189.057861,196.173569,196.561996,185.082657,161.793411,139.363647,127.975220,124.652908,120.181831,91.247948,72.429771,89.033073,102.801666,73.504150,37.281013,13.551258,10.925639,5.938854,6.647120,10.290096,8.071913,2.024799,0.452894,0.111571,0.061984,0.000000,0.000000,0.000000,0.044628,0.107438,0.000000,0.000000,0.000000,1.002479,0.000000,0.000000 -601713.755000,4612555.550000,4858,4155,118.065292,165.627274,169.321487,158.528107,144.528107,135.139679,132.065292,129.478516,128.792572,131.362808,132.916534,142.404129,160.131409,176.420670,189.238846,197.197525,197.701660,185.280167,161.470245,140.123138,129.519836,126.106613,120.627274,93.238846,74.800842,89.668610,103.371078,75.371086,37.313248,14.694231,10.966134,6.778523,8.499187,8.412412,7.011583,4.335544,1.030580,0.564463,0.117356,0.388430,0.511571,0.242975,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.755000,4612555.550000,4883,4155,115.855385,166.095047,168.417358,156.921494,143.194229,132.946304,131.384308,129.896713,128.830597,130.392578,131.524811,141.326462,161.194214,176.607437,189.012390,197.582642,197.012390,184.714874,159.582642,138.756210,127.855385,124.202492,119.227280,90.615715,73.376060,90.169441,102.194229,73.681839,36.475227,14.046300,10.838861,6.040508,8.183485,6.296706,6.830591,3.114885,0.289257,0.164463,0.255373,0.128926,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.955000,4612555.550000,4904,4155,117.861168,166.067780,170.398361,163.018188,147.621490,138.034714,135.158691,131.885956,133.315720,134.233063,135.042984,146.092575,164.547119,179.158691,192.125626,199.943817,200.596710,187.960342,165.175217,142.365295,132.076050,128.257858,122.745461,94.778519,78.514061,91.877693,104.811577,79.034721,38.712418,16.623158,11.158695,6.640508,8.486792,10.054560,10.751254,4.714058,2.391738,0.000000,0.761985,0.000000,0.289257,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.955000,4612555.550000,4939,4155,113.683487,167.300003,172.919846,160.828934,144.969437,135.671921,132.506622,131.010757,129.746292,132.010757,132.473572,142.886795,160.423981,176.944641,188.349594,197.068604,197.002487,185.308273,161.176041,140.225647,128.415710,124.729767,119.936378,91.457039,74.779350,90.349602,102.845467,74.704971,36.052082,13.726463,10.903324,6.617367,7.057864,7.193401,9.105799,4.500834,1.376861,2.520662,1.366944,1.372729,1.228927,0.159504,0.000000,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601732.755000,4612555.550000,4953,4155,102.341331,164.861984,172.771088,162.919846,147.200836,134.399185,131.093399,129.721497,130.564468,131.085129,133.209091,143.118195,161.118195,177.159515,188.506622,199.589279,197.597534,186.043808,160.969421,140.423981,128.870255,124.266945,119.845459,92.134720,74.390923,90.109924,102.341331,77.324806,35.655392,14.280183,10.895060,6.846293,7.718194,8.753732,10.416543,2.915709,1.685953,1.032233,0.755373,0.510744,0.351240,0.359505,0.099174,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.555000,4612555.550000,4967,4155,101.306625,168.934723,169.447113,159.182663,144.480179,134.579346,132.579346,130.628937,130.918198,132.521500,132.662003,143.389267,160.323151,177.083481,188.893402,198.298355,197.455383,186.306625,162.066956,140.248779,128.389267,125.331421,120.190926,91.257034,74.133072,89.777702,102.959518,75.942993,36.075226,13.871092,10.926465,3.653727,7.972741,7.219021,7.870260,2.290090,0.385126,0.244629,0.055372,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.355000,4612555.550000,4981,4155,117.584305,164.683487,170.749603,161.997528,144.617371,135.733063,132.501663,130.964478,129.724808,133.270264,132.237198,143.493393,160.890091,176.700012,189.609100,197.947937,198.278519,186.972733,162.146286,140.179352,128.931412,125.700012,120.790916,92.204140,74.766129,89.121498,103.030586,76.303314,36.311592,15.421506,10.981010,4.635547,8.209105,6.759518,6.818195,3.646288,0.276861,0.533059,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.555000,4612555.550000,5012,4155,123.953720,169.284317,172.565292,164.714050,150.160339,139.540497,136.854553,134.342148,134.557022,137.639679,137.152069,147.094238,165.226456,180.507462,194.689270,203.490921,203.019852,191.309113,166.507446,144.656219,133.292572,130.590088,123.854553,96.705795,78.366959,93.284309,106.433067,79.540504,39.019855,18.443819,11.259523,7.972741,8.257040,10.129766,11.175221,5.092571,0.995870,0.553721,0.750414,0.000000,0.000000,0.000000,0.200001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.487604 -601747.755000,4612555.550000,5028,4155,120.804977,169.944641,174.242157,165.349594,147.473557,136.853729,135.225632,134.142990,133.580994,137.895050,138.713226,148.589264,167.142975,182.985962,195.093399,204.614059,204.142975,192.845459,168.283478,145.308273,133.787613,130.019028,123.390923,96.200844,78.027298,92.713226,104.457047,78.721504,39.159527,17.417376,11.217374,6.640509,10.107452,9.691749,8.540510,4.481001,0.495043,0.220662,0.015703,0.166117,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.955000,4612555.550000,5044,4155,107.052086,168.465302,168.300003,160.043808,147.374405,134.886795,132.919846,130.944641,130.597534,132.713242,133.002487,143.787643,160.911575,176.878525,190.911575,198.837204,198.052078,186.308273,161.572739,140.374420,129.043823,125.010757,119.936378,92.589272,75.605797,89.043816,101.688446,75.911583,34.109940,14.395886,10.903324,5.271083,5.966127,6.629764,7.407450,2.230585,0.298348,0.040496,0.160331,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.155000,4612555.550000,5060,4155,111.261986,173.828110,169.257858,163.629776,149.811584,136.993393,135.431427,133.175232,131.935562,135.100830,134.952087,145.869431,162.993408,178.175217,191.381821,199.803314,199.778519,189.009933,164.307465,142.150421,130.811584,126.869423,121.654556,93.555382,75.348778,90.778534,103.125633,76.960350,37.654564,14.779357,11.059524,7.091746,8.024808,8.371088,8.793403,2.009924,0.566943,0.671902,0.441323,0.000000,0.178513,0.191736,0.014876,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.155000,4612555.550000,5075,4155,128.390930,171.977692,171.523148,162.638855,149.415710,137.341324,135.779343,133.366119,133.349594,136.481827,135.440506,145.556198,162.804138,181.300003,192.671906,202.109924,201.415710,190.415710,166.308273,144.448761,131.266953,128.357864,124.027283,95.233902,78.151260,92.589272,106.713226,78.630600,38.333076,17.357042,11.275227,8.461997,9.156212,9.714064,8.116542,2.760336,0.199175,0.678513,0.028099,0.138017,0.013223,0.000000,0.524794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.955000,4612555.550000,5094,4155,126.798370,176.120667,172.955383,163.162003,148.566956,135.790100,134.897537,132.781845,131.054565,134.790100,134.178528,144.352081,162.699188,178.434723,191.269440,200.319016,198.872742,188.748779,163.600006,142.806625,129.806625,126.938866,121.509102,93.376877,76.839691,91.690933,103.980186,78.104156,37.434731,15.023160,11.046301,4.700008,8.964478,9.690095,9.009104,3.523148,0.745457,0.803308,0.056199,0.022315,0.026447,0.000000,0.000000,0.161158,0.000000,0.000000,0.000000,0.000000,1.409917,0.000000 -601765.155000,4612555.550000,5115,4155,137.196716,177.378525,168.874390,162.750427,149.477707,135.750443,134.890930,133.436371,131.998367,136.444656,134.965302,145.039688,162.609924,179.147110,191.295868,200.833069,200.857864,189.857864,164.056198,142.659515,131.163651,127.866127,121.254562,93.535553,75.585144,90.171913,104.213234,78.130585,35.957043,15.490928,11.023159,5.423150,5.666128,7.947947,8.248773,2.287609,0.631406,0.000000,0.059504,0.140496,0.000000,0.000000,0.025620,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.555000,4612555.550000,5147,4155,132.667786,188.552094,175.163635,166.452896,150.213242,138.328949,134.304138,132.312408,131.444641,136.196701,134.279343,144.560349,162.857880,179.023148,191.477692,200.890915,200.841324,188.328949,163.361984,143.114075,129.800003,126.064468,121.072731,92.684303,75.246307,91.138847,103.386780,76.403328,34.816547,13.757043,11.006631,5.297531,6.319849,6.393401,7.165302,4.029758,0.465291,0.166116,0.191736,0.000000,0.000000,0.000000,0.029753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.355000,4612555.550000,5166,4155,119.781830,183.806625,179.062820,167.938858,150.310760,138.145462,136.046295,133.550430,132.798355,134.327286,133.790100,145.376877,163.409927,179.682663,191.104141,200.608276,200.500839,187.847946,164.368607,143.112411,131.459518,127.261169,122.872742,94.583481,77.533897,91.707451,104.707451,77.624809,36.368614,16.687620,11.170267,6.782656,9.871917,9.842162,9.921502,4.617363,0.542977,0.144629,0.123141,0.221488,0.045455,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.955000,4612555.550000,5184,4155,117.650421,168.704163,172.092590,160.935562,145.571930,133.638031,131.481003,130.398361,127.770264,129.720673,130.241333,140.993408,160.307465,174.604980,187.390106,196.282669,196.447952,182.208298,158.464493,137.795074,126.786797,123.042992,118.200020,89.340500,74.720680,88.282646,101.142159,73.811584,33.869438,14.566133,10.745474,8.433898,7.685135,9.558691,9.519848,3.952074,0.517357,0.267770,0.322315,0.000000,0.000000,0.000000,0.413224,0.344629,1.411570,0.000000,0.000000,1.002479,0.000000,0.000000 -601782.755000,4612555.550000,5203,4155,117.751259,164.453735,167.637207,158.757034,146.889267,135.071091,134.870270,131.002502,130.324814,132.597549,130.895065,142.663635,160.746292,175.333069,186.374390,194.936371,194.531418,180.795868,155.919846,135.250443,123.410767,121.220688,115.027298,87.481842,71.759521,85.514900,97.473579,72.308289,32.630596,13.723984,10.457044,7.837203,7.224805,7.832243,8.747946,3.247941,0.496696,0.839670,0.685125,0.635538,0.472728,0.000000,0.001653,0.720662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.555000,4612555.550000,5222,4155,138.369431,183.898361,175.435547,162.460342,149.212402,136.509933,135.030594,131.336380,131.584305,131.997528,130.956207,143.823975,161.336380,177.857040,188.542984,197.972733,197.476868,183.584305,159.501663,138.080170,128.286789,125.534721,120.518188,92.187622,76.262001,89.402496,100.906624,74.303322,36.295059,16.049604,10.956217,9.504148,8.544642,9.152080,9.143818,3.526454,1.445457,0.164464,0.093389,0.000000,0.044628,0.000000,0.080166,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.355000,4612555.550000,5246,4155,119.602493,180.660355,175.842163,162.296707,145.172745,134.610748,133.354553,130.255386,129.817368,131.181000,130.387619,142.263657,160.172745,176.445480,189.090103,197.404144,195.569443,182.825638,157.007462,136.635559,127.015717,123.321503,118.536377,89.023979,73.982666,86.866959,98.668610,71.015724,32.652084,13.223986,10.776052,7.033897,7.326458,6.831417,8.736379,2.905792,0.709092,0.388431,0.096695,0.000000,0.000000,0.000000,0.000000,0.301653,0.000000,0.000000,0.000000,5.327273,0.000000,0.000000 -601797.155000,4612555.550000,5275,4155,134.332260,181.869431,175.547119,165.819839,149.728943,136.315720,136.009933,132.646301,131.348785,133.530594,132.505798,144.340500,161.728943,178.910751,189.357040,199.332245,198.819839,184.183487,159.414886,139.323975,128.745468,125.836372,121.290924,91.224808,74.919029,88.604973,101.191750,74.051254,35.175220,15.615721,11.026465,9.316543,10.666131,9.346294,8.365304,3.399180,0.952895,0.336365,0.240497,0.000000,0.000000,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,1.214050,0.000000 -601800.755000,4612555.550000,5293,4155,118.641335,174.176865,170.119019,157.945465,146.102478,133.094238,133.623154,131.218201,129.838043,132.672745,130.094238,141.036362,161.069427,176.515701,187.019836,197.854553,196.540497,184.226456,160.449585,139.309097,129.309113,125.664482,120.036385,91.788452,75.598373,89.532249,100.689278,75.135559,35.305805,14.705804,10.912417,8.825633,8.465302,9.718195,8.566130,3.675215,1.369424,0.691737,0.927274,0.091736,0.051240,0.154546,0.066116,0.000000,0.000000,0.000000,1.990083,0.000000,0.000000,0.000000 -601803.755000,4612555.550000,5308,4155,129.892563,182.198349,175.545456,163.958679,148.074387,136.247940,134.570251,133.388443,131.355377,132.611572,132.198349,143.595047,161.421494,178.090912,189.190079,198.867767,197.570251,184.512390,160.132233,139.223145,128.561996,126.528931,120.090919,91.595047,74.586800,88.776878,100.338852,75.404984,35.314075,16.213242,10.917375,9.373569,8.717370,9.153733,8.093403,2.213231,0.827274,0.455373,0.158678,0.125620,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,1.186777,0.000000,0.000000 -601807.155000,4612555.550000,5325,4155,134.678528,192.248779,176.819016,164.521500,149.769440,137.017365,137.174393,133.232239,132.124802,134.976044,132.992569,144.794235,163.025635,180.248779,191.579346,201.934723,197.728119,185.529770,161.190918,141.083481,129.314896,127.670258,121.554558,92.810760,76.091751,89.761169,102.323151,73.050423,34.728119,16.574398,11.050432,9.215717,10.776049,9.257038,9.303320,2.710752,0.716531,0.366944,0.082645,0.000000,0.000000,0.000000,0.000000,0.033058,0.000000,1.348760,0.000000,0.000000,0.000000,0.000000 -601811.155000,4612555.550000,5345,4155,124.298363,188.595871,174.389252,165.612411,149.265305,134.108276,134.058685,131.819016,130.248764,133.810760,130.562820,142.042160,160.463654,176.397522,188.835541,197.678513,195.926437,181.992554,158.240509,138.083481,128.380997,124.347946,118.372742,89.050438,73.835556,87.984322,98.496704,71.802498,33.290100,13.365307,10.761177,8.195882,7.017368,8.356212,6.771087,3.833893,0.295043,0.030579,0.124794,0.056199,0.000000,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.355000,4612555.550000,5366,4155,134.365295,189.408264,174.523972,164.044632,147.590088,134.507446,135.350418,131.499191,131.986786,134.854553,131.730591,142.263657,161.263641,178.230576,189.271912,199.214050,196.569427,184.057022,160.536362,139.809097,127.891747,126.114891,120.809105,91.189278,76.131424,88.577705,99.792580,74.536385,34.946301,15.050430,10.982664,8.523981,7.168607,9.394228,7.290095,5.294225,0.579340,0.327274,0.175207,0.052893,0.057851,0.000000,0.060331,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601819.755000,4612555.550000,5388,4155,140.518173,188.789276,174.589264,164.919846,148.002487,133.671921,133.233902,130.465302,128.614059,133.341339,129.556213,140.941345,158.792587,176.230591,188.346298,198.734726,196.007462,181.883484,159.718201,140.271927,127.792572,126.296715,119.172745,90.751266,75.015732,90.751251,101.461998,71.767799,34.519855,13.674398,10.833904,11.076050,7.878525,8.942989,9.324808,3.587611,1.344631,0.658680,0.700827,0.342150,0.252067,0.173554,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.355000,4612555.550000,5421,4155,147.890915,202.166946,180.704163,169.803329,154.340500,138.704147,136.687607,134.456207,134.505798,138.704147,133.505798,146.315720,163.737198,180.398376,192.059509,203.819839,200.836380,184.373566,162.034714,142.282654,131.497528,128.249603,123.381836,93.778534,76.191750,92.795059,103.323975,72.580185,36.861176,17.194233,11.216548,10.086792,8.911584,8.807450,10.689272,3.717364,0.851242,0.493390,0.147934,0.191736,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.355000,4612555.550000,5476,4155,110.638031,168.117371,171.902496,162.299179,146.811584,136.786789,134.208282,131.117371,131.109116,131.580185,132.646301,143.902496,162.828110,177.348770,189.935547,199.704147,200.200012,186.662827,161.919022,141.233063,130.282669,125.910759,120.654564,91.993408,75.530594,90.919029,103.241341,73.943817,35.241341,15.034730,10.968615,8.215716,8.250425,7.785964,9.097536,3.040504,0.781820,0.223968,0.276034,0.097521,0.118182,0.000000,0.049587,0.081818,1.291736,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.155000,4612555.550000,5560,4155,113.254562,166.469421,170.295868,159.114059,144.634735,135.725647,133.725632,130.725632,130.766953,131.800018,132.634720,143.452911,161.031418,177.940506,189.634720,197.998352,197.957031,185.609924,162.080994,139.775223,127.890923,124.428116,119.163651,91.180183,75.560349,89.213234,101.692574,73.204971,34.039688,14.511587,10.833077,7.503318,8.398361,7.498360,7.757864,4.338025,0.338843,0.131405,0.052066,0.000000,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,1.081818,0.000000,0.000000 -601880.355000,4612555.550000,5691,4155,118.530586,166.785141,170.942169,161.090927,147.545471,137.520676,135.487625,132.966949,132.834717,134.082657,135.016541,146.041336,164.049606,180.140518,192.628098,201.479340,201.363632,189.685944,165.595062,143.851257,131.727280,127.900833,122.636375,94.685959,77.363647,92.446289,103.256203,75.471085,36.925640,15.197538,11.148779,8.272740,8.648775,8.261170,8.666957,3.297528,0.788432,0.100000,0.113223,0.000000,0.058678,0.000000,0.076033,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.155000,4612555.550000,5885,4155,124.507454,174.152054,172.945435,164.424774,149.309097,139.441330,137.176865,134.714066,134.986786,137.482651,138.044632,148.598343,165.590073,182.606598,195.829742,205.300812,202.846268,193.019821,168.862793,146.284302,135.871078,129.490921,125.763657,96.490929,78.854568,93.639687,106.309113,81.854576,38.044647,16.048780,11.433077,6.848771,8.281008,8.473568,7.519848,4.061164,0.170248,0.217356,0.055372,0.052893,0.000000,0.000000,0.000000,0.058678,1.340496,0.000000,0.000000,0.000000,1.216529,2.220661 -601933.755000,4612555.550000,5958,4155,139.892593,182.462845,172.082672,165.421524,149.256226,139.413254,138.305817,135.925629,134.611588,138.768631,138.429779,149.289291,166.082672,184.231430,196.347122,206.760330,205.950424,195.057861,170.057877,147.743835,135.561996,131.570251,126.636375,96.950432,80.363655,94.421501,107.157043,80.834724,36.520676,15.556217,11.512416,5.650423,8.322330,7.889272,6.838855,3.513232,0.447109,0.372728,0.071901,0.014876,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.155000,4612555.550000,5995,4155,120.571091,178.710754,178.487625,166.801666,153.462830,140.347122,137.876053,136.438034,134.909103,138.157043,137.818192,148.859528,166.206635,182.884308,194.644638,205.983490,206.314072,194.454559,168.743820,147.636383,135.082657,130.041336,126.000008,97.528938,80.429764,94.247948,105.512413,80.768600,38.181839,14.859522,11.454565,6.739680,7.312412,7.681006,7.861998,2.481823,0.322315,0.554546,0.047108,0.144629,0.040496,0.000000,0.011570,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.955000,4612555.550000,6009,4155,119.709930,174.873581,176.881851,163.270279,145.981018,136.493408,135.633896,132.716537,131.923157,132.873566,133.485138,145.171097,163.410751,181.080185,193.658707,204.311600,203.923172,190.534729,166.898376,144.650436,134.410751,131.782654,127.245461,97.675217,81.576050,96.410759,108.551247,78.113243,39.584316,16.453737,11.567787,9.107453,8.366130,10.224809,9.595882,5.409926,1.779343,0.521489,0.095868,0.132232,0.171075,0.010744,0.200000,0.194215,0.000000,0.000000,0.000000,0.000000,1.176033,0.000000 -601946.755000,4612555.550000,6023,4155,109.806625,176.291763,177.853745,162.647110,147.300003,135.738022,135.209091,131.804138,131.043808,132.448761,133.101654,144.746292,163.076889,179.754562,191.985977,202.853745,203.300018,189.043823,164.977707,142.985962,132.895050,130.225632,124.936378,95.514893,79.374397,93.878525,105.093407,76.713234,36.928116,15.819025,11.357870,9.194231,8.777700,9.688445,9.419022,5.804967,0.840498,0.352067,0.682646,0.550414,0.338844,0.000000,0.201653,0.266116,0.000000,0.000000,1.300000,0.000000,0.000000,0.000000 -601949.955000,4612555.550000,6039,4155,113.655388,178.180176,181.188431,167.345459,147.395050,135.634720,135.428101,132.031418,131.180176,133.147125,132.816544,146.031418,163.890915,180.576859,192.353729,204.188431,203.750427,190.494217,164.874390,142.866119,132.907455,129.742157,124.163651,94.717369,78.709106,93.948776,104.824806,76.411583,38.200848,16.296711,11.287622,9.706626,8.680179,9.519848,9.863650,5.157858,1.758681,0.790084,0.468596,0.139670,0.128100,0.000000,0.290083,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.155000,4612555.550000,6055,4155,110.080177,178.392578,178.971085,165.227295,148.136383,137.557861,137.400848,133.508286,133.747955,134.648773,134.500015,146.566132,165.698364,181.541336,193.400848,204.169434,204.665298,191.285141,166.805801,143.896713,132.731415,130.946304,124.409096,96.037209,80.756218,93.971085,107.078529,77.797539,38.012417,15.182662,11.309937,11.581833,9.095881,9.678526,9.644642,4.367775,0.885952,0.415703,0.718183,0.110744,0.053719,0.000000,0.012397,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,6.723968 -601955.755000,4612555.550000,6068,4155,113.909103,179.314056,178.157028,163.297516,145.909088,134.570267,135.338852,131.479355,131.024811,132.140518,133.024811,144.181824,163.289261,180.057846,191.966949,202.661163,202.611572,188.710739,164.545456,142.942154,132.148773,128.429764,123.727287,94.578529,79.487617,92.396713,105.867783,77.214890,36.661182,13.633075,11.247952,9.123153,8.653732,8.884310,11.266958,3.765297,0.625621,0.260331,0.090083,0.252893,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.555000,4612555.550000,6092,4155,118.372726,181.123138,181.289261,168.949585,148.896698,134.020660,132.619019,130.106613,130.428925,132.817352,133.657028,145.619019,164.519836,182.197525,193.809097,205.205795,205.387604,191.263641,166.139679,142.924789,132.602493,130.057037,124.081818,95.404144,79.652077,93.255386,104.255386,76.114899,38.065311,15.063653,11.280184,12.541337,9.685139,11.331421,14.055387,8.323977,3.628104,2.722317,2.054548,1.667770,0.980993,1.192563,1.192563,0.507439,0.000000,2.980165,0.678513,0.000000,0.582645,0.000000 -601965.755000,4612555.550000,6118,4155,116.219025,187.772720,177.979340,165.623962,150.144623,135.855377,135.599167,132.293396,132.037201,134.185959,133.657028,145.640503,164.210739,181.450409,193.400833,204.623962,204.252060,190.367767,166.657028,143.177689,132.268600,130.061996,125.863647,95.830589,79.814072,94.516541,106.020676,76.714897,38.301674,15.173572,11.442168,10.436379,9.451256,9.885139,10.242165,4.633893,0.753721,0.795043,0.593390,0.127273,0.000000,0.000000,0.055372,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.955000,4612555.550000,6134,4155,111.222328,181.552902,181.486801,165.966141,146.982651,136.139679,135.660339,132.643814,132.809097,135.304977,133.685135,146.081818,163.015717,180.767792,192.536377,203.833893,202.371078,187.007462,164.627289,143.238846,131.966141,129.098358,125.172745,94.280174,78.313248,92.230591,104.106621,74.519852,35.147953,13.479356,11.379359,9.999188,9.238857,9.567783,8.877701,2.609097,1.190086,0.473555,0.050413,0.000000,0.000000,0.000000,0.076034,0.237191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.755000,4612555.550000,6158,4155,109.358688,184.932251,181.437195,166.885971,151.753738,135.580170,135.976868,132.902496,132.464478,135.139694,133.767792,146.652069,164.810760,181.695053,194.364471,205.934708,204.711578,190.050430,166.182663,143.571091,134.199188,130.876877,125.554558,96.237198,80.526459,95.402489,106.265305,77.868607,37.901676,14.581836,11.414067,11.665303,8.683485,9.507452,11.305800,6.238853,1.251242,0.518184,0.753721,1.001654,0.591736,0.272728,0.000000,0.120661,0.000000,1.660331,0.000000,0.000000,0.000000,0.000000 -601978.755000,4612555.550000,6183,4155,111.061989,171.376038,173.103302,164.111572,148.194214,135.896713,133.260345,132.012405,129.640503,133.169434,131.483475,140.921494,157.161163,174.541321,185.260330,196.979340,196.301651,183.938019,160.962814,138.657028,128.681824,125.111580,120.954552,93.334724,78.169449,92.342995,101.731415,75.574394,34.805805,13.221505,10.995887,5.752077,7.942990,7.460343,8.174393,2.596699,0.352895,0.242150,0.202480,0.209918,0.027273,0.198347,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.555000,4612555.550000,6207,4155,117.771088,168.390915,172.118195,164.688431,147.812424,137.118210,134.324814,132.506622,131.076874,133.985962,133.019028,143.167786,158.572739,175.523148,187.564468,197.085129,197.680176,185.060333,161.580994,139.754562,131.349594,126.862000,121.209106,96.291748,80.209114,94.465302,103.035553,75.209114,36.283489,15.259521,11.019027,7.095880,8.213239,7.706625,8.464477,3.508270,0.820663,0.214050,0.303307,0.179339,0.000000,0.000000,0.787604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601989.755000,4612555.550000,6238,4155,107.865295,167.088440,170.104965,162.080170,147.030594,135.584305,134.278519,130.352905,128.700012,132.534714,131.038849,142.088440,157.460342,175.138031,185.311584,196.047119,196.898361,182.865295,160.344635,138.757858,128.402496,125.790916,121.063644,93.584297,78.286789,92.592560,101.336365,74.939682,36.228947,14.042992,11.005804,7.149598,7.990924,7.582657,7.814064,4.296700,0.189257,0.175207,0.000000,0.000000,0.000000,0.063637,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.555000,4612555.550000,6267,4155,98.253738,167.245453,167.261993,162.022324,146.435532,135.617371,133.220673,129.650436,128.898361,132.237213,131.005798,140.956207,156.385941,173.683472,184.617355,194.410736,195.609085,182.063629,159.319839,139.625626,128.658691,124.162827,119.700020,93.716545,78.683487,91.204147,100.452087,74.906631,36.567791,14.313242,10.881838,4.404967,7.871091,7.470260,7.827286,2.886781,0.496695,0.052066,0.219009,0.182645,0.009918,0.000000,0.000000,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601999.155000,4612555.550000,6285,4155,108.971916,164.327286,167.269440,158.980179,144.128937,133.633072,130.690918,127.938858,127.046295,128.823151,129.963654,139.095886,155.566956,170.914062,182.409927,193.236374,193.071091,182.195053,157.426453,136.938858,126.757034,123.393402,118.509102,93.360344,78.137199,91.310760,101.319023,74.566956,36.244644,14.959523,10.773573,4.985961,7.947949,6.995880,6.352904,2.914881,0.569423,0.506613,0.346282,0.000000,0.000000,0.266943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.755000,4612555.550000,6308,4155,106.309105,163.259521,167.920685,160.788452,145.052917,134.201675,132.441345,129.135544,127.069435,130.168610,130.664474,140.209930,156.689270,171.871094,184.152084,194.697540,194.656219,182.747131,159.945480,137.928940,128.598358,124.557037,119.581833,92.400009,77.730591,89.284309,100.317368,74.821503,35.912415,14.044645,10.871094,6.317368,8.030596,7.872740,7.145468,2.700831,0.378513,0.280993,0.226447,0.000000,0.003306,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.755000,4612555.550000,6323,4155,103.039680,159.188431,168.857864,160.171906,145.320663,134.692581,132.122330,129.849594,128.023148,130.138855,130.709106,139.535538,155.452896,171.527283,183.932236,193.667770,193.766953,182.651245,158.072739,136.882645,127.147125,122.783485,119.072739,92.700844,76.386803,90.733902,102.130592,74.378532,34.543823,12.609108,10.824813,5.979350,8.514892,6.800839,5.761995,3.220666,1.098350,0.252067,0.217356,0.003306,0.000000,0.000000,0.562810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.755000,4612555.550000,6343,4155,90.466133,158.540497,166.003311,157.862808,143.672729,133.449600,129.052917,128.523987,126.234734,128.953735,128.722336,139.581833,154.904129,170.895874,183.036362,193.267776,192.085953,181.821487,157.714050,136.416550,126.474396,122.788452,119.036385,91.970268,76.771919,90.912415,101.573570,73.730598,33.854565,13.782662,10.821507,5.704142,6.997534,7.698359,6.445467,2.125624,0.766944,0.356200,0.166116,0.329753,0.001653,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.355000,4612555.550000,6376,4155,100.717377,157.940521,168.130600,158.973572,144.370270,134.783493,133.023148,130.651260,129.519028,130.659515,131.345474,142.213242,157.923996,173.047943,184.791748,195.428116,194.758698,183.510757,160.031433,138.147125,129.461166,124.254562,120.254562,93.461182,77.552086,92.651260,101.419861,76.122337,37.609936,15.997539,10.932251,7.015714,9.344644,7.663648,8.020675,3.714055,1.412399,0.529754,0.355373,0.602480,0.000000,0.133058,0.583471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602022.555000,4612555.550000,6402,4155,102.476883,155.964478,167.790924,159.790924,145.848785,135.757858,132.047119,129.807449,128.642166,130.038864,131.344650,141.782654,157.344635,172.782669,185.237198,195.724792,194.708252,183.567795,160.038849,138.898361,129.675232,125.460358,121.063660,93.890106,78.476883,92.452095,102.005814,75.270271,37.774403,15.257869,11.005805,5.557035,9.543818,8.857863,7.255386,2.451243,0.366117,0.090910,0.151240,0.071901,0.111570,0.222315,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.955000,4612555.550000,6424,4155,87.895058,159.424011,166.333099,159.143021,144.572769,135.506638,131.878525,129.250427,128.291748,129.415710,130.027283,140.721527,156.250458,171.853760,183.762848,194.275238,194.217392,182.977722,160.250458,138.341339,129.060349,125.209106,120.209106,93.035553,78.019020,92.184311,102.043816,75.035553,37.291759,15.139688,10.928118,5.712409,6.823981,7.489269,7.432244,3.155378,0.476035,0.278514,0.238017,0.029752,0.008265,0.083471,0.277686,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.155000,4612555.550000,6445,4155,99.262009,152.179352,164.832245,158.344635,142.171082,133.873581,131.146301,126.898376,126.088455,127.658707,128.733078,139.204147,154.997528,170.278519,183.832245,194.774399,193.774399,181.047119,158.195877,136.278519,126.873581,122.493416,118.518211,92.146301,76.262009,90.352921,101.088448,75.253746,35.245476,13.825638,10.774400,6.022326,7.226461,8.763649,7.694226,4.509925,0.239671,0.549589,0.362811,0.189257,0.050414,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,1.401653,0.000000 -602036.155000,4612555.550000,6470,4155,104.702492,155.464493,166.290939,157.687622,142.381851,133.059509,129.538849,128.158691,126.662819,128.175217,129.481003,139.150421,155.728958,171.282669,183.365311,192.910767,194.398376,181.315735,158.001678,136.795044,127.241333,123.348770,118.109100,92.026459,76.257858,90.158684,100.985130,71.885963,34.522331,13.207455,10.737210,5.728936,6.393401,7.345468,7.509104,2.577691,0.852068,0.468596,0.617356,0.266116,0.340496,0.204959,0.447108,0.280165,0.000000,1.423141,0.000000,1.067769,0.000000,0.000000 -602046.355000,4612555.550000,6521,4155,97.528122,152.949600,167.949600,157.503326,144.627289,135.338043,130.866959,128.304977,126.643822,128.462006,129.875229,140.379364,156.428940,170.990921,183.007462,194.338043,193.825638,182.321503,159.263657,137.643814,126.577705,123.842171,119.536385,93.296715,76.784317,91.238861,101.966133,73.057045,35.073574,12.817372,10.866961,4.922322,7.674396,7.760343,6.582657,2.593394,1.175210,0.287604,0.208265,0.032232,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.355000,4612555.550000,6546,4155,97.220680,155.788437,168.424789,159.292572,144.251236,133.920670,131.028107,127.284309,127.201668,128.209930,129.912415,140.490906,156.267776,171.854553,184.771912,193.094223,193.449585,181.631409,159.193390,138.391739,128.705795,125.391747,120.490921,93.623161,78.887619,92.722336,103.085960,76.085968,37.036385,14.395059,10.953737,7.247946,8.558694,8.771914,9.062823,4.115708,0.985954,0.495042,0.550414,0.556199,0.264463,0.209918,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.755000,4612555.550000,6563,4155,88.481010,154.009949,167.076065,159.695892,143.704163,134.563660,131.976883,129.117371,128.133896,129.365311,130.076050,140.662842,156.282669,172.076065,183.274399,193.679367,193.795074,182.034729,159.150436,138.770279,128.927292,124.679359,118.745476,93.092583,79.274399,92.456215,101.778534,74.638031,35.257870,14.301671,10.795061,7.361997,7.672743,9.195882,8.187616,3.652072,0.796696,0.092563,0.293389,0.102480,0.096694,0.156199,0.000000,0.504133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.755000,4612555.550000,6588,4155,113.642990,156.626465,164.328949,156.659515,142.378540,132.262833,130.452911,127.560356,127.543823,127.915718,128.552078,139.271103,155.419846,170.328949,182.477707,192.403336,193.552094,180.998352,158.403336,136.419861,126.742165,124.370270,118.618187,91.692574,77.494232,91.262825,101.502495,73.031418,35.765305,13.110760,10.783489,6.186788,7.254561,7.417368,8.974395,2.170252,0.500002,0.291738,0.267769,0.289257,0.000000,0.082645,0.000000,0.765290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602065.755000,4612555.550000,6618,4155,101.024818,155.793411,168.876053,158.173569,144.371918,136.041336,133.900848,131.148773,128.785141,129.545471,130.842987,141.462845,157.495880,173.214890,183.793411,196.049606,193.231415,183.652908,161.173569,138.669449,130.074402,125.859528,119.818207,95.570267,78.355385,92.801666,103.066132,73.768608,37.520679,14.472745,10.892581,6.625632,8.902495,8.695054,9.866130,3.050418,0.753721,0.086777,0.000000,0.031405,0.111570,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602071.755000,4612555.550000,6648,4155,88.680183,162.862000,171.432251,157.068619,144.176056,135.969437,132.663666,129.465317,129.316559,129.564484,131.225647,141.919861,157.812424,172.886795,185.233887,195.233871,196.630569,183.638870,161.151260,140.357880,129.209106,126.415726,121.754570,95.209114,79.250427,93.589279,103.630600,74.275230,36.052086,15.027290,11.068615,7.654559,8.845469,7.515714,7.748773,3.659511,0.649589,0.056200,0.442976,0.307439,0.000000,0.295042,0.000000,0.000000,2.338017,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.955000,4612555.550000,6689,4155,97.410751,158.527298,168.816559,158.188446,145.568604,132.841324,132.890915,129.485962,128.709091,129.461166,130.039673,140.337204,156.783493,171.238037,183.122330,193.973572,195.089279,182.056213,158.766968,138.808273,128.890915,125.361992,120.981827,94.196701,78.559517,92.246284,104.014885,75.320679,36.833076,15.711588,10.998365,6.593401,8.836378,10.051253,9.471914,3.751246,0.901655,0.617358,0.304133,0.201654,0.408265,0.373555,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602089.355000,4612555.550000,6736,4155,94.240517,161.290115,167.909927,156.025635,145.017365,133.711578,131.538025,128.546295,127.984322,129.083481,129.926468,140.364471,157.761169,172.703323,184.331421,194.422333,195.248779,183.050430,160.042160,140.017365,129.794235,125.480186,120.554565,92.736382,78.273567,94.323158,102.463654,75.496712,36.100021,15.227291,10.959523,7.452080,9.767784,9.874394,7.199186,3.690915,0.814052,0.095869,0.107438,0.198348,0.028099,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.155000,4612555.550000,6760,4155,88.939690,155.005798,169.245468,158.981003,145.675217,135.212402,132.700012,128.799179,128.815720,129.385956,130.716537,140.253723,156.278519,171.716537,184.319839,193.931412,194.741333,182.766129,159.790924,139.336380,129.914886,124.741333,120.609100,94.501671,79.452087,91.989273,103.865295,76.319855,35.956219,16.113239,10.964481,7.676871,9.453735,8.592576,8.496709,4.623974,0.255374,0.211571,0.153719,0.032232,0.000000,0.000000,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.955000,4612555.550000,6789,4155,99.209106,160.341339,172.506638,160.713242,145.333084,136.035553,132.581009,130.399185,128.457047,128.647125,129.845474,140.721512,156.721512,172.779358,184.390930,194.936386,195.109940,183.771103,160.490112,140.101669,129.969437,125.812408,122.027290,94.754562,78.994232,94.085136,105.027290,75.589272,35.845474,15.877704,11.093407,8.862824,8.700016,9.805799,8.970261,4.301660,0.334713,0.323142,0.200827,0.137190,0.084298,0.392563,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.555000,4612555.550000,6807,4155,102.409935,166.856232,168.922333,157.385132,143.484314,133.690918,131.914062,127.294228,126.533897,127.021500,128.219849,138.831421,155.608276,170.476044,182.335571,192.517380,193.451263,181.922348,159.335556,137.881012,126.806633,124.533905,118.781837,92.368614,77.872749,91.451263,102.930603,73.856216,35.244648,14.209109,10.798367,7.137202,8.502494,6.591748,7.894229,4.499181,0.484298,0.258679,0.319835,0.000000,0.000000,0.079339,0.138843,0.199174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.755000,4612555.550000,6823,4155,87.476051,158.897537,167.889267,160.244644,144.211578,134.476044,132.608276,129.219849,128.409927,128.509109,130.062820,141.029770,157.087616,172.633072,183.988449,194.881012,194.426453,182.451248,159.980164,138.757034,128.847946,126.153732,120.236374,93.897537,78.492577,91.575218,103.566956,75.087624,35.707458,15.119852,10.930597,7.433897,9.506626,9.736377,9.616544,1.852069,0.861160,0.429754,0.109091,0.072728,0.000000,0.147108,0.000000,0.424794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602111.755000,4612555.550000,6848,4155,94.837212,160.837219,168.812424,158.779358,145.374405,133.407455,129.771103,126.266968,126.068619,126.085144,127.457047,139.200851,155.944656,171.547943,182.614044,193.647095,193.804123,181.820648,158.167786,138.564484,128.614075,125.291756,119.118202,91.423988,76.820686,91.911591,102.448784,75.333084,35.614067,15.265307,10.828945,7.507450,9.131420,8.661169,8.126458,2.596698,0.785953,0.579340,0.204959,0.461984,0.005785,0.233885,0.000000,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.155000,4612555.550000,6875,4155,92.128113,169.070251,170.954544,162.037186,146.805801,135.615723,134.334732,131.235550,129.938034,131.103317,132.309937,142.516541,158.706604,174.500000,186.772720,196.830582,197.334717,183.962814,162.020660,140.673569,131.590927,128.095062,123.045471,94.376053,79.954559,92.442162,104.177704,77.103325,37.987625,17.249605,11.185968,8.593401,10.706628,9.152081,8.668610,4.580172,0.575208,0.323968,0.060331,0.092562,0.121488,0.065289,0.272728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602119.955000,4612555.550000,6889,4155,94.095894,159.947098,169.029755,159.633057,143.889282,133.525635,132.922333,129.360336,127.897537,128.591751,129.897537,138.988464,156.004974,171.294205,181.963638,193.980164,194.062805,182.153717,158.203308,138.814911,127.881004,126.054558,120.418205,93.773567,78.790100,92.566956,103.062836,73.881012,35.757042,14.060349,10.947127,8.181830,9.059521,8.108277,9.296708,3.590088,0.949588,0.000000,0.240497,0.000000,0.020661,0.160331,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.755000,4612555.550000,6903,4155,93.861176,168.943802,171.604950,162.927261,144.249603,134.166962,133.009933,129.555389,127.919029,129.299194,130.679352,140.439697,156.042969,172.712387,184.604950,195.332230,194.489243,182.299164,159.439667,138.795074,129.323990,126.720680,121.200020,93.613243,79.150429,90.381836,102.183487,75.447952,36.315723,15.128943,11.018202,9.669436,11.351256,9.400842,9.495055,4.513230,0.542976,0.253721,0.288431,0.132232,0.400000,0.233058,0.885951,0.000000,0.000000,0.000000,1.890909,0.000000,0.000000,0.000000 -602126.555000,4612555.550000,6922,4155,102.034729,167.877716,172.762009,160.770279,145.919037,134.224808,132.100845,129.555389,127.985138,130.026459,130.348785,140.828125,157.241348,173.323990,184.654572,197.390106,196.547134,182.042999,160.447952,140.489288,129.836380,125.927292,120.472748,94.728943,78.398361,92.654564,102.985138,74.828125,35.596710,15.280183,10.952084,8.190921,8.987619,9.407452,8.430593,2.990913,0.765291,0.167769,0.315703,0.137191,0.010744,0.427273,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.755000,4612555.550000,6948,4155,95.043823,168.762817,169.671906,161.250443,143.630600,132.407455,132.085144,127.837212,127.952911,130.382660,128.440521,139.457047,156.721512,172.680176,183.820663,194.746292,195.142975,181.324799,160.184326,138.862000,129.994232,125.316551,121.027290,93.217377,75.911591,91.936386,101.936386,71.688454,33.936382,14.612414,11.002499,9.122327,7.990924,7.758690,6.749599,2.523145,0.697523,0.133058,0.056199,0.038017,0.006612,0.000000,0.141323,0.000000,0.000000,0.000000,1.809091,0.000000,0.000000,0.000000 -602139.755000,4612555.550000,6988,4155,107.882660,172.287613,172.965302,161.436371,146.618195,133.800018,132.097534,130.527283,129.849594,131.849594,130.667786,142.097534,157.089264,173.998352,185.188431,196.725632,196.733887,182.882645,159.833069,139.882645,129.998367,127.386795,122.072739,95.039680,79.700844,92.725632,101.990097,74.576874,35.965305,13.066959,11.097539,8.092575,9.128942,8.546293,8.904145,3.243808,0.380993,0.289257,0.129752,0.227273,0.000000,0.070248,0.237190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.235538 -602143.955000,4612555.550000,7009,4155,114.734734,172.337997,168.759506,162.478531,146.015717,134.982666,134.040512,130.792587,130.280182,133.172745,130.362823,142.652084,158.875229,174.032211,186.329742,197.833878,197.676849,182.875198,161.329773,140.817368,131.023987,127.916550,122.809113,95.230598,79.660347,93.718201,101.577705,74.098366,35.453739,14.177704,11.164482,9.696707,8.535553,9.493402,10.121500,4.055378,0.457853,0.005786,0.163637,0.212397,0.169422,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.355000,4612555.550000,7036,4155,112.931427,173.014053,174.700012,163.534714,147.138046,135.245483,132.352921,131.121521,130.956223,133.848785,131.873581,143.931427,160.518188,176.559509,190.526459,203.022308,201.138016,187.567780,165.518188,145.195892,136.022339,131.460358,127.790932,98.509941,82.138039,96.947960,105.691765,75.931427,35.361176,14.157044,11.617375,9.174393,9.624808,9.896708,9.516543,4.330587,0.565292,0.322315,0.310745,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.955000,4612555.550000,7064,4155,110.565308,178.871094,172.383484,167.209930,148.846298,136.532257,135.135559,132.507462,133.160355,137.895889,133.804977,145.342163,161.375229,180.028122,192.887619,204.400024,204.077698,188.400024,168.309113,148.061172,137.573578,135.127289,128.763657,100.193405,84.160347,100.119026,107.738861,76.871094,38.168613,14.205803,11.705805,10.396709,8.192576,9.826461,9.343816,4.859513,0.914879,0.161158,0.361984,0.000000,0.005785,0.010744,0.078513,0.000000,0.000000,1.583471,0.000000,0.000000,0.000000,0.000000 -602160.955000,4612555.550000,7094,4155,126.689270,182.557007,176.730560,167.895859,152.069443,139.879364,138.375229,134.788437,134.730591,139.317368,136.069443,147.052917,162.507446,180.408249,194.069412,206.309082,206.201645,190.193375,169.507431,149.928940,139.226471,135.523972,131.218201,102.449608,86.672745,102.209930,111.028107,80.639687,40.854565,19.558697,11.928945,12.976047,11.014067,10.834726,11.812412,6.861168,1.112400,0.816532,0.234711,0.544629,0.071075,0.000000,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602163.755000,4612555.550000,7108,4155,126.436371,181.188416,171.692566,164.171906,146.105789,136.238022,134.287613,131.196701,132.056198,135.560333,130.948761,144.419846,159.221497,177.271057,190.304108,203.436340,203.031372,187.056183,166.568604,146.618195,136.378525,133.601654,126.709099,98.791748,82.849602,99.626457,109.171913,77.923988,38.882668,15.965307,11.519026,11.452906,8.919850,9.983488,8.581004,3.508272,0.480993,0.075207,0.109918,0.404959,0.000000,0.014050,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,1.290909,0.000000 -602168.555000,4612555.550000,7132,4155,102.129768,167.020660,166.309921,158.268600,142.789261,132.623978,130.747955,127.995880,127.276878,131.971085,129.747955,141.004135,157.648758,173.334717,187.210739,199.318176,199.830582,186.037186,164.830582,144.161163,133.690094,130.037201,125.227287,96.194237,80.367783,97.392586,106.838867,78.070267,38.309937,14.872745,11.384316,9.737204,8.438030,10.674396,8.353732,3.523976,0.947110,0.484300,0.072727,0.191736,0.000000,0.089256,0.108265,0.262810,1.295868,0.000000,0.795868,0.000000,0.000000,0.000000 -602174.355000,4612555.550000,7161,4155,92.006622,146.353729,156.651245,147.783478,134.469437,125.866127,121.287628,120.262833,118.626472,120.097542,121.965309,132.519028,150.031418,166.122314,178.452896,190.229752,190.841324,180.494217,158.915710,138.626450,127.436378,122.940521,116.345467,88.800018,73.907455,91.626457,106.031425,78.709114,36.576881,13.371917,10.576880,4.793397,8.751253,7.625633,7.718193,3.109924,0.738019,0.400001,0.000000,0.253720,0.000000,0.000000,0.000000,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602178.955000,4612555.550000,7184,4155,90.330597,144.363663,158.074402,147.347122,133.578537,123.173569,120.603325,118.008278,117.057869,119.000015,118.842995,130.157043,148.933899,163.950424,176.578552,188.107468,188.528961,177.975235,155.743835,136.206650,124.925636,120.140511,115.000015,88.024811,73.297539,89.446297,105.322327,78.842995,36.380184,13.637208,10.454565,5.029764,9.774395,8.331419,7.588441,3.229760,0.405787,0.138017,0.000000,0.028099,0.000000,0.000000,0.072727,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.355000,4612555.550000,7216,4155,105.919846,149.605789,157.481827,148.266953,134.440506,124.820679,122.911583,120.159515,119.407455,120.134727,122.093407,132.291748,150.209091,165.324799,178.250443,189.911591,190.192581,179.746307,158.242157,138.704987,126.804146,121.969437,116.663651,89.647125,73.696709,92.192574,107.068611,81.151253,39.101673,15.511589,10.605804,6.537202,8.757041,10.804974,9.233072,4.351248,0.888431,0.066116,0.119009,0.060331,0.060331,0.000000,0.300000,0.117356,2.352067,0.000000,0.000000,0.000000,0.000000,0.000000 -602189.155000,4612555.550000,7235,4155,94.190102,145.528961,156.289291,147.041351,134.528931,125.586792,123.471092,120.553734,119.115715,120.644646,122.619850,132.148773,150.123993,166.355408,178.479370,189.950439,190.619873,180.049622,157.719040,138.347137,127.603325,123.140511,116.727287,91.223160,74.347122,92.082664,107.049606,82.247948,39.272747,14.695886,10.611588,5.976873,8.804974,8.860345,7.421498,3.477695,0.716531,0.604961,0.000000,0.066942,0.233885,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.355000,4612555.550000,7261,4155,86.554573,150.182663,156.835556,148.182663,134.273560,125.819031,123.199196,119.207458,117.595886,118.050438,120.934731,131.562820,148.116547,164.695053,176.265305,187.719849,188.752899,178.100006,156.257034,136.819016,124.785973,121.009109,115.100021,88.116539,72.290115,90.050438,104.876877,79.876877,36.240517,14.190926,10.463655,3.502489,7.752907,8.597535,7.836377,4.023149,0.529754,0.404960,0.028099,0.045455,0.000000,0.072727,0.207438,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602199.155000,4612555.550000,7285,4155,94.180183,144.552078,153.766953,144.923981,131.824799,123.618187,120.692566,117.808273,115.395050,117.370255,119.114059,129.593399,147.510757,162.973557,175.882645,186.998352,187.899185,177.196701,155.089264,134.957031,124.535545,119.833061,113.254555,86.337196,70.477707,88.362000,104.196701,76.485962,34.742168,12.116545,10.295886,5.373564,7.861998,6.780180,7.234723,2.440502,0.386778,0.003306,0.000000,0.060331,0.000000,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602202.755000,4612555.550000,7303,4155,93.093391,147.754547,153.944641,144.308273,130.266953,121.019012,118.961166,114.043808,115.126450,115.242157,116.506615,127.895050,145.506622,160.961166,173.159531,184.837219,185.159546,174.506638,153.225632,133.440506,122.457031,119.209099,111.845459,84.382668,70.176056,88.415726,102.283478,76.390930,33.771091,11.792578,10.167789,7.410758,7.595055,7.739683,5.736375,3.540504,0.491737,0.115703,0.000000,0.082645,0.023967,0.000000,0.200000,0.307438,0.000000,0.000000,0.000000,2.968596,0.000000,0.000000 -602208.155000,4612555.550000,7330,4155,91.061180,143.234726,157.573563,146.697525,132.350433,124.011589,120.317375,118.697540,116.920677,116.689278,119.441345,129.986801,148.069427,162.358688,175.705795,186.102478,187.507446,177.234711,155.325623,135.755386,124.829773,121.052910,115.036385,88.069443,72.243004,89.871094,104.251251,76.457863,37.614899,13.654564,10.457870,6.217368,8.462825,7.795881,8.582657,2.981000,0.675209,0.577687,0.043802,0.138844,0.372728,0.000000,0.253719,0.000000,1.508265,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.955000,4612555.550000,7374,4155,99.354568,144.833893,153.619019,145.486801,129.635559,120.949608,117.966133,114.329773,115.247124,114.776054,116.916550,127.668617,144.181000,161.156219,173.263641,182.189255,183.445465,172.635544,151.519836,132.090103,123.040512,119.561180,114.263657,87.156219,71.999191,89.916550,106.842171,78.701675,34.999191,13.455390,10.387623,6.130589,6.757864,8.149600,7.866954,3.623976,1.215706,0.374381,0.099174,0.327274,0.142149,0.000000,0.132232,0.919836,0.000000,0.000000,0.000000,0.000000,0.000000,1.954546 -602227.555000,4612555.550000,7427,4155,137.487625,162.619858,158.380188,148.247955,132.239685,122.966949,118.066124,114.743813,113.644638,113.553726,113.677696,123.107445,138.305801,152.512405,163.181839,171.619858,170.347122,160.355392,141.942169,124.677696,116.578522,113.206619,109.454552,87.611580,71.264481,86.079361,102.173561,77.685966,35.710766,12.457042,9.950433,7.417368,9.312412,9.403322,10.237204,3.566123,0.761159,0.493390,0.783472,0.143802,0.000000,0.000000,0.400827,0.247108,0.000000,0.000000,0.000000,0.000000,1.870248,0.000000 -602254.155000,4612555.550000,7560,4155,163.804977,170.419037,157.352921,142.419037,126.047127,113.625618,110.237190,107.179359,106.493408,107.567772,108.691734,119.633904,138.080185,154.559525,168.245483,178.138046,178.782669,169.038864,149.865311,130.708282,120.212418,116.534714,115.245453,86.518196,67.419029,87.625641,111.237190,86.071922,39.022331,12.606629,10.476879,9.184312,10.037207,11.948776,12.864478,8.937203,4.257859,1.064466,1.029754,0.013224,0.358679,0.572729,0.240496,0.000000,6.671075,6.576034,2.361984,2.890909,1.043802,0.000000 -602259.955000,4612555.550000,7589,4155,175.252075,166.119019,155.970245,140.573578,124.309105,113.259514,109.730591,107.152077,106.664474,108.829765,109.028107,121.185135,139.366959,157.110748,172.945465,183.143799,185.788437,176.763641,158.168594,138.606613,126.879349,123.895882,122.218193,92.028122,71.614899,93.003326,119.019844,89.705803,41.036381,15.042992,11.110763,9.671914,9.528114,10.838857,15.132247,9.538030,2.664469,0.806615,0.957854,0.603308,0.542977,1.126448,1.818183,0.386777,5.316529,2.475207,4.590909,2.899174,3.644629,2.083471 -602267.955000,4612555.550000,7629,4155,132.880173,167.319000,155.790100,140.616531,125.666122,114.319023,111.095879,108.211586,106.856209,108.715714,109.186790,120.252907,139.385117,156.327286,171.170242,182.294205,184.823135,174.872726,153.839676,133.327271,122.533890,119.294228,115.054558,85.674393,64.905800,84.492577,105.765305,78.195053,35.641342,12.528117,10.459523,7.454558,8.838857,9.679354,12.611586,7.353731,1.612402,0.635541,0.810746,0.427274,0.205786,0.827274,1.206612,0.803306,5.587604,4.204959,4.344629,0.959504,0.000000,2.253719 -602273.555000,4612555.550000,7657,4155,139.495880,139.489273,127.323975,113.786789,101.026459,90.100838,91.621498,90.819847,90.985130,95.811577,97.464470,111.067780,131.150421,149.423157,164.910751,177.852905,183.290924,179.340500,165.985138,151.282654,141.761993,142.059509,140.836380,112.522324,87.621506,112.993401,151.018188,131.158691,68.720673,16.502497,12.803324,11.620675,16.670263,23.832249,35.414898,30.789274,3.719841,0.666944,0.179339,0.119009,0.033884,0.195868,0.000000,0.270248,6.164464,9.330580,3.303307,3.291737,4.738844,9.742975 -601293.155000,4612545.550000,2755,4205,52.595882,58.827286,47.100014,36.769436,28.037203,21.282654,19.553730,18.109928,17.283480,17.078522,16.288439,20.623976,27.537201,34.099186,40.706623,48.346298,49.553734,48.738857,46.045471,38.901665,33.723152,33.379349,33.818195,19.023149,9.793394,21.227283,59.619850,71.793404,38.365303,6.156209,3.074393,14.505797,14.981833,29.512413,43.042992,36.676880,5.127279,0.456199,0.125620,0.128099,0.000000,0.308265,0.067769,0.000000,4.748762,1.587604,0.379339,0.224794,2.114050,4.498348 -601306.355000,4612545.550000,2821,4205,164.727295,159.892578,136.396713,119.404984,103.818199,89.545471,87.479355,83.380188,81.710770,83.768616,80.363655,90.504150,106.223160,119.570274,128.710770,139.504150,140.115723,133.371918,121.322342,107.396713,97.842995,96.719025,93.272743,65.421501,47.033077,66.314064,101.776878,89.793404,44.859524,12.130594,8.479357,18.419025,10.443818,16.073570,21.961998,19.052080,1.738847,0.295043,0.478514,0.300827,0.168595,0.201653,0.337191,0.235538,16.707441,14.880167,10.135538,8.982648,9.448763,9.028927 -601312.155000,4612545.550000,2850,4205,165.385147,166.716553,149.146301,137.071915,120.972755,106.972740,107.212410,105.104965,105.129761,108.047119,105.559525,117.898361,135.014069,153.270279,165.146301,178.096710,178.022324,165.914902,143.964493,124.592590,113.600845,110.262001,105.245461,75.468620,57.964485,72.691765,87.873573,65.402504,28.658697,10.895058,9.567787,15.489272,9.824806,10.919849,10.152905,5.864473,2.017360,0.722317,1.327274,0.336364,0.285124,0.000000,0.442976,0.504959,4.817356,2.706612,3.881819,7.814878,1.814876,5.618182 -601321.755000,4612545.550000,2898,4205,144.793411,175.084305,150.299179,137.704147,122.233070,108.976868,109.216537,108.241333,108.580177,113.563644,111.241333,122.538849,140.398361,159.084305,173.687607,187.894226,188.125626,174.580170,151.811584,131.447937,119.596703,116.811577,111.836372,81.249603,62.695885,76.274399,90.547127,63.373573,27.960350,10.824811,10.166961,16.162001,6.861996,8.809933,9.072741,6.136373,0.805787,0.227274,0.102480,0.000000,0.146281,0.279339,0.000000,0.000000,3.887604,1.814050,0.000000,1.640496,0.000000,0.000000 -601337.755000,4612545.550000,2978,4205,157.523972,190.019836,158.763641,150.639679,130.226456,117.920670,116.928940,115.251251,115.631416,122.647942,116.482658,128.218201,144.862808,163.391739,177.218185,191.449585,189.623138,173.193390,153.119019,132.069427,121.292572,118.300835,111.763649,80.978523,65.656219,80.681000,89.333893,62.705807,29.325640,12.924811,10.160349,16.259521,9.180180,11.026461,11.301669,4.774387,0.646284,0.444629,0.183472,0.000827,0.033884,0.029752,0.000000,0.000000,5.952067,3.245455,2.732232,0.928099,2.285124,0.000000 -601360.955000,4612545.550000,3094,4205,112.254562,151.166946,154.076050,144.100830,129.191742,120.133904,119.117371,116.638031,117.588448,118.514069,118.877701,129.662827,147.076050,163.406616,177.712402,187.530594,188.472733,178.414886,154.034714,133.142151,122.051254,118.233078,112.290924,84.712425,67.481010,79.307465,91.481018,65.257866,30.034729,12.921507,10.208283,7.361995,7.981005,8.844643,8.636379,3.550419,0.328929,0.380993,0.165290,0.133058,0.071075,0.000000,0.000000,0.000000,1.019008,0.000000,0.000000,0.000000,1.934711,0.000000 -601375.755000,4612545.550000,3168,4205,124.214890,151.357864,153.514877,141.357864,128.911591,119.481842,117.035561,115.870270,115.390930,116.630600,118.242172,128.886795,146.134720,161.184311,174.531418,185.762817,187.002487,175.837204,153.399185,131.266953,120.919861,116.853745,112.663651,83.126472,65.217377,78.614075,90.043816,65.655396,29.331425,13.018199,10.242167,6.086788,7.466954,8.511583,8.178526,3.668600,0.648763,0.209092,0.000000,0.165290,0.256199,0.000000,0.209918,0.000000,2.241323,0.000000,1.696694,0.787603,0.000000,0.000000 -601383.355000,4612545.550000,3206,4205,116.521500,156.890915,152.114059,143.378525,128.866135,119.362000,117.477699,115.750427,114.915718,116.419846,118.899185,129.155380,145.576859,162.130585,175.717361,186.188431,187.080994,177.328934,154.477692,132.147125,121.428116,118.180183,111.345467,82.667793,65.047958,80.568619,91.957039,68.130600,31.808287,13.616548,10.122333,7.630590,9.606626,8.782660,8.706626,4.274388,0.576035,0.157026,0.147935,0.223967,0.000000,0.097521,0.197521,0.000000,1.073554,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.955000,4612545.550000,3249,4205,123.764481,150.577682,153.478516,141.602478,130.263641,120.495056,118.404144,115.172737,115.321503,118.098358,118.437202,128.718201,145.296692,161.131409,175.189255,186.090088,186.428925,176.858688,152.660339,131.065308,120.833893,116.156212,110.809105,83.511589,66.387619,79.123161,89.660347,66.908287,30.610762,11.959523,10.073573,7.107450,7.122326,7.281006,7.785137,2.991740,0.443804,0.441324,0.042149,0.000000,0.037190,0.000000,0.000000,0.000000,2.247934,1.046281,0.954546,0.000000,0.000000,0.000000 -601405.155000,4612545.550000,3315,4205,116.714050,152.491745,151.871918,143.128113,128.871918,120.161171,116.590927,114.913239,114.690102,116.475220,117.698364,129.028946,145.301666,160.318192,174.128098,186.004135,186.863632,176.648758,151.276871,129.607452,119.847122,115.376053,109.500015,82.384315,64.053741,78.276878,89.681831,66.417374,30.756218,11.987620,9.954565,5.794226,7.476046,8.306626,7.329765,3.261162,0.856201,0.689258,0.106612,0.000000,0.133058,0.082645,0.000000,0.000000,2.090083,0.000000,1.809918,0.000000,1.062810,0.000000 -601416.555000,4612545.550000,3372,4205,135.954559,161.761993,157.092575,147.604965,133.819839,121.059525,120.026466,117.563652,117.340515,120.241341,120.654564,130.695877,147.927277,164.877701,177.414886,188.398361,188.728943,177.125626,153.414886,132.439682,121.266136,117.365311,112.836380,84.051254,66.026466,80.489273,89.885971,66.695885,30.076052,12.350431,10.257870,5.776044,6.814063,9.473567,8.856212,3.652072,0.455374,0.042976,0.200001,0.000000,0.047934,0.000000,0.000000,0.000000,3.366116,0.933058,0.906612,0.726446,0.000000,0.000000 -601426.155000,4612545.550000,3420,4205,127.676872,187.577698,164.486801,158.015717,140.858704,127.032242,126.900009,125.478523,124.668610,131.412415,126.784309,138.172745,153.478531,171.577698,184.842163,196.916550,196.065308,180.866959,159.288452,139.205811,128.544632,125.139679,120.445465,90.792572,74.668610,89.619019,97.395882,68.949600,32.614071,13.640514,10.949606,9.979355,7.957039,9.359518,6.933897,4.400009,0.721489,0.257026,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601429.155000,4612545.550000,3435,4205,133.883484,186.015701,168.461990,158.528107,141.205795,127.957863,127.412407,125.495056,125.379349,130.437195,127.461998,138.486786,154.420685,172.544632,186.263641,197.585953,196.172729,183.081818,160.271912,139.495041,128.420670,125.693398,119.900009,91.230591,74.999199,89.321503,97.065300,69.511597,32.701672,14.310761,10.900020,9.906628,7.386791,7.711584,8.275222,3.803314,0.714878,0.167769,0.036364,0.000000,0.000000,0.000000,0.000000,0.057025,1.445455,0.000000,1.143802,0.000000,0.000000,2.376860 -601432.555000,4612545.550000,3452,4205,136.269424,181.905777,170.104126,157.938843,141.161987,128.137207,127.451248,125.798355,125.368599,131.170258,127.211578,139.161987,155.153717,172.608276,185.137192,198.641342,197.533890,183.261154,160.228088,139.996689,129.409927,125.219841,121.145462,91.211594,75.971924,89.575226,98.343811,70.153740,32.971920,13.053738,11.013243,10.072742,7.886792,9.175221,9.028941,4.586786,1.191738,0.283472,0.094215,0.209918,0.074380,0.000000,0.015703,0.000827,0.000000,0.000000,0.000000,1.128926,0.000000,0.000000 -601437.355000,4612545.550000,3476,4205,121.947952,180.220688,166.063660,157.625641,140.981003,127.567780,128.476868,126.063644,125.997528,129.493393,127.270256,138.790924,155.402512,172.642151,185.881821,197.741318,197.253708,185.187607,161.146301,140.832245,128.939682,126.162819,122.154556,92.204147,75.559525,89.815720,97.799194,71.534729,34.171093,14.749605,11.104979,11.047123,8.160346,6.428940,9.248775,4.107448,0.893390,0.197521,0.119009,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.555000,4612545.550000,3492,4205,108.463654,176.100006,165.893402,157.009109,141.587616,129.215729,128.678528,125.670265,125.951263,129.794235,127.397545,139.430588,156.314896,173.736359,186.323120,199.356186,197.529739,184.843796,160.645462,141.050430,129.306625,127.298370,121.190933,92.719856,75.546303,87.893410,99.984322,71.488449,32.984318,14.733904,11.017375,11.347951,8.381007,8.742991,9.630594,4.712408,0.841324,0.528927,0.045455,0.000000,0.060331,0.310744,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.955000,4612545.550000,3509,4205,124.019020,172.316528,166.531418,154.523148,139.837204,127.985962,126.109932,125.787621,123.448776,128.184311,126.324806,137.820663,154.878525,173.027283,185.275208,196.250427,197.258682,183.820663,160.589264,138.952896,128.184311,126.671913,119.845467,90.895058,73.556213,88.721504,97.961174,71.002495,31.721506,11.515718,10.895060,9.196710,7.409933,8.411587,9.824808,4.015711,0.612398,0.243802,0.042975,0.000000,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.155000,4612545.550000,3525,4205,112.090927,171.570267,167.033081,157.107452,141.785126,129.033066,129.644638,126.297531,126.082649,129.338852,127.809929,139.727280,157.314072,173.173569,188.190094,199.148773,198.586792,185.347122,161.933899,141.231400,129.314056,126.768600,122.090919,92.471092,76.082664,89.297539,100.140511,72.752083,34.214897,13.285142,11.099192,11.614065,8.757867,8.728114,10.318196,3.402489,0.639671,0.414877,0.036364,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.755000,4612545.550000,3538,4205,104.321510,174.635544,163.990906,155.933075,140.338043,127.990929,128.445480,126.205803,125.495064,128.412415,127.627289,138.825638,156.776047,173.652069,185.842148,198.544632,199.106613,186.288437,161.395889,140.957870,130.032257,127.321510,121.354568,92.164474,76.015732,88.528107,100.412407,72.908295,34.676884,13.844646,11.032251,8.958692,9.291752,9.374395,9.061173,3.400834,0.486778,0.307439,0.199174,0.000000,0.000000,0.227273,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.955000,4612545.550000,3614,4205,112.540512,170.143799,168.185120,155.771927,141.110764,129.251251,129.209930,126.813232,126.069435,127.821503,128.672745,139.358704,158.276047,174.507446,186.441330,198.242981,198.986786,185.755371,162.342148,140.771927,130.176865,127.110756,122.400009,92.854568,75.747124,89.209938,100.218201,73.962006,35.003330,14.855390,11.127292,9.992577,9.384313,8.407453,9.261998,5.174391,1.066945,0.144629,0.255373,0.000000,0.000000,0.000000,0.016529,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.155000,4612545.550000,3635,4205,122.835548,165.223984,166.653717,156.083481,141.240509,128.942993,129.199188,127.471916,125.571091,128.422333,128.083481,140.265305,158.389267,174.637192,187.719833,198.405777,199.785950,187.157852,163.166107,140.992569,129.149597,127.959518,121.281830,92.769432,75.852081,88.604149,101.075218,75.000839,36.587624,14.592580,11.025639,8.957039,8.922329,9.633073,8.611585,3.123149,0.338844,0.085124,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.178513,1.175207,0.000000,0.000000,0.000000 -601473.955000,4612545.550000,3659,4205,114.348785,167.216522,165.803299,155.076019,138.811584,128.728943,128.885956,125.662819,125.588440,127.613235,128.348770,138.803314,157.935532,173.290909,186.910736,197.208267,198.282654,185.629745,162.720657,140.332245,129.348770,125.844635,120.745461,91.191742,76.026466,89.001663,99.332245,71.646301,33.679359,14.533076,10.976878,7.920674,9.085966,9.045469,7.934724,3.419017,0.385951,0.352067,0.279339,0.000000,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.723967,0.000000,0.000000,2.200000 -601478.355000,4612545.550000,3681,4205,122.519844,164.470245,163.924789,153.875214,139.462006,129.908264,127.842155,125.858681,125.718185,127.106613,128.585953,138.842163,157.817352,173.767776,186.304962,198.428925,198.767776,187.643799,161.759506,140.453735,128.875214,126.809097,121.536369,91.999184,75.602493,89.742996,101.776039,72.023987,33.784317,13.332249,11.048779,9.257039,7.836379,9.946296,8.990097,3.928933,0.944631,0.152067,0.174381,0.060331,0.000000,0.000000,0.010744,0.041322,0.000000,0.000000,1.004959,0.000000,0.000000,0.000000 -601484.755000,4612545.550000,3713,4205,108.303322,163.377686,163.303329,156.195892,139.303314,130.195892,128.220673,125.542992,125.270264,126.890099,128.493408,139.650421,157.931427,173.534729,186.708298,198.642181,199.055405,187.782669,162.939682,141.220673,129.890106,127.005806,121.518196,92.195885,74.278534,88.708282,101.716545,73.799202,34.443825,13.014894,11.047126,8.267781,8.252081,6.884311,7.167781,3.504141,0.561985,0.204959,0.000000,0.116529,0.005785,0.231405,0.000000,0.000000,0.000000,0.000000,0.000000,0.916529,0.000000,0.000000 -601490.155000,4612545.550000,3740,4205,117.173569,161.685944,162.578506,152.900833,139.231400,129.000015,127.082664,125.338860,124.561996,126.933899,127.966949,138.495865,157.033051,173.107437,185.966949,197.743805,196.818176,185.834717,162.107437,139.900833,129.289261,126.404968,120.272743,91.082664,74.322327,87.504150,99.801666,72.512413,33.495888,13.634728,10.933903,8.575219,6.855385,7.635551,8.881006,4.213233,0.629754,0.136364,0.056199,0.000000,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.995868,1.816529,0.000000,0.000000 -601494.555000,4612545.550000,3762,4205,108.722321,158.160339,165.102478,154.457855,139.565308,129.523972,127.904137,125.383476,125.680992,126.490913,128.647934,138.466141,157.267776,173.829758,187.036362,197.606613,198.548767,186.581818,161.895874,139.755386,128.656204,126.011574,121.309097,92.540504,74.366959,88.276047,101.416534,73.490929,35.052914,13.623984,11.028117,7.065301,7.752081,8.483485,9.664478,3.590917,1.004962,0.052066,0.240496,0.170249,0.000000,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.355000,4612545.550000,3786,4205,113.753738,159.353729,161.552078,152.667770,138.849594,129.188446,126.485962,125.833069,124.692574,126.915718,128.180176,138.229752,156.609924,172.667770,186.676041,197.130585,198.758682,185.642975,161.725632,140.816513,128.271088,125.634727,120.527290,91.824806,73.915726,88.890923,99.742165,71.998367,33.576878,13.997540,10.957046,6.664474,7.851256,8.788446,8.604147,3.614886,0.422315,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.355000,4612545.550000,3801,4205,108.429771,159.694229,163.785141,152.933914,139.628128,129.132233,127.190102,125.735542,125.347122,127.280998,128.818192,139.438049,158.090942,173.190094,187.760345,197.611588,198.347122,186.917374,161.603333,140.281021,129.082657,126.628113,119.818199,92.851257,75.033073,89.619850,100.256218,73.165306,35.123981,12.485142,10.892582,7.229766,7.231422,8.508280,6.962824,3.081825,0.245455,0.200827,0.101653,0.061984,0.000000,0.000000,0.000000,0.056199,0.000000,1.133058,0.000000,0.000000,0.000000,0.000000 -601506.755000,4612545.550000,3823,4205,113.835548,156.827286,162.661987,152.587631,138.579346,128.695053,126.025635,124.785965,124.513237,125.967781,127.661995,138.521515,156.860336,172.356201,186.050430,196.711578,197.951248,185.860321,160.942978,140.116562,129.033890,125.430588,120.100014,90.447128,73.959526,89.083488,100.504982,72.042175,34.273571,12.596713,10.918200,6.129766,8.393405,7.609106,8.224810,2.684305,0.439671,0.278513,0.047108,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.755000,4612545.550000,3843,4205,113.940529,158.188446,163.857880,154.238037,140.510773,131.221512,129.105804,126.510765,126.370270,127.907463,129.312424,140.601669,158.932251,175.857864,188.411575,198.477692,198.857864,188.304138,162.527298,140.593414,130.659531,126.907463,121.890930,92.907463,76.395065,89.337212,101.957047,74.642998,34.552086,14.420679,11.081010,7.060344,9.176876,8.218197,7.498362,3.255379,0.659506,0.216529,0.083471,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.155000,4612545.550000,3885,4205,123.225632,164.704971,165.192566,153.225632,140.779343,130.399185,128.969437,126.787621,126.911583,127.614067,129.481827,140.729752,159.324799,175.316528,187.283478,198.738022,199.432236,186.961166,162.283478,140.663635,130.118195,126.581009,120.663651,92.506622,75.101669,91.283485,101.423981,73.440514,35.738041,14.570267,10.969441,6.396706,8.528115,8.015718,9.278527,3.447116,0.330579,0.000000,0.233885,0.126446,0.000000,0.000000,0.000000,0.000000,1.210744,0.000000,1.143802,0.000000,0.000000,0.000000 -601524.755000,4612545.550000,3913,4205,101.972740,161.981003,167.319839,156.088440,141.096710,132.303314,129.509933,127.881828,128.022324,129.600830,130.873566,142.493393,160.650421,177.096710,189.873566,201.113235,201.138031,188.898361,165.071915,143.344635,132.286789,128.460342,124.518188,94.873566,76.683479,90.666954,103.873566,74.427284,35.361179,15.342993,11.319854,8.618194,6.494230,8.768611,9.482659,3.918191,0.882647,0.325621,0.599175,0.170249,0.065289,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.155000,4612545.550000,3935,4205,118.685135,161.189270,165.718201,154.833893,141.528107,132.098358,129.990921,127.569435,127.809105,129.990921,130.288437,141.453720,159.437195,176.057022,188.974380,199.800827,200.156204,188.792572,164.825638,141.842148,131.404144,127.536377,122.809105,93.263649,76.619026,90.238869,102.048775,75.412415,35.933079,16.512417,11.164482,7.228937,8.918200,8.576050,7.953734,2.277693,0.564464,0.473554,0.050413,0.272728,0.004959,0.000000,0.055372,0.154546,0.000000,1.138017,1.071901,0.000000,0.000000,0.000000 -601536.555000,4612545.550000,3972,4205,101.800842,161.376053,164.161179,154.781006,141.078522,131.979340,130.904968,127.301666,128.516541,129.061996,130.772751,141.450424,160.012405,176.888443,189.904968,199.962830,200.681839,189.632248,164.500015,143.061996,131.772736,127.706627,123.227287,93.913239,76.152908,91.119850,103.111588,76.202492,36.508286,15.166134,11.202498,6.823978,9.547124,9.248776,9.395056,4.080175,0.634713,0.191736,0.124794,0.000000,0.000000,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.176860 -601540.555000,4612545.550000,3992,4205,113.987610,161.020691,165.714905,154.962845,141.615723,131.640503,128.723145,126.524803,127.417366,129.466949,130.979340,141.541336,159.657059,177.400864,189.987640,200.582672,202.095078,190.210770,164.541351,142.500015,131.136368,127.276871,123.136375,94.185959,75.400841,90.566124,102.623978,74.657036,35.533077,14.641341,11.194234,6.518197,8.257868,8.185140,8.672744,3.677694,0.600828,0.000000,0.170248,0.000000,0.000000,0.148760,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.355000,4612545.550000,4006,4205,114.729774,155.514893,165.746307,153.944656,140.217377,131.093414,130.316559,127.407463,127.390930,128.862000,130.068619,141.432251,160.101669,176.762833,189.845474,199.837219,200.828949,188.952911,164.828949,142.440521,131.151260,127.556221,122.845474,94.531425,75.647133,90.316551,103.085144,74.366135,35.762829,14.850431,11.167788,5.835547,7.373569,7.852081,8.533898,2.988438,0.359505,0.054546,0.418182,0.004959,0.003306,0.000000,0.011570,0.261157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.755000,4612545.550000,4023,4205,107.958687,160.859528,166.024811,155.264481,141.099182,132.239685,130.214890,128.652893,128.322327,131.148773,131.801666,142.842987,161.231415,177.793411,191.727295,201.429764,202.685974,191.123978,165.429764,143.586792,132.578522,128.892578,123.636375,94.479347,76.545471,92.214882,104.305801,74.983482,36.231426,14.667787,11.239689,8.104971,8.641338,7.581832,8.377700,3.457859,1.001655,0.381819,0.000000,0.000000,0.067769,0.000000,0.059504,0.052893,1.277686,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.555000,4612545.550000,4042,4205,113.982658,161.486786,164.842148,155.263641,140.900009,130.610748,128.825638,127.023979,127.594223,129.569427,130.189270,140.957855,159.362808,176.280167,189.974380,200.858688,201.470245,190.676865,165.354553,142.825623,131.974396,127.701668,122.627281,94.147957,75.866959,90.023987,102.329765,75.172752,35.933083,14.423160,11.147953,5.514058,6.609105,7.733899,7.358690,2.411578,0.792564,0.000000,0.658679,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.094215,0.000000 -601554.355000,4612545.550000,4061,4205,111.974396,158.767792,162.453735,154.081833,140.776047,131.007446,128.073563,126.404144,127.073563,129.090088,130.057037,141.189270,158.718201,175.858704,189.569443,200.288452,201.147949,189.982666,165.470261,143.106628,131.809097,127.850426,122.809105,93.338028,75.123161,89.619019,103.032242,75.619026,34.544647,13.511587,11.164482,5.828110,7.943819,8.156214,6.270262,3.601659,0.657026,0.170248,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.155000,4612545.550000,4095,4205,103.393402,161.707474,165.443008,156.195038,142.616547,133.029770,130.624802,129.038025,129.277695,131.641342,132.244644,142.963654,160.889282,178.071106,192.013245,202.814911,203.434738,192.509125,166.657883,144.723984,133.773560,130.095886,124.509102,96.219856,76.542168,92.790100,104.781830,77.856216,36.087620,14.908283,11.319027,7.057862,8.749602,9.318196,8.019849,3.589263,0.488431,0.099174,0.190910,0.139670,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.955000,4612545.550000,4109,4205,108.134727,160.275223,167.349594,157.696716,143.547943,133.539673,130.440506,129.052078,128.969421,132.266953,131.903320,143.068604,160.878540,178.506622,192.523148,203.184311,203.291748,192.457031,167.423996,145.242157,133.019012,129.696716,125.027283,95.465302,76.589272,93.911583,104.473557,77.828941,36.936378,14.981010,11.366137,5.449597,8.713240,8.108280,6.545468,3.901662,0.221488,0.061157,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.247934,0.000000,0.000000,0.000000,0.000000 -601569.955000,4612545.550000,4139,4205,121.146301,163.774368,166.534698,157.832230,143.493378,133.336380,131.121506,129.939682,129.361176,131.708282,132.914886,143.303299,161.286774,178.989243,193.435532,203.047104,204.476852,193.964462,168.956192,144.518173,133.741333,130.394226,126.063652,95.559525,78.113243,93.014069,103.815720,75.410759,34.493412,14.809936,11.460349,6.171912,8.784314,8.651257,9.114890,3.621495,0.788432,0.200001,0.176034,0.266942,0.011570,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.955000,4612545.550000,4169,4205,101.476044,163.533875,163.509094,156.244629,141.128922,131.922318,128.591736,128.071075,127.062813,130.905792,131.847946,142.823135,159.781815,177.748764,192.277679,202.161987,203.690903,192.294205,167.864456,143.864456,132.980164,128.385132,123.781830,95.186790,76.079353,91.294228,102.988441,75.798363,34.914070,12.990099,11.252911,4.952075,7.188445,8.024809,7.181006,2.435543,0.486779,0.214050,0.055372,0.000000,0.000000,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.755000,4612545.550000,4188,4205,105.252914,168.038025,166.426453,158.409927,145.393402,133.542175,131.459518,130.558701,130.434738,133.211594,133.790100,143.922333,162.046295,179.922333,193.467789,203.831421,204.757034,193.451248,168.186783,145.476044,134.195068,130.881012,126.236382,95.360352,77.145477,92.104156,104.740517,77.881012,36.401672,14.406630,11.476052,6.312406,8.627289,6.357040,6.557864,3.603314,0.451241,0.057851,0.075207,0.066942,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.955000,4612545.550000,4214,4205,119.238861,162.065292,167.065292,160.098343,146.709915,134.594238,132.214066,130.329773,129.577698,133.090103,133.602493,144.742996,162.040497,178.610748,192.924789,203.594223,204.478516,194.346283,168.742981,145.404144,134.230591,129.660355,125.990929,96.420677,76.974396,92.387619,105.420677,77.635559,36.230598,15.032248,11.453737,5.279348,7.121504,7.844645,6.816542,2.995048,0.747936,0.295042,0.059504,0.199174,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.955000,4612545.550000,4239,4205,122.690094,172.409103,169.293411,158.508286,147.037201,134.177689,132.590912,130.987610,131.194229,133.681824,134.070251,144.623978,162.483490,180.252075,192.855392,204.780991,204.871902,193.334732,167.797531,146.615723,134.781006,130.698349,125.681824,96.301659,76.954559,92.152901,105.161163,78.103325,37.491756,15.204976,11.425639,5.029761,8.790099,8.623982,8.133899,3.966951,0.657853,0.066116,0.210744,0.060331,0.029752,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.955000,4612545.550000,4254,4205,120.267792,174.681015,171.061172,161.242996,146.036377,134.962006,133.879364,132.085968,131.482666,134.135559,135.408279,145.928940,162.995056,180.598373,194.176880,204.821487,204.829758,193.110764,169.292587,145.466141,134.598373,130.771927,125.581841,96.970268,77.970268,92.300842,104.912415,79.284317,37.772747,15.833077,11.416549,6.795052,9.057867,7.946295,9.842990,5.351248,1.257854,0.249588,0.401654,0.003306,0.007438,0.000000,0.014876,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.155000,4612545.550000,4270,4205,119.162827,174.121490,169.815720,161.650421,146.848785,134.576050,132.989273,130.881836,130.295059,134.278534,135.245468,144.625641,163.022324,179.790924,194.204163,204.138046,205.708298,193.790939,168.385956,146.650436,133.881836,130.832245,125.972748,96.683487,76.832253,93.096710,104.947952,78.956215,37.542992,14.866136,11.452085,5.502489,6.838031,8.208281,8.019847,3.172735,0.158678,0.333058,0.047934,0.014050,0.014050,0.000000,0.021488,0.085124,1.323141,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612545.550000,4283,4205,135.257874,174.770248,169.241318,162.472717,147.695862,135.133896,132.472748,131.844635,130.580170,134.282669,133.811584,145.199997,162.654541,180.414871,194.092560,204.241318,205.522308,193.638016,168.249573,145.373550,134.042999,129.919022,124.472748,95.563652,76.133904,91.828117,104.447952,77.216545,35.100845,14.725637,11.315722,5.143810,8.679356,5.966130,6.224806,2.264470,0.625621,0.000000,0.000827,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.555000,4612545.550000,4307,4205,136.981003,178.708267,169.286789,161.956207,147.129761,133.683487,132.187607,131.295044,129.683487,134.088440,132.848770,143.923157,161.733063,179.708267,192.840500,203.939682,203.617371,192.286789,166.666946,144.286789,132.352905,127.609100,123.518188,93.898354,75.733070,90.121498,102.857033,75.733070,35.906631,12.798364,11.228945,5.914062,7.821503,7.134726,6.926459,2.980172,0.666943,0.122314,0.168596,0.000000,0.003306,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.155000,4612545.550000,4320,4205,139.400848,181.450424,172.995880,161.863647,148.301666,135.814072,133.814072,132.706635,131.425629,135.285141,133.690094,144.392578,161.904968,180.566132,193.400848,204.400848,204.152908,192.475220,168.326462,145.268616,132.301666,129.987625,124.772743,94.152908,75.549606,91.061996,103.053734,77.285141,36.161179,14.393405,11.342994,4.123974,7.689271,6.407452,8.480178,3.062816,0.861159,0.182645,0.060331,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.955000,4612545.550000,4349,4205,121.148766,173.933899,169.801666,158.669434,144.380188,133.033066,132.586792,130.074387,128.595047,129.553726,129.884308,141.776871,160.041336,176.115723,187.900848,198.024811,198.256210,185.528946,161.371918,139.256210,128.247940,125.900833,119.818192,91.768608,75.157043,88.148773,100.123978,73.231422,33.404980,15.370266,10.892581,7.285137,6.739683,8.990921,8.753733,3.341330,0.227273,0.173555,0.275208,0.000000,0.000000,0.000000,0.108265,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.355000,4612545.550000,4366,4205,121.028938,173.252075,171.442169,160.971085,146.500015,134.136368,133.144638,129.466949,129.673569,130.880173,131.607452,142.640518,160.351257,176.516541,187.921509,198.615723,199.078522,185.623978,161.103317,140.681839,128.921494,126.549591,121.045464,92.376038,75.549606,88.202492,101.681824,73.359520,35.425640,15.262828,11.004151,7.704144,9.292575,8.207451,9.545467,2.443808,1.035540,0.528101,0.231406,0.000000,0.138017,0.000000,0.083471,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612545.550000,4379,4205,120.242172,171.101654,172.316528,159.556198,146.167770,133.027283,132.531418,129.862000,128.647125,130.308273,130.266953,141.738022,159.291748,175.283478,188.291748,197.870255,197.919846,184.217361,160.184311,139.481827,127.845467,125.217369,119.754562,91.027290,75.002502,88.878525,100.969437,72.638863,34.167786,14.727291,10.886795,10.076874,8.090096,9.035550,7.575220,3.045461,0.769423,0.105786,0.260331,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.755000,4612545.550000,4393,4205,114.285149,172.260345,172.706635,159.392578,144.533081,132.723160,132.309937,129.962830,128.582657,130.557861,130.252075,140.904968,159.756210,175.640518,188.409103,197.764481,197.061996,184.219025,159.847122,139.152908,127.590935,125.987625,119.318207,91.243820,74.268616,88.367783,100.557869,72.483498,34.458698,14.738861,10.847127,8.627287,7.590097,7.675220,8.267783,3.357859,1.253721,0.141323,0.333059,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.854546,0.000000,0.000000 -601624.355000,4612545.550000,4411,4205,103.487617,172.768600,174.512390,161.404968,143.876053,133.801666,131.892578,128.809937,129.033081,130.057861,130.090927,141.925629,159.735550,175.611572,188.148758,198.297516,197.842972,183.644623,159.892578,138.842987,128.768616,125.685966,119.909103,89.446297,74.528938,88.049606,99.752083,72.066132,33.322338,14.595883,10.900845,9.631418,7.416541,8.152905,8.119022,2.193395,0.338844,0.289257,0.099174,0.000000,0.000000,0.000000,0.000000,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.955000,4612545.550000,4434,4205,119.863655,185.921494,171.342972,160.078506,146.086777,131.847122,133.210754,129.987625,129.797531,131.392578,130.491745,140.979355,158.871902,176.417358,187.384308,197.648773,197.574402,184.665298,159.500000,138.714874,127.954559,124.673569,118.954559,91.004150,73.739685,87.938034,99.136383,73.020676,32.574402,15.368612,10.814069,9.050426,9.147947,8.097534,8.562823,3.238022,0.403307,0.000000,0.000000,0.000000,0.000000,0.000000,0.004132,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.155000,4612545.550000,4455,4205,118.422325,187.571091,174.033890,161.901688,146.009125,133.422333,134.166122,130.868607,129.926453,132.587616,130.711578,142.901688,159.802505,176.752899,189.157867,198.488449,197.422333,183.339676,159.182678,139.066971,127.133072,124.678528,119.463646,90.356209,74.306625,87.033897,99.397537,73.215714,33.579357,14.844646,10.860351,9.342163,7.328111,6.857864,7.890098,3.504140,0.597522,0.239670,0.039670,0.000000,0.060331,0.000000,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.355000,4612545.550000,4471,4205,126.373581,187.976852,174.406616,163.183487,148.547119,134.464478,133.861160,132.100830,132.563644,134.109100,132.323975,143.629761,161.323975,178.257858,189.745453,199.976852,198.026443,183.960342,160.720673,139.340500,128.042984,126.216537,120.472740,90.985130,74.381836,88.968605,100.183479,72.737213,35.662827,14.249604,10.952085,10.561172,8.544641,7.414889,7.782659,3.573563,0.524795,0.214051,0.042976,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.955000,4612545.550000,4484,4205,128.637222,187.042175,173.504990,164.025650,147.463654,135.653732,134.595886,131.893402,130.868622,133.794235,131.827301,142.769440,160.430603,176.943008,189.438873,199.455383,197.538040,182.628952,160.100037,139.529770,127.992577,125.868607,119.918198,89.959526,74.463646,88.257034,101.513237,73.389267,34.711586,14.409108,10.901670,10.278527,8.295056,7.749600,8.002492,4.276043,1.066944,0.154546,0.371076,0.004959,0.000000,0.000000,0.129752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.355000,4612545.550000,4506,4205,123.779350,186.704971,172.622314,164.019012,147.754547,134.109924,134.266953,131.820663,131.614059,134.126450,130.861984,142.440506,159.886780,177.341324,189.200836,198.589264,197.019012,182.738022,158.845459,138.638855,127.523148,124.308273,119.481827,89.523163,74.671921,87.605804,98.895050,72.233910,34.713242,14.560349,10.862002,9.003319,7.164475,8.128112,8.819023,4.416538,0.565291,0.448761,0.088430,0.117356,0.000000,0.000000,0.000000,0.034711,0.000000,0.000000,0.000000,1.080165,0.000000,0.000000 -601648.355000,4612545.550000,4531,4205,145.110764,189.160339,176.400009,165.614883,148.705795,133.606628,133.804977,131.647949,130.928940,134.581833,130.350433,142.730591,159.730576,176.755371,188.449585,197.664459,196.366943,181.846283,157.714050,138.614899,126.804977,123.722336,117.490929,89.333893,73.557045,88.317368,99.482658,70.862831,33.540516,13.548778,10.681011,10.544643,6.381830,8.452080,8.468609,3.846289,0.918183,0.361984,0.314877,0.000000,0.007438,0.000000,0.138843,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.755000,4612545.550000,4548,4205,142.283493,191.886810,176.407471,166.853760,148.266983,134.523148,134.357864,131.399185,130.572739,136.176056,131.671921,142.787628,159.547974,177.010788,189.101685,198.795914,196.729797,180.688461,158.804169,139.465317,126.655388,123.985962,119.481834,89.556213,74.109932,88.556213,99.374397,71.547951,34.547947,13.615721,10.862002,9.720675,7.407451,9.088444,7.493402,3.262817,0.713224,0.266943,0.000000,0.000000,0.000000,0.337190,0.068595,0.039670,0.000000,1.345455,0.000000,0.000000,0.000000,0.000000 -601654.755000,4612545.550000,4563,4205,146.741333,198.286789,176.865295,168.857040,150.171082,135.262009,135.476883,132.633896,132.328110,138.394241,132.989288,144.270279,161.518188,178.179352,190.369431,201.154556,198.129761,182.840500,159.361160,139.443832,128.485138,124.790924,119.881836,91.055389,74.782669,91.195885,100.518196,71.650436,34.898365,14.689275,10.898367,11.135552,7.428937,9.563650,7.858692,4.093397,0.548762,0.080166,0.000000,0.000827,0.000000,0.094215,0.000000,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612545.550000,4586,4205,148.361176,199.931412,177.617371,169.972733,151.807465,137.204163,136.633911,135.402496,134.766129,139.212418,133.757874,145.559525,162.038849,178.832245,191.724808,202.212402,199.906616,183.939682,160.799179,140.419037,129.171097,126.443817,122.245476,90.873573,75.584312,89.964478,101.435555,72.055389,34.179359,15.112414,11.113241,12.328117,7.728112,7.736375,8.895057,3.123974,0.604134,0.083471,0.095042,0.000827,0.000000,0.000000,0.057851,0.052066,0.000000,0.000000,0.000000,1.103306,0.000000,0.000000 -601662.755000,4612545.550000,4603,4205,150.715714,201.244644,182.533890,170.294235,152.029770,138.525635,138.252899,136.682663,135.608276,141.500839,135.368607,146.186783,162.029770,180.509109,192.451248,203.393402,200.269440,183.467789,162.343811,141.674393,130.955383,127.128937,122.509102,92.252914,76.657875,92.707458,103.013245,72.947128,36.451260,16.309937,11.137209,14.571917,9.209105,9.873569,10.689272,5.319844,0.390084,0.264464,0.376860,0.000000,0.052893,0.000000,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.355000,4612545.550000,4616,4205,151.815720,197.997528,181.972733,170.336380,151.683487,137.840500,136.617371,133.700012,134.187607,139.741333,133.981003,145.270264,161.559509,178.336380,191.237198,201.666946,199.832245,182.609100,161.443817,140.303314,129.121490,125.898354,121.427284,91.476868,75.344635,91.576042,100.947945,71.807449,34.584320,14.965307,11.038861,13.029769,8.117368,9.136377,7.306625,4.175216,0.742151,0.245456,0.152893,0.000000,0.000000,0.000000,0.000000,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.155000,4612545.550000,4630,4205,125.764481,168.878525,170.109924,159.614059,144.721497,134.225632,132.043823,129.002487,128.275223,130.341339,130.366135,142.151245,158.812408,175.316528,188.357864,197.498352,196.192566,183.523148,159.771088,139.250427,128.184311,125.283485,120.027290,92.605797,75.870262,90.333069,102.316544,74.382660,36.300022,15.059521,10.911588,10.352906,8.547947,9.656212,7.714064,3.579347,0.604961,0.326447,0.000000,0.110744,0.057851,0.006612,0.000000,0.255372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.955000,4612545.550000,4644,4205,113.201675,165.995041,169.697525,158.127274,142.986801,132.333908,131.780182,128.656219,128.631424,129.424820,131.441345,141.995056,159.978516,174.838013,187.672729,197.523972,196.333893,184.110748,159.358688,138.342148,126.895889,124.490929,118.400017,90.565308,74.176880,89.069443,100.358696,73.011589,34.697540,13.477703,10.763656,6.761169,7.431417,8.862823,8.600016,3.702486,1.111573,0.174381,0.105785,0.107438,0.000000,0.000000,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,2.421488,0.000000 -601674.355000,4612545.550000,4661,4205,126.749603,161.352890,168.088425,157.997513,144.253723,133.113235,130.435562,128.939682,129.262009,129.964478,130.394226,141.881821,159.526443,174.881805,187.435532,196.096695,195.162796,183.972717,159.931396,138.030594,128.278534,124.832253,118.790924,91.195885,73.972748,88.344643,100.228943,73.485138,34.914898,14.297539,10.799192,7.418193,6.943814,9.404972,8.909105,3.735545,0.730580,0.043802,0.346282,0.084298,0.064463,0.000000,0.056199,0.084298,0.000000,2.545455,0.000000,0.000000,1.190083,0.000000 -601679.755000,4612545.550000,4688,4205,111.498367,162.704987,169.614075,157.085144,142.828949,135.390930,132.225632,129.746292,130.514893,131.357864,131.804153,142.415726,160.316559,174.655396,188.547958,197.870270,196.729782,184.126465,161.671921,139.746307,128.878525,125.291740,119.572731,92.060349,75.076881,90.663658,100.952896,75.159523,37.366135,15.033076,10.870268,7.470260,9.748775,8.700840,7.648775,4.404141,0.636365,0.552894,0.086777,0.104133,0.053719,0.000000,0.044628,0.218182,0.000000,0.000000,0.000000,0.000000,1.339670,0.000000 -601683.755000,4612545.550000,4708,4205,112.419861,166.378540,170.833084,159.477707,146.180206,135.527298,132.907455,131.271103,131.287628,132.378540,133.370270,143.287643,161.271103,178.709106,190.047943,198.080994,197.833069,186.262833,161.890930,140.609955,129.378540,126.254570,121.345474,92.320671,75.915718,89.907448,102.750427,74.609932,37.775227,15.185143,11.031424,7.578526,8.139683,10.061997,8.207452,3.615710,0.202480,0.138844,0.000000,0.000000,0.000000,0.000000,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.755000,4612545.550000,4723,4205,117.442986,164.814880,168.988434,158.451233,143.839661,135.285965,131.459518,130.600006,130.203323,131.583481,132.029770,142.955368,161.211563,177.046280,189.880981,197.500824,197.360321,184.707428,160.905777,139.715698,129.137207,126.029762,120.418198,92.294228,76.641335,90.459518,102.633072,75.095879,37.641342,15.088447,10.947126,6.598360,9.010757,9.167782,9.518196,3.038850,0.770250,0.156199,0.053719,0.000000,0.054546,0.000000,0.045455,0.276034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.755000,4612545.550000,4743,4205,118.920670,168.548767,168.028107,157.416534,142.854568,134.069443,131.102493,130.085968,129.614883,131.383484,131.176880,142.036377,159.755371,175.474380,189.358688,195.738846,197.209915,184.408264,159.796692,139.085968,128.647949,125.176872,119.490921,90.507454,74.548782,88.714066,101.052902,75.995064,34.565308,14.380184,10.862829,5.161168,8.623156,8.032243,7.215715,3.248768,0.559505,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.104132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.955000,4612545.550000,4759,4205,101.347954,161.438858,166.397537,156.728119,145.554565,134.075226,131.703323,129.389282,128.223984,129.744644,130.976059,141.579346,159.736374,175.513229,187.116547,196.331421,196.033890,184.116547,159.579346,138.571091,128.066956,125.628944,119.372749,90.620682,74.025642,88.909935,101.645470,74.273575,34.852089,14.802497,10.852086,6.528111,10.433072,8.073566,8.767783,3.873562,0.317356,0.000000,0.146281,0.000000,0.000000,0.223141,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.755000,4612545.550000,4773,4205,108.616531,165.285965,168.897537,157.600006,143.591736,134.550415,131.872726,130.781815,130.112411,131.814880,131.509094,142.145447,159.657867,177.054565,189.335556,197.633072,196.542160,183.971909,160.996704,139.666107,129.120667,124.872742,120.145470,91.657867,74.881004,89.467781,100.988434,75.277702,35.707455,12.456215,10.922333,6.881002,8.359517,6.787614,7.944642,3.678520,0.595043,0.072728,0.259505,0.000000,0.000000,0.000000,0.047108,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.355000,4612545.550000,4791,4205,119.581841,161.466125,166.391739,157.036362,141.705811,132.763641,130.590088,127.986786,127.846291,128.928940,129.945465,141.342163,159.094223,175.069427,187.391739,196.548767,196.416534,184.829758,159.325623,138.821503,127.408279,124.383484,118.672737,90.226456,74.028107,89.300835,101.681000,73.557037,34.408283,12.155390,10.788449,5.187613,6.778524,6.447118,8.480179,4.815711,0.260332,0.252893,0.185125,0.441323,0.045455,0.000000,0.000000,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.555000,4612545.550000,4807,4205,123.259514,168.986801,170.986801,156.482666,145.962006,136.085968,133.581833,131.292572,131.259521,132.937195,134.507446,143.342163,161.780182,178.829773,190.647949,199.490921,199.788452,187.251266,163.383484,141.523987,130.581833,126.796707,120.854553,94.904144,76.995064,92.185135,103.590096,77.366959,38.887623,15.783489,10.986796,8.777700,9.180180,9.175219,8.817369,4.179348,1.152897,0.257026,0.769423,0.000000,0.000000,0.000000,0.003306,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.155000,4612545.550000,4830,4205,99.471092,160.851257,166.000015,156.231415,143.752075,134.719025,132.454559,130.404968,129.760345,131.330597,132.247955,142.842987,160.553741,176.314072,188.842987,198.537201,198.049606,186.719025,162.545471,141.057861,131.165298,125.793404,120.000015,93.165306,75.884315,91.016548,102.933899,73.776878,36.628120,14.209108,10.909110,5.598358,7.400014,7.520674,6.657865,1.548766,0.239671,0.197521,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.755000,4612545.550000,4843,4205,96.306625,166.017365,170.835571,159.075241,145.430588,134.810760,132.009109,130.852081,130.414062,132.381012,131.992569,142.860336,160.662018,176.281845,189.471924,198.463669,197.240524,186.339691,162.257050,139.752899,128.719849,126.240509,119.827286,91.496704,75.703339,90.091751,102.182655,75.414078,36.339687,14.550431,10.893409,7.633895,7.919849,7.206624,8.538031,3.752901,0.966944,0.421489,0.247934,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.155000,4612545.550000,4860,4205,104.488434,172.653732,169.579346,159.562836,147.042175,135.000839,133.529770,131.703323,131.860336,132.116547,133.488449,144.670258,161.926468,178.058685,190.223984,198.695053,198.703323,186.868607,162.108292,140.100006,130.174393,126.942986,121.009102,92.942978,76.571098,91.141327,103.372742,76.100021,37.314892,15.223159,11.000847,6.143814,9.745469,9.865303,6.895056,3.704140,0.479341,0.152066,0.172728,0.000000,0.052066,0.000000,0.047108,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.355000,4612545.550000,4876,4205,112.675224,168.162842,171.741348,162.154572,147.700027,136.005798,134.799179,132.253723,131.559509,133.708267,135.055374,145.890106,163.245483,180.047134,192.071930,200.427292,200.187622,187.807465,164.038864,141.195892,131.749603,128.220673,122.881828,94.774399,77.650429,91.600845,104.286797,77.253738,37.675224,15.664482,11.171093,4.882656,7.422327,8.070260,7.953733,2.348766,0.438018,0.128100,0.127273,0.000000,0.005785,0.009918,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.555000,4612545.550000,4892,4205,103.133904,162.828094,168.026443,159.447922,145.877686,137.323959,133.902496,131.902496,131.695877,133.588440,133.538849,144.596695,162.753708,177.993378,190.687592,198.819824,199.323959,187.406601,162.299164,141.183472,130.241333,126.728935,121.745461,93.613235,75.712418,90.778519,102.852905,74.985130,37.447952,15.930597,11.067788,5.702490,8.073567,7.456210,8.234725,3.030586,0.645457,0.443803,0.057851,0.000000,0.000000,0.000000,0.000000,0.175207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.755000,4612545.550000,4913,4205,104.946289,162.160355,162.442169,156.772751,142.508286,135.004959,132.980164,131.368607,131.327271,133.641327,134.021500,143.732239,161.285965,177.814072,189.012405,198.830597,198.285141,187.508286,162.145462,140.666122,130.244629,125.302483,120.554550,91.661995,74.174400,89.538033,102.397537,76.842995,35.232250,13.062827,10.959523,5.816540,7.371913,9.804972,8.991748,4.183477,2.397522,1.328926,1.242976,1.262811,0.781819,0.748761,0.003306,0.000000,0.000000,0.000000,0.000000,2.067769,0.000000,0.000000 -601727.955000,4612545.550000,4929,4205,106.222336,165.453735,168.685150,157.933075,145.519852,134.759521,133.015717,131.354568,130.147949,132.387619,132.726471,143.131424,161.643814,177.329773,189.528122,198.569443,197.619034,186.090103,161.751266,140.313248,128.701675,126.660347,119.536377,92.461998,74.338036,87.528107,101.197540,74.842171,36.643822,13.014067,10.866961,4.533894,6.719848,8.327285,7.733897,4.659513,0.304133,0.085951,0.114050,0.000000,0.061984,0.000000,0.003306,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.355000,4612545.550000,4946,4205,113.518188,169.790924,167.195877,159.113235,145.261993,137.005798,133.394226,132.080170,130.997543,132.981003,133.394226,142.733063,160.757858,176.443817,189.559494,198.840485,199.030579,186.278519,162.443817,141.584305,130.460342,126.724808,120.881836,92.534729,76.567787,89.807457,102.088448,76.419029,35.964481,14.478531,10.989276,6.167779,7.111582,6.401663,6.707450,2.753725,0.702481,0.112397,0.238017,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.155000,4612545.550000,4970,4205,111.720680,169.530594,168.704147,161.034714,146.274399,137.233078,133.935562,132.117371,131.456223,134.390106,134.985153,145.398376,162.695877,178.481018,190.952072,201.191742,200.266129,187.770264,164.580170,141.621521,130.869446,126.315720,122.927292,92.952072,76.976875,90.728935,102.472748,76.266136,37.224812,15.025638,11.175225,5.847945,8.071088,7.583485,8.506625,2.903312,0.958680,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601739.155000,4612545.550000,4985,4205,122.187622,174.972733,175.534714,164.716537,149.972748,137.162842,135.096710,132.600845,132.518204,135.567795,135.724823,145.708298,163.071915,179.228943,191.228912,202.650406,200.790909,189.724792,166.113235,143.584320,133.228943,128.179352,123.245476,94.501671,78.038864,94.047127,105.741341,77.939690,39.947952,17.724813,11.204152,6.124806,9.255387,10.425635,10.310759,5.677696,1.028102,0.270249,0.237191,0.060331,0.000000,0.000000,0.070248,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.755000,4612545.550000,4998,4205,101.438026,166.578506,171.611572,160.504135,146.214874,136.586777,133.702484,131.380173,131.380173,133.867783,134.272736,143.041321,160.661163,177.776855,189.289261,199.016525,198.214874,186.603302,162.520660,140.652893,129.446289,126.314056,121.818192,93.214890,75.330605,91.628113,105.231415,77.314072,35.595066,14.824811,11.074399,5.171910,7.019022,6.482657,6.213234,3.981000,0.813225,0.125620,0.168595,0.000000,0.000000,0.000000,0.031405,0.333059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.155000,4612545.550000,5020,4205,109.760345,174.520691,171.933914,161.214905,147.636398,135.487625,131.702484,130.768616,129.148773,132.628113,133.132248,144.644653,162.000031,177.545486,190.628128,198.314087,198.347137,187.074417,162.247971,141.404968,129.330597,124.752083,121.272743,92.975220,75.528938,90.429771,102.876053,74.115715,35.702496,14.356216,11.024814,5.465299,7.398361,7.183485,8.501664,3.201660,0.837192,0.652067,0.117356,0.109091,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.555000,4612545.550000,5042,4205,129.274399,170.633087,165.633087,159.649612,147.054581,137.699203,135.186798,134.459518,133.608292,136.162003,137.013245,146.839691,163.814911,180.814911,192.657852,202.079330,200.914047,189.699188,166.484329,144.145477,131.682663,128.624817,123.327293,95.062828,76.542168,91.542175,102.757050,76.137215,35.657867,14.995060,11.211590,4.481826,7.015716,5.595050,7.067781,2.842156,0.581819,0.229752,0.131405,0.000000,0.147108,0.033885,0.078513,0.052066,0.000000,1.011570,1.127273,0.000000,0.000000,0.000000 -601756.355000,4612545.550000,5071,4205,110.657867,177.481827,174.349594,164.093399,152.366119,137.977692,136.556213,134.614059,133.746292,136.952911,136.853745,147.101669,164.886780,181.432236,194.564468,202.919861,202.192581,191.746292,167.225632,145.043808,133.291748,129.448776,123.936371,95.275223,77.572739,92.440514,105.795883,78.382660,38.349609,17.452911,11.266961,5.557035,9.600841,9.136379,9.061172,4.300836,0.813225,0.854548,0.615704,0.449587,0.009091,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.755000,4612545.550000,5098,4205,132.451248,178.158691,171.563644,165.282654,149.935547,137.216537,135.968597,135.051254,133.654556,136.745468,136.348770,145.621490,164.018188,180.191742,192.365295,201.836380,200.877701,189.844635,165.290924,143.365295,133.092575,126.910751,123.563644,94.497536,76.712425,90.571922,104.348778,79.869438,36.547127,14.769440,11.233077,5.852077,7.395883,7.875219,10.465302,4.392570,0.838845,0.243802,0.270249,0.195869,0.010744,0.016529,0.078513,0.517357,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.955000,4612545.550000,5139,4205,120.639679,179.286789,173.609116,163.195892,150.592590,137.906631,137.245483,135.245468,133.890091,138.005814,136.220673,146.757874,165.774399,181.881821,194.138031,202.906616,203.964478,190.394226,165.700012,144.369446,133.609100,129.592575,123.336380,94.716545,76.286797,92.228943,104.733078,76.989273,37.501675,15.369439,11.212417,7.853732,9.106625,7.461170,7.252906,4.755379,0.495042,0.042149,0.407439,0.000000,0.157025,0.180166,0.000827,0.157852,0.000000,0.000000,0.000000,0.000000,1.312397,0.000000 -601772.755000,4612545.550000,5153,4205,127.033905,176.141342,174.174393,161.876877,146.554565,134.546295,133.042175,129.538040,129.562836,130.281845,130.331421,142.091751,161.992569,176.414062,188.157867,196.761169,197.083481,183.695053,159.538025,138.455383,127.703323,124.480186,119.190926,90.819031,74.281837,88.885139,101.248772,73.868614,35.232254,15.049603,10.835556,8.587618,7.581004,9.109931,9.593403,3.571083,0.607440,0.341324,0.410745,0.000000,0.094215,0.000000,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.555000,4612545.550000,5172,4205,128.069427,174.276031,175.895874,161.846283,147.168594,134.135544,132.912415,131.085968,129.986786,131.986786,131.796707,142.763641,161.804962,177.209915,188.945465,198.259506,197.862808,184.697525,160.061157,139.209915,128.416534,125.209923,120.127274,91.168617,74.821510,89.309113,100.730591,74.523987,35.342167,15.732249,10.920679,8.637204,8.177700,9.278527,8.244642,3.133893,0.942978,0.461985,0.113223,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.355000,4612545.550000,5206,4205,121.075226,186.405792,175.595886,162.612427,148.422348,134.876877,133.868622,131.711594,130.066956,132.058701,132.100021,143.769455,162.108292,177.000839,189.835556,198.934723,198.612411,184.992569,160.901688,139.951263,128.711594,125.827293,120.918205,91.372749,76.273575,88.885147,101.033905,74.397545,34.959522,16.352085,10.992582,8.817369,8.494227,8.254560,9.293404,4.102486,0.746284,0.157026,0.560332,0.000000,0.096695,0.000000,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.755000,4612545.550000,5223,4205,130.410767,178.551254,175.509933,164.245468,147.989273,134.559525,134.898361,131.700012,130.981003,132.790924,131.716553,144.096710,162.212402,177.815720,189.402496,199.171082,197.683487,185.129761,160.526459,139.600830,128.559525,125.154564,120.245476,91.096710,75.154564,89.675224,100.782661,74.468613,34.402496,15.314894,10.931424,9.261171,8.342160,8.050426,8.176874,3.871909,0.510745,0.368596,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.555000,4612545.550000,5262,4205,112.893402,183.000839,177.984314,162.108292,148.190918,135.976044,134.769440,132.868607,131.678528,133.488449,133.009109,144.116547,161.298355,178.967789,189.356216,199.984314,198.893402,185.290100,162.108276,139.538025,129.785965,127.025635,120.190926,92.306625,75.471924,89.529762,101.471916,75.504982,35.257046,16.220680,10.926465,9.904974,7.995880,9.304973,8.776048,4.278522,1.096698,0.172728,0.110744,0.043802,0.189257,0.000000,0.000000,0.000000,0.000000,1.315703,0.000000,0.000000,0.000000,0.000000 -601797.955000,4612545.550000,5279,4205,133.222321,185.453720,176.643799,166.280167,148.528107,136.933060,135.594238,134.941330,132.726456,135.057037,133.949600,146.511566,163.189255,180.139679,191.362808,201.139679,199.090088,186.197525,162.015701,141.354553,129.982651,128.164474,121.990921,92.643814,76.379356,90.751251,102.338028,75.313240,35.552914,15.900018,11.090101,9.433072,8.427286,8.823979,8.700014,3.917364,0.815705,0.195868,0.066943,0.254546,0.058678,0.000000,0.000000,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.955000,4612545.550000,5294,4205,130.671921,189.209915,175.656204,165.242981,149.069427,136.689270,134.895889,133.408279,132.879364,134.515717,132.242996,144.664459,161.482651,178.475220,190.177704,199.681839,199.111588,184.706635,162.739685,142.797531,130.979355,129.177704,122.954559,94.623985,78.485970,93.078529,103.417374,75.483498,36.601673,17.113241,11.177705,11.816545,11.556215,10.771915,10.281007,4.463645,1.398350,0.578513,0.414877,0.304959,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.755000,4612545.550000,5313,4205,125.167793,191.511597,173.660355,162.214066,147.271927,134.048782,134.577713,132.610764,132.057037,134.924820,131.098373,142.933090,160.536377,177.197540,188.643814,198.321503,197.189270,182.627289,159.866959,138.900040,128.627289,125.321503,119.900009,91.321503,74.023979,89.304970,99.817368,72.990921,32.528118,13.295061,10.900020,10.042989,7.248772,8.871913,8.560344,3.392569,0.146282,0.546282,0.261158,0.002479,0.000000,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.955000,4612545.550000,5339,4205,123.352081,186.453705,169.668594,162.447113,146.692566,130.163651,129.571091,127.455391,126.852089,130.166122,126.901665,138.199188,155.530594,172.580154,184.844620,196.085129,193.680176,180.374390,158.159515,138.399185,127.911575,125.969437,120.027290,92.779350,76.539680,91.531418,102.696709,74.275230,37.084320,15.295058,10.911590,11.857867,8.117369,8.399187,9.008279,4.757860,1.438846,1.012398,0.927274,0.533885,0.252893,0.166116,0.330579,0.146282,0.000000,0.000000,1.527273,0.000000,0.000000,0.000000 -601816.355000,4612545.550000,5371,4205,143.449585,195.233063,183.290924,174.133896,153.844635,138.728943,137.927277,134.910751,134.456207,140.142151,135.819839,147.166946,163.779358,181.233887,193.923157,205.328110,202.179352,186.799179,165.029755,144.112396,133.517365,128.723969,122.963638,93.343811,76.302490,91.781830,101.823975,72.749596,34.697544,13.267786,11.178532,14.874395,11.852905,12.459516,12.024807,7.907449,4.054549,3.153722,4.674383,3.847109,3.910745,1.976861,0.671901,1.355372,0.000000,0.000000,1.185124,0.000000,0.335537,0.000000 -601825.355000,4612545.550000,5416,4205,161.049591,201.669418,180.719009,172.462814,152.876038,139.619827,138.421494,136.487610,136.504135,141.223145,135.842987,147.247940,163.619827,180.942154,193.363632,205.355377,201.950409,185.421494,163.561981,142.247940,130.942154,129.347122,123.272743,94.520668,76.669426,93.851250,102.132240,71.504150,35.479359,15.527292,11.206631,13.520678,7.318193,9.612411,8.629767,4.521497,0.601655,0.126447,0.114877,0.102480,0.000000,0.003306,0.000000,0.320661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.555000,4612545.550000,5487,4205,112.385132,162.509109,170.062820,160.054565,146.550430,137.162003,135.806625,132.310760,131.889267,133.938858,135.004974,145.905792,163.839676,179.153732,192.079346,201.517365,200.914062,188.145462,163.666122,141.723984,131.740509,128.211578,122.509094,93.798363,76.757034,92.029762,103.203316,76.021500,35.707455,15.838861,11.137209,8.009105,7.881832,9.500014,8.322328,3.871909,0.299174,0.216530,0.212397,0.058678,0.000000,0.000000,0.055372,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.555000,4612545.550000,5597,4205,111.265312,163.938019,168.756195,160.020660,145.962814,136.500015,132.739685,130.929764,131.797531,132.243805,133.855377,144.904968,163.334717,178.756195,191.384293,199.888428,200.260330,188.119827,164.243805,142.417374,130.648773,127.623978,122.318192,92.929764,76.103317,91.260338,102.929764,76.119843,35.483494,15.359522,11.119854,6.815714,7.416544,9.214892,6.863649,4.291744,0.630580,0.292563,0.113223,0.250414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.155000,4612545.550000,5770,4205,113.865311,166.468628,171.435562,161.419037,147.228958,136.625626,134.493393,132.972733,132.344650,134.906616,135.154556,146.526474,163.675232,179.799194,192.518204,202.666962,201.617386,190.080185,165.212418,144.295074,132.352905,127.741341,122.790924,94.898361,77.245476,92.121506,104.138031,76.088448,35.286793,14.067786,11.162829,5.106622,7.553733,6.809105,8.134724,3.562817,0.831407,0.109918,0.058678,0.000000,0.000000,0.000000,0.024794,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.755000,4612545.550000,5903,4205,126.935555,180.786774,176.778503,165.307434,151.332230,139.472733,137.076050,136.307449,135.431412,139.332245,138.786789,149.555359,166.952057,184.224792,196.381805,206.390076,206.332230,195.175201,169.348755,148.249603,134.629761,132.456207,126.472740,96.960342,79.390099,94.439690,106.993401,80.133896,37.431423,16.225637,11.497540,5.819844,7.900015,6.795882,8.899187,2.252899,0.939671,0.057851,0.127273,0.138843,0.074380,0.000000,0.032232,0.172728,0.000000,0.000000,1.161157,0.000000,0.000000,0.000000 -601931.355000,4612545.550000,5946,4205,112.955391,183.029770,175.773560,167.137207,154.814896,138.847946,138.922333,137.236374,136.401672,139.376877,138.790100,148.426453,166.252899,183.666122,197.079346,207.145462,206.162003,195.980179,169.955383,149.401672,136.294235,132.509109,127.236374,97.757027,80.236382,95.484299,107.368599,80.856216,38.765308,15.160349,11.566961,4.616537,7.833076,6.756214,7.093401,2.889263,0.595043,0.318183,0.134711,0.188430,0.007438,0.000000,0.000000,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.155000,4612545.550000,5965,4205,111.906624,184.939682,176.055374,168.286789,152.402496,138.782654,137.253723,135.501663,136.286789,139.931412,137.989273,149.609100,166.419022,184.328110,196.724808,207.187607,207.179352,194.138031,170.691742,148.212402,136.179352,132.609100,127.245461,97.906624,79.708275,95.526459,106.633896,80.419022,36.592583,15.555389,11.567787,6.442986,8.097536,6.222329,6.903317,3.880173,0.519010,0.174381,0.237191,0.014050,0.000000,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.955000,4612545.550000,5984,4205,119.790924,170.481842,173.952911,162.374405,146.291763,136.349609,135.423996,132.440521,131.134735,132.870270,133.465317,145.374405,163.068619,179.622330,192.143005,202.969437,203.506638,189.357880,165.738037,142.680191,132.076889,129.010773,123.300026,95.448776,78.886803,94.176056,104.845467,76.919861,37.498367,15.102498,11.209110,8.838030,7.128114,8.009104,10.195882,4.028933,1.211573,0.671075,0.277686,0.048760,0.168595,0.000000,0.001653,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601942.155000,4612545.550000,6000,4205,103.683479,177.721497,180.596710,165.530594,147.629761,136.390091,135.472733,131.629761,129.910751,132.414886,132.943817,144.770264,163.538849,179.861160,193.671082,202.960342,203.993408,190.290924,165.249603,143.323975,132.803314,130.952072,125.654556,96.191742,79.133911,94.109100,105.720673,75.489281,36.861179,15.304976,11.423160,10.715717,9.196707,9.054559,10.616543,4.715710,1.523143,0.745456,0.728101,0.118182,1.079340,0.000000,0.579340,0.324794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.555000,4612545.550000,6022,4205,104.706627,172.086777,174.169434,161.855392,146.615723,135.574402,133.880188,130.293411,130.491745,131.863647,132.392578,144.210754,162.855392,180.731400,191.326447,204.409088,203.665298,190.780991,166.367783,144.524811,134.194229,131.293411,126.045471,99.119850,81.756218,94.053734,107.987617,78.136383,37.252083,15.142167,11.458697,8.845467,7.505798,7.990094,8.382657,2.952900,1.947111,0.214050,0.117356,0.000000,0.375207,0.000000,0.085124,0.000000,0.000000,0.000000,0.927273,0.000000,1.025620,0.000000 -601950.155000,4612545.550000,6040,4205,100.961182,176.828934,176.952896,164.382645,147.118195,135.481827,136.109924,132.366135,131.481827,133.341324,133.349594,146.225632,163.961166,180.068604,192.795868,204.019012,203.696701,189.952896,164.870255,142.680176,132.002487,128.903320,125.209106,94.514885,78.721497,93.506615,106.605797,75.688446,36.043819,13.675224,11.382663,9.400013,9.184312,8.431417,7.831419,4.548769,0.971076,0.319835,0.064463,0.000000,0.000000,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.755000,4612545.550000,6063,4205,106.830605,182.516525,179.252060,167.574387,150.177689,137.070251,137.640503,134.938034,133.276871,135.169434,134.376053,146.433884,164.541321,181.847107,193.814056,206.574387,205.119827,190.351242,167.119827,144.004135,134.136383,130.723160,125.500015,95.714897,80.764488,94.020683,104.458694,76.491760,37.971096,15.344646,11.409110,8.890098,10.063653,8.816546,10.375222,4.577694,0.462811,0.074380,0.490910,0.000000,0.000000,0.000000,0.357026,0.008265,0.000000,0.000000,0.000000,2.903306,1.458678,0.000000 -601957.555000,4612545.550000,6077,4205,119.563660,183.290939,181.555405,166.208298,150.960358,135.299179,136.968597,133.241333,133.125641,135.687607,132.993393,146.340515,164.662842,181.398376,193.737213,205.414902,205.811600,191.365311,166.960358,144.728958,134.018188,131.257858,125.381844,96.274406,81.166969,94.720688,106.861176,77.514076,38.100845,15.424811,11.398366,11.622329,8.037205,8.810758,10.787620,4.444635,0.541324,0.442976,0.430580,0.000000,0.000827,0.000000,0.099174,0.074380,0.000000,0.000000,0.000000,0.000000,1.456198,0.000000 -601963.355000,4612545.550000,6106,4205,104.038849,183.187607,178.405777,163.728088,147.040497,132.149597,132.538025,130.199188,130.521500,133.265305,131.546295,144.686768,163.009094,180.240494,192.918198,204.728119,203.984314,189.017349,166.257019,143.785950,131.827286,128.926453,123.827286,95.190926,78.488441,93.686790,104.628929,76.240509,36.602501,14.296712,11.257044,11.380181,8.213237,10.047947,10.323153,5.465296,3.342978,2.700828,1.877687,1.176860,1.447108,0.871075,0.716530,0.671075,2.499174,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.555000,4612545.550000,6127,4205,113.671097,186.481018,181.712418,167.654572,151.340500,135.613251,137.497528,133.902512,134.563660,136.828110,135.679352,147.109100,164.158707,182.018204,193.555405,204.761993,203.943817,191.398376,167.224823,145.042984,134.067795,130.885971,126.745483,96.943817,80.770271,95.935555,106.770271,77.629776,38.638039,15.878532,11.522334,10.144642,8.556211,9.804973,11.632248,5.647115,1.362813,0.242150,0.221488,0.277687,0.000000,0.002479,0.012397,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,4.664464 -601970.355000,4612545.550000,6141,4205,119.012413,175.797516,173.690079,164.152893,148.731415,134.979355,131.946304,130.607452,129.169434,132.061996,130.863647,142.351257,156.962830,174.070251,185.739670,197.574387,196.789261,184.491730,161.326462,139.781006,129.450424,126.367783,122.409103,95.268608,78.871918,93.243820,101.442162,74.475220,35.458698,14.015719,11.128118,4.883482,8.047121,7.452904,7.786790,3.752072,0.510746,0.344630,0.119009,0.031405,0.000000,0.345455,0.000000,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.755000,4612545.550000,6158,4205,122.253731,173.204147,172.377701,163.592575,147.683487,135.154556,133.138031,131.237198,130.179352,132.873566,131.509933,142.005798,157.807449,174.468597,185.832245,195.972733,196.551254,184.774384,160.766129,140.419022,129.038849,127.319847,120.972740,94.534721,78.154556,92.534721,101.592575,74.286789,34.724815,14.395058,10.997540,6.379349,8.378527,7.456209,7.979352,3.430583,0.369424,0.220663,0.411571,0.042149,0.027273,0.090909,0.000000,0.396695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.955000,4612545.550000,6179,4205,114.523155,173.176041,169.300003,162.589264,147.060333,133.771088,132.209106,129.936371,128.671921,132.134720,131.638855,141.324799,157.531418,172.762817,185.903305,197.605789,196.415710,183.233887,160.333069,138.845459,130.085144,125.754562,121.845467,95.597534,79.060356,93.308281,102.209106,76.862007,37.043819,15.636381,11.076880,5.924805,8.851254,7.043813,8.361998,2.903310,0.534712,0.262811,0.052893,0.245455,0.000000,0.000000,0.000000,0.394216,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601981.155000,4612545.550000,6195,4205,112.636375,168.743805,172.388428,165.454544,150.495865,138.479355,134.462814,132.809921,130.925629,134.677689,132.884308,143.289276,159.330582,175.512390,188.305786,198.165283,199.190079,187.066116,163.231400,141.082657,131.851242,129.479340,123.181824,95.826454,80.264481,94.652901,103.314056,76.785141,36.752087,13.805802,11.198366,6.096704,10.255388,8.439682,7.965304,2.833062,0.349588,0.314877,0.413224,0.181819,0.080992,0.209918,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601984.955000,4612545.550000,6214,4205,114.203316,175.302490,173.525635,162.600006,149.864471,137.484314,135.319016,133.004974,132.335556,135.203323,133.881012,144.905792,160.707458,177.046295,189.145462,199.798355,200.352081,187.525635,164.120667,141.856216,132.319016,127.823151,123.963646,97.137199,81.566956,96.451256,103.723976,76.641335,37.162003,15.082663,11.269441,8.071087,9.109934,8.855385,9.238856,2.961988,0.777687,0.658680,0.271075,0.038017,0.000000,0.208265,0.278513,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601989.755000,4612545.550000,6238,4205,102.730598,164.540512,166.887619,163.631424,146.523987,136.317368,131.813232,131.085953,129.482651,133.102478,132.052902,142.730591,157.623154,174.350433,186.168610,197.309113,195.970261,184.218201,160.755386,139.920685,129.928925,125.581818,122.763641,94.094231,79.127289,93.077705,102.044647,74.152084,37.102497,13.747125,11.160350,6.418192,8.471089,8.269434,7.848773,3.372733,0.623142,0.095042,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.955000,4612545.550000,6254,4205,105.679367,166.869431,169.224808,160.076050,146.175217,135.059525,133.018188,130.233063,129.084305,132.604965,131.166946,140.720673,157.274384,174.117371,185.910751,197.042984,195.976868,184.423157,160.885956,139.687607,128.629761,125.819847,121.109100,94.613243,78.481010,92.439690,103.009926,74.778534,35.439690,14.842167,11.009936,5.505795,7.847949,7.699186,8.370262,3.478517,0.400001,0.242149,0.000000,0.024794,0.105786,0.076860,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601997.755000,4612545.550000,6278,4205,97.345474,168.213226,171.923981,159.833069,144.692566,134.403336,132.428116,128.510773,127.915726,131.229782,131.362000,140.378525,156.370255,172.370255,183.849594,194.659515,195.312408,184.023148,159.684311,138.626450,127.138863,125.014900,121.163658,91.890930,76.998367,93.362007,102.874405,74.295883,34.857872,15.506630,11.014895,7.593400,9.454560,8.039680,7.221503,1.714053,0.504960,0.198348,0.108265,0.113223,0.000827,0.000000,0.346281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.755000,4612545.550000,6313,4205,100.970268,161.185150,167.085968,157.226471,143.143814,134.383484,131.499191,129.738861,127.598366,129.846298,129.970261,140.400024,156.251266,172.160355,183.871094,194.829773,195.887619,183.871094,159.548782,138.714066,128.085968,125.019852,120.218201,94.771919,78.647957,92.532249,102.400017,75.647957,35.920677,15.001671,10.928944,5.364473,9.360348,7.019846,7.083485,1.995871,0.248762,0.315704,0.591737,0.314876,0.078513,0.360331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.155000,4612545.550000,6345,4205,94.271919,159.205811,168.048782,157.833908,143.288452,133.081833,129.371094,128.709930,128.379364,129.957870,131.321503,141.445480,158.321503,173.660355,185.817352,195.156204,194.420670,183.999176,160.346298,139.784317,129.676880,126.751259,121.172745,95.147957,79.280182,93.875229,104.800842,76.114899,37.668613,16.504150,11.015722,7.505796,9.568611,8.774394,7.961170,4.876040,0.164464,0.242976,0.634712,0.332232,0.000000,0.327273,0.274381,1.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602014.955000,4612545.550000,6364,4205,101.947121,155.302490,169.244644,158.170258,143.120651,134.641342,131.765305,127.938858,128.104141,129.889267,130.633072,140.781815,157.095886,173.104126,184.467758,194.657852,195.401657,183.145447,160.170258,138.525620,129.170258,124.426460,120.509102,94.195053,77.955383,92.897537,102.120674,76.790092,37.707458,14.404977,10.955390,6.181004,7.198363,7.920674,7.981831,2.159508,0.204133,0.019835,0.060331,0.109918,0.000000,0.276034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.755000,4612545.550000,6393,4205,103.179359,152.724823,163.749619,154.551270,142.691742,133.923157,131.179352,128.947937,126.658684,128.914886,129.840515,139.030594,154.766144,171.576065,182.212418,192.964493,193.385971,182.038864,158.972748,138.402496,128.352905,123.799187,118.518188,93.352913,77.625641,90.584312,102.088440,73.551254,34.452084,12.940513,10.774398,5.383482,6.998362,6.102490,7.528937,2.481823,0.427274,0.197521,0.173554,0.385125,0.005785,0.000000,0.224794,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.355000,4612545.550000,6421,4205,98.997536,158.774384,166.774384,157.766129,144.369431,134.782654,131.261993,129.567780,128.319839,128.873566,130.171082,140.666946,156.617371,172.047119,183.724823,194.419037,194.708298,183.146301,159.633896,138.501663,129.774384,125.121498,120.518188,94.947960,77.749611,92.675224,102.204147,75.815720,36.724815,13.782661,10.956217,5.745466,8.036379,10.461998,7.818195,1.736368,0.728101,0.632233,0.348761,0.207438,0.004132,0.208265,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.755000,4612545.550000,6463,4205,89.523987,158.647949,169.267792,158.168610,142.309113,134.383484,131.077698,129.218201,128.656204,129.788452,131.143814,140.656219,156.540512,172.193405,183.986801,194.466141,194.945480,183.242996,160.647949,139.127289,129.044647,126.689278,120.763657,95.052910,78.614891,93.821510,101.300842,74.829765,35.119026,14.779357,10.978532,5.613235,7.958694,7.127285,6.938029,3.013228,0.327274,0.012397,0.352067,0.000000,0.110744,0.076033,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.555000,4612545.550000,6487,4205,99.649605,158.525635,167.757034,157.806625,142.385132,132.757050,131.889282,128.657867,128.327301,130.029770,130.723984,140.360336,157.178528,172.550430,183.087616,195.128937,194.748779,183.798355,160.277695,139.938858,129.285965,125.021507,120.690933,94.228111,79.219856,93.170258,102.897537,73.666138,35.699196,14.839687,10.971920,6.482656,7.664478,7.695054,7.594228,3.494220,0.893391,0.000000,0.052066,0.032232,0.002479,0.380166,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602044.355000,4612545.550000,6511,4205,78.952087,160.307465,169.745483,159.299194,146.266144,136.299194,133.728943,130.034729,130.357040,130.745468,131.902496,142.489288,158.084320,173.852921,185.034729,196.018204,196.877716,183.852921,161.852921,140.737213,130.844650,127.009933,122.472748,95.348778,81.439690,95.505806,103.737206,75.266136,37.431423,16.405804,11.133904,6.384308,9.938860,9.409105,8.142989,3.801660,0.653722,0.127274,0.307439,0.324794,0.001653,0.000000,0.819836,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.555000,4612545.550000,6527,4205,81.235550,160.161179,166.772751,159.078522,142.797531,132.566132,130.202499,128.442169,128.359528,128.665298,129.921509,140.400848,156.574402,171.632248,183.293411,195.533081,195.318192,183.384308,159.615723,140.169434,129.318192,125.500015,120.954559,95.136383,78.648773,92.599182,104.508278,75.549606,37.409111,15.606630,10.995886,6.395051,8.795056,9.470263,10.134725,3.836371,0.803308,0.473556,0.103306,0.047934,0.011571,0.258678,0.000000,0.289256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.555000,4612545.550000,6542,4205,91.440514,156.465317,165.671906,156.663635,143.250458,133.779358,130.928116,128.977707,128.159531,128.349609,128.969437,139.928131,156.151260,170.457031,184.052078,194.457031,195.068604,183.200836,160.035538,138.853760,128.994232,124.804153,118.754570,92.985962,78.787621,93.159515,101.862000,75.862007,35.514900,14.623157,10.795887,5.298357,7.096707,6.942987,8.823979,2.702484,0.431406,0.048762,0.277687,0.064463,0.000000,0.128926,0.126447,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602053.355000,4612545.550000,6556,4205,95.367783,158.152908,168.582657,158.210754,143.227295,134.962830,131.128113,128.938034,127.855385,129.012405,130.797531,140.648773,157.351257,172.574402,184.838852,196.367783,194.797531,183.136383,160.615723,139.417374,130.442169,126.053734,120.954559,95.012413,78.533073,92.987617,102.921501,74.136383,35.640514,14.971091,10.995886,6.830591,8.094229,8.579350,7.506624,2.580170,0.743803,0.237192,0.169422,0.163637,0.009918,0.156199,0.141322,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602057.155000,4612545.550000,6575,4205,93.678535,162.009125,165.521515,158.447144,143.496719,134.546295,132.000854,128.215729,127.199196,129.223984,130.124817,139.752914,156.174408,171.009125,181.166138,193.571106,193.414078,181.662018,159.397552,138.397552,127.042168,124.719856,119.190933,94.612419,78.141342,93.909935,102.678535,73.223991,33.835556,13.581837,10.835556,5.409929,6.369435,6.385135,8.192575,2.324797,1.072729,0.012397,0.127273,0.000000,0.000000,0.072727,0.500827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602062.955000,4612545.550000,6604,4205,90.817375,152.610764,167.271927,156.776047,142.825653,134.470261,131.478531,128.577698,127.924820,130.321518,129.561172,140.949615,157.114899,171.552917,183.809113,194.519852,195.379364,182.652084,160.453735,138.602509,128.966141,124.817383,119.809120,94.189278,77.685143,92.156219,103.081841,72.916550,34.395882,14.408283,10.891755,6.170258,7.862000,7.501665,8.451254,3.415707,0.305786,0.022315,0.303307,0.084298,0.000000,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602071.555000,4612545.550000,6647,4205,99.910759,160.530609,167.183502,158.472748,144.762009,134.522339,130.935547,128.117371,128.076050,128.877701,130.257858,141.621521,156.522339,171.877716,183.464493,194.133911,195.034729,183.745483,158.894241,139.629776,129.580170,125.720673,120.290916,93.464470,79.621513,95.067780,101.166962,74.869446,36.348778,14.104149,10.935555,7.000012,8.133074,9.232244,9.369435,2.828931,0.567770,0.104133,0.251240,0.000000,0.001653,0.000000,0.322314,0.276033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602076.955000,4612545.550000,6674,4205,98.402496,159.427292,168.038864,158.823990,142.848770,133.063644,129.493393,128.385956,127.344635,128.121490,128.774384,139.609116,155.460342,171.807465,183.113251,192.972748,193.848785,183.063660,159.435547,139.319839,128.138031,124.939682,119.427284,93.567787,77.790924,93.328110,103.642159,74.476875,36.683487,13.865306,10.857043,7.330590,9.072742,9.383486,7.314888,2.904964,0.183472,0.149588,0.243802,0.366117,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.555000,4612545.550000,6692,4205,96.804977,161.168610,167.755386,158.573578,145.375229,134.019852,131.838028,128.085968,128.226456,127.631416,129.259521,139.474396,156.970261,171.573578,183.689270,194.284317,193.548782,181.474396,158.920685,137.780182,127.829765,124.342163,119.945473,92.738861,76.193405,91.548782,101.871094,74.838036,35.284317,13.482662,10.904152,5.542987,8.044643,10.204973,7.552905,3.896700,0.424795,0.109918,0.167769,0.000000,0.034711,0.072727,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.355000,4612545.550000,6716,4205,95.405807,156.091751,167.240509,158.075226,143.405792,131.885147,130.058701,126.744652,126.414070,126.364487,126.761177,138.323181,154.612411,169.794235,181.017365,192.893402,192.471909,181.091751,158.223984,136.190933,126.984322,122.852089,119.009109,90.951263,75.802498,91.009109,100.711594,73.347954,34.463657,13.310760,10.819027,6.471913,6.997534,9.144642,6.423978,4.348766,0.292563,0.069422,0.438844,0.276860,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602091.355000,4612545.550000,6746,4205,103.414070,154.513245,168.157883,157.538040,144.265320,134.381012,131.951248,128.033890,126.785965,127.504974,129.480179,139.232254,156.397552,171.265320,182.967804,193.752914,194.827301,182.298370,160.306641,138.769455,128.736374,125.934723,119.736374,95.637215,78.381012,91.405807,103.240517,77.141342,35.612415,14.578530,10.885143,8.855385,11.428116,9.367783,8.966129,4.552900,0.584300,0.118183,0.249587,0.426447,0.000000,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602097.155000,4612545.550000,6775,4205,104.722336,161.804977,171.094238,160.052917,145.821503,136.011597,133.838043,130.044647,128.862823,129.747131,129.383484,141.565308,158.780182,173.234726,186.201675,195.631424,195.904144,184.234726,161.705811,140.755386,129.672745,126.854568,122.127289,96.102501,80.160347,93.036385,106.284317,77.102501,37.978531,16.375223,11.102499,8.940511,10.135552,12.009933,9.480180,3.056204,0.877689,0.204133,0.499175,0.180992,0.282646,0.390910,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.155000,4612545.550000,6790,4205,84.229767,162.990112,170.948776,160.064484,146.750443,133.940506,131.775223,129.469437,128.229767,127.981834,130.436371,139.981842,157.395065,172.593414,183.932251,194.609924,195.419846,182.560349,159.667786,139.841339,129.204971,125.188446,120.254562,94.262825,78.006622,92.733902,102.651253,75.651253,35.800018,13.959522,10.932251,8.023979,9.027288,8.228938,9.660344,4.477691,0.180167,0.274382,0.365290,0.000000,0.185951,0.000000,0.142975,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.955000,4612545.550000,6809,4205,95.215721,159.860336,169.827271,158.662018,144.703339,133.504974,132.075226,128.777710,127.777710,128.248779,128.199188,140.207474,156.967789,171.819000,182.852066,194.075226,194.918198,181.364456,158.521500,139.480194,127.736382,125.662003,118.736382,91.645477,78.000847,90.761177,102.133080,74.381012,35.909939,14.176050,10.794235,8.967780,8.166131,8.075219,8.476047,3.783477,0.448761,0.096695,0.385952,0.247934,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602107.755000,4612545.550000,6828,4205,92.037209,164.657059,172.863663,160.871933,146.392593,134.235550,133.185959,128.632233,128.772736,129.475220,130.078522,140.632263,157.425659,173.342987,184.995865,196.161163,195.243805,183.309937,160.632263,140.004166,129.425629,125.904968,120.863655,94.533073,78.681824,92.623985,104.913231,73.500008,36.062000,13.988446,10.987622,8.573566,8.175220,10.087616,9.588444,4.695047,1.295044,0.224794,0.143802,0.110744,0.000000,0.668596,0.367769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.555000,4612545.550000,6842,4205,91.035561,166.209091,169.118195,159.985962,143.762833,134.390930,133.878525,129.572739,129.547958,129.779358,129.093399,141.589279,156.696701,173.547943,184.514877,195.357864,195.696701,184.233887,159.804138,140.002502,129.738037,127.134727,121.027290,94.035545,78.713234,93.019012,103.324799,76.027290,34.828945,13.641339,11.002498,9.192575,8.800014,10.476875,9.409104,4.195048,1.566119,0.182645,0.342976,0.036364,0.197521,0.000000,0.633885,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602114.155000,4612545.550000,6860,4205,92.530594,164.390106,169.175232,160.125641,143.538864,132.241333,131.811584,128.166962,126.282661,128.993408,128.497543,139.348785,156.861176,171.919037,183.671097,194.423172,194.447952,181.596725,159.100845,138.720688,129.216553,124.985138,120.654564,93.720680,77.985138,92.514069,101.786797,73.538864,34.076050,13.821504,10.968615,7.723979,8.628941,8.367782,7.392575,2.236367,1.107440,0.452895,0.114876,0.094215,0.000000,0.000000,0.408265,0.429752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602117.155000,4612545.550000,6875,4205,102.123978,169.652908,171.429779,161.123978,145.347122,133.669434,133.396698,129.123978,127.595047,129.818192,130.033066,141.264481,157.867783,172.801682,185.090942,195.090942,195.495895,182.247971,160.289276,138.636383,129.049591,126.057861,120.636375,94.008278,79.264481,91.347115,103.123978,74.892570,34.652908,14.917374,10.966961,9.889271,9.567784,8.895055,8.620676,4.680999,0.786780,0.196696,0.484299,0.063637,0.000000,0.000000,0.428926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.955000,4612545.550000,6899,4205,97.528122,175.850433,171.412415,160.015717,145.288452,133.321503,132.329773,128.825638,128.048782,129.825638,129.329773,140.842163,156.561172,172.536377,183.866959,195.255386,195.643814,181.685150,158.263657,139.371094,128.635559,125.685143,119.536385,93.585968,76.627289,91.751259,101.709938,73.569443,34.858696,14.127290,10.866961,7.661996,8.397536,7.212409,7.685138,3.026452,0.475208,0.547935,0.063637,0.031405,0.000000,0.072727,0.364463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.755000,4612545.550000,6928,4205,105.261993,165.162827,167.716537,161.212402,145.757858,132.823975,131.253723,128.691742,127.650421,130.270264,128.352905,139.410751,156.286789,172.129761,183.766129,195.476868,195.286789,181.716537,159.600830,138.881821,128.923157,126.609100,121.154556,93.923149,78.493401,92.873566,100.642159,73.311577,32.675228,12.720678,11.014069,9.290095,8.737204,8.134723,7.269434,4.261165,0.576035,0.019009,0.057851,0.000000,0.054546,0.000000,0.172728,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.755000,4612545.550000,6948,4205,100.670258,177.405777,171.232224,161.794235,145.182663,133.885132,133.909927,131.075226,129.860336,131.554565,130.819016,141.058685,157.843811,174.678513,188.223969,198.298340,197.777679,184.513214,162.794235,141.719849,131.100006,128.645462,123.281830,95.951256,80.885139,94.050423,101.728111,73.562820,34.157871,14.778529,11.207457,9.092576,8.181834,10.088445,7.610758,3.792570,0.220662,0.049589,0.053719,0.391737,0.000000,0.000000,0.000000,0.206612,1.613223,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.555000,4612545.550000,6977,4205,108.562828,177.265305,175.207458,165.918198,150.496719,139.133087,136.199203,133.091751,133.331421,137.463669,134.901672,146.943008,162.885132,180.819016,192.777695,205.785965,204.017365,191.397537,167.471909,149.455399,138.017380,135.802505,129.645462,101.182655,85.248779,101.025635,107.604149,77.959526,37.397537,15.623985,11.785971,10.314064,7.857867,9.873569,10.052906,4.095048,0.789259,0.074382,0.165290,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.955000,4612545.550000,7009,4205,127.439690,180.158691,173.976868,166.042984,149.894226,137.960342,136.266144,134.580185,132.778534,137.745468,135.059525,146.811584,162.919022,180.919022,193.431412,206.621490,205.340500,190.836380,169.753723,149.935547,139.373566,135.927292,130.109116,102.266136,84.885971,100.877701,109.547127,79.646309,39.009937,15.435557,11.828118,13.252082,11.082661,11.339686,10.549601,3.313229,0.828102,0.229754,0.129752,0.891737,0.000000,0.000000,0.000000,0.467769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.355000,4612545.550000,7056,4205,132.709930,176.536377,174.569443,168.627289,151.594238,137.453735,135.577698,134.594238,133.610764,139.379364,134.503326,145.957870,162.338043,179.338043,192.726456,205.197525,204.982651,189.412399,168.883484,148.784317,138.891754,134.858704,130.718201,100.990929,85.470268,101.660347,110.883492,78.709938,38.139690,16.391754,11.883491,10.611584,8.654561,10.928117,10.062824,7.371085,0.541324,0.271076,0.183472,0.061157,0.037190,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.555000,4612545.550000,7072,4205,123.546288,178.538025,171.521500,161.562820,146.207458,134.521500,131.223969,129.447113,128.645462,133.587601,130.281830,141.562820,157.893402,174.604141,187.116547,200.050430,198.587616,184.314896,163.810760,144.265305,133.397522,129.876862,124.372734,95.166122,80.248779,97.678520,106.174385,76.265297,36.546299,14.866131,11.306630,10.556211,8.138031,7.987618,9.677700,3.785959,0.561159,0.085125,0.452894,0.000000,0.104132,0.037191,0.345455,0.104132,0.000000,0.000000,0.000000,1.793389,0.000000,0.000000 -602159.155000,4612545.550000,7085,4205,117.560349,175.733887,171.502487,166.527283,146.295868,135.824799,132.717377,130.180176,130.353729,135.097534,131.775223,142.816528,157.494217,175.163635,189.196701,201.510757,200.535538,185.097534,165.246292,145.535538,135.089264,131.006622,126.618195,96.990097,82.452904,98.857864,109.320679,77.709106,37.114071,15.310760,11.510763,10.657038,9.824809,10.080180,9.252079,3.604140,0.892564,0.704134,0.151240,0.222315,0.000000,0.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.355000,4612545.550000,7101,4205,121.620682,161.281830,165.496704,154.785965,139.075226,129.678528,126.066956,124.339684,123.529762,127.100014,126.381004,137.190918,154.364471,169.794235,183.703323,196.918198,195.785965,183.827286,162.819016,142.091751,131.232239,127.959518,122.009102,94.819023,78.967781,95.207451,106.711586,78.273575,37.422337,14.916545,11.091755,7.883484,9.029767,8.830593,7.964472,2.913231,0.801655,0.490911,0.000000,0.151240,0.041322,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.272728 -602166.555000,4612545.550000,7122,4205,101.887634,149.036362,157.614883,148.953720,135.614899,126.300842,124.143829,121.036385,120.647957,123.036385,123.333900,134.185150,150.854553,167.623138,179.887604,191.904144,192.846298,181.689255,160.127274,139.276047,129.292587,124.152084,118.490929,91.821518,76.449608,91.193413,105.573570,79.168610,35.127293,12.721505,10.771920,4.427281,8.790097,6.808279,7.361168,2.370255,0.761985,0.812398,0.057025,0.075207,0.118182,0.076033,0.147108,0.375207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602171.555000,4612545.550000,7147,4205,124.600014,164.120651,161.013214,152.095886,138.550415,127.757034,124.087616,122.715714,120.814888,121.071091,122.393402,132.864471,151.872742,167.930573,180.186768,193.162003,192.385132,182.401657,159.980164,140.839661,129.145462,123.790092,119.781830,90.393410,76.352089,92.219856,109.376869,83.401672,39.575226,16.695885,10.889277,8.050425,8.738857,8.864478,10.287617,5.061993,0.871903,0.661985,0.067769,0.519837,0.244628,0.000000,0.208265,0.152066,2.345455,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.555000,4612545.550000,7162,4205,96.085960,154.003326,158.928940,149.614899,135.309097,126.647942,123.482658,120.276047,120.325630,121.821503,121.937202,132.846298,150.325638,166.342163,179.300842,190.333908,191.325638,180.441345,157.970261,137.904144,127.201668,124.185135,116.309105,89.441330,73.300835,92.490921,104.317368,79.862823,37.077705,13.368612,10.573573,5.122325,8.733899,8.804974,6.576871,4.215710,1.317359,0.171075,0.289257,0.463637,0.000000,0.000000,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602178.955000,4612545.550000,7184,4205,98.915718,146.857880,157.601669,150.766968,138.428101,128.279343,123.907448,121.791740,120.461166,122.469429,124.634720,134.923981,152.130600,167.006638,181.254562,191.758698,192.609940,183.981842,160.882660,140.204971,128.882645,125.105789,117.527283,91.981834,75.072739,93.072739,109.560333,81.295876,38.915726,15.446299,10.684316,6.360344,9.166957,9.752911,9.163648,4.589265,0.884300,0.490084,0.000000,0.000000,0.128926,0.397521,0.077686,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.755000,4612545.550000,7198,4205,90.427299,147.129761,158.534729,148.567780,134.609116,124.460350,121.898376,119.609116,117.609116,119.947960,120.881844,132.319855,149.452072,165.964493,177.551270,190.402512,190.865311,180.245483,158.187622,138.526459,127.047127,122.939697,115.881844,89.666969,74.906639,90.898376,105.675232,80.939697,37.493412,14.193406,10.534730,7.246294,8.969436,10.170261,7.719020,2.679345,1.409920,0.372728,0.061157,0.151240,0.000000,0.000000,0.280166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.755000,4612545.550000,7218,4205,100.414894,143.067795,157.365311,147.472748,135.993408,126.175209,122.026451,120.398346,118.340500,120.439674,121.084297,133.894211,150.266144,166.018204,177.819855,189.919037,189.671097,179.803329,158.869446,137.869446,127.737190,122.828102,117.290909,89.067787,74.282661,93.092583,107.373573,80.290924,38.398365,16.001671,10.662829,6.417368,8.602493,10.303322,9.438857,3.269431,0.639671,0.034711,0.079339,0.066116,0.139670,0.000000,0.000000,0.000000,0.000000,1.439669,0.000000,0.000000,0.000000,0.000000 -602188.555000,4612545.550000,7232,4205,83.046295,143.980179,154.277695,147.682663,133.087631,123.219856,121.112419,117.707458,116.715721,117.195061,120.137215,129.831421,148.244644,164.426453,175.847931,187.657867,187.401672,177.765289,155.062820,135.310760,126.310768,120.641342,114.690933,88.029762,71.856209,89.558701,104.947128,76.674393,34.104153,12.917372,10.426464,5.549598,7.926460,8.944642,6.628111,3.897528,0.490911,0.172728,0.000827,0.037190,0.054546,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.555000,4612545.550000,7247,4205,84.860352,149.637207,157.331421,148.571091,133.331421,125.298363,122.695053,117.546295,118.885139,120.017365,119.852081,131.769440,149.066956,165.298355,177.414062,188.802490,189.769440,178.108276,157.397537,135.290100,126.083481,121.901665,116.645470,88.695061,71.967781,92.174400,107.050438,79.273575,39.802498,14.123984,10.604151,6.030591,8.412412,7.495883,8.092574,4.237200,0.365292,0.065290,0.000000,0.064463,0.000000,0.001653,0.000000,0.626447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.555000,4612545.550000,7272,4205,97.490929,144.838043,157.523987,146.681015,131.490921,122.358688,120.581833,116.044640,116.251251,116.895882,117.548775,129.127289,146.457870,162.887619,174.780182,185.052917,186.168610,175.681015,154.879364,134.722321,124.011581,119.333893,113.309105,85.995056,70.838036,88.061165,103.565300,76.019852,35.404152,12.202497,10.300846,5.039680,7.176873,6.642986,5.997531,1.628106,0.339671,0.470249,0.137190,0.035537,0.460331,0.282645,0.072727,0.366116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.755000,4612545.550000,7308,4205,112.351257,147.376053,156.847122,147.045471,133.557861,124.789276,121.400841,118.417374,115.921501,117.789276,119.136383,129.566132,148.938034,163.582657,175.351242,188.144623,188.433884,178.061981,156.400848,136.466965,125.789276,122.557869,115.681831,89.334724,72.781006,90.772743,106.169441,80.078529,38.409111,17.209934,10.516547,6.849599,9.464478,9.742990,10.828938,4.374391,2.478518,0.519837,0.102480,0.068595,0.119835,0.000000,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602212.155000,4612545.550000,7350,4205,104.325638,146.094238,155.879349,147.028107,133.350418,123.813232,119.920670,117.201668,117.143814,116.672737,117.366951,127.895882,145.019836,160.838013,172.218185,182.350418,182.887604,171.375214,152.309097,132.953735,123.879349,120.119019,115.400009,89.242996,73.490921,90.664482,108.119026,80.606621,37.631420,14.603321,10.490928,7.224807,7.307451,10.274394,10.646296,3.877694,0.616531,0.260332,0.238017,0.300827,0.084298,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602221.555000,4612545.550000,7397,4205,141.246307,156.717361,157.419846,144.105789,130.196716,120.271080,114.932236,111.576874,110.973572,110.436378,111.097527,120.841331,137.014877,151.907440,162.097534,170.147110,169.204971,160.560333,141.948761,125.328934,115.295876,113.287613,110.345459,85.064484,69.188454,87.370262,106.452904,79.692574,36.081009,12.733075,10.031423,8.362823,9.104973,10.091750,10.453734,3.985132,0.478515,0.138844,0.417356,0.032232,0.000000,0.323967,0.106612,0.580166,0.000000,0.000000,0.000000,0.000000,1.624794,0.000000 -602245.555000,4612545.550000,7517,4205,149.890091,170.848785,153.650421,138.865295,122.675224,110.956215,108.551254,105.204147,104.071922,106.162827,106.501671,117.402496,137.212402,152.584305,165.666962,173.352905,171.542984,162.542984,145.088440,127.716545,117.956215,116.584312,115.972748,91.179359,69.881844,92.617371,124.650429,100.452087,49.633907,12.828118,10.542994,9.876874,9.138030,12.992580,16.937208,11.957042,1.490088,0.468597,0.433885,0.314877,0.147108,0.056199,0.482645,0.000000,10.105786,5.295868,2.108265,7.446282,3.307438,0.000000 -602250.555000,4612545.550000,7542,4205,132.517365,160.980194,156.790115,142.773590,127.095879,117.393402,114.674393,111.310760,111.798363,114.079353,115.525635,128.062820,147.137222,163.930603,178.319031,190.476044,191.509109,183.252914,163.517380,144.360367,134.236374,131.839676,128.509109,99.013245,79.872749,99.484322,125.930588,97.451256,46.219852,15.906631,11.682664,9.413239,11.481009,12.911588,15.013239,9.832245,1.297524,0.670250,0.270249,0.000000,0.061984,0.269422,0.000000,0.000000,0.000000,7.795869,1.085950,1.871075,3.488430,0.000000 -602258.355000,4612545.550000,7581,4205,127.952904,160.911591,158.019028,143.985977,129.828934,119.101669,117.019020,114.184319,113.349609,114.432251,116.184319,126.828941,145.655396,163.283493,176.845474,189.795868,193.035538,182.911591,158.985977,137.490082,126.481834,121.333069,117.481834,88.448776,67.771095,87.258690,103.795883,75.126457,34.886795,12.688448,10.680185,8.314062,8.176048,8.883486,10.776049,5.650422,0.763638,0.193389,0.596695,0.062810,0.044628,0.206612,0.000000,0.004959,2.786777,1.417356,2.430579,2.113223,2.444628,0.000000 -602270.555000,4612545.550000,7642,4205,139.498367,159.971085,157.607452,141.921509,126.987617,114.037209,110.962830,108.045471,106.756218,108.136383,108.376053,118.632248,135.797531,153.194229,166.863647,178.822327,180.219025,170.268616,146.781006,125.301666,113.384315,108.673569,102.954559,75.772751,57.549606,76.623985,92.756218,68.442169,32.450432,12.408283,9.359524,7.705796,8.362824,7.694228,8.617369,5.604141,1.387607,0.680167,0.157025,0.000827,0.390084,0.388431,0.000000,0.430579,1.411570,0.000000,1.135537,1.025620,2.418182,8.546282 -602279.955000,4612545.550000,7689,4205,150.317368,163.155380,148.940506,133.725632,119.287621,105.973572,102.998352,102.147118,100.684303,103.981827,103.998352,114.990097,132.618195,150.105789,164.204971,174.221497,175.287613,166.502487,145.932236,125.147118,114.527290,111.031418,105.890915,78.651253,60.056217,77.808281,100.105789,79.510757,37.254562,12.704976,9.626465,10.481006,10.236377,14.398363,16.365305,12.243815,3.387611,1.199176,0.813225,0.616530,0.182645,0.832232,1.548761,1.245456,12.909093,8.348761,5.357026,7.247108,4.106612,3.983471 -601293.155000,4612535.550000,2755,4255,111.482658,137.456223,122.737206,113.811584,98.968613,86.423157,86.166962,83.076050,82.803322,83.406631,82.960350,92.406631,107.257866,119.249603,130.059525,139.497543,140.166962,133.968613,121.547127,107.307457,98.844643,98.183487,96.018196,69.018196,51.753738,68.960350,102.671089,88.067787,40.960350,9.922329,8.728946,16.228117,12.945472,18.500845,27.494236,20.260349,4.755380,1.890912,0.838019,0.474381,0.356200,0.235537,0.690911,0.624794,15.716533,10.827274,7.591737,5.103307,5.587604,5.062810 -601296.555000,4612535.550000,2772,4255,96.994232,141.759521,136.329773,121.561180,108.495056,95.850433,95.974396,93.255394,92.495064,93.842171,92.470268,102.156212,115.478523,128.990921,138.263657,147.023987,147.949600,142.015717,128.701675,112.883484,103.924812,102.825630,100.718201,73.437202,56.065304,72.098358,104.090096,87.858696,39.908283,8.925635,9.156218,12.947123,10.703320,15.265306,21.895061,10.693402,0.880994,0.188431,0.014876,0.000000,0.138017,0.125620,0.222315,0.105785,4.924794,3.805786,2.024794,1.051240,0.779339,0.000000 -601302.155000,4612535.550000,2800,4255,92.982658,137.894226,129.142166,117.381836,101.695885,88.704147,88.968613,86.323982,85.811584,87.026466,84.026466,92.133904,105.009933,117.373573,126.340515,133.158691,134.150436,129.803329,119.092583,109.034729,101.406631,102.200020,97.836380,77.365311,59.084316,76.357040,106.588448,95.687622,48.819851,11.343818,8.894234,15.786794,14.623157,22.042994,30.985142,19.197538,0.753721,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.947934,0.000000,0.861984,0.000000,0.000000 -601310.555000,4612535.550000,2842,4255,145.509949,174.325638,154.102493,143.193420,126.722328,113.904144,114.044640,112.829765,112.490921,116.796707,114.928940,126.565300,142.854584,161.267792,174.408279,186.705811,186.937210,174.309113,151.565308,132.201660,122.218193,120.052902,113.309105,84.333893,66.276054,79.871086,93.928940,67.515724,30.664482,11.819853,10.300846,15.328943,10.019023,11.531422,10.109932,6.813231,1.346284,0.429753,0.068596,0.202480,0.000000,0.276033,0.000000,0.541323,4.267769,2.802480,3.506612,0.885951,2.014876,11.723142 -601322.555000,4612535.550000,2902,4255,174.518188,194.344635,161.377716,150.518204,129.675232,118.022339,116.625648,113.501678,114.650436,120.162834,117.030602,127.014076,145.344650,162.576050,177.055374,190.947937,189.766129,176.220673,153.303329,133.675232,122.427299,119.047134,114.336388,83.609116,65.369438,81.666969,91.452095,64.485138,31.890100,13.100844,10.394234,17.575224,10.761171,11.116545,12.507453,5.349596,0.925624,0.385126,0.674381,0.199174,0.074380,0.043802,0.147108,0.580166,4.338843,6.400001,2.735538,2.564463,1.056198,2.021488 -601341.355000,4612535.550000,2996,4255,108.635559,145.982666,149.999191,140.181015,126.685143,117.057045,115.081841,113.156219,113.288452,115.114899,116.668617,127.362831,145.156219,160.957870,173.742996,185.866959,186.883484,176.362823,153.404144,131.247131,120.933075,116.643822,112.081841,84.528122,65.519852,78.759521,90.172745,66.635559,28.645473,11.743817,10.189276,6.240506,6.548773,6.375220,7.652080,3.366121,0.357852,0.263637,0.153720,0.049587,0.066116,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.809918,1.004132,0.000000 -601359.755000,4612535.550000,3088,4255,103.280182,145.563644,150.861160,141.852905,128.076065,119.662827,116.993408,115.464478,115.638031,117.762001,119.307457,129.819855,146.935547,163.100830,176.357040,186.952072,189.662827,177.952072,155.142151,133.621506,123.059525,119.687622,113.290916,85.993401,66.150436,82.208282,91.175217,66.026466,30.819855,11.733902,10.299192,6.154558,9.237203,8.090922,10.176047,3.316534,0.511572,0.327274,0.134711,0.000000,0.042149,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.955000,4612535.550000,3159,4255,104.874397,147.246292,153.180176,142.246292,128.485962,119.824799,117.527283,115.684303,115.866119,118.287613,119.527283,129.452896,146.411575,162.428101,176.808273,186.469421,188.651245,177.601654,153.965302,131.890915,122.345459,117.700836,111.981827,84.006622,67.742172,81.353737,91.114067,67.089272,29.601671,13.252910,10.180183,8.021499,7.821501,8.795880,8.947948,4.007443,0.454547,0.352068,0.145455,0.073554,0.000000,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601378.555000,4612535.550000,3182,4255,120.176056,151.349594,152.795883,142.448776,128.556213,120.349602,117.316544,114.985962,115.217369,117.118195,118.903320,128.961166,146.589264,163.209106,175.729782,186.043823,187.531433,177.498367,154.126450,132.919846,122.266960,117.250427,112.390930,83.878532,66.275223,79.837212,92.027298,66.713242,30.448778,12.318199,10.217374,7.293402,7.686790,6.388442,9.150426,2.495047,0.781820,0.181819,0.193389,0.005785,0.000000,0.067769,0.000000,0.000000,0.000000,0.994215,0.000000,0.000000,0.883471,0.000000 -601381.755000,4612535.550000,3198,4255,117.691742,153.807449,152.385956,143.385956,128.774384,119.542992,116.906631,116.237206,114.716545,117.592590,119.551254,129.452072,146.724808,162.790924,175.691742,185.972733,187.361160,176.890091,153.278519,132.253723,121.278534,117.468613,111.245476,84.774399,65.832253,79.534737,90.964478,66.030594,30.584318,12.723158,10.113242,5.637200,7.419847,6.457863,7.278524,3.055378,0.225621,0.545456,0.155373,0.000000,0.124794,0.118182,0.189256,0.000000,0.000000,0.000000,0.838843,0.000000,0.000000,0.000000 -601386.555000,4612535.550000,3222,4255,108.940506,150.992569,151.984314,141.959518,128.414062,119.678535,116.504982,116.066963,115.918205,118.042168,118.819031,129.463654,146.653732,162.331421,176.281815,186.257019,186.860321,177.314880,152.695053,131.711578,121.339691,117.554565,112.100021,83.942993,65.637215,80.703323,91.108284,67.281837,30.147951,11.517374,10.190929,4.345464,7.092575,5.734722,7.187615,2.647938,0.523969,0.394216,0.000000,0.063637,0.107438,0.000000,0.000000,0.000000,2.087604,0.000000,0.887603,0.814876,0.000000,1.928099 -601394.555000,4612535.550000,3262,4255,116.204140,154.667786,152.601669,141.411591,129.791748,118.932243,116.659515,115.238029,114.370262,117.882660,119.122330,129.626465,145.800018,161.510773,175.576889,185.981842,187.188431,177.328949,153.081009,130.890930,121.419846,116.452904,111.436378,83.940514,64.378525,79.766960,91.056213,67.395058,30.519030,11.989274,10.130598,5.152903,7.659517,6.972740,7.633071,2.807443,0.771903,0.808267,0.028099,0.066116,0.037190,0.000000,0.000000,0.000000,1.084298,2.090083,0.902479,0.000000,2.034711,0.000000 -601405.755000,4612535.550000,3318,4255,119.014893,158.413254,157.942184,146.677719,133.371902,123.074394,119.281006,118.743820,117.768608,120.867783,121.462830,131.834717,148.685989,165.049622,178.380203,187.743835,189.454575,178.991760,154.743835,133.371902,123.429771,118.859520,112.454559,85.231422,67.305809,81.190102,93.206627,68.826462,31.281012,13.210762,10.223161,5.801662,7.512412,8.412410,9.101665,2.798352,0.429754,0.271076,0.183472,0.005785,0.025620,0.049587,0.413223,0.000000,0.000000,1.050413,1.880992,2.655372,0.000000,3.928100 -601411.155000,4612535.550000,3345,4255,158.503326,186.437210,169.123154,159.057037,142.561172,129.255386,127.982666,125.519852,126.346298,133.891754,127.842171,138.833908,154.676880,172.181015,185.652069,198.412415,196.949600,182.404129,159.627289,139.916550,128.304977,125.495064,120.900017,90.313240,75.941345,89.594231,98.395889,68.825638,32.321507,13.435554,10.990928,12.624810,7.846294,8.845470,10.753733,4.814059,0.428926,0.107438,0.016529,0.000000,0.000000,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.555000,4612535.550000,3377,4255,137.150421,186.249603,168.621490,160.530594,142.852905,129.761993,128.720673,126.770256,128.117371,133.233063,128.373566,139.315720,156.348770,173.042984,186.869431,198.993393,197.571915,182.761993,161.233063,141.142151,130.307449,127.042984,122.381828,92.026459,75.885971,90.299194,99.067780,70.902504,32.076054,13.014894,11.125639,11.831421,7.770262,9.147948,7.813238,3.482653,0.847109,0.086777,0.046281,0.267769,0.000000,0.409091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.955000,4612535.550000,3399,4255,122.905807,182.128922,167.732239,158.988449,140.376877,128.393402,128.261169,127.459518,126.897537,132.467789,128.211578,138.798355,156.335556,172.806610,185.872726,197.996689,198.649582,183.401657,162.145462,139.980179,129.360336,126.905800,122.418198,91.401672,76.798370,88.971924,99.368614,70.674400,34.203327,13.033075,11.128945,9.916544,8.334724,9.190925,9.781006,4.489266,0.572729,0.136364,0.295869,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601429.355000,4612535.550000,3436,4255,126.366127,174.506622,165.209106,157.457047,141.275223,126.985954,127.845459,125.010750,124.614059,129.266953,127.118187,138.539688,155.068619,172.837219,185.870270,197.473572,197.233902,183.655396,160.704987,139.762833,128.341324,126.961166,121.572731,92.035553,75.680183,89.101669,98.382660,69.589279,33.258698,12.875224,11.052086,9.466131,7.435552,7.637204,7.535551,4.249597,0.952894,0.077686,0.177687,0.353719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.007438,0.000000,0.000000 -601434.355000,4612535.550000,3461,4255,125.617363,180.749603,168.352905,158.377701,142.840515,129.716537,129.832245,128.063644,127.328110,131.278519,129.022324,139.972748,156.790924,174.452072,187.807449,199.286789,199.509933,186.319839,163.939682,142.014053,131.361160,127.989265,123.427284,93.757858,76.138023,91.055382,100.493401,73.228935,35.030602,14.112414,11.220680,11.435553,9.552082,10.600843,10.783486,4.333893,0.728101,0.061157,0.045455,0.000000,0.000000,0.000000,0.000000,0.045455,0.000000,1.281818,0.000000,1.091736,0.000000,0.000000 -601439.555000,4612535.550000,3487,4255,114.472755,180.348770,165.282654,156.175232,142.679367,130.398361,130.257874,127.571930,128.522339,131.257874,130.042999,140.555405,158.819839,175.836380,189.142151,200.613235,200.836380,188.547119,163.819839,144.456223,132.464493,129.166962,124.381844,94.489281,78.200027,90.976883,101.456223,73.679359,35.233074,16.216547,11.307457,9.772742,9.030595,9.539685,11.123981,5.309101,0.654547,0.052893,0.081818,0.000000,0.000000,0.000000,0.077686,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601442.955000,4612535.550000,3504,4255,123.197540,178.263641,165.007446,155.222321,142.643814,128.726471,128.503326,125.181007,125.990929,129.139694,128.924820,140.040512,156.809097,173.495041,186.866943,198.222321,199.181000,186.924789,163.156204,141.420685,130.453735,128.519852,122.809113,93.197540,76.181007,89.205803,100.065308,74.387619,34.156219,14.774399,11.164482,10.371089,9.271090,8.279353,9.176046,3.636371,0.895043,0.385951,0.143802,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.056198,0.000000,0.000000 -601452.755000,4612535.550000,3553,4255,113.518188,170.394226,165.204147,154.476868,141.088440,128.567780,129.146286,126.675217,125.154556,128.071915,128.452072,138.848770,156.906616,174.501663,186.551254,198.121490,199.394226,187.526459,162.369431,141.559509,130.195877,126.625633,122.336372,92.361168,75.790916,87.823975,98.914886,72.741341,33.857048,14.371092,11.121507,8.076872,8.076875,8.542991,8.447121,2.831412,0.676034,0.182645,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.409918,0.000000,0.000000 -601455.755000,4612535.550000,3568,4255,112.360352,168.029770,165.087616,155.550430,139.492569,128.401672,128.930603,125.732254,126.203323,126.971924,128.162003,138.881012,156.955383,174.062820,186.947113,198.442978,198.599991,186.302490,162.600006,141.145462,129.525635,126.914070,123.054565,92.707458,75.533905,88.641342,100.591759,72.682663,34.674400,13.412416,11.186796,10.552079,8.860347,9.066957,9.356213,4.209926,0.848763,0.183472,0.364464,0.001653,0.000000,0.000000,0.067769,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.755000,4612535.550000,3583,4255,109.703316,167.653748,165.240524,154.273560,138.199188,128.215714,128.719849,124.703316,124.529762,126.290092,127.744644,138.298355,156.678528,173.141357,185.571106,197.116562,198.157883,185.719864,161.207474,140.290100,129.000839,125.438858,121.281830,91.802490,75.447136,88.000839,98.009102,72.595894,32.852081,11.885966,11.025639,8.057038,7.776048,7.131419,8.686790,2.627280,0.504960,0.368596,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.355000,4612535.550000,3616,4255,120.510757,167.510773,168.180191,156.254547,141.618210,130.998367,128.990112,127.568611,126.700844,129.138855,129.700836,141.271103,160.130600,175.238037,187.287628,199.651260,200.560349,189.238037,164.155396,141.990112,131.155396,128.618195,122.345467,93.684311,77.081009,89.783485,102.089272,72.981834,34.543819,13.473570,11.122333,8.581832,10.016545,10.200016,8.149601,4.502490,0.404134,0.076033,0.265290,0.048760,0.000000,0.000000,0.071075,0.171075,1.147934,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.555000,4612535.550000,3632,4255,108.107452,165.644638,163.958694,157.115723,140.495880,131.537201,129.214890,127.776871,126.454559,129.206635,129.826462,141.090927,158.190094,176.099182,188.537201,199.355392,201.173569,188.471085,164.049606,142.520676,132.057861,128.925629,124.000008,93.586792,77.074394,89.504150,102.421501,72.652908,35.305805,14.809935,11.272745,9.661172,8.767784,9.321503,8.601667,4.737200,0.353720,0.124794,0.289257,0.133884,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,1.024794,0.000000,0.000000 -601471.355000,4612535.550000,3646,4255,108.592583,162.997528,163.104965,153.179367,140.047119,128.658691,128.270264,126.352913,125.352913,126.989273,128.187622,139.840500,157.774399,173.774384,186.443817,197.807449,199.146286,187.121490,163.270264,140.270264,129.642166,126.344643,121.790924,92.121506,75.567795,89.096710,100.394234,73.848778,34.063660,13.589273,11.071919,8.067780,6.713238,9.484313,7.934724,3.719017,0.894217,0.186777,0.178513,0.000000,0.000000,0.000000,0.003306,0.124794,0.000000,1.244628,0.000000,0.000000,1.156198,0.000000 -601474.755000,4612535.550000,3663,4255,117.249596,168.092575,164.638031,152.613220,140.960327,128.208267,127.960350,124.844643,125.307457,126.563652,127.712418,139.076019,157.712387,173.464478,185.315720,197.761993,198.514053,186.712402,161.687607,139.580154,130.472748,125.679359,120.381836,93.629768,75.125641,89.166962,101.026466,72.150436,33.371090,14.577703,10.943820,7.031417,6.671091,7.131419,7.460344,3.072734,0.810746,0.188430,0.112397,0.126446,0.000000,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,2.096694 -601483.955000,4612535.550000,3709,4255,107.641335,160.302490,162.914047,153.062820,139.459518,130.343811,129.310760,126.459518,126.178528,128.004974,129.178528,140.368607,158.831406,174.591736,188.442978,198.798340,199.657852,188.476028,163.765289,141.988449,131.153732,128.699188,122.781830,94.219849,76.195053,90.079353,102.021500,73.781830,36.897541,15.101670,11.162002,8.655385,8.710760,9.814893,10.163650,4.704970,1.043805,0.295042,0.185124,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.955000,4612535.550000,3724,4255,110.952911,158.109924,164.027283,153.531418,140.233902,128.985962,127.473572,125.680183,124.928116,127.217369,128.837204,139.696716,156.969421,173.622330,186.969437,198.481842,198.911591,186.771103,162.605789,141.052094,130.184311,126.886795,121.572739,91.415726,74.399193,89.192581,99.787628,73.399193,33.225636,13.809107,11.052085,7.118193,7.970264,7.266129,7.279351,3.608273,0.656200,0.117356,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.955000,4612535.550000,3749,4255,112.133072,167.703308,166.050415,155.033875,141.083466,131.695053,130.744629,127.579346,128.695053,128.885132,130.761169,141.174377,160.000824,176.025620,190.099991,200.364456,201.389252,188.637192,164.513214,143.042145,132.009094,129.223969,124.190910,95.124802,77.157867,91.976036,102.926453,74.347946,35.876881,14.911588,11.290101,9.007451,9.575223,10.698362,9.797536,4.933894,0.995870,0.057025,0.361158,0.001653,0.004132,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.355000,4612535.550000,3766,4255,112.159515,156.812408,165.564468,155.093399,141.283478,130.035553,127.399185,125.721504,126.597534,127.564476,128.514893,139.556198,158.448761,174.109924,188.324799,198.134720,199.423981,187.134720,163.151245,141.564468,130.374390,127.696709,121.027290,93.564484,76.093414,90.481842,101.771088,74.779358,35.159523,13.064482,11.002499,6.890920,7.245471,8.607453,8.675221,3.668604,0.539671,0.090909,0.143802,0.061984,0.169422,0.160331,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.155000,4612535.550000,3805,4255,115.090919,162.085968,163.755386,152.879364,140.317368,130.375214,129.160339,126.234718,125.846291,128.061172,129.342163,140.168610,158.044647,175.366959,188.449600,198.656219,199.482666,188.408279,163.094238,142.408279,131.904144,127.358688,121.854553,93.995056,75.168610,91.333893,101.077698,73.978523,34.102497,13.769439,11.077705,6.423979,6.981007,8.611585,8.393403,3.556207,0.591737,0.080166,0.398348,0.000000,0.000000,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.986777,0.000000,0.000000 -601506.155000,4612535.550000,3820,4255,107.136383,156.632233,162.805786,150.946274,138.673553,130.962830,128.747955,126.301666,125.450432,127.888443,128.880188,140.607437,158.739670,174.425613,187.871902,198.152893,199.367767,187.219009,163.028931,141.549591,130.227295,127.070267,121.590927,93.376053,75.367783,89.690102,101.309937,73.533073,33.301674,12.742993,11.053739,7.095881,6.760346,6.870262,8.975223,3.399181,0.488431,0.044628,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,1.141322,0.000000,0.000000,0.000000,0.000000 -601509.155000,4612535.550000,3835,4255,104.865311,158.345459,162.543808,153.609924,140.328949,131.155380,129.279343,127.056206,126.180168,128.138855,130.056198,140.758698,159.328934,176.568604,188.320663,198.932236,200.204971,189.576859,163.717361,141.973572,131.006622,127.907448,122.436371,94.642982,76.196709,90.940506,100.692566,74.353745,35.882664,13.142166,11.130597,8.420675,8.210759,7.537205,8.924809,4.633066,0.737192,0.000000,0.299174,0.000000,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.755000,4612535.550000,3848,4255,108.897545,156.971909,166.352081,155.104141,141.137207,132.038040,129.112411,128.112411,128.153732,129.004974,131.294235,141.484314,160.310760,176.352081,189.434723,201.608276,201.145462,189.219849,164.773560,143.781830,131.847961,129.343826,123.781830,93.442986,76.368614,92.294228,102.723976,74.426460,35.128948,14.931424,11.252912,8.272741,7.664479,7.389271,8.841337,4.613232,0.325621,0.545456,0.235538,0.000000,0.000000,0.019008,0.109918,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.155000,4612535.550000,3870,4255,102.464478,157.781006,163.623978,153.789276,139.623978,130.789276,129.508286,127.615715,126.566132,128.061996,130.037201,141.351257,159.929764,175.681839,188.698364,200.351257,200.326462,189.632248,164.458694,142.301666,131.061996,127.524811,122.318199,93.698364,75.615715,90.888443,102.458694,74.921501,35.070267,13.714067,11.119853,6.990094,7.422329,7.255386,8.521502,4.693398,0.237190,0.165290,0.110744,0.136364,0.000000,0.242975,0.000000,0.000000,0.000000,1.249587,0.000000,0.000000,0.000000,0.000000 -601519.155000,4612535.550000,3885,4255,101.375214,158.160339,166.780167,155.044632,141.846298,132.152084,131.226471,128.540512,127.862831,129.664490,131.623154,142.714050,161.160339,176.590088,190.631409,201.714050,202.416534,190.276031,165.515701,143.689270,131.887619,129.548782,123.672745,94.862816,77.391754,93.441330,102.623146,75.780174,36.077709,14.052084,11.242993,5.995877,7.994231,8.389272,9.162825,3.089264,0.460332,0.082645,0.054546,0.122314,0.000000,0.000000,0.000000,0.096695,0.000000,1.196694,0.000000,0.000000,0.000000,0.000000 -601522.355000,4612535.550000,3901,4255,113.418198,155.732239,164.988449,154.162003,140.814896,131.955383,129.550430,128.120667,127.517365,129.087616,131.071091,141.385132,160.368607,176.740509,190.054535,200.517349,200.971893,188.930573,164.500839,142.732239,131.649597,128.947113,123.418198,93.864487,77.162003,92.641342,102.864479,74.004982,34.699192,13.324811,11.219852,6.277697,7.268610,8.381834,7.371089,3.082652,0.932234,0.047108,0.197521,0.185951,0.004959,0.000000,0.000000,0.064463,0.000000,1.199174,0.000000,0.000000,0.000000,0.000000 -601528.955000,4612535.550000,3934,4255,104.070267,159.962830,164.433899,155.425629,142.582657,132.483490,128.913239,127.392578,128.599182,130.351257,131.615723,142.119858,159.673569,176.789276,189.888443,200.020676,201.318192,190.095062,165.260345,142.500015,132.061996,128.119858,124.045471,94.136383,75.871918,91.351257,104.045471,74.599190,36.367790,14.490928,11.276878,7.044640,7.944646,9.114065,7.330591,3.746289,0.842978,0.170249,0.052893,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.355000,4612535.550000,3951,4255,107.931419,156.815689,164.675201,153.319824,139.741318,130.237213,128.749603,127.501671,127.402496,128.658691,129.749603,141.493378,158.724792,175.658691,189.361176,199.022339,200.518204,189.865311,164.435532,142.071899,130.204147,127.542992,122.790924,94.063652,75.931419,90.700020,102.162827,74.617371,34.429771,13.587622,11.162828,4.977697,6.573568,8.347123,8.371087,2.771908,0.799175,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.146281,0.000000,0.000000,0.000000 -601535.555000,4612535.550000,3967,4255,115.661171,160.214890,164.140518,154.033081,140.033081,130.991745,128.512405,126.826462,127.074394,128.942169,129.743820,140.925629,159.272751,175.958694,189.314072,198.942169,201.380188,188.735550,164.702499,142.074402,130.933899,127.256218,122.636383,93.438034,74.404976,90.000015,101.595055,74.016548,35.223160,12.211587,11.148780,5.633069,7.447948,8.613238,7.902494,3.511578,0.722315,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.755000,4612535.550000,3983,4255,108.137199,158.062820,163.335556,154.823151,139.236374,130.228119,127.955383,127.608276,127.062820,130.418198,130.542160,141.327286,158.732239,176.616547,188.905792,199.765305,201.137207,189.071091,164.806625,143.054565,131.509109,126.897537,122.236374,94.409927,76.335548,90.922325,102.252907,74.046295,35.021507,13.570265,11.112414,6.263648,8.015717,7.778527,7.697534,4.282652,0.953721,0.606613,0.125620,0.000000,0.000000,0.161984,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.955000,4612535.550000,4009,4255,113.419846,160.733902,164.800018,156.147125,141.791763,133.428116,130.155380,129.147125,128.552078,130.676041,132.072739,143.105804,161.370270,178.328964,191.287613,201.907440,203.204971,192.014877,166.279358,144.527298,133.824799,129.585129,124.890923,95.527290,77.130592,92.320679,102.841339,76.469437,36.783493,15.871919,11.353739,6.402492,6.892579,9.062827,8.361999,2.304966,0.661159,0.378513,0.066116,0.349587,0.006612,0.000000,0.000827,0.138017,0.000000,0.000000,2.074380,0.000000,0.000000,0.000000 -601549.155000,4612535.550000,4035,4255,117.171913,161.568604,166.469421,155.312408,143.833084,133.114059,131.403320,129.461166,130.039688,132.692581,133.469437,144.700836,161.535538,179.304138,192.238022,203.353729,204.039673,193.089264,167.519012,145.923981,134.758698,130.180176,125.709106,96.609932,78.328941,92.758690,104.700844,77.709106,36.659519,15.121507,11.428118,7.065301,8.075225,8.651255,8.667783,3.355379,0.259505,0.298348,0.188430,0.000000,0.000000,0.253719,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,1.254546,0.000000 -601553.355000,4612535.550000,4056,4255,107.363655,163.793411,164.545486,154.809952,143.768600,133.628113,131.545471,130.132248,129.909103,133.140518,133.719025,144.371902,161.752106,179.289276,192.884308,203.925659,205.702484,193.892578,167.834747,146.190094,135.000015,131.033081,126.272743,97.793404,77.818199,93.801666,105.966957,76.214890,37.049610,16.091753,11.479357,6.185134,9.327290,8.148776,9.503321,4.483479,0.568596,0.219835,0.071901,0.066942,0.003306,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.155000,4612535.550000,4080,4255,119.365295,162.753738,167.257874,158.315735,143.770279,134.348785,132.423157,129.811584,130.067780,132.745468,133.819855,144.671097,162.960358,180.009949,193.629776,204.481003,205.216537,194.125641,169.646301,146.885971,136.175217,131.166962,126.200020,97.241333,78.720680,92.811577,106.233070,76.076050,35.704151,16.378532,11.472746,6.063648,7.688447,8.190926,9.279354,4.869431,0.585952,0.312397,0.283472,0.060331,0.133058,0.000000,0.000000,0.065289,0.000000,1.256199,0.000000,0.000000,0.000000,0.000000 -601561.955000,4612535.550000,4099,4255,114.733070,165.815720,167.609100,156.807449,143.724808,133.815720,131.476868,130.476868,129.460342,132.972733,134.733063,144.138031,162.245468,179.700012,193.906616,204.733063,205.278519,194.394226,169.253723,146.617371,136.295044,130.741333,125.609100,97.047119,78.410751,94.402489,104.972740,77.981003,35.476883,15.284316,11.419027,6.117366,8.620678,8.281833,8.674394,2.934718,0.892564,0.247108,0.059504,0.061157,0.000000,0.000000,0.006612,0.135538,0.000000,0.000000,0.000000,0.959504,0.000000,0.000000 -601565.555000,4612535.550000,4117,4255,118.760345,165.140518,164.140518,156.752075,143.421509,133.256210,131.950424,131.008286,129.586792,132.495880,133.446304,143.570267,162.049606,179.520676,193.173569,203.553741,204.512405,195.206635,168.438034,146.421509,134.355392,131.000015,126.000015,97.322327,78.247955,92.495880,105.000015,75.776886,35.487625,13.333901,11.454565,6.014059,8.407454,8.215717,8.714064,3.154553,0.639671,0.183471,0.186777,0.063637,0.000000,0.000000,0.074380,0.060331,0.000000,0.000000,0.000000,0.000000,1.280992,0.000000 -601568.755000,4612535.550000,4133,4255,118.511581,162.222336,163.354568,158.156219,142.627289,132.726456,130.784302,128.371094,129.247131,131.247116,132.627289,144.106628,161.577698,179.470261,192.676880,203.519852,204.470261,193.263657,167.982666,144.792587,133.379349,130.924805,125.354568,95.354568,76.742996,91.511589,105.619026,76.561180,34.495060,12.931423,11.395887,4.879348,7.085139,7.379354,7.009104,2.669428,0.604960,0.227274,0.334712,0.001653,0.047934,0.000000,0.000000,0.000000,0.000000,2.233058,0.000000,0.000000,0.000000,0.000000 -601574.355000,4612535.550000,4161,4255,110.263657,169.164490,167.809113,159.164490,147.057037,135.329758,132.734726,132.428940,131.569443,134.817368,135.594238,146.908279,164.288452,181.156219,195.776047,207.445480,208.197540,198.395889,172.346298,148.577698,137.015717,133.676880,128.809113,98.916550,80.214066,95.023987,105.726463,79.065308,37.726467,15.662002,11.709937,6.110754,9.118197,9.604147,9.232246,3.439677,0.889258,0.385125,0.091736,0.003306,0.000000,0.000000,0.047935,0.121488,0.000000,0.000000,1.098347,0.000000,0.000000,0.000000 -601577.155000,4612535.550000,4175,4255,121.900841,170.074417,169.876068,159.074417,145.892593,134.578522,133.041336,131.900848,130.900848,134.793396,134.884308,145.702515,163.314087,181.628128,195.570267,206.504150,207.000031,196.487625,169.900864,146.702515,136.347122,132.619858,127.000015,97.264481,79.297539,93.454559,104.495880,76.966957,37.909107,15.060349,11.545474,5.669431,7.900016,8.304975,7.671087,3.028108,0.580993,0.115703,0.060331,0.000000,0.006612,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.555372,0.000000 -601589.955000,4612535.550000,4239,4255,120.991745,179.057861,170.123978,162.066132,147.677704,134.537201,133.173569,131.752075,131.421494,134.644638,134.719009,146.107452,162.809937,181.611588,194.801666,207.181839,206.611588,195.776871,170.198364,146.644638,135.256210,131.669434,126.818192,97.404968,78.669426,91.719017,105.495872,77.438034,34.975224,13.547125,11.528946,5.591745,7.444643,6.730593,8.052906,3.315709,0.316530,0.000000,0.069422,0.000000,0.009918,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.755000,4612535.550000,4253,4255,123.747940,181.012390,171.210739,163.681839,144.896713,134.805786,132.938019,132.219009,131.599182,135.987625,134.359497,145.640518,163.533081,181.334717,194.615707,205.061966,206.161148,194.904953,169.648758,146.946304,134.995865,131.351242,127.136375,96.756203,78.202484,92.500015,104.475212,77.260338,36.706631,14.535555,11.557871,5.927282,8.102495,7.448776,8.171914,3.421494,0.171901,0.285124,0.000000,0.033885,0.010744,0.000000,0.010744,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.355000,4612535.550000,4266,4255,122.157867,173.471893,170.819016,161.670258,147.438858,135.108276,133.050430,131.612411,130.480179,135.372742,134.066956,145.620667,162.645462,181.513214,193.736374,205.637207,204.347946,194.017365,168.711578,146.058685,134.207458,130.604141,125.827286,95.653732,78.091751,91.414062,103.984314,77.860344,35.149609,14.729770,11.438863,5.738853,7.773569,8.183486,6.250426,2.153725,0.399175,0.131405,0.123141,0.147934,0.000000,0.000000,0.016529,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.955000,4612535.550000,4279,4255,125.363647,177.636368,171.553726,164.181824,147.842972,135.892563,134.157028,132.859512,131.710754,135.479340,135.685944,145.801651,163.702484,181.280991,194.942154,206.033051,206.512390,194.380173,169.768600,146.818176,135.082657,130.727280,126.181824,96.057861,76.595055,91.983482,104.966949,77.793411,35.842995,14.175224,11.471094,5.174388,8.299189,6.104973,7.550426,3.965297,0.678513,0.163637,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.955000,4612535.550000,4304,4255,122.453735,172.131424,172.759521,161.693405,146.635559,134.668610,133.776047,131.032257,130.346298,131.709930,132.255386,143.486801,161.891754,178.139694,190.354568,201.263657,201.751266,189.346298,163.875229,141.668610,131.891754,127.643822,123.354568,94.263657,76.751259,90.800842,103.023987,74.247124,35.858696,14.381836,11.214068,9.483484,9.044642,8.958691,9.597535,4.178520,0.386778,0.219009,0.056199,0.136364,0.000000,0.000000,0.004959,0.051240,0.000000,0.000000,1.085124,0.000000,0.000000,0.000000 -601606.355000,4612535.550000,4321,4255,109.660347,173.908279,171.371094,160.280182,145.891754,134.776047,133.982666,131.742981,130.230591,131.883484,132.437195,143.891754,162.685150,177.900024,190.073578,200.966141,200.247131,188.379364,162.561172,141.304977,131.255386,128.776047,122.081841,94.214066,76.809105,90.214066,101.271919,73.759521,35.726467,15.566961,11.098367,8.489271,10.090923,9.361172,9.854561,4.842984,0.590084,0.285951,0.143802,0.124794,0.099174,0.299174,0.097521,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.155000,4612535.550000,4365,4255,128.901672,172.918198,171.190903,159.571091,145.091751,132.405792,132.637192,129.934723,129.157867,130.471909,129.860336,141.934723,160.538025,175.976044,188.430573,198.347946,199.033890,185.529755,160.100006,139.529770,129.438843,125.901665,120.372749,91.323158,74.736382,87.538040,99.852089,72.364487,35.314896,14.342994,10.942995,8.439683,7.912411,8.274393,8.928113,4.048769,0.660333,0.428927,0.108265,0.000000,0.104133,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612535.550000,4379,4255,129.924820,176.779358,172.754562,160.795883,146.192581,134.118195,134.266953,131.771088,130.696701,133.283478,131.333069,143.589279,161.366135,177.415726,190.043823,200.721512,198.961182,186.911591,161.407455,140.795883,129.341339,127.754562,121.481834,92.473579,75.597542,87.688454,99.754570,72.936386,34.142994,14.336380,11.043821,9.820676,7.881831,8.242161,9.669436,3.261164,0.438844,0.509092,0.233885,0.048760,0.000000,0.000000,0.070248,0.037190,0.000000,0.000000,0.000000,0.751240,0.000000,0.000000 -601626.555000,4612535.550000,4422,4255,127.167786,182.969421,175.300003,165.407455,146.985977,133.994232,134.514893,132.423981,131.142990,134.432251,133.771088,145.233902,162.911591,179.019012,189.795868,201.861984,200.795868,186.812408,162.506638,140.870270,131.250427,127.556213,123.118195,92.704971,76.233902,89.242165,101.572739,74.300018,34.506630,14.773571,11.192581,8.295057,7.822327,8.353732,8.425635,3.660338,0.578514,0.787605,0.142976,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,1.276033,0.000000,0.000000,0.000000,0.000000 -601629.355000,4612535.550000,4436,4255,123.842171,184.776047,174.759521,164.462006,146.668610,133.271912,132.990921,130.751251,130.222321,132.999191,130.809097,141.990921,160.569427,177.131424,188.974396,199.445480,197.825638,183.999191,159.784302,140.081833,128.123154,126.924812,120.081841,91.602501,75.123161,88.949608,99.569443,72.800842,33.238861,13.425637,10.916549,8.480179,7.270262,8.701666,7.032246,3.770256,0.176034,0.114050,0.285125,0.000000,0.000000,0.290909,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601635.355000,4612535.550000,4466,4255,123.480179,187.994232,174.457047,164.225632,146.911591,135.638870,135.159515,132.985962,132.928101,135.357864,133.663635,144.101669,161.853729,179.547958,191.217377,201.300018,198.944656,183.862000,161.589264,140.944656,129.019012,127.481834,121.390923,92.795891,75.614075,90.465309,100.886803,73.928123,34.680183,15.783488,11.035557,11.571091,9.919848,8.136375,10.152906,3.194222,1.253721,0.097521,0.141323,0.122315,0.000000,0.000000,0.066116,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.155000,4612535.550000,4495,4255,141.626465,191.328934,177.626450,168.039688,151.304153,134.783493,135.890915,132.502487,133.213242,136.998367,132.833069,144.717377,161.378540,178.775208,190.361984,201.824799,199.907440,184.271088,161.411591,139.328949,128.163651,127.064476,121.618195,91.990105,75.676056,90.783493,100.213249,71.775230,36.775227,14.355390,11.056218,11.375221,9.455387,8.781832,8.980179,3.359512,0.838845,0.149587,0.033884,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.555000,4612535.550000,4512,4255,139.974396,192.313232,175.619034,167.073563,148.147919,134.891754,134.866959,132.288437,131.957855,136.842148,132.271912,143.900024,160.685120,177.338043,190.742981,201.338013,198.974380,183.280182,160.040497,139.379364,128.503311,126.288445,120.718193,90.982658,75.114899,88.181000,100.230591,71.933075,34.486801,14.734729,10.974401,10.590098,9.380180,7.843814,9.596709,3.189263,0.395869,0.138017,0.173554,0.110744,0.000000,0.157025,0.008265,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.755000,4612535.550000,4528,4255,144.084320,195.819839,179.051254,168.770279,150.464493,136.877716,136.514053,134.191742,132.480988,139.770279,134.175201,145.522339,161.348785,179.100830,191.571915,201.770264,199.828110,183.290924,160.439697,140.687622,130.555374,127.737206,121.927292,92.828117,75.439690,90.158699,100.671089,72.596710,35.447952,15.863652,11.084317,11.355388,7.490921,7.990094,9.090096,4.219018,1.400003,0.527274,0.097521,0.000000,0.061157,0.000000,0.167769,0.355373,0.000000,0.000000,0.000000,0.000000,0.000000,2.343802 -601651.155000,4612535.550000,4545,4255,134.133072,197.083481,178.091751,167.752899,150.761169,137.752914,136.116562,134.381012,133.438858,139.480194,133.480179,144.149612,161.628937,178.719849,192.529770,201.703323,199.025635,183.347946,160.670258,139.513245,128.934738,126.662003,120.827286,91.802490,75.612419,91.232246,99.810760,71.719856,33.133076,14.524812,10.984317,11.861173,7.400013,8.257864,8.202494,5.106622,0.633886,0.160331,0.000000,0.201653,0.052893,0.000000,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,1.499174,0.000000 -601654.355000,4612535.550000,4561,4255,168.213226,196.312393,181.031403,171.642960,153.056213,138.957047,138.064484,135.882645,135.345459,141.535553,135.552078,147.428116,162.717361,180.155365,193.452881,203.560318,200.824783,184.370239,162.295868,142.221512,130.419846,127.791740,122.072731,93.271080,77.684311,93.642982,102.312401,73.362000,35.238033,16.095058,11.097540,12.148777,8.708280,9.585965,8.345469,4.385134,0.544631,0.273554,0.227273,0.000000,0.000000,0.000000,0.395869,0.167769,0.000000,1.379339,0.000000,0.000000,0.000000,0.000000 -601656.955000,4612535.550000,4574,4255,154.366959,200.185150,179.127289,169.391754,151.416534,138.003311,135.871094,134.218201,133.143814,139.466125,133.350418,144.565292,160.218185,178.028122,190.920670,201.152069,197.623138,182.408279,160.466125,140.309097,128.284302,125.970261,121.581833,90.904137,75.681000,90.730583,100.482651,71.094223,33.738861,15.370266,11.052911,11.511585,7.488441,7.895881,8.404146,3.313231,0.785126,0.097521,0.158678,0.000000,0.000000,0.000000,0.000000,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.355000,4612535.550000,4606,4255,112.298378,167.819016,168.075226,156.794235,142.976044,132.554565,130.604141,127.959518,127.174393,128.918198,129.984314,142.025635,159.149597,174.182663,187.141342,195.719849,195.017365,184.637207,159.100006,137.695053,127.133072,123.190926,119.009102,91.017380,75.174408,87.876877,100.298363,73.124825,33.422337,13.869439,10.819027,6.328110,7.744641,8.651252,7.552907,3.075216,1.080995,0.289258,0.038843,0.057025,0.057025,0.000000,0.090083,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.355000,4612535.550000,4626,4255,115.690926,168.277695,168.095886,158.178528,144.938873,133.095886,132.029770,131.343811,130.038025,131.798355,132.352081,142.401688,160.707458,177.046295,189.095886,197.219849,197.021500,185.277695,160.980179,140.038040,129.352081,126.955383,121.054558,92.600014,76.145470,89.591743,100.467781,73.509102,36.095886,15.181010,11.004977,7.840508,7.647121,9.097533,7.800014,4.099183,0.564465,0.266943,0.252067,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.211571,0.000000,0.000000 -601670.155000,4612535.550000,4640,4255,113.659508,164.582642,170.268616,158.938034,145.681824,134.913239,132.971085,130.078522,129.913239,131.466949,132.516541,144.144638,161.417374,176.979340,188.880188,197.433899,197.483490,185.681839,161.491745,139.252075,129.541336,125.425629,119.772736,92.533073,76.144646,90.293404,101.805801,74.764481,37.714897,14.672746,10.888449,7.415717,8.683484,8.516542,9.704974,4.382652,0.929755,0.415704,0.166116,0.000000,0.122314,0.000000,0.025620,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601673.155000,4612535.550000,4655,4255,102.153740,165.591751,169.988449,158.881012,144.442993,134.186798,132.988449,130.401672,130.038040,131.203323,132.285965,143.674393,161.922333,177.071091,189.228088,197.930573,197.476028,185.095886,161.046295,139.781830,129.029770,125.914070,119.963654,90.996712,75.327293,90.087624,101.930603,74.368614,36.988449,14.246301,10.905805,6.700013,7.795055,8.183484,8.594229,2.066947,0.262811,0.146282,0.010744,0.000000,0.000000,0.000000,0.062810,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.955000,4612535.550000,4669,4255,106.016556,162.231415,167.520676,158.462830,143.983490,134.884323,132.157043,130.090927,129.876053,130.719040,132.190109,142.851257,161.074402,176.404953,188.628098,196.561981,197.561981,184.545456,161.057861,140.099182,129.049606,125.495895,120.545479,92.206619,75.710762,89.520668,100.247955,74.066132,36.446301,14.093406,10.958697,6.966953,8.593403,9.344643,8.387618,3.418190,0.421489,0.127273,0.053719,0.000000,0.058678,0.241322,0.000000,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.155000,4612535.550000,4685,4255,109.535545,165.188446,169.981842,160.676056,145.957031,134.345459,133.254547,130.527283,131.345459,132.403305,133.221497,144.287613,161.717377,177.287628,189.246307,198.494232,198.089279,185.196716,161.808289,140.452896,130.560333,126.618187,120.709099,92.510750,76.766945,91.262817,101.824799,74.097527,36.535557,15.674398,10.973573,6.917369,7.396708,8.180180,8.033899,3.066948,0.663638,0.286778,0.046281,0.109091,0.000827,0.136364,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.955000,4612535.550000,4704,4255,102.248779,161.447113,167.091751,156.223984,144.042160,134.257050,131.670273,130.257034,129.653732,131.364471,131.967789,142.943008,161.207458,176.852081,188.885132,198.480179,197.058685,185.356216,160.843811,140.116562,128.959518,125.571098,120.009109,92.108276,75.438866,90.290092,101.562820,74.133080,35.463657,14.727291,10.909936,6.933897,7.663650,7.361996,8.049600,3.361164,0.892564,0.334712,0.228926,0.000000,0.000000,0.141322,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.955000,4612535.550000,4719,4255,105.045471,162.590927,169.070251,158.351257,143.938034,134.417374,130.855392,129.888443,129.508286,129.772751,131.929764,142.012405,160.219025,175.698349,188.409088,198.367767,197.144623,184.830582,161.095062,140.458694,127.847122,125.376053,121.500015,92.673569,75.731422,91.293404,102.442162,74.888443,35.657040,14.829769,11.045474,6.070260,7.300013,8.661169,8.433072,2.939677,0.613226,0.410746,0.057851,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.955000,4612535.550000,4734,4255,107.743813,161.661179,167.785141,158.545471,144.297531,135.264465,132.066116,130.966949,129.611572,131.404968,132.917358,142.272751,161.413239,176.719025,188.702499,197.752075,196.933899,185.090927,162.570267,140.057861,128.933899,126.413231,121.636375,92.239685,76.049606,90.338860,101.388443,74.603325,35.041344,14.778531,11.057871,5.959516,9.246296,7.371086,8.063650,2.501660,0.763639,0.275207,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.555000,4612535.550000,4747,4255,128.629776,157.166931,169.861145,157.836380,144.059509,132.778519,130.307449,128.439682,128.803329,130.018204,130.208282,142.348770,159.241318,175.629745,188.018173,197.026443,195.745453,184.208252,159.629745,138.142151,128.109116,124.100845,118.836380,90.737206,74.034729,89.381836,101.877701,73.042992,34.406631,14.980184,10.803325,6.524805,8.999187,8.023980,7.961996,3.109097,1.137192,0.241323,0.298348,0.161158,0.000000,0.221488,0.014050,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.755000,4612535.550000,4763,4255,121.616539,168.445480,169.147949,157.462006,144.627289,133.660355,131.825638,130.643814,130.181015,131.428940,131.627289,142.627289,159.734726,175.941345,187.462006,197.470261,197.032257,185.354568,161.181015,139.453735,128.619034,124.941345,119.990929,91.709938,75.222336,89.643822,101.957870,74.131424,35.362831,13.269440,10.908283,7.572739,7.852906,7.767781,6.913236,2.592568,0.511572,0.169422,0.295042,0.051240,0.000000,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,2.438843,0.000000 -601700.355000,4612535.550000,4791,4255,101.338028,158.642181,165.113251,156.047134,142.080185,131.947952,131.394226,128.890106,128.022339,130.452087,131.427292,141.840515,159.452087,175.485153,188.162827,196.278519,196.377701,184.551254,159.931427,139.377716,128.972748,125.187622,119.063652,92.452072,74.890099,89.741333,99.890091,74.220680,35.815720,14.301671,10.823986,6.418193,7.814888,8.905799,7.421501,4.351248,1.055374,0.228927,0.461158,0.000000,0.000000,0.000000,0.000000,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.755000,4612535.550000,4808,4255,107.900841,163.237198,168.179337,160.162796,145.055374,136.452072,134.766129,131.939682,134.088440,135.518188,136.005798,146.096710,163.509933,179.716537,192.600830,200.295044,199.848770,188.576050,164.658676,141.716537,130.295044,126.939682,123.336372,93.509933,76.096710,91.377693,103.344643,75.832260,37.030602,15.425637,11.212416,7.876045,8.137203,9.328113,7.450426,3.558687,1.062812,0.311571,0.291736,0.061158,0.123967,0.000000,0.157025,0.337191,0.000000,0.000000,0.000000,1.147108,0.000000,0.000000 -601706.555000,4612535.550000,4822,4255,113.075233,166.719849,168.356201,158.438858,143.711578,134.108292,131.620682,129.876877,128.761169,131.314896,131.562820,143.372742,160.389267,175.604126,188.686768,197.066940,197.083466,185.835541,161.397537,140.455383,129.356216,125.852089,120.645477,92.579369,76.637199,90.670280,100.653732,74.769432,36.595886,14.434729,10.967789,6.703316,8.472742,7.403319,7.162822,3.013231,0.499174,0.286778,0.078513,0.000000,0.000000,0.000000,0.109091,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.155000,4612535.550000,4840,4255,117.542992,172.642181,169.757874,158.328125,144.683502,135.567795,133.972748,130.567780,131.245468,130.683487,131.947952,143.228958,160.352921,176.576065,190.262009,198.898376,198.848785,185.906631,161.857056,141.410767,129.319855,126.534729,121.154564,93.071907,75.733078,90.749596,101.700012,75.542992,35.931423,14.937207,11.014070,6.422327,7.592575,7.363648,7.647946,3.049593,0.615704,0.039670,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.155000,4612535.550000,4860,4255,117.943817,163.563644,168.257858,160.439682,146.142136,135.332245,132.935562,130.538864,130.778534,132.588440,133.249603,143.547104,160.728943,177.109100,189.332245,199.348770,197.753723,186.208267,161.373566,140.497513,128.885971,125.224808,119.654564,92.985138,75.828117,90.183487,101.497536,74.828117,34.985146,14.117374,10.877705,5.128110,6.692574,6.625631,8.199187,3.597528,0.654547,0.171075,0.056199,0.000000,0.000000,0.000000,0.000000,0.122315,0.000000,0.000000,0.000000,1.085950,0.000000,0.000000 -601717.555000,4612535.550000,4877,4255,120.424805,169.408279,169.085968,157.507462,145.697540,135.937210,131.581833,129.284302,130.267776,132.325638,132.433075,143.209930,161.019852,175.804977,190.242996,198.606628,197.887619,186.722321,162.209930,140.804977,129.350418,125.920670,120.581833,93.383492,75.590103,90.044647,101.995056,74.606628,36.011589,12.802496,10.962003,6.647944,6.715715,6.808277,7.674393,3.553728,1.000828,0.309919,0.302480,0.054546,0.000000,0.004959,0.053719,0.000000,1.347934,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.355000,4612535.550000,4896,4255,111.379356,170.214050,170.106613,160.139679,145.833893,134.916550,132.569443,130.875229,131.205811,133.147949,133.181015,144.329758,161.057022,176.619019,190.602478,199.230576,199.528107,187.172729,162.949585,140.106613,130.040512,126.181007,120.990929,93.338036,76.701675,90.437210,102.288452,76.552910,36.759525,14.242167,10.999193,5.548771,7.927288,7.393403,7.393401,3.825628,0.863638,0.067769,0.052893,0.000000,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.955000,4612535.550000,4919,4255,119.304146,168.601654,171.609924,160.667770,147.047943,136.800003,133.345474,132.816559,130.857864,133.923996,133.775223,143.775208,161.519012,178.709091,190.395050,199.345459,199.130585,188.171906,163.370255,141.337204,129.857864,124.890923,122.254562,93.105797,75.552086,90.552078,101.791748,75.485970,34.998367,14.492581,11.114068,6.199185,6.558689,7.036376,8.244641,3.479346,0.909920,0.085124,0.113223,0.192562,0.012397,0.000000,0.000000,0.174380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.755000,4612535.550000,4958,4255,111.737206,165.331421,168.364471,158.050430,146.108276,132.273575,131.612411,128.843826,128.868622,130.554565,131.827301,141.852081,159.356216,175.860336,188.719849,197.364471,195.637207,184.843811,161.504974,140.058685,128.860352,124.752914,118.918205,91.438866,75.025642,89.504982,101.405807,74.777710,34.050434,13.142167,10.810763,4.031415,6.723979,6.893400,7.180178,3.429758,1.010746,0.137190,0.095868,0.000000,0.229752,0.095868,0.012397,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,2.211571 -601736.555000,4612535.550000,4972,4255,112.103325,172.161179,173.632248,163.334732,150.822327,138.252106,135.690094,133.351242,132.987610,136.309937,136.243820,146.144638,163.566132,180.665298,192.177689,201.351242,200.615707,188.450409,165.425629,142.219040,130.425629,126.566124,122.045464,93.293396,76.723160,90.731415,103.169426,76.309944,36.954563,14.328117,11.095059,6.814060,7.467784,7.514063,7.514890,4.503315,0.043802,0.471075,0.175208,0.060331,0.000000,0.000000,0.026447,0.000000,0.000000,1.290083,0.000000,0.000000,0.000000,0.000000 -601742.555000,4612535.550000,5002,4255,122.516548,159.635544,165.076889,157.655396,144.101669,133.729752,131.167770,130.323151,128.650421,131.071915,131.766129,141.271912,159.822327,177.359528,190.665298,201.475220,202.789276,192.185974,168.342987,147.706635,135.582657,130.979355,126.590927,97.144646,79.740509,92.359520,105.223976,78.331421,38.318203,14.563652,11.508283,6.020671,10.061997,9.428112,10.740509,5.548768,5.040500,3.540498,2.327275,4.425622,2.222317,0.782645,0.474382,0.347108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.755000,4612535.550000,5018,4255,112.090919,175.543808,169.213226,162.948776,148.758698,136.742172,136.403336,134.279358,134.072739,136.841339,136.535553,145.882660,164.081009,180.287613,192.452911,200.725647,201.585144,189.857880,165.295883,142.808289,132.452911,127.312408,122.072739,93.651253,75.709106,88.940514,102.560349,76.552078,35.709106,13.850430,11.097539,4.625628,6.161170,6.859517,6.862823,3.752900,0.987605,0.000000,0.102480,0.159505,0.011571,0.061157,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601749.355000,4612535.550000,5036,4255,123.759514,173.833893,171.850418,163.486786,149.544632,137.172729,134.280182,133.602493,133.205795,136.230591,135.197525,145.561157,162.528107,179.131409,191.296692,200.453720,200.908264,190.222321,164.660339,142.709915,130.776031,127.891739,121.809097,93.519844,76.875214,91.453728,103.561157,77.800835,35.478531,15.292580,11.073572,4.378521,7.303319,7.340509,7.631418,4.183478,1.414053,0.290910,0.000000,0.335538,0.105785,0.000000,0.083472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.755000,4612535.550000,5063,4255,140.536362,180.395874,172.619019,164.908264,151.569427,137.528107,136.271912,133.891739,133.569427,136.511566,135.916550,146.585953,163.933060,180.156204,194.015701,201.519836,202.181000,189.362808,165.742981,143.784302,133.147934,128.321487,122.809097,95.255394,78.081833,92.842171,105.090088,77.900009,38.023991,16.739689,11.164482,6.101665,7.323982,8.067781,11.545469,3.706619,1.201655,0.184298,0.360332,0.008265,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.155000,4612535.550000,5085,4255,138.900848,175.998352,174.031418,163.031418,149.494217,133.626450,132.659515,131.841324,130.857864,135.477692,134.238022,144.419846,161.833069,179.436371,192.204971,202.163635,201.849594,191.262817,164.816559,143.700836,131.957031,128.833069,123.709106,95.519020,77.766960,90.618195,103.271088,76.791748,37.461174,15.713242,11.246300,6.103317,7.509104,6.704969,9.690097,3.085957,0.964465,0.150414,0.132232,0.122314,0.073554,0.000000,0.011571,0.004132,0.000000,0.000000,1.095041,0.000000,0.000000,0.000000 -601767.355000,4612535.550000,5126,4255,120.951256,176.232224,174.901657,162.124786,146.819031,134.769440,134.852081,131.141342,130.802490,131.496704,131.546295,143.810776,162.116531,177.124786,189.149582,197.835541,197.364456,184.546280,160.521484,138.860367,128.868607,126.009102,119.736374,91.637199,74.835548,89.290092,100.414062,73.752907,35.752914,15.119024,10.885142,6.276046,8.499187,10.252080,9.331419,3.486785,0.396696,0.164463,0.303307,0.107438,0.000000,0.000000,0.061157,0.051240,0.000000,0.000000,0.787603,0.000000,0.000000,0.000000 -601770.355000,4612535.550000,5141,4255,123.473572,178.985962,173.969421,162.498352,146.812408,137.382645,136.002502,132.903336,132.696716,133.787628,134.828949,145.390915,163.035538,179.366119,191.200821,199.713211,198.655365,185.531418,160.919846,140.597534,129.812408,126.498360,121.209106,92.589272,76.614067,89.630592,101.779350,75.093407,35.647129,15.430597,11.019028,9.756214,7.637201,8.876046,8.206626,2.520668,1.424797,0.226447,0.266116,0.057025,0.092562,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.955000,4612535.550000,5159,4255,130.117371,176.960327,177.042969,162.960342,146.778534,135.142151,133.885956,130.464478,130.067780,131.538849,131.505798,143.861176,162.340500,177.100815,188.861145,198.910736,198.067764,184.233047,160.737198,140.059525,128.836380,125.803314,119.927292,91.737206,75.257866,88.629761,101.778534,73.993401,34.902500,15.023157,10.902497,9.147948,8.955385,7.577698,9.019022,3.265298,0.553721,0.211571,0.008265,0.000827,0.132232,0.000000,0.271075,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.155000,4612535.550000,5180,4255,118.552078,178.796692,174.846283,162.557037,146.449600,135.242981,134.846298,133.152084,131.697525,133.061172,133.267776,145.135559,162.581833,178.590103,190.490921,199.614899,198.606628,186.209930,162.986801,141.614899,130.383484,128.391754,121.490921,92.780174,76.623154,90.218193,101.548775,75.110756,35.474400,15.396712,11.044647,7.028111,8.077699,9.126459,11.186792,5.393397,1.336367,0.246282,0.306612,0.040496,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.955000,4612535.550000,5199,4255,125.613235,178.522324,173.728943,162.373581,146.811600,135.679352,134.315720,131.274384,131.142151,132.390091,131.555374,143.935562,161.588455,176.720673,188.761993,199.224808,197.299179,184.381821,159.960358,138.828125,127.695877,125.076042,120.109100,91.026466,74.472748,87.274399,99.522324,72.538864,34.621506,14.889275,10.919028,8.675220,8.112411,7.365302,7.401665,3.524801,0.846283,0.255373,0.133885,0.182645,0.000000,0.232232,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.755000,4612535.550000,5218,4255,120.743820,177.471069,177.603302,165.347107,149.851242,137.305786,136.057861,133.818192,133.347122,134.983475,134.165298,145.958679,163.619827,179.388428,190.991730,201.247940,199.685944,186.834717,161.983475,141.256195,130.793396,127.867775,121.090919,92.801666,77.479362,90.586792,102.082664,74.595062,36.264484,16.233076,11.008285,9.527287,9.233071,9.864478,8.838857,4.127281,0.847936,0.397522,0.175207,0.000000,0.054546,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.355000,4612535.550000,5236,4255,123.375229,182.055359,177.071899,164.080154,146.972733,135.741333,135.419022,132.691757,132.179352,134.782669,132.319855,145.435547,162.377686,179.567764,190.600815,201.171066,200.278503,185.972717,162.576050,141.493393,130.485138,127.220673,121.881828,93.815720,78.220680,90.749603,103.625641,74.443817,35.460354,14.782663,11.080184,9.213239,9.392576,9.942990,10.128115,4.696703,0.679341,0.644630,0.407439,0.242976,0.137190,0.000000,0.181819,0.257852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.355000,4612535.550000,5256,4255,128.263657,186.900009,173.602478,163.329758,147.585968,134.247116,134.776047,132.709930,131.610748,133.809097,132.131409,143.817368,161.313232,178.164459,190.387604,199.569427,197.974380,184.090088,160.123138,140.023987,128.528107,126.015717,120.172737,90.966133,75.181007,88.891754,100.338028,72.280182,33.462002,12.991752,10.924812,8.558691,7.362822,8.845467,7.753732,2.671082,0.464465,0.202480,0.001653,0.042975,0.195042,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.755000,4612535.550000,5278,4255,126.589279,189.465317,177.316559,166.225647,151.043823,137.209106,137.423996,133.837219,134.382660,136.647125,134.291763,145.415726,163.828949,179.738037,192.423996,202.109940,199.291763,185.134735,161.250443,141.151260,129.862000,126.217377,120.936386,92.200851,75.440521,89.283493,101.324806,73.539696,34.076878,15.164481,10.994234,10.069436,7.598361,9.754560,8.025633,3.952900,0.811572,0.098348,0.190909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.955000,4612535.550000,5294,4255,132.561996,188.147125,176.816559,168.733902,150.692581,136.345474,136.287628,133.899185,133.130600,137.494232,133.419846,145.469437,162.866135,180.659531,192.543823,202.089279,200.039688,185.320679,161.568619,140.808289,129.543823,126.717361,120.163651,91.494225,75.014893,89.469429,100.502487,71.469437,34.006630,13.196712,10.923985,11.334724,7.680179,9.421502,9.897535,3.772735,0.987606,0.266117,0.223141,0.008265,0.071901,0.000000,0.000000,0.118182,1.328099,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.355000,4612535.550000,5316,4255,151.571915,196.927277,178.943817,168.662827,151.406631,138.042999,137.638046,134.505798,134.638031,139.109116,134.464478,146.249619,162.877701,179.704147,192.042969,202.613235,199.456207,185.001663,161.514053,141.580185,131.109100,128.249603,122.381828,93.026466,77.885971,92.530594,101.307449,72.737206,34.704151,14.375224,11.125639,10.971089,8.011584,8.815716,10.239683,3.673562,0.996697,0.180166,0.261158,0.000000,0.000000,0.000000,0.060331,0.095042,1.465289,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.555000,4612535.550000,5347,4255,144.038849,203.336380,180.220673,168.204147,150.286789,137.261993,136.204147,133.047119,133.212402,138.981003,133.865295,145.253723,161.923157,179.592575,191.675217,202.394226,200.352905,184.245468,161.633896,141.427277,129.914886,126.683479,121.790916,92.559517,75.947945,91.700012,100.964470,71.559517,35.071922,14.923158,11.071919,10.990097,7.000012,8.304971,8.555386,5.465299,1.059507,0.184298,0.061157,0.000000,0.133885,0.000000,0.057851,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.755000,4612535.550000,5393,4255,119.424797,172.631409,174.895874,165.011566,148.433060,138.631409,135.821503,133.201675,133.209930,134.730591,134.565308,145.639679,164.226456,179.656204,191.036362,201.681000,201.300827,188.226456,162.408264,141.003311,130.689270,128.094238,122.400009,93.912407,77.160339,91.309105,104.061180,75.573570,36.019855,15.030597,11.127291,8.019021,8.459517,8.380178,11.413237,4.276869,0.741324,0.368596,0.000000,0.002479,0.000000,0.000000,0.100000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.755000,4612535.550000,5468,4255,113.981010,165.542984,171.964478,159.857040,145.419022,136.162827,134.518204,131.551254,131.113235,132.104980,132.757874,143.650421,162.766129,179.452072,190.964478,200.121490,200.270264,187.898361,163.228943,141.344635,130.757874,126.914894,121.245476,93.807457,75.733086,91.815720,102.708282,74.857048,36.113243,14.602498,11.022333,7.704145,8.059519,7.844641,8.246295,3.380173,0.352894,0.115703,0.523968,0.000000,0.000000,0.000000,0.040496,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,2.215703 -601859.755000,4612535.550000,5588,4255,115.768608,169.000015,171.561996,162.471085,146.933899,138.090927,135.528946,134.289276,133.330597,134.958694,136.041336,147.082657,164.107452,180.264481,193.578522,202.305801,201.239685,188.892578,165.057861,141.876053,131.090927,128.173569,122.363655,94.669441,77.818199,92.752083,103.330597,75.760345,36.495888,15.154563,11.123986,7.351251,7.675222,9.088444,7.515715,3.177694,0.558679,0.558679,0.227273,0.000000,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.355000,4612535.550000,5776,4255,119.460342,173.700012,169.071915,161.997528,149.253723,138.344635,135.757874,133.625641,133.187622,135.807465,136.295044,147.237198,164.609100,180.369431,193.154556,202.848770,202.865295,192.187607,167.063644,144.947937,133.840515,129.171097,123.972748,95.080185,76.997536,92.633911,105.890091,77.419029,36.435558,14.357042,11.270267,4.933894,7.695056,7.471088,7.359516,3.418188,0.561985,0.318182,0.185951,0.057851,0.000000,0.000000,0.018182,0.118182,0.000000,0.000000,1.001653,0.000000,0.000000,0.000000 -601918.955000,4612535.550000,5884,4255,117.074394,182.603317,176.818192,166.909103,151.859528,139.570267,137.743820,137.247955,135.173569,139.165298,138.520676,149.776871,166.785141,184.223160,196.537201,207.876053,206.785141,194.876053,171.314072,148.950424,135.661179,131.793411,126.545471,97.785141,79.380180,93.942162,106.438034,79.619850,36.305805,13.939687,11.504151,5.618191,7.130595,6.904147,7.307451,2.934718,0.233058,0.160331,0.059504,0.021488,0.075207,0.000000,0.034711,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.955000,4612535.550000,5934,4255,126.766968,185.494232,177.585144,167.122330,150.857880,138.552094,137.171921,135.733887,135.047943,137.998367,137.700851,149.378540,166.833084,184.419861,196.957031,207.700836,207.766953,195.122330,171.304153,148.304153,136.816559,133.014877,126.345467,98.957039,81.386795,96.766960,108.585136,79.725632,38.320675,15.281837,11.485969,7.226459,7.574395,8.603322,8.104973,3.214056,0.614877,0.418183,0.117356,0.000000,0.005785,0.000000,0.016529,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.755000,4612535.550000,5968,4255,108.877693,172.652908,174.380188,165.454559,148.041336,136.553741,135.998352,132.684311,130.733887,132.386780,133.180176,144.386795,163.147110,179.039673,192.585129,203.147110,204.932236,190.436371,166.353745,144.841324,133.849594,131.411575,126.527283,97.957031,81.932243,95.411575,108.576866,77.576881,38.965313,15.261175,11.502498,9.700014,10.350428,9.642163,11.500015,5.252901,0.861159,0.059504,0.076034,0.503306,0.000000,0.267769,0.100827,0.016529,0.000000,0.000000,0.930579,1.138843,0.000000,0.647108 -601938.755000,4612535.550000,5983,4255,116.873573,181.468597,181.129761,164.832260,150.262009,137.369446,138.865311,134.278534,133.385971,135.857040,136.766144,148.162842,166.493408,182.534714,195.443817,207.261993,207.295044,193.617371,168.592590,147.146301,136.286789,133.096710,128.245468,98.774399,83.840515,96.956215,107.947952,79.014069,40.030598,16.118200,11.658696,10.336378,9.551253,11.920676,10.584314,3.966949,0.585125,0.560332,0.171075,0.068595,0.350414,0.027273,0.099174,0.361158,1.567769,0.000000,3.984298,0.000000,1.361984,0.000000 -601941.555000,4612535.550000,5997,4255,114.752907,182.620651,179.033875,165.620651,150.025620,136.876877,137.447098,133.521500,133.909927,135.025635,135.562820,147.298340,165.645447,182.290085,194.290085,206.141312,205.207428,193.587601,167.852066,145.471893,134.513229,132.918198,126.554558,97.827286,81.381004,95.661995,107.918198,77.521500,39.967789,15.116547,11.504977,11.266958,9.914890,9.651255,11.091749,3.923974,0.743803,0.395869,0.290083,0.183472,0.296695,0.000000,0.080992,0.490910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601945.355000,4612535.550000,6016,4255,122.800026,186.180176,181.287613,165.849594,145.841324,135.990112,135.800018,132.609940,132.246307,134.519028,133.758698,145.328934,164.444641,180.973557,193.229752,203.932236,205.386780,191.783478,165.957031,145.444641,134.279358,130.477707,126.345474,96.345474,79.841347,94.651260,106.461182,76.180191,37.452911,14.357869,11.485969,9.699187,8.315717,7.839684,7.957037,4.782652,0.985126,0.311571,0.427274,0.000000,0.014876,0.312397,0.183472,0.208265,1.565289,0.000000,0.000000,0.000000,0.000000,0.000000 -601948.555000,4612535.550000,6032,4255,106.128944,183.740524,179.715729,165.252914,149.409943,137.988464,136.790115,133.814896,132.244644,134.748779,134.905792,146.831436,165.145477,181.996719,194.765305,206.029770,206.269455,193.054565,167.600037,146.781845,134.740509,131.980179,127.963654,98.112419,81.988449,96.319031,107.930603,78.823158,37.889278,15.235556,11.633077,11.793405,7.842990,9.481009,10.404145,5.286787,0.623968,0.313224,0.000000,0.000000,0.061984,0.000000,0.095041,0.185125,0.000000,0.000000,0.000000,0.852893,0.000000,0.000000 -601951.755000,4612535.550000,6048,4255,118.291748,189.095047,178.252060,165.997528,150.319839,135.701675,135.445480,133.139694,132.742996,135.164490,135.189270,146.668594,165.197525,181.742981,194.247101,205.842133,205.602463,192.090073,167.569427,145.387619,134.949600,131.784317,126.809113,97.957870,81.759521,96.032249,107.114899,77.776054,37.032253,15.144646,11.528118,12.727288,8.438030,9.674396,13.089272,5.700835,1.727276,0.753720,1.238844,1.073554,0.717356,0.359504,0.301653,0.573554,1.374380,1.481818,1.070248,0.962810,0.000000,0.000000 -601954.355000,4612535.550000,6061,4255,103.733078,188.403336,178.651245,172.461182,156.006638,141.171906,141.981827,138.957031,136.965302,139.262817,139.039673,150.477707,168.064484,186.320663,198.221512,210.188446,209.866135,195.692581,171.676056,149.378525,139.593399,136.064484,130.618195,101.097534,84.378525,100.039680,110.262825,79.477699,40.444653,17.128944,11.874400,13.656214,10.280182,9.973569,13.479355,5.939679,2.710748,1.785954,1.500002,0.045455,0.769423,0.820662,0.520662,0.328100,0.000000,0.000000,1.196694,1.190083,0.000000,0.000000 -601960.555000,4612535.550000,6092,4255,123.217361,184.777695,179.007462,170.999191,154.850433,140.238861,139.957870,135.982666,136.949600,140.181015,138.858704,150.561172,168.536377,185.362823,197.470245,208.709915,207.478516,194.701660,170.665283,149.929749,140.491730,138.119827,134.863647,104.979355,88.298370,100.590927,111.995880,82.772743,41.235554,17.201670,12.260348,13.949602,11.524809,12.571916,12.928114,8.376041,4.764467,3.500003,3.697523,2.361158,3.213225,2.147108,1.200000,1.047934,0.000000,0.000000,2.053719,0.000000,0.000000,0.000000 -601963.555000,4612535.550000,6107,4255,113.343002,170.309921,173.070251,160.450409,147.028931,135.161179,134.607452,132.301682,129.789276,134.714905,132.904984,141.838837,157.789261,175.285126,187.747940,197.607437,198.185944,186.086777,161.772720,140.756195,130.425629,127.078522,123.318192,96.235565,79.491760,93.789284,102.433899,74.938042,35.979362,13.595058,11.210763,6.034721,8.053734,7.742988,8.143814,4.261991,0.269423,0.062811,0.229753,0.000000,0.016529,0.008265,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.355000,4612535.550000,6121,4255,113.980179,180.261169,172.682663,162.922333,148.451248,135.401672,134.170258,129.889267,129.856216,133.120667,132.533890,142.732239,158.120667,175.823151,187.938843,198.525620,198.385117,186.814880,161.938858,141.922333,130.542160,127.236374,123.054558,95.666130,79.922325,92.831421,103.509102,75.781830,37.153740,13.690099,11.186796,6.542160,8.005800,7.873567,8.308278,2.744633,0.387605,0.195042,0.377687,0.123967,0.011570,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.955000,4612535.550000,6144,4255,123.389267,165.207458,170.100006,161.843811,145.843811,134.455383,131.810760,129.240509,128.174393,131.951248,130.223984,140.901672,156.645477,173.116547,184.166122,196.009109,195.496704,184.628937,161.480179,139.909927,129.372742,126.265305,122.009102,94.124809,79.942986,93.265305,102.645470,74.678528,34.711590,13.977703,11.091755,6.104969,9.206626,7.573565,8.360345,3.163642,0.854547,0.338844,0.744630,0.066942,0.053719,0.157852,0.368596,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.355000,4612535.550000,6181,4255,107.662827,163.555359,170.208252,161.390076,148.009933,136.919022,133.745468,132.142166,130.489273,132.902496,131.885971,142.654556,158.761978,174.307434,187.109085,197.439667,198.547104,186.323959,162.836365,140.869431,131.985138,127.778534,123.472748,95.819855,79.100845,94.456215,103.687622,76.720680,36.399197,14.624810,11.224813,6.836375,9.052082,7.430589,9.038033,2.443805,0.296696,0.096695,0.177687,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601982.355000,4612535.550000,6201,4255,106.597534,161.374390,166.382645,159.787613,146.696701,133.647125,131.060349,130.217377,128.614059,130.680176,131.184311,141.176041,157.300003,172.341324,184.589264,196.399185,195.118195,185.233887,160.638855,139.861984,128.605804,127.109932,121.845467,94.729767,79.060356,93.647125,101.704971,76.341347,36.713245,14.352084,11.076880,6.330588,8.103322,7.284309,7.519022,3.305790,0.132232,0.009091,0.109918,0.208265,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.955000,4612535.550000,6229,4255,103.206635,164.561981,170.181824,160.140503,146.471100,136.264496,132.818192,130.892593,129.305817,132.066132,131.933914,142.247971,157.280991,173.818176,186.264465,196.380173,197.049591,184.900833,161.206604,141.322342,130.115723,126.743828,122.454559,94.917374,80.330605,95.487625,102.446297,75.231430,36.603321,15.286795,11.132250,7.390094,8.139686,7.616542,8.061170,4.163642,1.099177,0.482646,0.356199,0.000000,0.006612,0.000000,0.733885,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.755000,4612535.550000,6268,4255,100.022331,157.997543,169.501678,161.286804,144.443832,135.757858,133.278519,131.898361,129.757858,131.567780,132.063644,142.080185,158.014069,173.609116,185.923172,196.204163,196.385971,184.947952,161.675232,140.898376,130.865295,126.741341,122.336380,96.460350,80.890099,95.171089,103.633904,76.600845,36.972744,13.981009,11.121507,6.572739,9.738033,7.796707,7.822327,3.628105,1.916532,1.021490,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.355000,4612535.550000,6311,4255,99.681831,159.954559,167.020676,159.962830,144.227295,136.111588,131.119858,129.789276,128.681839,131.714905,130.995880,141.285141,157.177704,173.061996,184.500015,196.665298,197.557861,184.855392,161.599182,140.458694,130.524811,128.309937,121.863655,95.293404,80.929771,96.475220,104.219025,75.838860,36.103325,15.125639,11.078531,7.260342,9.412413,8.559517,7.014887,3.727277,0.235539,0.108265,0.116529,0.693390,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,9.530580 -602010.555000,4612535.550000,6342,4255,92.737206,157.823975,165.832245,158.518188,142.633896,134.377701,131.270264,129.179352,128.427292,130.427292,131.394226,141.542984,157.931412,173.245468,185.005798,195.584305,196.138031,184.807449,160.923157,140.419022,130.195892,126.675224,121.336380,95.423157,80.555397,94.402496,103.237206,76.658707,36.745472,15.300017,11.030598,6.489268,8.566958,10.389270,10.104148,2.561162,0.964466,0.509093,0.378513,0.000000,0.000000,0.254546,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.955000,4612535.550000,6379,4255,106.014893,157.791763,167.345459,157.089279,142.733902,133.717377,131.312408,128.287613,128.676041,128.676041,131.320679,140.890930,157.023163,172.444641,183.816559,194.684326,194.725647,182.287628,159.023163,137.750443,129.204971,125.204971,121.436378,94.510757,79.907455,94.064476,103.147125,75.998360,35.395061,15.073572,11.039689,5.629763,7.785140,8.141336,7.060344,2.177690,0.761987,0.183473,0.186777,0.000000,0.000000,0.000000,0.000000,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.155000,4612535.550000,6435,4255,95.742172,155.064484,169.114059,157.766953,144.576889,136.238037,134.461182,131.395065,129.766968,131.171921,132.386795,142.452911,158.097534,174.171906,185.965302,196.238022,197.105789,184.849594,161.808273,140.502502,130.485977,128.328949,122.163658,96.593407,80.114067,94.601669,103.510765,76.072746,38.535561,15.475224,11.105803,6.904971,8.607453,7.818195,8.275220,2.549591,0.952068,0.482647,0.119009,0.000000,0.085951,0.000000,0.310744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.155000,4612535.550000,6480,4255,89.214882,148.588440,165.571930,158.852921,145.299179,133.299179,131.282654,128.241333,128.786774,129.712402,131.199997,141.638031,156.795074,172.307465,184.638031,194.613251,195.753738,184.067780,160.919037,140.390091,128.861160,125.671082,121.018188,94.762001,80.968613,92.266136,102.092583,73.695885,34.423157,13.617373,11.001673,5.154555,8.325636,8.033071,7.186791,2.842981,0.316531,0.126447,0.094215,0.152067,0.000000,0.000000,0.359504,0.316529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.955000,4612535.550000,6494,4255,93.710770,151.347137,165.446304,156.669434,142.925659,133.628113,131.603317,128.900833,127.330589,128.743805,130.479340,141.041351,156.206635,171.561996,183.702515,194.752106,194.132263,182.966965,159.669434,139.504166,130.107452,125.115707,120.727280,94.537209,77.917381,92.611588,101.867783,74.214897,35.107452,13.509935,10.975225,5.094224,6.796710,8.113236,7.261996,3.156204,0.447109,0.227274,0.317356,0.105786,0.000000,0.076860,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.555000,4612535.550000,6507,4255,92.705803,156.838013,168.672729,159.639679,143.292572,135.383469,133.292572,130.317368,129.714066,131.871078,132.714050,143.209915,158.871078,173.829758,186.664459,196.887604,196.507446,185.466125,162.755371,141.036362,130.986786,129.201660,122.127281,97.052895,82.019852,95.895874,103.358688,76.540512,37.780186,14.574396,11.102498,6.216540,8.523982,10.068609,9.170263,2.930584,0.760332,0.148762,0.382645,0.057025,0.116529,0.000000,0.724794,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.755000,4612535.550000,6523,4255,88.223160,151.223145,171.611588,159.206635,146.371933,136.578522,134.231415,132.206619,131.578522,132.289261,133.404968,144.148788,159.644638,175.396713,187.479355,197.371918,198.181839,187.380188,163.363647,142.760361,132.157028,129.842987,124.454552,97.859512,82.322319,96.776871,105.330589,77.173561,38.066135,16.320681,11.314070,8.351252,8.613239,10.627288,9.487618,3.759510,1.407441,0.146283,0.155373,0.447934,0.640496,0.000000,0.285951,0.195041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.755000,4612535.550000,6543,4255,85.014076,162.212418,168.228943,160.096725,143.146301,134.551270,133.204163,130.733078,130.526474,130.212418,132.113251,142.617386,158.617386,173.733063,186.650421,196.154556,197.452072,184.501663,162.088440,140.278534,131.534729,128.220688,122.063660,96.939697,81.410767,94.468620,103.964485,75.005814,36.030598,15.061175,11.096714,6.899185,7.975222,8.768610,7.993401,4.120667,0.580994,0.004959,0.061157,0.246281,0.026447,0.000000,0.266943,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.955000,4612535.550000,6564,4255,89.063660,161.906616,168.799179,159.485138,144.080170,135.419022,132.419037,129.923172,129.485153,130.336395,132.146301,141.997528,157.956207,173.096710,184.617371,195.311584,195.452072,184.592575,161.361160,139.584305,130.576065,127.443825,122.518196,96.005806,80.262001,94.609108,103.501671,75.799194,37.038860,13.800018,11.138037,6.855384,8.590097,7.928113,7.954558,3.731411,0.541324,0.016530,0.056199,0.028099,0.000000,0.074380,0.295042,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.155000,4612535.550000,6595,4255,86.519028,151.783478,167.428101,155.998352,141.543823,133.965317,130.601669,127.552086,126.990105,127.890930,130.064484,139.899200,156.461166,172.138855,182.593399,193.114059,195.147110,183.246292,159.882645,137.965317,128.725647,126.122337,121.527298,95.023163,77.766968,93.527298,103.072746,75.502502,35.775230,13.821504,11.047953,6.398359,8.385139,9.590922,9.010756,4.091742,1.227276,0.180993,0.109918,0.347108,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602070.355000,4612535.550000,6641,4255,91.323158,158.488449,165.662003,157.843811,142.628937,133.298355,129.951248,126.670258,125.984314,127.769432,128.521500,139.314896,155.876862,170.711578,182.405807,193.670273,194.488464,181.133087,159.050430,138.794235,128.662003,126.033897,121.190926,94.471916,77.868607,92.232246,102.868607,74.116539,35.620678,13.431421,11.017373,7.237203,8.571088,8.877700,8.303319,3.651246,0.551242,0.095869,0.289257,0.055372,0.116529,0.000000,0.067769,0.505785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.955000,4612535.550000,6669,4255,92.375229,161.895889,169.681015,159.887619,145.796707,135.143814,131.838043,128.738861,128.970261,128.052917,129.986801,139.995056,157.292587,172.540512,182.920685,196.209930,194.168610,182.251266,160.366959,139.110764,128.647949,126.540512,120.854568,93.937210,78.532249,94.094231,104.590103,75.532249,37.565308,13.563654,10.986796,7.461997,8.833074,10.446295,8.932245,3.433890,0.780994,0.503307,0.284298,0.023967,0.000000,0.133058,0.000000,0.193389,0.000000,0.000000,0.000000,1.659504,0.000000,0.000000 -602080.755000,4612535.550000,6693,4255,106.090935,160.776871,168.355392,158.206635,143.900848,133.074402,130.198364,127.314072,125.561996,128.264481,128.603317,139.446304,155.561996,171.016541,182.380188,193.231415,193.388443,181.016541,158.652908,138.462830,127.710762,125.330597,119.272743,92.652916,77.289284,92.586807,101.636383,75.562004,34.413242,14.370266,10.842995,7.181003,7.360345,8.061998,9.042163,2.928930,0.749588,0.161984,0.048760,0.265290,0.111570,0.153719,0.221488,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.755000,4612535.550000,6718,4255,97.891754,159.511597,170.404144,157.577698,144.280182,133.453735,130.726471,127.181007,127.139687,127.883484,128.197540,140.181015,155.652084,171.255386,183.635559,194.437210,195.230591,182.296707,158.908279,138.685150,128.858704,124.023979,119.990921,93.900017,77.800842,91.329773,102.346291,75.759521,35.271919,14.927291,10.908284,7.409103,7.540510,7.787616,7.877699,3.665296,0.617357,0.163638,0.476034,0.176860,0.109918,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.355000,4612535.550000,6741,4255,105.242172,158.820679,168.341339,159.134735,144.903336,132.952911,131.886795,128.944656,128.357880,128.192581,129.167786,139.200851,156.514893,171.159531,183.746307,194.688446,194.440521,181.589279,160.176056,139.911591,128.200851,125.523155,120.663651,93.382660,78.258690,91.762825,102.101669,74.762825,34.862003,15.095885,10.969441,6.232244,8.108279,9.494229,7.854558,2.232236,0.580168,0.462812,0.273555,0.426447,0.038017,0.397521,0.211571,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.155000,4612535.550000,6760,4255,99.604973,163.753723,168.985138,159.885956,144.100830,133.877701,132.728943,128.935562,128.307449,129.910767,129.439682,140.340500,157.357040,172.555374,185.109100,195.604965,196.249603,182.885956,160.398361,140.952072,130.084320,126.009933,120.109108,94.233078,78.530602,93.621506,105.233078,75.266136,36.183495,15.038860,10.919027,7.654558,9.114892,9.638857,10.090924,6.190090,0.438018,0.417357,0.813225,0.050414,0.000000,0.000000,0.256199,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602097.355000,4612535.550000,6776,4255,101.626457,156.948776,170.114059,160.477707,143.279358,134.039688,133.659531,128.923996,128.320679,129.452911,129.709106,140.932251,157.047958,171.882645,183.692566,195.824799,195.378525,182.709091,159.626465,139.725647,130.395050,126.114067,120.618195,93.618195,78.552078,91.403320,104.039680,74.543816,35.634727,15.242994,10.965309,7.380176,8.544645,9.618196,7.684312,3.270252,0.976035,0.006612,0.059504,0.482645,0.000000,0.183472,0.872728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.555000,4612535.550000,6797,4255,99.086792,163.863647,173.657043,160.673569,146.657043,136.095062,134.731415,131.037201,129.838852,130.615723,132.450439,143.128113,158.863647,174.400848,185.615723,196.615723,197.260345,184.690094,161.987625,141.260345,131.260361,128.524811,121.772751,95.640511,80.103325,94.814064,103.929771,75.607452,37.144650,15.779356,11.070267,9.985963,10.355387,8.999186,10.037204,4.501659,1.307440,0.350415,0.358678,0.114050,0.014050,0.370249,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602108.355000,4612535.550000,6831,4255,96.859528,168.214890,169.487625,158.669434,144.917374,133.685974,131.545471,128.611588,126.925644,129.272751,129.619858,139.925629,156.115723,172.173569,183.983490,194.214890,195.983490,182.487625,160.123978,139.669434,130.578537,128.066147,121.636391,94.950439,79.834732,92.289284,102.305809,76.041344,35.776878,12.970265,11.057871,9.684313,8.734727,9.618196,9.104974,2.989261,0.574382,0.057026,0.271902,0.633885,0.000000,0.285951,0.138843,0.759505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602113.755000,4612535.550000,6858,4255,101.984322,169.992554,168.744629,161.190918,146.504974,133.728119,132.951263,130.852081,129.100021,130.257050,130.215729,141.587616,157.662003,174.380981,186.934708,197.397522,196.356201,184.595871,160.653717,140.480179,130.447128,127.141342,122.190933,95.364487,80.662003,92.670265,103.207458,75.546303,36.257046,15.500845,11.108284,9.326462,7.846296,7.980178,10.134725,4.055378,0.579341,0.271076,0.000000,0.113224,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.614876,0.000000,0.000000 -602116.955000,4612535.550000,6874,4255,89.899193,174.221497,171.609924,164.461166,146.370255,132.957047,133.089294,129.122345,129.147141,131.105820,130.262848,142.105789,157.758682,173.791748,185.833069,197.180176,196.271088,183.428101,160.932236,140.543808,131.039703,128.196732,122.981850,94.271095,79.130600,94.485970,102.585152,74.576881,34.494236,15.656217,11.180185,8.557863,8.976048,8.895055,8.652081,3.184303,1.190912,0.447108,0.229753,0.142149,0.009918,0.000827,0.167769,0.222314,0.000000,2.254546,0.000000,0.000000,0.000000,0.000000 -602124.155000,4612535.550000,6910,4255,98.477707,172.320663,170.907440,160.138855,146.023148,133.998367,132.981827,131.485962,131.585144,133.461166,132.543823,145.105789,160.204971,177.395050,189.800003,201.560333,200.733887,187.915710,164.965302,144.733887,135.138855,132.271088,126.527290,97.940514,82.717369,95.502495,104.634727,74.163651,35.717377,14.345470,11.502498,9.010756,7.642165,7.971915,10.183485,3.894221,0.695044,0.105786,0.000000,0.314877,0.200000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602126.955000,4612535.550000,6924,4255,105.979362,176.392578,171.681854,163.103333,145.607468,135.714905,135.483505,132.343002,132.433914,135.219040,133.177704,144.954575,161.657059,179.169434,191.797531,203.309952,202.747955,189.144638,166.128128,147.095078,136.376068,132.177704,127.954567,99.772751,82.979362,97.698372,107.343002,77.384323,37.425636,14.702497,11.632251,11.116542,9.723157,9.526459,8.906626,4.123148,1.268598,0.093390,0.141323,0.000000,0.000000,0.080992,0.397521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.755000,4612535.550000,6943,4255,107.052917,172.631424,171.788452,162.623154,144.110764,133.598373,132.366959,130.391754,129.036392,133.110764,130.499191,142.962006,159.738861,176.168610,189.267776,201.920670,200.887604,187.945480,165.928940,145.623154,135.482681,130.796722,126.581848,97.912415,81.333900,96.234734,106.573578,76.953735,35.490929,13.609935,11.507458,9.688442,7.836377,8.590097,8.164474,2.791744,0.854547,0.034711,0.065289,0.254546,0.001653,0.000000,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.155000,4612535.550000,6975,4255,114.792580,174.784302,171.933060,164.329773,148.040512,133.916550,134.486801,131.338043,131.924820,136.395889,133.156219,145.966141,160.742996,179.767776,192.668594,204.544632,204.057022,189.486786,167.916550,147.585968,138.048782,134.214066,128.627289,99.974396,83.742996,100.577705,110.057045,78.676880,37.313244,15.208282,11.693408,11.145468,10.671917,8.113238,10.490924,4.686785,0.806615,0.330580,0.330579,0.000000,0.000000,0.089257,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602143.555000,4612535.550000,7007,4255,119.947960,179.476868,173.435547,164.741333,147.642181,136.567795,134.129776,132.014069,131.385971,136.402512,132.319855,144.344650,160.361160,177.923157,190.584305,202.493393,202.253723,187.385956,165.807449,146.873581,136.204163,133.138046,127.790932,98.385979,83.014076,99.485153,108.204155,78.096718,36.187622,14.409935,11.617374,10.865303,9.197535,9.137205,9.064476,4.384305,0.981821,0.215704,0.166943,0.230579,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,4.155372,0.000000,0.000000,0.000000 -602148.555000,4612535.550000,7032,4255,122.366119,185.878525,173.655380,166.837204,146.448761,135.399185,133.911575,130.209091,130.771088,135.142990,131.647110,142.572739,156.647110,175.473557,189.498352,201.010757,198.622314,186.349594,164.853729,146.572739,134.928101,130.490082,125.572731,96.498360,81.622330,97.779343,108.556206,78.787621,38.465309,16.876051,11.415721,10.051252,8.367783,10.438033,11.357038,4.976869,0.654548,0.390911,0.719835,0.105785,0.244628,0.009918,0.362810,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.955000,4612535.550000,7064,4255,99.599190,161.078522,165.417374,156.739685,141.665298,131.533081,127.235550,124.549606,125.227287,127.623985,127.276878,137.400848,154.880188,171.078522,184.235550,195.268616,195.541336,184.599182,161.367783,142.822327,131.508286,128.500015,121.772743,95.045464,78.483490,95.268600,108.012413,77.359520,37.789276,15.454562,11.070266,7.130591,9.159517,9.094228,9.338856,3.361166,0.651241,0.220663,0.000000,0.000000,0.084298,0.019008,0.151240,0.000000,2.352067,0.000000,1.880992,0.000000,0.000000,0.000000 -602159.155000,4612535.550000,7085,4255,88.512413,151.801666,158.685974,149.090927,137.909103,127.438034,125.909103,122.446297,122.074394,123.966957,123.785141,135.603317,152.024811,167.000015,181.000015,191.950424,192.330597,182.338852,160.925629,140.000015,129.338852,123.371918,118.181831,91.669441,75.710762,92.413239,106.181831,78.942162,36.702499,13.342166,10.743821,4.521498,8.360345,8.609107,7.391747,2.279345,0.610745,0.499175,0.000000,0.282645,0.000000,0.000000,0.393389,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602163.355000,4612535.550000,7106,4255,95.965309,147.725647,162.990112,151.717377,138.469437,127.923988,125.114075,123.791756,122.477707,124.419861,124.452911,135.014893,152.915726,168.213242,181.783493,192.915726,194.130600,182.494232,161.725647,141.700851,130.204987,125.684319,119.709114,91.576881,76.618202,93.188454,107.874405,81.411591,37.039688,15.120679,10.882664,6.919847,8.385965,8.335552,9.472741,4.117364,0.740498,0.254547,0.000000,0.156199,0.093389,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.755000,4612535.550000,7133,4255,88.444649,148.494217,160.642975,151.072739,135.353729,126.510750,122.510750,120.428108,119.585129,120.494225,122.304138,133.229752,149.692566,166.047943,178.304138,191.006622,192.436371,180.692566,159.659515,138.147110,128.700836,123.990089,117.800003,90.973572,73.833061,92.419846,108.180183,80.965294,38.328949,14.042992,10.709109,5.081828,8.703320,7.922328,8.831419,4.630586,0.600828,0.656200,0.000000,0.161158,0.000000,0.000000,0.281819,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.355000,4612535.550000,7171,4255,86.559525,146.237213,155.262009,147.815735,133.038864,123.286797,120.700020,118.468613,118.005806,119.253738,120.295059,131.088440,149.096725,163.865295,177.195892,188.138046,189.592590,179.204163,156.972733,136.700027,126.187622,120.972748,115.427292,88.121498,72.295059,89.410759,105.113243,77.485138,36.162827,13.520679,10.493408,4.744638,7.845469,8.128941,6.504969,3.122323,0.580994,0.172728,0.109918,0.033884,0.000000,0.000000,0.224794,0.000000,0.000000,0.000000,1.233058,0.000000,0.000000,0.000000 -602184.355000,4612535.550000,7211,4255,86.667786,147.684311,154.461166,147.295868,132.337204,122.940514,120.362007,116.824814,116.312416,116.750435,119.213249,129.915726,147.436371,163.031418,176.204971,187.138855,187.601654,177.419846,154.609924,135.990112,124.684319,120.196709,114.890930,87.386803,71.535561,90.229767,104.733910,77.568619,36.791756,13.585966,10.444647,5.413235,7.559516,7.630592,8.011582,3.486784,0.353720,0.101653,0.056199,0.039670,0.000000,0.000000,0.104133,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,3.152893 -602193.155000,4612535.550000,7255,4255,99.402496,141.724808,154.121490,146.576050,131.410751,121.303322,119.972748,116.129768,115.683487,116.179359,117.914894,129.452072,146.055374,162.129761,174.435547,186.584290,186.047104,176.063644,155.005798,134.551254,123.914894,120.658699,114.063652,86.724808,71.328117,90.551254,105.700020,79.741341,36.691757,14.714067,10.369441,5.112409,8.518196,10.637205,8.838030,3.386785,0.557853,0.162811,0.053719,0.132232,0.000000,0.004959,0.338017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.555000,4612535.550000,7307,4255,100.802505,154.199188,156.141357,146.199188,132.215714,122.794228,119.810760,115.810760,115.124809,115.356209,116.480179,128.009109,145.785965,161.331436,172.447144,182.728119,182.976059,172.546310,152.992584,133.876877,123.918198,120.827286,114.554558,89.058701,72.124817,91.314896,109.422325,84.645477,39.901669,15.483488,10.414067,6.591746,8.392577,9.928941,11.252908,3.839678,0.965292,0.414051,0.128926,0.075207,0.091736,0.000000,0.354546,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602213.755000,4612535.550000,7358,4255,128.446304,152.380188,152.809937,141.528946,125.818199,116.991753,112.942162,108.677704,107.363655,107.528938,109.396713,119.561996,136.669434,152.801666,163.454544,175.793396,175.000000,164.834717,145.305801,126.975220,117.661171,114.148773,108.636383,82.314064,67.528946,86.619850,104.057869,77.090927,35.173573,13.016545,9.876051,7.353732,6.976045,7.653731,8.334723,4.201662,0.636367,0.149588,0.248761,0.120662,0.180166,0.000000,0.107438,0.263637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602240.155000,4612535.550000,7490,4255,135.366119,165.962814,156.185944,141.657028,126.252068,115.929764,111.962814,107.904968,106.888435,108.227280,108.070259,119.276863,138.442154,154.880173,168.772720,182.235550,184.285141,173.582657,151.805786,129.938019,119.780991,115.706619,109.318192,80.194221,61.789276,81.235550,100.607445,72.623985,33.657043,12.158695,9.938036,8.416543,7.786793,9.128941,9.860344,6.409927,0.962812,0.321488,0.119835,0.004132,0.036364,0.105785,0.000000,0.001653,2.722314,0.000000,2.120661,0.921488,1.076860,1.961157 -602246.155000,4612535.550000,7520,4255,112.518196,159.579346,157.653732,144.042160,128.703323,116.885139,114.133072,111.637199,109.389267,111.033897,111.959518,122.934723,142.662003,159.827286,173.984314,187.819016,190.339676,179.662003,157.480179,134.323151,122.604149,119.273567,113.009102,83.323158,64.992584,83.612419,103.794228,76.215721,34.182667,14.089274,10.273573,8.522328,8.991751,9.216542,9.784313,5.780174,1.279341,0.136364,0.057025,0.011571,0.132232,0.037190,0.000000,0.000000,1.431405,1.331405,1.144628,0.989256,0.000000,0.000000 -602255.555000,4612535.550000,7567,4255,115.566956,154.550430,161.054565,144.699188,129.533890,120.335548,117.773567,115.740509,114.914062,116.186790,118.352081,130.335556,149.104141,166.120667,179.922333,191.509094,194.674377,184.971893,162.038025,140.376877,127.723976,124.120674,119.236374,88.533897,71.137199,88.261169,106.145470,77.195053,36.418201,13.924811,10.839688,7.563649,9.207454,9.183485,9.795883,5.461993,0.495869,0.276860,0.211571,0.315703,0.158678,0.271901,0.000000,0.000000,0.000000,1.304132,2.118182,1.740496,1.238843,0.000000 -602270.155000,4612535.550000,7640,4255,125.776047,164.024796,156.297516,142.611572,127.537201,116.239677,111.504143,109.256218,107.628113,108.636383,108.669441,118.966949,136.892563,153.537186,166.793396,178.330582,179.528931,169.818176,147.644623,125.454552,114.537201,109.842995,104.454559,75.958694,59.826469,77.123985,93.561996,69.264481,31.165310,12.500844,9.495887,6.760342,8.274396,8.709931,8.978527,6.052074,0.942977,0.817357,0.217356,0.309091,0.290083,0.897522,0.000000,0.001653,4.242149,4.129753,3.269422,3.077686,0.000000,2.089256 -602281.955000,4612535.550000,7699,4255,121.500839,161.292587,152.928940,137.226471,121.730591,110.804970,107.449600,105.160339,103.375221,105.119019,105.441330,117.507446,136.226471,155.135559,168.532257,180.532257,181.490921,171.681015,148.085968,126.507446,113.598358,109.871086,104.854553,75.309113,57.474400,74.912415,95.094223,70.242996,31.920681,12.000844,9.532250,8.328939,8.227287,11.696709,10.139685,8.473566,1.723147,1.419012,0.385125,0.640498,0.000000,0.521488,0.683472,0.371075,5.219009,5.000000,4.262810,2.811571,3.228100,10.015702 -602286.755000,4612535.550000,7723,4255,138.414047,161.614059,143.787613,128.010757,111.680168,97.820671,97.564468,95.060333,93.944633,96.762817,96.878517,109.382652,128.589264,146.597534,160.663635,170.845459,172.308273,162.630585,142.795868,121.159508,110.622322,107.771080,104.390915,74.423981,53.622334,75.341339,101.176041,81.076874,40.490101,9.704147,9.490101,9.828940,9.328939,11.998362,15.512410,10.984310,4.866949,0.877688,0.616531,0.554547,0.180166,0.094215,1.054547,0.918182,11.381820,5.834711,4.395042,6.997522,3.014050,1.905785 -601293.155000,4612525.550000,2755,4305,162.699188,166.971909,149.087616,135.013229,119.277710,104.996712,104.715721,102.261177,101.517380,103.236382,101.897545,113.046303,128.203323,144.302490,155.219849,165.054565,165.095886,155.128937,137.236374,119.294235,110.633080,108.872749,104.509109,75.980179,58.095890,73.558693,93.203323,70.715721,32.533905,10.743817,9.500845,15.287620,8.981005,12.041339,14.646297,8.617367,2.979346,0.742978,0.694216,0.157025,0.130579,0.262810,0.844630,1.266943,6.559505,2.692562,6.342976,2.865290,3.581819,3.654546 -601298.155000,4612525.550000,2780,4305,144.884308,173.427277,151.336380,138.823975,122.766129,110.485130,109.319847,107.080177,107.245461,109.642159,108.212410,119.832245,135.146286,151.617371,163.080170,174.898361,173.286789,162.460342,142.493393,123.972740,114.683479,112.923149,107.245461,78.385979,61.245476,76.344650,94.063644,68.509941,31.328117,12.609109,9.749605,15.657868,10.270262,13.461175,12.909108,7.709929,1.815708,0.803308,0.445456,0.671902,0.214877,0.000000,0.502480,0.183471,1.985124,3.861158,6.729753,1.501653,4.973554,1.953719 -601306.355000,4612525.550000,2821,4305,123.464485,173.299179,151.332245,142.241333,125.919029,111.861176,113.547127,109.861176,111.571922,115.274399,113.224808,125.216545,142.315720,161.332245,174.100830,186.439682,185.737198,174.092575,152.117371,132.414886,123.274399,120.224808,114.018196,84.952095,65.704147,80.580185,92.464485,65.406631,29.365307,11.324810,10.365308,14.303323,8.546295,9.871091,10.490926,5.994224,1.262814,0.257026,0.471075,0.199174,0.081819,0.105785,0.000000,0.000000,0.000000,1.130579,0.000000,0.000000,1.111570,0.000000 -601319.355000,4612525.550000,2886,4305,149.190079,180.811569,158.183472,148.092560,129.216553,116.861176,117.125641,115.456215,116.051254,122.638031,117.770264,129.348785,146.695862,164.646271,179.340485,191.472717,191.373550,175.885941,153.629745,133.695892,122.786797,120.819855,114.563652,85.059525,67.332253,79.257874,90.266129,65.563660,28.824810,11.981009,10.414895,15.348778,9.640511,8.881833,9.127287,4.564469,0.671904,0.311572,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.123141,0.000000 -601331.355000,4612525.550000,2946,4305,116.070267,147.344635,153.195877,141.195877,127.931412,117.914886,116.501663,114.088440,114.658684,115.873566,118.485130,129.385956,146.518188,161.567780,175.551254,186.997528,188.171082,178.336380,153.815720,132.757858,123.171082,118.799187,112.609100,85.171082,67.410759,81.526459,90.931412,67.716545,29.584320,12.333900,10.237207,7.373563,7.025632,8.506626,8.250426,3.706617,0.540498,0.260332,0.136364,0.098347,0.080166,0.000000,0.209091,0.000000,1.023967,1.994215,0.000000,1.536364,2.919009,0.000000 -601343.555000,4612525.550000,3007,4305,111.555389,154.637207,151.571091,142.124802,126.447113,119.182648,117.562813,113.967773,114.562813,115.719841,118.538025,129.389267,146.587616,163.116547,176.290100,187.199188,187.794235,178.265305,154.323151,134.430588,123.042152,118.769424,113.463638,86.703316,67.612419,81.637199,91.967781,66.587624,29.695061,11.557869,10.314896,7.026458,7.823981,8.771089,9.615716,3.385956,0.721490,0.190083,0.176860,0.000000,0.037190,0.138017,0.000000,0.000000,1.082645,0.000000,0.976860,0.815703,0.000000,0.000000 -601355.755000,4612525.550000,3068,4305,106.738022,150.732224,154.170258,143.087601,128.476028,120.633064,117.963638,116.327278,116.790085,118.219841,120.161987,131.401657,148.128937,164.434723,178.004974,189.162003,190.566956,179.732239,156.509109,135.839661,124.153725,119.806618,114.418198,87.161995,69.649597,82.889267,92.277702,68.773567,29.922335,13.526464,10.401673,6.721498,8.210758,7.616543,9.852080,2.953725,0.266943,0.413224,0.244629,0.000000,0.164463,0.109091,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.783471 -601373.355000,4612525.550000,3156,4305,101.245461,151.128098,154.590912,141.533051,129.086792,120.880180,119.028938,116.103325,116.615715,118.161171,120.962830,130.648773,147.466949,163.574387,176.466949,188.169418,189.334717,179.169418,155.012390,133.648773,122.574394,118.623985,112.772743,85.185966,67.334732,82.400841,93.111588,67.764481,32.557873,13.221505,10.252085,6.195052,7.476046,8.034723,8.975221,2.695873,0.628101,0.001653,0.438844,0.014876,0.100000,0.067769,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,2.171074,0.000000 -601383.755000,4612525.550000,3208,4305,110.453735,150.081009,152.923996,144.246307,131.271088,122.188446,119.758690,118.271088,117.560349,119.378525,119.527290,130.676041,147.634735,164.031418,176.907455,187.651260,189.403336,178.965317,155.122330,133.320679,124.204971,119.180183,113.800018,86.502502,67.097542,82.163658,92.626457,67.915726,30.800018,12.630596,10.345473,6.402490,6.696707,7.148774,7.211583,3.284303,0.399175,0.940499,0.066942,0.000000,0.000000,0.140496,0.000000,0.000000,0.000000,1.038017,0.000000,0.000000,0.000000,1.850413 -601394.755000,4612525.550000,3263,4305,103.109100,149.576050,152.361160,143.088455,131.890091,121.972740,119.956207,118.096703,116.592583,120.237198,120.146294,130.898361,147.600845,163.278519,176.716537,187.278519,189.146286,178.840500,154.956207,133.542999,122.402496,119.179359,113.063652,85.435562,66.195885,81.584320,91.898361,68.981018,31.195885,12.134727,10.278532,6.025630,7.314888,8.338854,7.845466,2.224798,1.311573,0.504133,0.742150,0.272728,0.107438,0.019835,0.000000,0.018182,2.235538,0.000000,0.000000,0.787603,0.000000,0.000000 -601401.755000,4612525.550000,3298,4305,113.113243,159.239670,155.545456,147.380173,133.314056,121.595047,120.776871,118.504143,119.487610,122.545464,122.214882,133.363647,151.107437,166.479340,179.239670,189.347107,190.619827,180.438019,155.900833,134.123978,123.264473,119.471085,114.000008,85.223152,68.066132,80.644646,91.925629,71.057869,29.404976,12.096713,10.363655,3.834719,7.914061,9.172742,7.142988,3.261988,0.523968,0.087604,0.710746,0.133885,0.000000,0.130579,0.136364,0.276033,0.000000,0.000000,2.771075,0.000000,2.480992,0.000000 -601405.955000,4612525.550000,3319,4305,156.296707,185.850433,170.776047,161.643814,142.139694,131.800842,130.189270,127.643814,127.908279,135.205795,129.875214,140.850433,155.966141,174.230591,188.098373,200.635559,198.544647,184.718201,162.759521,142.164490,131.032242,128.255386,123.445465,94.437202,77.106621,90.990921,100.147942,70.990936,33.222332,15.103323,11.222333,13.071091,7.441337,8.302494,8.633072,4.603315,0.528100,0.115703,0.001653,0.066116,0.000000,0.016529,0.064463,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.555000,4612525.550000,3337,4305,130.323990,187.257858,169.042984,161.125626,142.390091,131.216537,130.183487,128.117371,128.662827,134.365295,129.943817,140.654556,156.340500,173.836380,188.059509,199.885956,199.084305,185.373566,161.960342,141.117371,131.200012,129.241333,123.200012,93.282654,77.654556,92.406624,100.200012,71.241341,35.059525,14.580183,11.200020,12.934727,10.222330,10.085965,9.423980,5.071911,0.783473,0.322315,0.135538,0.000000,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601414.955000,4612525.550000,3364,4305,116.185150,182.234726,170.226471,158.433060,143.209930,129.846313,129.011597,128.317368,128.209946,133.085983,129.623154,140.804977,157.647934,174.028122,187.738861,199.937210,199.590103,185.895889,162.590103,141.937210,130.623154,129.309113,124.400017,93.573570,77.738861,91.978531,99.647964,72.019852,36.234730,14.370267,11.309111,10.209932,9.649603,9.774395,10.606626,4.550423,1.151243,0.559505,0.307439,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.155000,4612525.550000,3380,4305,134.901672,183.901657,171.009109,157.868607,144.174393,129.529770,128.901672,127.587624,128.364487,132.199188,128.645477,140.042160,156.116547,173.785965,187.083481,199.314896,199.075226,184.802490,162.174393,142.810760,130.265305,127.992584,123.190933,92.918205,77.306633,90.141342,98.637215,71.504982,33.827293,15.213241,11.199192,11.478529,8.090098,8.876874,9.586792,3.498356,0.239670,0.317356,0.176860,0.000000,0.000000,0.000000,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.155000,4612525.550000,3400,4305,143.118195,179.911575,165.605774,157.432220,141.746277,127.911575,127.415703,125.754555,125.010750,130.448761,127.291740,138.886765,154.738007,172.498352,185.614059,197.779358,197.085144,184.126450,160.209076,139.242142,129.647110,125.465294,120.390915,91.052071,75.820679,89.300003,98.498352,68.985962,32.597542,13.509934,10.944647,8.555387,7.337207,6.447949,8.899188,3.079347,0.250414,0.111570,0.036364,0.000000,0.010744,0.000000,0.000000,0.000000,1.392562,0.000000,1.116529,0.000000,1.280992,0.000000 -601427.355000,4612525.550000,3426,4305,120.470268,177.676880,169.371094,156.693405,143.007462,129.420670,130.428940,128.875229,128.701675,130.685150,129.908279,141.594238,158.139694,175.519852,188.379349,200.346283,200.214050,187.271927,161.990921,141.825638,131.106628,127.800842,122.627289,95.164474,77.461998,91.304970,100.759521,73.875221,34.652084,13.809110,11.147954,10.847122,9.257867,9.946299,10.463653,4.946291,1.105787,0.425620,0.112397,0.004132,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.355000,4612525.550000,3446,4305,104.161171,174.648773,166.971085,155.681839,141.830597,129.417358,128.797531,127.334717,126.739677,130.359512,129.260345,139.772751,157.111588,174.690094,187.491745,199.177704,198.623978,186.070267,161.871918,141.078522,129.830582,126.979347,123.136375,93.524803,76.508278,89.681824,99.880173,71.805801,32.541344,13.073569,11.194234,8.548774,8.853735,9.969438,10.462000,3.555381,1.000002,0.276034,0.076033,0.002479,0.000000,0.221488,0.000000,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601434.955000,4612525.550000,3464,4305,114.317375,172.912415,167.209930,157.152084,140.152069,129.499191,129.738861,127.714058,126.714066,131.375214,129.242981,140.714050,158.028122,174.788452,187.300842,199.267792,199.623154,186.606628,163.548782,142.176865,130.714066,128.829758,123.218201,93.920677,76.871094,90.226463,100.672745,71.953735,33.383488,12.857042,11.201672,9.078526,9.551256,7.807454,10.150430,4.339679,1.016531,0.141323,0.170249,0.116529,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601438.155000,4612525.550000,3480,4305,107.105797,171.345459,165.907440,154.973557,140.006622,129.353729,128.692566,126.304138,126.213226,129.023148,128.428101,140.023148,158.262817,174.957031,186.601654,198.618195,199.171906,187.527283,163.634720,142.634720,130.709091,128.345459,122.981827,92.271080,77.593391,88.981827,100.180168,72.238029,33.923988,13.982661,11.180182,9.824808,7.862000,7.944643,7.536377,4.204141,0.514878,0.115703,0.242150,0.000000,0.013223,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.755000,4612525.550000,3498,4305,115.659523,171.659515,167.056198,156.692566,141.692566,130.386795,130.064484,127.428116,126.535553,129.973572,129.039688,140.609924,157.485962,175.213226,187.965302,199.990082,199.750427,188.907440,164.419846,141.171906,132.180176,128.403320,122.709106,93.196709,77.419846,90.362000,100.477699,72.709114,33.609940,15.363654,11.155392,9.506626,9.331422,8.548776,9.088446,3.655380,0.230579,0.155372,0.112397,0.000000,0.902480,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.355000,4612525.550000,3541,4305,110.156212,170.073578,167.205811,155.156219,140.346298,130.296707,128.792572,126.726456,125.974388,129.503311,129.478531,139.842163,157.652084,173.214066,186.486801,197.445465,198.131409,186.238861,161.718201,140.131424,129.685135,126.957863,121.627281,93.073563,76.090096,89.081833,100.544640,71.900017,33.842167,13.400018,11.057044,8.745468,7.623158,8.560346,8.628115,3.533066,0.270249,0.398348,0.116529,0.109091,0.064463,0.000000,0.015703,0.061984,0.000000,0.000000,1.132231,0.000000,0.000000,0.000000 -601455.955000,4612525.550000,3569,4305,125.065300,168.040512,165.718201,155.908279,142.205795,131.065308,129.197525,127.602493,127.676872,129.214066,129.643814,141.619019,159.445480,175.263657,188.255386,199.990921,200.602493,188.668610,164.569443,141.503326,131.784302,127.974388,124.263649,94.106628,77.197540,91.346298,101.453728,73.792580,34.966137,14.675224,11.296713,9.682657,9.222329,9.458694,11.363650,4.363646,0.812399,0.141323,0.112397,0.145455,0.045455,0.000000,0.000000,0.234711,0.000000,0.000000,0.000000,2.054546,0.000000,0.000000 -601458.755000,4612525.550000,3583,4305,121.420670,168.875229,167.924820,156.685150,142.354568,131.106628,129.635559,128.536377,128.569443,130.214066,130.941345,142.594238,160.346298,176.313248,188.982666,201.511597,201.255386,189.147949,165.602493,142.742996,132.288452,129.891754,123.536385,94.866951,78.313240,91.048775,101.569435,74.114899,36.850433,13.812415,11.230597,9.185965,9.554561,10.752910,8.854559,3.477695,1.025622,0.199174,0.115703,0.128099,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,1.568595,0.000000,0.000000,0.000000 -601462.555000,4612525.550000,3602,4305,121.690926,165.170242,166.484299,154.575241,140.319016,128.839676,128.600006,126.352081,125.765305,127.319023,129.128937,138.476044,157.401672,174.062805,186.459503,198.352066,198.905777,187.492554,163.013214,140.872742,130.327286,127.434723,122.418198,93.442986,76.079353,89.013237,99.401665,72.674393,34.492580,12.617373,11.128943,9.200014,8.477701,7.911586,9.200841,3.316537,0.577687,0.328926,0.067769,0.109918,0.001653,0.000000,0.000000,0.000000,0.000000,1.242149,1.065289,0.000000,0.000000,0.000000 -601466.155000,4612525.550000,3620,4305,119.261169,168.170258,165.666107,156.707458,141.633072,130.319016,129.847946,128.029770,127.054558,129.641342,130.054565,141.327286,159.476028,175.732224,188.699173,200.071075,200.294205,189.104126,163.814880,142.393402,131.442993,127.773567,123.236374,94.715714,77.509109,91.442993,100.872742,72.905807,34.542171,15.656218,11.203324,7.557037,8.463653,9.365304,9.357865,4.139678,0.789258,0.435538,0.178513,0.125620,0.009091,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.955000,4612525.550000,3639,4305,128.090927,167.247955,166.611588,155.892563,140.512405,131.314072,129.148788,127.586800,127.867790,128.099197,130.041351,140.909103,158.859497,175.512390,189.033051,199.363632,200.785126,189.256195,164.314072,142.677689,131.752090,130.487625,123.545479,94.752090,76.884323,91.983498,103.504158,74.438042,32.842995,12.910762,11.231424,7.828111,9.157869,8.609108,8.833073,4.213231,0.746282,0.245455,0.057851,0.398348,0.000000,0.142975,0.000000,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601472.755000,4612525.550000,3653,4305,108.438858,166.628937,166.513229,155.438858,141.463654,131.000839,130.166122,127.785965,128.777695,129.190918,131.232239,142.521500,160.628937,175.769440,189.141342,200.612411,201.736374,189.703323,165.504974,143.521500,133.612411,130.967789,125.100014,96.496704,78.546303,90.785965,102.108276,75.223991,34.347954,14.981835,11.372746,9.602492,10.234727,11.184315,8.408279,5.033067,0.348762,0.270249,0.832234,0.075207,0.141323,0.147108,0.000827,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.355000,4612525.550000,3671,4305,110.656219,159.499191,163.565308,151.730591,138.325638,128.540512,127.474388,125.532242,125.028107,126.763649,128.119019,139.474411,157.152084,173.755371,186.201660,197.838013,197.995041,186.829758,162.895889,141.019867,130.804977,126.747116,121.036377,92.978523,75.656212,89.019844,100.705795,71.284309,31.540518,11.643820,11.003325,7.095053,6.757868,7.204975,7.751254,2.773561,0.119009,0.335538,0.080992,0.000000,0.000000,0.000000,0.000000,0.112397,1.280165,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.155000,4612525.550000,3700,4305,121.690094,166.938049,166.194244,155.086792,142.632233,131.896698,129.921494,128.177689,127.690094,129.293396,131.260345,141.896698,159.607452,175.954559,189.797546,200.037216,201.491760,189.781021,165.227310,144.409088,131.144638,129.144638,124.045464,95.359512,77.566124,91.243813,102.673561,73.169426,35.243816,14.977704,11.276878,7.202491,8.509933,8.905801,9.112410,5.426456,0.855374,0.000000,0.247108,0.589257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.555000,4612525.550000,3722,4305,119.312416,163.618195,167.717361,155.320663,141.742157,133.304153,130.643005,128.667786,128.552094,129.915726,132.238037,143.080994,160.328934,177.089264,190.981827,201.676041,202.105789,191.221497,166.948761,144.758682,134.395065,130.626465,125.254570,96.452911,78.031425,92.601677,102.866135,75.081017,36.667786,15.832249,11.386795,7.172740,10.157868,9.726461,9.806626,4.718190,0.804961,0.088430,0.234711,0.056199,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.955000,4612525.550000,3744,4305,105.992592,162.808289,167.700851,155.676056,141.485977,132.031433,129.568619,127.510765,126.684319,129.337219,131.105804,142.213242,160.155396,176.014893,189.130600,200.295883,202.676056,189.957047,165.535553,143.105804,132.254562,129.337219,123.163658,94.477707,77.543823,91.800026,102.725639,73.824821,34.560349,15.217374,11.196712,7.558690,8.828941,8.850429,8.066957,4.495051,1.552895,0.042975,0.172728,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.987603 -601500.955000,4612525.550000,3794,4305,103.229767,156.271088,163.775208,153.998352,140.147110,130.923981,128.791748,127.386780,127.097527,129.485962,129.080994,140.725632,159.097534,174.965302,188.089264,200.204971,201.072739,188.874390,164.097534,141.899185,131.403305,127.742157,123.163643,93.023148,76.915718,91.279343,100.634720,73.485962,34.990105,13.041340,11.196712,6.177698,7.514066,8.933074,9.278527,2.501660,0.866118,0.175207,0.223968,0.115703,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.227273,0.000000 -601505.155000,4612525.550000,3815,4305,107.251259,157.466141,165.804977,155.400024,141.838043,131.581833,130.267792,129.424820,129.358704,129.606628,131.953735,142.366959,161.152084,176.838043,189.953735,200.631424,201.639694,191.697540,165.838043,144.127289,134.292587,130.011597,125.400017,95.813240,77.887619,93.424812,104.300842,74.838036,36.540516,14.862002,11.400020,9.413237,9.166133,9.520678,8.420673,4.348771,0.656200,0.345455,0.000000,0.057025,0.000000,0.000000,0.056199,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.555000,4612525.550000,3832,4305,117.741341,161.642136,164.584290,156.633881,139.551254,132.385971,130.369446,128.890106,128.609116,131.592575,131.171097,143.047119,161.881805,177.642151,191.319839,202.385956,202.881821,191.171082,167.402466,145.278519,133.576050,130.460342,126.518196,96.642166,79.352913,93.625641,103.600845,75.700020,35.790928,14.507456,11.501672,8.086789,9.362827,8.877702,8.970263,3.743810,1.004961,0.061984,0.061984,0.065289,0.000000,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.955000,4612525.550000,3854,4305,100.837204,157.879349,166.672729,154.656204,141.598373,131.763641,130.085968,127.895882,127.937202,129.218201,131.069427,142.234726,160.796692,176.168610,190.441315,200.714035,201.920654,191.581802,166.251236,144.590103,132.705795,129.771912,124.945465,94.515717,77.358704,92.300835,103.201668,75.375229,34.532249,15.060349,11.358698,6.600839,8.445470,8.024808,8.133897,3.111577,0.860332,0.135538,0.214877,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.755000,4612525.550000,3883,4305,111.323158,166.000839,163.852081,154.471909,140.736374,131.711578,129.653717,128.959503,129.058685,131.273560,131.819016,143.323151,160.967789,177.926453,190.918198,201.951248,203.042160,191.422333,167.108276,145.042160,134.033890,131.397522,125.100006,95.628929,78.124817,94.438850,104.248772,76.339691,34.843822,14.597537,11.372746,7.539682,7.088446,8.582661,8.295881,3.335546,0.476861,0.111571,0.050413,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.995868,0.000000,0.000000,0.000000 -601522.955000,4612525.550000,3904,4305,102.662003,157.339661,163.133072,154.083466,140.810745,130.405792,128.124802,127.620674,127.331421,128.554565,131.513245,142.166107,160.298355,176.414047,190.628937,200.984314,202.471909,190.347946,166.653732,143.141312,132.455399,130.290100,125.009102,95.141342,77.281837,92.356216,101.843811,74.364487,34.876881,13.299191,11.364482,6.342161,8.281835,7.887618,7.467783,3.467776,0.671903,0.407439,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.955000,4612525.550000,3919,4305,120.446297,164.838013,167.714050,159.548767,142.697540,134.011597,132.044647,130.011581,130.011597,132.366959,133.697540,144.482651,162.168594,179.309113,193.854568,203.457870,205.672745,193.300842,167.705795,145.590088,135.143814,131.829773,127.036377,98.548775,79.242996,93.309105,105.606621,77.647957,36.771919,14.893406,11.548779,9.078525,10.116547,7.283487,8.719849,4.791745,0.785126,0.534712,0.229753,0.193389,0.065289,0.000000,0.000000,0.199174,1.225620,1.250413,0.000000,0.000000,0.000000,0.000000 -601529.155000,4612525.550000,3935,4305,116.659515,158.380188,162.719025,156.008286,142.677704,133.925629,131.471085,128.851257,128.942169,130.801666,132.652908,144.024811,161.942169,178.380188,191.487625,202.694229,203.842987,192.231415,167.297531,145.553741,133.396713,131.074402,124.727287,96.438034,77.710762,92.818199,104.033073,74.578529,35.033077,14.742992,11.338862,6.927282,7.728114,8.426461,7.989269,3.369430,0.608266,0.000000,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.755000,4612525.550000,3953,4305,121.035553,160.233887,165.820663,154.853729,144.035538,132.341339,130.696716,129.209106,128.523148,130.870270,132.291748,143.085129,160.688431,177.804138,191.423981,201.481827,203.076859,190.961166,167.597534,144.159515,132.275223,128.564484,123.845467,94.895058,77.308281,93.159515,103.415726,75.209106,35.390930,13.975224,11.258697,6.897533,8.380180,6.782659,7.876047,3.720670,0.585952,0.000000,0.183472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.155000,4612525.550000,3975,4305,124.474380,165.226456,167.912399,156.408264,142.358704,132.631409,130.771912,129.730576,129.730576,131.284302,132.904129,144.168594,162.424789,179.019836,192.515701,202.920670,204.110748,192.681000,167.796692,144.962006,134.143799,130.077682,126.218185,96.209923,78.697540,93.259506,104.714050,75.763657,36.077705,13.887622,11.474399,6.603318,7.702496,9.139686,8.885965,3.350421,0.901654,0.096695,0.206612,0.000000,0.011571,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,1.009091,0.000000,0.000000 -601541.355000,4612525.550000,3996,4305,104.537209,163.057861,168.909103,156.809937,143.380203,135.380188,131.876038,130.148773,130.694229,132.462814,134.008270,144.231415,163.743820,179.611572,193.842987,203.512405,205.223160,193.727295,169.347122,146.107452,136.157043,130.900833,127.272736,97.611595,77.396706,94.495880,104.942169,76.330589,36.611588,15.333901,11.570266,6.330590,7.688447,8.934727,8.624808,3.108272,0.297522,0.126447,0.075207,0.000000,0.000000,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,1.009091,1.235537,0.000000 -601546.355000,4612525.550000,4021,4305,108.042160,162.967789,168.182663,157.860336,146.000839,135.496704,132.463654,131.331421,131.711578,133.455383,135.538025,146.686783,163.926453,181.389252,195.455368,205.281815,206.562805,196.009094,170.744644,147.976044,136.744644,132.918198,128.554565,98.562820,79.628937,94.356209,105.356209,79.050423,38.405807,16.384315,11.686796,6.326458,8.038858,9.891752,9.593403,3.470256,0.740497,0.050413,0.133885,0.001653,0.029753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.355000,4612525.550000,4091,4305,126.918198,164.901672,165.513229,158.223984,144.794235,133.108276,130.083481,130.579346,129.802490,133.240509,133.397537,145.769440,162.761169,179.257034,193.381012,204.306610,204.976028,194.711578,168.976044,146.017365,134.942993,132.058685,125.736366,97.108276,77.967781,94.298363,104.232246,76.389267,33.852089,13.466959,11.430597,5.444636,7.900014,8.010757,10.195056,3.236371,0.824796,0.363637,0.000000,0.045455,0.228926,0.000000,0.019835,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.755000,4612525.550000,4113,4305,118.892578,171.272751,168.925613,159.214874,145.504150,134.520676,133.016541,130.776871,130.652893,133.537201,135.090912,146.090927,163.198349,181.256210,194.487625,205.917374,207.537201,196.355392,169.578506,147.785126,136.132248,132.380173,127.000008,98.066132,79.049606,93.264481,104.661171,76.752083,35.801678,13.883490,11.545474,5.804143,9.055389,8.035552,7.569433,3.490093,0.418183,0.066116,0.061157,0.000000,0.004132,0.000000,0.000000,0.064463,1.347934,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.555000,4612525.550000,4152,4305,121.357033,168.935562,167.836395,161.365311,146.803329,136.877716,134.935532,132.795044,133.009918,136.514053,136.332260,148.274399,164.712418,183.051270,197.224823,207.952072,209.249603,199.001678,172.398376,150.109116,137.596725,135.109100,129.018188,100.109100,80.885963,94.323975,108.514053,79.274391,37.563656,15.581009,11.728946,6.280176,8.870262,8.696710,9.097536,3.995048,0.934712,0.630580,0.256199,0.250414,0.038017,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612525.550000,4166,4305,108.864494,165.426453,170.186783,160.021500,147.451248,137.228119,135.608276,134.401672,133.988449,137.666122,137.525635,148.723984,166.591751,183.451248,197.839676,208.955383,208.798355,199.500839,174.128937,149.765305,138.236374,135.004974,130.509109,99.790100,81.765305,95.955399,107.062828,79.219849,38.847950,17.428946,11.864482,6.839681,8.517371,9.262000,8.138032,2.489262,0.895870,0.043802,0.236364,0.010744,0.056199,0.000000,0.066116,0.000000,1.414876,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.155000,4612525.550000,4185,4305,133.839676,171.798355,170.385132,162.120667,147.723984,136.013229,134.095886,133.690933,132.889282,135.881012,136.509109,147.079346,164.690918,182.269440,195.616531,207.178513,208.335541,197.079330,171.600006,148.823151,137.583481,132.476059,129.054565,98.591751,80.186798,94.657875,106.500839,78.484322,35.980186,16.676052,11.732250,5.471908,8.573569,7.557867,8.463651,3.191741,0.276860,0.126447,0.000000,0.000000,0.049587,0.000000,0.027273,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.955000,4612525.550000,4209,4305,115.639687,173.738861,172.838013,163.383469,148.970245,136.904144,134.614899,133.738861,132.945480,136.763657,136.548767,147.937195,165.424789,183.309097,196.557022,207.309097,208.383469,197.540497,170.449585,148.127274,136.474396,133.234726,127.127289,99.309105,78.912415,93.077698,106.548782,80.028122,37.482662,14.516547,11.557044,5.366126,7.892578,7.522329,7.676872,2.893397,0.228100,0.497522,0.000000,0.018182,0.000000,0.000000,0.100827,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.755000,4612525.550000,4223,4305,123.966957,183.719025,171.190094,162.842987,149.148773,136.760345,135.247955,134.008286,132.851257,137.090927,135.727295,148.099182,164.289276,183.082657,196.876038,208.231415,208.132233,197.752060,172.057861,148.553741,138.272751,132.380188,129.000015,98.256218,80.148773,94.710762,106.223160,79.355385,36.413242,16.514894,11.727292,6.274391,10.775222,8.178527,9.076048,3.511578,0.812399,0.409091,0.401654,0.000000,0.275207,0.000000,0.047108,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.755000,4612525.550000,4253,4305,130.966125,183.090088,176.585953,165.280182,151.238846,138.090088,137.362823,135.395874,134.685135,138.428925,138.181000,148.776031,166.552917,184.040497,198.023987,208.139679,208.610748,197.635559,171.883469,149.784302,138.015701,134.395874,127.900009,101.081833,80.701675,94.652077,107.875221,80.263657,37.511593,16.857870,11.627292,7.403319,10.004973,9.939683,9.896710,4.509098,0.771903,0.287604,0.249588,0.018182,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.555000,4612525.550000,4267,4305,123.861176,167.919037,170.935562,158.695892,145.307465,134.067780,132.497543,129.852905,129.580185,129.993408,130.993408,142.671097,160.828125,177.580185,189.307465,199.778534,201.762009,188.497543,163.571930,142.290939,130.398361,128.811584,123.109108,93.671089,75.861176,89.365311,101.274399,72.596710,34.233074,13.789273,11.191753,8.762822,7.829767,8.209105,8.641336,2.401659,0.258679,0.180166,0.050413,0.130579,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.955000,4612525.550000,4284,4305,117.343826,173.104141,172.955383,162.120667,145.600006,135.062820,134.128937,131.525635,130.773560,131.996704,133.467789,144.046295,162.418198,178.079346,191.409927,201.624802,202.971909,190.806625,164.881012,143.550430,132.112411,130.434723,124.963646,95.798363,79.054565,91.004974,102.723976,75.484322,33.781837,16.374399,11.360350,8.045469,8.047121,10.304974,9.656215,3.663644,0.760332,0.318183,0.320662,0.057851,0.000000,0.000000,0.000000,0.100827,0.000000,5.530579,0.000000,0.000000,0.000000,0.000000 -601602.155000,4612525.550000,4300,4305,123.254555,171.626465,172.816559,160.163666,146.411591,133.990082,133.147110,130.502487,129.833069,131.204971,132.667770,143.800018,161.899200,178.717377,190.196716,201.808289,201.618210,190.733902,164.419861,141.279358,132.502487,129.651245,123.345459,94.436371,78.692566,90.634720,101.386780,74.667786,33.940517,15.527291,11.213242,9.957867,8.104974,8.185138,9.266129,4.284307,0.866118,0.385952,0.051240,0.000000,0.109091,0.000000,0.071901,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.755000,4612525.550000,4318,4305,120.438026,177.570267,170.396713,159.652908,144.661179,133.363647,131.983490,129.033066,128.933899,130.471085,131.090912,141.933899,160.066132,176.256210,188.090927,199.652908,199.702499,185.917374,161.942169,139.900848,130.016541,127.694221,122.272743,92.082664,75.900841,88.917374,100.611588,71.487617,34.768612,13.444646,11.115722,8.593403,7.450425,6.827284,6.558692,3.076040,0.509919,0.238017,0.080992,0.256199,0.008265,0.000000,0.022315,0.341323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.755000,4612525.550000,4338,4305,121.177696,177.334732,171.541336,162.351257,144.946320,133.590927,133.334732,130.731415,129.706635,131.822327,131.458694,143.425659,160.475220,177.698364,190.144638,201.871918,200.417374,187.268616,162.805801,141.219040,130.714890,128.004150,121.954552,93.185959,76.657036,89.615707,101.714882,72.971085,35.351261,15.281837,11.086796,7.852079,7.978527,7.147120,9.781006,4.059513,0.657853,0.130579,0.000000,0.000000,0.000000,0.000000,0.105786,0.056199,0.000000,0.000000,0.000000,2.328926,0.000000,2.214876 -601615.755000,4612525.550000,4368,4305,115.902496,181.852890,172.514038,162.629745,147.373550,134.985138,135.431412,131.439682,131.596710,133.191757,132.770264,144.406601,163.191727,178.836365,191.588425,201.580154,202.828094,188.679337,163.687592,142.266113,131.183487,128.348785,123.109108,92.869446,77.257866,89.687622,101.332260,74.596710,34.819862,14.161175,11.191754,11.522331,9.029766,8.460343,8.675220,3.479345,0.914878,0.358679,0.092562,0.122314,0.000000,0.000000,0.004132,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.955000,4612525.550000,4384,4305,113.053734,173.774384,170.443817,161.014053,148.957870,136.338043,135.503326,132.361176,132.005798,135.195892,134.055405,145.113251,162.983490,179.719025,192.404968,202.537201,201.900848,188.388443,162.578522,142.504150,131.198364,128.115723,122.545471,94.885979,77.687630,90.066139,101.140518,72.991760,34.753738,14.973571,11.140515,11.851256,9.334724,9.749600,12.160347,4.445463,1.568598,1.322316,1.416530,1.285951,0.688430,0.018182,0.004132,0.154546,0.000000,0.000000,0.832232,0.000000,0.000000,0.000000 -601621.955000,4612525.550000,4399,4305,132.040512,180.304962,173.238846,162.098343,147.652069,134.594223,134.238846,131.594223,131.362808,133.304962,132.098343,144.280167,160.131409,177.833893,190.660339,200.544632,199.924789,185.685120,161.883469,140.156204,130.098343,127.238846,121.354568,92.164482,75.676880,88.643822,100.222336,71.999191,33.990929,12.623157,11.032249,7.875218,7.621500,8.414887,7.966129,3.332241,0.590911,0.000000,0.231405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.355000,4612525.550000,4416,4305,128.462006,186.800842,174.767792,163.660339,146.726471,134.519867,134.255402,132.470261,131.982666,134.412430,133.114899,144.619034,161.957855,178.230591,190.883484,201.709930,199.900024,185.900024,161.230576,140.338043,129.809113,126.842171,122.081841,92.908287,75.742996,88.957870,99.957870,72.280182,34.561176,14.646298,11.098367,8.738857,7.760345,7.365301,8.199185,4.025629,0.424795,0.000000,0.042149,0.000000,0.000000,0.000000,0.261157,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.355000,4612525.550000,4436,4305,122.958687,183.090927,164.429764,159.297531,144.950424,133.479355,131.785141,129.925629,128.834732,131.520676,130.181839,140.942184,157.768616,174.859543,187.991745,199.214890,198.884308,184.950424,162.289276,142.900864,133.446304,131.190094,126.272743,98.297531,80.281013,92.099182,104.776878,75.396721,35.157040,14.752085,11.479357,9.892578,8.643816,8.437202,9.331421,4.263646,0.796696,0.645456,0.003306,0.065290,0.000000,0.000000,0.143802,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.155000,4612525.550000,4450,4305,128.008270,194.595047,176.462814,167.768600,147.801651,133.371902,134.272736,132.884308,131.859512,135.008270,132.190094,143.776855,161.619827,178.909088,190.628098,201.561981,199.016525,185.545456,163.115707,140.776855,128.991745,126.520668,121.363647,92.148773,75.942169,89.595055,98.214897,71.727295,33.545471,15.075226,11.033077,11.521504,8.205798,9.544643,9.119021,3.804966,0.719010,0.391737,0.412398,0.140496,0.062810,0.000000,0.085951,0.000000,0.000000,1.423967,0.000000,0.000000,0.000000,0.000000 -601635.155000,4612525.550000,4465,4305,130.171906,187.535538,177.295868,166.337204,148.866119,134.866135,134.552078,132.122330,133.510757,137.047958,133.328934,144.800003,160.882645,179.576859,191.039673,201.452896,201.543808,184.056198,162.395050,140.659531,129.998367,127.221504,123.527290,92.857864,77.155388,91.271088,101.899185,73.733902,35.155388,14.502498,11.229772,11.616546,8.058693,8.552908,8.323980,4.281000,0.791738,0.190083,0.250414,0.116529,0.015703,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.155000,4612525.550000,4495,4305,152.199188,200.612396,176.372726,169.752899,150.860336,138.017380,138.199203,134.711594,136.050430,140.612427,136.637222,147.620667,163.372742,180.347931,194.025620,205.356201,201.959503,186.075211,163.579346,142.719864,131.405807,128.810760,123.281845,93.273575,78.562828,93.934731,101.653740,73.488449,35.017372,16.047127,11.207458,10.161999,8.171087,9.211583,8.352079,3.842983,0.746283,0.000000,0.432233,0.000827,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.755000,4612525.550000,4513,4305,153.148773,204.909088,182.214890,171.264481,154.586777,139.421494,138.297516,137.520660,136.669418,142.008270,136.033051,148.231400,164.132233,181.578522,193.793396,203.925613,203.107437,186.702484,163.041321,143.338837,132.396698,129.942154,124.000008,94.380180,79.338860,93.702484,102.454559,74.644653,38.446301,16.979357,11.272746,13.427289,9.013237,9.700015,7.488444,6.102489,0.976036,0.228927,0.257852,0.000000,0.000000,0.000000,0.061157,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.355000,4612525.550000,4546,4305,151.083481,190.653732,178.364471,170.058685,150.852081,137.381027,135.785965,134.777695,134.579346,139.628952,135.017380,146.628937,163.100006,179.628937,192.504974,202.909927,199.653732,185.447113,163.083481,142.133087,131.265305,128.901672,123.009102,93.017365,79.141335,92.100021,102.000839,73.686790,37.471920,15.228944,11.182664,11.202496,10.408278,9.867783,9.643818,3.983478,0.655374,0.607440,0.253720,0.067769,0.119008,0.006612,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.755000,4612525.550000,4563,4305,128.766144,164.443832,169.394241,159.262009,143.377716,134.766144,130.939697,130.171097,129.452087,130.427292,131.592590,142.542999,160.526474,175.476883,188.493393,197.799179,196.592575,184.708267,160.526474,138.609116,128.658707,125.452095,120.154572,92.088455,75.724823,90.344650,101.154572,73.485153,35.443821,14.232248,10.923160,6.944641,8.371912,7.795054,8.881834,3.634718,0.668598,0.447109,0.000000,0.000000,0.000000,0.000000,0.141323,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.555000,4612525.550000,4577,4305,107.500015,166.490906,170.730576,159.763657,145.887604,133.656219,132.168610,130.358704,130.160355,131.887619,132.780182,142.788437,162.143814,176.854553,189.251236,198.747116,197.168594,186.119019,159.829773,139.300827,129.581833,125.209938,120.854568,92.738861,75.234734,91.036385,103.284317,74.383492,35.829769,14.906631,10.986795,8.818196,9.039685,10.038857,9.635553,5.404141,0.645457,0.434712,0.335538,0.191736,0.000000,0.000000,0.000000,0.328100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.355000,4612525.550000,4591,4305,115.151260,168.093414,171.622330,159.151260,143.961182,134.101669,132.622330,130.944641,129.547943,132.085144,132.457047,143.374405,160.605804,176.423996,188.159531,197.572754,198.085144,186.266968,161.225647,139.019028,129.994232,127.283485,120.118195,92.250435,75.523163,90.704979,101.052086,72.895065,35.862003,15.369440,10.919854,6.906624,10.157039,8.603318,10.441337,3.998356,0.704134,0.091736,0.251240,0.000000,0.001653,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.555000,4612525.550000,4627,4305,97.574402,165.326447,171.623962,159.690079,146.012390,135.714890,134.590927,131.673584,132.103333,132.533081,133.805817,144.549591,162.227280,177.590912,190.615707,199.235535,198.921494,186.342972,162.491730,142.037201,130.508286,127.169441,122.954559,94.640518,76.954567,91.012413,102.880180,76.541344,38.004158,15.743821,11.177706,9.166957,10.116543,8.596708,10.247124,6.243812,1.264465,0.419010,0.453720,0.166942,0.115703,0.009918,0.092562,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.355000,4612525.550000,4641,4305,112.380180,163.856201,170.112396,160.054535,144.814880,134.715714,132.765305,131.062820,130.806625,131.872742,133.128937,144.046280,161.955368,177.558670,189.980164,199.674377,199.244629,186.938843,161.707428,140.294205,129.550430,126.029762,121.600014,93.484314,76.401665,90.476044,101.170258,74.319023,35.988449,15.210761,11.054564,7.207450,7.936376,9.045467,10.000014,4.083479,0.942152,0.414877,0.230579,0.000000,0.238017,0.000000,0.000000,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601673.955000,4612525.550000,4659,4305,111.612411,168.124786,171.207428,159.240494,144.843796,135.959518,132.009109,129.959518,129.711578,130.587616,132.942993,143.273560,160.612396,176.050415,188.232224,198.397522,198.711563,186.380981,161.314880,139.926453,128.909927,126.124809,120.918198,92.000839,74.637199,89.455383,100.728111,73.513237,35.182671,13.676050,10.992582,6.406623,7.713237,9.321502,7.167784,4.092571,0.504961,0.263637,0.156199,0.000000,0.000000,0.019835,0.051240,0.000000,1.347108,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.355000,4612525.550000,4676,4305,104.742996,164.685150,167.957870,158.676880,144.329773,134.255386,130.891754,130.156204,129.842163,130.585968,132.594223,141.957870,160.462006,175.263657,187.404144,197.222336,196.296707,185.362823,161.338043,138.933075,128.147949,125.792572,118.718193,92.652077,75.048782,89.643814,100.734718,73.007454,34.809109,14.581837,10.792582,5.279350,7.667782,8.862823,7.782660,3.879347,0.995870,0.158679,0.132232,0.000000,0.000000,0.000000,0.000000,0.094215,0.000000,1.190909,0.000000,0.000000,0.000000,0.000000 -601682.555000,4612525.550000,4702,4305,103.954559,166.834732,168.438034,158.859528,144.776871,133.231415,130.776871,128.909103,128.950424,130.752075,131.487625,142.231415,160.438034,175.454559,188.487625,197.421509,197.173569,185.710754,160.752075,139.016541,129.570267,125.561996,120.545471,93.223160,76.347122,90.710762,101.983490,74.066132,35.487625,14.823985,10.958697,6.738855,7.851254,7.427286,8.000839,2.448766,0.347935,0.122315,0.038843,0.000000,0.000827,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.155000,4612525.550000,4735,4305,106.582649,163.888428,169.384293,160.309921,146.590927,138.103317,134.623978,133.574402,132.888443,133.086792,134.954559,145.880188,162.962814,178.673538,191.169403,199.863617,200.442139,188.533035,162.954544,141.483490,131.475220,127.979347,122.772736,94.739677,78.028938,93.640503,103.020668,75.938034,38.855392,16.572746,11.161176,7.726460,7.866954,8.499187,10.009934,3.565298,0.788432,0.645456,0.128099,0.504133,0.000000,0.014876,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.755000,4612525.550000,4753,4305,112.637192,162.934723,166.595886,157.323151,144.942993,135.728119,132.992569,130.686783,131.017365,132.356201,132.852066,144.174393,161.562820,177.314896,190.695053,199.190918,198.298355,186.612411,163.166122,140.835556,129.868607,126.661987,121.100006,94.331429,77.232254,90.091759,102.157867,74.785973,37.116547,15.851258,11.009109,7.488443,7.322326,8.307452,6.918195,4.128934,0.582647,0.288431,0.000000,0.000000,0.224794,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.155000,4612525.550000,4770,4305,113.254570,162.006622,172.287613,162.709091,146.593399,136.890915,135.965317,131.659515,132.279358,133.047958,134.353745,144.800003,163.180176,178.973557,192.337204,201.411575,200.477692,187.733887,163.915710,141.395050,130.824814,128.023148,123.163651,94.403328,77.494240,90.609940,102.006638,75.899193,36.791759,15.893409,11.196713,6.381004,8.135551,7.985136,9.561172,4.585959,1.054548,0.385125,0.310744,0.000000,0.031405,0.000000,0.000000,0.382645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.955000,4612525.550000,4794,4305,99.800018,163.598373,169.342148,158.499191,145.681015,134.499191,132.127289,129.962006,130.449600,131.995056,134.019852,143.771927,160.821503,176.780167,189.664490,198.912415,199.110748,186.697525,161.730591,138.738861,129.689270,126.664474,120.218193,91.375229,75.011589,89.185143,100.953728,72.763657,34.386795,13.308281,10.928945,4.763647,7.239684,8.601667,8.496708,3.811578,0.843804,0.448761,0.953720,0.147108,0.233059,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612525.550000,4813,4305,119.690094,163.987610,169.657028,159.268600,144.623962,136.450424,131.946289,131.252075,130.747940,133.359512,134.814056,145.276855,161.979340,178.549591,191.136368,199.623962,199.648758,188.260330,163.491730,142.095047,130.475220,127.037201,121.863647,94.838867,77.351265,91.111595,102.822342,75.549606,36.714901,14.964481,11.078531,6.702490,8.085138,8.920675,8.197535,3.222320,0.628101,0.146281,0.000000,0.000000,0.000000,0.000000,0.047934,0.055372,0.000000,0.000000,4.247934,0.000000,0.000000,0.000000 -601712.155000,4612525.550000,4850,4305,109.486794,157.660355,165.883484,155.585968,140.387619,131.569427,129.354553,126.916542,128.668610,131.660339,131.800842,143.288452,159.742996,176.437210,188.660355,197.057037,197.247131,186.412415,161.395889,140.462006,130.519852,125.321510,122.627289,93.924805,77.255394,92.313232,103.156219,75.065308,35.238861,15.285142,11.147953,4.419018,8.242988,7.590922,7.994229,4.185132,0.970249,0.408265,0.023141,0.000000,0.074380,0.043802,0.076860,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.155000,4612525.550000,4865,4305,118.890923,170.452896,168.725616,160.940506,147.238022,136.560333,134.775223,133.246292,132.882660,133.378525,135.642975,145.419846,162.304138,178.428085,190.833054,200.824783,199.485947,187.651230,164.122314,142.485962,130.552078,128.122330,122.709106,95.056213,77.593407,91.138855,101.370262,75.791756,36.568615,14.664481,11.155392,6.795879,7.879353,7.765304,6.798359,4.484306,0.981820,0.334712,0.000000,0.000000,0.000000,0.162810,0.000000,0.052893,0.000000,0.000000,0.000000,1.007438,0.000000,0.000000 -601719.355000,4612525.550000,4886,4305,110.485138,171.964478,172.005798,163.757858,147.328110,137.162827,133.567780,132.741333,131.261993,134.832245,135.501663,145.658691,162.336380,178.848770,191.055374,199.237198,198.559509,187.733063,164.658691,141.419022,130.584305,126.956207,122.427284,95.286789,77.038864,91.113243,102.815712,76.848778,37.047127,15.021505,11.129771,5.262820,8.081833,8.611585,7.840509,2.433063,0.700828,0.312398,0.166116,0.117356,0.241322,0.000000,0.082645,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.555000,4612525.550000,4902,4305,114.997536,170.650421,172.212387,162.096710,146.989273,138.195877,135.766129,134.650436,133.617371,137.088440,136.840500,147.526459,164.766129,180.038834,194.361145,202.832230,201.906601,190.914871,165.683487,143.898361,132.881836,128.460342,122.881836,94.303322,77.708282,93.278534,103.187622,76.501671,35.757874,14.571919,11.171094,7.185136,8.722329,7.261998,7.798359,3.700007,0.680994,0.228100,0.195042,0.062810,0.061984,0.000000,0.053719,0.000000,0.000000,1.352893,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612525.550000,4917,4305,122.728111,173.248795,173.075241,162.637207,149.298355,136.628937,135.587616,133.182663,131.942993,135.728119,135.852081,146.678528,163.752899,179.207474,191.058701,201.240524,200.645477,188.901688,163.769440,142.909927,131.810760,127.653732,123.554558,95.133072,77.777702,92.595879,104.504974,77.414062,37.463657,14.892580,11.232250,5.742159,8.294230,7.748774,7.147120,3.223148,0.485125,0.183472,0.284298,0.000000,0.000000,0.000000,0.168596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.755000,4612525.550000,4933,4305,128.803314,173.307449,170.621490,164.390091,148.001663,137.266129,133.613220,133.414871,134.233063,135.778519,136.373566,146.869431,163.315720,179.604965,191.985138,201.885956,201.009933,189.447922,165.547119,143.910751,131.919006,127.737190,124.654556,95.943817,78.100845,90.687622,105.266129,77.431419,35.778530,14.918200,11.332252,7.100012,8.115717,9.164478,7.324808,4.152074,0.410745,0.791737,0.000000,0.442976,0.000000,0.000000,0.000000,0.050413,0.000000,1.245455,0.000000,0.000000,0.000000,0.000000 -601732.755000,4612525.550000,4953,4305,127.957870,171.817368,174.280182,163.792572,147.875214,135.528122,133.329758,130.966125,130.048767,134.147949,133.933075,144.751236,161.065292,177.519852,190.023987,199.833908,199.238861,187.329773,162.875214,141.263641,129.883484,126.883484,121.718193,93.536385,75.883492,91.552910,102.470261,76.090103,36.817375,14.699191,11.065309,6.195879,7.742990,8.000840,9.409931,3.926454,1.673556,0.774382,0.812398,0.252893,0.031405,0.462810,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.355000,4612525.550000,5001,4305,118.132233,182.471069,173.652893,162.991730,148.752060,137.024796,136.000000,134.768600,132.917358,135.438034,135.396698,145.702484,161.933884,179.190079,192.462814,202.016525,201.900833,189.785126,164.909088,142.826447,131.545456,128.057846,123.181816,93.768600,76.768608,90.752075,104.388428,77.305801,37.157043,14.580182,11.198366,5.932243,8.242165,8.248775,7.141335,2.937198,0.553720,0.304133,0.212397,0.125620,0.014876,0.000000,0.485951,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.755000,4612525.550000,5043,4305,108.519844,162.971069,162.144623,155.238861,144.833908,130.594238,126.742996,123.476883,122.309937,128.302490,126.947128,137.433075,154.095886,171.889267,183.761169,192.116547,194.281830,182.670273,159.298355,137.584320,125.926460,121.984314,117.209106,89.817375,73.610764,87.200844,101.266960,75.349602,34.485142,12.247124,10.655391,4.884307,7.073568,7.742161,9.390095,5.097528,2.569426,1.903308,1.904960,0.712399,0.567770,0.000000,0.161158,0.362810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.955000,4612525.550000,5069,4305,126.207451,177.033890,172.794205,164.009094,146.306625,135.389267,133.422333,130.281830,130.232239,132.653732,133.033890,142.951248,161.868607,177.124802,188.562820,198.794235,197.100006,186.199188,161.810745,141.149597,129.281830,127.223976,119.918198,92.942986,76.133080,91.232246,102.529762,74.207458,34.835560,14.171917,10.901670,8.266954,8.962824,7.977699,8.747122,3.238851,0.142976,0.029752,0.064463,0.000000,0.045455,0.000000,0.002479,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.555000,4612525.550000,5097,4305,121.437202,170.043808,172.961166,162.638855,146.142975,135.266953,134.721497,131.837204,130.746292,131.738037,132.060349,143.837204,161.407440,177.341324,187.812408,198.159515,198.101654,184.787613,160.209091,139.622314,129.002487,125.382660,120.118195,92.225632,76.374397,90.415718,101.787621,73.663651,35.572750,15.088449,10.919854,9.649602,8.650427,8.215717,9.168610,4.521496,0.949590,0.166943,0.176034,0.000000,0.000000,0.004959,0.037191,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601764.555000,4612525.550000,5112,4305,117.939682,175.551254,172.633896,162.931412,145.716537,134.642151,134.947952,131.352905,130.509933,131.584305,132.666962,143.600830,161.542984,178.096710,189.171082,198.096710,198.162827,185.195877,160.427277,140.873566,129.047119,126.427292,120.972740,93.195877,76.030594,89.493401,103.005798,72.939682,35.468616,15.985968,10.997540,8.802492,8.426460,8.147946,9.175221,2.487610,0.733060,0.122315,0.303306,0.000000,0.000000,0.000000,0.067769,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.755000,4612525.550000,5128,4305,121.685966,176.132233,174.115723,161.553741,146.347122,135.016541,133.735550,131.421509,129.876053,131.305801,131.884308,142.776871,160.966965,176.537201,187.950424,197.347122,196.942169,184.735550,160.231415,139.636383,129.586792,126.016548,120.545471,91.702492,74.942169,88.454559,100.289276,73.619858,34.123985,14.609108,10.958697,9.667782,7.686789,9.692575,7.750427,3.896702,1.055376,0.219836,0.415703,0.000000,0.000000,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.555000,4612525.550000,5142,4305,134.521500,178.496704,175.414062,163.926453,149.521484,136.025635,135.455383,132.769440,132.182663,132.959518,132.538025,144.273544,161.885132,177.992569,189.926453,199.686783,198.951248,185.364471,161.686783,140.447098,128.678528,126.661995,121.645462,92.653725,76.463646,89.967773,101.364471,73.686790,35.455387,16.420679,11.058696,8.307451,6.806623,8.041336,9.761998,4.452901,0.673556,0.443803,0.206613,0.000000,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.155000,4612525.550000,5160,4305,135.157028,179.347122,172.396713,165.793411,148.413239,137.471085,135.181839,132.603317,132.272751,133.404968,133.396713,144.818192,162.396713,178.247955,191.049606,200.082657,199.041336,184.942169,160.314072,140.330597,129.471085,127.603325,120.545471,91.528938,76.157043,89.272743,103.561996,74.289276,35.595062,16.081837,10.958697,7.819023,8.510757,7.181829,9.347122,3.385957,0.612398,0.231406,0.184298,0.000000,0.000000,0.000000,0.042149,0.149587,0.000000,1.318182,0.000000,0.000000,0.000000,0.000000 -601778.955000,4612525.550000,5184,4305,119.566948,184.641342,172.847946,160.236374,147.864471,135.823151,134.434723,132.261169,131.195053,132.814880,132.451248,143.616547,161.236374,178.104141,189.996704,199.715714,199.302490,183.996704,161.442993,140.294235,130.575211,126.500832,120.872734,92.641335,76.153740,90.021507,100.343811,73.608284,34.269440,14.876879,10.988449,10.033898,7.187615,7.929764,7.490921,3.775215,0.828928,0.261158,0.038017,0.060331,0.000000,0.010744,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.955000,4612525.550000,5199,4305,107.441345,178.058685,174.166122,162.752899,147.620667,134.620667,134.182663,131.314896,129.967789,132.620667,131.265305,143.901672,161.339676,177.438858,190.108276,198.711578,198.934723,184.620667,160.769440,139.571091,130.075226,127.711594,122.009109,93.000847,75.281830,89.042168,100.984322,73.182663,32.992584,13.612413,11.091755,9.673568,6.996706,8.790095,7.871087,3.954552,0.832234,0.447935,0.721488,0.290083,0.000000,0.508265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.955000,4612525.550000,5229,4305,127.400009,185.119034,176.160355,163.681015,148.449600,135.879364,136.085968,133.714066,132.242981,134.879349,133.061172,144.738861,162.879364,178.895889,191.168610,200.557037,199.160355,185.647949,161.424820,141.523987,129.598358,127.598358,121.218193,92.590096,76.433067,90.102493,100.970261,73.953728,33.242996,13.040514,11.019855,10.064480,8.075220,8.733071,8.469436,5.159513,0.585125,0.154546,0.138844,0.000000,0.061984,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.555000,4612525.550000,5242,4305,121.724808,184.509949,175.113251,168.485153,152.262009,138.567795,138.005814,135.592590,133.981003,136.567795,133.559525,146.757874,162.600845,180.435562,193.088455,202.617386,201.336395,186.542999,162.055405,142.195892,130.526459,127.509933,120.427292,91.815720,76.344643,89.303322,101.047127,73.038864,34.063656,13.373570,10.947952,9.804149,8.016541,8.085137,9.807453,3.722321,0.966945,0.695869,0.127273,0.302480,0.343802,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.355000,4612525.550000,5256,4305,133.215714,190.257019,175.372742,165.984314,150.116547,136.306625,135.736374,134.306625,132.934723,135.670258,133.488449,145.381012,162.381012,179.695053,190.769440,200.909927,200.199188,185.058685,162.290100,142.223984,129.728119,127.124809,121.645462,92.347939,76.637215,91.802490,102.504967,73.108284,34.785973,15.812415,11.058697,8.376049,7.714061,9.043817,9.400015,3.100834,0.630581,0.255373,0.049588,0.000000,0.192562,0.000827,0.000000,0.056199,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000 -601795.955000,4612525.550000,5269,4305,138.474396,193.193390,175.176865,167.821487,149.986786,136.507446,135.490921,134.871094,133.763657,137.218185,132.763657,145.408264,162.276031,179.722321,191.961990,202.623138,198.788437,186.201660,162.557022,141.366943,131.821503,127.747124,122.581841,93.259521,77.681007,91.052910,101.309113,74.590103,35.400024,14.871918,11.143820,11.265305,9.457865,10.285137,9.479353,3.933067,1.019011,0.334712,0.013224,0.011571,0.000000,0.000000,0.000000,0.462811,0.000000,0.000000,0.000000,0.000000,1.291736,0.000000 -601799.755000,4612525.550000,5288,4305,139.646301,188.819824,180.084290,166.604950,152.638031,137.695877,136.985138,133.522324,134.084305,137.629761,133.671097,145.910751,163.224792,180.034698,190.993378,201.844620,199.555359,185.596695,161.588425,141.257858,130.001663,127.910751,120.745461,92.208275,76.290924,91.241333,100.795052,72.894234,33.803326,14.827291,10.976879,10.784315,6.282657,8.695055,8.084312,4.326455,0.702481,0.080992,0.059504,0.000000,0.051240,0.000000,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.155000,4612525.550000,5320,4305,152.516541,201.615692,182.904953,172.227280,153.285126,138.111588,137.673569,135.500015,134.657043,140.442169,135.698364,146.557861,162.690079,180.962814,193.342972,203.533051,199.822311,185.128098,161.814056,141.491745,130.458694,128.078537,122.318207,92.227287,76.681831,91.731422,101.615730,72.442169,35.095062,14.318200,11.119855,9.723981,7.888442,7.637202,7.538857,3.957032,0.997524,0.196695,0.001653,0.000000,0.110744,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.155000,4612525.550000,5370,4305,121.881004,169.773544,174.343811,162.798340,147.831406,137.955383,135.285965,133.170258,132.509109,134.418198,134.476044,146.038025,164.038010,180.847946,191.343811,201.376877,200.930588,188.624802,164.599991,142.120667,131.302490,128.955383,121.600014,92.732246,77.476044,91.996704,103.261169,74.699188,36.071095,16.144646,11.054564,7.527285,9.012412,9.159521,9.108281,3.986784,0.887605,0.562811,0.223968,0.000000,0.068595,0.000000,0.051240,0.177687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.355000,4612525.550000,5436,4305,118.293411,167.070251,174.012390,161.384293,149.045456,138.516525,135.582657,133.392578,134.342987,135.318192,136.285126,146.797516,165.359497,180.938019,193.185944,202.855377,202.714874,189.342972,165.342972,143.690079,132.698349,129.359512,124.500015,95.855377,79.293404,93.541328,104.640503,76.483490,37.285145,16.530598,11.318201,9.152906,9.167784,9.204974,9.475221,4.754556,0.760332,0.110744,0.221488,0.186777,0.000000,0.000000,0.051240,0.038843,1.284298,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.355000,4612525.550000,5521,4305,116.101677,161.820663,173.787628,159.580994,145.696716,135.399200,134.093414,130.870270,131.316559,132.895065,133.275223,144.027283,163.151245,178.977707,189.870270,199.704987,199.771103,187.283493,162.779343,141.316528,130.506638,126.928123,120.481842,93.812416,76.225639,90.382668,101.291756,73.209114,35.457043,13.906630,10.952911,6.339682,8.156213,7.560344,9.036378,2.545460,0.323142,0.000000,0.000000,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601872.755000,4612525.550000,5653,4305,108.180191,168.190918,173.017365,162.463654,148.934723,138.141342,136.108276,133.942993,133.091751,136.182663,136.934723,147.356216,165.199188,182.199188,194.347946,203.521500,203.843811,192.513229,168.066956,145.438858,134.843811,130.752899,124.554558,96.091759,78.488441,93.777710,105.819023,79.331421,38.091751,16.717375,11.323159,6.849597,8.252909,9.251255,8.866956,3.762818,0.574382,0.095868,0.631406,0.001653,0.003306,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.155000,4612525.550000,5800,4305,127.311584,178.121475,174.534698,165.369415,149.815689,139.286774,136.385956,136.195877,135.468597,137.980988,138.121475,149.526443,166.080154,184.303299,195.592560,206.518188,205.427261,194.146271,169.055359,147.319824,134.766129,133.030594,126.063652,97.617371,80.708282,93.435555,106.476875,81.419029,38.402500,15.571093,11.460349,5.456209,7.547949,7.333898,7.988445,2.342980,0.474381,0.000000,0.281819,0.000000,0.094216,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.355000,4612525.550000,5871,4305,130.395889,179.974396,174.048782,166.536377,151.280182,138.404144,136.825638,134.759521,133.792587,138.478531,137.809113,148.536377,165.759521,182.718201,195.999191,206.652084,206.511597,194.866959,170.288437,148.933090,135.776047,132.321503,124.718201,98.139687,80.916550,95.470268,106.817375,79.709938,36.437210,15.192580,11.338036,6.257862,8.162001,7.131419,8.032247,2.262815,0.336365,0.322315,0.131405,0.002480,0.014876,0.000000,0.015703,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.555000,4612525.550000,5912,4305,103.380188,176.428940,179.793427,163.132248,146.353729,137.757874,139.113251,137.419037,136.947952,137.352921,137.881851,148.518188,167.600830,184.361160,196.493393,207.129761,207.724808,195.402496,170.410751,147.501678,138.344650,134.914886,130.063660,101.253738,85.187622,97.823982,109.675224,79.080185,39.096710,15.179358,11.823986,11.751254,9.514063,10.886791,12.377700,7.086785,3.446284,2.435539,1.547936,2.523142,1.970250,1.786778,0.368596,1.657026,1.370248,1.586777,0.000000,0.000000,0.000000,0.000000 -601927.155000,4612525.550000,5925,4305,115.139687,173.900024,176.668610,162.395889,146.800842,135.437195,136.081818,133.577698,132.875214,134.147949,134.635544,146.222336,165.412415,180.957870,193.701675,205.701675,206.602478,192.767792,168.247116,145.875229,135.610748,132.280182,127.445473,98.296707,82.371094,95.445465,108.172737,78.040512,38.371094,14.754565,11.585971,9.464478,7.324810,8.986794,9.118197,4.590091,1.073556,0.145455,0.021488,0.000000,0.450414,0.000000,0.045455,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.955000,4612525.550000,5939,4305,108.190094,183.454544,179.809937,164.404968,149.057861,137.677704,137.652908,134.743805,133.776871,134.942154,136.404968,147.735550,166.644638,183.669434,195.818192,206.710739,208.586777,194.421509,170.231415,148.793411,137.000015,134.380173,128.272736,99.685959,84.082664,97.595047,108.322319,78.148766,39.760349,16.190100,11.661175,9.447123,9.635553,10.681835,10.744642,4.131412,0.540498,0.173554,0.000000,0.000000,0.000000,0.000000,0.080166,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601937.955000,4612525.550000,5979,4305,117.839684,185.170242,182.319016,166.790100,150.269440,138.071075,138.418198,134.996704,134.013229,136.112411,137.352081,149.054565,165.839676,183.715714,195.599991,206.723969,207.484299,194.029755,169.021500,147.186783,136.591751,133.798355,128.327286,99.195053,82.806633,96.881004,107.533897,78.112419,38.500847,15.242167,11.666135,13.087620,10.199189,9.778528,10.369436,6.785961,1.140498,0.442977,0.019009,0.000000,0.009091,0.000000,0.022314,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.955000,4612525.550000,5999,4305,112.585960,175.379349,178.701660,164.437195,151.131409,138.032242,137.792572,134.214050,133.941330,135.288437,136.114899,148.528107,166.627274,183.114883,195.073563,206.767776,206.693390,193.519836,168.850418,146.825623,137.023972,133.255386,128.172745,98.131416,82.420670,96.693398,106.238853,77.503319,39.718204,15.110761,11.652084,9.989272,8.871915,10.995055,9.959518,5.345464,1.180995,0.514051,0.062810,0.143802,0.053719,0.015703,0.118182,0.107439,0.000000,0.000000,0.000000,2.838017,0.000000,0.000000 -601947.355000,4612525.550000,6026,4305,116.423981,190.142975,181.366119,166.886780,149.994217,136.572754,137.250443,134.399185,133.275223,137.101669,136.076889,147.952896,166.374390,183.564468,195.523148,207.572754,207.911591,192.886780,170.209091,148.019012,136.787628,134.556213,128.027283,99.787621,83.928116,96.605789,108.952904,78.035561,38.250431,15.921505,11.638863,11.771917,10.024811,8.756212,10.693402,4.009098,1.038846,0.552894,0.021488,0.134711,0.056199,0.000000,0.019835,0.427274,0.000000,0.000000,0.000000,3.771075,0.000000,0.000000 -601950.955000,4612525.550000,6044,4305,114.685966,188.326462,180.615723,166.144638,148.359528,135.351257,136.847122,133.789276,134.037201,137.384308,136.896713,148.086792,165.045471,184.161179,196.698364,208.896713,207.103302,192.301666,169.524811,146.814072,136.458694,133.367783,128.227295,99.252083,82.632248,96.194229,106.475220,77.119850,39.144650,14.692579,11.657044,12.033899,8.650429,8.538033,10.219023,4.328933,1.619011,0.123968,0.452067,0.057025,0.054546,0.000000,0.000000,0.127273,2.464463,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.355000,4612525.550000,6071,4305,116.682663,175.838837,177.243805,163.847107,147.731400,135.020691,133.764481,132.673584,131.070267,134.475235,133.483490,143.938019,160.855377,178.814056,189.665283,201.599167,202.194214,189.714874,164.739670,143.590912,134.508286,131.681839,125.590935,97.921509,82.615730,97.483498,104.607460,78.557877,39.078533,14.867785,11.417374,8.511583,8.838032,8.496706,9.272742,4.386785,0.895044,0.368597,0.193389,0.352066,0.142976,0.123967,0.062810,0.336364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601959.155000,4612525.550000,6085,4305,124.179359,168.344635,171.286789,161.782654,148.476868,136.286789,133.055389,132.650436,129.733078,134.749603,132.286789,142.435547,157.931412,175.344635,187.005798,199.336380,197.295044,185.526459,162.617371,141.815720,132.708282,128.881836,125.154564,97.179359,81.666962,97.138031,103.848778,76.716545,36.906631,15.019853,11.377705,7.012408,10.194232,8.620673,6.770260,3.697528,1.019011,0.049588,0.489257,0.057025,0.063637,0.099174,0.809092,0.227273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601963.955000,4612525.550000,6109,4305,125.707451,172.062820,168.641342,161.649612,147.914078,137.302490,134.327286,132.112411,131.038025,133.674393,132.666122,143.195068,159.244659,177.004990,188.004974,198.550430,199.426437,186.228119,163.112427,142.674393,133.492569,128.004974,124.236374,96.814888,81.707451,96.600014,105.120674,76.418198,37.847950,16.037209,11.294235,8.360344,9.238033,8.385137,8.552907,2.308268,0.615704,0.019836,0.233058,0.061157,0.013224,0.000000,0.000000,0.252066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.755000,4612525.550000,6123,4305,97.948776,165.061996,171.070267,163.359528,145.962830,134.285141,133.136383,129.268616,128.549606,130.781006,130.838852,141.466980,156.458694,173.574402,185.979340,197.376038,197.657028,187.095047,162.995880,141.086807,130.557861,127.053734,122.227287,97.285141,80.574394,94.615715,101.805801,76.772743,39.681835,15.071093,11.111589,5.633894,9.040512,7.757864,9.171087,5.012403,1.498349,1.478514,1.584298,1.757852,1.718183,1.019009,0.919835,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.155000,4612525.550000,6140,4305,118.443810,174.939697,169.807465,162.088455,146.245483,134.344635,131.923157,129.584305,130.146286,132.799179,131.154556,142.501678,156.832260,173.311600,185.873581,196.534729,197.369446,186.154572,161.989288,140.030609,130.038849,128.493393,121.609100,95.675217,79.733078,94.319847,102.733070,75.559525,34.890099,13.791754,11.055391,6.203317,7.536379,7.819020,8.561172,3.033889,0.638018,0.571902,0.322315,0.129752,0.009091,0.000000,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601974.955000,4612525.550000,6164,4305,122.699188,166.277695,171.393402,163.153717,146.723984,136.409927,134.914062,131.112411,131.492569,134.393402,132.451248,142.566971,158.814880,175.269424,187.046280,199.195038,199.104126,186.674377,164.054565,142.162018,132.285965,129.385132,124.872742,98.864479,82.170265,96.161995,103.897537,77.228111,38.087620,16.609936,11.352085,7.750425,9.758694,9.020675,9.609106,4.042154,1.616532,0.276862,0.241323,0.164463,0.006612,0.069422,0.691736,0.462810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.555000,4612525.550000,6182,4305,115.801674,162.016541,166.991745,163.289276,147.140518,135.694229,133.735550,130.363647,129.528946,132.016541,132.206635,141.727295,157.719025,172.801666,186.066132,196.842987,197.338852,184.281006,161.471085,141.553741,131.462830,127.438042,122.636391,96.132248,80.685966,94.305801,103.157043,76.636391,35.272747,15.995886,11.148780,6.510755,8.600842,8.847120,7.671915,3.433062,0.842151,0.209092,0.308265,0.181819,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.955000,4612525.550000,6209,4305,96.755386,156.069427,167.689255,158.259506,145.821503,133.218216,131.482666,129.358704,128.846313,131.110764,131.639694,141.375229,158.069427,171.829758,185.664444,196.077667,196.011551,185.482635,161.185120,140.061172,130.639694,126.763664,123.036392,96.400017,81.259514,94.218201,103.069443,74.548775,36.300846,14.778530,11.185143,6.146292,7.522330,6.209104,8.255386,1.855375,1.129755,0.097522,0.115703,0.315703,0.006612,0.146281,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.355000,4612525.550000,6226,4305,101.011589,166.879364,170.466141,161.416550,145.771927,135.763657,132.499191,131.714066,130.152084,130.705795,132.871078,141.656219,158.623154,174.168610,185.044647,196.044647,197.003326,185.879364,162.077698,140.391754,132.077698,127.028107,122.763649,97.127281,81.590103,95.482658,103.937202,76.251259,36.928944,15.305803,11.160350,5.967780,8.772743,7.623980,8.410757,2.864467,0.729755,0.115704,0.309918,0.177686,0.114050,0.595869,0.110744,0.229752,0.000000,0.000000,4.066116,0.000000,0.000000,0.000000 -601992.355000,4612525.550000,6251,4305,99.752922,157.414078,168.546310,158.265320,145.860336,135.538025,132.488449,129.843826,129.314896,131.637207,132.323166,141.562836,157.389282,173.405807,186.372757,195.967804,196.992584,185.455383,162.513245,140.331436,130.116547,128.281845,122.736382,97.199196,81.000854,94.091759,103.868614,76.100029,36.405804,15.702498,11.157870,6.325630,9.999188,8.169436,8.624807,4.415708,0.294215,0.124794,0.186777,0.376034,0.000000,0.167769,0.000000,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601999.755000,4612525.550000,6288,4305,104.791748,151.973572,168.816528,155.833069,144.601669,135.733902,132.345474,130.833069,130.213242,131.320679,132.742157,141.527298,158.304153,174.568619,185.081009,196.320663,197.072739,186.428116,161.808273,141.783493,131.907455,127.238029,123.618195,97.097534,80.700844,95.180183,102.766960,74.775223,35.254562,14.343819,11.238036,5.585961,7.661997,6.880177,8.504146,3.654550,0.430581,0.239671,0.119835,0.000000,0.000000,0.080165,0.315703,0.000000,0.000000,0.000000,1.942149,0.000000,0.000000,0.000000 -602002.555000,4612525.550000,6302,4305,91.855385,156.318192,170.078522,163.045471,146.400848,138.227295,135.161163,132.896713,131.095062,134.384308,133.739685,144.359528,159.458694,174.045471,187.425629,197.599182,198.574402,187.194229,163.756210,142.095062,133.384308,130.814072,125.227287,99.227287,83.301666,96.475220,105.260345,78.681831,40.235558,16.985144,11.384316,6.814889,10.090099,8.841336,9.407453,3.285130,0.976864,0.280994,0.507439,0.000000,0.010744,0.167769,0.010744,0.314876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.155000,4612525.550000,6320,4305,99.069443,154.085968,169.523987,158.276047,142.986801,135.358688,133.623154,130.928940,128.895874,131.094223,133.127289,143.110764,158.441345,173.689270,185.920685,197.226471,197.590103,186.333908,162.102493,140.829773,131.110748,128.449600,123.400009,97.978523,80.846291,95.267776,103.920670,78.474388,36.342167,14.119026,11.218202,6.673565,8.247950,7.400841,7.322327,3.727280,0.575209,0.044629,0.122314,0.241323,0.120661,0.406612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.355000,4612525.550000,6341,4305,97.979355,160.805801,168.698364,160.632248,145.863647,136.871918,132.681839,131.334732,130.219025,131.326462,132.615723,144.070267,158.533081,174.987625,186.863647,198.119858,197.409103,185.260345,162.615723,141.309937,131.929764,129.541336,123.954552,97.690102,81.012413,94.450432,101.946289,75.425636,36.202499,16.017374,11.268614,5.443813,8.519022,7.209931,8.655385,3.836370,0.468597,0.191738,0.118182,0.497521,0.000000,0.117356,0.157025,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.355000,4612525.550000,6371,4305,91.805801,157.557877,165.301682,154.904984,141.541351,133.458694,132.293411,129.557861,127.764481,130.400848,131.731430,141.756226,157.673584,172.177719,184.995880,195.210754,196.458694,184.797531,161.962845,141.004166,130.433914,126.260345,121.954559,96.119843,80.863647,94.904968,103.582649,74.417381,34.392582,13.351258,11.086796,5.695879,7.544643,5.010756,6.228938,1.885127,0.609919,0.027274,0.352067,0.191736,0.000000,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602025.955000,4612525.550000,6419,4305,80.248779,146.810776,169.066971,157.356216,145.215729,134.314896,132.728119,130.926468,130.033905,130.984314,133.116547,143.703339,158.645477,174.000854,185.438873,197.050446,197.513245,186.521515,162.587631,141.240524,132.149612,128.819031,124.190933,98.290100,82.066963,95.488449,104.893410,75.273575,36.009109,14.672744,11.290102,5.009100,9.100843,8.756214,8.129766,4.129758,0.418183,0.102480,0.047108,0.000000,0.015703,0.068595,0.000000,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.355000,4612525.550000,6486,4305,87.958694,153.727295,166.231415,156.454559,142.404968,134.165298,131.495880,127.735550,127.355377,128.330597,129.710754,139.892578,157.305801,172.661179,184.371918,194.942169,196.380188,183.561996,160.867783,140.049606,130.033081,126.578529,121.909103,93.776878,78.628113,93.363647,103.165306,73.801666,34.970268,12.794230,11.082664,4.861166,5.994228,7.923980,7.340508,3.196700,0.582647,0.020661,0.242976,0.061984,0.000000,0.130579,0.145455,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602044.355000,4612525.550000,6511,4305,86.556213,155.085144,166.961182,156.622330,146.242172,136.399200,133.176041,131.597534,128.167786,130.060349,131.944641,141.440521,159.448776,173.969437,184.985977,196.382690,196.886810,185.688461,162.242172,140.820679,131.432251,128.432251,122.754562,96.795883,81.746292,95.647125,105.374397,76.531418,38.341335,16.380182,11.159524,7.420672,10.457043,9.480180,7.399188,3.567774,0.280167,0.294216,0.571076,0.061984,0.064463,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.955000,4612525.550000,6524,4305,83.460358,155.724823,168.675217,156.270279,144.303329,134.344650,133.088440,131.352921,128.840515,131.749603,131.931427,143.319855,158.683487,174.675217,186.683487,196.600830,196.270264,185.741333,162.129761,141.741348,131.666962,128.195892,121.881844,96.981018,82.146309,96.195892,105.055397,77.542999,38.113243,15.432249,11.080184,8.016541,9.876048,7.609103,7.798360,3.031410,0.885126,0.467770,0.164463,0.094215,0.010744,0.147934,0.753720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.955000,4612525.550000,6544,4305,88.652901,154.371933,167.471100,158.190109,142.231430,132.842987,129.727280,128.289261,127.652908,127.462830,129.429764,140.198380,157.611603,172.661194,184.008301,194.330612,194.396729,182.528961,161.190109,139.694244,129.545456,126.892578,120.454559,93.826454,78.190094,93.421494,102.776871,74.371918,36.347126,12.576051,10.950434,7.904972,8.358692,7.428112,10.566955,4.056205,0.552895,0.419837,0.171901,0.218182,0.000000,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,1.709091,0.000000,0.000000 -602057.555000,4612525.550000,6577,4305,90.657043,157.641357,168.029770,158.500839,144.104141,133.393402,131.740509,128.814896,128.533890,130.095886,130.806625,141.699188,158.120667,172.757034,184.790100,195.814896,195.467789,184.707458,160.624802,140.492569,131.368607,126.889267,121.781830,94.823151,80.153740,94.566956,103.690926,75.723991,36.401672,14.800844,11.071094,7.023979,9.218199,10.303322,9.361171,3.464468,0.222316,0.011571,0.153719,0.257852,0.000000,0.074380,0.373554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.355000,4612525.550000,6596,4305,103.512421,157.628113,171.132248,158.347122,145.586792,133.925629,131.289276,128.727295,127.024811,128.462830,128.900848,140.942169,156.561996,171.842987,182.768616,194.520676,195.123978,183.214890,160.347122,138.892578,128.942169,125.793404,120.000015,93.413239,79.710770,93.537209,103.239685,75.843002,37.438038,14.506629,10.909110,8.167782,8.310760,9.337205,9.745468,5.580173,1.090086,0.129754,0.249587,0.000000,0.376034,0.016530,0.285951,0.256199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602065.955000,4612525.550000,6619,4305,101.360352,155.922333,167.633072,159.054565,144.790100,135.302490,134.203323,129.723984,129.790100,129.955399,131.029770,143.120667,158.409927,173.476044,186.269440,196.616547,197.277695,185.748779,163.294235,143.211578,131.897537,128.509109,122.781837,96.310760,81.128944,94.914062,106.922325,78.980186,37.294235,15.424810,11.162003,7.265302,8.451256,10.716545,10.270263,4.634717,0.828928,0.300828,0.206612,0.031405,0.114876,0.354546,0.220661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602068.755000,4612525.550000,6633,4305,98.652908,156.190109,168.809952,160.181854,144.247971,135.760345,130.487610,127.471092,127.595055,128.140518,130.115707,139.876068,156.727310,171.677719,183.727310,194.677719,194.867798,183.487640,160.388458,139.264496,130.074402,126.702492,121.000015,94.066132,79.347122,93.834724,103.867783,76.537209,36.958694,13.949605,11.000020,8.433071,8.573569,11.171915,8.903320,3.439676,0.855374,0.301654,0.277687,0.038017,0.087604,0.152066,0.281818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602073.155000,4612525.550000,6655,4305,102.342171,160.590088,168.656204,159.681000,144.449585,133.821503,132.499191,129.119034,126.928947,128.705811,129.061172,140.011597,155.945465,171.433060,184.912399,195.110748,194.961990,182.366943,159.631409,139.970261,130.383484,126.755394,121.854568,94.342171,78.267792,92.788452,103.928947,74.490929,35.879356,15.340512,11.077704,7.553730,8.309933,9.250428,8.953732,3.191741,0.986779,0.195042,0.432232,0.035537,0.000000,0.072727,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602078.555000,4612525.550000,6682,4305,90.620674,158.918198,170.909927,159.190903,145.918182,134.728119,133.058685,129.414062,128.009109,129.835556,130.455383,140.083466,156.513214,173.314896,185.215714,195.670258,196.257034,183.777695,161.480164,140.670242,131.480179,126.562820,122.645470,94.174393,79.843811,91.298363,104.653732,77.661995,35.100018,14.328115,11.149606,8.276874,7.334725,9.791750,8.817369,5.654557,0.566119,0.157853,0.360332,0.436364,0.000000,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.555000,4612525.550000,6712,4305,99.267792,163.887619,167.573578,159.466141,143.366959,133.738861,130.209930,127.218201,126.838036,128.267792,128.887619,138.978531,155.490921,172.333908,183.400024,194.590103,195.234726,181.482666,159.962006,138.581833,128.565308,125.028122,120.127289,93.069443,78.383492,92.614899,102.523987,73.325638,33.937210,14.495059,10.920681,8.095881,6.610759,7.012411,8.315715,4.563644,0.243803,0.022315,0.039670,0.000000,0.008265,0.000000,0.070248,0.583472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.155000,4612525.550000,6740,4305,109.269447,165.038025,170.971909,161.112411,147.038025,135.211578,134.847946,130.798355,130.740509,131.608276,132.847946,142.401672,158.864471,172.558685,185.988449,197.649597,197.434723,184.988449,162.748779,142.261169,131.484314,128.509109,122.781837,96.715729,80.343834,94.732262,106.409943,77.029778,36.831421,15.455389,11.162003,8.476046,10.739687,9.866957,10.985140,5.112402,0.762813,0.046282,0.243802,0.000000,0.000000,0.888431,0.000000,0.915703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.955000,4612525.550000,6774,4305,114.115715,173.289276,170.768616,162.396713,145.652908,135.289276,134.471085,129.752075,129.041336,130.834732,131.495880,142.181839,158.661179,174.586792,185.619858,196.338852,198.082657,184.991745,161.090927,141.471085,131.512405,127.330597,122.363655,96.099190,79.950432,94.446297,105.115715,75.198364,37.049606,15.489274,11.123985,9.329764,8.889272,9.523154,10.638858,3.257030,0.672729,0.128926,0.328100,0.410745,0.090083,0.066942,0.221488,0.000000,2.425620,0.000000,0.000000,0.000000,0.000000,0.000000 -602104.155000,4612525.550000,6810,4305,96.321518,171.040512,171.809113,160.660355,146.561172,133.519867,132.701675,130.709946,128.329773,130.238876,131.776062,142.891754,157.462006,173.726471,184.528122,196.511597,197.172745,184.015717,160.668610,140.519852,130.338043,127.147964,121.990936,95.379364,79.858704,93.329781,102.445480,73.329781,36.313244,14.714068,11.090102,6.285135,6.738031,10.958693,10.289271,3.561989,0.018182,0.127274,0.055372,0.390910,0.000000,0.000000,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602107.755000,4612525.550000,6828,4305,114.811600,166.042984,167.274384,159.274384,143.555374,132.439682,132.439682,129.051270,128.042999,130.034729,128.902512,140.613235,157.836380,172.943817,184.646286,196.216537,197.398361,184.100830,160.671082,140.555374,129.671097,126.861183,121.654572,94.852921,80.307465,93.514076,102.423164,74.290932,35.249607,14.088446,11.059523,8.176870,10.128941,8.361170,9.990096,2.449591,0.437192,0.302480,0.109918,0.035537,0.000000,0.004959,0.228100,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602111.755000,4612525.550000,6848,4305,91.637215,172.108292,175.678528,161.926468,145.298355,135.777695,133.529770,131.794235,130.819016,132.389267,131.595886,143.934723,159.265320,176.174393,188.959518,198.835556,200.075226,186.860336,164.149612,142.885132,132.810760,129.909943,125.554565,96.645477,81.471924,95.571098,105.645470,75.521515,36.587627,15.009936,11.414067,10.004146,8.861997,10.324807,10.118196,3.461163,0.452894,0.058679,0.166116,0.000000,0.249587,0.000000,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.155000,4612525.550000,6870,4305,108.066956,175.240509,173.075226,164.637207,147.918198,136.777710,136.546310,132.934738,132.166138,134.934738,134.447128,146.207458,161.471909,178.323151,189.992569,202.455383,201.918198,187.926453,165.802490,144.504990,135.174408,132.042175,127.554565,98.199196,82.637215,96.678535,105.232254,75.976051,35.620678,13.817372,11.595887,8.690096,9.337207,8.381833,8.139683,4.258685,0.685952,0.271076,0.161158,0.000000,0.240496,0.158678,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.355000,4612525.550000,6901,4305,106.277710,182.682663,172.484314,163.434723,148.847946,137.459518,135.228119,134.038040,133.889282,137.112411,135.302505,147.566956,163.707458,181.666122,192.285965,206.054565,205.757034,191.459518,170.517365,149.881012,137.823151,136.591751,130.236389,101.261177,85.310768,101.757050,110.748779,79.352089,36.087624,16.457870,11.839688,10.304147,9.552908,9.829766,8.528941,4.296702,0.643804,0.217357,0.000000,0.045455,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.155000,4612525.550000,6915,4305,129.357040,175.852905,172.952072,166.547119,149.621490,136.142181,136.423172,133.241348,134.200027,138.365311,134.646301,147.761993,162.290924,180.679352,193.224808,205.621490,206.299179,191.191742,170.720673,149.266129,139.778534,134.737213,129.745483,101.852921,84.456223,99.051262,110.001678,80.530602,39.927292,16.004148,11.795061,11.196709,11.168612,11.855388,11.584311,4.871082,1.884302,0.624795,0.531406,0.052066,0.002479,0.081818,0.000000,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.955000,4612525.550000,6929,4305,115.185974,176.566132,169.070267,164.144638,144.772766,132.855392,132.343002,129.739700,129.376053,133.334732,131.293411,142.657059,158.822327,175.921509,189.524796,202.442154,202.136368,187.202499,165.657043,145.772766,135.863663,132.409119,125.681839,97.367783,82.053734,97.475220,107.070274,76.202507,36.169441,13.414067,11.425640,9.092575,6.585964,8.778527,10.257863,3.187610,0.890085,0.223141,0.057025,0.038843,0.000000,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.355000,4612525.550000,6946,4305,115.242996,171.219849,171.338837,164.385132,148.404984,136.016556,135.272751,133.983490,133.438034,138.000031,134.512421,145.702515,162.305786,179.528931,193.256195,207.338837,206.528931,191.239670,170.371902,148.843002,137.834747,135.314072,129.818207,99.991753,84.107452,102.355385,110.471092,81.024811,39.396713,16.514894,11.801671,12.764478,10.630594,11.009106,12.157039,3.122320,2.233063,0.269423,0.606613,0.052893,0.098347,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602136.955000,4612525.550000,6974,4305,104.143822,183.416534,171.838013,163.474380,147.804962,133.829773,134.152084,130.738861,129.681015,135.234726,130.342163,142.457886,159.127274,176.044632,189.342148,200.953720,200.482651,184.755371,165.036362,145.085983,136.383484,132.523987,125.581841,96.515724,81.523987,99.127289,107.457870,75.565308,35.581837,14.524811,11.416547,10.071915,9.684312,8.202494,8.229764,3.689263,0.490911,0.080993,0.150413,0.168596,0.000000,0.000000,0.250414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.387604 -602141.355000,4612525.550000,6996,4305,113.110756,177.854553,171.796692,163.995056,147.714066,135.714066,133.862823,130.656204,129.986786,135.242981,131.127289,142.168610,157.474396,174.796692,187.433060,200.532242,198.218185,184.912399,165.127289,145.532257,134.474380,130.515701,126.127281,97.226456,80.945473,98.970261,108.176872,77.424812,38.647953,16.215719,11.466134,12.503319,9.702495,10.045469,10.490925,4.756207,0.314052,0.228927,0.253720,0.156199,0.034711,0.065290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602145.555000,4612525.550000,7017,4305,131.177689,176.301651,175.830582,166.979340,148.665283,136.987610,134.342987,132.285126,130.359512,136.632233,132.045456,143.772720,159.095047,176.169418,189.318176,201.161163,201.921494,185.450409,164.623962,145.400833,135.004135,132.061996,126.772736,97.772736,83.673576,100.202484,108.103325,78.475227,38.285145,17.913237,11.524813,13.704974,11.232248,11.591751,10.671089,4.733894,1.110747,0.517358,0.101653,0.079339,0.040496,0.183471,0.190083,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.755000,4612525.550000,7038,4305,98.357864,153.002502,165.581009,152.225647,139.010773,126.936378,126.895058,124.465302,122.936378,125.473572,126.506622,136.506638,151.845474,168.283493,182.539688,192.853745,192.514893,181.647125,161.399200,139.795883,129.060349,125.977699,120.300018,93.209106,77.101669,94.647125,107.250427,78.581009,37.010761,13.719027,10.936383,5.571914,8.946296,8.393403,7.871086,3.205793,0.881822,0.242150,0.056199,0.118182,0.058678,0.000000,0.250414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602156.155000,4612525.550000,7070,4305,89.151260,151.052078,158.564453,153.663635,138.655380,126.746284,125.523148,123.622322,122.283478,123.671906,124.275215,136.795868,152.713226,169.225616,182.531418,193.159531,194.655396,183.002487,161.928085,141.564468,130.374390,125.928108,119.845459,92.994232,76.886795,93.457039,107.969429,80.597534,38.382668,15.488448,10.895060,5.050426,8.679351,9.600015,9.423979,3.038024,0.309919,0.447108,0.070248,0.110744,0.000000,0.072727,0.150414,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602162.355000,4612525.550000,7101,4305,93.093414,141.969421,157.209106,149.374405,136.853745,126.828941,124.010757,121.151260,121.134735,122.779358,123.729774,134.423981,151.721497,167.985962,181.043808,191.936371,193.019012,182.101654,160.043808,140.704987,128.432251,126.209106,118.300026,91.977707,73.738029,93.142990,108.539696,80.523163,37.167786,13.701671,10.754564,6.128937,8.318195,8.052907,9.104970,3.323147,0.653721,0.373555,0.000000,0.040496,0.041322,0.000000,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.955000,4612525.550000,7134,4305,100.214890,144.917374,157.198364,147.884308,133.495880,125.281006,120.983490,119.975220,119.157043,120.644646,120.909103,132.553741,150.206635,165.644638,178.173569,189.388443,190.611588,179.471085,158.231415,137.181854,126.438034,122.561996,115.909103,89.322327,73.396713,90.371918,106.099190,78.818199,35.727287,13.461174,10.537210,5.126459,7.355386,7.014889,7.856211,2.814057,0.437192,0.620663,0.184298,0.117356,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.955000,4612525.550000,7154,4305,101.698372,146.433899,156.847122,148.929764,134.888443,125.111588,121.731422,119.169441,118.987617,118.987617,120.301666,132.450424,148.433899,164.888443,177.516541,189.384308,188.607452,178.442169,157.549606,137.235550,126.533073,123.004150,114.227287,89.392578,73.161171,91.045471,107.020676,79.954567,36.450432,15.267787,10.384316,5.633896,7.058692,7.643816,7.685963,3.581002,0.233059,0.391737,0.000000,0.120662,0.000000,0.006612,0.000000,0.466943,0.000000,0.000000,0.000000,1.674380,0.000000,0.000000 -602178.955000,4612525.550000,7184,4305,90.118195,146.291748,156.580994,145.142975,130.729767,121.969437,120.465302,116.779350,116.167786,116.671913,118.233902,129.630600,146.572739,163.109924,175.341324,185.580994,187.432236,176.919846,154.845459,134.977707,124.316544,119.795883,114.845467,87.142990,72.382660,91.159515,103.415718,80.085136,35.514900,12.983487,10.440515,6.522327,7.323980,7.157038,5.766127,4.340505,0.508266,0.827274,0.235538,0.000000,0.385125,0.000000,0.223967,0.307438,2.333884,2.016529,0.000000,0.000000,0.000000,0.000000 -602188.755000,4612525.550000,7233,4305,95.109116,150.042984,154.307449,145.662827,129.514069,121.249603,115.042992,112.150429,111.836380,111.712418,113.117371,124.034729,142.439697,158.059509,171.381821,181.952087,182.282669,172.266129,151.885956,130.208282,122.406631,116.208282,110.654564,81.571930,66.720680,85.786804,102.266136,75.274406,34.257870,10.418198,10.059523,3.547943,6.544641,4.815715,6.641334,2.742982,0.519010,0.151240,0.000000,0.067769,0.000000,0.000000,0.000000,0.065289,2.264463,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.955000,4612525.550000,7264,4305,96.957047,152.866119,154.204971,145.031433,128.692581,119.957039,117.064476,113.370262,112.056221,113.948784,114.808281,125.659515,142.659531,157.031418,169.998367,181.155396,181.328949,170.271103,150.816528,132.130600,120.940514,117.006622,111.800026,84.758698,69.081017,87.485954,104.857872,77.733902,35.485970,13.451256,10.163656,5.721498,7.571913,8.589269,8.904144,4.060339,0.596697,0.422316,0.000000,0.081819,0.112397,0.000000,0.072727,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602198.355000,4612525.550000,7281,4305,110.142166,151.323975,157.976883,145.340500,131.679352,122.224808,118.067787,116.092583,113.828117,114.323982,114.447952,126.059525,144.654556,160.150421,170.737198,182.125626,180.514053,170.406616,151.406631,133.009933,122.654564,120.084312,114.563652,88.183487,71.340515,90.191750,110.728935,82.323982,37.481010,13.023158,10.414895,6.480176,8.669436,9.910760,10.432246,4.031415,0.852896,0.233059,0.163637,0.038017,0.000000,0.000000,0.283472,0.000000,1.831405,0.000000,0.000000,0.000000,0.000000,0.000000 -602203.155000,4612525.550000,7305,4305,111.420670,159.418198,154.285965,144.137222,129.740509,120.781830,117.211586,113.938858,112.426460,111.178528,112.657867,123.566956,140.517380,156.451248,167.434723,176.277695,175.938858,165.533890,146.500854,128.343811,119.500839,116.409927,111.872742,86.624817,70.542168,89.385147,111.236374,85.211594,39.145470,13.856215,10.170267,5.877697,9.255387,10.608279,7.791749,4.022323,0.415705,0.438845,0.000000,0.000000,0.000000,0.000000,0.145455,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602209.755000,4612525.550000,7338,4305,142.719025,177.132248,161.512436,145.079346,133.765305,126.608276,124.319023,123.558693,121.947128,123.856216,121.038033,129.038040,141.624802,151.075226,158.595901,165.075241,162.967804,152.447113,134.264481,118.132248,108.339684,105.496704,100.372742,78.128113,63.064484,80.953735,98.429771,75.531425,34.083488,11.785140,9.124812,16.081007,21.230595,27.543818,28.820677,23.910757,20.970255,23.464466,23.506617,25.590086,23.399176,18.720663,24.917360,21.631409,6.191736,6.839670,22.780994,16.595869,15.719008,8.064464 -602232.555000,4612525.550000,7452,4305,129.339676,161.637207,157.157867,145.190933,129.538025,118.678528,114.827286,113.670258,111.199188,112.951256,114.504974,124.678528,142.587631,157.620667,169.438858,178.174393,176.257034,166.058685,147.695068,129.174393,119.100014,116.661995,115.100014,89.794228,71.273575,89.868607,117.381004,91.976051,42.959522,14.290102,10.463656,10.081834,9.295057,11.620676,14.279356,10.315715,1.547112,0.390910,0.211571,0.073554,0.290084,0.000000,0.000000,0.000000,2.791736,0.000000,2.343802,0.000000,1.097521,4.191736 -602238.355000,4612525.550000,7481,4305,117.715706,159.940506,160.593399,146.039688,130.452911,120.304146,117.560349,113.452904,112.725632,113.444641,114.295883,125.023155,143.915726,160.535538,173.907440,187.370255,188.775208,178.626450,156.213226,134.593399,123.419846,118.097534,112.890923,83.750427,65.874397,84.907455,102.857864,76.461174,35.271088,13.691754,10.262830,8.738030,8.483486,10.662000,9.888446,5.447943,1.286779,0.150414,0.347935,0.000000,0.098347,0.351240,0.005785,0.000000,1.430579,0.000000,0.000000,0.000000,0.000000,0.000000 -602247.355000,4612525.550000,7526,4305,111.245461,159.349609,161.002502,146.407455,130.291748,121.291748,117.911583,114.250427,114.374397,114.465302,114.680183,125.738029,144.779358,161.134735,173.911591,186.704987,188.209106,176.878540,154.638870,132.861984,121.903320,117.547951,111.754562,81.969437,65.324814,82.911583,100.093407,71.622330,33.977703,13.234729,10.159524,6.233071,8.644647,8.453735,8.138858,3.694221,0.931407,0.550414,0.261158,0.175207,0.353720,0.000000,0.014876,0.004132,1.486777,0.000000,1.252893,1.030579,0.000000,0.000000 -602261.355000,4612525.550000,7596,4305,111.889275,153.757050,156.790115,144.484329,129.327286,118.401657,115.145462,112.021492,111.211578,112.062813,112.839676,123.657867,141.980194,159.393417,172.393402,184.137207,185.500839,175.757034,152.500854,130.302490,119.062820,114.633064,108.781822,79.608284,63.112415,79.162003,95.600014,69.137215,31.748779,11.966959,9.889276,7.349599,7.721503,7.470262,8.300840,3.235543,1.276036,0.548761,0.267769,0.123141,0.030579,0.166116,0.000000,0.000000,1.480165,1.296694,0.000000,0.000000,2.317356,0.000000 -602281.755000,4612525.550000,7698,4305,141.666122,164.330612,154.371918,141.595078,125.677711,114.545464,109.966949,107.636375,106.801659,108.347115,107.958687,119.809929,138.851273,156.123978,170.809937,182.876068,184.752106,172.760361,150.148773,127.950432,116.090919,112.107445,106.727280,78.429771,59.760345,77.752083,95.454552,71.363655,32.892582,11.862001,9.702498,8.518193,7.530593,7.816542,9.162825,5.974390,1.157028,0.523969,0.548762,0.009918,0.067769,0.425621,1.508265,0.360331,6.978513,2.545455,5.607439,1.912397,4.467770,2.149587 -602290.755000,4612525.550000,7743,4305,187.703308,175.347946,150.488449,131.695053,114.455383,101.215714,98.546295,96.612411,94.769432,99.504982,99.141335,110.967781,132.058685,150.422333,164.240509,175.645462,175.967789,165.876877,144.240509,123.893402,111.703316,108.257034,105.100014,76.645477,53.736385,75.190933,104.670258,82.042160,40.149609,13.493405,9.554565,8.756211,9.205801,12.580181,16.547949,12.366957,2.861163,0.856201,0.785127,0.278513,0.367770,0.553720,2.151242,0.990910,8.287604,7.753720,6.158678,2.300000,4.392562,3.785951 -601283.155000,4612515.550000,2705,4355,163.367783,172.607452,150.491745,135.342987,118.144638,104.252083,103.086792,100.268608,99.483490,100.772743,100.549606,111.210754,128.896698,146.541336,158.566132,169.342987,171.086792,159.466965,139.053741,119.202484,108.524803,107.219017,101.409103,70.590927,53.797543,69.342995,87.177704,64.731422,26.836382,11.501671,9.219028,18.133076,10.152081,10.774395,13.877703,7.345467,2.865295,0.547109,0.984300,0.761985,0.399174,0.223967,0.677688,0.724794,13.487605,7.343803,6.542150,4.152067,4.439670,7.060331 -601287.155000,4612515.550000,2725,4355,143.519012,166.411575,146.601654,134.023148,118.031418,105.188446,105.386795,102.378525,101.403320,104.196709,103.271088,115.105797,132.353729,148.800003,161.692566,172.973557,173.742157,163.353729,140.634720,121.593407,111.709106,108.469437,103.163651,74.651253,56.047958,70.890930,86.684311,63.171921,27.862829,9.562827,9.378531,14.773571,8.490921,11.186792,11.820678,8.184306,1.238848,0.780167,0.684299,0.292564,0.135537,0.175207,0.787605,0.518182,1.066116,5.106612,3.250414,2.105786,1.942976,1.796694 -601293.355000,4612515.550000,2756,4355,135.611588,173.485977,146.733902,138.171921,123.221504,110.328941,109.766960,106.502495,107.304146,110.527290,109.609932,120.940514,137.601669,154.643021,167.229797,178.386795,178.039688,165.370285,145.461182,125.345467,115.717369,113.634727,107.163651,78.742165,61.411583,75.824806,89.196709,65.973572,26.932249,11.377703,9.742168,15.565305,9.999187,10.440512,11.052082,7.247944,2.171905,0.187605,0.136364,0.339670,0.175207,0.112397,0.526447,0.180165,1.009917,2.023967,0.888430,0.000000,1.894215,0.000000 -601302.955000,4612515.550000,2804,4355,142.076859,179.225647,155.630600,143.481842,125.961174,112.547951,113.663651,110.010757,111.027290,115.556213,113.142990,124.341339,141.589279,160.043823,173.523163,185.176056,185.390930,171.192581,149.919861,129.828934,119.341339,116.308281,110.936378,81.457039,62.919849,77.002495,89.614067,61.605801,28.101673,10.060348,10.085143,15.526463,8.837204,9.211585,10.057038,5.170256,0.605788,0.185124,0.074380,0.204960,0.138843,0.000000,0.541323,0.000000,6.473555,2.048760,2.515703,0.726446,3.080992,1.987603 -601313.155000,4612515.550000,2855,4355,150.175232,185.704147,158.538849,149.481003,131.323990,119.018196,118.935555,116.332253,116.654564,124.340515,119.034729,130.489273,146.927277,165.960342,180.662827,192.613235,192.613235,177.894226,154.621490,135.059525,123.629768,120.613243,115.200020,85.092583,67.026466,82.224808,92.224808,63.894238,29.026466,12.215720,10.472747,16.257870,10.000840,10.228942,10.561998,5.952074,0.535539,0.638019,0.144629,0.142149,0.041322,0.038843,0.000000,0.000000,3.209918,0.000000,2.805786,0.000000,0.000000,0.000000 -601317.755000,4612515.550000,2878,4355,157.300003,179.812408,162.399170,151.771088,134.721497,122.399185,120.746292,119.134727,119.407455,126.564476,121.779350,132.961166,149.787613,167.853714,181.514877,194.308273,194.440506,179.366119,158.614059,136.258682,126.035553,123.043816,119.663651,87.547958,71.184319,85.151260,93.928116,66.828949,31.481838,14.131424,10.878532,18.653738,11.561173,10.606627,10.495883,6.054554,1.843807,0.167770,0.043802,0.073554,0.127273,0.290083,0.295868,0.000000,1.182645,0.000000,1.619835,0.000000,1.197521,0.000000 -601323.155000,4612515.550000,2905,4355,105.744644,148.722336,152.309113,141.036377,127.052902,117.664474,116.912407,115.094223,115.135551,115.573563,119.052902,129.763641,147.681015,163.771927,176.705811,189.061172,189.747131,178.755386,155.639694,134.408279,124.647942,119.292572,113.854553,86.846291,68.242989,81.499184,91.747116,68.028107,29.629772,11.567786,10.350432,7.931417,7.181005,7.522327,8.456211,3.793394,0.270249,0.245455,0.275208,0.000000,0.022314,0.022314,0.000000,0.000000,0.000000,0.000000,3.525620,0.000000,0.000000,0.000000 -601331.555000,4612515.550000,2947,4355,92.593414,151.420685,151.999191,142.891754,129.825638,120.602501,118.825638,117.709946,117.395897,118.288460,121.081841,130.999191,148.718201,164.536377,178.354568,189.676865,190.503311,180.321503,156.767792,136.321503,125.528130,122.321518,116.081848,89.222336,69.908287,83.404152,92.470268,68.916557,30.792580,12.121507,10.552912,6.097532,7.881833,9.158690,8.235550,2.866947,0.828101,0.014050,0.100000,0.005785,0.069422,0.046281,0.185124,0.000000,0.000000,0.000000,0.949587,0.000000,0.000000,0.000000 -601338.155000,4612515.550000,2980,4355,105.435555,146.901672,153.405792,141.240509,127.637199,119.257034,116.951256,115.504974,116.281830,117.876869,119.174393,130.397537,147.885132,163.116547,176.769440,188.025635,190.455383,179.612411,155.381012,134.455383,124.166130,120.645470,114.463646,86.124825,69.050423,82.513252,92.447128,66.711586,29.602499,12.131421,10.405805,5.923976,6.845467,8.903319,6.995054,2.984303,0.646284,0.169423,0.159505,0.000000,0.051240,0.022314,0.000000,0.000000,0.000000,1.080165,0.000000,0.000000,1.073554,1.876033 -601342.555000,4612515.550000,3002,4355,113.807457,150.679352,154.770264,143.042984,129.588440,121.604973,118.762001,117.026466,116.877701,119.142166,120.985138,131.885971,148.662827,164.728943,178.208267,189.885956,191.712402,180.671082,157.439682,136.712402,125.373573,122.133904,115.563652,88.332253,69.910767,83.952087,94.067787,68.976875,31.852913,13.431424,10.505804,7.603319,9.446296,9.832247,9.981832,3.210749,0.557026,0.242149,0.114876,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601348.755000,4612515.550000,3033,4355,105.704140,154.056244,153.560364,143.155380,128.957047,120.196709,118.163651,117.204971,115.899185,118.791748,120.576874,130.204971,148.477722,164.089279,177.882660,189.039688,190.039688,179.990112,156.643021,136.023148,124.766960,121.717369,116.072739,87.312408,70.345467,83.981834,93.138855,68.147125,29.874401,11.007456,10.552086,6.737201,8.947948,7.808277,8.578525,4.111577,0.980994,0.238843,0.194216,0.009918,0.037190,0.034711,0.119835,0.000000,0.000000,0.000000,0.000000,0.866116,0.000000,0.000000 -601358.755000,4612515.550000,3083,4355,119.026466,152.412399,152.453720,143.900024,129.362823,120.288445,118.321503,116.776047,117.371086,118.610756,120.371086,130.346298,147.528107,164.015686,176.453720,187.561157,189.453720,178.866943,155.957855,134.966125,124.073563,120.908279,114.990921,86.726463,68.809113,83.371094,92.313240,68.569443,31.974401,13.462828,10.453738,5.522323,7.746295,8.428939,8.438028,4.012403,0.483473,0.096695,0.124794,0.271901,0.000000,0.000000,0.000000,0.000000,2.147108,0.000000,0.000000,0.000000,0.000000,0.000000 -601375.355000,4612515.550000,3166,4355,106.685143,152.551254,153.443817,145.080170,131.650421,121.741333,120.724800,119.014061,118.865295,121.063644,122.542984,133.088440,148.823975,164.658691,177.923157,189.220673,190.493393,180.576050,156.873566,136.071915,125.526459,121.534721,115.790916,88.253738,69.848785,83.576050,94.171089,70.633904,31.989277,13.593406,10.526465,6.739678,8.568608,9.166128,8.160343,4.331412,0.257852,0.444630,0.167769,0.034711,0.254546,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601388.355000,4612515.550000,3231,4355,115.968613,154.030594,155.228943,147.402512,133.832245,124.485130,121.757858,120.947945,119.840508,122.476868,123.460342,133.815720,150.782654,166.361176,179.774399,190.914886,192.171082,182.014069,157.890091,135.642181,125.774391,121.014061,116.245461,87.716530,69.369438,82.890099,93.832245,69.352913,31.666962,13.237207,10.567787,5.349596,7.729766,7.066127,7.386789,3.476866,0.456200,0.119836,0.297521,0.205785,0.034711,0.152893,0.142975,0.000000,3.309918,0.000000,0.975207,0.000000,1.034711,0.000000 -601394.555000,4612515.550000,3262,4355,123.547127,161.504974,158.984314,148.265305,134.860352,124.752914,121.752914,120.653740,119.984322,123.000847,122.736382,134.232254,150.480179,165.885132,180.124802,190.571091,191.405792,181.538025,157.496704,136.141342,126.257050,122.562828,116.463654,87.967789,69.868614,83.711594,94.364487,69.124817,31.000845,13.458695,10.587623,6.257034,8.380177,9.375221,8.162821,3.468601,0.569424,0.402481,0.079339,0.000000,0.000000,0.000000,0.203306,0.000000,0.000000,0.000000,0.000000,0.859504,0.000000,2.024794 -601400.755000,4612515.550000,3293,4355,132.942169,191.636383,170.867783,161.793411,144.867783,131.231415,130.727295,128.677704,128.851257,135.322327,130.520676,142.173569,157.380188,175.611588,189.735535,201.479340,200.776855,186.181824,164.438034,142.801666,132.115723,129.396713,126.000015,94.181831,79.355385,94.024811,101.677704,70.570267,32.842995,14.705803,11.454565,14.198362,9.261998,8.967784,10.247948,5.656209,0.514051,0.170248,0.341324,0.001653,0.068595,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.555000,4612515.550000,3312,4355,129.962830,192.756195,170.095047,162.723145,144.293396,131.004150,131.301666,128.781006,128.359528,135.500015,130.574402,141.871918,157.698364,176.219009,188.342972,201.433884,201.095047,185.855377,165.194214,143.086792,132.276871,129.590927,124.227287,95.070267,78.450432,93.855385,102.549606,73.078529,34.409111,15.138035,11.293407,11.995059,8.593401,9.200840,9.786792,6.095879,0.451241,0.574381,0.095042,0.049587,0.067769,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.955000,4612515.550000,3339,4355,135.127289,182.862808,168.986801,158.763657,143.590088,129.813232,130.044632,127.606621,127.705795,132.309097,128.904144,141.028107,156.342163,173.755371,188.119019,199.829758,198.846283,184.193390,162.209930,142.127274,131.061172,128.804977,123.400009,93.259514,78.309113,90.953728,100.970268,71.978531,33.796715,13.778529,11.218200,11.790097,7.733900,9.332247,7.554559,4.109926,0.725621,0.043802,0.262811,0.058678,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601414.755000,4612515.550000,3363,4355,123.557037,178.945480,165.251266,156.300842,141.044647,127.176880,127.292580,125.325630,125.474388,130.358704,127.647957,138.978531,154.664490,172.152084,185.135559,196.300842,197.466141,184.383484,160.804977,140.019852,128.110764,127.474388,121.581833,92.085960,74.705803,87.871086,98.218193,69.342171,32.681011,11.086794,11.052911,9.056211,6.990926,5.841336,8.462822,2.324801,0.318183,0.094215,0.051240,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.048760,0.000000,0.000000,0.000000 -601417.555000,4612515.550000,3377,4355,131.620667,184.050430,168.017365,158.314896,141.075226,130.298355,130.488449,127.678528,127.909927,132.447113,128.628937,140.414062,157.662003,174.471909,187.959518,200.405792,199.306625,186.752899,163.033890,142.133072,131.438858,128.819016,123.827286,93.397537,77.546295,90.678528,99.430588,72.257034,34.769444,13.803323,11.257043,10.372741,9.147123,9.925635,9.971089,4.622324,0.796696,0.321489,0.099174,0.016529,0.004132,0.000000,0.000000,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.755000,4612515.550000,3398,4355,125.386780,181.585114,167.072739,157.155380,143.337204,130.552078,129.940506,128.874390,128.180176,131.552078,130.064468,140.527283,158.651245,174.990067,188.023132,199.031403,199.923950,187.328918,164.105789,142.800003,131.072739,128.254547,123.890915,94.957031,77.370262,91.601669,101.692566,73.105797,34.618202,14.570265,11.262829,12.383487,8.494231,9.393405,9.610758,3.752902,0.939672,0.086777,0.289257,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.755000,4612515.550000,3428,4355,117.009109,175.819016,168.281830,157.141342,141.909927,130.100006,130.653748,127.662003,127.777710,131.711578,130.124817,141.885132,159.075226,175.331421,189.257034,200.579346,200.529770,187.959518,164.265305,141.843811,131.471909,128.926468,124.009109,94.521507,77.942993,91.166138,101.331421,72.852089,35.042171,15.090927,11.273574,10.768611,8.321503,10.047124,10.549603,3.458687,0.802481,0.228100,0.101653,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.755000,4612515.550000,3443,4355,107.295891,167.072754,165.196716,154.552094,140.899200,129.485977,128.733902,126.750435,126.783493,128.585144,128.064484,140.147125,157.287628,173.824814,186.519028,199.254562,199.287628,187.238037,161.874405,140.659531,129.403336,126.800026,121.436386,93.056213,76.006638,88.965302,100.585136,71.047951,34.312416,14.644646,11.039688,8.601668,8.556212,8.133901,7.854560,2.517362,1.047110,0.319836,0.311571,0.048760,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,1.101653,0.000000,0.000000,0.000000 -601433.755000,4612515.550000,3458,4355,119.121506,177.840485,166.435532,156.650406,141.923157,129.865311,129.352905,127.171089,126.782661,129.534729,129.220673,140.642151,157.666931,174.576019,186.848755,199.129745,200.261978,186.625610,163.526443,141.592575,131.427292,128.220673,123.336380,93.898361,76.625641,89.237206,99.782661,71.138031,34.071922,13.447124,11.212416,9.150428,9.534726,8.068608,8.894230,3.811578,0.373555,0.000000,0.573555,0.000000,0.003306,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.955000,4612515.550000,3474,4355,113.588448,172.067780,165.580170,154.456207,140.530594,130.059525,130.100845,126.596710,125.390099,128.894226,128.076050,139.919022,157.638031,174.348770,186.778503,197.894211,199.795029,186.753723,162.340500,141.985138,130.596710,127.472748,121.290924,93.282661,75.489273,88.745476,99.968613,72.852913,33.712418,14.114895,11.026465,10.472744,8.289270,8.610759,7.930592,3.130585,0.865291,0.114876,0.052893,0.000000,0.000000,0.000000,0.076033,0.000000,1.211570,1.171901,0.000000,0.000000,2.317356,0.000000 -601440.755000,4612515.550000,3493,4355,131.133072,175.918198,167.438858,157.686783,142.885132,130.405792,129.207458,127.860344,126.810760,129.141342,128.959518,141.066956,158.405792,175.810760,187.513229,198.240494,200.265289,187.628937,163.075226,142.529770,131.331421,128.075226,123.100014,92.909927,76.430588,90.736374,99.934723,72.240509,33.529774,13.667785,11.190928,8.804973,8.052081,9.228113,8.859517,3.505792,1.059506,0.132232,0.197521,0.052066,0.000000,0.000000,0.004132,0.057851,1.276860,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.155000,4612515.550000,3520,4355,121.268608,168.392578,168.243820,154.028946,141.921509,130.913239,130.871918,128.781006,128.012405,129.632248,130.681839,142.053741,159.185974,175.847122,188.971085,200.086792,201.342987,189.781006,164.045471,142.268616,132.384308,129.285141,123.954559,95.913239,77.838860,89.938034,101.144646,74.351257,34.995888,14.253736,11.268614,10.615716,8.869438,10.510758,9.362826,4.816539,0.540497,0.042149,0.161984,0.176033,0.000000,0.000000,0.000000,0.103306,0.000000,1.242149,0.000000,0.000000,0.000000,0.000000 -601449.955000,4612515.550000,3539,4355,118.052078,164.093414,168.333084,157.506638,144.159531,132.019028,130.390930,128.010757,128.754562,128.845474,130.597534,142.845474,161.093414,175.903336,188.754562,200.134720,202.258682,188.919861,164.390930,143.547958,132.374390,129.614059,125.118195,94.870262,78.184311,91.275223,101.721504,73.093407,33.671921,14.754562,11.374400,8.139682,8.014892,9.266956,11.601667,4.589265,1.171077,0.452894,0.056199,0.133058,0.048760,0.000000,0.000000,0.119009,0.000000,0.000000,0.000000,0.939670,0.000000,0.000000 -601454.155000,4612515.550000,3560,4355,112.595055,167.429749,169.487610,158.752060,143.842972,131.256210,131.231415,130.413239,129.710754,131.429764,131.413239,143.652893,160.966949,177.768600,190.148758,201.520660,202.702484,191.694214,166.223145,144.760330,133.628113,130.537201,125.545471,96.933899,78.917374,91.842995,102.066132,74.198364,36.371925,14.328943,11.413242,9.226460,8.671916,9.215717,9.030592,4.032242,1.642151,0.248761,0.413224,0.000000,0.000000,0.000000,0.000000,0.062810,1.283471,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612515.550000,3587,4355,116.543823,167.957031,168.634720,159.138855,144.238022,132.238022,132.560333,130.395050,130.180176,131.874390,133.849594,144.527283,162.990082,179.056198,192.725632,203.155380,205.023148,191.105789,167.196701,146.494217,134.833069,131.502487,126.345459,98.543808,80.593407,93.171906,104.039673,76.229774,37.560349,16.828115,11.485969,10.463650,9.852908,10.926462,10.988443,4.243809,1.254548,0.001653,0.347108,0.000000,0.057025,0.000000,0.048760,0.041322,0.000000,1.175207,0.000000,0.000000,0.000000,0.000000 -601462.755000,4612515.550000,3603,4355,121.447945,163.538849,167.290924,156.662827,140.654572,131.943817,130.555389,128.877701,128.423157,129.943817,130.910767,142.076065,159.489273,175.753723,189.175217,201.084305,200.737198,190.282654,164.728943,142.753738,132.778534,129.100845,123.927292,95.390099,77.786797,90.877701,101.282661,74.530594,34.894234,14.090100,11.266135,7.264476,8.757869,7.485139,10.213240,3.628106,0.602481,0.478513,0.119009,0.061984,0.003306,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,3.471075,0.000000 -601466.155000,4612515.550000,3620,4355,111.314888,163.852081,167.909927,157.645462,141.769440,131.628937,130.686783,127.728111,128.438858,130.223984,130.951248,141.942993,160.959518,175.794235,189.083481,200.612411,201.984314,191.339676,165.628937,143.984314,132.430588,130.207458,124.827286,96.761169,79.174400,93.100014,103.306625,73.885147,34.174400,14.428943,11.347954,8.000012,9.178530,9.323156,8.576874,4.743811,0.695044,0.346282,0.275207,0.000000,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.955000,4612515.550000,3634,4355,113.234734,169.052902,163.102478,157.003311,141.160339,132.276031,130.515701,129.152069,128.606628,130.019836,132.400009,144.102478,161.515701,177.573563,189.937195,201.961990,203.143799,191.681000,166.391739,145.937195,134.424789,131.226456,124.127289,96.904152,80.242996,92.623161,103.441345,75.722328,37.251263,15.518201,11.284316,9.687617,8.599189,10.377701,11.202493,4.981001,0.606613,0.260331,0.160331,0.000000,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.955000,4612515.550000,3669,4355,110.519028,166.221497,169.527283,157.130585,142.510757,132.940506,131.758698,128.833069,129.362000,131.081009,132.676041,143.618195,160.833069,178.204971,191.552078,202.279343,203.733887,191.733887,167.411575,145.742157,134.609924,131.535553,126.709106,97.023155,79.634727,92.849602,104.271088,75.494232,36.262833,16.033075,11.519028,8.305798,9.833902,9.049603,10.107452,5.798358,0.914051,0.545456,0.131405,0.066116,0.000000,0.000000,0.000000,0.167769,1.352893,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.955000,4612515.550000,3684,4355,104.523987,164.416550,163.871094,156.813248,141.119034,131.218201,129.813232,127.838028,127.606621,130.052902,130.267776,141.788452,159.234726,175.656219,189.780182,201.474396,202.292587,191.342163,165.862823,144.011597,132.623154,129.978531,125.672737,95.838028,77.209938,92.366951,103.052902,73.234734,33.441345,13.328115,11.424812,7.387616,8.049602,8.706628,9.549601,3.300008,0.686778,0.039670,0.052893,0.000000,0.011571,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.155000,4612515.550000,3715,4355,113.124809,161.620667,164.042145,155.298355,141.223984,131.967789,131.645462,130.050430,129.124802,130.620667,132.397537,143.083481,161.290085,176.802475,190.579330,202.232224,203.306610,192.447098,166.595871,145.050430,135.430588,130.579346,125.100014,96.637199,78.785965,92.785965,104.000839,75.009102,35.678528,14.623986,11.372746,9.904974,9.398363,10.577703,9.700016,4.700008,0.574382,0.566117,0.094215,0.047934,0.023967,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.955000,4612515.550000,3734,4355,101.462013,166.048767,167.106613,156.131409,143.023987,132.709930,131.842163,129.784317,129.139694,130.759521,133.453735,144.181015,161.511566,179.238846,191.974380,203.883453,203.643784,193.461990,168.189255,147.214066,135.090103,132.395889,127.990929,97.503326,81.412415,94.247131,104.362831,76.486794,36.048779,16.429771,11.635556,10.444643,9.533901,8.415719,10.631421,5.061167,1.114878,0.498348,0.189257,0.009091,0.000827,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.755000,4612515.550000,3768,4355,102.281830,160.967789,167.397537,157.364471,145.273560,133.959518,132.711578,130.496704,130.819016,131.942993,133.662003,145.050430,163.645462,179.604141,194.290100,204.794235,206.339676,193.744644,169.719849,147.290100,136.100006,132.223984,128.009109,99.587616,81.389267,94.959518,105.100014,76.868607,37.876881,16.459522,11.637209,7.768608,9.338033,9.821503,9.514892,5.576869,1.136366,0.384299,0.052893,0.062810,0.000000,0.000000,0.064463,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.755000,4612515.550000,3788,4355,117.652077,161.007462,167.709930,156.296692,143.585953,134.015717,131.453720,129.908264,129.263641,131.627289,133.420670,144.106613,160.949600,178.230591,191.371094,202.767792,204.073578,193.114899,167.693405,146.792572,136.073578,131.751251,126.263641,97.032242,79.437210,93.718193,105.759514,75.271919,36.007458,14.395885,11.478531,8.626458,8.951257,9.749602,9.729767,4.067777,0.636365,0.095042,0.240497,0.289257,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.155000,4612515.550000,3815,4355,101.548775,160.755386,164.639694,156.995056,141.771927,131.928940,131.193405,128.995056,128.970261,131.449585,133.854553,144.705811,161.565308,178.986801,191.747116,203.441345,205.573578,193.862808,168.449600,146.433075,135.028107,131.945465,128.854568,97.788445,79.292564,94.400009,106.160339,76.507454,35.482662,15.807457,11.714068,6.589268,9.589272,9.088445,8.164477,4.981000,0.900002,0.045455,0.214050,0.000000,0.016529,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.755000,4612515.550000,3833,4355,103.495056,164.792587,165.007462,155.230591,141.503326,132.734726,130.511581,128.247116,128.263641,130.949600,132.478531,143.197540,161.478531,177.296707,190.189270,202.346298,204.065308,192.437210,167.759521,146.156219,135.362823,129.999191,126.354553,96.652077,78.627281,94.023979,105.313232,74.412407,35.346302,13.695059,11.486796,7.367781,7.052909,8.412413,6.866129,3.104140,0.414050,0.174380,0.112397,0.149587,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.755000,4612515.550000,3848,4355,108.402489,162.650421,164.022324,155.468597,140.989273,132.476868,130.691742,128.559509,128.964478,130.865295,132.617371,142.278519,161.551254,177.807449,191.485138,202.212402,203.989273,191.733063,167.534714,146.030594,133.551254,131.146286,125.881828,96.724800,78.377701,93.906624,102.947945,75.171089,34.790932,12.829768,11.443820,6.166954,7.587619,8.679355,8.593403,2.796701,0.378513,0.394216,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.014876,0.000000,0.000000 -601516.555000,4612515.550000,3872,4355,114.826469,163.057022,163.751236,155.007446,142.577682,132.478531,130.602493,129.329758,129.635544,131.833893,132.850418,144.238846,161.685120,177.916534,192.610748,203.561157,203.751236,192.776031,167.123138,145.172729,135.495041,131.891754,127.263649,96.528107,78.966125,92.941330,105.106621,74.701675,35.420681,13.969440,11.569441,6.241333,8.129767,8.387618,8.228939,4.367777,0.427274,0.000000,0.059504,0.004959,0.001653,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.555000,4612515.550000,3897,4355,114.590935,167.739670,165.772720,157.433884,143.384293,135.111588,132.764481,130.095062,131.632248,133.119858,134.797531,145.367767,163.896698,180.764465,194.739670,204.524796,206.938019,194.946274,169.491730,147.640503,136.111572,133.260345,127.318199,97.855377,80.706619,94.681824,104.780998,76.086800,37.739693,14.795058,11.574399,8.557863,8.439686,9.178530,9.679354,4.447943,0.494216,0.337191,0.000000,0.003306,0.001653,0.000000,0.000000,0.510745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.755000,4612515.550000,3928,4355,116.425636,168.690094,167.640518,159.285126,144.524811,134.632248,132.524811,131.136383,130.954559,133.954559,135.921509,145.871918,164.342987,180.904968,194.433899,205.904968,206.657028,194.756210,168.838852,147.938034,136.111588,132.557861,128.409103,98.252083,80.219025,95.450432,105.301666,76.475220,36.242996,14.983488,11.673572,6.996705,9.680182,8.523982,8.729767,4.148769,0.370249,0.470249,0.087604,0.064463,0.000000,0.012397,0.239670,0.000000,2.737190,0.000000,1.036364,0.000000,0.000000,0.000000 -601531.155000,4612515.550000,3945,4355,106.773567,165.087601,167.624786,156.319000,143.211578,132.566956,132.360336,130.426453,129.393402,132.971909,133.434723,144.285965,162.038010,179.368607,193.790085,204.310760,204.550430,193.707428,168.715714,146.029770,135.624802,131.856216,127.963646,97.401665,78.922325,95.137199,104.236374,78.195053,35.732254,13.710761,11.633076,5.957035,6.535554,6.728115,8.347949,3.414058,0.439671,0.042149,0.206612,0.000827,0.030579,0.000000,0.000000,0.000000,0.000000,1.272727,0.000000,0.000000,0.000000,0.000000 -601534.755000,4612515.550000,3963,4355,110.285149,160.425629,167.491730,156.136368,142.086792,134.450424,132.243820,131.309937,130.500015,133.384308,134.458694,145.194229,162.590912,179.871902,193.491730,204.417358,206.045456,194.119827,169.814056,147.177689,136.326462,132.574402,126.772743,99.276886,79.252090,94.698372,105.888451,76.863663,35.805809,15.371093,11.524813,5.147942,7.872745,8.206628,8.973567,3.957860,0.492563,0.171901,0.055372,0.000000,0.004132,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.755000,4612515.550000,3978,4355,102.404152,163.924820,168.924820,157.693405,144.412415,135.544647,132.883484,130.883484,131.189270,133.412415,135.073563,145.371094,164.230591,180.255386,193.974396,204.371094,206.329773,194.875229,171.619034,147.957870,137.205795,133.833908,127.354568,99.156219,80.883492,95.536385,104.858696,78.453735,36.619026,15.474398,11.577705,6.695879,8.558694,6.743816,8.468609,3.370256,0.471902,0.056199,0.000000,0.000000,0.080993,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.155000,4612515.550000,4010,4355,125.547134,159.786804,165.786804,157.976883,144.481018,134.753738,132.233078,130.745468,131.745468,133.737213,134.076050,146.514069,163.985153,180.885971,194.679367,205.580185,207.348785,195.811600,170.952087,147.770279,136.208298,132.770264,128.381836,97.869431,79.671089,94.819855,104.604965,76.844643,36.952084,14.360349,11.671093,6.869433,9.091751,7.632246,6.957038,2.394221,0.167769,0.000000,0.186777,0.000000,0.093389,0.000000,0.483471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.155000,4612515.550000,4025,4355,122.704971,164.944641,166.407440,157.812408,145.192566,134.415710,132.283493,132.060349,131.258698,134.366135,134.341339,145.878525,163.316528,180.349579,194.556183,206.663620,207.448746,196.663620,171.225616,147.547943,136.886780,133.738037,128.390930,98.738029,80.647125,94.134727,105.680183,77.985962,35.341347,15.022332,11.671921,6.042985,7.341337,6.955385,9.117373,3.581826,0.469423,0.000000,0.130579,0.142975,0.000000,0.000000,0.055373,0.188430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612515.550000,4056,4355,127.267792,164.986786,169.705795,160.804962,146.771912,136.664459,133.854553,133.804977,132.300842,136.003311,136.499176,147.309097,165.540497,182.267761,196.846283,207.193390,209.400009,197.788437,173.226456,149.482651,137.482651,134.201660,130.127289,100.201675,80.771919,94.928947,108.069443,79.350433,36.953739,15.612415,11.829771,6.588442,9.416545,7.240512,8.663649,3.884305,0.986780,0.196695,0.144628,0.059504,0.166943,0.000000,0.042149,0.000000,1.289256,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.555000,4612515.550000,4072,4355,114.058693,174.819000,168.496704,158.852081,145.595886,136.066956,131.628937,131.876877,131.843811,135.033890,135.860336,146.298355,163.769440,180.298340,194.843796,206.447098,208.157852,196.918182,170.314880,149.347946,137.381012,133.133072,128.827286,99.199188,80.364479,94.405800,106.083481,78.422325,35.785973,14.885969,11.711588,6.529764,8.987620,7.729767,7.578525,3.498355,0.652894,0.066942,0.000827,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.555000,4612515.550000,4092,4355,118.613235,161.753738,168.786804,160.604980,147.431412,137.216537,134.695892,134.117371,133.439682,136.266129,137.679352,149.315720,166.224823,183.489273,197.621490,208.125626,210.547119,199.712402,172.819855,150.084320,139.728943,134.968613,130.836380,100.200020,81.547127,94.307465,106.191742,80.009926,37.613243,15.804976,11.894234,6.950422,7.869438,8.332247,9.237204,3.638851,0.719836,0.224794,0.386778,0.205785,0.000827,0.000000,0.033885,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.955000,4612515.550000,4124,4355,113.314888,172.463669,171.000839,163.207458,149.058685,138.802490,136.695053,135.678528,134.438858,138.314896,139.182663,150.108276,166.480179,184.587616,198.133087,209.653732,210.810760,199.257050,173.835556,150.612411,139.009109,135.736374,130.463654,100.901665,82.488449,97.248772,107.100014,79.604149,36.868614,15.856215,11.860350,6.507449,8.766131,8.447123,8.321501,2.782651,0.926448,0.143802,0.430579,0.020661,0.106612,0.000000,0.019008,0.000000,1.337190,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.155000,4612515.550000,4150,4355,130.083496,176.157852,169.984299,161.959503,147.496689,136.967789,134.397537,133.397537,133.678528,135.852081,137.389267,148.447098,165.141312,182.422318,196.992554,208.232224,209.843796,198.653717,172.364456,149.372726,137.513229,134.438858,129.100006,99.645477,80.372749,96.397545,106.662003,78.637215,37.257046,15.740514,11.736382,5.474390,8.821504,7.925635,6.847946,3.544636,0.809093,0.125620,0.000000,0.478514,0.010744,0.000000,0.105786,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.155000,4612515.550000,4165,4355,133.038025,176.732239,174.277695,165.162003,149.889267,137.509109,135.550430,133.228104,133.550415,138.079346,137.195053,147.905792,166.062820,183.195053,198.178528,208.657867,209.219849,199.219849,173.178528,150.699188,137.566956,135.352066,130.600006,99.550415,80.641342,95.319023,106.880997,78.054565,35.079357,15.962828,11.872746,6.449597,8.114892,10.131420,9.478528,3.288438,0.248761,0.142149,0.000000,0.020662,0.041323,0.262810,0.010744,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.555000,4612515.550000,4182,4355,140.699188,177.666122,171.616547,161.666122,149.219849,137.451248,135.054565,134.071091,133.864471,138.757034,137.930588,148.575226,166.145462,184.517365,197.170258,210.046295,210.418198,198.806625,172.963654,151.467789,138.302490,135.955383,130.690918,101.277702,81.236382,95.583481,108.409927,80.831429,35.905807,14.506630,11.881011,6.514886,9.596710,8.642164,9.683487,4.225626,0.937192,0.242149,0.074380,0.009091,0.540497,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.355000,4612515.550000,4201,4355,115.866959,179.197540,170.676880,164.602493,150.718201,136.966125,136.486786,134.990921,133.900024,137.924789,136.966125,147.990921,165.048782,183.610764,198.296707,209.619019,210.726456,199.098373,172.470261,150.263657,138.751236,134.676880,130.627289,99.230598,80.858696,94.412415,105.470268,78.156219,35.908283,14.534728,11.875226,5.073563,8.058693,7.161172,8.681831,3.054551,1.211572,0.702481,0.218182,0.000000,0.024794,0.000000,0.199174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.555000,4612515.550000,4227,4355,121.702492,173.586777,173.264465,160.826447,145.479355,136.206635,135.008286,132.421509,130.421509,133.140518,133.991745,144.809937,162.776855,180.314056,193.661163,203.834732,204.289276,192.958679,166.066116,145.016541,134.636383,132.206635,126.272743,97.644646,80.644646,93.016548,105.586792,75.867783,36.033077,15.144647,11.479358,11.306625,9.334726,9.151255,9.481833,2.942981,1.038019,0.136364,0.304959,0.000000,0.102480,0.000000,0.006612,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.155000,4612515.550000,4255,4355,126.345474,170.031433,171.419861,158.667786,144.940521,132.899185,132.552078,130.171921,130.312408,131.560349,132.254562,143.444656,161.353745,177.122314,190.196701,201.072739,201.717361,188.990082,163.386795,142.287628,131.791748,128.717377,123.436378,93.725639,76.576881,90.593414,101.204971,73.419861,34.510761,14.113242,11.221507,7.696707,7.497534,8.742164,8.223155,2.984304,0.442150,0.000000,0.296695,0.000000,0.000000,0.000000,0.000000,0.158678,2.536364,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.155000,4612515.550000,4275,4355,130.281830,181.205795,173.048767,160.751236,146.057022,134.486786,133.924805,131.379349,130.329758,132.098358,132.660339,144.139679,162.908264,178.536362,190.519836,202.643799,201.387604,188.313232,164.321487,142.883453,132.197525,130.858688,123.900009,95.660339,78.759521,90.503319,102.090096,74.742996,34.957874,15.246299,11.263656,10.160346,10.147122,9.365304,10.080181,3.381000,1.133887,0.417357,0.225620,0.001653,0.114050,0.000000,0.152066,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.955000,4612515.550000,4294,4355,123.826462,177.528946,173.661179,161.578522,146.545471,133.561996,134.074402,131.950424,131.148773,132.504150,132.256210,144.123978,162.644638,179.404968,190.619858,202.942169,202.958694,189.231415,164.702499,141.950424,131.652908,129.512405,123.090927,93.661171,78.305809,89.801666,100.595055,73.809944,35.016548,13.993405,11.190102,8.895881,7.683485,9.505801,7.675221,3.900834,1.052068,0.852068,0.063637,0.000000,0.000000,0.000000,0.156199,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.955000,4612515.550000,4309,4355,126.515717,181.879349,173.276031,161.747116,145.871078,133.995041,134.276031,131.912399,131.722321,133.003311,132.590088,144.457855,162.028107,179.011566,191.259506,201.920670,202.152069,188.119019,163.490906,142.928925,131.821487,129.366943,123.127274,94.854546,77.606628,90.036377,101.995041,73.176872,34.714073,14.846298,11.193407,9.692575,7.238857,10.183486,8.748775,3.463644,0.957854,0.252067,0.229753,0.000000,0.112397,0.000000,0.059505,0.000000,0.000000,0.000000,0.988430,0.747934,0.000000,0.000000 -601608.155000,4612515.550000,4330,4355,116.618202,182.634720,172.568604,161.816559,146.742172,134.593414,135.246307,132.783493,131.676056,134.221512,133.552094,144.676056,161.742172,178.733887,192.287628,202.279358,201.494232,188.552094,163.271103,142.304153,132.089279,129.072754,123.254570,93.758698,77.717377,88.866135,101.692581,72.882668,33.362003,14.245472,11.204977,8.971916,6.941337,9.566957,10.416543,4.010752,0.576035,0.235538,0.215703,0.000000,0.000000,0.000000,0.012397,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.355000,4612515.550000,4346,4355,116.121498,179.666962,172.666962,162.394241,146.642181,134.956207,134.766129,132.716537,130.840500,134.138031,133.311584,144.171097,161.609116,178.823990,191.567795,202.972748,201.526474,187.947952,164.600845,142.022339,131.187607,128.683487,124.427284,94.352905,77.857040,90.559509,101.749603,74.807457,33.716549,14.403324,11.311590,8.793403,6.961170,8.213236,7.236376,3.381826,0.619836,0.205786,0.095868,0.062810,0.000000,0.000000,0.000000,0.038843,0.000000,2.049587,0.000000,0.000000,2.523967,0.000000 -601614.155000,4612515.550000,4360,4355,126.977692,181.899185,171.981827,160.618195,147.163635,134.874390,134.676041,133.031418,131.056198,134.477692,133.114059,144.890915,162.494217,179.163635,191.279343,202.824799,202.114059,187.171906,163.320663,141.543808,130.519012,129.105789,124.072731,94.337204,77.428108,89.775215,100.651253,73.337196,34.403328,13.705803,11.279357,9.860346,6.866955,8.409931,6.916543,3.699182,0.712398,0.112397,0.290083,0.000000,0.129752,0.000000,0.000000,0.123141,0.000000,0.000000,0.000000,0.000000,1.462810,0.000000 -601618.155000,4612515.550000,4380,4355,126.838860,186.169418,172.946274,164.731400,148.706604,134.219025,135.723160,133.169434,131.450424,135.665298,134.161179,145.805786,162.433884,179.400833,191.508270,203.028931,202.880173,188.210739,163.690079,142.946274,131.723160,129.219025,123.227287,94.458694,78.070267,92.334724,102.219025,72.533073,34.640514,15.520679,11.202497,10.344643,7.410758,7.566957,10.940511,4.283480,0.790911,0.270249,0.491736,0.000000,0.049587,0.000000,0.077686,0.000000,0.000000,0.000000,1.157851,0.000000,0.000000,0.000000 -601621.155000,4612515.550000,4395,4355,122.815720,189.278519,175.096710,165.402496,149.228943,136.468597,136.162842,133.344650,133.096710,135.832260,134.352905,146.650421,163.823975,180.708267,192.947937,203.766129,203.162827,188.427277,163.989273,143.261993,132.055389,128.741333,124.154564,94.576042,77.807457,92.823975,102.171082,74.138023,35.311592,14.684315,11.286796,10.842163,8.333899,7.590097,9.093402,4.295875,0.767771,0.309092,0.405786,0.071075,0.000000,0.230579,0.000000,0.079339,1.395868,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.955000,4612515.550000,4424,4355,143.274399,188.489288,177.968628,164.919037,150.026474,136.381821,136.100830,134.191757,133.828110,137.828125,134.505783,145.943832,162.943832,179.745483,192.704163,203.952087,202.009949,185.910767,163.224823,142.431427,131.803314,128.505798,124.472748,94.158699,78.638031,91.563652,101.671089,73.596710,34.935555,15.092580,11.315722,12.273569,9.122329,9.816544,9.525636,4.649596,0.615704,0.197521,0.149587,0.133885,0.124794,0.000000,0.151240,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.955000,4612515.550000,4439,4355,146.219849,199.062820,176.699203,168.211594,150.922333,136.459518,136.773560,134.889267,134.550430,138.963669,134.591751,146.203339,162.872757,179.641357,192.657867,203.864456,201.839676,185.988464,162.707474,142.236389,131.228119,128.211594,123.781837,93.434738,77.806641,91.434731,100.641342,73.517387,34.558701,14.357043,11.252913,12.000844,7.378526,9.077701,8.008277,4.574390,0.457026,0.557026,0.048760,0.000000,0.000000,0.000000,0.007438,0.000000,0.000000,1.206612,0.000000,0.000000,0.000000,0.000000 -601640.955000,4612515.550000,4494,4355,151.501663,204.394226,181.253723,171.733063,152.600830,138.617371,139.476868,136.129761,136.757858,141.823975,135.774384,148.253723,163.972733,181.476868,194.278519,205.138031,202.724808,186.361160,163.286789,144.394226,132.088440,129.096710,124.972748,95.295067,78.865311,93.914902,101.650429,72.427299,34.972740,16.045473,11.361176,14.290101,9.258691,9.807452,10.394229,4.246291,0.388431,0.637192,0.028100,0.082645,0.055372,0.000000,0.155372,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.755000,4612515.550000,4508,4355,157.479340,201.760330,181.223145,170.388428,151.743805,139.371902,137.727280,136.685944,135.512405,141.694214,136.181839,146.909088,162.446274,179.917358,194.239670,204.438019,201.512390,185.933884,162.710739,142.504135,130.876038,127.603325,123.545471,93.735550,78.115715,92.214890,100.917374,71.570267,36.157040,15.904151,11.231424,13.571918,8.606626,8.911584,10.359520,4.804968,0.747936,0.203307,0.057852,0.060331,0.142975,0.000000,0.000000,0.187604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.955000,4612515.550000,4524,4355,130.826462,174.330597,171.305801,162.082657,147.173569,137.330597,134.487610,132.644638,132.892563,135.049591,134.438019,145.644638,162.264481,178.000015,189.636383,200.909103,199.553741,187.801666,162.247955,142.057861,130.834717,128.347122,123.181824,94.537201,78.090927,91.983482,101.842987,74.165298,35.917374,16.452085,11.198366,8.738857,9.335551,9.194228,9.932245,5.814884,0.609093,0.452068,0.000000,0.000000,0.062810,0.004132,0.000000,0.047108,2.490909,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.155000,4612515.550000,4540,4355,121.571922,163.241333,169.414886,157.497528,144.373566,133.778519,131.431412,129.439682,130.299179,131.076050,133.166946,142.943817,160.257858,176.522324,188.852905,197.737198,197.398361,186.150421,161.795044,140.233063,128.596710,126.092575,121.200012,93.059525,76.894234,90.315720,100.861176,73.100838,34.489277,16.384315,11.018201,8.489270,8.422328,7.783484,8.649601,5.194223,0.867772,0.064463,0.000000,0.060331,0.167769,0.000000,0.269422,0.041322,0.000000,0.000000,0.000000,1.124794,0.000000,0.000000 -601657.155000,4612515.550000,4575,4355,98.551254,164.419006,168.840485,157.964462,143.807449,134.171097,132.567780,129.485138,128.534729,131.088440,131.939682,142.625626,160.642136,175.427261,187.989243,197.617355,197.435532,184.683472,161.005783,138.311584,128.551254,125.129768,120.609108,93.567787,76.757866,91.162827,101.171089,73.766136,34.997540,14.307456,10.964481,7.171912,8.119021,8.073566,8.102494,4.089266,1.274384,0.142976,0.215703,0.000000,0.000000,0.151240,0.021488,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.955000,4612515.550000,4589,4355,107.957863,164.081818,167.304962,157.709915,143.784302,134.883469,132.271912,130.230591,130.073563,131.635544,132.627289,143.346283,160.156204,175.519836,188.825623,198.073563,198.371078,185.742981,161.420670,139.280167,129.131424,126.420677,121.263649,93.569435,76.776054,91.602493,100.883484,73.602501,35.652084,15.268612,11.023985,6.317367,8.055384,8.714890,9.156213,2.495873,0.904135,0.156199,0.176034,0.000000,0.107438,0.000000,0.039670,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601664.955000,4612515.550000,4614,4355,114.881004,163.434723,170.062820,159.467789,145.013229,135.128937,133.971909,131.980179,131.889267,131.773560,133.335556,144.558685,162.467789,177.674393,190.525635,198.071091,199.302490,187.302490,162.509109,141.839676,129.814896,127.261169,122.145470,93.723976,77.591751,91.302490,100.781830,75.095879,35.641342,15.504149,11.104151,7.661171,9.104973,8.149600,8.480179,4.500834,1.057853,0.752067,0.364463,0.323141,0.130579,0.025620,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.555000,4612515.550000,4627,4355,108.233070,163.117371,162.477692,153.027298,142.418198,136.604965,134.543808,132.345459,132.428101,134.180176,134.733902,146.023163,162.428101,177.304138,190.957031,199.576859,200.940506,188.535538,164.816528,145.072754,135.180176,130.213242,125.800018,99.031418,81.204971,93.687614,103.902489,72.604965,38.439690,15.621505,11.436381,8.372740,10.202494,11.172741,12.508279,7.195877,5.176863,5.889259,4.611572,5.217357,4.720662,3.828926,2.383471,3.722315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.755000,4612515.550000,4648,4355,110.950432,158.461182,169.890930,159.510773,143.725647,133.543823,131.527283,129.725632,130.229767,131.386795,132.601669,142.593414,160.527298,176.568604,188.105789,198.262817,197.709091,184.676041,161.031433,140.593414,128.196716,125.585136,120.618195,92.833069,77.535553,90.320679,101.990097,73.676048,34.981838,16.324812,10.965308,5.735549,8.364476,7.867781,8.810756,4.251248,1.300829,0.331406,0.259505,0.000000,1.044629,0.000000,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.355000,4612515.550000,4671,4355,115.722336,165.895889,169.383484,159.780182,145.590088,135.854553,133.052902,132.218185,131.433060,133.490906,134.804962,144.317352,162.912415,178.168610,191.540512,199.962006,199.614899,188.366959,162.904144,141.251236,131.697525,127.978523,123.490929,94.433075,78.647957,93.474396,102.672745,75.028122,37.441341,15.892581,11.226464,6.483485,10.826463,7.546294,8.029767,4.166125,0.498349,0.187604,0.000000,0.000000,0.000000,0.580166,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,2.682645,0.000000 -601680.555000,4612515.550000,4692,4355,118.547958,163.665298,166.880188,157.904968,145.326462,135.194229,132.516541,131.425629,131.169434,133.128113,133.533081,144.037201,161.929764,177.285141,189.896713,200.706635,199.458694,187.144638,162.095062,142.169434,130.136383,127.805801,123.136383,94.698364,78.285149,93.442169,102.095055,75.276886,36.929771,14.988448,11.194234,6.576872,7.747119,7.928938,7.265303,4.804141,0.967772,0.759506,0.065290,0.000000,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.955000,4612515.550000,4724,4355,111.360344,166.327271,167.971893,158.988434,146.195038,134.600006,134.285965,130.897537,131.600006,133.178528,134.426453,144.806610,161.930573,177.847931,190.467758,199.467758,198.955368,187.757019,163.145447,140.740494,130.467789,126.806618,121.236366,94.500839,77.641335,91.616539,101.211586,73.723976,35.029778,13.692579,11.021505,7.998361,8.289269,8.243815,7.973569,4.423976,0.462812,0.215703,0.204959,0.000000,0.000000,0.000000,0.010744,0.000000,2.622314,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.555000,4612515.550000,4752,4355,121.647125,166.568634,169.130600,157.552094,144.411591,134.642990,131.097534,129.816544,129.320679,132.957047,133.114059,143.990112,161.469437,177.535553,190.056213,199.543823,199.750443,186.576889,163.337219,141.874405,130.642990,127.444641,121.527290,94.419846,77.395058,92.436378,102.345467,75.353737,36.039688,15.399192,11.047953,5.276043,7.649601,9.045468,8.329765,3.652900,1.004961,0.320663,0.000000,0.051240,0.204133,0.000000,0.000000,0.121488,0.000000,1.193388,0.000000,0.000000,0.000000,0.000000 -601696.355000,4612515.550000,4771,4355,95.360344,155.415710,160.234711,154.945465,141.928925,134.292587,134.416534,132.755386,135.242981,136.854553,140.300827,149.879349,167.796692,183.375214,196.573563,205.143799,204.416534,193.614883,167.714050,145.730576,134.325638,129.554565,124.309105,97.214890,78.768616,92.622330,102.943817,75.786797,36.134735,15.218200,11.300845,4.689266,8.190923,9.402494,8.552079,2.461990,1.077688,0.219009,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.155000,4612515.550000,4800,4355,116.089272,167.857864,169.667770,160.866135,146.014908,136.535553,133.386795,131.965302,132.006622,134.180176,135.114059,144.890945,161.923996,178.147110,190.709106,201.221512,199.857880,188.841339,164.543823,141.857895,130.659515,127.800018,122.890923,93.998360,77.138863,90.428116,103.262825,74.742172,37.634727,13.737209,11.171921,5.921498,6.429764,7.960344,7.559517,2.536370,0.452894,0.155373,0.058678,0.057851,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.355000,4612515.550000,4816,4355,115.309097,168.333908,170.796692,159.962006,145.342148,135.953735,133.482651,131.300827,130.441330,132.267776,133.780182,144.730576,160.499191,178.681000,190.383469,199.780167,200.011566,187.970245,163.937210,141.259506,130.276031,126.854546,121.400002,94.152069,76.499191,91.284302,101.358681,74.937210,36.309113,13.639686,11.036382,4.409101,8.069435,6.697535,7.650428,3.275214,0.879341,0.519010,0.364463,0.142149,0.001653,0.229752,0.222315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.155000,4612515.550000,4835,4355,114.362823,160.139679,166.461990,159.106628,144.759521,136.214050,132.908279,131.346298,132.635544,134.619019,134.916534,145.222321,162.949585,178.982666,191.800842,200.561172,200.007462,189.585968,164.924789,143.486786,132.817368,129.858688,123.990921,95.685135,79.486794,92.660339,103.470261,77.197540,36.114895,15.190928,11.271920,7.528937,9.405801,8.843816,8.733900,5.600835,1.204134,0.893390,0.590083,0.380992,0.075207,0.109091,0.323141,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.355000,4612515.550000,4866,4355,132.830597,172.359543,168.425659,159.475235,144.855408,135.417374,133.714890,131.880188,130.971085,133.425629,133.739685,144.309952,161.921524,178.781021,190.533096,200.673584,199.037216,188.309952,164.062012,142.301682,131.128113,128.070267,121.045471,94.152916,76.896721,91.119858,103.260353,75.128120,34.987621,14.521504,11.004151,5.005795,6.874393,6.645465,7.861171,3.261164,0.516531,0.077686,0.113223,0.000000,0.200000,0.101653,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.355000,4612515.550000,4881,4355,122.857040,177.751266,171.718201,162.776047,149.181015,137.602493,134.900009,134.271912,133.048767,135.924789,136.776047,146.726471,163.776047,179.205811,192.222336,201.495056,201.437210,190.982666,165.908279,144.338043,133.544632,129.007446,124.809097,97.371086,79.569443,94.544647,103.825630,76.503326,36.536385,16.000845,11.346300,6.855385,9.026460,9.327287,11.266130,2.991742,0.766117,0.661158,0.114876,0.000000,0.000000,0.000000,0.096695,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.755000,4612515.550000,4898,4355,112.862007,173.126465,170.721512,161.762833,148.242172,135.812408,132.134720,131.481827,130.142990,132.886795,133.374390,143.341339,159.845474,176.275223,189.283493,198.820679,199.366135,189.878540,164.779358,142.870270,130.671921,128.886795,123.936378,94.514900,77.895065,91.283493,103.415726,77.250435,37.316547,15.873572,11.266961,6.376045,10.943816,7.944641,8.719023,3.816535,1.085126,0.826448,0.271075,0.000000,0.000000,0.000000,0.285951,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.755000,4612515.550000,4923,4355,132.156219,177.585968,172.792587,163.660355,151.214066,138.949600,138.139694,135.800842,135.172745,138.726471,138.759521,148.643814,165.131424,182.585968,194.247131,204.552917,203.643814,192.172745,168.404144,146.594238,134.255371,130.825623,125.990913,98.114876,79.941322,94.883476,106.676872,77.999184,38.123161,16.932249,11.453738,6.199184,9.285140,10.217370,9.224809,3.883479,1.003307,0.366943,0.128099,0.007438,0.001653,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.955000,4612515.550000,4939,4355,139.919846,170.455383,171.829758,161.540497,149.623138,138.449585,137.226456,136.499176,137.218185,140.504135,140.231400,151.639679,168.077682,185.168594,196.408264,206.457855,205.738846,192.664459,167.838013,146.705795,134.540512,130.639679,125.854553,97.077705,80.226456,94.879349,104.391747,78.259521,37.077705,16.202497,11.441341,5.619845,8.287619,7.807451,7.188443,4.448769,0.993391,0.271075,0.284298,0.088430,0.035538,0.000000,0.000000,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.355000,4612515.550000,4956,4355,129.449600,173.755386,170.970245,165.284302,149.689270,138.730591,136.672745,134.846298,134.383484,137.325638,136.664490,147.838043,163.986786,180.681000,193.433075,202.887619,202.119034,190.730591,167.003311,144.598373,134.069427,129.548767,125.490921,96.457863,79.813232,92.961998,104.639679,79.019844,38.358696,16.341341,11.408284,6.023978,7.919849,8.342164,9.076874,3.620668,0.506613,0.038017,0.056199,0.004959,0.059504,0.000000,0.054546,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.155000,4612515.550000,4975,4355,121.353745,183.072754,173.915726,166.114075,151.006638,139.477707,136.204987,134.874405,134.006638,137.031433,135.775223,147.114075,164.271103,180.923996,193.535553,202.808289,203.039688,191.304153,167.246307,145.750443,132.643005,129.287628,124.345474,96.171921,79.519028,93.477707,104.824814,76.593414,34.733902,14.890926,11.304150,4.917365,8.702495,7.230593,7.438857,2.412402,0.760332,0.047108,0.124794,0.347935,0.087604,0.000000,0.066116,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601740.755000,4612515.550000,4993,4355,126.949608,182.933060,177.048767,165.941330,149.114883,136.247131,134.197540,131.726471,129.619034,135.478531,133.395889,144.255371,161.949585,178.280167,190.387619,199.635559,200.528107,188.635559,164.214050,143.040497,130.990921,126.065308,122.263657,94.486794,77.668617,91.957870,102.329773,76.833900,35.395885,13.336380,11.114896,5.546293,8.396710,8.303321,9.420676,3.400008,0.141323,0.272728,0.000000,0.004132,0.019009,0.000000,0.006612,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.355000,4612515.550000,5026,4355,126.778534,176.375198,170.507431,161.945435,150.044632,137.019836,136.408264,133.482651,132.771912,137.548782,136.077682,146.846283,163.680984,182.036346,194.424774,204.168579,202.689240,192.267761,167.284286,144.581818,134.309097,130.127289,125.763649,96.598358,78.449600,92.201668,104.664474,76.400009,34.333904,14.126464,11.433077,4.979348,6.615717,8.236378,6.708277,4.034717,0.549588,1.111572,0.412397,0.284298,0.156199,0.055372,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.755000,4612515.550000,5043,4355,111.288452,177.544632,171.941330,162.668594,147.866959,135.040512,134.875214,132.015717,131.470261,131.866959,133.172745,144.048782,162.709915,178.164444,189.999176,199.453705,198.652054,187.073563,161.966125,140.602493,130.990921,126.635551,121.536377,94.362823,76.552910,90.519844,101.329765,74.048790,35.528118,14.271091,11.048779,8.239683,8.090922,8.360344,8.691750,2.772734,0.205786,0.239670,0.236364,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.347108 -601755.155000,4612515.550000,5065,4355,120.957870,175.658691,171.733063,161.328110,145.708267,135.683502,134.328110,130.485138,131.336380,131.972748,132.410767,144.104965,161.832260,177.493393,188.766129,198.377701,199.261993,186.014053,162.270279,141.253723,129.650436,126.981010,121.336380,92.419029,76.898376,89.815727,101.625648,74.452095,34.501671,14.614067,11.030598,8.257039,7.902492,7.926458,8.732245,3.273561,0.647109,0.237191,0.171075,0.000000,0.000000,0.000000,0.004132,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.755000,4612515.550000,5078,4355,126.316536,177.961166,177.217361,164.448761,147.895065,134.870270,133.663635,131.357864,130.043808,131.812408,131.754547,143.523163,162.952896,176.754547,189.638855,198.324799,197.861984,185.671906,161.465302,139.862000,129.688431,125.944633,120.027283,91.655380,75.886795,89.126450,101.473557,73.638855,35.704979,13.325637,10.911590,9.219024,8.673567,9.061997,8.686790,4.486785,1.355374,0.424794,0.509093,0.467769,0.272728,0.013223,0.000000,0.100000,0.000000,1.338017,0.000000,0.000000,2.406612,0.000000 -601761.555000,4612515.550000,5097,4355,127.166962,176.084305,172.786789,161.952072,147.613235,135.604980,133.844650,131.200027,131.092590,132.233078,132.125641,143.133896,162.200012,177.158691,189.844635,199.423157,197.795044,185.175217,161.390091,140.290924,129.456223,127.638039,121.927299,93.117378,76.720688,89.290932,100.547134,74.340523,33.919029,13.837208,11.084316,9.142989,8.910756,9.733898,7.904146,4.400836,1.548764,0.567771,0.670249,0.153719,0.057025,0.030579,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.555000,4612515.550000,5127,4355,121.415726,176.680176,175.754547,163.043808,149.176041,135.919861,135.019028,133.275223,132.019028,133.828949,133.671921,144.432251,163.002487,179.506622,190.878525,200.209091,199.118195,185.771088,161.919846,141.432251,130.019028,128.333084,121.845474,93.448784,77.068619,89.399193,100.688454,73.473579,34.142994,15.828944,11.076878,9.389270,7.760343,8.219022,8.849602,3.125627,1.064465,0.176034,0.013223,0.054546,0.048760,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,1.562810,0.000000,0.000000 -601770.555000,4612515.550000,5142,4355,121.644653,182.471069,176.305786,164.586777,149.380173,136.008270,135.727280,132.950424,133.776871,135.000015,133.917358,144.842972,162.652893,179.851242,190.735535,201.438019,200.495865,185.793396,162.074387,141.363632,130.677689,128.363647,122.454559,94.033073,77.140518,90.801666,103.231422,74.487625,35.917381,15.517374,11.132251,11.056215,8.057037,10.038857,8.433897,2.500833,0.684300,0.189257,0.051240,0.000000,0.000000,0.001653,0.000827,0.273554,0.000000,0.000000,0.000000,2.155372,0.000000,0.000000 -601773.155000,4612515.550000,5155,4355,120.733086,182.285141,177.574402,164.227295,149.227295,136.946304,136.111588,132.971085,133.293411,134.954559,133.987625,145.582657,163.020676,179.260345,191.632233,200.830582,199.904953,187.028946,162.500015,142.690094,131.384308,128.566132,122.863647,94.400841,77.781006,91.409103,102.045464,75.698364,34.690102,15.266960,11.169440,9.352080,7.797534,9.409104,7.776045,3.461164,1.258681,0.199175,0.271075,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.555000,4612515.550000,5172,4355,119.768608,183.504150,173.991745,161.851257,146.694229,134.487625,133.876053,131.735550,131.322327,133.000015,132.462830,143.512405,161.851257,177.793411,189.834732,198.785141,197.363647,184.413239,160.776871,140.223160,129.090927,125.281006,120.545471,92.297539,75.950432,88.942162,99.983490,72.603325,33.876053,13.416545,10.958697,7.588444,7.135550,7.034722,7.432244,2.457857,0.628101,0.271902,0.036364,0.000000,0.000000,0.000000,0.071901,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.555000,4612515.550000,5197,4355,121.555382,183.166946,174.609924,163.241333,146.742157,134.510757,134.857864,132.568604,131.717377,133.709106,132.155380,144.147110,161.047943,177.957031,189.485962,200.155380,198.676041,184.742157,161.262817,140.378540,129.527283,127.262825,121.618195,92.634727,76.709106,90.295883,102.328941,72.196709,34.477703,14.543820,11.056218,9.504973,7.435550,8.602491,7.336379,3.783480,0.696696,0.480166,0.525620,0.189257,0.300000,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.155000,4612515.550000,5210,4355,128.404968,187.446304,175.438034,166.272751,149.752075,136.057861,134.867783,132.834732,133.057861,135.305801,133.041336,144.652908,162.239685,179.289276,190.760345,201.719025,199.504150,185.719025,161.454559,140.231415,130.206635,127.892578,121.181831,91.958694,75.561996,89.892578,100.578529,72.173569,33.206631,13.175223,11.016548,8.733070,6.502491,7.485963,8.373568,2.957031,0.376861,0.101653,0.245455,0.000000,0.000000,0.000000,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.555000,4612515.550000,5227,4355,135.052902,193.201660,177.408264,167.804962,151.738846,136.937210,137.201675,136.433075,135.457870,139.193405,135.821503,146.763641,164.366943,181.986786,194.052902,203.276031,200.904129,187.548767,163.011566,142.259521,131.185150,127.838028,122.490921,93.036377,77.077705,90.424805,101.532242,73.127289,35.523987,14.727290,11.135555,10.568610,7.600013,8.693401,9.008279,3.837198,0.748762,0.314877,0.328100,0.081819,0.134711,0.000000,0.361984,0.000000,2.534711,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.355000,4612515.550000,5256,4355,135.504974,196.314896,178.513229,169.042160,151.447113,137.976044,137.116547,134.083481,133.827286,138.381012,134.257034,145.777695,163.504974,180.133072,192.133072,202.620667,201.182663,186.521500,162.141342,141.860336,131.562820,128.339676,122.736374,93.471916,76.752907,91.876869,100.819023,73.620674,35.207455,14.700845,11.157870,10.706627,7.147120,8.239682,9.554561,2.843808,0.365290,0.229753,0.076034,0.057025,0.000000,0.000000,0.107438,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.555000,4612515.550000,5302,4355,154.438034,205.328110,182.227280,174.466949,155.128098,142.921509,143.855377,143.227295,143.847122,149.607437,143.623962,155.342972,171.623962,188.772720,201.582642,211.566116,208.756195,191.318176,168.384293,146.698349,134.681824,130.698364,125.136383,95.987617,79.169441,93.962830,103.681831,74.028938,34.392582,14.189273,11.376052,13.669438,8.101665,10.154558,9.288443,5.328935,1.335539,0.574381,0.817357,0.475207,0.434711,0.315703,0.119835,0.238843,0.000000,0.000000,0.000000,0.000000,0.603306,0.000000 -601813.955000,4612515.550000,5359,4355,122.898361,166.427277,170.452072,161.857040,145.724808,136.567780,132.923157,131.468613,131.121506,132.295059,134.038864,145.080170,162.493393,178.906616,191.716537,200.716537,199.947937,187.501663,163.452072,141.526459,130.303329,126.865311,122.881836,92.369446,76.865311,90.931427,103.129768,73.981018,35.303329,15.471093,11.171093,7.961170,9.190924,7.845467,8.776048,5.168603,1.171903,0.490911,0.117356,0.000000,0.112397,0.218182,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.155000,4612515.550000,5390,4355,102.338860,164.684326,172.998367,160.552094,145.667786,136.279358,134.593414,131.973572,131.808289,132.560349,133.461182,144.833084,163.485977,178.238037,190.709106,199.527298,199.783493,187.403336,163.452911,140.932251,130.866135,127.535553,120.981834,93.634727,75.271088,91.064476,101.899185,74.171921,34.998367,14.795885,10.998366,6.016541,7.449601,6.228111,8.066130,3.349594,0.595043,0.209918,0.000000,0.053719,0.056199,0.000000,0.000000,0.050413,1.214876,1.242149,0.000000,0.000000,0.000000,2.197521 -601827.755000,4612515.550000,5428,4355,101.353737,165.353745,173.766953,161.866135,147.386795,137.444656,136.419861,134.196716,133.081009,134.874390,135.246292,147.485977,165.039688,181.684311,194.560333,202.312408,200.973557,190.072739,165.155396,143.684326,132.684311,128.535553,123.072739,94.642990,77.990097,92.527290,102.915718,76.981834,36.568615,17.160351,11.188448,8.081004,8.214064,9.826463,10.078528,4.109926,0.854547,0.062810,0.284298,0.000000,0.056199,0.142149,0.011571,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.555000,4612515.550000,5487,4355,104.613243,165.471069,171.834732,162.917374,146.867783,137.008286,134.264481,132.735550,132.909103,135.454559,135.256210,145.570267,163.719025,179.115707,192.900848,202.214890,201.223160,189.173569,163.719025,143.231415,131.991745,128.471085,122.181831,95.297539,76.876053,91.016548,102.735550,75.190102,35.942169,15.452085,11.107457,6.742986,6.404146,6.828937,8.571087,2.588436,1.736367,0.098347,0.019835,0.000000,0.000000,0.358678,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.155000,4612515.550000,5585,4355,122.820679,167.762817,172.481827,161.738022,147.754562,138.109940,135.109924,133.647110,133.283493,134.985962,136.713226,146.721512,165.002487,180.597534,193.209091,203.233887,202.845459,190.746292,166.366119,144.564484,133.366119,129.291763,124.390923,94.754570,78.820686,94.432251,105.771088,77.200851,36.399193,15.061175,11.308284,6.902492,6.712411,8.280180,7.834724,2.511577,0.674382,0.228100,0.216530,0.000000,0.063637,0.000000,0.055372,0.176034,0.000000,0.000000,1.003306,0.000000,0.000000,0.000000 -601891.955000,4612515.550000,5749,4355,133.404144,171.462830,173.793411,164.314072,148.421509,137.281006,136.528931,134.090927,132.950424,136.917374,136.966965,147.892578,165.338852,182.380188,195.041336,205.157043,204.578522,193.281006,167.909103,145.694229,133.942169,130.842987,124.909103,97.289276,78.900841,92.611588,105.900841,78.586792,35.256218,15.171092,11.355392,5.730589,7.955388,7.355387,8.410759,3.040504,0.546282,0.423141,0.070248,0.000000,0.031405,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,1.066942,0.000000,0.000000 -601906.355000,4612515.550000,5821,4355,117.890923,183.498352,170.837204,164.002487,150.779343,137.126450,136.597534,135.349594,133.589264,137.605789,137.217361,147.374390,165.266953,182.341324,194.580994,205.556198,205.812408,194.159515,168.523148,147.762817,135.324814,131.085144,125.390923,96.300018,79.217369,92.341339,104.465302,78.407455,35.085968,13.872746,11.399193,5.257033,6.825634,6.763652,7.002492,2.159510,0.713225,0.096695,0.000000,0.000000,0.165290,0.000000,0.170248,0.000000,0.000000,0.000000,1.107438,0.000000,0.000000,0.000000 -601912.955000,4612515.550000,5854,4355,108.485138,183.171097,179.700027,168.493408,152.187622,140.344650,138.873566,137.443817,136.270279,139.162827,138.708267,149.468628,168.468628,184.741348,198.295074,209.204163,208.815735,196.832260,171.650436,149.923172,138.385971,134.633896,129.790924,100.790916,82.476875,96.757858,109.071907,82.005806,38.452084,15.709109,11.799192,8.177699,9.083488,9.161173,9.093401,4.334718,0.525621,0.098348,0.086777,0.016529,0.015703,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601917.155000,4612515.550000,5875,4355,113.538849,170.100845,176.381012,164.423172,146.290939,136.579346,136.381012,133.620667,133.529770,134.513229,135.951248,147.794235,164.364487,182.810760,194.306625,206.686783,207.976044,194.703323,169.546310,146.934723,135.942993,134.050430,129.645462,99.744644,83.339684,97.455383,110.447121,76.752907,39.959526,15.423985,11.785970,11.406628,9.478530,9.349600,10.442163,4.894223,1.336366,0.654547,0.247935,0.004959,0.058678,0.391736,0.000000,0.195042,3.019835,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.955000,4612515.550000,5894,4355,119.757034,182.128937,178.442993,165.674393,149.360336,137.583481,137.269440,134.814880,134.195053,135.864471,136.418198,148.335556,166.509109,184.112411,196.352081,208.277695,208.847946,194.732239,171.740509,148.566956,138.484314,134.517365,129.872726,100.558693,84.814896,97.343811,110.046303,80.674400,40.038036,15.954563,11.806630,12.070262,10.009107,11.209107,11.080180,5.779347,0.328927,0.641324,0.392563,0.000000,0.155372,0.000000,0.323142,0.240497,0.000000,0.000000,0.936364,0.000000,0.000000,0.000000 -601926.755000,4612515.550000,5923,4355,116.994232,177.379364,178.288452,161.693405,146.040512,135.073563,136.602493,134.090103,132.610748,134.635544,135.486801,148.065308,166.362823,183.090103,194.850433,207.974396,209.742996,195.635559,171.304977,148.817368,137.957886,136.197540,130.809097,101.709930,84.974388,96.974388,110.668610,80.321503,39.147953,16.489277,11.891755,12.523982,9.671090,10.752908,10.854561,4.976042,0.852895,0.610745,0.297521,0.109091,0.053719,0.000000,0.032232,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.555000,4612515.550000,5937,4355,114.845467,178.552078,176.948761,164.552078,146.403305,136.180191,135.667786,133.981827,132.014893,133.775223,133.923981,146.196701,165.196701,182.494217,195.097534,207.171906,206.477692,194.642975,169.692566,148.221497,136.915710,133.659515,127.527290,99.304146,82.742165,96.965302,106.915718,78.362000,38.948780,15.781010,11.593407,11.218196,9.310758,10.030592,12.348777,4.692570,1.200002,0.597521,0.347934,0.423141,0.660331,0.386777,0.151240,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601933.955000,4612515.550000,5959,4355,124.993401,184.844650,180.200027,165.183502,149.290939,137.844635,136.761993,135.439682,134.109100,136.059509,136.728943,147.811600,165.100845,183.076065,195.563660,206.935547,208.290924,193.497543,169.447952,148.629776,136.133896,135.406616,128.745468,99.257858,83.638031,95.001663,107.472740,78.563652,38.414898,14.857870,11.704151,9.514065,8.524809,8.705799,10.673569,5.884306,1.264465,0.694217,0.532232,0.000000,0.428926,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,1.138017,0.000000,0.000000 -601940.155000,4612515.550000,5990,4355,122.498360,180.733078,177.729752,169.779343,154.010757,141.242157,141.126450,137.126450,136.366135,137.952896,137.828934,150.184311,168.250427,185.547943,197.324799,209.622314,209.952896,196.043808,173.010757,150.696701,138.523148,135.688446,129.209106,99.985970,83.572746,95.886803,108.283493,78.473579,38.217377,14.319852,11.746300,10.177700,9.157868,10.836377,10.952905,6.154553,2.935540,1.428101,1.787606,1.169423,0.181819,0.000000,0.084298,0.016529,2.839670,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.955000,4612515.550000,6009,4355,111.053734,186.301651,180.912399,166.409103,148.268616,132.731415,133.781006,131.095062,131.781006,134.036362,133.755371,146.284302,164.317368,182.317352,194.606613,205.358688,207.052902,192.350418,168.300827,145.219025,133.987625,131.053741,125.500015,97.508278,80.632248,93.979355,106.119850,75.565308,37.086796,14.254563,11.409110,11.318198,9.485141,11.228941,11.353733,5.455380,1.423969,1.486778,0.840497,0.335538,0.522315,0.052893,0.027273,0.055372,0.000000,0.000000,2.685951,0.000000,0.000000,0.000000 -601947.755000,4612515.550000,6028,4355,119.317375,183.358688,176.565292,166.375214,150.788437,138.457855,137.325623,133.424820,132.838043,137.821487,135.400009,147.251236,164.201660,181.705795,192.953720,205.590088,205.598343,191.573563,168.218185,145.697525,135.928925,132.763657,128.309113,100.400017,82.482666,96.804977,107.747124,77.672745,38.135555,15.745472,11.664481,9.307450,8.598362,9.575220,9.408278,5.449596,0.673556,0.204959,0.145455,0.566943,0.168596,0.182645,0.028099,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.555000,4612515.550000,6042,4355,112.570259,177.579346,167.331421,161.546295,146.976044,134.843811,131.951248,130.414047,129.546280,133.058685,131.538025,142.240509,157.182663,174.033890,186.405792,197.876877,196.926453,185.893402,163.116547,141.405792,131.190918,127.215714,123.190926,95.802490,79.538040,94.480179,104.298355,74.306633,36.538033,15.068614,11.199192,5.048769,7.900841,7.912409,8.313236,2.143805,0.193390,0.228101,0.402481,0.102480,0.017356,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.355000,4612515.550000,6056,4355,113.408287,176.895889,173.689270,166.193405,148.730591,136.747131,135.590103,133.094238,132.639694,135.499191,134.366959,144.945480,160.424820,178.400024,189.763641,201.441330,200.920670,189.193390,165.416550,144.342163,134.590103,131.333908,126.309113,99.127289,83.697540,96.722336,106.945473,78.647957,37.773575,16.809935,11.482664,7.338855,10.112413,9.645470,9.776049,3.361162,0.692564,0.102482,0.350414,0.000000,0.011570,0.184298,0.061158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601957.955000,4612515.550000,6079,4355,94.938034,163.113235,171.080170,160.303314,147.154556,134.559525,132.774399,131.625641,131.187622,133.576050,133.476883,143.237198,158.303314,174.823975,187.038849,197.162827,198.319839,186.947937,162.493393,142.485138,132.303329,128.460342,124.700020,97.270264,81.567795,94.171089,104.220680,74.947960,35.452087,15.252086,11.336383,6.485135,9.287617,7.847122,7.597532,3.678517,0.434712,0.486778,0.063637,0.271075,0.003306,0.147108,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.955000,4612515.550000,6104,4355,116.453728,173.296692,172.470245,160.486786,145.817352,134.676865,134.734711,132.189255,131.660339,134.197525,133.164459,142.453720,159.619019,175.900009,187.470245,200.189255,200.123138,188.734711,164.205795,143.362808,135.106613,130.230576,125.263641,97.941322,82.453728,94.619011,105.709930,77.941330,36.040520,13.162827,11.387622,7.267780,8.661998,9.357863,9.904144,1.779342,0.359506,0.048761,0.110744,0.514050,0.145455,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.755000,4612515.550000,6123,4355,121.881004,163.897537,166.459518,160.757034,147.690918,135.583481,134.938858,132.294235,131.038025,135.021500,133.748779,144.112411,159.046295,175.484314,187.889252,198.525620,200.095871,187.467758,163.765305,144.186783,133.195053,130.252899,125.236374,97.566956,83.128937,94.773567,103.781830,76.203316,37.104153,14.845472,11.385143,5.162819,7.012411,9.114891,7.933898,3.658683,1.019837,0.597522,0.352893,0.041322,0.022315,0.077686,0.176860,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601972.355000,4612515.550000,6151,4355,105.006638,169.560333,169.428101,161.469421,147.907440,136.023163,133.857880,131.246307,131.328949,134.477707,133.866135,144.171906,158.477692,174.642975,187.395050,198.659515,199.171906,188.337204,163.667770,143.271088,134.097549,129.428116,126.890930,98.386803,83.676056,97.229774,105.932251,77.733910,36.568615,14.481836,11.535556,4.884306,8.669436,7.595056,8.589271,3.058683,0.306613,0.148761,0.246282,0.089257,0.000000,0.226447,0.426447,0.227273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.155000,4612515.550000,6175,4355,103.728935,160.067780,167.447937,161.150421,147.761993,135.885956,133.712402,131.753723,130.241333,134.166946,134.200012,144.051254,158.323975,174.604965,186.497513,198.753723,199.076050,187.869431,164.778519,143.786789,132.580170,129.894226,126.472740,98.704140,83.828110,95.646294,103.985130,76.323975,35.646301,16.026463,11.497540,7.699185,9.709932,8.444642,7.215717,3.842981,0.216531,0.531408,0.059504,0.166943,0.000000,0.000000,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601982.755000,4612515.550000,6203,4355,93.049614,160.851257,166.570267,159.264481,145.950439,135.578522,133.735550,130.628113,130.264481,132.603317,132.826462,142.942184,159.809921,173.975220,187.231415,198.008270,199.578522,186.925629,164.719025,143.256226,132.867783,130.181839,125.454559,98.694229,82.264481,97.834724,104.801666,76.735550,36.677704,14.500845,11.404978,7.554556,8.002494,7.936377,8.560343,3.157030,0.638019,0.030580,0.426447,0.048760,0.019009,0.000000,0.457852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.955000,4612515.550000,6229,4355,118.348778,157.919022,167.423157,160.340500,145.927277,135.092575,132.985153,131.861176,130.489288,132.580185,134.042999,144.555374,159.067780,173.976868,187.092575,197.092575,199.257858,187.596710,164.522324,143.447937,133.233078,128.836395,124.745483,99.026474,82.935562,97.117378,104.770264,77.307465,37.728943,14.082663,11.340514,5.861169,9.025634,8.847949,7.787617,3.413230,0.476861,0.461984,0.167769,0.100000,0.000000,0.084298,0.145455,0.000000,0.000000,0.000000,0.000000,1.126446,0.000000,0.000000 -601991.155000,4612515.550000,6245,4355,103.135551,155.350433,170.928940,161.102493,144.449600,137.052917,134.309097,131.044632,130.945465,132.970261,134.267776,143.747131,161.094238,175.862823,187.895889,199.656219,200.201675,189.077698,164.747131,144.623154,134.664474,130.424805,127.127281,100.821503,84.862823,97.218193,107.375221,78.143814,37.962002,16.114069,11.557044,5.875218,7.742990,9.222329,7.858692,3.822321,1.085954,0.032233,0.220662,0.159504,0.000000,0.141323,0.169422,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.955000,4612515.550000,6269,4355,99.227287,152.613251,164.960358,156.332260,144.497543,137.191757,136.001663,133.447952,132.828110,133.423157,135.009933,145.340515,160.522339,176.753738,188.340515,199.092590,199.902512,190.423172,166.018204,145.604980,134.753723,131.100830,126.654556,100.563652,84.266136,96.985138,105.952087,77.861176,38.671097,15.686794,11.514070,5.910755,8.152081,8.004972,8.660345,3.120667,0.342978,0.328927,0.393389,0.062810,0.203306,0.072727,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.955000,4612515.550000,6309,4355,86.545471,158.396713,169.082657,157.330597,144.851257,135.743820,132.438034,129.983490,129.752075,131.636383,132.421509,143.371918,158.851257,174.462830,186.652908,196.669434,197.950424,186.165298,163.008286,142.347122,133.008286,128.380188,124.000015,97.727287,82.338860,95.925636,104.652908,76.355385,37.016548,15.589273,11.272746,7.172739,8.821503,8.799189,8.287618,2.890916,0.117357,0.319010,0.352894,0.033884,0.414876,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602009.155000,4612515.550000,6335,4355,91.519844,155.048782,166.437210,156.891754,143.313248,134.007462,131.709930,129.362823,128.726471,130.214066,131.395889,141.999191,157.676880,173.817368,184.693405,195.809113,195.437210,186.304977,162.131424,141.065308,132.205811,128.230591,122.536385,97.627289,80.453735,95.577705,102.990921,75.470268,37.470268,13.301671,11.139688,6.459516,8.010757,7.289270,8.264476,3.656203,0.278514,0.109092,0.232232,0.178513,0.000000,0.000000,0.490910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612515.550000,6353,4355,104.066139,151.487625,168.446304,156.528946,143.000015,133.661179,132.545471,129.049606,129.157043,129.735565,132.264481,142.297531,158.413239,172.595062,185.644638,195.512405,197.157043,185.454559,162.074402,141.561996,131.809937,128.487625,123.636391,96.347130,82.082672,95.479362,104.107452,75.966965,36.537205,15.228118,11.239689,6.703318,8.193404,7.202492,9.068608,3.588435,0.533060,0.001653,0.354546,0.000000,0.000000,0.376860,0.688430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.555000,4612515.550000,6372,4355,90.836388,158.175217,168.976868,159.547134,143.687622,135.307449,131.852921,130.340515,129.638031,130.902512,131.745468,142.489288,158.464478,173.414886,185.993393,197.200012,197.266129,186.034714,163.985153,142.208298,131.993408,129.571915,124.290932,97.803329,82.224808,96.762009,105.712425,75.968613,37.414894,15.515720,11.299192,7.098357,7.649603,9.705798,8.538030,3.583477,0.225621,0.125621,0.123141,0.024794,0.209091,0.000000,0.717356,0.493389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.355000,4612515.550000,6391,4355,89.366959,154.598373,165.862823,158.176880,143.011597,135.474396,132.036377,130.689270,128.557037,130.292572,132.532242,142.375229,157.738861,173.490921,184.895889,196.193405,197.077698,186.028122,162.970261,142.333908,132.647949,129.052917,122.945473,97.598366,80.738861,96.168617,105.259521,74.962006,37.540516,13.950432,11.176879,6.271912,8.767786,10.190924,9.132247,4.073561,0.575209,0.150414,0.189257,0.296695,0.042976,0.160331,0.000000,0.427273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.355000,4612515.550000,6421,4355,95.409103,159.798355,168.525635,159.467789,144.029770,133.963654,131.897537,129.996704,129.823151,130.566956,132.492569,142.211578,158.186783,173.550430,186.021515,196.790115,196.327301,185.773560,162.881012,142.624802,130.608276,128.533890,124.236374,96.765305,80.723976,96.608276,104.071091,76.657867,37.715725,14.447124,11.294232,6.509928,9.633074,8.730593,8.443815,3.261163,1.046283,0.261159,0.225620,0.286777,0.007438,0.073554,0.162810,0.290083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.955000,4612515.550000,6464,4355,84.288460,152.536377,165.908279,156.172745,143.015717,133.643814,132.280182,128.742981,127.338028,129.048767,130.858688,139.908279,157.437210,172.371094,184.123154,194.726471,195.974396,183.734726,161.900024,140.470261,130.453735,127.404144,121.990921,95.197540,80.379356,93.685143,105.362831,74.767792,35.742996,15.051257,11.090102,6.575219,9.250430,8.436377,7.974394,3.528933,0.261158,0.095868,0.056199,0.146281,0.000000,0.086777,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.555000,4612515.550000,6502,4355,87.161179,158.607452,167.871918,158.400864,143.318176,134.342987,132.061996,129.020676,128.012405,129.483490,130.657043,140.648758,158.334732,173.458694,185.384308,196.971100,195.648773,184.433899,161.723160,142.045456,130.169434,127.657043,122.136383,95.706627,80.342995,95.235550,105.128113,77.367790,38.227291,15.485968,11.103325,6.866953,7.842990,10.076874,8.952908,2.928930,0.254547,0.085125,0.053719,0.261158,0.000000,0.064463,0.223141,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.955000,4612515.550000,6519,4355,94.387611,151.900024,166.792572,155.957855,142.271912,134.643814,131.288437,128.338028,127.519844,128.528107,129.949600,140.428925,156.809113,171.875214,183.503326,194.015701,195.007446,184.065308,160.668610,139.842148,128.924805,126.933067,119.354553,94.660339,78.073570,93.197533,103.866951,74.900017,35.123165,13.136379,10.850431,6.885963,8.042162,7.257037,7.044640,4.576042,0.628928,0.147935,0.166116,0.228099,0.154546,0.000000,0.000000,0.599174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602048.955000,4612515.550000,6534,4355,91.222328,156.701675,170.189255,157.131424,141.313248,133.065308,129.090103,126.676880,126.181007,127.238861,128.784317,139.048782,155.999191,171.114883,182.065308,194.404144,194.718201,182.643814,160.528122,139.701675,130.073578,125.040512,120.445473,93.610756,78.131416,94.734718,102.742989,74.627281,36.329773,11.663653,10.949606,7.303317,7.537205,10.270264,8.112411,4.967776,0.561986,0.530581,0.465290,0.226447,0.152066,0.299174,0.000000,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602053.955000,4612515.550000,6559,4355,99.782654,156.666946,164.319839,158.882660,145.750443,138.436386,135.519028,130.345459,129.866119,130.155380,130.618195,140.419846,158.362000,172.378540,185.766968,196.576889,196.990112,185.254562,162.915726,142.725647,132.196701,129.717361,123.345459,97.502487,81.973557,96.279343,106.824799,78.742157,38.469440,15.486794,11.213242,8.123981,9.460347,8.699185,10.273567,2.794221,0.792564,0.456200,0.471076,0.565290,0.145455,0.004133,0.347934,0.196694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.155000,4612515.550000,6595,4355,92.766144,162.278519,168.245468,157.906616,143.658691,133.452072,132.485138,127.914886,127.757858,128.336380,128.840500,140.377701,155.914886,172.361145,184.782654,195.030594,195.352905,183.047119,160.377701,139.179352,128.708267,125.518188,119.972740,95.336388,78.559532,92.790932,103.476868,74.956223,37.071922,14.181009,10.906631,7.422328,8.806627,9.455385,7.882656,3.269427,0.892564,0.417357,0.166116,0.055372,0.049587,0.066116,0.290083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602068.355000,4612515.550000,6631,4355,95.412415,162.709930,167.412415,158.866959,144.718185,134.371094,131.023987,128.172745,128.015717,128.718201,128.858704,139.999176,156.676865,172.288437,184.230576,194.767776,195.271912,183.263641,160.561172,139.800827,130.057037,126.701668,121.354568,94.685143,78.759521,93.288452,104.792580,76.676880,36.866962,15.698364,11.032249,7.476873,8.202496,9.076046,8.378527,4.151246,1.566945,0.271902,0.128100,0.410745,0.000000,0.000000,0.589257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602071.555000,4612515.550000,6647,4355,90.182663,156.083481,168.934723,158.843811,144.959518,133.546295,130.000854,127.918205,126.678535,128.430603,129.174408,139.918198,156.273560,171.595886,183.777695,194.042160,195.157867,183.819016,159.091751,138.744644,129.587631,126.331429,120.645477,94.033905,77.339691,91.719856,101.926468,76.091759,34.876881,14.315721,10.967789,6.914887,7.928938,8.076874,7.009929,3.776040,0.248761,0.318184,0.286778,0.234712,0.000000,0.061157,0.518182,0.199174,0.000000,0.000000,0.000000,1.543802,0.000000,0.000000 -602074.355000,4612515.550000,6661,4355,100.287621,162.833084,169.163666,160.378555,144.990128,135.419861,132.676056,130.229767,128.965302,130.560349,130.808289,141.064484,158.601685,172.750443,185.535553,195.254562,196.494232,183.857880,161.651276,141.047958,130.791748,128.510757,122.436378,96.469437,81.229767,95.138855,104.948776,77.064476,36.494232,15.797539,11.130598,8.378527,9.685142,9.185965,9.223982,4.139676,0.670251,0.127274,0.201654,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.355000,4612515.550000,6676,4355,97.623161,162.416550,171.747131,158.681000,145.738861,134.714066,133.119034,130.614899,129.375229,130.631424,131.267792,142.061172,158.681015,174.672729,185.705795,196.449600,197.160355,185.143814,162.069443,140.383484,131.532257,128.681015,122.490929,95.656219,80.771919,94.325638,104.333900,77.284317,35.391754,14.525637,11.135556,8.810757,9.984313,8.576046,9.327286,2.585127,1.090912,0.553721,0.202480,0.038017,0.000000,0.072727,0.066116,0.616529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602082.155000,4612515.550000,6700,4355,99.165314,165.561996,171.305801,160.314072,146.537216,135.611603,134.214905,131.752090,129.859528,129.619858,131.016556,142.454575,158.743820,173.950424,186.231415,196.380188,197.446304,185.371918,162.297531,140.760361,132.016556,127.404984,122.818207,96.396721,79.677704,93.272751,105.016556,77.107452,35.661179,15.509108,11.165308,6.887616,9.198363,10.064478,9.823155,3.591742,0.362812,0.254547,0.512398,0.046281,0.000000,0.215703,0.041322,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.755000,4612515.550000,6718,4355,87.571106,158.943008,169.794235,157.546310,144.843826,133.438873,132.471924,128.752914,128.612427,129.290115,128.653748,140.595901,157.066971,172.918198,183.471893,194.620651,195.430573,183.248779,160.546310,139.240524,130.546310,125.802505,120.645485,94.100029,78.984329,91.769447,102.571106,74.678543,34.653736,14.546299,10.967789,9.225633,9.095882,9.952081,7.537204,3.122319,0.973556,0.132233,0.052893,0.039670,0.000000,0.076860,0.056199,0.138843,0.000000,0.000000,1.428099,2.702480,0.000000,0.000000 -602089.955000,4612515.550000,6739,4355,105.093414,166.085129,169.812408,161.134720,146.184311,134.985962,134.804138,130.952911,129.490097,130.085144,130.572739,142.035538,158.374390,173.415710,185.349594,197.043808,195.804138,184.886780,161.498352,140.969421,130.779358,127.696709,121.936378,95.605804,79.440521,93.738037,102.994232,75.415726,38.258701,16.904976,11.085142,8.418194,9.423983,10.735551,10.859518,3.979345,0.635539,0.653720,0.790084,0.284298,0.204133,0.072727,0.209918,0.000000,2.425620,0.000000,0.000000,0.000000,0.000000,0.000000 -602092.755000,4612515.550000,6753,4355,91.278534,161.675217,168.584305,159.890091,143.873566,132.493408,132.328110,127.914894,127.526466,129.939682,129.344650,140.295044,155.708267,171.923157,182.815720,194.733063,196.476868,183.014053,159.807449,139.253723,129.361176,126.328117,121.063652,93.724808,78.741341,91.857040,103.452087,73.014069,35.493412,13.975224,11.005804,8.798359,7.384311,8.200841,7.972741,3.509098,0.623142,0.507439,0.000000,0.036364,0.000000,0.238017,0.155372,0.456199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.155000,4612515.550000,6770,4355,102.177711,165.830597,170.417374,159.466965,146.260345,133.731415,133.119858,129.004150,128.582657,130.004150,131.103317,141.037201,157.243820,173.665298,185.136383,195.541336,195.987625,183.847122,160.103317,140.376053,131.359528,127.128113,123.227295,95.053734,80.582672,93.433899,104.227287,76.599197,37.144646,15.622334,11.202498,7.262821,7.419023,8.572741,9.650428,3.319015,0.557853,0.217356,0.294216,0.152893,0.006612,0.150414,0.000000,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.355000,4612515.550000,6796,4355,90.214066,169.858704,166.957870,158.561172,143.453735,132.288452,133.197540,128.404144,127.470268,128.602493,129.247131,139.941345,156.784317,172.007462,184.304977,195.825638,195.776047,181.751266,157.990921,140.321503,128.585968,125.900017,121.263657,94.015724,78.263657,91.304977,100.643822,73.057045,34.189274,13.437206,11.023986,7.247119,8.151253,9.002494,7.069433,3.014881,0.256201,0.036365,0.061984,0.221488,0.000000,0.078513,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.955000,4612515.550000,6809,4355,84.291763,170.622314,172.283478,165.762817,146.589264,135.382660,135.440521,131.448776,131.622330,132.258698,132.795883,143.994217,160.151245,175.969421,187.828934,199.531403,199.233887,185.861984,163.531418,142.696701,132.696716,130.300018,124.390930,96.539696,80.895073,93.696716,103.382660,74.316559,36.581013,15.224813,11.308284,11.117369,8.028940,9.389270,9.603321,2.342153,0.941325,0.285951,0.571902,0.279339,0.393389,0.145455,0.004132,0.304132,0.000000,0.000000,0.000000,1.771075,0.000000,0.000000 -602107.155000,4612515.550000,6825,4355,94.306633,176.476028,171.236359,163.244629,147.162003,135.451248,135.368607,131.682663,131.748779,134.327286,132.368607,144.856216,161.021500,177.517349,190.393387,202.277679,201.294205,188.062805,166.434708,144.641342,135.178528,132.021500,126.145470,98.988441,82.690933,97.690926,106.112411,76.153732,37.426468,15.133901,11.467788,9.566130,9.571090,9.071087,8.291748,3.471081,1.504962,0.223142,0.125620,0.000000,0.000000,0.147108,0.242149,0.276860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602112.155000,4612515.550000,6850,4355,111.619865,176.388443,174.173569,162.512405,148.834732,136.983505,136.198380,133.107468,132.272766,136.471100,134.512436,146.603317,163.157043,180.181839,193.281006,204.148758,204.338852,190.983490,168.595062,148.008286,140.041351,135.495895,129.181854,102.024826,86.099197,99.190117,109.355408,78.785149,37.173573,15.266960,11.743821,9.834724,10.362825,10.680182,9.134726,3.643809,1.199177,0.043803,0.061157,0.000000,0.048760,0.392563,0.061157,0.000000,0.000000,0.000000,2.005785,0.000000,0.000000,0.000000 -602115.555000,4612515.550000,6867,4355,114.805801,173.764465,169.111572,163.780991,147.557861,136.185974,134.061996,132.252075,132.648773,135.566132,133.400848,145.805786,162.210739,179.789261,191.830582,205.863632,204.227280,191.541321,168.549591,149.161179,137.500015,135.309937,128.863647,101.210762,84.814064,99.640511,108.731422,77.698364,36.260349,13.722331,11.714895,10.219848,6.549600,10.082660,9.296706,3.933066,0.740498,0.260332,0.175207,0.000000,0.000000,0.000000,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602118.355000,4612515.550000,6881,4355,104.788460,174.598373,170.970261,162.523987,148.201675,136.209930,134.457870,132.738861,132.722336,136.242996,134.813248,147.044647,163.242996,180.276047,192.747131,205.928925,204.606613,191.069443,169.771927,149.143814,138.895889,135.226471,129.490936,100.689285,85.375237,100.763664,110.755394,79.135559,38.813244,16.017374,11.771919,10.956213,8.779354,10.184311,10.347948,4.776042,1.060333,0.303307,0.228926,0.104133,0.026446,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602121.355000,4612515.550000,6896,4355,119.704155,179.852905,170.753723,161.514053,147.092575,134.208298,133.530609,130.943832,130.307465,134.927292,133.290939,144.431412,161.216537,178.332245,192.447937,203.861160,204.241333,189.084305,168.662827,147.340500,137.200027,134.654572,128.927292,99.662834,84.257874,98.869446,108.439697,78.571930,38.580185,15.100844,11.720680,10.984311,9.462824,9.341338,12.020676,3.757859,0.253721,0.256200,0.422315,0.587604,0.000000,0.088430,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.155000,4612515.550000,6910,4355,105.758690,179.882645,175.527283,163.229782,148.064484,134.932251,133.758698,130.940506,131.436371,136.485977,132.725632,145.477707,161.337219,179.147110,192.502487,205.229752,204.552078,188.758682,168.345474,148.072769,137.981842,135.552094,129.618195,100.742165,84.543816,99.667786,107.915718,78.353737,38.676052,15.276877,11.783489,9.783485,7.617370,10.136380,11.896708,4.362818,0.952069,0.776034,0.064463,0.100827,0.000000,0.165290,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.355000,4612515.550000,6926,4355,113.360352,175.649597,174.269440,165.657867,148.542160,136.608292,134.947128,133.269440,132.285965,137.178528,133.723984,145.872742,162.790100,179.914062,193.029770,205.847946,204.153732,190.352081,169.608276,150.310760,138.162003,134.542175,130.054565,100.773575,85.013245,102.004982,110.484322,79.178535,37.765308,16.225639,11.823159,10.471916,10.103322,10.185140,10.891748,4.940506,1.356202,0.353721,0.251240,0.000000,0.004959,0.084298,0.680992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.755000,4612515.550000,6948,4355,123.189262,178.652069,169.048767,163.404129,147.032242,133.098343,132.569427,130.329758,128.974380,134.123138,129.329758,141.875229,157.428925,174.131409,188.255371,200.693375,199.321472,183.858688,164.619019,143.412415,134.123138,130.652069,125.263641,96.470261,79.949608,96.594223,107.933060,76.412415,37.346302,13.692579,11.387622,8.414062,8.228939,9.502496,7.672740,4.190091,0.067770,0.146282,0.104133,0.000000,0.000000,0.063637,0.559505,0.257025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602138.755000,4612515.550000,6983,4355,133.025620,187.314896,177.381012,166.240509,149.860336,138.108276,136.843811,133.017365,133.678513,137.488449,133.909927,144.091751,160.827286,177.414062,192.223984,204.397537,203.471909,188.331421,169.141342,148.265305,137.728119,133.918182,129.100006,99.852074,84.835548,102.976036,111.810745,81.711586,40.273571,17.514894,11.736382,13.894231,9.240513,11.338861,11.618198,6.304143,0.500003,0.528928,0.322315,0.084298,0.000000,0.000000,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602142.755000,4612515.550000,7003,4355,99.977707,152.390915,159.572739,151.647110,138.225632,128.680176,126.572739,123.192574,121.316544,124.349602,124.837204,136.961166,153.622314,168.820663,182.324799,193.878525,194.688431,184.134720,162.465302,141.448761,130.589264,126.217369,120.663651,94.647125,77.002495,94.911583,108.696709,80.060349,37.911594,14.324811,10.969441,7.063649,9.053735,7.779354,8.871914,3.587612,0.541325,0.522316,0.000000,0.123967,0.000000,0.000000,0.573554,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.155000,4612515.550000,7035,4355,94.185135,149.829773,158.077698,149.234726,135.664490,126.309105,123.276047,120.763649,119.623154,121.763649,122.408279,134.110748,150.970261,167.375229,179.449600,190.333908,191.763657,181.730591,159.400024,138.714066,127.730591,123.325630,116.763649,91.457863,74.656219,91.300835,105.061165,79.879356,36.143822,13.295059,10.614896,3.985134,8.717369,7.063651,7.246293,2.675213,0.688432,0.338017,0.000000,0.000000,0.082645,0.000827,0.083471,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.755000,4612515.550000,7063,4355,92.460342,147.947952,158.989288,150.542999,138.171097,129.534714,126.617363,122.385963,122.485130,124.261993,124.906624,136.394226,152.319855,169.394241,182.559525,193.146286,195.121490,184.195892,161.625641,141.038864,130.848770,126.989265,120.518188,93.468605,77.650421,94.344635,107.030586,80.551254,37.253738,15.233902,10.956218,5.042160,7.487617,7.090097,8.561171,2.347113,0.717358,0.000000,0.063637,0.433059,0.000000,0.000000,0.135537,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.755000,4612515.550000,7098,4355,96.526466,148.047119,158.038864,149.443832,135.286789,125.047127,122.675224,119.840515,119.956215,120.195885,122.138031,133.187622,150.154572,167.171082,178.286789,190.873566,191.005798,181.179352,159.452087,138.096710,127.906631,123.377701,117.245476,89.385971,73.410759,92.352913,106.956215,79.757866,37.807461,14.762002,10.658697,4.892573,7.712411,8.446296,6.961168,3.641330,0.627275,0.500828,0.066942,0.058678,0.000000,0.004132,0.136364,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602169.755000,4612515.550000,7138,4355,90.220680,149.344650,154.617386,149.352921,131.410767,123.633904,122.187622,118.815720,118.014069,119.014069,120.303322,131.542999,149.071930,165.551270,177.923172,189.047134,189.237213,179.823990,156.402512,136.295074,125.790924,121.972748,116.518196,88.592583,73.278534,90.237206,106.410759,77.790924,37.038860,13.264481,10.592582,6.393399,7.691750,7.556211,7.608278,2.841330,0.419837,0.204133,0.052893,0.063637,0.000000,0.000000,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.355000,4612515.550000,7171,4355,92.024811,148.842987,156.305801,147.611588,132.454559,124.281006,119.140511,117.247948,115.950432,116.066132,118.041336,128.404968,147.115723,162.595062,175.272751,186.289276,188.231415,175.859528,155.107452,135.454559,123.917374,120.834724,113.272743,86.851257,71.859520,88.950432,106.140511,78.942162,37.355389,13.852084,10.297540,5.614062,8.232246,9.665304,8.030591,3.713231,0.392563,0.366943,0.000000,0.294216,0.042149,0.000827,0.318182,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602185.755000,4612515.550000,7218,4355,87.370262,145.833084,155.089279,144.246307,129.659515,121.725632,117.816544,113.461174,111.651253,112.535553,114.519020,125.444641,143.238037,158.279358,171.874405,182.386795,183.180191,172.833084,152.957047,132.742157,121.130592,118.386795,109.981834,85.105797,69.535553,86.758690,103.915718,77.461174,37.204979,13.873571,9.998365,5.038028,6.836377,8.479353,6.339681,2.129760,0.145455,0.373555,0.052893,0.000000,0.000000,0.069422,0.181819,0.478513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.955000,4612515.550000,7264,4355,109.395058,151.238037,157.469437,143.304153,129.337204,119.130592,115.527290,112.667786,111.056213,111.204971,111.527290,123.932243,140.056213,155.882660,168.031418,178.072754,177.461182,168.345459,148.147125,129.932251,120.403320,116.271088,112.618195,84.651253,69.023155,89.279350,109.105797,81.444641,36.882664,13.514068,10.238035,9.395056,7.395055,8.443816,8.404972,3.361992,0.630581,0.188431,0.238017,0.283472,0.104133,0.000000,0.274381,0.488430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602200.555000,4612515.550000,7292,4355,131.371094,158.453720,157.701660,146.205795,130.933075,121.924812,117.346298,112.817375,112.073570,112.081841,113.181007,124.751259,141.742996,157.329773,169.751266,179.610764,178.751266,170.271927,152.478531,134.511581,124.933067,121.486794,118.172745,91.941330,73.255386,95.627281,118.247124,90.693398,44.263660,15.296712,10.742993,10.860345,10.581834,11.986793,12.536379,7.256210,1.618188,0.792564,0.000000,0.228100,0.440497,0.004133,0.220661,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602224.755000,4612515.550000,7413,4355,137.016541,157.016541,158.719025,143.876053,126.512398,114.785141,111.173569,108.793404,107.289276,107.322327,108.603325,120.314056,139.115723,156.528946,170.330597,183.520676,184.281006,174.545471,153.611588,133.198349,121.347107,118.173561,111.454559,82.677704,64.628113,84.380180,106.495880,79.297539,36.115723,13.787621,10.132251,9.882657,9.164478,11.048776,11.985966,7.000837,1.328102,0.360331,0.134712,0.002479,0.276860,0.171901,0.000000,0.000000,2.712397,0.000000,0.000000,0.995868,1.128926,2.022314 -602230.155000,4612515.550000,7440,4355,116.284317,162.162796,158.881805,144.261978,129.460342,117.939690,116.030594,112.344643,111.286797,112.600845,112.807457,125.534729,146.022308,163.369415,177.592560,190.989243,192.683472,182.071899,160.633881,138.939682,126.972748,122.724808,117.427292,86.509933,67.972748,88.030594,107.865311,79.642166,37.700016,14.144648,10.675227,9.299188,9.304147,10.667783,10.623156,5.703315,0.918183,0.104959,0.242149,0.071075,0.387604,0.338017,0.709918,0.000000,0.000000,1.364463,0.000000,1.133884,1.214050,2.028099 -602238.555000,4612515.550000,7482,4355,113.857864,160.634720,161.485962,146.039673,131.948776,120.642990,120.130592,117.461174,116.395058,117.874397,118.882660,130.651260,149.775208,166.676041,180.378525,192.775208,193.519012,183.056198,159.957031,138.403305,126.593407,123.122330,119.072739,89.246292,70.502502,88.047951,104.345467,76.494232,37.882668,14.719852,10.824813,7.912411,8.985140,10.120676,9.374395,5.850422,1.075208,0.165290,0.091736,0.000000,0.021488,0.000000,0.000000,0.003306,2.851240,0.000000,0.000000,0.000000,0.000000,2.053719 -602251.755000,4612515.550000,7548,4355,104.955383,159.209930,163.350433,149.077682,133.003311,123.573563,120.862823,118.441330,117.226456,118.796707,119.581833,130.036377,150.350418,165.962006,179.557022,191.656219,193.011597,182.689255,159.507462,136.920685,125.457863,120.557037,115.854553,86.705795,68.449608,86.028107,102.672737,74.350433,36.375225,13.809936,10.532250,9.237204,9.498363,9.677701,9.366132,4.223147,0.833886,0.172728,0.000000,0.058678,0.137191,0.166116,0.000000,0.440496,0.000000,0.000000,2.263637,0.000000,1.268595,0.000000 -602272.355000,4612515.550000,7651,4355,110.987617,151.012405,157.392578,143.276871,127.706619,116.152908,112.533073,110.698364,109.615715,111.210762,111.599190,123.219025,141.326462,158.574402,172.574402,184.268616,186.111588,176.309937,152.855392,129.954559,118.342995,113.946297,109.954559,80.566139,62.359520,79.789284,96.433899,69.938034,30.425640,11.097538,9.995887,6.668608,5.857866,7.211585,8.136379,4.098353,0.275207,0.233059,0.157851,0.050413,0.357025,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,1.124794,1.188430,0.000000 -602290.155000,4612515.550000,7740,4355,149.757034,164.765305,154.277695,139.814896,123.649597,110.566956,108.269440,106.046303,105.252914,107.319031,106.971924,118.732246,136.980179,154.988449,169.062820,181.608276,181.872742,171.542160,148.707458,126.616539,114.732246,110.889275,106.509109,77.393410,59.558693,77.120682,93.773575,71.492584,34.343819,13.190928,9.682664,10.835553,9.202495,10.483488,10.847949,8.630590,1.666947,1.229757,0.385952,0.315703,0.099174,0.667770,1.429753,0.656199,6.715703,1.317355,2.245455,2.834711,0.000000,0.000000 -601273.155000,4612505.550000,2655,4405,142.717377,162.395065,137.064484,122.320679,107.064476,93.386795,93.081009,90.692574,90.428116,91.626457,91.659515,103.403320,121.899185,138.833084,151.171921,162.576889,163.791763,153.998367,133.171921,114.907455,103.833069,102.874397,97.709106,67.824814,49.700844,66.370270,86.064476,67.452911,26.407459,11.444645,8.882664,16.038036,9.717371,12.733073,14.245471,8.084311,2.579345,3.331409,1.516532,2.163640,0.510745,1.565292,0.847935,1.657854,11.690084,13.698349,14.534715,12.326450,7.152067,7.085124 -601276.555000,4612505.550000,2672,4405,135.325638,159.353745,143.328949,129.527283,113.105789,101.535553,100.601669,96.733902,96.527290,98.287621,98.857864,110.742165,128.039673,144.560349,158.122330,170.196716,169.692581,158.428116,136.841339,116.221497,104.808281,103.791748,97.436378,67.568611,50.444645,65.279358,82.725632,59.089275,26.130600,9.704147,8.857870,14.277700,9.601665,11.201668,11.830591,7.588443,2.061989,1.033888,0.536365,0.495042,0.679340,1.003307,0.411571,0.640496,2.704959,9.247108,4.728926,5.242150,7.700002,10.836364 -601281.955000,4612505.550000,2699,4405,129.012405,164.807465,144.658707,134.972733,116.245476,104.237206,104.443817,102.452087,102.567787,105.509933,104.452087,117.220680,134.261993,151.708298,165.286804,176.691757,177.253738,164.452087,142.799194,122.270256,112.022331,109.187622,102.518196,74.427292,56.724812,70.220680,86.303322,62.840511,27.437212,11.440513,9.319854,14.328115,9.252079,9.628115,11.083486,7.795878,1.126450,0.402480,0.376860,0.249588,0.057025,0.189256,0.678513,0.119008,0.000000,3.810744,2.642149,5.303307,3.788430,0.000000 -601290.155000,4612505.550000,2740,4405,141.783478,171.166122,149.480179,139.438858,121.091751,109.339684,110.223976,108.455383,108.686790,111.926460,109.670258,121.909927,139.215714,156.876877,171.538025,184.670258,182.909927,169.719849,149.108276,127.992577,117.678528,114.661995,107.918198,77.918198,61.628948,74.992577,87.281830,62.819031,27.463657,11.488445,9.810762,15.199190,9.232246,10.519850,10.892577,5.985133,1.154551,1.506614,0.165290,0.118182,0.629753,0.000000,0.000000,0.000000,5.437191,2.020661,0.000000,9.479340,0.000000,0.000000 -601302.155000,4612505.550000,2800,4405,163.161179,178.024811,159.041336,148.057861,130.454559,117.429771,117.586792,115.107452,115.603325,122.768608,118.223160,129.380188,146.727295,165.140518,179.595062,192.818192,192.446304,177.917374,155.421509,135.305801,125.082664,123.438034,116.363655,86.388443,69.586792,83.281006,93.677704,65.975227,30.363657,13.582663,10.578531,16.191751,11.017370,12.835553,10.327287,4.710752,1.521492,0.180166,0.033058,0.211571,0.146282,0.066116,0.000000,0.000000,2.309918,1.009917,6.346282,1.719835,1.058678,0.000000 -601313.355000,4612505.550000,2856,4405,115.611588,153.614899,152.912415,142.928940,127.747116,119.928940,116.557037,115.945473,116.424805,117.540504,119.978523,130.358688,148.317368,164.408279,178.160339,189.912399,191.970245,180.945465,157.152084,135.523987,126.209930,122.953728,116.854553,87.548782,69.598366,83.342171,93.738861,68.689278,32.069443,14.271920,10.623159,7.529765,9.129766,9.433073,11.057041,4.640504,0.679341,0.332232,0.142149,0.349587,0.200001,0.060331,0.119835,0.000000,0.000000,1.066116,0.000000,0.000000,0.000000,0.000000 -601319.355000,4612505.550000,2886,4405,107.941330,150.332245,154.216537,143.357040,127.811577,118.208275,117.514061,115.877693,116.274391,117.390091,119.671082,130.704147,147.695877,164.695877,177.067780,188.423157,190.885956,180.142151,156.464478,134.737198,124.902489,121.580177,114.836372,88.274391,68.538864,82.737198,92.803314,68.514061,31.738863,10.581836,10.439688,6.471912,6.747948,8.319848,9.205798,4.585130,0.828927,0.252067,0.408265,0.040496,0.152067,0.000000,0.000000,0.000000,2.089257,0.000000,0.000000,0.000000,0.952893,0.000000 -601326.555000,4612505.550000,2922,4405,103.544647,151.864471,154.087616,143.128937,130.583481,122.046295,120.294228,117.434723,117.442986,119.352081,121.244644,131.352081,149.162003,165.038025,178.657867,189.922333,192.757034,180.723984,157.269440,137.087616,126.153732,122.186790,115.963646,89.244644,69.467781,83.790100,93.285965,68.872742,31.996716,13.571918,10.542168,7.489269,8.230593,8.615715,9.755386,4.671908,1.133061,0.178513,0.201654,0.142976,0.037190,0.000000,0.176033,0.000000,0.000000,0.000000,2.664463,0.000000,1.076033,0.000000 -601337.155000,4612505.550000,2975,4405,100.727287,150.855377,154.458679,143.070251,128.781006,121.392570,120.086784,117.177696,117.367775,119.516541,120.657036,131.508270,149.549591,165.004135,177.888428,189.698349,190.731400,181.177689,157.268600,136.979340,125.954552,122.888435,116.681824,87.814064,70.078537,84.119850,92.979355,68.392586,30.987621,11.240514,10.607457,6.116540,9.252079,8.528113,7.842162,3.558684,0.595870,0.515704,0.302480,0.062810,0.000000,0.000000,0.000000,0.000000,1.041322,0.000000,0.000000,0.000000,0.000000,0.000000 -601343.155000,4612505.550000,3005,4405,93.693405,152.418198,154.112411,144.302490,130.732254,121.864487,120.095886,118.566963,118.054565,120.153740,121.525642,132.261185,149.269440,164.277695,179.228119,189.401672,192.038025,182.013229,157.566956,136.674393,127.046303,122.013245,116.327293,89.352089,70.566963,84.385147,94.500847,70.170265,31.434731,13.844645,10.575227,7.213233,8.584311,6.764474,8.857038,3.233063,0.564464,0.337191,0.030579,0.021488,0.039670,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601350.755000,4612505.550000,3043,4405,104.122330,151.001678,154.836395,144.464493,133.836380,121.844643,118.960350,118.390099,118.092583,120.398361,122.927292,131.555389,150.018204,165.571930,179.323975,190.175217,190.828110,180.753723,156.861176,135.935562,126.183487,123.282661,117.109108,89.323982,70.596710,83.662827,95.117371,68.993408,29.927294,11.613242,10.646300,6.416539,8.261997,8.887616,7.454557,4.642982,0.794218,0.278513,0.071901,0.000000,0.092562,0.000000,0.000000,0.000000,1.015703,0.000000,1.796694,0.000000,0.000000,1.922314 -601361.755000,4612505.550000,3098,4405,98.900841,153.220673,156.121490,143.650421,133.014069,121.939690,118.939690,118.096710,118.766136,119.344643,121.633904,131.526459,148.840500,164.071915,178.584320,188.956223,190.369446,179.303314,157.336380,136.138031,126.080185,121.328117,116.518196,87.914902,70.055397,83.757874,94.278542,69.584320,31.303324,12.592579,10.592581,7.067781,7.453733,7.066128,8.103318,2.283475,0.166943,0.118182,0.273555,0.000000,0.046281,0.119835,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601378.355000,4612505.550000,3181,4405,124.482666,159.604141,157.909912,147.769424,133.571075,123.471916,122.116539,120.232246,119.496704,123.033897,123.372742,133.670258,150.066940,166.579346,180.149582,192.000824,192.794205,183.645447,159.463654,137.852066,127.447113,123.331421,118.372742,89.141342,70.397545,84.116547,95.785973,70.323158,31.166134,13.368614,10.761176,6.196704,8.811585,8.126460,9.135551,3.822321,1.170251,0.276861,0.595043,0.001653,0.287604,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.068595,0.000000 -601387.355000,4612505.550000,3226,4405,111.089272,158.518188,154.427277,147.799194,134.278534,124.253738,121.625641,120.319855,119.997536,122.344643,123.658699,133.807449,150.261993,166.989273,180.030594,190.947937,192.724808,183.245468,157.790924,137.402512,125.956215,122.278534,116.336380,89.228943,69.352913,82.542992,94.088448,69.625641,30.832251,12.324811,10.576052,4.667777,8.465303,8.628939,8.321501,3.401659,0.485952,0.026447,0.077686,0.102480,0.061157,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.076033,0.000000 -601392.555000,4612505.550000,3252,4405,158.340500,186.547119,170.026459,162.547119,143.530594,132.282669,129.778534,129.530609,128.943832,135.704147,130.092590,141.514053,157.638031,175.555374,189.671082,201.753723,200.778519,186.604965,165.522324,144.588440,133.059525,130.538864,125.836388,95.927299,79.629768,96.340523,103.051262,72.538872,34.472748,16.571920,11.439688,11.404147,8.601668,9.406628,9.314064,3.976043,0.685125,0.051240,0.000000,0.000000,0.000000,0.000000,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601395.755000,4612505.550000,3268,4405,135.417389,190.111588,170.061996,162.995880,144.334732,131.929764,130.582657,130.045456,130.161163,137.185974,132.169434,142.392578,157.781006,176.012405,190.814072,202.582657,202.673569,187.814072,166.838852,145.995880,133.698349,132.169434,126.590919,97.334724,80.946297,95.954559,102.376053,71.673569,36.293404,17.089275,11.508283,11.992579,8.159517,9.506627,11.460345,6.459516,0.891737,0.207439,0.480166,0.252893,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601400.155000,4612505.550000,3290,4405,139.166122,183.951248,171.885132,160.992569,144.389282,130.885132,130.380997,129.612411,129.323151,135.000839,131.199188,143.223999,159.000839,177.281830,189.794235,203.000839,202.306625,188.364471,166.397537,145.438873,133.554550,129.876862,125.372734,96.182655,80.273567,93.967781,101.843811,74.298370,35.381012,16.534731,11.397541,12.858694,7.855386,7.843816,9.257040,4.377696,0.476860,0.220662,0.315703,0.259505,0.000000,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601406.955000,4612505.550000,3324,4405,129.171921,181.890915,164.642975,156.552078,142.849594,129.519028,128.998367,128.328934,127.419846,131.874390,129.502487,140.428101,156.171906,175.089264,187.866119,199.552078,200.494217,187.047943,163.097534,143.593399,131.072739,129.634720,123.709106,94.419846,78.370262,91.775223,100.461174,71.700851,34.849609,14.121506,11.246301,12.547123,6.895882,7.495882,9.452906,4.086786,0.930581,0.036364,0.047934,0.000000,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601411.755000,4612505.550000,3348,4405,113.554565,178.628937,167.571106,157.496719,141.719864,128.934723,128.695053,127.595879,126.397537,132.042160,129.083481,140.562836,156.273590,174.785965,187.703323,200.042160,200.108276,186.885132,163.347961,143.215729,132.033890,129.653732,123.463646,94.397522,77.182663,91.463638,100.827278,72.860352,33.909935,14.056217,11.223986,9.775221,7.686792,8.323981,8.468610,4.595052,0.553721,0.204959,0.442976,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.955000,4612505.550000,3369,4405,127.882652,173.667755,170.047928,158.733871,142.345474,130.684311,131.758682,128.543808,128.601654,132.056198,129.973557,143.031433,158.196686,176.246277,189.122299,200.733871,200.981812,188.957016,164.560318,143.841339,132.395050,130.709091,125.527283,96.213226,78.609932,91.485970,103.238022,74.395058,36.147125,14.664481,11.411589,11.239683,9.891753,11.331421,9.404974,5.224803,0.811572,0.038017,0.233059,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.555000,4612505.550000,3397,4405,120.250427,172.134720,164.142975,155.870255,143.357864,129.812408,130.341339,127.862000,127.779350,129.713242,130.126465,141.853729,158.795868,174.812408,188.498352,200.481827,200.952896,188.126450,165.126450,143.977692,132.671921,129.878525,124.390923,95.804146,78.597534,90.614067,101.209106,73.638863,34.432255,13.282663,11.308284,8.258693,7.792577,8.974395,8.433898,3.571083,0.565290,0.035537,0.070248,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.555000,4612505.550000,3417,4405,110.383492,173.895874,166.573563,157.771912,142.358704,129.705811,128.986801,127.424812,126.317375,129.730591,129.862823,140.838043,157.821487,174.920670,187.689255,198.912399,200.176865,187.284302,164.284302,142.350433,132.375229,129.152084,123.854568,94.457870,76.829773,88.928947,100.209938,72.755394,32.631424,14.168613,11.259523,8.470263,7.123156,8.781005,8.712413,3.431411,2.041325,0.097521,0.056199,0.000000,0.000000,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,3.786777,0.000000 -601430.955000,4612505.550000,3444,4405,121.399185,171.754547,167.961166,156.498352,143.019012,131.275223,128.837204,129.349594,127.845467,130.977707,129.704971,141.754547,159.209091,174.630585,188.845459,200.531418,200.928101,188.696701,165.002487,143.068604,131.762817,129.440506,125.209106,94.498360,76.994232,90.564476,100.919846,72.804146,34.035557,14.204977,11.382664,8.470262,8.855390,9.035555,8.869438,3.200833,0.482646,0.328100,0.194215,0.000000,0.003306,0.000000,0.009918,0.000000,2.714050,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.555000,4612505.550000,3467,4405,126.887619,172.358704,165.912415,156.722336,142.135559,129.581833,129.689270,128.300842,126.606621,129.135544,129.656204,141.044647,158.160355,175.052917,187.953720,199.077682,200.342148,188.292587,163.160355,142.085968,131.978531,129.780182,123.763649,94.507454,77.647942,90.664482,100.036377,73.160347,34.325638,13.789273,11.251259,8.496708,7.378527,9.929769,9.356214,3.523975,1.050416,0.216530,0.180992,0.256199,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.355000,4612505.550000,3496,4405,108.816544,167.494232,170.229782,155.477707,141.733902,132.684311,130.188446,127.304146,128.312408,129.593399,130.915710,141.700851,159.659531,176.742172,189.419861,201.849609,201.973572,190.378540,165.271103,143.940521,133.676041,129.676041,124.527290,95.254562,78.238029,91.072739,101.056213,73.700844,34.742168,15.194233,11.320680,9.006626,8.984313,9.388444,9.681008,4.221496,0.464464,0.138843,0.169422,0.000000,0.000000,0.000000,0.109091,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.955000,4612505.550000,3509,4405,120.491753,170.020676,170.483490,158.400848,144.318192,132.880188,131.607452,129.351257,129.185974,131.161179,132.086792,143.442169,161.128113,178.185974,191.194229,201.756210,203.144638,191.731415,165.210754,145.483490,133.442169,130.574402,126.863655,98.301666,79.219025,91.632248,103.012413,74.276886,35.805805,14.930596,11.533077,9.382658,8.717371,10.035554,9.554560,4.243811,1.342152,0.277686,0.309918,0.000000,0.000000,0.315703,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.755000,4612505.550000,3523,4405,107.451256,168.368622,166.748795,157.897537,144.046295,132.178528,130.509109,128.294235,128.872742,129.790100,131.550430,143.178528,160.583496,177.153748,189.732254,201.881027,203.443008,191.566971,166.996719,143.790100,132.608276,130.013229,126.418198,95.575218,79.244644,92.013237,103.583481,72.459518,36.492580,14.076875,11.492582,8.137203,7.868611,8.823982,7.181006,4.255380,0.425621,0.794216,0.316530,0.000000,0.000000,0.000000,0.016529,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.355000,4612505.550000,3546,4405,103.837204,165.473557,169.514877,158.729752,143.688431,133.762817,133.704971,130.903320,131.804153,131.804153,134.357864,145.242157,161.729752,178.804138,191.977692,203.233887,206.366119,194.052078,168.316528,147.002487,136.010757,131.233902,128.663651,97.622330,80.862000,93.952904,104.514893,74.845467,37.316551,17.690926,11.696713,10.042990,10.240514,7.547122,10.675221,6.052078,1.233060,0.262811,0.313224,0.000000,0.000000,0.000000,0.000000,0.646282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.555000,4612505.550000,3567,4405,108.505798,168.390106,170.456223,156.935562,144.753723,133.282669,132.497543,130.563660,129.844650,131.547119,133.861176,144.662827,162.125641,178.960358,191.307465,204.695892,205.109116,192.299194,168.200027,146.076065,135.224808,132.365311,127.563652,97.671082,81.596703,93.960350,103.885971,75.191750,35.299191,15.376878,11.596713,8.850427,10.000017,11.189273,9.622330,3.460339,0.538844,0.045455,0.250414,0.326447,0.161158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.755000,4612505.550000,3583,4405,103.078529,167.458679,167.376038,155.962814,141.450409,132.318192,131.549591,128.805786,129.491745,131.276871,133.045456,144.623962,161.483475,179.028931,191.533051,202.508270,204.516525,193.194214,168.078506,145.648758,135.508286,132.541321,126.954552,97.954552,81.301666,92.830597,103.607452,73.607452,35.566132,16.783489,11.541342,8.329763,10.952909,10.515719,10.106627,3.992571,0.857028,0.185125,0.176034,0.000000,0.168596,0.305785,0.112397,0.099174,2.628099,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.555000,4612505.550000,3597,4405,99.776878,166.504150,166.595062,156.289276,142.305801,132.438034,130.925629,128.421509,129.495880,130.677704,132.123978,143.719025,161.388443,177.694229,190.975220,202.297531,203.710754,192.801666,166.975220,145.338852,135.247955,132.768616,127.090927,97.743820,80.074394,94.404976,103.975220,74.206627,35.702499,13.505804,11.553738,7.045467,8.593405,9.125635,9.463653,2.852074,0.692564,0.127273,0.375208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.955000,4612505.550000,3619,4405,119.331421,164.546295,164.223984,157.174393,142.785965,132.009109,130.653732,129.546295,129.017365,131.438858,131.959518,142.901672,161.232239,178.595871,191.248779,202.967789,205.157867,193.009109,167.066956,146.389267,134.909927,132.347946,127.736374,98.538033,79.686790,92.901665,104.538033,75.033897,35.422337,13.921506,11.612414,7.220673,7.955389,7.471916,8.912412,4.975216,0.447935,0.179339,0.194215,0.000000,0.000000,0.243802,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601472.155000,4612505.550000,3650,4405,106.991745,156.730576,165.738846,156.672729,143.160339,132.416534,131.317368,128.780182,129.077698,131.358688,132.681000,143.928925,161.598343,177.234711,192.094223,203.292572,204.854553,193.846283,168.689255,146.441330,135.259521,133.457855,126.854568,98.019852,80.391754,95.986786,104.532242,75.317375,35.631428,14.677703,11.532249,8.539683,8.832246,8.681008,9.154559,4.638853,0.582647,0.141323,0.553720,0.059504,0.083472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.955000,4612505.550000,3684,4405,103.338860,160.381821,168.935547,156.481003,142.208267,134.613235,131.828110,130.646286,131.563644,132.687607,134.497528,145.770264,163.423157,178.695877,192.390091,204.712402,205.844635,194.456207,169.687607,147.009933,135.472733,132.795044,128.018188,98.505798,80.919029,95.861168,105.340508,74.662819,36.695889,15.773572,11.638035,9.185136,9.771091,11.253735,9.871088,4.077697,0.388431,0.000000,0.259505,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,2.128926,0.000000,0.000000,0.000000 -601481.555000,4612505.550000,3697,4405,107.764481,160.987625,165.425629,156.880188,143.276871,133.252075,132.491745,129.764481,130.557861,132.301666,134.061996,144.904968,162.979355,179.202499,193.590927,204.913239,205.500015,194.938034,169.607452,147.913239,137.781006,132.045471,129.409103,99.260345,80.227295,95.152908,106.136383,76.822342,37.309937,15.457870,11.764482,9.539683,8.142992,9.088447,9.638859,2.943809,0.857028,0.268596,0.052893,0.013223,0.011571,0.000000,0.000000,0.000000,2.391736,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.355000,4612505.550000,3711,4405,111.009933,162.753723,165.687607,155.076050,141.844635,131.952072,130.406616,128.133896,128.902496,131.241333,131.927277,144.216537,160.638031,177.613235,191.109100,203.357040,204.778519,192.662827,168.092575,146.166946,136.348770,131.447937,128.018188,97.233070,79.233086,94.662819,104.001663,74.489281,34.687626,15.048779,11.638035,7.617370,7.919024,8.005800,8.615718,2.984305,1.190911,0.099174,0.256199,0.062810,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.955000,4612505.550000,3734,4405,117.362823,167.347946,167.761169,156.852081,142.976044,132.719849,131.430588,129.984314,130.959518,131.628937,132.612411,144.835556,162.017365,178.868607,192.124817,204.546310,206.009125,194.314911,168.984314,147.637207,135.794235,133.538025,128.645462,98.182655,79.744652,95.157867,104.736382,75.992577,35.876877,13.983490,11.695061,8.621501,8.251257,6.895884,8.790097,5.019017,0.415704,0.095868,0.042149,0.000000,0.000000,0.093389,0.000000,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.155000,4612505.550000,3770,4405,94.690102,163.913239,165.566132,153.921509,142.508286,133.772720,130.756195,129.045456,129.219009,130.880173,133.508270,144.400848,162.144638,178.706635,193.161179,204.185974,205.855392,194.053741,169.417374,148.268616,136.045456,132.615707,128.227295,99.136383,79.169441,95.541336,104.491753,74.119850,34.938042,15.226464,11.657043,6.706623,8.175223,9.268610,9.912413,3.042981,0.834713,0.472729,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.555000,4612505.550000,3792,4405,108.716537,156.435547,166.476868,155.823975,143.452072,133.881821,130.989273,130.865295,130.352905,131.881821,133.245468,145.344635,163.138031,179.394226,193.452072,205.633896,206.468597,195.311584,170.138031,149.005798,138.088440,134.336380,129.245468,99.253731,81.377693,95.790916,105.914886,77.096710,35.881840,15.475224,11.749605,6.703317,8.563653,9.428116,8.370264,3.282653,0.423968,0.235538,0.125620,0.005785,0.026447,0.000000,0.063637,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.755000,4612505.550000,3813,4405,95.662827,163.018204,167.133911,154.770279,141.819855,133.323975,130.687607,128.852905,128.307449,132.390091,132.348770,143.985153,162.175232,179.563660,194.274384,204.952087,205.737198,195.638031,169.365311,147.067795,136.076050,132.861160,127.745461,99.778534,80.861176,93.927292,105.257866,75.596710,36.200016,14.158695,11.613243,8.070262,8.546298,8.178527,8.121502,3.627280,1.140499,0.107438,0.000000,0.130579,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.205785,0.000000 -601508.555000,4612505.550000,3832,4405,101.191750,159.679367,165.216553,156.861176,142.852921,132.761993,131.224808,130.762009,130.819855,132.299179,132.960342,145.100845,162.720688,179.489288,194.464493,205.604980,207.216553,195.687622,170.398376,147.431427,138.224823,134.109100,129.654556,98.282654,81.993408,95.828110,105.968605,76.001671,37.481007,14.862003,11.786797,6.419019,9.079356,9.528114,9.285138,3.868603,0.566944,0.246281,0.127273,0.000000,0.018182,0.092562,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.155000,4612505.550000,3860,4405,107.541344,162.607452,166.500015,158.888443,144.466965,135.781006,133.954559,131.855392,132.409103,135.028946,136.830597,146.871918,165.285141,181.739685,195.747955,205.772751,208.045471,197.582657,171.896713,150.293411,138.400848,135.235550,131.318192,101.524811,82.111588,96.690102,106.756218,77.880188,35.524815,16.351257,11.938036,7.683483,9.983487,9.700843,10.099187,4.071909,0.414877,0.125620,0.000000,0.001653,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.010744,0.000000,0.000000 -601520.155000,4612505.550000,3890,4405,113.271088,162.312408,169.585129,157.494217,142.667770,134.957031,133.345459,130.841324,131.204971,134.254547,135.568604,147.279343,163.609924,181.436371,195.295868,206.593399,208.138855,197.469421,171.461166,148.841324,137.271088,135.089264,129.527283,99.742165,81.213234,96.295883,106.279343,78.907455,36.816547,15.058695,11.775224,7.214887,9.463653,8.506625,9.582659,4.447117,0.720663,0.309918,0.193389,0.000000,0.000000,0.149587,0.000000,0.000000,2.503306,1.180165,0.000000,0.000000,0.000000,0.000000 -601523.155000,4612505.550000,3905,4405,110.663658,160.233887,167.490082,156.680176,145.448761,134.704971,132.275223,131.242172,130.738037,133.349609,134.671921,145.374390,164.258682,180.076859,194.448761,206.035538,207.638855,196.167770,172.126450,149.300003,138.159515,134.498367,128.572754,99.382668,81.035561,95.952911,105.928123,77.250435,37.514896,15.814068,11.688449,5.546292,8.194232,7.711586,9.073568,3.079347,0.362811,0.242150,0.000000,0.148760,0.012397,0.088430,0.000000,0.360332,0.000000,0.000000,0.000000,1.033058,0.000000,0.000000 -601527.755000,4612505.550000,3928,4405,98.171089,162.576019,165.096695,157.162827,143.096710,134.071915,132.592575,130.749603,131.270264,133.997543,135.857040,145.592575,163.931396,181.906601,194.815689,206.493378,206.848755,196.055359,171.633881,149.014053,137.923157,134.171097,130.972748,99.402496,81.030594,96.088448,106.509933,78.121506,36.361179,15.747953,11.906631,5.357862,9.171918,8.035552,8.569436,3.402487,0.719010,0.203306,0.063637,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601534.555000,4612505.550000,3962,4405,106.487617,167.305786,168.057846,160.148758,145.545456,135.859528,134.099182,133.347122,133.272751,135.950424,136.719009,147.512390,164.677689,182.735535,196.115707,207.578506,209.818176,198.520660,173.537186,150.231400,139.123962,136.900848,130.181839,101.661171,81.933899,97.190094,108.363655,78.801666,38.272751,15.904151,11.834730,6.517365,9.494230,10.128942,8.966130,4.237199,0.837192,0.140496,0.375207,0.196695,0.000000,0.000000,0.061158,0.309918,0.000000,1.134711,1.104959,0.000000,0.000000,0.000000 -601538.155000,4612505.550000,3980,4405,102.628937,169.405792,167.571091,159.504974,146.389267,135.959518,134.571091,132.430588,133.381012,136.339676,136.653732,147.116547,165.207458,183.116547,197.794235,207.637207,209.182663,199.273560,172.347946,150.298355,139.653732,134.653732,130.554565,101.017365,82.083488,94.372742,107.496704,78.232246,37.033901,15.955390,11.868614,6.050423,7.225637,7.889273,8.101665,3.942158,0.823968,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.155000,4612505.550000,3995,4405,124.000008,165.330597,168.537201,160.917374,145.512405,134.892563,133.752075,132.900833,132.289261,135.661179,137.446304,148.545471,166.165298,182.685974,197.611588,207.338852,209.396713,198.578522,173.123978,149.966965,137.966965,135.528946,129.909103,101.661163,81.966949,95.958687,108.421494,81.024803,37.900848,15.524813,11.809937,6.811582,9.268610,8.808279,9.290925,5.363647,1.072730,0.295042,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.555000,4612505.550000,4012,4405,119.249603,163.604965,167.365295,159.654556,147.067780,135.654556,133.770264,132.646301,132.414886,135.447937,135.943817,147.100830,164.803314,182.497528,196.704147,207.348770,209.084305,199.076050,172.150421,148.158691,137.803314,135.447937,128.927292,99.745476,81.381844,96.985138,107.059517,78.249611,37.671097,14.394234,11.720680,6.147945,7.808281,7.413240,7.014062,3.057033,1.148763,0.114050,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,2.451240,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.955000,4612505.550000,4029,4405,112.138023,171.617371,166.088440,160.576050,147.997528,135.576050,134.807449,132.658691,133.790924,136.228943,137.757858,148.642151,165.956207,182.650421,197.146286,207.179352,208.956207,198.857040,173.270264,151.410751,138.749603,136.716537,131.336380,100.881828,82.311577,97.493401,107.138023,79.460342,36.592583,14.639686,11.939688,5.623977,8.607454,8.570263,8.380180,2.846288,0.261985,0.131405,0.000000,0.008265,0.004133,0.000000,0.057025,0.063637,0.000000,0.000000,0.000000,0.000000,1.358678,0.000000 -601550.955000,4612505.550000,4044,4405,121.891747,167.519852,167.693405,158.519852,148.106628,137.437210,134.784302,133.635544,131.949600,136.296707,137.982666,147.404144,165.685150,182.387619,197.552902,207.486786,210.685120,198.503311,173.371094,149.462006,138.189270,134.825638,129.900009,101.131416,81.197540,95.453728,106.974396,79.602493,37.544647,15.203323,11.809111,5.809102,9.155391,8.345470,7.923980,3.247941,0.576861,0.054546,0.128926,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.555000,4612505.550000,4062,4405,110.460350,163.691742,168.964478,161.733063,148.080170,136.220673,135.154541,133.914871,133.261993,137.642151,137.865295,147.708267,165.708267,183.394241,197.270264,209.757858,209.865295,199.881821,172.873581,150.542984,139.419022,135.278519,130.427277,101.080177,81.385971,96.584312,108.121506,76.584312,36.658695,14.330598,11.857043,6.718193,8.173570,7.841337,9.611585,4.024801,0.358678,0.655373,0.000000,0.000000,0.004132,0.000000,0.037190,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.755000,4612505.550000,4078,4405,135.695053,174.042160,169.976059,161.455399,146.075241,136.719849,135.645462,134.000839,132.612411,136.785980,137.984329,147.901688,167.058701,183.827301,197.174393,208.686783,209.885117,200.331421,174.124802,151.323166,139.405807,137.546295,130.463654,100.984314,81.298370,94.777702,107.166130,79.612427,36.769440,16.417372,11.860349,4.598355,6.645472,8.660347,8.991751,3.163643,0.611571,0.003306,0.000000,0.011570,0.069422,0.000000,0.000000,0.006612,2.580166,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.555000,4612505.550000,4092,4405,125.130592,175.163666,170.874405,162.684341,149.783493,136.684326,137.122330,135.519012,134.502487,139.643005,139.122330,149.981842,166.990128,186.056213,200.023163,211.626450,212.651245,201.337219,175.651260,152.659531,140.370270,137.560349,132.709106,103.791748,82.866127,98.155388,110.890923,80.593407,37.965305,17.546297,12.064482,7.076044,9.967787,6.956214,10.673568,3.776866,0.450414,0.124794,0.295042,0.603307,0.000000,0.000000,0.182646,0.287604,0.000000,1.023141,0.000000,0.000000,1.345455,0.000000 -601563.955000,4612505.550000,4109,4405,129.800018,174.692566,171.940521,163.866119,148.775208,137.733887,135.469437,134.461182,134.585144,137.337204,138.651245,149.171906,166.998352,184.378525,197.609924,210.320663,210.733887,200.626450,174.750427,151.957031,139.990082,135.576889,131.436371,101.361992,82.081017,95.940514,106.709099,79.700851,37.535561,15.090927,11.948779,4.072735,8.223983,8.296709,9.833074,4.600008,0.947936,0.229753,0.067769,0.000000,0.047108,0.000000,0.037191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.555000,4612505.550000,4127,4405,138.071915,178.435532,173.716537,163.377686,150.964462,139.121490,137.873566,135.691742,135.377701,140.171082,139.559509,150.038834,168.220657,186.749603,200.774384,210.848770,213.113235,202.286789,175.981003,152.435532,141.394226,137.964478,132.336380,102.642159,83.096703,97.468605,110.030586,80.245461,37.385967,15.798367,12.030598,6.285960,8.429769,7.702496,9.033072,4.395877,0.756200,0.257026,0.000000,0.036364,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601570.955000,4612505.550000,4144,4405,122.785965,175.686783,173.612411,162.868607,149.885132,137.306625,135.959518,135.199188,135.455383,139.223984,138.529770,149.901672,166.298355,184.992569,199.579346,210.785965,212.281830,201.571091,173.637207,151.769440,140.223984,135.281830,131.645462,100.901665,82.323151,95.554558,107.893402,79.612411,35.612419,15.046300,11.967788,5.648768,9.129767,8.076875,9.223155,3.776867,0.423142,0.004132,0.004132,0.015703,0.031405,0.000000,0.136364,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612505.550000,4166,4405,113.829773,179.623138,171.135544,165.895874,151.284302,137.449585,137.449585,136.160355,136.119034,139.838013,139.738846,149.920670,167.424789,184.317352,200.482651,211.523972,213.590088,201.044632,175.102478,153.160339,140.961990,137.647934,131.854553,101.771904,82.383492,95.449600,108.168602,80.507454,37.738861,15.697538,11.986795,6.175217,8.084312,9.634727,9.289270,4.659512,0.447935,0.276035,0.709918,0.061157,0.310745,0.000000,0.019008,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.155000,4612505.550000,4205,4405,116.518196,170.237183,171.757843,159.030579,143.724792,133.716553,132.584320,130.427292,131.030594,131.138031,133.576050,144.121475,162.708252,179.113220,192.567764,203.154541,205.212387,192.857025,167.270248,144.419006,135.047119,132.171097,126.518196,96.790924,80.204147,92.857040,103.609108,74.989273,35.460354,15.252086,11.501672,8.116541,7.865303,9.299190,7.061996,3.132238,0.670250,0.138844,0.279340,0.123967,0.057025,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.355000,4612505.550000,4221,4405,131.707458,169.575226,171.376877,161.575226,145.327286,134.624802,134.285965,132.285965,131.385132,133.451248,134.509109,145.327286,164.352081,180.079346,193.633072,203.889267,206.814896,193.897537,167.897537,146.186783,135.748779,132.426468,126.872742,97.781830,79.914078,93.550423,104.442993,74.699203,34.748775,14.655390,11.533903,8.974393,8.040510,9.027287,7.563648,3.596702,0.538018,0.308265,0.177686,0.000000,0.004959,0.000000,0.068595,0.119009,1.420661,0.000000,1.702480,0.000000,0.000000,0.000000 -601591.155000,4612505.550000,4245,4405,129.933914,170.446274,170.107437,160.305801,143.859497,133.652908,133.950424,131.809937,131.380188,132.694229,133.950424,144.851242,162.024796,178.768600,192.000015,202.545471,202.991745,190.578522,165.586777,144.578506,133.396713,130.818207,124.818199,96.504150,78.123993,91.876038,103.049614,73.438042,34.628124,13.945473,11.347127,9.264478,7.401667,8.733072,10.560346,4.470256,0.534712,0.142149,0.000000,0.127273,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.155000,4612505.550000,4265,4405,125.947121,178.195038,171.236359,160.682663,146.715729,134.294235,133.963654,131.426453,131.327286,132.170258,133.219849,143.897552,163.062820,179.203308,191.930573,202.823135,203.104126,190.467758,165.542160,143.641357,133.145462,130.095886,125.872742,95.633072,78.575218,92.302490,102.740509,73.046303,35.104149,14.714893,11.442995,8.116541,8.739684,9.059518,8.671087,4.188438,1.060333,0.211571,0.301654,0.000000,0.006612,0.100827,0.000000,0.290083,0.000000,0.000000,1.170248,0.000000,0.000000,0.000000 -601600.155000,4612505.550000,4290,4405,111.503326,180.751266,174.701675,161.247131,146.461990,135.081833,135.676880,132.428940,132.453735,134.437195,134.271912,145.817352,163.238861,180.247131,192.478531,204.800842,203.238861,192.081833,166.833908,144.263657,132.933075,130.395874,125.081833,97.247124,79.941345,92.156219,102.222336,74.379356,35.536385,15.695059,11.371093,9.071090,7.009105,7.761171,8.866130,2.870253,0.398348,0.193389,0.263637,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.555000,4612505.550000,4327,4405,117.296715,183.395889,175.445480,163.354553,148.602478,136.585968,136.437210,134.147949,133.652084,136.652084,135.519852,146.916550,164.387604,181.594238,194.098373,205.445465,204.751266,190.833908,165.949585,144.924820,133.090088,131.181000,127.081841,96.420677,79.883492,92.660347,103.197540,74.090103,35.701672,15.007456,11.552911,10.771089,9.324808,9.617369,10.147949,5.419019,0.912399,0.609919,0.000000,0.247108,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.555000,4612505.550000,4342,4405,125.357040,186.472733,174.373566,162.059525,146.687607,134.968613,134.861176,132.051254,132.166962,135.191757,133.274399,145.381851,162.026474,179.530594,192.125626,202.720673,202.555374,188.555374,163.803329,142.117371,131.671097,129.745468,124.200012,94.852905,78.001671,90.571907,101.323975,71.910759,33.406631,14.057867,11.290927,9.761997,7.790922,8.706626,9.423980,2.915709,0.506613,0.182645,0.148761,0.026447,0.057851,0.000000,0.000000,0.364463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.555000,4612505.550000,4372,4405,120.466133,185.317352,177.110748,167.656219,151.300842,136.474396,137.383484,134.953735,135.226471,138.143814,135.160355,146.317368,164.639694,181.193390,193.970261,206.218201,204.656219,190.292587,165.821503,144.499191,134.532257,130.838043,125.945473,96.986794,79.226463,93.209938,101.962006,74.276054,36.317375,17.148777,11.449605,10.295057,7.867782,10.638859,9.422329,5.247117,0.885953,0.434712,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,2.778513,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.955000,4612505.550000,4404,4405,139.333893,192.433060,175.342148,170.267776,151.044632,137.788437,136.606628,134.656219,134.011597,139.160339,135.581833,146.507446,162.573563,181.796692,193.433060,203.730576,203.548767,187.309097,163.639679,144.912399,131.573578,129.647949,125.490921,94.466125,79.143814,93.912407,102.788445,72.639679,35.176880,15.117373,11.408285,8.977702,7.743817,8.769438,9.357039,2.666950,1.000002,0.061984,0.228926,0.002479,0.062810,0.000000,0.128926,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.955000,4612505.550000,4419,4405,148.751282,197.635559,175.164490,171.263657,151.734711,138.280167,137.594223,136.181000,135.742981,141.891739,137.007446,148.222321,164.999176,183.304977,195.701675,206.825638,203.767792,189.288452,165.833893,145.751236,134.040512,130.181000,125.990921,96.197533,79.536385,95.057037,103.519844,73.247124,36.346298,14.358696,11.453738,11.895059,8.458692,9.100014,10.023980,5.042984,0.823969,0.177687,0.114050,0.114050,0.003306,0.000000,0.000000,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.955000,4612505.550000,4444,4405,142.441345,198.664490,179.292587,169.094238,151.333908,139.110764,137.714066,136.102493,135.928940,141.862823,135.846298,146.953735,163.185150,180.846298,194.590103,205.515717,203.548782,189.019852,164.614899,144.879364,133.251251,130.061172,126.218193,96.457863,80.251251,92.995056,104.904144,73.185135,35.647953,16.689274,11.474400,11.418197,8.740510,8.700014,10.833899,5.664475,1.049589,0.598348,0.147934,0.133885,0.000000,0.164463,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.955000,4612505.550000,4464,4405,149.486786,202.453720,182.354553,169.652069,150.205795,137.081818,135.114899,134.462006,135.362823,140.255371,134.255386,146.420670,161.685120,179.726456,193.676865,204.652069,202.916534,185.131409,163.420670,141.966125,131.081833,127.387619,124.172737,93.379349,78.032249,92.891747,101.610748,71.462006,34.007458,13.549603,11.288448,9.817370,7.588443,8.349600,9.307452,5.962819,1.199176,0.658679,0.489257,0.269422,0.143802,0.000000,0.060331,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.555000,4612505.550000,4492,4405,115.473572,164.539673,169.746292,157.647110,144.010757,134.242157,132.382645,129.481827,130.242157,131.308273,132.341324,143.266953,160.275208,175.076859,189.043808,199.217361,198.324799,187.233887,162.919846,141.754547,129.936371,126.779350,121.118195,93.324806,78.473572,90.134727,99.985962,73.779350,33.581013,14.646299,11.010763,7.367781,8.054559,7.876046,7.849600,2.244634,0.814052,0.241323,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.555000,4612505.550000,4512,4405,113.352089,158.186783,166.178528,156.624802,142.442993,133.881012,131.889267,130.095886,129.723984,131.120667,132.699188,141.707458,160.682663,177.062820,188.310760,197.980179,197.682663,186.013229,160.971909,139.137207,128.839676,125.757034,120.872742,93.343811,76.922333,91.393402,98.922325,72.426460,33.682663,12.994230,10.988449,7.386790,7.461171,8.101666,7.329764,4.625629,0.509093,0.149587,0.000000,0.000000,0.000000,0.223967,0.000000,0.238017,0.000000,1.197521,0.000000,0.000000,0.000000,0.000000 -601647.555000,4612505.550000,4527,4405,106.952072,164.538864,170.654556,160.481018,145.109116,135.952087,132.968597,131.588440,131.695877,133.819839,134.604980,145.563660,162.464493,178.406601,190.447922,200.770248,199.885941,187.464462,162.885971,143.489288,131.935547,128.373566,123.200012,95.100838,79.547119,94.819847,101.902489,74.943825,36.547127,15.966961,11.200018,8.770261,8.358690,8.424806,9.824808,2.827279,1.073556,0.112397,0.190083,0.000000,0.000000,0.000000,0.000000,0.058678,1.373554,1.268595,0.000000,0.000000,0.000000,0.000000 -601650.155000,4612505.550000,4540,4405,110.796715,166.507446,172.523972,160.350418,144.639694,137.408279,134.755386,131.606628,131.590103,133.292587,134.300842,145.433060,163.052902,177.871078,191.160339,200.507446,200.862808,188.507446,162.904129,143.267792,132.226471,128.557037,123.945473,95.879356,79.003326,92.433075,101.565308,74.350433,34.986797,15.956216,11.267788,8.776048,10.085965,10.378526,9.953734,5.161167,0.468598,0.285952,0.058678,0.000000,0.195042,0.004132,0.042975,0.281819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.955000,4612505.550000,4554,4405,111.997536,165.716553,171.129745,158.923172,144.981018,135.625641,133.683487,132.138031,132.038864,132.642166,135.195892,144.592590,162.716553,177.840485,191.377701,200.873566,200.509933,188.402496,163.014069,142.022339,131.129776,127.691750,122.972748,95.394234,79.790924,91.807457,102.840515,74.228943,36.485142,15.766961,11.179358,9.876877,7.649601,9.132245,9.890099,4.451248,0.239671,0.000000,0.132232,0.000000,0.221488,0.009918,0.047934,0.152067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.955000,4612505.550000,4569,4405,110.090103,167.445465,170.065292,159.478516,144.437195,134.536377,132.478531,130.387619,131.172745,131.676865,133.610748,144.693390,161.098343,176.544632,188.619019,198.304962,198.924789,186.776031,162.924789,140.404144,130.519852,125.106621,121.627281,94.519844,79.296715,91.090103,101.404144,72.271919,34.759525,13.095058,11.057043,6.534723,8.461996,6.807450,7.867781,4.271909,1.081821,0.175207,0.000000,0.090909,0.000000,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612505.550000,4587,4405,110.495880,167.876038,168.842972,156.876038,144.809921,136.487625,134.727280,132.438019,131.958679,133.603317,134.371902,145.066116,161.975204,176.867767,190.471069,199.752060,199.975204,187.793396,164.223145,141.404953,130.801666,129.057861,122.818192,95.842987,78.611588,90.793404,102.454559,73.371918,34.330593,14.517374,11.165308,6.404145,8.387618,9.010756,6.338855,2.614882,0.706614,0.225621,0.300827,0.000000,0.006612,0.003306,0.095868,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612505.550000,4605,4405,114.914062,162.256210,169.487610,159.735550,145.049606,136.198364,134.619858,131.338852,131.776871,133.842987,133.884308,144.214890,161.371918,176.826447,189.347122,198.123978,199.454559,187.619858,163.388443,139.991745,130.991745,127.330597,123.636383,95.702492,78.355408,93.876053,103.652908,75.371918,36.289276,14.895060,11.239689,5.503318,8.176873,8.487616,9.081007,3.223975,1.020664,0.738018,0.000000,0.049587,0.123967,0.000000,0.053719,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.355000,4612505.550000,4626,4405,105.523979,149.963654,163.857864,157.816528,146.147110,139.704147,136.064468,131.568604,130.800003,133.196701,132.998352,143.576859,160.510757,176.155380,188.609924,199.552078,198.089264,186.940506,161.593399,140.381821,130.828110,128.604965,123.109100,95.968613,79.423157,92.481010,100.700844,71.717369,34.208282,13.826465,11.191754,6.990922,6.684310,7.273566,8.736376,4.403313,1.520663,0.952067,0.758679,1.297522,0.509092,0.814877,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.155000,4612505.550000,4645,4405,110.869431,161.472733,167.728943,157.381851,142.943832,134.051254,130.869431,130.092575,129.547119,132.026459,132.514053,144.109116,160.398361,176.373566,190.679352,197.737198,199.447937,186.398361,161.514053,140.249619,129.216537,126.282654,121.472740,94.307449,77.646294,90.728935,100.547119,73.505798,34.530598,14.088448,11.042994,4.857861,5.887614,7.105795,7.419847,4.222321,0.680993,0.134711,0.133884,0.000000,0.000000,0.000000,0.057025,0.105785,0.000000,0.000000,0.000000,0.000000,2.261157,0.000000 -601676.355000,4612505.550000,4671,4405,116.329765,162.916534,168.660339,157.668594,145.197525,136.536362,133.842163,131.999191,132.412415,132.850418,134.123154,145.338013,162.040497,177.569427,190.420670,199.759506,200.561157,189.321487,163.941330,142.263641,131.833893,127.627281,123.627281,95.090103,78.139679,91.503326,101.949608,75.643814,35.280186,14.353737,11.238861,7.233070,8.104973,7.853732,8.343816,2.718188,0.356200,0.074380,0.152893,0.051240,0.000000,0.021488,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.155000,4612505.550000,4695,4405,122.238853,167.093414,167.300018,155.404144,141.288452,133.214066,131.131409,129.247116,129.338028,131.999191,133.139679,143.395889,160.238861,175.490082,189.308273,197.713226,198.589264,185.994217,161.751266,139.395889,130.197525,125.461998,120.263649,93.866951,77.751251,91.032242,101.205795,73.354553,36.023987,14.015719,10.933077,7.260344,8.099186,8.689269,9.404146,3.700007,0.652894,0.873555,0.358678,0.193389,0.079339,0.000000,0.109092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601684.155000,4612505.550000,4710,4405,121.723991,165.823151,173.203323,161.352081,147.004974,137.765305,134.583481,133.781845,132.517365,134.715729,136.195053,145.062820,164.095886,180.616547,191.062805,201.649582,200.104126,188.872726,165.393402,142.881012,133.252914,128.368622,123.327293,95.434731,78.393410,93.112419,102.732254,74.872749,35.707458,16.400021,11.211590,6.074392,8.772741,8.140509,7.816543,3.708271,0.729753,0.557026,0.132232,0.000000,0.000000,0.000000,0.085951,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.955000,4612505.550000,4744,4405,111.276878,164.119858,171.863647,159.632248,146.830597,137.574402,135.053741,134.119858,131.516541,134.574402,135.119858,145.987625,162.938034,179.202499,190.681839,201.673569,200.533081,189.830597,163.549606,142.764481,131.582657,128.623978,123.590927,95.450432,79.252083,93.020676,103.615715,75.384315,36.202499,16.370266,11.235557,5.943814,8.706626,6.703319,8.542164,3.619017,0.661160,0.432233,0.185951,0.133884,0.003306,0.000000,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.755000,4612505.550000,4758,4405,110.859512,167.165298,167.198364,159.677704,147.016541,137.099182,134.785141,133.504150,132.272751,135.057861,136.537201,146.636383,164.082657,178.322342,192.173569,201.256210,201.892578,190.082672,166.314072,143.504150,132.206635,129.570251,124.909096,96.677696,79.421494,94.066124,103.115707,76.181824,35.347122,15.499192,11.355392,6.275219,7.843817,7.449601,8.408277,3.278520,1.092564,0.095868,0.019835,0.000000,0.000000,0.000000,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.555000,4612505.550000,4777,4405,111.105797,161.956207,170.956207,160.212402,146.848770,136.030594,134.931412,132.881821,132.014053,135.584305,135.427277,145.303314,163.336380,178.452072,191.857040,202.361160,200.716537,189.493393,165.592575,143.584305,130.881821,127.766129,122.154556,95.385963,77.600838,91.708275,100.890091,75.121498,35.245476,12.835553,11.104978,5.870260,5.801665,7.244642,8.534723,3.366122,0.298348,0.259505,0.236364,0.000000,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.555000,4612505.550000,4797,4405,120.337204,169.874390,171.180176,159.560333,146.411591,136.056213,133.899200,132.502487,131.502487,134.750443,135.014893,145.436371,162.312408,179.312408,191.246292,201.419846,200.766953,189.238022,164.353729,142.816528,132.180176,129.204971,124.072731,95.171913,78.733902,93.254562,103.163651,76.204971,37.882668,13.717372,11.279357,7.410755,9.483485,7.814890,8.290922,4.588438,1.370250,0.822316,0.186777,0.171901,0.185951,0.225620,0.016529,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612505.550000,4813,4405,129.804977,167.747116,169.656204,160.829758,148.978516,137.714066,134.540512,132.705811,132.242996,134.788437,136.085968,146.664459,162.523972,179.598328,191.532211,201.077667,202.160324,190.623123,165.697525,144.383484,132.920685,127.821510,124.127289,95.697540,79.333900,92.606628,103.391754,75.804977,36.978531,16.603327,11.284317,5.071083,9.477701,8.935552,8.161999,4.549595,0.445455,1.094216,0.260331,0.123967,0.105785,0.000000,0.037191,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.755000,4612505.550000,4843,4405,131.032242,171.486786,172.205795,162.313232,148.189255,136.280167,133.751251,132.428940,131.090088,136.090088,136.949585,146.726456,163.933060,179.536362,192.701675,203.172745,202.519852,190.222336,166.090088,143.924789,132.321503,128.883484,125.081833,96.585960,78.263657,93.354568,103.734718,76.924812,34.073578,14.861175,11.371093,4.477695,8.906627,6.859518,7.176046,3.510752,0.447109,0.000000,0.050413,0.000000,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.555000,4612505.550000,4857,4405,123.695053,170.925613,169.809921,160.264465,146.495880,136.008286,132.388443,131.297531,130.917374,133.859528,133.206635,144.512390,161.330597,176.495865,191.322311,200.057846,199.471069,188.661163,164.123962,141.429749,130.917374,127.636383,123.363655,94.570267,78.909103,91.702492,102.537209,76.553734,34.181835,12.933903,11.214894,6.861170,7.405799,6.757037,6.528936,3.527279,0.546282,0.350414,0.160331,0.000000,0.000000,0.000000,0.037191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.155000,4612505.550000,4880,4405,122.300835,167.581818,169.499176,162.647934,148.871078,136.003311,135.482651,133.482651,132.523972,135.606613,136.061157,146.433060,162.515701,179.631409,191.532242,202.242981,201.614883,190.532242,165.102478,143.317352,132.160339,128.515717,124.490921,96.028107,78.449608,92.474388,103.400009,76.598366,35.631424,13.112415,11.317375,4.692570,6.861173,6.064476,6.025633,2.471079,1.071077,0.129753,0.121488,0.168596,0.177687,0.000000,0.068595,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.555000,4612505.550000,4897,4405,137.044647,174.887619,171.904144,164.490921,151.854568,138.788452,136.350418,134.945480,133.482666,136.978516,137.094223,147.490921,166.284317,182.218201,194.507462,204.433075,203.325638,192.044647,167.697540,146.424820,135.573578,131.730591,125.490929,99.127289,79.821510,94.846298,105.052910,78.366959,38.540520,17.123159,11.408284,5.547945,7.263651,9.576049,7.066130,3.985959,0.882646,0.189257,0.439671,0.024794,0.024794,0.000000,0.019835,0.000000,0.000000,5.639670,0.000000,0.000000,0.000000,0.000000 -601726.755000,4612505.550000,4923,4405,120.015724,177.759521,173.875229,164.065308,149.503326,138.412415,137.313248,136.635559,134.883469,137.189270,137.412415,147.776047,164.470261,180.643814,193.602493,203.982666,204.561172,192.495056,167.990921,146.230591,134.999191,130.371078,125.627281,97.850426,80.437210,93.693405,104.767776,79.734718,37.288448,16.386795,11.420681,6.729764,7.823156,8.926460,9.687617,2.283478,0.668597,0.385125,0.000000,0.037191,0.008265,0.133884,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.155000,4612505.550000,4940,4405,127.665306,177.888428,176.723145,165.376038,151.185974,137.756210,138.144638,136.417374,135.880188,137.566132,138.326462,149.252075,166.516525,182.714874,195.235535,205.334717,204.623962,193.359497,169.144623,147.896713,135.144638,132.516541,126.954559,98.739685,81.177711,94.979355,107.293404,79.202507,37.500019,16.387621,11.541341,5.692572,7.643817,8.199187,8.436378,3.833065,0.504134,0.413224,0.062810,0.008265,0.328100,0.000000,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.955000,4612505.550000,4969,4405,112.558701,175.119034,162.504150,156.814911,143.393417,134.633072,133.021500,132.137207,132.509109,136.955383,136.054565,146.525650,162.675217,180.278519,193.080170,202.551254,204.369431,192.468597,167.551254,146.766129,134.240509,129.843811,125.281830,96.463646,78.711594,92.703316,103.560349,77.047958,35.794231,14.290101,11.389276,6.545465,8.591750,8.106625,8.716541,3.615709,1.593391,1.056200,0.533059,1.395869,0.380166,0.009091,0.004959,0.423967,0.000000,0.000000,0.000000,0.000000,1.352893,0.000000 -601743.755000,4612505.550000,5008,4405,118.499184,173.185120,172.705795,162.532242,147.664459,136.226456,133.821503,131.358688,131.333893,131.176865,132.606628,143.424789,161.829758,176.623138,188.424789,197.978516,197.937195,185.143799,161.135544,139.838013,128.532242,126.581833,120.127281,92.920677,76.722336,88.871094,101.201668,72.085968,35.234730,14.512414,10.920681,8.878526,7.783483,8.801666,9.609933,3.277693,0.481820,0.204133,0.711572,0.000000,0.000000,0.000000,0.097521,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.955000,4612505.550000,5024,4405,121.404152,175.461990,177.007446,162.445480,146.875229,136.900024,135.908279,133.453735,133.123154,133.114883,133.693405,145.503326,162.908279,179.933060,190.437195,200.891739,200.602478,187.585953,163.189270,141.635559,130.701660,128.172745,122.081833,94.445473,77.495064,90.156219,102.098358,75.371094,35.387619,16.985970,11.098367,9.531420,9.476047,9.668610,8.857865,2.335545,1.256201,0.856200,0.107438,0.000000,0.000000,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,2.100827 -601749.955000,4612505.550000,5039,4405,133.198364,174.562012,174.975235,162.239700,148.562012,137.685989,136.487640,132.157043,133.165298,134.595062,133.206635,145.330612,164.008301,179.338882,191.000031,200.818207,199.297546,185.231430,162.429779,142.809952,130.942169,128.214890,121.454559,94.206619,78.644638,91.371910,101.628105,75.090919,34.776875,16.279356,11.041341,9.365303,7.620676,9.761997,8.066131,4.571910,0.976036,0.460332,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.159504,0.000000 -601752.955000,4612505.550000,5054,4405,122.819023,178.637207,177.587601,163.133072,146.777695,136.306625,134.546295,132.496704,132.033890,132.414062,133.190918,144.538025,162.455383,178.430573,190.719833,201.157852,200.430573,187.645447,161.777695,139.843811,131.463654,127.496704,122.463646,93.934731,77.124817,90.827293,103.356209,75.265312,36.909939,14.576052,11.133077,10.588445,9.044641,8.669435,7.691748,3.130587,0.514052,0.261985,0.114050,0.043802,0.003306,0.004959,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601755.555000,4612505.550000,5067,4405,147.721512,177.895050,175.101654,163.721497,147.812408,136.514893,135.200836,132.126465,131.250427,133.771088,133.250427,143.324814,163.300003,177.944641,189.663635,199.985962,198.440506,186.209091,162.052078,139.853745,129.498367,127.010757,121.209106,92.721504,77.176048,89.795883,101.366127,73.605797,33.399193,15.130596,11.019028,8.404973,6.953731,8.090922,9.241336,2.904967,1.230582,0.128100,0.123967,0.000000,0.122315,0.000000,0.081818,0.033058,0.000000,0.000000,0.976860,0.000000,0.000000,0.000000 -601758.555000,4612505.550000,5082,4405,127.539680,180.688431,177.473572,163.291748,149.043808,137.597534,135.853745,134.688446,133.366135,135.713242,134.382660,147.118195,163.688431,179.043808,191.638855,201.903305,200.019012,187.721512,162.713226,142.192566,130.589264,127.977699,122.663651,93.357864,77.076874,89.704971,101.382660,73.911583,34.415722,14.634729,11.151258,10.303321,8.811584,9.900013,8.547123,2.822322,0.301654,0.272728,0.203306,0.000000,0.000000,0.000000,0.000000,0.246281,0.000000,0.000000,0.000000,0.820661,5.259505,0.000000 -601762.155000,4612505.550000,5100,4405,121.736374,178.628937,176.248779,164.182663,148.637207,136.876877,135.728119,132.976044,132.909927,134.422333,133.174393,145.554565,163.637207,178.430588,190.116547,200.719849,199.083481,185.405792,161.381012,141.207458,130.149597,128.232239,121.463646,93.347946,77.232246,90.141335,102.356209,73.678528,35.761177,14.799191,11.042168,9.513237,8.357038,8.718195,7.701668,3.238024,1.201655,0.075207,0.339670,0.000000,0.000000,0.000000,0.000000,0.052893,2.550414,0.000000,0.000000,0.000000,0.000000,2.238017 -601764.755000,4612505.550000,5113,4405,114.154564,180.716522,171.865280,164.295044,149.476868,136.195892,134.501663,131.410751,132.295044,134.584305,133.270264,144.947952,163.154556,178.807434,190.749573,200.956192,199.832230,186.311569,163.071915,141.328125,129.997528,127.154556,120.790916,93.526459,76.790924,89.658684,102.071907,73.906631,34.675224,14.228117,10.981011,8.880179,7.718195,8.324806,6.686791,3.480171,0.860332,0.193389,0.622316,0.000000,0.045455,0.000000,0.070248,0.000000,2.824794,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.555000,4612505.550000,5132,4405,116.315720,179.351242,175.227280,167.500000,150.533081,136.194229,136.144638,133.450439,133.673584,135.590927,135.012405,147.037186,165.185944,180.747940,192.623962,203.227280,201.723145,187.648758,163.045471,143.541321,131.632263,129.367798,122.227295,94.359528,78.152908,90.747948,101.599197,72.954559,35.293411,15.709936,11.111589,9.675222,9.050426,9.668610,10.207454,5.552075,0.917358,0.986778,0.505787,1.033059,0.403306,0.231405,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.555000,4612505.550000,5157,4405,124.899185,187.543808,177.725632,165.552078,149.229782,135.246292,136.171921,134.948776,134.238037,136.560349,133.923981,146.138870,163.023163,180.626450,191.609924,201.337204,200.023148,186.204971,161.791763,141.791763,131.436371,128.477707,122.800018,93.684311,77.618195,90.874397,102.444641,73.089272,35.849606,14.388448,11.163655,10.267784,8.645468,9.630592,8.802493,3.429761,0.668598,0.400828,0.290083,0.002479,0.000000,0.000000,0.000000,0.213223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.755000,4612505.550000,5183,4405,131.744644,189.769440,175.744644,168.141342,149.389267,136.546295,135.703323,133.430603,133.240524,135.620667,133.414078,145.174393,162.521500,178.438858,191.843796,201.281815,199.190903,186.232224,160.918198,141.124802,129.438858,128.108292,122.463654,91.802490,77.356216,90.645470,100.166138,72.959526,33.389275,14.028117,11.133077,9.176049,7.359516,9.476874,7.766955,4.190917,0.902482,0.090910,0.180992,0.082645,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.155000,4612505.550000,5210,4405,137.375214,193.664444,174.920654,168.479340,153.363632,139.603302,139.479340,136.801651,135.380173,139.201660,136.110748,146.838013,163.970230,182.487610,194.644623,204.801651,203.785126,188.826447,165.512390,145.041321,134.297531,131.338852,124.818192,95.975212,80.115715,92.661163,102.876038,74.107460,33.545471,14.014894,11.347127,11.436378,6.345465,8.000840,7.975220,2.446286,0.819010,0.480166,0.000000,0.045455,0.257852,0.000000,0.066116,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.355000,4612505.550000,5241,4405,142.590103,192.540512,179.499191,169.689270,151.986801,137.135559,136.714066,134.780182,134.457855,139.978531,135.565308,147.160355,163.986801,180.697540,195.052917,204.846298,203.085968,187.962006,164.623154,143.400024,132.606628,129.581833,124.763649,94.135551,78.879349,92.681000,102.970261,72.507446,34.639690,14.545473,11.342168,11.232247,8.041336,9.093403,8.801666,4.420671,0.575209,0.261985,0.040496,0.000000,0.000000,0.000000,0.187604,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.155000,4612505.550000,5290,4405,129.350433,195.581818,179.234711,168.780167,151.697525,139.209915,137.333893,135.631409,134.482651,139.300827,135.788437,146.821487,163.978516,180.821487,194.499176,204.284302,202.581818,187.928925,164.185120,143.433060,131.928940,129.424805,124.490929,95.259521,78.953735,92.804977,101.614899,73.871086,35.614895,14.238034,11.317375,10.695057,7.292574,7.871915,8.472740,2.561990,0.562811,0.313224,0.068596,0.117356,0.000000,0.019835,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,1.348760,0.000000 -601812.355000,4612505.550000,5351,4405,112.181007,164.715714,169.434723,160.930588,146.195053,135.790100,132.806625,131.831421,130.847961,131.633072,133.277710,143.765305,162.922333,177.195053,189.649597,199.575226,200.137207,187.624802,163.261169,141.980179,130.723984,128.285965,124.509109,95.467789,79.062828,94.252914,103.376877,74.277710,35.476055,15.034730,11.319028,6.857037,6.219848,6.538029,8.304145,4.774389,0.500828,0.221488,0.120661,0.065290,0.028099,0.238017,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.155000,4612505.550000,5375,4405,101.129768,165.972733,170.642151,158.898361,147.038849,136.419022,134.121506,133.154556,131.385956,133.212418,134.055374,144.790924,163.171082,179.551254,191.501663,202.154556,201.014053,188.997528,164.650421,142.195877,131.460342,127.567780,122.790916,92.964470,78.022339,92.179367,102.642174,73.113251,35.700024,14.832251,11.162828,6.566953,8.183485,8.809932,9.057864,1.771080,0.590911,0.048760,0.276034,0.056199,0.000000,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.955000,4612505.550000,5399,4405,109.576042,162.733047,170.146271,160.171066,145.666962,135.658707,133.336380,131.088440,129.220673,131.832245,132.427277,143.559525,161.724792,178.261993,189.881821,199.931412,199.311584,188.047119,162.873550,142.220688,130.600830,126.443810,120.609100,92.840515,75.617371,90.096718,100.782654,72.832253,34.956215,13.792580,10.964481,5.891746,6.823154,7.994229,9.109104,2.982652,0.361985,0.066116,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.355000,4612505.550000,5436,4405,111.874397,163.447113,172.323151,161.306625,147.612411,136.306625,134.116531,132.612411,132.133057,133.819016,134.223969,144.736374,163.496704,178.397552,191.777710,201.422333,200.116562,189.504990,164.529770,142.149597,131.356216,126.843803,121.645470,94.397537,77.331429,91.314888,103.554558,74.785973,34.785969,14.773571,11.058697,6.414061,8.295056,6.633898,7.252079,3.328106,0.841324,0.042975,0.092562,0.104133,0.000827,0.000000,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.555000,4612505.550000,5497,4405,108.933067,165.428925,169.164459,160.288437,146.081818,136.718185,133.495056,132.238861,131.875214,133.511581,134.701660,145.147934,162.709915,179.577682,191.776031,200.536362,200.833893,188.866943,163.900009,142.784302,131.503311,127.445465,122.263649,93.197533,76.776054,91.338028,102.197533,75.387619,34.941345,13.668613,11.114896,6.538855,8.445469,7.704145,8.818196,3.412404,0.546282,0.410744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.155000,4612505.550000,5600,4405,113.038033,163.831406,171.401672,162.145447,147.376877,139.137192,134.773560,132.823151,132.790100,136.393402,135.624802,147.195038,165.120651,180.178528,193.715714,203.881012,203.252899,191.732239,167.071075,145.442978,134.442993,129.285965,125.054558,96.633072,77.376877,93.013237,105.418198,79.203323,37.707458,14.888447,11.368614,9.014888,8.281835,8.136378,8.568609,3.077692,0.568596,0.073554,0.170248,0.000000,0.052066,0.000000,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.355000,4612505.550000,5741,4405,116.830597,176.293411,175.070267,167.326462,152.888443,139.971085,138.433899,137.095062,136.070267,138.979355,139.359528,149.723160,167.764481,184.880188,196.590927,207.252106,207.433899,195.541336,171.623978,150.764481,136.929764,133.458679,128.500015,99.690094,81.500015,96.747940,107.276871,80.789276,38.111588,16.343819,11.681836,5.829763,8.456214,7.191750,8.797534,3.665297,0.709092,0.000000,0.062810,0.000000,0.025620,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.755000,4612505.550000,5813,4405,125.309944,181.012390,177.318176,167.714874,154.276855,140.053741,139.425629,137.913239,137.086792,141.706635,139.979355,150.714874,168.425613,185.863632,198.648758,208.574387,208.690079,197.648758,173.698349,151.119827,139.053741,134.632248,129.409103,100.516556,81.458694,96.194237,108.772751,80.739693,38.433903,16.781010,11.764482,7.355383,8.257868,8.670263,8.040508,3.099180,0.885125,0.006612,0.000000,0.066116,0.009091,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601911.555000,4612505.550000,5847,4405,103.042160,177.976028,182.703323,166.736359,150.876877,138.339676,138.719849,136.290100,136.166122,136.645462,139.058685,150.562820,169.455368,185.695038,198.810745,209.108261,210.496689,197.843796,173.777695,150.711578,140.331421,137.273560,131.009109,101.141335,85.347946,100.207451,110.744644,80.926460,40.959530,16.505802,11.909935,10.456212,10.387619,10.433900,11.988445,6.256207,1.300830,0.237191,0.129752,0.000000,0.000000,0.000000,0.000000,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.555000,4612505.550000,5867,4405,116.519844,180.235519,175.607422,161.938019,146.194214,135.285141,135.863647,133.351257,132.549606,134.235550,135.400848,148.004135,166.384293,182.756180,195.938004,208.739655,208.384277,195.367752,171.210739,149.433884,138.946304,136.549606,131.590927,102.533073,85.491753,99.111588,110.797539,81.334724,39.896713,16.791754,11.962829,11.890099,7.863650,11.114890,10.807452,3.946289,1.909921,0.199174,0.436365,0.063637,0.000000,0.323967,0.034711,0.014050,0.000000,0.000000,0.863636,0.000000,0.000000,0.000000 -601919.955000,4612505.550000,5889,4405,113.970268,180.795883,179.043823,165.280182,148.271927,133.048782,133.114899,130.326462,130.106628,133.776047,134.957870,146.792587,164.700012,182.154556,195.857040,206.691742,207.666946,194.278519,170.675217,148.055374,137.840500,136.799194,130.790939,100.848785,85.316551,100.176056,110.597542,81.035561,39.614067,16.334728,11.890101,10.965302,11.000841,11.717370,15.279353,10.252078,4.358680,4.119838,3.180169,3.892564,2.215704,0.867770,2.480167,0.922314,0.000000,0.000000,1.194215,1.151240,0.000000,0.000000 -601923.755000,4612505.550000,5908,4405,106.292580,183.271103,178.750443,167.783478,149.494217,138.651260,137.849609,134.692581,133.502502,136.485962,136.849609,149.204987,167.651245,184.370270,196.485977,209.576889,209.213242,194.593414,170.684326,149.229782,139.072754,134.659515,130.890930,100.981842,84.775230,98.196716,110.758698,80.089279,40.023159,17.163652,11.899192,12.742990,8.408280,10.857869,11.325635,5.565298,0.851242,0.089257,0.064463,0.062811,0.000000,0.000000,0.085124,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.755000,4612505.550000,5933,4405,112.569435,187.817352,179.668594,166.379349,149.536362,137.040512,137.726471,134.718201,134.123154,136.503326,136.313248,148.635544,166.974380,183.172729,196.726456,208.660339,208.891739,195.280167,169.933060,148.751236,138.412415,134.536377,129.718201,100.428932,84.098358,96.610756,108.742981,77.701668,38.726471,14.788447,11.792581,10.585139,8.175222,10.253735,8.522327,4.128932,0.385125,0.271075,0.150414,0.004132,0.000000,0.000000,0.000000,0.176860,2.976860,1.618182,0.000000,0.000000,0.000000,0.000000 -601932.755000,4612505.550000,5953,4405,103.730591,175.728119,169.517365,160.922333,149.004974,134.244644,136.240509,133.240509,133.182663,136.290100,134.901672,146.571091,165.868607,183.876877,196.050430,208.405792,209.364471,194.058685,169.909927,148.579346,137.852081,135.339676,130.554565,99.893402,83.668610,96.116539,109.347946,76.810760,37.190929,15.855390,11.868615,11.931420,8.376876,11.063652,8.595881,7.934720,1.814052,2.119009,2.828101,2.404133,2.685951,2.972728,2.008265,1.300001,0.000000,0.000000,2.122314,0.828926,0.000000,0.000000 -601935.955000,4612505.550000,5969,4405,116.522324,185.522324,178.216537,168.233063,151.439682,136.596710,137.728943,134.902496,134.737213,136.282654,135.836380,148.604965,165.828110,184.191742,196.877701,209.357040,208.315720,194.943817,172.067780,149.563644,138.290924,135.489273,130.018204,100.323982,83.828117,97.728943,108.208282,78.274399,39.530598,14.685143,11.819856,10.242990,7.276047,11.051256,9.659518,5.945465,1.201656,0.323968,0.010744,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.355000,4612505.550000,5986,4405,107.831421,184.005814,177.195892,166.352921,148.840515,136.171097,137.741348,134.799194,134.733078,137.038864,135.807465,148.311600,165.931427,182.509949,195.881851,208.385956,207.427277,193.658707,169.981018,148.014069,136.419037,134.576050,130.700012,99.319855,83.278534,97.906631,108.427292,78.766136,37.964481,16.943819,11.881837,11.258691,8.795883,9.579352,11.769437,4.427281,1.315706,0.757027,0.227274,0.209918,0.055372,0.000000,0.000000,0.311571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.155000,4612505.550000,6025,4405,116.104149,171.054565,170.947113,162.128937,147.393402,136.550430,134.732254,131.558685,131.236374,134.657867,134.442993,145.401672,160.054565,176.203323,189.236374,200.963638,202.112396,189.434708,166.757034,145.566956,135.203323,131.352081,127.690926,99.790115,84.897545,97.459526,105.666130,75.814903,35.674397,14.681836,11.608284,5.843812,8.484312,6.128111,8.904973,2.238848,0.265291,0.188431,0.250414,0.235538,0.000000,0.109918,0.000000,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.355000,4612505.550000,6041,4405,121.768608,168.652924,173.115738,162.801682,148.305817,135.826462,134.702499,133.239685,132.157043,135.099182,134.429764,144.892593,160.743835,175.636398,189.247971,201.041351,202.479370,189.892593,166.636398,145.214905,136.099182,131.132248,128.000015,100.752083,85.710762,98.818199,105.413239,80.132248,36.859520,16.200844,11.636384,6.561994,9.319025,7.991751,8.997535,3.194220,0.549589,0.054547,0.112397,0.000000,0.004132,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601955.555000,4612505.550000,6067,4405,104.132240,168.570282,173.537201,160.727295,147.801682,137.066147,135.537201,133.305786,134.033066,136.520676,135.966965,146.322342,160.842987,177.090927,189.537201,200.537201,201.917374,190.206635,166.975220,145.190109,136.719040,132.909103,127.818192,101.173569,85.628113,98.330597,107.380173,79.628113,37.487621,16.135555,11.619854,6.806623,10.309109,8.614062,9.482658,3.425626,0.575209,0.293390,0.309092,0.043802,0.019008,0.159504,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.355000,4612505.550000,6091,4405,120.685966,167.470261,169.999191,162.792587,147.850433,136.073578,133.784302,132.916534,131.156204,134.371078,134.296707,143.701675,159.462006,176.627289,189.478531,200.057037,200.073578,189.362823,166.924820,144.511597,135.065308,131.329758,126.263649,100.445465,84.511581,96.619019,104.652077,76.040504,37.313244,14.083489,11.478532,5.648770,7.486793,7.795881,7.892575,3.005790,0.340498,0.189257,0.171901,0.000000,0.099174,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.355000,4612505.550000,6131,4405,112.909103,167.983475,169.429749,160.074387,145.719009,136.471085,134.561996,132.578522,131.570267,134.818192,135.016541,144.669418,161.214874,176.090912,189.661163,200.578506,201.190079,189.628098,166.438019,145.347107,135.735550,132.165298,128.545471,101.239685,85.537209,98.966957,106.140511,78.570267,37.859524,15.560349,11.685969,7.662821,9.355388,9.342990,8.685139,4.004964,0.951243,0.075208,0.122314,0.000000,0.012397,0.000000,0.027273,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.755000,4612505.550000,6148,4405,96.409943,157.624817,166.401688,158.459534,146.153732,134.996719,133.616547,131.071091,131.004974,133.583496,135.170273,144.071091,160.162018,175.302505,187.467804,198.666122,199.773560,189.732254,164.162018,143.591751,133.814896,131.426468,126.963654,100.186806,84.864494,95.600029,105.401672,77.079361,37.071091,14.975224,11.542168,6.118191,8.130593,6.223982,8.204144,3.195048,0.370250,0.109918,0.197521,0.084298,0.048760,0.239670,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.355000,4612505.550000,6176,4405,98.649612,157.831436,166.847946,160.608292,143.955399,137.707474,134.963669,132.335556,130.426468,133.847946,134.360367,144.872757,160.178543,176.029770,189.252899,197.277695,200.757034,188.566956,166.682678,144.980194,134.195068,130.773590,127.054573,99.046303,84.897552,97.608284,103.310768,76.343834,38.781834,14.350430,11.550433,5.449594,9.633901,7.709108,9.471917,3.138847,0.166116,0.897523,0.266942,0.072728,0.000000,0.238843,0.099174,0.000000,2.506612,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.555000,4612505.550000,6207,4405,100.271912,156.577698,166.420685,159.057037,146.602493,135.668610,133.230591,130.800842,130.478531,132.263641,133.271912,143.106628,159.453735,174.585968,187.205811,198.379364,199.470261,189.139694,165.792587,144.131424,134.933075,130.288437,126.172737,99.635551,83.941330,96.362823,105.263649,76.660339,35.949600,16.140514,11.470267,6.295879,8.121502,8.360345,7.481003,3.442981,0.887606,0.233885,0.178513,0.000000,0.046282,0.000000,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601991.355000,4612505.550000,6246,4405,93.614891,150.077698,166.069443,157.614899,143.391724,133.457855,132.408279,130.540512,128.788437,130.300842,132.408279,143.300812,157.581833,173.466141,185.730591,196.614899,198.325638,188.482666,163.234726,142.557007,131.424805,129.755386,123.581833,97.978523,82.342171,95.904144,103.532242,77.887619,37.218201,14.214068,11.234731,4.888438,8.485967,8.856214,8.452906,4.403315,0.858680,0.338844,0.000000,0.000000,0.011571,0.076860,0.282645,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601999.355000,4612505.550000,6286,4405,96.655388,155.738022,166.952896,158.828934,143.754547,134.547943,132.506622,129.415710,129.655380,130.944641,133.266953,142.647110,158.812408,173.266953,186.473557,196.638855,198.465302,187.176041,162.647110,142.985962,133.795868,129.242157,123.663643,98.390923,81.787621,95.052078,103.738029,75.952904,36.870266,14.753736,11.242167,7.328937,8.409107,8.390097,9.195054,4.173560,0.580994,0.030579,0.180992,0.369422,0.309092,0.000000,0.141322,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602005.755000,4612505.550000,6318,4405,89.225632,157.589279,165.936371,155.258698,141.837219,133.878540,131.415726,128.845474,128.093399,129.886780,131.688446,141.746307,158.853745,173.374405,185.143005,196.440521,196.143005,184.258698,161.762833,142.399200,132.200836,127.200844,122.300003,96.895050,80.275215,94.845467,103.399178,75.531410,35.357868,14.935554,11.118201,6.558689,6.815717,7.802493,5.633069,2.882650,0.589259,0.013224,0.000000,0.395042,0.000000,0.000000,0.095041,0.307438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.955000,4612505.550000,6354,4405,94.109932,154.233917,167.349625,157.671936,143.928131,135.366135,132.862000,130.027283,129.481827,131.440506,133.242157,141.556244,158.746323,173.895081,186.481857,195.886810,198.705002,186.333099,163.275238,141.862015,132.870270,129.671921,123.754562,96.952904,82.184311,95.977699,103.696709,77.225632,36.680180,15.638034,11.250433,6.005796,7.878528,6.462823,7.757038,2.923972,0.691738,0.216530,0.168596,0.142976,0.187604,0.000000,0.297521,0.406612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.155000,4612505.550000,6390,4405,89.566963,156.162827,163.576050,155.625626,140.981003,131.443817,129.204147,128.193405,128.176865,129.490921,130.557037,142.433060,158.110764,172.424820,184.937210,195.672745,197.127289,185.209930,162.937210,140.466125,132.532242,127.829765,123.490921,96.697533,81.209938,96.862823,105.342163,75.895889,37.366962,15.557042,11.226465,5.338027,8.002495,9.043818,8.807452,4.068603,0.761985,0.385125,0.307439,0.027273,0.133058,0.183472,0.694216,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.755000,4612505.550000,6438,4405,96.532249,150.507462,167.441345,155.400024,142.548782,133.705811,130.771927,128.292587,127.796722,129.317368,131.333908,140.821503,156.821503,174.292587,184.218201,195.763657,196.846298,183.738861,161.920685,141.573578,131.267792,127.614906,120.763664,95.391754,79.821510,94.581841,102.466133,75.251259,34.920681,14.262828,10.978532,7.443815,9.233073,7.352080,7.107451,3.047113,0.310745,0.415704,0.115703,0.066116,0.000000,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.955000,4612505.550000,6464,4405,89.404976,152.115723,165.429764,153.859528,142.239685,133.099182,129.884308,127.958694,126.892578,127.578529,129.214890,139.925629,155.900848,172.677704,183.330597,195.537201,195.809937,184.462830,161.611588,140.008286,130.049606,126.677696,121.545471,94.000015,78.966957,93.603325,104.363655,76.752083,37.347126,14.412413,11.049605,7.635550,9.088444,8.873569,7.565301,4.483478,1.241325,0.518184,0.294215,0.125620,0.024794,0.000827,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.755000,4612505.550000,6483,4405,96.143829,155.019852,170.259521,159.366959,145.846298,135.970261,133.780182,130.193405,130.937210,131.507462,131.788452,143.085968,158.920685,174.540512,186.490921,197.003326,197.110764,185.738861,162.598373,142.838043,132.209930,128.441345,124.945473,95.705803,81.152092,95.019852,105.234734,78.466141,39.548779,15.162827,11.358696,7.580179,9.148776,9.803320,10.593404,4.445461,0.572730,0.133887,0.395869,0.543802,0.000000,0.319009,0.620662,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.155000,4612505.550000,6515,4405,97.558693,155.996719,168.715729,157.046310,143.401688,133.062820,130.682663,128.583481,126.839684,127.558693,129.715714,139.723999,156.600037,171.897552,184.079361,195.575241,195.112427,184.004990,161.211594,140.418213,131.310760,127.426460,122.600014,93.608276,79.112404,93.393402,103.476044,74.517357,36.161999,13.838033,11.145473,7.649600,8.764478,8.241336,7.714063,4.670257,0.338019,0.113225,0.182645,0.151240,0.013223,0.223968,0.289257,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.355000,4612505.550000,6541,4405,105.805801,164.921509,168.384308,158.533081,145.508286,135.987625,131.326462,130.367783,129.938034,130.293411,131.004150,142.723160,158.904968,174.433899,185.871918,197.243820,197.690094,185.219025,163.599182,141.921509,133.185974,129.590927,124.681831,97.516548,81.210762,97.549606,107.012413,76.293404,37.847126,16.459522,11.334729,8.456212,10.725637,9.021502,10.667782,3.329759,1.242979,0.650415,0.280992,0.006612,0.093389,0.243802,0.285951,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,2.880166 -602055.155000,4612505.550000,6565,4405,102.881836,155.914902,168.361176,158.080185,143.906631,134.154556,132.303329,129.369446,128.278534,129.493408,129.774399,141.658707,157.906631,173.402512,184.823990,196.443832,196.369446,183.526474,160.964493,140.923172,130.782669,127.121506,123.427292,95.881836,79.427292,93.551254,104.741341,76.559525,36.162827,14.182663,11.220681,6.657036,9.123156,8.925634,8.359518,4.486784,0.338844,0.314877,0.120661,0.178513,0.027273,0.000000,0.070248,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602062.355000,4612505.550000,6601,4405,98.047119,161.989288,167.501678,159.228958,146.138046,134.005798,131.733063,129.228943,128.609100,130.865295,131.840515,144.385971,159.600845,175.939697,187.369446,198.576065,196.700027,186.129776,163.295074,142.295074,132.104965,128.385956,121.609100,94.766129,78.881828,93.972740,101.997528,74.683479,33.336380,13.204149,11.055391,5.784308,7.352081,9.160345,8.454557,4.738023,1.601654,0.931407,1.366943,0.713224,1.139670,0.986777,1.891736,1.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.355000,4612505.550000,6636,4405,91.633911,166.154572,168.435547,158.683487,144.162842,133.931427,132.452087,130.344650,127.939697,130.022339,131.344650,140.823990,159.146286,173.890091,185.295074,196.807465,197.997543,185.146286,162.476868,140.914902,131.419037,129.600845,122.609116,96.815727,81.394241,92.675232,104.113251,76.807465,37.204155,15.438861,11.146299,6.985963,9.452909,7.114888,9.763651,3.726453,0.553721,0.500001,0.000000,0.149587,0.023967,0.150414,0.527273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.755000,4612505.550000,6668,4405,97.207458,160.984314,168.951248,160.620667,144.240509,133.025635,131.959518,130.091751,129.000854,130.381012,131.298370,141.364471,158.248779,173.397537,186.042160,197.273560,197.100006,184.331421,162.025635,142.298355,132.133072,128.290100,124.100021,96.595886,80.091759,94.876877,105.347954,77.703323,37.785973,15.871919,11.281837,7.348772,9.628942,10.024809,10.678527,2.990087,0.995044,0.022315,0.264463,0.071901,0.020661,0.000000,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.955000,4612505.550000,6694,4405,112.909935,167.785965,171.769440,160.562820,146.504974,136.133072,132.686783,130.810745,129.959503,129.529755,131.653717,142.381012,158.306625,173.133072,186.587616,196.521500,197.571091,184.695053,161.645462,141.290100,132.058685,129.248764,122.736366,94.984322,80.810760,94.290092,103.752914,75.843826,35.480186,15.194232,11.157870,9.340509,9.347949,8.955385,9.875222,3.189262,0.428101,0.542977,0.382645,0.266943,0.688430,0.000000,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602086.155000,4612505.550000,6720,4405,113.803322,169.638046,169.943832,159.505814,144.728958,134.026459,132.464478,129.489273,128.472748,129.621506,130.150436,141.522339,157.191757,173.423172,185.481018,197.357056,197.109116,184.175232,161.464493,141.315735,131.290924,127.571922,123.018196,95.423157,79.737206,92.266136,103.423157,76.018196,36.018200,14.985967,11.183490,8.185136,8.211585,8.907453,6.655385,3.931411,1.032234,0.196696,0.214050,0.146282,0.000000,0.000000,0.504133,0.000000,0.000000,0.000000,0.000000,1.692562,0.000000,0.000000 -602089.955000,4612505.550000,6739,4405,97.795891,169.985977,172.035553,160.655396,145.820679,135.192581,133.068619,130.019028,129.052094,130.680191,130.283493,142.308289,158.804153,174.027298,186.647125,198.605804,198.928116,185.052094,161.754562,142.019028,131.647125,129.547958,123.118202,96.300026,80.192581,94.076881,104.233910,76.176056,36.233902,14.102497,11.192581,6.108275,9.532247,9.361998,9.074395,3.659511,0.704961,0.304133,0.035537,0.035537,0.000000,0.297521,0.164463,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.955000,4612505.550000,6764,4405,88.359528,174.342987,169.698380,163.599213,146.640533,134.929779,134.855392,131.194244,131.028946,131.863663,132.938034,143.756226,158.425659,175.524811,186.838852,198.268616,198.938034,185.491745,162.971100,142.880203,132.425644,128.863663,123.500023,97.136391,81.318207,94.533081,103.276886,76.747955,37.095062,15.348778,11.227292,7.886788,8.385139,8.119848,7.052080,3.125625,0.285953,0.240497,0.434712,0.084298,0.009918,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.155000,4612505.550000,6785,4405,106.817375,167.073578,170.445480,161.015717,147.156235,135.552917,135.511597,132.990936,130.908295,133.660355,132.957886,143.453751,160.197540,176.858704,188.825638,201.395889,200.776047,187.866959,165.172745,143.726471,134.338043,130.842178,125.263664,98.304977,81.619019,95.660347,104.453743,75.875221,37.602497,15.021505,11.387623,9.269434,9.872744,9.192576,7.714888,3.575212,0.826449,0.534712,0.258678,0.135537,0.012397,0.072727,0.000000,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.355000,4612505.550000,6806,4405,101.794228,177.462814,174.305786,164.719009,147.380188,133.609924,133.535553,131.378525,131.338852,134.735550,133.537201,145.396698,162.305786,179.082642,191.892563,204.347107,203.404953,190.165283,168.214874,148.603317,136.760330,134.223160,127.363655,99.122330,84.717369,98.081009,107.808281,78.362000,38.403328,16.596712,11.578530,10.236379,9.158693,11.413239,12.827288,7.318191,2.900830,3.162813,2.724794,2.699174,2.990910,2.903306,2.398347,1.257851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.555000,4612505.550000,6822,4405,109.879364,178.408279,174.887619,165.796707,147.895889,135.722351,135.234741,133.325653,133.135559,136.276062,133.970276,147.119034,162.788452,180.309113,193.714066,208.375229,205.796707,192.970261,169.714066,148.813248,139.639694,136.937210,132.127304,103.647964,87.085968,100.871101,109.879364,80.119026,38.193409,15.571093,12.011590,9.667781,10.049603,9.561171,8.213236,3.728106,0.943805,0.019836,0.060331,0.226447,0.000000,0.080992,0.000000,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.755000,4612505.550000,6838,4405,114.372749,175.405792,169.959518,163.612411,147.670258,135.133087,134.670273,131.529770,131.819031,136.215729,133.381027,145.711578,161.703323,178.513229,192.124802,205.819016,204.331421,191.273560,169.174393,149.422333,138.364471,134.909943,129.009109,101.009109,85.372749,99.885139,108.835556,80.066956,38.298367,14.326465,11.728118,9.081832,9.338857,11.721504,9.223980,4.696702,1.158681,0.123968,0.127273,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,1.998347,0.000000,0.000000,0.000000 -602113.555000,4612505.550000,6857,4405,102.444656,178.758698,171.130600,165.287628,145.923996,135.155396,133.461182,131.254578,131.328964,134.684326,132.824829,143.808289,161.915726,179.105804,191.461182,203.262833,203.923996,190.576889,168.932251,148.039688,138.246307,135.733902,128.618225,99.882675,84.841354,98.841354,109.849617,78.452927,37.824814,14.396711,11.692581,10.471914,8.630593,9.614890,10.012411,4.171083,0.788433,0.252068,0.223141,0.044628,0.009918,0.000000,0.838844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602118.955000,4612505.550000,6884,4405,112.932243,176.907440,171.932236,165.213226,148.262833,136.990112,136.345474,133.138855,133.279358,138.601654,134.204971,147.403336,162.180176,181.692566,193.246292,206.395050,207.130585,190.568604,170.419846,150.287613,139.419876,135.808289,130.254562,99.857864,84.882660,100.981834,109.775223,80.246292,37.535557,13.911587,11.841341,12.070263,9.058693,9.965303,9.624806,6.177694,0.855374,0.557027,0.218183,0.344629,0.000000,0.027273,0.344628,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.355000,4612505.550000,6901,4405,128.281845,179.827301,172.232254,168.133087,149.571106,138.190933,135.414078,133.397552,133.860367,138.695068,132.984329,146.133087,161.116562,178.852097,192.926468,206.033890,203.893402,188.943008,168.455399,148.810776,137.595901,134.356232,128.463669,99.595894,83.976059,100.463669,110.653748,80.058701,38.860352,16.369438,11.678531,12.569436,9.989273,10.704148,11.841336,4.974389,0.784300,0.238018,0.000000,0.000000,0.000000,0.071901,0.000000,0.223141,0.000000,0.000000,4.090909,0.000000,0.000000,0.000000 -602125.555000,4612505.550000,6917,4405,119.225632,180.060333,176.622314,167.779343,148.605789,135.035538,135.176041,132.002487,131.564468,136.688446,132.225632,143.688431,159.324799,177.498352,190.035538,201.440506,202.407440,187.060333,166.498352,147.382645,137.159531,132.233887,127.299995,99.060333,82.853737,100.523148,112.002480,80.746292,39.118202,16.784315,11.572746,12.005799,11.083487,10.265305,10.357865,4.363645,0.269424,0.476862,0.097521,0.124794,0.013223,0.006612,0.165289,0.063637,0.000000,2.395041,0.000000,0.000000,0.000000,0.000000 -602130.555000,4612505.550000,6942,4405,125.804138,179.035538,173.448761,166.795868,145.721497,134.680176,132.316544,129.300018,128.795883,135.076874,130.382660,141.523148,157.870255,175.572739,188.250427,201.407440,201.333069,184.919846,165.341324,145.556198,134.977707,130.828934,126.481834,96.655388,82.266960,98.225632,108.845467,76.969437,36.597538,14.430595,11.498365,9.833072,7.722328,9.771915,9.122327,3.147116,0.395043,0.296695,0.117356,0.164463,0.000000,0.187604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602137.355000,4612505.550000,6976,4405,97.532249,150.664490,161.681015,151.681015,139.771927,129.590103,125.267792,122.672745,122.474396,123.928947,125.804977,135.796707,153.722336,168.862823,181.664490,193.970261,193.565308,182.978531,161.482666,140.656219,130.532257,126.028122,120.581841,92.895889,75.871094,92.292580,107.573570,81.102501,38.284317,14.361176,10.962003,6.259514,9.514066,7.026459,8.974395,2.821495,0.784300,0.880994,0.097521,0.000000,0.000000,0.000000,0.109091,0.000000,9.375208,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.355000,4612505.550000,7011,4405,83.040512,148.743011,159.866974,151.503342,135.792587,127.924812,123.718201,121.230598,120.453735,122.652084,124.371094,135.610764,151.916565,167.833923,180.247131,191.809113,192.478531,181.404144,160.462021,140.916565,128.709930,125.023987,118.627289,92.090103,76.057045,92.709938,107.156219,80.643822,37.759518,14.026464,10.784316,6.503318,8.052081,8.214064,6.604970,4.115712,0.676861,0.210745,0.068595,0.155372,0.114876,0.090083,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602149.355000,4612505.550000,7036,4405,87.235565,142.541336,156.351257,148.599182,134.739700,126.070274,122.756218,120.690109,119.409119,120.714897,122.351257,133.673569,150.400848,166.243820,179.896713,191.012405,191.185974,181.210754,158.756210,139.268616,127.781013,123.285149,117.500023,91.714897,74.293411,92.045479,106.971100,79.830605,36.409111,13.501671,10.681836,4.657035,8.596707,6.938857,8.352905,3.929760,0.569423,0.187604,0.066116,0.064463,0.047934,0.000000,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602154.155000,4612505.550000,7060,4405,93.944649,145.622314,157.291748,150.985962,136.663635,128.176056,123.944649,121.795891,121.283493,122.341347,123.176056,134.680191,151.795868,166.035538,180.589264,191.159515,191.804138,181.448761,159.258682,139.333069,129.680191,124.969444,118.845474,91.399193,75.308289,91.531425,106.961182,79.242165,39.027290,14.664481,10.804151,6.595880,8.428939,8.710758,8.677699,4.328109,0.329753,0.462811,0.000000,0.152066,0.000000,0.000000,0.423141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602159.955000,4612505.550000,7089,4405,90.189278,149.387619,155.916550,149.048782,134.354553,123.900009,120.949600,117.866951,117.354553,117.825630,119.734718,130.809097,149.619034,163.999191,177.453735,187.718201,188.800842,178.652084,156.197540,136.214066,126.453728,120.916542,115.081833,88.726456,71.949600,91.676872,107.288445,78.139679,36.230598,13.568613,10.462003,5.453731,7.009932,6.966129,7.136375,3.533893,0.061157,0.123141,0.000000,0.000000,0.000000,0.056199,0.288430,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.355000,4612505.550000,7131,4405,104.413239,146.165283,155.281006,147.198349,132.000015,122.487617,119.504150,116.380180,114.223160,115.099190,116.578529,128.049606,145.801666,161.380188,174.867767,185.619827,185.876053,175.909088,154.388443,134.074402,123.338860,119.041336,113.727287,85.074394,69.983490,89.892578,105.305801,77.520676,36.388451,13.994233,10.338861,6.846294,7.340509,6.701666,7.691748,2.643808,0.651241,0.511571,0.000000,0.071901,0.000000,0.000000,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602179.755000,4612505.550000,7188,4405,103.310768,151.360336,153.872742,144.757034,129.029770,120.914062,116.814888,113.938858,112.500839,112.773567,113.294228,124.484314,142.690918,158.343811,170.971909,182.707458,182.533890,171.641342,151.145462,132.079346,120.633072,117.038033,110.236374,84.269440,67.938866,87.137199,106.087616,80.699188,38.112419,14.356215,10.021506,5.288441,8.631420,7.283485,8.782657,3.774389,0.872731,0.084299,0.043802,0.054546,0.000000,0.000000,0.209091,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602191.755000,4612505.550000,7248,4405,135.240494,161.157883,157.653748,144.612396,131.240494,120.852074,115.455376,111.893394,110.248764,111.306618,112.290085,122.471916,140.347931,156.306625,168.744659,179.984314,179.835556,169.852081,150.455368,131.414047,120.984314,117.868599,110.918190,84.976044,68.777710,86.976044,108.042152,79.331421,37.934731,13.747950,10.083489,8.351254,9.342164,10.565304,8.168609,3.853728,0.538846,0.505787,0.000000,0.142149,0.080166,0.000000,0.194215,1.001654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602219.155000,4612505.550000,7385,4405,122.466957,159.388443,159.760345,143.000015,127.462830,117.462830,114.256218,110.281006,109.884315,110.462830,111.396713,123.074394,143.454559,160.619858,174.975220,187.727295,189.884308,178.768616,157.942169,136.966965,124.710762,120.446297,114.181831,84.371918,65.818199,86.297539,107.768608,81.396713,37.429771,14.112414,10.380184,9.866130,8.922328,9.604974,11.350429,5.261992,1.023969,0.642150,0.159504,0.018182,0.092562,0.000000,0.000000,0.000000,0.000000,1.339670,1.209917,0.995041,0.000000,0.000000 -602225.555000,4612505.550000,7417,4405,128.444641,160.716522,160.336365,145.121475,130.741333,119.609100,117.253731,113.873573,112.914894,113.782661,114.733070,125.766129,147.328094,163.212387,177.923141,191.402466,192.782639,181.683472,159.443802,137.931396,125.840508,121.782654,115.609100,85.865311,67.014069,85.741341,106.195885,79.088448,36.666962,15.273571,10.509936,9.036377,9.423983,9.812411,9.837205,5.596703,0.591737,0.066942,0.100827,0.132232,0.342976,0.085124,0.000000,0.004959,1.356199,1.347108,0.000000,1.061157,0.000000,0.000000 -602235.555000,4612505.550000,7467,4405,92.729767,147.065308,156.495056,143.536377,129.338028,118.817368,116.842163,113.304970,113.296707,114.106621,114.271912,126.255386,147.164490,163.462006,177.346298,189.205811,190.685150,180.544647,158.528122,136.552917,125.172737,120.817368,114.263649,84.767776,66.288452,84.800835,104.577698,79.288445,37.114895,14.387622,10.387623,7.198359,9.566958,8.769437,10.366130,5.304966,0.533886,0.189257,0.072728,0.240497,0.199174,0.106612,0.000000,0.006612,1.156198,0.000000,1.090909,0.000000,1.290909,0.000000 -602251.155000,4612505.550000,7545,4405,111.976051,158.686783,161.521500,146.257034,132.223984,120.240509,118.918198,116.066956,115.802490,115.331421,117.414062,129.182663,147.248779,164.587616,178.339676,190.257034,191.422333,179.901672,156.670258,135.876877,124.108276,121.000839,114.463646,86.141342,67.827293,83.827293,101.025642,72.901672,34.116550,12.783488,10.405805,7.498361,7.519850,8.580180,8.528114,4.395875,0.799176,0.381819,0.115703,0.123967,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.233884,0.000000 -602275.355000,4612505.550000,7666,4405,113.938858,157.515717,157.276047,142.333893,127.590096,116.606621,115.457863,112.036377,112.598358,113.317368,115.011581,126.234718,145.333893,162.408279,176.383484,189.185150,191.557037,180.127289,156.573578,136.135559,123.928940,119.209930,114.036377,83.590103,66.532249,83.978531,100.069443,72.218201,32.383492,12.243817,10.366961,6.997533,8.873569,9.818196,8.738031,4.999182,0.847936,0.663638,0.194215,0.004959,0.000000,0.041322,0.000000,0.004132,0.000000,2.846281,0.000000,3.124794,0.000000,0.000000 -602289.955000,4612505.550000,7739,4405,134.047943,158.609940,150.940521,138.105804,123.345459,111.097527,109.014885,106.444633,106.262817,108.304138,107.965294,120.163643,139.023163,157.171921,170.758698,182.386795,184.056198,173.849609,149.973572,127.957031,117.163643,112.386780,106.800003,79.882652,60.072746,78.940506,93.725624,69.411583,32.560352,12.327291,9.709109,7.986790,8.785137,9.195882,9.993402,7.465300,2.483475,0.366943,0.885127,0.507439,0.413224,0.098347,0.000000,0.000000,1.350413,4.009091,1.859504,0.910744,0.000000,0.000000 -602299.355000,4612505.550000,7786,4405,127.729759,150.884293,136.107437,122.404968,106.016548,94.247948,89.909103,88.669441,88.553734,90.041336,91.090927,102.586792,121.462814,139.884293,153.867767,164.578506,165.214874,156.214890,136.115707,115.479355,104.066132,100.752083,98.818199,68.859520,49.578533,69.760345,93.363655,72.661171,35.074402,12.192578,8.983490,10.977702,9.934726,15.238033,15.030595,13.798362,4.580173,1.389259,1.462814,1.104961,0.632233,1.980167,1.242978,2.385952,22.766943,11.823969,8.050414,4.504133,9.961985,3.846281 -601265.955000,4612495.550000,2619,4455,158.251266,161.887619,140.143814,126.135551,108.325630,96.664474,94.309105,92.433067,92.970261,94.788445,94.325630,106.143814,124.408279,142.623154,154.937210,167.069443,167.937210,156.474396,136.457870,116.647942,105.127281,103.978523,98.127281,69.598358,49.780182,67.838036,86.457863,63.614891,26.871920,9.790925,8.920681,17.525637,9.550430,11.014892,12.944645,10.759520,1.783477,1.267771,0.924797,0.938844,0.032232,0.494215,0.778514,1.809920,17.388432,10.161160,12.551241,14.199177,10.310745,13.938017 -601269.955000,4612495.550000,2639,4455,160.775208,160.012405,141.400848,126.590927,111.028938,100.913239,99.632248,96.590927,97.500015,100.086792,98.285141,111.342995,129.830597,147.309937,161.020676,172.830597,173.466965,161.202499,139.417374,119.822327,109.119850,106.987617,101.045471,71.285141,52.764484,68.161179,84.268608,61.574402,26.904976,10.987619,9.185969,15.521504,9.870262,10.583486,12.351254,9.195881,1.783477,0.966945,0.803308,0.193390,0.114876,1.147108,1.015704,0.761158,8.542976,3.682645,4.901654,2.833885,4.564463,10.800001 -601275.955000,4612495.550000,2669,4455,153.562836,166.454559,146.214890,135.619858,118.181831,104.760345,105.867783,103.561996,103.760345,106.041336,104.975220,118.338860,135.446304,153.677704,167.404968,178.925629,180.132248,166.413239,144.355392,123.719025,113.338860,111.190102,106.000015,76.396713,57.371922,72.603325,87.876053,63.297535,28.512417,11.670266,9.636383,16.441339,9.927287,11.870266,13.212412,6.959516,1.160333,0.378514,0.641323,0.297522,0.000000,0.000000,0.928927,0.599174,5.172728,1.005785,3.951240,2.272728,3.733885,1.961984 -601285.155000,4612495.550000,2715,4455,141.549606,176.332245,149.249603,141.629761,124.092575,110.580177,110.852905,107.819847,109.274391,113.439682,110.456207,122.547119,140.216537,159.208267,172.439682,183.927277,184.489273,170.464478,149.390091,129.018188,118.902489,116.447945,109.200012,80.076042,61.158699,75.464470,90.100838,63.745476,29.252087,12.525638,9.927292,16.199192,9.073566,12.638860,9.587618,6.081002,1.257029,0.524795,0.294216,0.140496,0.000000,0.000000,0.443802,0.000000,1.063636,5.079340,4.411571,0.819008,0.000000,1.885124 -601299.355000,4612495.550000,2786,4455,148.175217,186.034714,158.894226,149.976868,130.166962,119.109108,117.051254,115.795059,117.018196,123.604973,118.687622,130.249603,146.753723,164.580170,179.819839,192.299179,191.919022,176.687607,155.662827,135.472748,124.348785,121.910759,116.472748,84.844643,67.555389,84.514069,94.042992,63.985138,30.042994,13.477703,10.588449,15.558695,9.302493,11.432246,11.792576,4.488437,1.577691,0.376034,0.195042,0.001653,0.211571,0.037190,0.136364,0.000000,2.295041,1.188430,0.944628,0.000000,1.186777,0.000000 -601316.355000,4612495.550000,2871,4455,107.275230,148.756210,154.731415,142.599182,129.450424,120.607452,119.028938,117.086792,117.285141,118.367783,120.128113,131.640518,149.541336,165.301666,178.095062,190.037201,191.194229,181.301666,157.409103,137.293411,126.863655,122.219025,116.681831,89.161171,70.466965,85.053734,94.657043,68.929771,30.946301,12.734728,10.607457,7.298360,7.491749,9.313236,8.559518,5.618190,0.836366,0.300001,0.169422,0.200000,0.130579,0.144629,0.000000,0.000000,2.232232,0.000000,0.000000,0.000000,0.000000,0.000000 -601329.355000,4612495.550000,2936,4455,101.695053,151.484314,152.616547,143.327286,130.137207,121.484314,118.360344,117.641335,117.376869,118.707451,120.451256,131.947113,148.484314,164.476044,177.781830,189.616547,190.294235,181.327286,157.525635,136.616547,126.319023,122.087616,117.236374,89.442986,69.195061,84.368607,93.029762,69.715721,29.447126,12.432248,10.657870,6.719020,8.834726,9.286790,9.396708,4.431412,0.956201,0.344629,0.191736,0.047108,0.314877,0.026446,0.244628,0.000000,1.175207,0.000000,0.979339,0.000000,0.000000,0.000000 -601338.155000,4612495.550000,2980,4455,114.984314,149.493408,151.700027,141.237213,130.468597,121.253731,118.336372,116.947945,117.245461,119.931412,120.774391,130.997528,147.923172,164.030609,177.228958,188.220688,190.270279,179.716553,156.947952,135.840500,124.914886,122.485130,116.881828,87.708282,70.377701,83.790924,94.675217,68.071922,29.377707,11.366134,10.625640,6.221498,7.344641,6.700012,7.644641,3.222321,0.590084,0.209918,0.221489,0.054546,0.037190,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601342.555000,4612495.550000,3002,4455,104.495880,149.920670,155.102478,145.292572,130.978531,123.011581,119.697533,118.309105,117.904144,119.995056,122.160339,132.474396,149.838013,165.127274,178.747116,190.193390,190.689255,181.069427,157.928925,136.986786,125.796707,122.904144,117.581833,89.193405,70.011589,84.276047,94.664482,68.904152,31.292582,12.257869,10.689275,6.779349,7.027286,6.890922,9.114889,3.353725,0.671077,0.151240,0.065290,0.012397,0.031405,0.037190,0.000000,0.000000,0.000000,1.131405,0.000000,0.000000,2.048760,0.000000 -601345.355000,4612495.550000,3016,4455,106.767769,151.873550,152.419022,146.666946,131.700012,121.005798,119.873566,117.997528,118.014061,119.881828,121.576042,132.501663,149.402466,165.171082,178.617355,189.493393,190.600830,181.534698,157.600830,135.220673,126.419022,122.691742,115.790916,88.063644,69.154564,85.179359,94.493401,69.675224,31.666960,12.433075,10.526466,7.721499,9.211584,8.109103,8.477698,2.640501,1.265293,0.262811,0.642977,0.021488,0.068595,0.026446,0.000000,0.000000,0.000000,0.000000,0.904959,0.000000,0.000000,0.000000 -601348.555000,4612495.550000,3032,4455,92.114067,153.262833,156.006638,145.667786,132.287628,122.857864,120.957039,119.312408,118.411583,121.031418,122.535553,133.502487,150.601669,167.246292,179.585144,190.998352,191.766953,182.320679,158.957031,136.957047,127.626457,122.271088,117.709106,88.717369,71.014900,84.667793,93.899185,70.469444,30.642996,14.095059,10.700845,5.672737,9.129766,8.747120,8.150425,3.569427,1.247937,0.019009,0.413224,0.201653,0.000000,0.130579,0.000000,0.000000,0.000000,2.254546,0.980992,0.000000,0.952066,0.000000 -601353.955000,4612495.550000,3059,4455,100.914062,155.354553,154.362808,144.701660,132.238846,123.280167,121.503311,119.321487,118.850418,120.304962,122.627274,132.627274,149.693390,165.495041,179.106613,190.461990,191.214050,182.280167,158.594223,136.478516,126.106613,123.313225,116.809097,89.255386,70.569443,85.032242,95.933060,69.280182,31.263657,12.671092,10.619026,6.545466,8.112411,8.260344,7.944641,2.868600,0.500001,0.000000,0.041322,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.901653,0.000000,1.838843 -601362.955000,4612495.550000,3104,4455,99.450432,151.674393,151.930573,145.335556,132.591751,122.434723,119.947121,119.219849,120.178528,121.418198,122.062820,132.591751,149.219833,165.128922,178.566940,191.228088,192.401657,182.038010,158.277679,136.476044,126.046295,122.459518,116.327286,89.343811,70.120674,84.451256,94.153732,69.649597,30.128946,12.310760,10.575225,5.112406,6.871914,6.652904,7.369434,2.783476,0.366943,0.190083,0.135538,0.000000,0.140496,0.000000,0.088430,0.481818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.355000,4612495.550000,3156,4455,128.406631,155.409088,157.020660,148.681824,135.971085,123.921494,122.433899,120.657043,120.351257,122.409103,124.119850,134.665298,150.615707,167.409088,180.913223,190.599167,193.780991,182.896698,159.830582,137.557861,127.119850,122.318199,118.227287,89.938034,71.152908,86.103325,95.425636,71.111588,30.268616,12.559522,10.747952,7.239680,7.959518,7.495880,7.720673,3.016535,0.442151,0.252893,0.190083,0.022314,0.101653,0.133885,0.000000,0.344628,0.000000,1.125620,0.000000,0.000000,0.000000,0.000000 -601381.555000,4612495.550000,3197,4455,122.256218,177.248779,164.860336,156.984314,140.083481,128.504959,126.620667,126.091743,125.612404,130.389267,128.331406,138.281830,155.471909,171.612411,185.290085,198.017349,198.571075,185.901657,163.174393,141.736374,131.661987,127.819016,122.645462,94.397537,75.992584,90.926460,100.223969,72.637215,34.546303,14.605803,11.149607,9.440510,7.961171,9.880178,9.443816,3.917363,1.088433,0.205786,0.047108,0.000000,0.132232,0.094215,0.000000,0.420662,1.083471,0.000000,0.000000,0.000000,1.096694,0.000000 -601385.955000,4612495.550000,3219,4455,142.925629,191.107422,171.884277,163.289261,144.570267,132.148773,131.586792,130.305786,130.801666,136.900848,131.785126,143.454559,158.876038,177.082642,191.181808,203.892548,202.661148,188.297501,167.099167,146.429764,135.438034,133.520676,128.818192,97.239685,81.322327,96.826462,103.611588,72.338860,36.206631,16.575224,11.710763,12.758694,7.192576,9.875223,8.599189,4.576868,0.986779,0.102480,0.247934,0.000000,0.064463,0.000000,0.000000,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.755000,4612495.550000,3248,4455,134.552078,187.271103,168.262833,162.990112,143.411591,132.238037,130.915710,129.535553,129.502487,135.667786,132.395050,143.552094,160.304153,176.436386,190.634735,204.114075,202.857880,189.833084,166.386795,147.023163,135.171921,133.238037,128.345474,96.667778,80.923981,94.882652,103.783478,72.783485,35.081009,14.484316,11.667789,12.208281,8.123982,8.996709,9.688444,4.600010,0.506613,0.137191,0.169422,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,1.357851,0.000000,0.000000,0.000000,0.000000 -601395.155000,4612495.550000,3265,4455,138.242172,181.423996,167.738037,160.647125,143.308289,132.233902,131.357880,130.101669,129.109940,134.564484,131.564484,142.969437,159.143005,176.895065,190.614075,204.118210,202.936386,189.795883,166.961182,146.390930,134.019028,132.671921,127.027298,96.233902,80.531425,94.886795,102.407463,74.192581,34.275227,16.023159,11.547954,10.712410,9.207451,8.337205,8.696708,5.609926,0.809093,0.195042,0.168596,0.000000,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,1.284298,0.000000 -601398.155000,4612495.550000,3280,4455,129.447952,185.852905,168.976868,160.191727,145.059509,131.323975,131.803314,129.993393,129.299179,134.200012,131.109100,143.117371,160.067780,177.604965,190.059509,203.861160,202.919022,189.365295,166.092560,146.109100,135.456207,132.613235,127.836372,97.662819,80.290932,94.836372,103.100838,73.679367,34.472748,14.899191,11.621508,11.766130,7.999188,11.720676,9.934723,3.142157,1.113226,0.135538,0.189257,0.039670,0.079339,0.000000,0.066116,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.355000,4612495.550000,3296,4455,131.511581,180.610748,169.139679,160.346283,144.941345,130.271927,131.999191,128.462006,129.321503,134.635559,131.941345,143.602493,159.916534,177.726456,191.875214,202.643799,204.189255,190.338013,167.643799,146.181015,135.131424,132.916550,127.263657,97.023987,81.280182,93.916550,103.214066,73.767792,35.800846,15.509109,11.569440,11.684313,9.513239,10.967785,10.429768,4.053728,0.726448,0.571075,0.000000,0.007438,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601406.555000,4612495.550000,3322,4455,113.458694,176.632248,165.731415,157.095062,141.995880,128.962830,129.516541,128.326462,127.690102,131.533081,128.987625,141.367783,157.995880,175.508286,188.938034,201.557861,202.028946,189.268616,164.904968,144.128113,132.855392,131.177704,126.045471,95.582664,78.037209,93.119850,100.268608,73.169441,33.483490,14.230597,11.458697,8.338031,7.873569,7.356212,8.438856,3.728935,0.526448,0.257026,0.042149,0.000000,0.072727,0.000000,0.000000,0.000000,2.796695,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.755000,4612495.550000,3338,4455,122.210762,181.938034,167.219025,158.574402,142.227295,129.623978,130.607452,127.929764,127.723152,131.541336,130.367783,142.078522,157.913239,176.574402,189.855392,201.723160,202.004150,189.607452,165.466965,144.442169,133.557861,130.400833,125.863647,96.904976,78.632256,92.979355,101.781006,73.607460,34.466961,14.659522,11.442168,10.019849,8.427289,10.200842,10.014066,4.313232,0.474381,0.333885,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601412.555000,4612495.550000,3352,4455,126.009926,177.266144,166.067795,156.596725,141.646301,130.183487,129.662827,128.100830,127.514061,130.596710,130.414886,140.943832,159.009949,175.778534,188.993408,201.208298,201.191757,188.927292,164.737213,144.026474,132.580170,130.654556,125.927284,95.786789,79.753738,91.819847,102.200012,72.844643,33.786800,12.727290,11.447953,8.415715,8.239686,9.388447,9.256213,4.142984,1.087606,0.346282,0.214050,0.000000,0.000000,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,1.290083,0.000000 -601415.355000,4612495.550000,3366,4455,123.157867,177.091766,166.959534,156.496704,141.951248,131.356216,131.075226,128.802490,128.885132,131.695053,131.199188,142.678528,159.628937,176.794250,189.521515,202.223999,203.290115,190.480194,166.422348,145.736374,133.637207,132.496704,127.100014,97.281830,80.149605,92.992577,103.207451,75.124817,35.480183,15.614893,11.554564,10.936379,8.960347,10.666132,8.355386,4.206621,0.828101,0.163637,0.079339,0.052066,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,2.702480,0.000000 -601419.355000,4612495.550000,3386,4455,105.507446,174.763657,167.383469,157.218201,143.681015,131.523972,131.730591,129.333893,129.614883,130.664474,130.804977,143.102493,160.094223,176.333908,189.887604,201.829758,203.242981,190.061157,165.333893,144.714066,134.234726,131.358688,126.763649,96.408287,78.904144,91.978531,101.879349,74.251251,34.193413,14.390924,11.523985,9.613236,8.404975,10.181007,9.068610,3.590090,1.095044,0.039670,0.359505,0.000000,0.000000,0.000000,0.000000,0.065289,1.338843,1.323967,0.000000,0.000000,0.000000,0.000000 -601425.555000,4612495.550000,3417,4455,121.666954,174.005798,169.617371,157.576050,144.063644,131.228943,130.551254,128.080170,128.947937,130.633896,131.691742,142.832245,160.361160,176.559509,189.700012,202.823975,204.022324,191.815720,165.658691,145.220673,133.261993,131.534714,126.790916,96.509926,79.650429,92.080177,103.121498,74.113243,35.964485,15.081836,11.526465,8.433070,9.005802,9.962000,10.028114,4.485960,0.898349,0.053719,0.170248,0.130579,0.000000,0.000000,0.012397,0.000000,0.000000,1.181818,0.000000,0.000000,0.000000,0.000000 -601429.355000,4612495.550000,3436,4455,118.328941,168.552094,166.618210,156.386795,140.907440,130.609940,131.204971,127.981834,127.543816,130.585129,130.642990,141.543808,159.411591,174.684326,188.907440,201.089264,201.733887,190.039673,165.593414,143.312408,133.221497,130.056213,125.981834,95.576866,78.213249,91.882660,101.915710,73.833084,34.204979,14.181836,11.452911,10.826461,8.717371,8.743815,8.616544,4.119017,0.730580,0.170248,0.187604,0.199174,0.000000,0.000000,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.155000,4612495.550000,3450,4455,108.975227,167.132233,166.652893,156.148758,140.851242,131.140518,130.289276,127.322342,128.322342,130.644638,130.975220,142.528931,159.330582,176.347107,189.206604,201.115707,202.991730,191.867767,165.719009,144.479340,133.314072,131.024811,125.363663,96.256226,79.140518,92.305809,102.330605,74.413246,34.272751,14.055389,11.396713,9.055387,7.512413,8.049601,9.729768,3.999182,0.658679,0.114876,0.137191,0.000000,0.000000,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.955000,4612495.550000,3479,4455,109.488441,168.248764,167.628922,159.976028,143.843796,131.661987,132.199188,129.091736,129.298355,131.141342,132.827286,143.901657,161.488434,178.306610,191.190918,202.819016,203.959518,192.571091,167.091736,146.223969,135.554565,132.620667,126.554550,97.802490,80.422325,93.612411,104.521500,74.637199,35.628948,14.702497,11.504976,8.540509,8.605801,9.606627,8.217370,5.111580,0.750414,0.214877,0.364464,0.124794,0.170248,0.000000,0.000827,0.225620,0.000000,0.000000,0.790083,0.000000,0.000000,0.000000 -601443.955000,4612495.550000,3509,4455,125.719849,166.116562,168.943008,157.769440,143.645462,133.042160,131.835556,130.331421,129.728119,131.620667,133.100006,144.331421,161.298370,179.009125,192.819031,203.967804,205.769455,193.430603,169.066971,146.992569,136.091751,132.281830,127.645470,98.662003,80.157867,93.992577,103.835548,74.984329,35.364479,14.085141,11.604151,8.826461,8.157042,9.164479,10.382660,3.736373,0.682646,0.140496,0.185124,0.111571,0.000000,0.000000,0.008265,0.000000,1.421488,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.155000,4612495.550000,3535,4455,116.688446,170.688431,170.911575,156.746292,144.167770,133.242157,131.862000,131.167786,130.399185,132.291748,134.308273,145.316528,163.093399,179.861984,192.523132,204.969421,206.828934,195.390900,169.688431,148.390915,136.415710,134.490097,129.481842,99.729774,81.581017,95.093414,106.002502,77.043823,36.142998,15.206630,11.771094,9.322329,8.887622,8.667785,10.221504,4.394223,0.586778,0.000000,0.321488,0.138017,0.000827,0.172727,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.755000,4612495.550000,3573,4455,104.760345,164.933884,168.495865,156.950424,143.677704,134.256210,133.479340,130.314072,130.694229,132.165298,134.016541,146.057861,162.768616,179.404953,194.206604,204.512390,207.743805,195.421494,170.925629,149.223160,138.545471,134.512405,129.909103,100.239685,82.661171,95.719025,105.057869,74.256218,35.545475,15.605803,11.809936,9.028938,7.736381,10.028941,8.614064,4.517365,1.166944,0.066116,0.268596,0.138017,0.000000,0.000000,0.000000,0.223141,0.000000,0.000000,0.000000,2.166943,0.000000,0.000000 -601459.555000,4612495.550000,3587,4455,115.724808,165.460358,167.981018,156.278534,141.923172,133.187622,131.609116,129.923157,130.047119,131.774399,133.311584,145.047134,162.666962,178.625641,192.551254,204.749603,207.328110,195.509933,168.807465,147.501678,137.220673,134.080170,128.972748,99.551247,81.460350,95.832245,105.361176,74.377701,35.741341,14.687621,11.724812,8.718195,8.613240,7.942164,8.583486,5.238026,0.630580,0.277687,0.506613,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.355000,4612495.550000,3606,4455,123.541336,165.896729,168.747971,156.739700,143.681854,132.152893,132.351242,130.260345,131.227280,132.450424,133.723145,144.938049,163.541351,179.491760,193.847122,205.723160,207.566132,196.276871,171.351273,148.632263,138.681854,134.954559,129.590912,99.995880,82.781006,95.756218,105.648766,76.252090,35.342991,15.056217,11.781011,9.582659,9.665306,8.474397,8.695884,5.525630,0.333059,0.208265,0.064463,0.069422,0.007438,0.000000,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,1.127273,0.000000 -601468.155000,4612495.550000,3630,4455,117.840515,159.733078,166.204163,154.873581,140.989288,133.369431,131.708267,128.344650,129.972748,130.873566,133.138031,144.848785,161.923172,178.584320,193.088455,204.022339,207.030609,194.352921,168.815735,147.286804,136.898376,133.749603,128.700012,98.881836,80.972748,94.650429,104.989273,75.071922,36.104977,14.788448,11.700020,8.647122,7.587619,9.016545,8.719850,5.182654,0.620662,0.343802,0.218182,0.003306,0.024794,0.000000,0.006612,0.055372,0.000000,0.000000,2.140496,0.000000,0.000000,0.000000 -601473.555000,4612495.550000,3657,4455,109.664482,160.507446,166.490906,156.854553,141.854553,133.102493,132.135544,130.565308,130.317368,132.127289,134.598373,145.912399,163.317352,180.548767,193.375214,205.598343,206.647934,195.986786,170.920670,148.747116,137.540497,134.565308,129.854553,99.689278,83.019852,95.986794,105.449608,75.482666,35.879356,14.466134,11.804977,8.448772,8.323982,8.928116,9.012410,4.549596,0.944630,0.087604,0.252067,0.000000,0.000000,0.158678,0.000000,0.000000,0.000000,1.209091,0.000000,0.000000,0.000000,0.000000 -601476.555000,4612495.550000,3672,4455,95.740509,159.104126,167.442978,156.385117,141.294235,134.616547,132.046295,131.021500,130.864471,132.079346,134.608276,145.178513,163.533875,180.087601,194.385117,206.145447,207.517349,196.335541,170.930573,149.319000,138.616547,135.517365,129.872742,100.145477,81.252914,97.120682,106.566963,76.922333,36.203327,15.053739,11.806631,8.294228,8.624810,9.677703,8.600013,3.346289,0.992564,0.051240,0.096695,0.049587,0.009918,0.238017,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.755000,4612495.550000,3698,4455,112.738861,158.280182,164.685150,156.181000,143.329773,134.189270,131.891754,130.486801,131.354553,132.809113,134.015717,146.172745,164.519852,180.478516,195.197540,207.139679,209.726456,197.759521,172.478516,150.189255,139.552917,136.420685,130.809113,101.478531,80.933075,97.883492,107.784317,75.718201,37.387623,13.966959,11.891755,8.867782,9.398364,8.791753,10.303321,4.324802,0.677687,0.227273,0.148761,0.007438,0.000000,0.000000,0.056199,0.000000,1.286777,0.000000,2.019835,0.000000,0.000000,0.000000 -601487.955000,4612495.550000,3729,4455,111.353745,162.287613,165.874390,157.502487,143.593399,133.130600,131.857880,130.287628,130.328949,133.229782,134.915726,145.717377,164.609924,181.295868,195.097534,207.229752,208.899185,197.651245,172.097534,150.080994,139.163635,136.395065,131.254562,100.229767,81.709114,96.733902,106.130600,75.990105,34.857872,14.037209,11.932250,8.246293,6.895057,8.100842,7.895882,4.267777,0.649588,0.242976,0.000000,0.071901,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.355000,4612495.550000,3761,4455,108.660347,161.685974,167.404968,158.809937,144.719025,135.892578,134.719025,131.595062,132.256210,134.785141,136.859528,147.776871,165.644638,182.223160,195.842987,208.768616,210.983490,199.611588,174.107452,152.214890,140.892578,136.561996,133.272751,102.305801,84.809937,98.900841,108.024811,78.537209,37.190102,14.555388,12.115722,8.906624,9.296711,11.005802,9.716545,2.889264,0.595043,0.000000,0.290910,0.000000,0.011570,0.000000,0.000000,0.000000,1.168595,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.555000,4612495.550000,3792,4455,110.133087,165.298355,168.653748,158.554565,145.331421,136.025635,134.455383,132.455383,133.405792,135.083481,137.290100,148.744644,165.785965,182.604141,197.017365,208.207458,209.918198,199.612411,173.777695,151.711578,140.447113,137.728119,133.100006,103.661995,84.190926,99.100014,107.752907,78.893402,38.761177,16.881838,12.100019,6.746292,8.915719,10.661173,9.519023,5.462820,0.520662,0.147934,0.105785,0.000000,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.155000,4612495.550000,3830,4455,107.871925,166.053741,168.698364,158.144638,144.442169,135.070267,133.698364,131.938034,133.020691,134.929779,136.524811,146.822327,165.541336,182.483490,196.384308,208.533051,209.607437,199.566132,174.061996,151.202499,140.185974,136.871918,132.227295,100.855392,83.747955,97.789284,107.971100,78.888451,37.822334,15.696713,12.020680,7.198358,9.800016,8.118198,9.196711,5.589266,0.905787,0.299174,0.335538,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.555000,4612495.550000,3847,4455,99.908287,167.486801,167.090103,156.362823,143.776047,133.957870,132.032257,130.916550,130.643814,134.321503,136.503326,146.957870,165.263657,181.900024,195.916550,208.313248,209.660355,198.585968,173.313248,150.238861,139.966141,137.032257,130.718201,101.602493,81.569443,97.751251,107.445465,78.371094,36.627293,14.830597,11.883490,7.000837,7.716546,8.392578,7.376873,3.814884,0.376861,0.339670,0.123141,0.063637,0.000000,0.000000,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.955000,4612495.550000,3864,4455,110.840508,162.286789,168.857040,158.005798,145.245468,135.914886,135.245468,133.047119,133.592575,135.476868,137.700012,149.014053,166.452072,183.270264,197.369431,209.146286,211.129761,200.650421,175.807449,152.939682,142.038849,138.261993,132.881821,103.179359,85.047119,98.452072,108.658699,79.038864,38.328121,15.657043,12.080185,7.252905,10.384315,9.585966,8.779355,3.414059,0.774382,0.075207,0.062810,0.076860,0.028100,0.608265,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.355000,4612495.550000,3881,4455,108.815712,165.063644,166.278519,156.691742,144.460342,134.832245,131.559509,130.509933,131.947937,134.542984,136.435547,146.311584,164.534714,181.633896,195.914886,208.038849,211.394226,199.642151,173.559509,150.716537,140.691742,136.237198,131.700012,101.138023,82.592575,97.410751,108.080177,77.551247,36.534733,13.976050,11.972746,6.923979,9.643818,7.917369,8.351254,3.681000,0.677687,0.000000,0.085951,0.163637,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601522.755000,4612495.550000,3903,4455,110.559517,164.700012,168.361160,159.096710,144.402496,136.237198,133.460342,133.063644,132.790924,135.253723,137.055374,147.898361,165.518188,182.187607,197.650421,208.352905,210.650421,200.261993,174.551254,151.700012,141.328110,137.931412,132.154556,102.410751,83.286789,97.476868,108.204140,78.666954,36.840519,15.440515,12.014069,6.527285,7.072743,8.686792,8.468610,4.111579,0.629753,0.388431,0.186777,0.004959,0.023968,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.355000,4612495.550000,3926,4455,112.709930,162.354553,167.255371,158.238846,146.338043,135.734726,134.354553,133.073578,132.734726,135.718201,137.321503,147.379349,165.652069,182.875214,197.346283,208.875214,210.073563,200.643799,173.726456,152.395874,140.916550,137.552917,131.990921,101.776047,82.850426,97.412407,108.271912,78.809113,37.916550,15.119026,11.999193,6.451250,8.447950,8.434727,8.576048,4.566952,0.654547,0.054546,0.063637,0.063637,0.076860,0.037190,0.078513,0.123967,0.000000,0.000000,1.108265,0.000000,0.000000,0.000000 -601530.555000,4612495.550000,3942,4455,125.762833,169.258682,169.969421,159.085129,145.911575,135.977692,135.242172,132.481827,133.019028,136.614059,137.184311,148.300003,165.853729,182.514877,197.010757,209.176041,211.027283,199.952896,174.754547,152.275208,140.853729,137.977692,131.572739,103.200844,84.167786,97.820679,107.473572,78.556221,38.349609,15.739688,11.961177,6.642160,8.531422,8.973570,7.964476,5.179348,0.585125,0.168596,0.119835,0.077686,0.004959,0.000000,0.093389,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.555000,4612495.550000,3967,4455,126.346291,165.825638,169.164490,160.073563,144.809113,136.470245,134.792572,133.139679,133.536377,136.387604,137.495041,148.751236,165.809113,182.379364,198.106613,208.114883,210.040497,199.428925,174.404144,151.511566,140.652084,136.181000,130.627289,102.734734,83.065308,97.371094,108.602501,79.924812,36.462002,16.223160,11.875225,6.914886,8.305801,8.488444,8.500841,5.412405,0.916531,0.247108,0.484299,0.134711,0.066116,0.000000,0.057025,0.064463,1.297521,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.155000,4612495.550000,4015,4455,113.065308,174.321503,170.081833,163.751266,149.552917,138.825638,136.387619,135.544647,135.990921,138.462006,140.734726,151.189270,167.949600,185.495056,199.453735,210.933075,212.528122,202.701675,176.073578,153.536377,141.503326,138.057037,133.809097,103.619026,84.453728,98.197533,109.172745,80.478523,38.478531,16.014067,12.164481,6.854558,10.115719,9.410760,10.379353,5.100009,0.293389,0.186777,0.070248,0.291736,0.004959,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.755000,4612495.550000,4033,4455,112.466949,171.764481,172.012405,162.789261,148.210754,138.987625,135.210754,134.731415,134.458679,138.309937,138.045471,149.243805,166.599167,184.433899,198.723145,210.706604,212.690079,200.243805,174.814072,151.706604,141.665298,136.938034,132.590912,102.433899,84.557869,97.665306,106.979347,79.053734,37.987621,14.815722,12.053740,5.871085,8.747125,8.471917,8.266130,3.014057,0.833886,0.400001,0.175207,0.000000,0.002479,0.000000,0.031405,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.555000,4612495.550000,4057,4455,129.190109,174.231415,169.900848,163.545471,149.396713,138.694229,135.876053,135.702499,135.561996,139.735550,139.842987,150.801666,167.867783,185.909103,199.322327,211.305801,212.388443,202.206635,175.933899,152.958694,141.925629,137.636383,133.363647,103.099190,84.173569,98.413246,109.148773,80.818199,38.512413,16.019854,12.123986,6.391746,8.804150,8.581007,10.234726,4.019842,0.342976,0.629753,0.000827,0.000000,0.013223,0.160331,0.000000,0.071901,0.000000,0.000000,1.209091,0.000000,0.000000,0.000000 -601557.355000,4612495.550000,4076,4455,119.785141,178.090927,173.363647,163.404968,150.314072,138.768616,137.884308,135.892578,136.520676,140.082657,140.438034,151.314072,168.512405,186.281006,199.859528,210.933899,212.661179,201.925629,175.884308,153.876053,142.322327,138.479355,133.363647,103.677704,83.983490,97.677696,108.719025,81.619850,37.553738,16.909935,12.123985,5.701663,9.581009,9.178529,8.304146,4.500835,0.935539,0.372729,0.204133,0.031405,0.062811,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.355000,4612495.550000,4126,4455,129.091751,178.711578,173.389267,165.414062,151.951248,139.108276,137.422333,137.141342,136.066956,140.653732,140.604141,150.926453,168.133072,186.571091,201.157867,211.653732,213.918198,202.463654,176.868607,154.364471,143.075226,138.207458,134.009109,104.124809,84.529762,97.496704,108.976044,79.736374,37.157871,16.628944,12.182664,6.859515,8.578529,8.982660,8.880177,4.502487,0.539670,0.064464,0.076860,0.165290,0.019008,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612495.550000,4154,4455,129.740509,175.922318,171.467758,160.500824,148.591736,134.484314,133.914062,132.847946,132.046295,135.905792,135.500839,147.104126,164.591736,182.707428,196.195038,209.029755,209.492554,197.360321,172.814880,148.798340,138.029755,135.823151,130.054565,101.120674,81.732246,95.492569,106.814888,77.509102,35.186798,14.502496,11.823158,6.111581,7.342989,8.352906,9.014891,2.953726,0.848763,0.273554,0.073554,0.000000,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.355000,4612495.550000,4181,4455,113.029762,170.261169,174.385132,161.823151,147.409927,136.790100,134.856216,132.790100,132.509109,134.352081,135.319016,147.219849,165.748779,182.781830,195.079346,207.145462,208.905792,195.616547,170.393402,148.608276,137.401672,134.492569,129.418198,100.616539,82.765305,95.401665,106.930588,76.476044,36.492584,16.814894,11.765308,9.429767,9.169437,9.707452,9.870262,3.905792,0.573555,0.220662,0.206612,0.297521,0.185951,0.000000,0.048760,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.355000,4612495.550000,4211,4455,132.302490,179.905792,172.335556,160.013229,144.195053,134.095886,133.343811,132.186783,130.914062,133.360336,133.723984,145.401672,163.781830,180.773560,194.426453,206.054565,207.757034,194.509109,169.186783,146.955383,136.013229,133.583481,128.145462,99.128937,81.459518,93.343811,104.715714,76.971916,35.699196,14.718199,11.649606,9.063650,8.563651,8.715715,8.571917,4.682653,0.924796,0.277687,0.166943,0.000827,0.224794,0.000000,0.081818,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.955000,4612495.550000,4229,4455,119.066132,172.289261,173.512390,160.512390,146.223145,135.115723,135.206635,132.049606,131.702499,133.520676,135.297531,145.520660,163.380173,180.793396,194.289261,205.314056,206.074387,193.917358,167.661163,146.090927,135.446304,132.553741,128.363647,98.429771,80.512413,92.900841,104.661171,74.867783,35.214893,14.209934,11.669439,8.951253,7.957038,8.721503,8.220675,3.871908,0.766945,0.335538,0.284298,0.000000,0.000000,0.000000,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,2.218182 -601592.555000,4612495.550000,4252,4455,122.768608,175.362823,170.974396,160.949600,145.891739,133.437210,132.759521,131.809113,130.610764,133.437210,132.693405,144.412399,162.065308,179.701675,192.776031,203.313248,204.040497,190.561157,166.139694,144.263641,133.081833,130.908279,126.263657,96.048782,79.908287,92.106628,100.883492,73.288452,33.891754,13.337208,11.478531,8.078524,8.281005,8.257039,9.466956,4.178520,0.414051,0.135537,0.128926,0.199174,0.000000,0.000000,0.006612,0.114050,0.000000,2.562810,0.000000,0.000000,0.000000,0.000000 -601595.755000,4612495.550000,4268,4455,109.346291,179.238861,174.371094,163.362808,146.833893,135.387619,135.619019,133.379349,133.503311,135.313232,135.214066,146.536362,163.676865,180.247131,193.817352,205.511566,205.569427,193.338013,167.569427,145.181000,135.048767,132.486786,127.900009,98.585960,81.023979,92.800835,104.123154,75.428947,35.949608,15.529770,11.627292,10.504147,7.919849,7.980179,9.547122,3.922322,1.017358,0.274381,0.270249,0.125620,0.000000,0.000000,0.053719,0.044628,0.000000,1.322314,0.000000,0.000000,0.000000,0.000000 -601603.755000,4612495.550000,4308,4455,129.266968,181.457031,173.101669,161.589279,147.911591,135.407440,134.977707,133.886795,133.225632,136.589279,134.754562,146.614075,163.200851,180.630585,193.093414,205.151260,204.490112,191.589279,164.837219,145.093414,134.242157,131.655380,125.845467,97.159523,78.804146,91.547951,102.366135,73.688454,34.233902,14.177704,11.440516,9.594231,7.533899,7.271088,8.460343,4.166951,0.456199,0.346282,0.172728,0.065290,0.070248,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.555000,4612495.550000,4322,4455,128.336395,182.607452,173.063644,163.559509,148.293411,137.822327,137.913239,135.111588,134.466965,138.078522,135.723160,147.235550,164.855392,181.450424,195.235550,206.657043,204.838852,191.797531,166.995880,146.458694,135.516541,133.227295,127.681831,98.756218,82.293404,94.657043,103.946297,75.392578,36.921509,14.384315,11.607457,9.618197,9.303321,9.192576,9.949603,4.007447,0.698348,0.200001,0.153719,0.000000,0.128926,0.000000,0.145455,0.088430,0.000000,0.000000,1.140496,0.000000,0.000000,0.000000 -601611.555000,4612495.550000,4347,4455,146.434723,198.550430,176.277695,165.657867,149.203323,135.211578,135.236374,132.831421,132.641342,136.484314,134.327286,145.128937,161.566956,179.930588,192.988449,204.401672,203.814896,189.451248,163.988449,143.566956,132.591751,129.335556,124.327286,95.963646,78.401665,91.930588,101.831421,72.674400,33.418201,13.645473,11.302498,9.577702,7.747949,9.638859,8.563650,3.938026,0.815704,0.039670,0.078513,0.000000,0.097521,0.000000,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612495.550000,4364,4455,139.472748,193.745468,174.786789,166.307449,151.150421,137.332260,136.687622,135.166962,134.084305,138.968628,136.464478,146.910767,163.761993,181.208267,194.439682,205.679352,204.423157,189.695877,165.844635,144.844650,134.555374,131.340500,125.381828,96.018188,79.753731,92.902489,102.695877,72.282661,35.489273,15.358695,11.398367,10.055386,7.103319,8.218196,8.485965,4.193396,0.525621,0.759506,0.448761,0.011571,0.104959,0.000000,0.166943,0.000000,0.000000,1.345455,1.202479,0.000000,0.000000,0.000000 -601618.155000,4612495.550000,4380,4455,137.436371,196.502502,176.973557,167.436371,152.246292,136.618210,137.634735,134.907440,134.469421,139.609940,135.700836,146.890915,162.940506,180.568604,194.229782,205.890930,204.890930,188.932236,164.692566,145.204987,133.502472,130.238022,125.618179,94.742165,79.519020,93.733902,102.932236,73.155396,34.717377,15.117373,11.419854,11.114065,7.117371,8.377701,8.885965,3.642983,0.543803,0.085951,0.228926,0.000827,0.071075,0.000000,0.000000,0.173554,1.337190,0.000000,2.451240,0.000000,0.000000,0.000000 -601620.755000,4612495.550000,4393,4455,150.817352,194.032242,175.329758,168.040497,151.420685,137.123154,138.172745,134.676880,135.610764,140.966141,135.404144,147.247131,163.544632,181.147934,195.470245,206.792572,204.643799,189.288437,165.387604,145.751266,133.346298,131.296707,125.900017,95.536385,79.585968,94.156219,102.536385,72.156219,34.776051,15.514894,11.445473,10.826462,8.490096,10.011584,7.900013,5.732244,0.662812,0.162811,0.000000,0.000000,0.000000,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.155000,4612495.550000,4410,4455,135.986801,199.664490,179.292587,171.730591,153.441345,137.598373,137.895889,136.383484,136.664490,142.292587,137.937210,149.011597,163.565308,182.639694,196.119034,207.201675,206.267792,189.771927,166.978531,145.540512,135.028107,132.416534,126.763649,96.730598,80.366959,95.152084,102.466133,72.804977,35.185143,16.057869,11.523985,11.424809,8.895881,7.561996,8.468610,4.858687,0.291737,0.272728,0.040496,0.051240,0.000000,0.000000,0.066942,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601627.355000,4612495.550000,4426,4455,155.803329,201.753738,180.100845,170.282669,152.224823,139.712418,138.290939,138.266144,136.588455,142.902512,138.125641,149.381851,165.290939,182.365311,196.885971,207.646301,205.786804,189.563660,166.604980,146.869446,134.315720,132.076050,127.200012,97.423149,81.026459,97.166954,104.662819,72.076057,36.299191,15.704975,11.563655,11.859519,9.581832,9.136377,8.957039,5.095049,1.757854,0.477687,0.423968,0.006612,0.145455,0.000000,0.000000,0.205785,1.527273,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.955000,4612495.550000,4439,4455,150.202484,195.413223,178.553726,169.991730,152.545456,139.809921,138.512390,136.454559,136.628113,143.818176,137.768600,149.355377,166.008270,183.008270,195.371902,208.256195,205.909088,188.223145,166.289261,145.462814,134.545471,130.355392,126.727287,96.074387,79.975220,94.719017,102.305794,72.892578,34.537216,15.364481,11.520679,14.900845,10.660346,8.749600,11.798361,6.281001,3.201658,1.652068,0.613225,0.364464,0.638843,0.114876,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.955000,4612495.550000,4459,4455,120.912407,169.325638,171.292587,159.730591,145.466141,137.234726,135.548782,132.937195,133.193405,134.515717,135.143814,146.400024,163.846298,179.672745,193.193405,202.408279,202.606628,190.631424,164.664490,143.887619,133.036377,130.879349,126.036377,97.763649,80.251251,95.532242,104.342163,74.829765,38.176880,16.551258,11.457870,8.951255,9.368611,10.482660,9.838033,3.445462,1.023969,0.285951,0.160331,0.044628,0.115703,0.000000,0.153719,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.755000,4612495.550000,4473,4455,107.318199,164.814056,169.615707,157.896698,144.632248,134.781006,132.409103,131.103317,131.086792,131.855392,133.764481,143.458694,162.309921,176.144623,189.681824,201.533051,200.574387,187.318176,163.921494,141.384308,131.458694,126.921501,122.590927,94.541336,78.623985,92.673569,101.202492,73.557869,34.929771,14.222331,11.144647,8.181007,7.566128,9.676046,9.071915,5.257860,0.952895,0.342977,0.047934,0.000000,0.123967,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.555000,4612495.550000,4497,4455,113.315712,163.976868,169.952087,158.158691,144.885971,135.530594,134.960342,132.447937,132.307449,135.175217,134.530594,145.762009,162.753723,178.596710,191.869431,201.166946,201.960342,189.092575,164.588440,143.390106,132.233063,129.059509,124.290916,96.695885,79.629768,93.009933,102.299187,74.142166,36.547127,13.979356,11.299192,7.011583,8.628941,8.682658,6.730593,3.826455,1.091738,0.081818,0.136364,0.126446,0.000000,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.355000,4612495.550000,4511,4455,112.717369,159.766953,170.808273,160.213226,145.353729,136.593399,134.981827,133.089264,132.395050,134.089264,135.056213,146.089264,162.758682,178.890915,192.502487,201.238022,201.634720,188.940506,164.221497,142.262817,132.651260,129.081009,125.072739,96.990097,79.395065,92.452904,102.758690,73.915726,36.130600,15.005804,11.370268,7.471088,8.633073,8.428939,9.132248,3.038023,0.649589,0.439670,0.000000,0.000000,0.000000,0.000000,0.085951,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601649.155000,4612495.550000,4535,4455,118.228111,168.723984,170.608276,159.302490,145.757034,136.773560,136.112427,133.980179,133.285965,135.021500,136.062820,147.112411,164.178528,179.674377,192.021484,201.914047,203.186768,190.484299,165.120667,143.682663,133.294235,129.963654,124.781830,97.219849,79.740509,92.831421,103.823151,74.963646,37.442997,15.214067,11.343821,7.918196,9.427286,10.269436,10.026461,3.912404,1.248763,0.242150,0.504959,0.000000,0.272728,0.000000,0.042975,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.955000,4612495.550000,4559,4455,107.961998,166.441345,169.028122,159.755386,145.912415,137.276047,134.201660,132.490921,132.375214,134.548767,135.457870,146.416550,163.614899,179.408279,191.953735,201.350433,201.854568,189.639694,165.788452,143.209930,132.937195,130.276047,123.945465,97.375221,79.292572,92.705795,103.094223,74.185135,35.325638,14.467788,11.267788,7.019022,8.091750,9.287618,8.159518,3.250421,0.445456,0.275208,0.204959,0.000000,0.001653,0.000000,0.057025,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.955000,4612495.550000,4574,4455,104.302490,160.013229,166.956207,157.261993,146.997528,140.609100,138.369431,137.022324,135.749603,136.890091,137.766129,148.807449,166.319839,182.212402,195.088440,205.220673,205.204147,194.138031,168.914886,147.956207,136.923157,132.625626,128.790924,100.509926,82.675217,95.493401,104.435547,75.402489,35.509937,15.162827,11.708283,5.779350,6.889270,7.877699,7.404972,3.330585,0.380993,0.220662,0.241323,0.000000,0.000000,0.000000,0.102480,0.122314,0.000000,1.345455,0.000000,0.000000,0.000000,2.132231 -601660.355000,4612495.550000,4591,4455,122.735550,165.842987,171.876053,160.768616,146.404968,136.677704,134.809937,132.338852,133.388443,135.256210,135.661179,145.462830,163.942169,179.338852,192.024811,201.917374,202.000015,190.132248,164.933899,143.363647,133.586792,130.231415,124.000015,97.057869,79.727287,93.867783,102.710762,76.305801,36.710766,15.609935,11.272746,9.093403,8.502492,8.709929,9.957866,4.868604,0.613225,0.117356,0.020661,0.000000,0.000000,0.000000,0.041322,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.355000,4612495.550000,4621,4455,129.747131,165.829758,167.887604,161.441330,147.251236,137.433075,134.672745,132.507462,133.160355,135.573578,136.317368,146.763641,163.920670,180.234711,192.383469,202.102478,202.391739,190.424789,166.019836,144.267776,133.755386,129.598373,126.036385,97.061180,80.441345,92.333900,102.647957,76.457870,36.755390,15.612416,11.457870,6.764476,8.758692,9.253734,8.913239,3.303312,1.033060,0.364464,0.055372,0.205785,0.177686,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.555000,4612495.550000,4642,4455,120.703308,166.951248,168.033890,157.761169,145.281830,137.422333,134.579346,132.835541,133.174377,134.819016,135.703323,146.091751,162.860336,178.025635,192.471893,201.951233,202.397522,189.761169,164.901672,143.174393,132.372726,129.298355,123.645462,96.604149,78.752907,92.711578,103.562820,75.661995,35.009109,14.266133,11.240516,6.624805,8.384312,8.419847,8.944643,3.823975,0.666118,0.294216,0.079339,0.009091,0.059504,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.955000,4612495.550000,4674,4455,114.519852,162.329758,169.511566,160.156219,145.957855,137.131409,135.552917,134.842163,132.974396,135.387619,136.825638,146.478516,163.635544,179.090088,192.189255,202.247116,201.371078,190.866943,165.718185,144.437195,133.610764,129.561172,123.627289,96.726463,78.908287,93.585968,102.817375,74.875229,36.131424,15.040514,11.238862,5.453730,7.918197,8.536379,7.752906,3.595048,0.690085,0.202480,0.238843,0.052893,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.155000,4612495.550000,4695,4455,111.129768,165.361145,170.633881,161.609085,147.443802,138.518188,135.799179,134.592575,134.782669,136.311584,136.807449,147.650406,164.419006,180.014038,192.980988,203.600815,203.286774,191.675201,166.799164,143.997528,133.708282,129.981003,125.427284,98.419029,80.460350,94.162827,104.030594,76.832253,35.857048,14.775227,11.402499,6.432243,8.978530,9.585966,9.814065,3.209925,1.180994,0.154546,0.011570,0.135537,0.058678,0.000000,0.000000,0.137190,0.000000,0.000000,0.000000,0.000000,1.249587,0.000000 -601685.755000,4612495.550000,4718,4455,122.939690,162.600830,169.402496,160.774384,148.559509,138.923141,136.138031,133.691757,133.947952,138.030579,137.609085,147.228943,164.468597,179.956207,194.055374,203.468597,202.947937,193.559509,167.129761,145.857040,134.782669,130.981003,126.518196,98.658699,81.485138,94.923157,104.534729,77.328117,37.452087,16.714069,11.501673,6.895054,7.536377,8.561998,9.014065,4.500009,1.193391,0.091736,0.181819,0.000000,0.000000,0.000000,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612495.550000,4731,4455,126.617371,167.113251,169.906616,161.071930,148.022339,138.815735,135.005814,134.113251,134.113251,136.832260,137.443832,147.344650,164.187607,179.972748,193.452087,202.989288,202.171097,190.956223,167.146271,145.162842,133.947952,131.204163,126.154572,97.600845,80.964485,94.700020,104.047127,77.906631,37.807457,14.836381,11.468615,6.279348,8.407452,8.809105,9.997535,2.942981,0.621489,0.254546,0.361984,0.115703,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.755000,4612495.550000,4748,4455,104.311584,165.609100,168.344635,160.815720,145.898361,135.724808,134.162827,132.443817,131.997543,133.749603,135.724808,145.286789,162.038849,178.460342,191.220673,201.080170,201.460342,189.848770,166.832245,144.774384,133.617371,130.419022,124.881836,97.063652,80.005806,93.171089,103.898361,75.857040,37.096710,15.145473,11.352912,6.575218,7.217371,8.139683,7.655386,3.514057,0.907440,0.064463,0.219835,0.000000,0.000000,0.000000,0.062810,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.555000,4612495.550000,4762,4455,105.271912,164.638855,168.663620,158.878525,146.812408,137.961166,133.349594,132.572739,132.399185,134.903305,134.647110,145.233887,161.399170,177.721481,191.192566,200.704971,200.895050,190.952896,165.878510,144.473557,134.076859,130.374390,124.845459,97.862000,80.432243,94.828941,104.225624,77.556221,37.275227,14.766960,11.349606,6.587614,7.293404,8.844643,8.006624,3.428106,1.178514,0.931406,0.285124,0.309091,0.164463,0.109091,0.352893,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.755000,4612495.550000,4788,4455,126.313240,168.660355,169.486801,161.379364,149.271927,138.238861,136.503311,135.776031,135.445480,136.941345,138.883484,148.974396,165.544647,180.916550,194.040512,203.470261,204.685150,193.304977,168.263657,145.990921,135.288437,132.123154,125.627281,98.147957,81.040512,94.205803,105.123161,77.974396,36.966137,15.457871,11.420681,6.015714,8.130593,8.114064,7.011583,4.411577,0.421489,0.486778,0.156199,0.281818,0.052066,0.000000,0.028100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.355000,4612495.550000,4806,4455,114.943810,162.338837,167.016525,161.231400,147.099167,140.165283,141.396698,140.603302,142.024796,143.231400,145.107437,154.206635,170.446259,186.033035,198.727249,209.016510,208.710724,196.925598,171.966949,149.214874,137.719009,134.595062,129.636383,100.811577,83.728935,96.966949,107.173561,79.347122,36.571918,16.857044,11.785143,4.782655,9.500841,7.228940,7.917368,4.228932,0.740498,1.344630,0.635538,0.000000,0.109091,0.000000,0.072727,0.050413,0.000000,2.499174,0.000000,0.000000,0.000000,0.000000 -601707.755000,4612495.550000,4828,4455,121.108276,159.757874,164.468628,159.650436,144.799179,134.055389,132.270264,131.237213,130.238861,134.096710,134.700012,144.452087,161.658691,178.840515,191.286804,200.683502,201.857056,190.609116,165.600830,143.576065,133.080170,129.823990,124.972748,96.385971,79.790924,92.055389,102.328117,76.956223,35.336380,14.275223,11.361176,3.540503,7.673569,5.802491,8.031417,4.545464,1.212398,0.573554,0.333059,0.161158,0.171901,0.000000,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.555000,4612495.550000,4847,4455,110.488449,169.957031,171.758682,161.147110,147.857880,137.543823,134.833084,133.800018,132.948776,136.535553,135.800018,147.089279,163.411575,179.519012,193.709091,202.279343,202.221497,191.320663,166.403305,144.733902,132.485977,129.395065,123.163658,95.981842,77.965309,92.965309,102.428116,75.841347,34.714897,14.347951,11.196712,3.895051,6.642990,6.324807,7.690922,4.476867,0.675208,0.814051,0.527274,0.220661,0.004132,0.070248,0.471076,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.555000,4612495.550000,4892,4455,134.230591,177.718185,171.999176,165.478516,149.065292,136.949585,135.445465,134.371078,134.255371,137.825623,137.230576,147.577682,164.916534,181.528107,194.048767,204.585953,204.015701,192.858688,169.676865,146.858688,135.676865,131.966125,126.536369,98.503319,80.825630,94.098358,105.288445,78.635559,36.668617,16.366133,11.503325,5.433069,8.146297,8.714063,9.095055,4.895877,1.300003,0.622316,0.138843,0.144629,0.028099,0.000000,0.107439,0.266943,0.000000,1.335537,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612495.550000,4917,4455,122.237206,180.443817,174.741333,164.485138,150.633896,137.162827,135.385956,134.171082,132.666946,137.559509,136.559509,147.253723,163.906616,180.890091,193.840500,202.460342,202.947937,191.708267,167.080170,146.452072,133.518188,130.534714,124.336372,96.419029,79.650429,93.212418,104.600838,77.030594,38.328121,15.447125,11.303325,6.033895,8.147948,9.328941,8.644642,3.215709,1.014879,0.177687,0.326447,0.069422,0.009091,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.355000,4612495.550000,4946,4455,133.096725,186.642151,176.840500,168.881821,151.964478,139.501663,136.923157,135.972733,135.823975,138.410751,138.733063,148.724808,165.261978,182.270264,195.187607,205.509933,204.104965,193.567780,168.228912,146.452072,134.807449,130.576050,125.972748,98.625641,79.700020,95.005806,105.881836,79.038864,37.534729,15.992579,11.452085,5.199184,7.232245,7.685136,8.538857,3.538850,0.504960,0.509092,0.085951,0.143802,0.000000,0.000000,0.092563,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.155000,4612495.550000,4960,4455,116.219025,174.293411,175.574402,159.913239,145.235550,136.219025,133.847122,132.359512,131.309921,132.789261,133.210754,144.772751,162.210754,177.590927,190.235550,199.194229,198.095062,186.640518,161.566132,140.475220,131.252075,126.971085,121.136375,93.830589,78.409103,91.896706,101.747940,74.037209,36.904980,14.081010,11.012416,7.605798,7.642161,7.047945,9.931418,3.364471,0.418183,0.051240,0.348761,0.000000,0.000000,0.000000,0.040496,0.194216,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.555000,4612495.550000,4982,4455,138.759521,174.461990,175.602493,161.247116,147.685150,136.098373,135.594238,132.362823,131.313232,133.453735,133.949600,144.635544,163.181000,178.445465,189.676865,199.585953,199.371078,186.362808,162.296692,140.982651,129.147949,127.081833,120.990929,93.784317,77.668610,90.734734,101.809113,74.585960,34.404156,14.783488,10.999192,7.590923,9.350427,8.544641,9.805799,2.825627,0.816531,0.337192,0.100827,0.000000,0.071901,0.000000,0.127273,0.157025,0.000000,0.000000,0.000000,0.000000,2.289256,0.000000 -601743.355000,4612495.550000,5006,4455,123.585144,173.874405,175.485962,161.766953,148.411591,136.568604,137.238037,132.849594,132.477707,133.981827,133.990097,145.684326,163.428101,179.081009,191.287613,201.130585,198.981827,186.965302,163.593399,142.403336,131.056213,129.056213,122.345474,94.014900,78.428123,90.758698,103.204979,75.386803,35.287621,14.899191,11.122333,8.249600,8.660343,8.858691,8.266956,2.466949,0.738019,0.289257,0.037190,0.000000,0.000000,0.000000,0.076034,0.135538,1.263636,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.955000,4612495.550000,5019,4455,126.425629,174.797531,173.070267,161.334732,146.979355,135.466965,134.376053,131.433899,131.781006,132.169434,132.954559,144.615723,162.739685,178.400848,190.756195,199.169418,199.128098,186.185944,161.781006,140.516541,130.384308,127.541336,122.318192,93.533066,76.822327,90.590919,100.929764,74.433899,34.640514,14.182662,11.119853,8.436377,7.575221,8.243815,8.552906,3.107445,0.574382,0.214877,0.009918,0.120661,0.000000,0.001653,0.001653,0.000000,1.330579,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.555000,4612495.550000,5032,4455,125.310760,179.434708,176.087601,163.153717,147.980179,135.938858,135.269440,132.335556,132.029770,134.013229,133.823151,145.029770,163.385117,178.285950,191.161987,199.666107,200.153717,186.955368,162.211563,141.244659,130.261169,128.583481,121.600014,94.302490,77.021500,90.170258,102.500839,74.781830,36.244648,15.463655,11.054564,9.720675,8.714890,8.562823,9.026461,3.017363,0.620663,0.548762,0.085951,0.109091,0.071075,0.000000,0.008265,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.155000,4612495.550000,5050,4455,116.952904,180.291748,175.828934,162.713226,148.820663,137.771088,136.126450,134.250427,134.200836,135.027283,133.961166,146.134720,163.035538,179.704971,190.514877,201.704971,199.977692,186.432236,162.738022,141.142975,129.878525,127.490097,122.572739,94.068611,77.192574,89.969437,102.622330,75.035553,35.291759,15.123984,11.142993,8.838857,7.501667,8.157865,8.716543,3.034717,0.661986,0.407439,0.053719,0.000000,0.057025,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.355000,4612495.550000,5076,4455,119.623985,182.144638,173.095062,163.169434,146.475220,135.814072,134.681839,132.318192,132.227295,134.657043,133.095062,145.838852,161.731415,178.714890,190.896698,201.351242,199.855377,187.045471,162.268616,141.020676,129.830597,127.392578,122.409103,93.342995,76.756218,89.971092,100.756218,73.483490,33.574402,13.997540,11.128118,9.436377,8.646295,8.157038,8.630592,3.285957,0.639671,0.133885,0.123968,0.000000,0.000000,0.000000,0.065289,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.555000,4612495.550000,5097,4455,119.067787,183.629776,175.919037,164.373581,149.456223,136.373566,135.985138,133.290924,132.869431,136.249603,134.166946,145.902512,163.009949,179.596725,191.762009,202.059525,200.398376,186.026474,162.836395,141.819855,132.274384,128.538849,122.200012,93.803314,77.753738,92.018196,102.671082,74.001671,34.638035,13.561174,11.109111,7.909932,7.034723,8.333899,9.086793,3.405793,0.858681,0.093389,0.037190,0.119835,0.055372,0.000000,0.055372,0.033058,1.316529,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.555000,4612495.550000,5127,4455,129.735565,182.702484,172.727280,163.264465,149.950409,136.793396,136.404953,133.876053,132.809937,136.545456,133.933899,145.826447,163.396698,179.595047,191.487610,203.760330,201.033051,186.421494,162.413223,143.429749,130.900848,128.793411,123.181831,95.033081,79.000015,91.876038,102.512413,74.685974,34.619858,14.493407,11.198367,9.753735,7.121500,7.890922,6.800839,2.725626,0.492564,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.555000,4612495.550000,5147,4455,124.824806,191.411575,177.998352,168.857864,150.923981,137.361984,137.535538,135.353729,136.287613,138.304138,136.560333,148.229752,164.155380,181.609924,192.923981,204.742157,202.006622,188.519012,163.576859,144.246292,133.411591,130.378525,124.618195,96.287621,79.866135,94.378525,103.386795,74.775230,36.353741,16.755392,11.328945,11.040512,9.025634,8.376047,10.000841,4.219843,0.709919,0.486778,0.730579,0.175207,0.227273,0.235537,0.106612,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.155000,4612495.550000,5175,4455,143.872757,192.236389,173.897552,168.071106,151.244659,138.261185,136.839691,136.087616,135.054565,139.790115,135.715714,147.484329,163.211594,181.029785,194.930603,203.591766,202.864487,186.550446,164.095901,144.550446,132.624817,129.922333,123.781830,94.600014,78.170258,94.401665,103.773567,72.814896,36.195057,14.621507,11.252913,10.978526,8.384312,8.138856,8.804973,3.934721,0.960333,0.145455,0.287604,0.000000,0.063637,0.000000,0.132232,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.155000,4612495.550000,5210,4455,136.901672,196.009109,179.314896,170.504974,152.810760,140.323151,139.562820,136.265305,136.248779,141.736374,137.414062,147.835556,165.166122,182.645462,196.405792,206.025635,204.744644,188.653732,165.852081,146.926453,134.670258,132.157852,126.372734,95.711586,79.736374,95.488441,104.405800,75.232246,36.058701,15.355390,11.488449,11.053738,9.258692,8.968609,8.611583,3.650421,0.357026,0.196695,0.173554,0.000000,0.058678,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.355000,4612495.550000,5266,4455,118.380180,172.578506,173.347107,160.644623,145.090912,137.041336,135.289276,131.586807,131.033081,132.239700,134.619858,145.090912,163.256195,178.644623,191.677689,201.669418,201.644623,188.933884,165.545456,143.264465,131.140518,128.636383,123.818207,94.909103,77.966957,92.173569,102.909103,75.545471,35.421509,15.485968,11.256218,8.511582,8.762825,9.499188,7.908279,3.991745,1.080994,0.157852,0.203306,0.003306,0.219009,0.000000,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.955000,4612495.550000,5349,4455,111.606628,164.036362,172.780167,162.416534,148.226456,138.036377,134.771927,133.176880,133.887619,134.631424,136.011597,147.573563,166.110748,180.623138,192.639664,202.928925,202.953720,190.846268,165.573563,144.681015,133.061172,129.160355,123.400009,95.705803,78.581841,92.788452,104.846298,75.011589,37.160355,14.781837,11.218203,6.777698,7.582660,8.277699,7.634724,5.681828,0.971077,0.357026,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.355000,4612495.550000,5406,4455,120.787621,166.027313,171.506653,160.523178,147.423996,136.671906,135.457047,132.275223,131.721497,134.275223,134.837204,145.903336,163.919876,179.076859,192.895050,202.300003,201.490082,189.498352,165.366150,143.523148,132.019028,128.663651,124.845467,95.828941,78.242165,92.919846,103.333069,76.035553,36.382668,15.983489,11.349606,7.406624,6.447948,8.116544,7.061996,3.199182,0.401654,0.069422,0.049587,0.000000,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601835.355000,4612495.550000,5466,4455,119.054558,160.195053,171.790100,161.558685,148.252899,136.426453,135.732239,133.657852,133.335541,134.922318,135.889267,146.368607,165.013229,180.616547,192.500839,202.128937,202.781830,190.145462,165.467789,144.203323,132.823151,129.442978,124.054550,94.591751,78.740509,93.798355,103.352081,76.120674,36.765308,15.454562,11.277704,5.529762,7.797536,9.180180,8.335551,2.704965,0.090083,0.000000,0.000000,0.127273,0.000000,0.000000,0.057025,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.755000,4612495.550000,5538,4455,108.869438,167.323990,171.828125,159.861176,146.919037,137.993408,134.869446,133.811600,133.398361,134.654572,135.786804,146.811600,164.274399,180.290939,193.852921,203.125641,202.861176,190.679367,166.861176,143.464493,133.092575,129.257874,124.290924,95.919029,77.158699,93.481010,104.885971,77.745476,35.803322,14.919026,11.299192,5.365298,8.655385,7.755385,8.466956,4.019016,0.440497,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.755000,4612495.550000,5648,4455,138.011597,172.862823,172.077698,163.747131,150.069443,138.259521,136.887619,135.094223,133.639679,137.028122,136.920685,148.590103,166.168610,183.209930,195.358704,204.681015,204.499191,193.400024,168.838043,146.284317,134.267776,130.953735,124.945465,97.011581,78.714058,94.945465,105.391747,78.705795,36.606632,15.898365,11.358697,5.222322,8.508280,6.749601,8.027287,3.301660,1.012398,0.176860,0.000000,0.000000,0.006612,0.000000,0.009091,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.555000,4612495.550000,5742,4455,121.214890,180.677689,175.371918,164.760345,152.578506,140.214874,138.057861,137.148773,135.743820,138.429749,138.636368,149.380173,167.148773,184.958679,196.735535,206.942154,207.099167,196.578506,171.454559,148.876038,136.809921,133.281006,127.000015,98.933899,80.330597,96.082664,106.421494,80.264481,37.603325,15.237206,11.545474,5.606622,9.142991,6.857864,7.152079,2.787609,0.767770,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.014050,1.342149,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.155000,4612495.550000,5790,4455,120.691750,187.724808,176.195877,166.551239,151.914871,140.311584,139.286789,137.592575,137.104965,141.485138,140.005798,150.245453,168.534698,186.005798,198.518188,209.559509,209.328110,197.898361,173.741333,150.435532,138.526459,134.609116,129.790924,100.270264,82.733078,97.675224,107.733078,81.220680,38.038860,14.708282,11.799192,5.288440,8.343816,7.710757,8.571090,2.685956,0.500001,0.100827,0.048760,0.153719,0.040497,0.187603,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601910.955000,4612495.550000,5844,4455,112.758698,182.262817,176.254547,165.469421,149.676041,138.105789,138.824799,135.452896,135.213226,136.758682,137.808273,150.254547,168.502487,184.353729,197.171906,209.171906,210.684311,197.899185,173.345459,150.981827,139.841324,138.072739,133.163651,102.684311,87.907463,99.576881,112.295883,80.180191,41.213245,17.364479,12.105803,11.760346,9.344644,10.692577,10.471916,6.005794,0.781820,0.704134,0.906613,0.295042,0.209091,0.428926,0.013223,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601914.555000,4612495.550000,5862,4455,112.010757,178.675217,173.700012,160.790924,145.964493,134.600845,135.385971,131.625641,130.890106,133.609116,134.683502,146.369446,164.402496,182.212402,195.121490,207.642151,208.700012,194.187607,170.700012,149.576065,139.071930,134.906616,130.336380,102.014069,86.443817,97.658699,110.766136,80.526466,39.195885,15.847126,11.848780,10.460344,9.845469,8.381006,10.838858,5.333892,2.126450,0.518183,0.750415,0.006612,0.000000,0.039670,0.057852,0.338844,0.000000,1.267769,0.000000,0.000000,0.000000,0.000000 -601917.555000,4612495.550000,5877,4455,112.981842,183.419861,177.411591,165.279358,147.849609,137.023163,136.907455,134.213242,134.370270,136.725647,136.609940,148.213242,166.171921,183.386795,196.494232,208.105804,208.907455,195.700851,171.585144,150.353745,139.221512,135.428116,131.890930,101.171913,84.304146,98.097534,109.742165,79.428123,39.262829,15.789275,11.990101,11.498363,8.862825,10.076875,10.130593,4.389264,0.960332,0.277687,0.238017,0.284298,0.200000,0.000000,0.163637,0.007438,0.000000,0.000000,0.000000,2.280992,1.380165,0.000000 -601920.355000,4612495.550000,5891,4455,111.231430,180.586777,179.280991,166.570251,146.776871,136.487625,137.024811,133.495895,133.338867,135.900848,136.140518,147.223160,165.884293,182.628098,195.528931,208.099167,209.421494,194.603302,171.206604,149.123978,138.462830,136.123978,130.272751,99.851265,84.900848,97.933907,109.264488,78.859528,38.685970,15.478531,11.842995,11.351254,9.364479,10.181006,10.253734,5.486785,0.976035,0.260331,0.282645,0.050413,0.000000,0.000000,0.033058,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.355000,4612495.550000,5936,4455,117.704140,188.039673,179.114059,165.114059,149.882645,137.861984,137.626450,136.552078,136.560333,140.056198,139.246292,151.006622,168.328934,185.642975,198.370255,211.229752,211.312408,195.940506,172.246292,150.114059,139.485962,135.915710,130.527283,100.870255,85.283478,99.837196,109.056206,78.804146,39.713242,16.194233,11.866134,11.561998,9.803322,10.423983,11.529767,6.200009,2.487606,1.290084,0.676860,0.802480,0.611571,0.287603,0.847934,0.302480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601932.755000,4612495.550000,5953,4455,133.714066,199.226456,183.143814,168.995056,151.036377,138.730591,138.945480,136.565308,136.069443,138.854568,137.143814,151.003326,167.532257,185.763657,196.846283,209.714050,209.672729,195.482651,172.061172,149.995056,139.342163,135.681015,131.309097,100.953728,85.590103,100.044640,109.697533,77.226463,39.011589,15.241343,11.937209,13.639687,9.168612,9.076875,10.937204,6.380175,1.529755,0.309092,0.066942,0.132232,0.080993,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.555000,4612495.550000,5967,4455,118.721504,176.523148,175.109924,166.696701,153.076859,139.159515,137.572739,135.589264,134.663635,139.093399,137.779343,148.151245,163.547943,181.547943,193.498352,204.787613,206.638855,193.490082,169.977692,149.093399,140.035538,135.291748,132.209091,104.043816,87.093407,100.019020,107.209106,78.490097,35.895065,14.869439,12.019027,6.171911,8.593403,7.806626,9.739681,2.539676,0.746284,0.145456,0.559505,0.000000,0.265290,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.454546,0.000000,0.000000 -601938.555000,4612495.550000,5982,4455,115.997528,169.286789,174.914886,166.385956,150.402496,138.410751,135.857056,135.104965,133.956207,138.609100,137.394226,147.914886,163.220673,179.493393,192.534714,204.270264,205.873566,193.964478,169.790924,148.815720,138.865295,135.592575,131.518188,103.741333,87.303314,100.691742,109.493401,78.848770,37.501675,15.717375,11.956217,7.424804,8.091750,8.760344,8.827286,3.213229,0.287605,0.212398,0.280166,0.255373,0.022314,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.555000,4612495.550000,6007,4455,114.844643,175.679352,170.927277,164.332245,148.423157,136.580170,134.786804,133.770264,132.596710,136.662827,135.042999,146.183502,161.604965,179.538849,191.456207,203.671082,203.522324,192.191742,168.125626,147.439697,138.365311,134.439682,129.836380,103.191765,87.109116,101.133911,107.290932,79.142174,38.621510,16.138035,11.803325,7.439681,9.191751,6.958692,8.391748,2.765295,0.447110,0.289257,0.692564,0.000000,0.004132,0.167769,0.369422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.355000,4612495.550000,6041,4455,108.714058,174.424820,170.738861,163.152084,148.689270,137.796707,134.590088,133.408279,132.813232,135.664490,136.895889,146.044647,161.606628,178.838043,191.383484,202.904144,204.515717,192.755386,168.193405,147.234726,136.565308,134.548767,130.763641,103.102493,87.052902,99.995056,107.887611,77.904144,37.854565,15.493406,11.887623,6.391746,8.310759,9.302495,9.371088,3.872733,0.898350,0.528927,0.348761,0.342149,0.000000,0.003306,0.671075,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.755000,4612495.550000,6058,4455,110.909103,164.512405,171.636383,163.272751,149.289291,137.628128,135.413239,134.355377,132.909103,136.685989,136.264481,146.504166,161.388443,178.239670,190.173569,202.305786,203.330597,191.363632,168.289276,146.884323,137.429779,133.942154,129.454559,102.371918,87.495872,100.000008,107.504150,79.016541,38.016544,15.252085,11.768613,6.961995,9.738858,8.926461,9.231419,3.221492,0.564466,0.314878,0.495042,0.047934,0.006612,0.000000,0.246281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.555000,4612495.550000,6072,4455,128.645462,170.959534,169.719864,164.612427,149.604156,137.637222,135.777695,133.174393,132.728119,136.909927,136.571091,147.984329,163.124817,179.323166,190.959534,202.000839,203.951248,192.306625,168.810776,148.042175,137.314896,135.347946,129.100021,103.347954,86.033905,100.447128,106.860344,78.248772,39.703323,15.619852,11.736383,7.100837,9.658692,9.158692,9.715716,3.947114,0.297522,0.288431,0.181819,0.077686,0.239670,0.307439,0.317356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601959.555000,4612495.550000,6087,4455,100.641335,168.352066,174.228088,163.806610,148.798355,138.376877,137.352081,134.781845,134.401672,136.938858,137.219849,147.533890,163.228088,177.922318,191.319000,203.302475,204.079330,193.236359,169.029755,147.500839,138.980179,135.897537,130.327301,104.071098,86.963654,101.004982,108.790100,79.889275,39.814896,17.749605,11.847953,6.966952,10.290926,11.419851,10.619024,2.885956,0.400003,0.367770,0.053719,0.191736,0.055373,0.170248,0.000000,0.469422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.155000,4612495.550000,6110,4455,106.653740,161.257019,164.909912,161.033875,146.587616,136.166122,134.240524,131.430603,131.397537,133.000854,134.339691,145.240509,159.761154,175.571075,188.562820,200.091751,200.835556,189.967789,166.116531,144.984314,135.273575,131.100021,127.918205,100.893410,86.108284,99.058701,106.372749,76.595886,38.323162,16.214893,11.628945,5.322324,9.681833,8.171915,7.362822,3.635543,0.163639,0.046282,0.287604,0.000000,0.000000,0.163637,0.924794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.755000,4612495.550000,6128,4455,94.958702,161.537201,168.735550,160.801666,145.743820,135.239685,133.685959,131.355392,131.214890,133.793396,135.157028,144.719025,159.859528,175.487625,188.289276,199.570267,200.570267,190.314072,166.380188,145.190094,135.661179,131.892563,127.181839,100.694237,84.000015,100.272751,106.909119,78.388443,36.793407,15.364481,11.562004,5.974391,8.594231,7.846296,6.750425,3.124799,0.343804,0.084299,0.247935,0.044628,0.178513,0.156199,0.095868,0.347108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.755000,4612495.550000,6158,4455,100.043823,158.845474,167.423996,156.845474,143.564484,135.407455,132.671921,130.250443,129.746307,131.688446,133.845474,143.010773,158.630600,174.547958,186.754562,197.845474,199.448776,188.308289,165.514893,143.589279,133.589279,131.291763,126.845474,100.200851,83.911591,97.919861,104.498367,76.614075,37.076878,14.628119,11.531425,5.635548,8.172743,9.511585,7.642988,2.584301,0.744631,0.114050,0.115703,0.032232,0.000000,0.080992,0.091736,0.402479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.355000,4612495.550000,6191,4455,102.593407,157.105804,168.800018,159.552094,143.485977,135.254547,133.122314,130.576859,130.808273,131.651245,133.593399,142.990112,158.684326,174.138870,186.866135,198.560349,199.188446,188.097549,165.552094,143.634735,134.072739,130.204987,125.618195,99.568604,83.047958,98.089264,106.419846,76.634735,35.923985,14.962829,11.419854,5.633068,6.776875,6.398360,7.624806,2.454551,0.763639,0.039670,0.195868,0.029752,0.000000,0.277687,0.142975,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.355000,4612495.550000,6206,4455,89.189278,164.040512,168.156219,160.395889,145.412415,134.883484,133.428940,131.585968,131.131424,133.255386,134.420670,144.908279,159.957870,174.428940,186.825638,198.048782,199.742996,188.693405,166.090103,143.999191,134.858688,131.569443,128.081833,100.073563,84.817368,97.404144,104.693398,78.701675,36.023987,14.806630,11.643821,7.516542,8.737204,9.427288,8.732246,3.364470,0.897523,0.266943,0.070248,0.000000,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.355000,4612495.550000,6231,4455,104.000015,154.132248,167.041351,155.504150,142.785126,134.214890,131.231415,127.603302,129.231415,129.933884,131.933884,142.239670,158.190094,173.413254,184.462845,196.760361,197.281021,188.438049,163.157059,142.355377,133.107437,130.528931,123.363647,97.495880,82.165306,95.066132,104.206627,76.371918,36.619854,14.776875,11.214895,6.949598,7.663652,7.923154,8.439683,2.681823,0.149588,0.072729,0.127273,0.138844,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.555000,4612495.550000,6267,4455,101.071098,157.980194,170.360367,159.558701,142.674408,134.955399,132.864487,130.881012,128.922333,130.773575,132.327301,143.021515,158.261185,174.600037,186.897552,197.509125,198.244659,186.533920,164.666138,142.335571,133.459518,130.244644,125.327293,98.360344,83.195061,96.575218,104.285965,77.236382,36.591751,14.309935,11.393408,4.751250,7.881834,8.144643,8.325632,3.481826,0.422315,0.066943,0.358679,0.101653,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.555000,4612495.550000,6282,4455,95.261177,153.128952,166.195068,157.252914,142.294250,134.881012,132.195053,129.947113,129.649597,129.914062,132.360336,141.715729,158.889282,173.715729,185.872742,196.806625,198.550430,186.443008,163.310776,142.831436,133.517365,128.740509,124.509102,97.889267,82.352081,96.434723,105.352081,76.517380,37.674397,14.456216,11.319027,5.823977,8.100842,8.599189,8.052079,2.038846,0.450415,0.209092,0.121488,0.000000,0.000000,0.148761,0.000000,0.000000,1.504132,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.155000,4612495.550000,6300,4455,94.466957,154.904953,165.987625,155.954559,143.318192,134.623978,131.880188,129.665298,128.028946,129.309937,130.756210,141.458694,157.954559,173.177719,185.384323,196.235550,196.004150,184.607468,162.566132,141.607452,131.772751,128.929764,124.318199,96.847122,80.706627,95.557869,105.334724,75.549606,35.756214,13.794231,11.301673,5.852077,8.027287,9.647123,7.902492,3.567774,0.211572,0.135538,0.000000,0.228926,0.000000,0.068595,0.465290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.555000,4612495.550000,6322,4455,75.812408,151.804153,168.804169,154.911606,145.250443,133.704971,130.795883,128.837204,127.812408,129.961166,130.176041,140.564484,157.085159,172.514893,183.498367,195.547943,195.580994,183.919861,162.076889,141.952911,131.564484,128.275223,123.572746,96.283485,79.787621,94.878525,104.688446,75.845467,36.771088,13.285140,11.233903,4.702489,8.246297,7.595881,9.133897,2.849592,0.474382,0.165290,0.373555,0.028099,0.000000,0.161158,0.814050,0.000000,0.000000,0.000000,0.000000,0.000000,1.866942,0.000000 -602012.755000,4612495.550000,6353,4455,89.854553,156.738861,169.135559,158.780182,143.937210,136.011597,132.681000,130.251251,129.747116,130.532242,131.474396,142.738861,159.003326,173.499191,187.284317,197.937210,197.590103,186.672745,164.267792,143.474396,132.747116,129.358688,124.218193,96.788445,82.838028,97.656212,106.209930,77.747116,40.226467,13.857042,11.292582,7.497532,8.828114,9.196709,9.041336,3.397529,0.766118,0.243804,0.214877,0.054546,0.388430,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.155000,4612495.550000,6395,4455,95.652077,158.338043,166.247131,155.544647,143.057037,134.032242,131.222321,128.652084,126.817368,127.693398,130.065308,141.073578,157.577698,172.842163,185.090103,196.015717,196.090103,184.528122,162.172745,141.412415,131.544632,127.189270,122.354553,96.528107,80.809105,95.544640,104.544640,77.519844,36.040516,14.137207,11.123159,8.016543,8.242991,8.152907,8.485137,3.147113,0.967772,0.224794,0.169422,0.126446,0.011571,0.000000,0.814877,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602023.755000,4612495.550000,6408,4455,91.785141,154.553741,167.942169,158.743820,145.335556,136.079346,132.872742,130.740509,128.806625,128.814896,130.988449,141.591751,157.542160,173.327286,185.261154,196.137192,196.823135,186.583481,163.228119,143.616547,133.988449,130.831421,124.418198,98.426460,81.616539,97.732246,106.170258,78.228111,39.062832,16.403324,11.310762,6.861169,8.606627,9.057865,7.531417,4.877692,0.367770,0.251241,0.401654,0.000000,0.000000,0.199174,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.555000,4612495.550000,6422,4455,89.314896,152.314911,168.356232,157.141357,144.480194,133.909927,131.562820,129.595886,128.033890,129.108276,131.075226,141.662018,157.686813,172.976059,184.885147,195.785980,196.612427,185.885147,161.843826,142.025650,131.876877,128.108276,122.009102,96.265305,81.364479,95.381004,103.976044,76.992577,37.736389,13.908280,11.091755,6.040507,10.327289,7.158692,7.060344,3.095046,0.526447,0.013223,0.216530,0.080166,0.196694,0.069422,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.155000,4612495.550000,6445,4455,90.505806,148.365311,166.481018,157.745483,141.960358,133.456223,130.613235,127.753738,128.067780,127.357040,129.348785,140.257874,156.100830,170.604980,183.968628,193.712418,192.968628,183.770279,160.530609,139.662842,130.943817,126.390099,122.109108,94.894234,78.563652,94.100845,103.150429,74.299194,35.034729,12.509935,11.100846,6.600013,7.319849,7.281006,7.100840,3.403311,0.684300,0.229753,0.195868,0.000000,0.014050,0.000000,0.661984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.755000,4612495.550000,6483,4455,90.162003,154.467789,166.980179,156.600006,144.178528,134.162003,132.881012,128.657867,128.723984,129.261169,130.963654,141.352081,157.021500,172.409927,184.723984,195.723984,196.203323,184.823151,162.525635,140.459518,131.624802,128.170258,123.690926,97.104149,81.071091,94.740509,104.690926,76.418198,36.963657,15.008282,11.244647,6.848773,8.667783,8.879354,10.737205,3.393395,0.404134,0.075208,0.174381,0.076860,0.116529,0.157025,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.955000,4612495.550000,6504,4455,113.921501,157.781021,169.665298,156.599213,145.500031,134.152893,132.004135,129.309921,128.822327,129.747940,131.690094,141.144653,158.425659,173.549591,186.161163,196.706635,197.805801,186.111572,163.384308,142.037216,132.194229,128.342987,123.954552,96.326462,81.235550,96.260345,105.095055,76.210762,37.830593,14.569438,11.268614,7.453732,9.443817,9.171915,9.919023,4.741330,0.829754,0.020662,0.142976,0.052893,0.000000,0.002479,0.149587,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602048.555000,4612495.550000,6532,4455,98.490105,162.804153,169.936371,159.399200,144.167786,133.804153,132.101669,129.200851,129.134735,130.126465,131.622330,141.498367,158.746292,173.291748,186.258682,196.481827,196.895050,185.820663,162.787613,141.283493,131.738037,128.680191,123.027298,97.862007,79.622322,94.407455,104.481842,76.316544,36.531429,15.191752,11.184316,7.414888,9.252081,9.879354,8.872740,3.478518,0.244630,0.023968,0.232232,0.028926,0.000000,0.151240,0.000000,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.555000,4612495.550000,6562,4455,96.792580,164.511597,169.792587,159.759521,144.668610,135.288437,134.296692,129.619019,130.594223,129.858688,131.181000,142.238861,159.214066,173.858704,186.181015,197.379364,198.065308,185.767792,162.817368,142.916534,131.577682,129.304962,123.445457,97.205795,80.974388,95.842163,106.090096,76.759514,37.238865,14.958694,11.222332,7.270260,9.876876,9.204148,9.490097,4.784305,0.558681,0.295045,0.468596,0.000000,0.000000,0.074380,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602060.755000,4612495.550000,6593,4455,103.704971,158.508286,172.764481,161.954559,147.276871,137.747955,135.657043,134.301666,132.086792,133.508270,135.979355,145.954559,162.979355,178.227295,189.293411,199.971085,201.243835,188.450424,165.119858,144.210754,134.301666,131.020676,125.772736,99.045479,82.318207,97.533081,106.442169,77.938042,38.400841,16.733076,11.433904,9.390097,10.197537,9.156212,9.563650,3.205792,1.195045,0.084299,0.217356,0.035537,0.127273,0.493389,0.000000,0.000000,0.000000,2.202479,0.000000,0.000000,0.000000,0.000000 -602064.755000,4612495.550000,6613,4455,96.393410,161.038025,165.897537,159.542160,143.484314,135.244644,131.153748,128.963654,128.765305,129.228119,129.409943,140.790100,157.269440,173.319016,184.715714,195.285965,196.558685,183.137207,160.170258,140.517365,130.236389,126.930603,121.418205,96.302498,80.715721,93.376877,104.054565,75.682663,34.988449,14.539687,11.038035,6.995880,7.981833,8.698361,8.853732,3.461990,1.600003,0.394216,0.281818,0.161984,0.000000,0.140496,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602068.555000,4612495.550000,6632,4455,98.927299,161.323990,172.505798,161.431427,143.076065,134.795059,132.274399,128.819855,128.332260,129.877701,131.249603,142.100845,158.092590,173.786789,185.803314,197.018188,197.200012,184.654556,162.282669,141.489288,131.885971,128.365311,124.109108,96.811600,80.646309,95.150436,103.687630,76.398376,35.638035,15.414895,11.282663,9.342987,7.400014,7.661996,7.880178,2.148765,1.036366,0.481820,0.224794,0.120662,0.204132,0.228926,0.000000,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.755000,4612495.550000,6668,4455,94.320679,161.006622,170.047958,159.246292,143.957031,134.171921,131.510757,128.204971,128.196716,129.254562,129.585144,139.857864,156.981827,172.047943,184.378540,195.411591,196.717377,183.890930,160.031418,139.378525,129.717377,128.122330,120.981834,94.857864,77.890923,91.742165,103.519020,75.295883,33.444649,13.589273,10.998365,8.819020,7.243817,8.904145,8.613236,3.971907,0.683473,0.049588,0.052893,0.000000,0.000000,0.071901,0.312397,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.155000,4612495.550000,6685,4455,97.311584,168.567780,171.509933,161.790924,143.476868,133.022324,132.270264,129.286789,128.237198,129.088440,129.600830,140.352905,157.452072,172.865295,185.171082,196.162842,195.617386,184.658691,161.691742,139.939682,130.038849,127.245461,121.881828,94.592583,80.146301,93.642166,104.080177,75.369438,35.972744,14.365306,11.080184,8.538857,9.022329,8.104145,9.019021,2.953725,0.623143,0.110745,0.285951,0.028099,0.000000,0.159504,0.007438,0.398347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.955000,4612495.550000,6714,4455,98.305801,160.140518,168.206650,160.256226,143.148773,133.314072,132.743820,128.652908,127.785141,130.140518,129.140518,140.041336,155.958694,172.933914,184.917389,196.033096,197.264496,183.512436,159.719040,140.421509,130.975220,126.462830,122.454559,94.107460,79.264488,90.768616,101.504150,72.396721,34.033077,13.028942,11.132251,7.812408,7.509105,7.362822,8.016541,3.575212,0.423968,0.371076,0.340496,0.112397,0.000000,0.072728,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602091.755000,4612495.550000,6748,4455,94.966133,166.974380,168.073563,158.866943,144.701675,134.362823,131.990921,130.594238,129.081833,132.478531,131.181015,142.552917,159.635544,174.776031,188.090088,200.594223,200.048767,186.247116,163.023972,143.428940,133.247131,129.445480,124.536385,97.362831,81.478531,93.817375,101.941345,75.966133,37.395885,14.979358,11.321506,9.349599,9.009935,9.423979,8.895054,2.078517,0.456200,0.098348,0.171075,0.024794,0.130579,0.080992,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.355000,4612495.550000,6771,4455,102.194237,175.648758,171.971069,162.938034,146.508286,135.673569,134.285141,131.623993,131.764481,134.276871,132.698380,144.640518,161.417374,178.822311,191.954544,203.425613,202.814056,190.293396,168.095062,147.946304,137.789276,134.673569,128.045486,100.301674,84.194237,98.169449,108.062004,79.243828,37.838863,15.799192,11.640515,10.996708,10.550428,10.648775,11.924809,4.996703,0.366119,0.090911,0.182645,0.366116,0.008265,0.163637,0.000000,0.428926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.955000,4612495.550000,6789,4455,111.076057,176.646286,170.472733,159.968628,147.381851,134.728943,133.183487,130.522339,130.208282,134.381851,132.249603,143.588455,161.274399,178.076050,191.654556,202.761993,204.530594,190.481003,167.869446,147.844650,137.497543,134.629776,128.745468,100.282669,84.695885,97.571922,108.282669,77.919029,35.869438,13.938860,11.704151,9.078525,8.841337,10.486790,9.504147,3.604139,0.830581,0.476035,0.311571,0.097521,0.000000,0.163637,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602105.355000,4612495.550000,6816,4455,115.616547,176.624817,170.509109,164.608276,145.203339,134.228119,132.624817,129.864471,129.938858,135.624817,132.633072,144.038040,160.988449,178.434738,191.195068,205.120697,204.583496,190.699203,168.335571,148.029785,138.500854,135.608276,128.509109,100.219856,84.839691,99.476051,109.203316,78.062828,36.633076,13.474399,11.682664,10.130591,8.934725,9.075220,11.697534,3.029758,0.623143,0.380994,0.340497,0.193389,0.000000,0.239670,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.355000,4612495.550000,6841,4455,103.451271,183.145462,174.013229,167.013229,148.236374,137.203323,135.021500,133.484314,132.302505,137.219849,134.418198,146.963654,164.038025,181.087616,193.971909,207.583481,206.657867,192.302490,170.847946,150.203323,141.542160,136.773560,130.963654,102.294235,84.922333,102.509109,111.195061,80.120682,39.294235,15.663653,11.905804,9.859516,8.984312,9.477700,10.140509,5.508273,0.352069,0.142977,0.174381,0.128099,0.000000,0.080992,0.167769,0.240496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.155000,4612495.550000,6870,4455,118.570267,179.264465,172.685944,165.289276,148.520676,135.809937,135.330582,132.239685,131.016541,136.586792,133.165298,143.743820,160.644638,179.057846,191.537186,204.446274,203.090912,188.355377,168.049591,148.545471,138.066132,134.066116,128.636383,98.801674,83.991753,101.512421,109.380180,77.314064,37.809933,15.148777,11.694235,9.359517,9.176875,8.481008,9.130593,4.747116,0.751242,0.381819,0.283472,0.126446,0.003306,0.000000,0.325620,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602118.955000,4612495.550000,6884,4455,108.829765,181.714066,174.730591,168.185150,146.664490,135.193405,134.804977,131.945465,131.961990,136.515717,132.160339,143.573578,159.209930,177.218201,189.771927,201.590088,201.457870,187.152084,167.557037,146.953735,136.309113,133.185135,127.763649,97.871086,82.532242,100.325630,108.424805,77.689270,37.920681,16.127291,11.614896,10.244642,8.593404,10.091751,9.438858,4.097529,0.992564,0.527274,0.123141,0.042975,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602123.755000,4612495.550000,6908,4455,113.059517,177.266129,175.059509,166.646286,146.638031,135.786789,134.613235,131.952072,133.009933,137.828110,132.646286,144.489273,159.803314,177.241333,190.613235,204.092575,202.588440,187.505798,167.464478,147.348770,137.588440,133.828110,128.290924,99.613235,84.795052,102.067780,110.745461,78.852905,40.869442,17.749605,11.662828,13.423983,9.519024,11.204973,9.707452,5.106622,0.508266,0.314879,0.098347,0.037190,0.044628,0.399174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.155000,4612495.550000,6925,4455,94.710762,156.462814,161.785141,153.917374,139.611588,128.710754,126.173569,124.198364,122.834724,126.355385,125.702492,136.900848,154.223160,169.925629,182.975204,194.413223,195.702484,183.933884,161.884308,142.338852,131.413239,126.851257,121.090927,93.272743,78.338860,94.413239,106.983490,79.578529,38.421505,14.234728,11.008284,6.990094,7.290923,8.563650,8.704144,3.966952,0.823143,0.309093,0.118182,0.109918,0.000000,0.004959,0.294215,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602131.755000,4612495.550000,6948,4455,90.509933,148.270279,155.823990,149.030609,136.402512,125.427292,122.716545,120.865311,119.245476,121.774399,122.857040,133.749603,150.385971,167.063644,178.700012,190.997528,192.220673,181.906616,160.295074,139.716553,128.881836,124.344643,117.336380,91.609108,76.427292,92.559525,106.328117,80.311584,36.956215,14.152085,10.666962,5.232241,8.303320,7.708279,7.146293,2.593395,0.211571,0.343802,0.111570,0.071075,0.000000,0.006612,0.070248,0.272728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.355000,4612495.550000,6986,4455,99.991753,146.322327,158.611588,151.421509,137.842987,128.388443,126.206627,123.553734,121.603325,122.785141,125.256218,135.876053,153.363647,168.950424,181.214890,191.876053,193.545471,183.421509,161.157043,141.413239,130.140518,125.669441,119.636383,92.446297,76.512413,92.834724,109.768608,82.545471,38.710766,16.120680,10.876052,5.909101,10.141338,8.445469,8.628940,3.256205,1.471078,0.590084,0.243802,0.000000,0.000000,0.066116,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602150.355000,4612495.550000,7041,4455,91.433899,147.169434,156.549606,150.789276,134.657043,127.061996,121.871918,120.516548,119.458694,120.483490,122.260345,132.805801,150.508286,165.665298,177.764481,188.665298,190.392578,180.012405,158.946304,138.871918,127.863655,122.698364,118.681831,90.904976,73.409103,92.789276,106.880180,82.161171,36.111591,16.639687,10.789274,6.096706,8.994230,8.772742,8.383483,5.075217,1.149590,0.350414,0.277686,0.342976,0.000000,0.000000,0.071901,0.206612,0.000000,0.000000,0.000000,0.000000,1.868595,0.000000 -602155.555000,4612495.550000,7067,4455,101.600021,147.178543,153.343826,147.186813,131.856232,123.029778,120.013245,117.170265,116.649605,118.856216,118.905807,130.128952,147.600037,164.757034,177.128937,186.699188,187.500839,177.856216,154.831436,135.947144,125.211594,120.905815,113.600021,87.401672,70.897545,88.748779,104.814896,77.261177,35.922337,12.515719,10.327291,5.438026,7.600014,8.371088,6.706623,3.238024,1.278515,0.111571,0.052066,0.198348,0.000000,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602161.355000,4612495.550000,7096,4455,83.366959,149.821503,155.358704,145.755386,132.342163,122.433060,119.523979,116.383476,114.904144,116.085960,116.829758,128.375214,146.176880,161.581833,174.474396,184.953735,186.317368,175.482666,155.366959,134.647949,123.995056,119.135544,112.945465,85.937202,70.565308,88.366951,106.672737,78.912407,37.284317,13.327291,10.267788,5.926458,7.663650,6.848774,7.068605,2.927282,0.435539,0.135538,0.059504,0.038017,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602164.555000,4612495.550000,7112,4455,90.329765,142.073578,154.751266,145.453735,131.800842,120.883484,118.338028,114.709930,114.329765,114.404144,115.619019,127.263649,144.693405,160.875229,173.800842,185.172745,186.445480,174.503326,154.147949,133.511581,122.966125,118.032242,112.900009,84.883492,69.181007,87.809105,104.850426,79.908287,36.842167,13.762000,10.263656,5.447119,8.671088,8.121502,6.993400,3.278522,0.528100,0.479340,0.115703,0.042149,0.095868,0.000000,0.464464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602168.955000,4612495.550000,7134,4455,109.008270,141.429764,155.892578,143.892578,131.413239,121.570259,117.223152,113.834717,112.710754,112.652901,115.181824,125.330589,143.223160,159.578522,172.842987,184.454559,184.380188,174.140518,153.099182,132.785126,122.173561,117.438026,110.454552,82.768608,68.752083,86.652908,106.900841,78.876053,38.165310,13.701672,10.041342,5.688441,9.438857,8.022328,8.768608,4.612407,0.919839,0.217357,0.000000,0.394216,0.000000,0.086777,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602176.155000,4612495.550000,7170,4455,99.354568,149.387619,155.189270,143.974396,130.445465,121.767776,117.181000,113.387611,111.453728,112.552902,112.742989,124.065300,142.114899,157.338043,169.734726,181.329773,182.974396,171.610748,151.280182,131.238861,121.842163,116.461998,108.263649,82.338036,66.924812,85.726463,105.156212,78.561180,36.519855,14.301670,9.842168,5.049596,8.420675,8.693404,9.964477,3.340504,0.857854,0.089257,0.000000,0.140496,0.080992,0.000000,0.261158,0.381819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602186.155000,4612495.550000,7220,4455,150.604965,154.332245,153.753723,143.580170,129.836380,119.200027,115.084312,109.877701,109.224808,109.547127,108.381836,120.993408,136.869431,151.365295,162.233063,172.051254,169.596710,160.671082,142.679352,127.051247,117.224808,113.654564,109.290924,85.505814,69.720680,87.968613,114.249603,87.877708,41.687626,14.151257,9.935556,7.289270,7.449600,7.628113,9.409931,3.651247,0.809093,0.260331,0.118182,0.073554,0.083472,0.004132,0.077686,0.183472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602212.555000,4612495.550000,7352,4455,117.377693,161.963654,158.046295,144.566956,128.087616,116.343811,114.765305,110.748772,108.550423,108.418198,109.120674,120.120674,140.459518,156.591751,169.765305,182.905792,184.616547,172.897537,151.178528,130.773560,119.004974,115.335548,106.872742,78.219849,62.269444,81.062820,103.963646,78.236374,35.335560,13.302496,9.715721,9.555387,8.336379,9.159518,8.539684,4.476867,0.630580,0.389257,0.000000,0.283472,0.031405,0.162810,0.295041,0.000000,0.000000,2.728100,0.000000,0.000000,0.000000,0.000000 -602219.155000,4612495.550000,7385,4455,107.766129,159.339661,159.232224,145.496689,128.108276,116.546295,114.810760,111.612411,109.959518,111.447121,112.108276,123.133072,142.389252,159.752884,173.199173,186.868591,187.331406,176.761154,153.141312,132.802490,120.769432,116.438858,110.009102,79.430588,62.488445,80.686790,102.653732,76.455383,34.628948,11.201668,10.000844,6.878524,7.247947,8.089270,6.762823,3.476040,0.390083,0.054546,0.103306,0.125620,0.058678,0.113223,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.035537 -602229.555000,4612495.550000,7437,4455,94.640518,151.574387,154.987610,140.772720,126.640503,116.681824,116.690094,112.871910,112.210754,114.045464,114.863647,126.037201,145.508270,162.904953,176.723145,189.285126,191.549591,179.508270,157.888428,136.814056,125.103317,120.673561,114.590919,85.061996,67.185966,84.227287,104.086784,76.351265,36.384323,13.169438,10.417375,8.703319,7.333899,7.246294,8.876873,4.182651,1.210746,0.314051,0.536365,0.055372,0.000000,0.000000,0.000000,0.000000,0.982645,0.000000,1.702480,0.000000,2.360331,0.000000 -602245.755000,4612495.550000,7518,4455,102.354553,149.848755,156.708252,141.385941,126.385971,116.898354,114.857033,110.733070,109.989265,111.419022,111.691742,122.625633,142.261978,157.328094,170.328094,182.295029,183.030579,173.038834,151.666931,130.361176,119.947945,115.419022,108.154556,80.832253,63.319851,81.559525,98.129768,71.369438,33.344646,13.230597,9.832251,5.774392,7.323982,8.795056,8.801668,3.976040,0.719837,0.181819,0.296695,0.009091,0.134711,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.230579,0.000000 -602271.155000,4612495.550000,7645,4455,109.557045,155.615723,158.863647,144.640518,127.665306,119.020676,117.128113,114.276878,113.053734,114.392578,114.731422,127.194229,146.698364,163.640518,176.888428,189.177689,190.921494,181.235535,156.392578,134.657043,122.929771,118.607452,113.045471,83.723160,65.706627,83.466957,99.648773,72.169441,31.681839,12.349604,10.276877,5.865301,8.636380,7.568610,7.016542,5.367777,0.504133,0.279340,0.563638,0.243802,0.183471,0.000000,0.000000,0.000000,1.425620,1.397521,1.278512,0.990909,0.000000,0.000000 -602284.555000,4612495.550000,7712,4455,105.744644,153.009109,155.612411,140.471909,126.083481,115.876869,113.876869,110.909927,111.025635,112.595879,113.885139,125.273567,144.372742,161.736374,176.504974,188.984314,190.091751,179.736374,155.372757,134.042160,122.984314,117.571091,112.645470,83.761169,64.017365,82.124809,97.868607,71.967781,32.190926,11.485141,10.240515,6.681830,7.151254,8.181005,7.932246,4.769429,1.485126,0.144628,0.090083,0.135538,0.209918,0.159505,0.000000,0.442149,2.635537,1.414050,0.000000,0.000000,1.184298,0.000000 -602289.755000,4612495.550000,7738,4455,115.499191,151.860336,153.959518,140.637207,124.414062,113.703316,111.595879,110.166130,108.976044,111.133072,111.480179,123.794228,143.885132,160.496704,175.265305,187.033890,187.430588,179.091751,155.438858,132.116547,121.860344,117.554558,112.372742,83.645470,64.389275,81.397537,98.504974,72.405800,33.562832,12.583488,10.215721,8.533071,9.035554,10.076874,9.784311,6.047118,1.212399,0.609919,0.632232,0.257852,0.445456,0.115703,0.170248,0.000000,5.347934,1.418182,0.000000,2.946281,0.000000,6.518182 -602293.355000,4612495.550000,7756,4455,108.842171,154.790939,151.138031,136.939682,123.319847,112.452087,109.542992,105.964478,105.262001,108.022331,108.675224,120.848770,139.584320,157.443832,172.402512,184.022339,185.782669,174.799194,153.162842,129.790924,118.096703,114.344643,109.245476,80.898376,61.700024,79.485153,95.468613,69.394241,32.559525,11.769440,9.931424,7.574393,8.124808,10.506626,12.078526,6.957034,1.717359,0.569423,0.433059,0.309918,0.368596,0.494216,0.309091,0.440496,1.368595,1.336364,1.071075,1.031405,3.305786,0.000000 -602298.155000,4612495.550000,7780,4455,127.668602,150.572739,147.200836,134.324814,117.176041,107.440506,103.820671,101.804138,100.870255,102.457031,103.729759,115.316536,134.878525,153.870255,167.514877,179.068588,181.159500,170.647110,147.217361,123.795876,113.465294,109.911575,104.936371,76.581001,58.019028,75.333061,92.696701,68.010757,31.333078,11.849605,9.539689,10.563651,10.052908,9.810760,11.979355,8.736376,2.492570,0.878516,1.325623,0.558679,0.177687,0.517356,1.159505,1.083472,2.495042,2.700000,2.132232,1.986777,1.132231,0.000000 -602303.955000,4612495.550000,7809,4455,136.763657,139.281830,121.857033,105.741341,93.162819,81.038864,77.576050,75.141335,74.124809,77.554558,77.397537,88.088448,104.551254,120.518188,132.063644,142.554565,143.174393,136.397537,118.323151,99.476868,90.633896,86.964478,84.154564,58.030594,40.714893,61.385963,83.777710,67.633072,30.843821,8.294230,7.650432,11.747949,11.026462,16.389273,20.992580,21.845470,10.574390,8.198354,7.258684,7.315707,8.110749,8.919839,10.862817,11.262815,47.376041,17.404961,22.818184,11.421490,15.521490,26.784298 -601253.155000,4612485.550000,2555,4505,180.898376,170.328110,138.369431,122.452087,107.617371,93.873573,94.286797,89.410759,89.460350,90.642166,90.468613,103.121506,122.154564,138.724808,152.113220,163.931396,165.493378,155.642136,134.898361,115.303322,105.055389,102.972748,97.881836,67.452087,49.303322,67.452087,89.757866,65.625641,28.229771,10.729769,8.898366,17.389273,10.714892,13.484312,19.142166,12.031421,4.143809,1.259508,1.418185,1.628104,0.777689,2.795046,3.423972,4.733064,51.998352,37.903313,17.452896,21.498354,20.879341,18.191736 -601256.955000,4612485.550000,2574,4505,173.264465,161.892563,138.586792,126.066132,109.371918,96.347122,95.272743,92.355385,91.909103,94.727287,94.115715,106.818199,125.876053,142.347122,156.933899,168.578506,169.107437,157.528931,135.264481,115.545471,104.603325,102.165306,96.272743,67.347122,48.570271,65.578529,83.809937,61.677708,27.014894,8.539684,8.752086,14.955389,8.609106,10.574394,13.790098,10.253733,2.522320,1.095871,0.673556,0.700001,0.745457,0.320662,0.771904,1.877688,20.107443,16.863638,13.205788,17.511574,14.054548,6.801654 -601262.555000,4612485.550000,2602,4505,139.787598,162.212387,140.419006,127.906624,111.881828,99.790916,99.377693,96.014061,96.162819,98.295052,98.460342,110.865295,129.501663,147.526443,161.733047,173.129745,174.071899,161.071899,139.518173,119.633896,108.683479,106.832245,99.700012,69.766129,51.509937,67.542992,84.286789,62.063660,27.008286,9.509933,9.063655,15.923983,9.041334,9.330593,9.867782,7.356208,2.404139,0.572730,0.466943,0.300827,0.277687,0.000000,0.395869,0.820662,17.887606,3.698348,5.129753,6.059505,7.711572,3.575207 -601270.155000,4612485.550000,2640,4505,145.630600,169.270279,147.691757,136.030609,119.815720,106.369438,107.278534,104.452087,104.419029,107.650429,106.650429,118.873573,137.311600,155.146301,168.964493,182.452087,180.592590,168.113251,146.005814,125.377701,114.972748,113.476875,106.063652,77.956215,59.427292,73.650429,88.493408,65.823982,29.815722,12.607456,9.642169,14.877704,9.405798,11.890925,14.169437,6.297531,1.804137,0.658680,0.366943,0.400827,0.144628,0.000000,0.679340,0.332232,3.066942,7.090910,4.045455,4.543803,6.016530,0.000000 -601281.155000,4612485.550000,2695,4505,158.071091,178.641342,154.409927,143.971909,127.062820,114.120674,112.988441,110.492577,111.476044,116.996704,113.211586,125.178528,142.633072,161.277695,173.806625,187.277695,186.814896,173.079346,151.376877,132.368607,121.054558,118.219849,111.509102,81.856209,64.757050,78.021500,90.831413,64.971924,29.690929,12.002498,10.137209,15.558695,9.390924,10.145472,10.436379,6.108274,0.904961,0.224795,0.166116,0.379340,0.114050,0.020661,0.896695,0.336364,6.456199,3.231405,5.917356,2.612397,2.041322,2.046281 -601297.555000,4612485.550000,2777,4505,123.065300,157.747116,152.763641,141.796692,126.887604,118.672737,116.565300,113.424805,114.656212,116.904144,118.449600,129.466125,146.565292,164.152069,176.466125,188.135559,189.234726,179.242981,155.904129,134.565292,125.821487,121.127281,115.581833,87.325638,69.358696,83.920677,94.532249,68.102501,30.490929,10.551257,10.507458,8.395881,9.766958,9.028113,10.804147,4.294219,0.885953,0.344629,0.312397,0.000000,0.020661,0.031405,0.000000,0.400827,1.092562,0.000000,0.000000,0.000000,1.166942,0.000000 -601320.755000,4612485.550000,2893,4505,103.545471,153.934708,153.273544,143.976028,130.215714,122.281830,119.678528,117.182655,117.819023,118.620674,120.885139,131.711578,149.554535,164.794205,177.695038,189.628922,191.430573,181.480164,157.893387,137.661987,126.637199,123.463646,117.918198,89.124809,71.802498,85.604149,95.521500,70.116547,31.562828,13.203324,10.719854,9.498361,9.446296,7.777698,9.757039,3.219841,1.022316,0.344629,0.236365,0.401654,0.129752,0.060331,0.000000,0.641323,0.000000,0.000000,0.000000,1.780165,0.000000,0.000000 -601335.755000,4612485.550000,2968,4505,105.014885,153.200851,155.481842,146.316559,133.142990,123.134727,121.655388,119.556213,119.490089,121.324806,123.655388,133.457047,150.936386,166.713242,178.688431,190.614059,192.754547,182.399185,159.209106,138.614059,127.622330,123.911583,119.027283,91.630592,72.498360,86.771088,96.663651,71.399193,32.258698,13.797539,10.820681,7.490921,9.516545,9.574394,9.661999,4.090917,0.621489,0.192563,0.263637,0.014877,0.115703,0.040496,0.142975,0.000000,1.164463,0.000000,0.000000,0.000000,0.000000,0.000000 -601342.355000,4612485.550000,3001,4505,107.993408,154.385956,157.642151,147.014069,133.840515,124.262001,122.146301,119.947952,121.385971,122.138031,124.890099,134.708282,152.129761,167.154556,180.989243,191.699997,193.303299,184.584290,160.220673,138.427292,128.873566,125.807457,120.063652,91.179359,72.683495,87.584312,97.749603,70.939690,33.080185,14.752086,10.914896,6.773566,8.361998,9.128939,9.578526,4.668602,0.718183,0.303307,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,1.102479,0.000000,0.871074,0.000000,0.000000,0.000000 -601349.155000,4612485.550000,3035,4505,103.063652,150.675217,156.063629,144.989243,130.617371,122.427292,120.179359,117.741341,118.311584,120.857040,122.245476,132.262009,149.038834,164.749573,178.022308,188.931396,190.972717,181.485123,157.972717,136.493393,127.220680,122.369438,117.336380,89.914894,71.377701,85.113243,94.832253,69.171089,31.295061,12.445473,10.666961,5.252903,8.531421,7.186788,8.576872,2.761163,0.627275,0.100001,0.109091,0.039670,0.105785,0.030579,0.211570,0.000000,0.000000,1.055372,0.000000,0.000000,0.000000,0.000000 -601358.155000,4612485.550000,3080,4505,97.967781,156.814056,153.896698,145.376038,132.739685,123.342995,121.888443,120.285141,120.111588,122.070267,123.334724,134.111588,150.028931,166.508270,179.194214,190.665283,192.268600,182.400833,158.623962,137.690079,126.929771,122.954559,118.500015,90.574394,71.243820,84.276878,95.690102,71.433899,31.566133,13.415720,10.772746,4.983480,6.808278,7.387615,7.747120,4.194221,0.738019,0.265290,0.088430,0.016529,0.033058,0.112397,0.000000,0.000000,2.323967,0.000000,2.031405,0.000000,0.000000,0.000000 -601364.555000,4612485.550000,3112,4505,111.064476,160.270279,155.303329,146.997543,134.080170,124.014061,122.303314,120.890091,120.857033,123.402489,125.633896,134.518188,150.683502,167.749619,181.625641,191.286804,192.857056,183.262009,158.600845,139.030609,128.096710,124.642159,118.972740,91.154564,71.807457,86.228943,96.419029,71.055389,32.708286,12.909934,10.815722,6.577696,8.162824,9.338855,8.818196,3.269427,0.497523,0.338844,0.543803,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,2.082645,0.000000,0.000000,0.000000,2.042149 -601367.955000,4612485.550000,3129,4505,113.406631,160.271103,155.791763,148.915726,135.519028,125.485962,124.163651,122.428116,121.560349,124.535553,125.824806,135.535553,152.056213,168.213242,181.998352,192.519012,194.552078,184.229752,161.031433,138.659531,128.312408,124.717369,119.800018,90.758690,73.130592,86.229767,97.585136,71.651253,32.031425,13.719027,10.890928,6.547945,10.087618,8.542162,8.213236,3.246287,0.537192,0.304960,0.055372,0.000000,0.114877,0.042975,0.415703,0.000000,0.000000,0.000000,0.861157,0.000000,0.000000,0.000000 -601372.555000,4612485.550000,3152,4505,105.423988,159.710739,157.842972,149.694214,135.231415,124.752083,122.801666,120.710762,120.900841,124.429771,124.760345,134.314072,150.652893,167.809921,180.396698,191.958679,193.644623,183.628098,160.256195,138.561996,128.082657,124.181831,119.090927,90.644646,72.479355,85.504150,96.768608,70.413239,30.685970,13.142164,10.826465,4.904141,6.797533,6.708275,7.433070,2.924799,0.452894,0.094215,0.152893,0.157025,0.043802,0.000000,0.000000,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601379.155000,4612485.550000,3185,4505,153.844650,191.084290,172.505783,162.514053,146.208298,132.373566,133.257874,130.976883,130.728943,137.547119,132.902496,144.505814,161.084305,179.175201,193.588425,205.489243,204.373550,190.596695,168.952072,148.117371,138.150421,134.687622,131.563660,99.571922,83.538864,100.133904,105.985138,73.034729,35.679363,16.490101,11.960349,11.461998,9.607455,8.685966,11.722327,5.397531,0.736365,0.152067,0.265290,0.020662,0.371075,0.000000,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601383.755000,4612485.550000,3208,4505,145.623169,186.747131,169.350433,161.895905,143.763657,131.598373,131.871094,130.300842,130.457870,136.449600,132.449600,143.061172,159.011612,177.631424,191.970261,204.598373,203.507462,190.333908,167.871094,147.251266,135.862823,133.937210,129.127289,98.838036,81.193405,96.424812,104.242996,73.970268,33.763657,13.831423,11.738862,10.562826,6.914890,9.381832,8.903319,5.055382,0.672729,0.405786,0.089257,0.137191,0.000000,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601388.355000,4612485.550000,3231,4505,137.897552,189.930588,170.285980,160.583496,145.922348,132.360352,132.459518,131.525635,130.657867,136.715729,133.385147,144.839691,161.500854,178.500854,193.186783,205.004990,205.360367,192.839676,170.178543,148.847961,138.004990,135.434738,130.327301,99.757034,83.732254,97.856216,104.492569,76.864487,36.583492,16.066133,11.847953,12.612412,10.221504,11.842165,11.310759,5.057860,1.300002,0.331406,0.152067,0.000000,0.224794,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.155000,4612485.550000,3245,4505,138.971909,188.178528,171.261169,162.757034,146.442993,133.104141,132.633072,131.236374,131.062820,136.542160,133.856201,144.029770,161.195053,179.376877,192.500839,205.790100,205.889267,191.897537,168.955383,148.847946,137.492584,135.352081,129.872742,100.434723,83.112419,97.161995,105.046295,75.657875,36.087620,15.807456,11.806630,13.008281,9.263654,11.566959,10.509933,5.388440,1.081821,0.661158,0.263637,0.046282,0.010744,0.000000,0.082645,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601395.555000,4612485.550000,3267,4505,129.306625,183.364471,170.554535,160.339661,144.554565,131.323166,130.347961,130.033905,130.951263,134.546295,131.885147,143.182663,160.141342,177.653732,191.265305,204.190903,204.215698,191.604126,167.149582,147.942993,136.174393,133.785965,128.736389,99.182663,81.934731,95.207458,103.967789,74.058701,36.017372,15.128943,11.703326,12.596710,8.563653,11.661173,11.393404,4.700009,1.178514,0.086777,0.211571,0.061984,0.000000,0.000000,0.000000,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000,0.000000 -601398.755000,4612485.550000,3283,4505,137.271103,181.362000,166.304153,158.568619,142.717377,129.973572,131.031418,129.064484,129.262817,133.221497,131.808273,142.593414,160.221512,176.775223,190.758698,203.998352,203.593414,192.204987,167.155396,146.180191,135.783493,132.932251,129.163651,97.965286,81.362000,94.097534,104.428101,74.890923,34.750431,14.195061,11.742167,9.806626,7.213240,9.442992,9.020676,4.238852,0.446282,0.200001,0.054546,0.000000,0.001653,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.755000,4612485.550000,3298,4505,125.093407,179.820663,167.622314,158.043808,142.919846,131.019012,131.837204,129.266953,129.093399,133.266953,131.481827,143.762817,160.853729,177.382645,190.771088,202.985962,204.622314,191.572739,167.977692,146.539673,136.184311,133.729752,128.390915,98.870262,81.547958,95.357864,103.415718,75.085144,34.564480,15.232249,11.671920,7.425633,9.366134,9.017371,8.408278,4.006620,0.512398,0.000000,0.065289,0.000000,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601405.155000,4612485.550000,3315,4505,127.712418,179.026474,165.290924,158.009933,143.538864,132.456207,131.530579,129.357025,130.447937,133.199997,132.514053,145.224823,161.282654,178.117386,192.109116,203.414902,204.266144,193.332260,169.241333,146.885956,137.307465,133.621490,129.927277,100.009926,81.927292,95.208282,104.530586,74.340515,36.414894,15.374399,11.811590,10.848776,9.118198,10.685966,10.854561,5.419844,0.715704,0.053719,0.169422,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601408.555000,4612485.550000,3332,4505,120.243820,176.061996,165.673569,157.119858,142.210754,130.326462,130.301666,129.648773,128.508286,131.533081,131.590927,142.921509,159.888443,177.681824,190.202484,202.086777,203.838837,191.400833,167.615723,145.946304,135.863647,133.136383,128.227295,97.466957,80.657043,93.888443,103.483490,75.028938,33.524815,14.514068,11.657043,9.152081,8.600017,8.066957,8.342161,4.243809,0.544629,0.185951,0.233885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.755000,4612485.550000,3368,4505,122.504982,174.182648,167.033875,157.331421,143.744644,132.496704,130.670258,129.695053,130.447113,132.819016,132.405792,143.290100,162.108276,177.810745,191.066956,203.290100,205.066956,194.058685,167.794235,147.248779,136.265289,133.670258,128.645462,98.496704,81.835548,94.232246,103.967781,74.157875,36.521507,15.128119,11.695062,9.850429,9.100843,9.017370,8.752083,3.954554,1.362812,0.161158,0.000000,0.007438,0.002479,0.000000,0.000000,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.755000,4612485.550000,3383,4505,129.506622,174.076859,169.060333,159.192566,145.316528,132.390915,131.861984,130.027283,130.002487,132.283478,132.341324,144.779343,162.101654,178.671906,192.638840,204.423981,205.746292,193.580978,167.919846,147.729752,136.795868,133.060333,129.300003,98.837204,81.985954,94.068611,103.663651,75.349602,35.043819,14.566133,11.754564,8.281831,8.950429,9.659519,9.081830,3.697529,0.338844,0.057025,0.131405,0.136364,0.001653,0.000000,0.048760,0.000000,0.000000,0.000000,2.064463,0.832232,1.323967,0.000000 -601423.755000,4612485.550000,3408,4505,108.988449,170.079346,168.674393,156.575226,143.054535,131.971909,130.996704,128.418198,129.327286,131.674393,132.046295,143.145462,160.360336,176.525635,190.591751,202.591751,203.558685,191.657867,169.062820,145.666107,135.244644,132.385132,126.963646,98.633072,80.393410,93.360344,102.294228,75.467789,34.690929,14.447951,11.542168,9.757866,8.850429,9.118198,8.241338,4.881829,0.643803,0.894216,0.289257,0.054546,0.000000,0.000000,0.065290,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.155000,4612485.550000,3425,4505,119.879356,177.573563,170.119019,160.276031,145.135544,135.515717,133.904144,131.879349,130.986786,133.763641,134.672745,145.862808,164.193390,179.705795,193.557022,205.829758,207.176865,195.284302,170.953720,148.945465,137.945465,135.309097,130.672745,101.127281,82.871094,96.185135,105.590096,78.119026,37.656223,16.085968,11.879357,8.825631,9.932250,8.999187,11.763653,5.322325,1.295044,0.528927,0.176860,0.000000,0.019835,0.000000,0.085951,0.185124,1.289256,0.000000,0.000000,1.025620,0.000000,2.261157 -601429.955000,4612485.550000,3439,4505,119.609924,169.510773,171.039688,159.502502,145.312424,133.047958,133.089279,131.552094,131.543823,133.502502,135.105804,145.700851,163.576889,179.163666,192.717377,204.932236,206.642975,195.502502,169.948776,147.081009,137.378540,134.510773,129.254562,99.833069,82.667793,94.742165,106.618202,75.808289,35.056217,15.542167,11.750433,8.780179,9.337207,10.157040,10.397535,4.076042,0.500827,0.161984,0.374381,0.000000,0.000000,0.098347,0.000000,0.042149,0.000000,0.000000,1.761984,0.000000,1.217355,0.000000 -601433.955000,4612485.550000,3459,4505,119.404976,167.851257,169.842987,158.264481,142.702499,134.942169,133.140518,131.603317,131.619858,133.239685,134.024811,145.801666,163.727295,178.925629,193.008286,205.462814,206.892563,195.454559,170.181839,147.975220,138.462830,135.429764,129.818192,100.330589,82.694229,95.239677,105.413231,76.644646,35.223160,15.813242,11.801671,8.317369,8.354561,8.932247,9.676047,4.906622,0.590910,0.276860,0.064463,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.155000,4612485.550000,3475,4505,107.453735,169.362808,173.065292,159.585953,146.057022,135.784302,134.362823,133.230591,132.776047,134.404144,136.371078,147.726456,164.776031,181.048767,194.891739,206.767776,208.379349,196.734711,172.181000,150.561157,139.478516,135.098373,130.900024,102.577705,83.726463,96.296715,106.767792,77.081848,37.742992,15.591754,11.900019,8.745468,9.104976,10.935554,11.966132,5.633066,0.769423,0.504959,0.423141,0.000000,0.073554,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.755000,4612485.550000,3488,4505,119.860344,172.356216,167.992569,159.422333,142.810760,132.579346,133.604141,131.042160,130.331421,132.364471,134.182663,145.579346,162.761169,178.852081,193.290100,204.802490,207.339676,195.290100,171.257034,148.562820,138.934723,135.810760,129.554565,100.042160,82.182655,96.248772,105.604149,75.223976,36.645470,16.109108,11.777706,9.374394,9.695058,10.676049,9.627288,5.494225,0.514877,0.313224,0.020661,0.145455,0.000000,0.000000,0.000000,0.109918,0.000000,0.000000,0.000000,1.080165,0.000000,0.000000 -601442.355000,4612485.550000,3501,4505,119.242165,167.151245,170.300003,156.076859,144.333069,134.085144,133.374390,131.407455,130.357864,132.985962,134.820679,145.498352,163.184311,179.655380,193.911575,205.052078,207.473541,196.721497,170.870255,150.010757,138.936371,134.969437,130.390930,101.002495,82.969437,95.919846,106.250427,77.250427,36.258701,15.455391,11.853739,9.305799,8.433902,8.680182,8.902494,3.951247,0.697522,0.278513,0.201653,0.205785,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.197521,0.000000 -601445.955000,4612485.550000,3519,4505,110.654556,167.753723,167.894226,156.968628,142.175232,133.034729,132.357040,129.770264,130.059525,131.819855,134.026459,145.018204,162.968597,178.695877,192.390091,203.952072,206.761993,194.943817,170.596710,149.051270,137.819855,134.662827,129.472748,100.505806,82.100845,95.051254,104.365311,75.332253,36.935555,15.449605,11.770267,8.046294,8.189274,9.193406,9.496710,3.823975,0.538017,0.099174,0.328926,0.009918,0.090910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.355000,4612485.550000,3536,4505,118.068604,164.820679,168.977707,158.457047,144.217377,134.828934,133.390915,131.861984,132.258682,133.911575,135.911591,146.828949,164.911591,180.630585,194.647125,207.126450,209.250427,197.564484,172.539688,150.944656,140.035553,136.837219,131.754547,101.605797,83.729767,97.746292,106.473572,76.820686,37.547958,16.145472,11.977704,9.841335,9.080182,9.526462,9.456212,4.579349,0.709919,0.187604,0.058678,0.000000,0.000000,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,1.190083,0.000000 -601456.955000,4612485.550000,3574,4505,120.412415,165.685150,168.296707,157.842163,144.990921,134.338043,133.189270,132.247131,132.569443,134.784317,136.164490,147.709930,165.156219,181.817368,196.395889,208.048782,210.842163,198.594238,174.354568,151.792587,141.354568,137.916550,133.081833,103.106628,84.238853,98.751259,107.900017,79.023987,36.734730,14.473571,12.098366,9.403319,9.554562,10.563652,10.631420,4.737199,0.738018,0.895869,0.000000,0.016529,0.146282,0.000000,0.000000,0.229753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612485.550000,3587,4505,128.361160,164.708298,167.493408,156.848785,142.385971,133.931412,133.220673,132.080170,132.402496,134.319839,135.427277,146.518204,164.352921,181.146301,195.848785,207.171097,209.931427,198.807465,173.766144,151.857056,140.485138,136.939682,132.063644,102.675217,83.055382,97.733070,106.807449,77.700020,36.394238,14.996711,12.005803,7.839682,9.310760,11.411587,7.934724,5.714886,1.019837,0.097521,0.242150,0.000000,0.000000,0.000000,0.000000,0.000000,1.287603,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.955000,4612485.550000,3604,4505,109.232246,166.182663,167.653732,157.124817,142.860336,134.240509,131.876877,130.934738,130.959518,133.174408,135.257050,146.496704,163.926468,180.504974,195.108276,206.711578,207.645462,197.447113,172.670258,149.909927,140.323151,136.339691,131.463654,101.728111,83.405807,97.835548,106.744644,76.438866,37.190929,15.377704,11.951259,7.666956,8.850430,9.248775,9.556214,3.749595,1.004960,0.433059,0.190083,0.071901,0.032232,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.955000,4612485.550000,3624,4505,115.586784,162.271088,168.188431,155.461166,143.626450,133.758698,132.915710,131.138855,131.039688,133.659515,135.874390,146.800003,164.023148,180.361984,195.626450,207.824799,209.155380,198.609924,173.428101,151.626450,140.328934,137.006622,132.527283,101.899185,84.469437,98.874397,108.477699,77.147133,36.188454,16.360350,12.047954,8.873569,9.175224,9.782662,9.500016,4.028109,1.168597,0.347935,0.131405,0.190084,0.000000,0.000000,0.000000,0.000000,0.000000,1.255372,0.000000,0.000000,0.000000,0.000000 -601474.555000,4612485.550000,3662,4505,105.877708,156.943802,166.373550,156.704132,144.042984,134.497543,132.828110,130.869446,131.580185,133.084320,135.150436,146.249573,164.836365,181.629745,195.348770,208.001663,210.952072,199.257858,174.530579,150.803299,141.315720,137.795044,132.654556,103.051254,83.687622,99.563652,108.431427,78.001671,36.580189,15.088448,12.059523,8.163650,8.283487,8.166957,8.360345,3.787611,0.841324,0.178513,0.069422,0.068595,0.000000,0.323967,0.000000,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.155000,4612485.550000,3680,4505,108.358688,161.176865,168.879364,157.846298,144.052917,134.747116,133.284302,131.804977,132.350418,134.028107,135.796707,147.747131,164.664490,182.887604,196.433060,208.846283,210.490906,199.846283,175.482651,152.871094,141.755386,138.416550,133.309097,102.904144,84.581833,99.300835,108.011581,77.234718,35.780186,15.464480,12.119026,7.782659,8.741339,9.292578,10.001668,4.414057,0.923143,0.000000,0.419835,0.001653,0.008265,0.000000,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.755000,4612485.550000,3703,4505,120.212410,162.526474,169.154572,156.262009,143.104965,134.212402,133.708267,130.848770,131.700012,134.592575,136.419022,147.757858,166.138046,183.104950,198.650406,209.567764,212.666931,200.997513,175.708267,152.914902,142.361160,139.245468,134.245468,103.063644,84.658684,98.757858,109.361168,77.906631,37.022331,14.571917,12.204150,7.799185,8.855388,9.330595,9.495882,4.542158,0.530580,0.132232,0.128099,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.155000,4612485.550000,3730,4505,107.691750,163.352905,169.187607,156.741333,146.080170,136.534714,134.815720,133.328110,132.914886,135.121506,137.394226,148.559509,166.733063,183.361160,197.981003,211.080154,213.427261,203.311584,176.261993,154.617355,143.030594,140.435547,134.881836,104.848778,85.716545,101.286797,110.551254,78.518196,38.501675,17.176876,12.262002,8.896708,9.529768,10.158694,9.493403,4.657861,0.667770,0.091736,0.060331,0.083472,0.038017,0.179339,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.955000,4612485.550000,3759,4505,109.183479,159.919022,169.067780,157.166946,145.720673,137.423157,135.241333,133.357040,134.679352,136.340500,138.133896,149.481003,167.166946,182.778519,198.861160,210.505798,213.819839,202.076050,175.514053,154.695877,143.679352,140.869431,136.018188,105.547119,86.233070,101.778519,110.844635,80.158699,38.431427,16.696711,12.365308,8.949600,10.438033,9.278528,10.146295,4.419843,0.592564,0.386778,0.136364,0.072728,0.018182,0.000000,0.000000,0.044628,1.291736,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.155000,4612485.550000,3780,4505,108.830597,164.657043,168.285141,157.714890,145.805817,135.995880,133.797531,133.004150,133.285141,136.219025,137.623993,148.797546,166.673569,183.169434,197.632248,210.136383,212.475220,202.235550,176.500015,154.392578,143.549622,140.376068,135.409103,104.723160,84.508278,100.954559,110.235550,80.665306,37.475231,15.259521,12.309936,6.595052,9.082661,8.362825,9.216543,4.821497,0.847935,0.114876,0.209918,0.210744,0.000000,0.000000,0.080992,0.000000,2.740496,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.555000,4612485.550000,3802,4505,112.358688,160.135559,165.573578,154.482666,141.672745,133.193405,131.590088,130.061172,130.242981,133.300842,135.408279,146.738861,164.639694,180.821472,195.499161,208.895874,209.532242,199.292542,173.573563,150.986801,140.209930,136.953735,131.581833,102.383484,82.052902,98.276047,108.085960,77.234718,35.003326,13.603324,11.962003,6.961996,6.937205,7.723983,7.928941,3.145461,0.587605,0.285125,0.209091,0.000000,0.000000,0.000000,0.071075,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.555000,4612485.550000,3837,4505,111.915726,167.262817,167.552078,158.560333,147.047943,137.940506,135.899200,133.651260,134.957047,136.833069,138.791748,149.452896,167.932236,184.890915,199.866119,211.403305,213.709091,203.080994,178.419846,155.221497,143.543808,139.560333,136.709091,105.221504,85.816544,99.932243,111.262825,80.204971,38.609940,16.823160,12.428119,7.036375,10.101669,10.664481,8.367782,3.122322,0.828928,0.109918,0.150414,0.000000,0.042149,0.000000,0.006612,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.155000,4612485.550000,3855,4505,113.623978,165.268600,168.037186,158.533051,146.442154,136.400833,135.359497,133.929764,133.781006,136.747940,138.342972,149.392563,167.640503,184.161163,199.599167,210.756195,213.863632,202.326447,177.533051,153.979340,144.053726,141.326447,135.318176,106.342995,85.913239,99.987610,111.293404,80.227287,39.359524,17.266960,12.301671,7.710755,9.407454,10.159519,10.141337,3.209924,0.683473,0.003306,0.219835,0.006612,0.015703,0.000000,0.000000,0.072727,0.000000,0.000000,1.046281,1.018182,0.000000,0.000000 -601518.355000,4612485.550000,3881,4505,119.539680,171.754562,169.390930,160.928116,146.266953,137.895050,135.481827,134.498352,134.159515,138.250427,140.490082,151.390915,168.680191,185.804153,199.762833,212.473557,214.936371,203.895050,178.374405,154.638855,143.473557,141.217361,135.390915,105.275215,87.589272,100.952896,110.457031,81.151253,39.374401,15.999192,12.308283,8.247121,9.962001,10.871917,10.729768,4.929761,0.905787,0.298348,0.012397,0.139670,0.000000,0.000000,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.555000,4612485.550000,3897,4505,119.515724,164.284317,167.962006,159.639694,146.697540,137.771927,135.532257,134.846298,134.044647,137.309113,137.730591,150.052917,167.300842,184.705795,198.366943,211.358688,214.168594,203.052902,177.185120,154.143814,143.135559,140.325638,134.945480,104.796715,84.681007,99.681007,109.366959,80.887619,37.590103,15.994233,12.267787,6.642160,9.103323,9.419024,9.957866,4.040504,0.706613,0.140496,0.063637,0.000000,0.008265,0.000000,0.000000,0.189257,0.000000,0.000000,0.000000,1.114876,0.000000,0.000000 -601524.755000,4612485.550000,3913,4505,116.178535,165.393402,167.219849,159.021500,144.963654,135.864471,133.889267,133.343811,133.451248,136.963654,137.864471,148.376877,166.624802,184.269440,198.269440,209.104141,211.368607,202.013229,176.285965,153.715714,143.029770,137.872742,133.963654,104.476051,85.765312,98.690933,108.352089,80.971924,37.765305,15.406630,12.178532,6.840508,9.666960,9.140512,9.036380,3.538851,1.025622,0.007438,0.200001,0.007438,0.009918,0.000000,0.086777,0.076033,1.349587,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.355000,4612485.550000,3941,4505,125.987610,161.161194,166.309952,160.144653,145.938034,136.367783,133.971085,133.599182,133.219009,136.524811,138.590927,148.433899,166.070282,183.698380,197.417389,209.425659,212.466980,200.747971,175.657059,153.152908,140.789276,138.466965,134.318192,103.690094,83.070274,98.400833,108.433891,79.524818,38.739689,14.891753,12.210763,5.573564,6.879356,10.519025,7.805799,4.463645,0.283472,0.239670,0.064463,0.000000,0.003306,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.755000,4612485.550000,3968,4505,116.609100,167.906631,167.857056,159.981018,147.691757,136.286789,134.385956,133.865295,133.923157,137.402512,137.947952,149.071930,165.823990,183.468628,198.129761,209.799179,212.138031,200.757858,175.567795,153.005814,142.509949,138.526474,132.427292,103.344643,85.220680,98.542992,108.518196,79.460350,36.121506,14.768613,12.038863,5.900836,9.393405,8.620677,7.962824,3.925628,1.004134,0.185951,0.004959,0.000000,0.000000,0.000000,0.047934,0.062810,0.000000,0.000000,1.109918,0.000000,1.186777,0.000000 -601538.355000,4612485.550000,3981,4505,121.404144,170.610764,168.883484,160.346298,146.404144,136.784317,135.106628,134.668610,134.321503,136.949600,138.759521,150.032257,167.057037,183.924820,198.057037,210.734726,212.751266,202.288452,176.412415,153.032257,141.858704,138.676880,132.536377,104.412407,85.569435,98.131416,109.123154,78.238853,35.966137,15.964480,12.048779,6.116538,8.551255,8.921505,7.364476,3.261164,0.807440,0.271075,0.000827,0.075207,0.003306,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.555000,4612485.550000,3997,4505,118.630592,174.151260,169.994232,163.225647,148.498367,137.225647,136.035553,135.622330,134.415710,138.250443,139.961182,150.324814,166.895065,184.572754,198.638870,210.820679,213.506638,202.663666,177.490112,153.283493,141.688446,139.630600,133.936371,104.283485,84.341339,98.349602,109.837204,78.605797,39.142990,15.430596,12.176052,5.190091,8.432248,8.058694,8.583485,3.285957,0.658679,0.096695,0.283472,0.000000,0.015703,0.000000,0.023967,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.955000,4612485.550000,4014,4505,128.095886,170.095886,169.823151,160.831421,147.616547,138.376877,136.277695,135.467789,135.178528,138.343811,139.013229,150.798355,167.517365,184.236374,199.715714,211.071091,212.790100,202.831421,176.823151,153.938858,142.038025,139.715714,134.145462,104.740509,84.219856,98.856209,109.781830,80.335556,37.889278,16.038036,12.195062,6.064472,9.352909,8.683488,8.205797,3.339678,1.034713,0.245455,0.269422,0.000000,0.028926,0.000000,0.000000,0.090910,0.000000,1.023141,0.000000,0.000000,0.000000,0.000000 -601552.155000,4612485.550000,4050,4505,114.796707,176.804962,171.069427,162.052902,149.523972,138.532242,136.565292,136.317352,135.094223,138.821487,139.209915,150.590088,167.003311,185.061157,199.449585,210.945465,213.061157,201.738846,175.978516,153.697525,142.052902,137.937195,133.309097,103.557037,84.722336,98.647942,108.532242,80.697540,36.904152,15.946301,12.119028,4.987612,7.080181,7.935553,8.520675,2.729759,0.685952,0.214877,0.000000,0.005785,0.054546,0.000000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.955000,4612485.550000,4079,4505,126.544640,180.404144,172.065308,163.164490,149.602493,139.032257,137.238861,136.420685,135.511597,140.437210,139.883484,150.123154,166.990921,185.271927,198.817368,211.197540,212.685150,201.462006,175.519852,152.197540,142.412415,137.709930,133.900009,103.478523,83.395882,97.238853,108.362823,79.412407,37.933079,15.207457,12.172747,5.089265,8.785969,8.304975,7.857037,3.201661,1.061159,0.211571,0.065290,0.078513,0.042976,0.000000,0.015703,0.020661,0.000000,0.000000,0.000000,0.000000,1.356199,0.000000 -601560.955000,4612485.550000,4094,4505,123.542992,181.642151,173.427277,166.419022,151.410751,140.534714,138.939682,137.914886,137.344635,141.650421,141.278519,151.600830,169.534714,187.766129,201.228943,214.047119,214.063644,204.014053,177.485138,153.956207,142.906616,139.435547,135.518188,104.014069,85.088448,99.138031,109.030594,79.700027,38.526463,16.109936,12.319854,6.057034,9.342165,7.916545,8.120673,3.566950,0.957853,0.219010,0.431406,0.025620,0.164464,0.000000,0.017356,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.955000,4612485.550000,4109,4505,118.498367,184.638855,173.142975,166.680176,152.795868,138.985962,137.704971,138.118195,136.448776,140.853729,140.638855,151.291748,168.233887,186.399185,200.547943,212.068619,214.349609,203.068619,176.969421,153.539673,143.258682,138.027283,134.118195,103.944641,84.523155,98.374397,107.457039,80.870270,37.200844,16.308283,12.192580,5.923150,7.614065,8.714892,8.915716,4.454554,0.809093,0.237191,0.061157,0.011570,0.035538,0.000000,0.072727,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.555000,4612485.550000,4122,4505,119.555389,173.811584,171.910751,161.166946,146.439682,135.489273,134.786789,132.671082,132.125626,134.646286,135.555374,147.282654,163.910751,181.406616,195.811584,206.390091,207.885956,196.770264,170.902496,148.761993,137.687607,134.828110,130.200012,100.332245,81.976875,95.803322,106.084305,76.191750,35.224815,13.525638,11.836383,9.147120,8.765304,9.616543,7.915717,3.080171,0.642150,0.069422,0.000000,0.000000,0.012397,0.000000,0.057852,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.755000,4612485.550000,4138,4505,118.060333,171.994217,171.787613,161.019012,146.043808,135.498352,135.027283,133.176041,132.614059,134.118195,135.969421,147.440506,165.423981,181.605789,196.374374,206.754547,208.142975,196.399170,170.200836,148.870255,138.498352,135.704971,129.300003,101.399178,83.423973,96.266945,106.564468,77.333069,36.671925,16.904974,11.754565,10.430593,8.955386,9.123154,11.062826,4.597528,0.996697,0.292563,0.067769,0.000000,0.000000,0.000000,0.071075,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612485.550000,4154,4505,126.398361,175.373550,172.638016,161.390076,147.299164,136.819839,135.819839,133.142166,133.712418,135.117371,136.761993,147.968597,165.861145,182.348755,196.332230,208.175201,208.836365,196.662796,171.348755,148.935532,139.447922,135.522324,130.381836,101.059525,84.332253,97.175224,106.183487,76.927292,37.745480,17.371920,11.852913,9.655388,10.685143,10.447124,10.646296,4.431414,1.178515,0.416530,0.335538,0.104133,0.127273,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,1.293389,0.000000 -601576.355000,4612485.550000,4171,4505,126.480186,171.389267,172.091751,160.579346,144.356216,134.356216,133.612411,132.133072,131.347961,133.901672,135.199188,145.273560,163.785965,180.116547,193.000839,204.554565,206.083481,194.331421,169.174393,147.637207,136.480179,133.571091,128.009109,99.455391,82.240517,95.488449,105.042168,75.133080,36.017376,15.026465,11.637210,9.997536,8.600015,8.493403,9.126460,4.465298,0.700828,0.219835,0.020661,0.055372,0.047934,0.012397,0.000000,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.955000,4612485.550000,4219,4505,115.167786,182.870270,173.200851,160.589264,146.019012,134.969437,134.423981,132.589264,133.878525,135.630600,134.903305,147.614059,164.490082,181.076889,196.143005,206.787628,209.390915,195.680191,169.961182,148.035538,137.498352,134.994217,130.390930,100.680183,81.547951,94.283485,104.523148,74.721504,35.514896,15.134729,11.853738,8.589269,8.373570,8.931420,9.925635,3.709923,1.006613,0.233885,0.122314,0.000000,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.955000,4612485.550000,4234,4505,117.194221,186.739685,175.772751,164.582657,148.954559,137.781006,136.665298,133.640518,134.764481,136.863647,137.450424,149.475220,166.500015,183.822327,197.706635,208.541321,209.805786,197.185974,171.417374,148.880188,138.152908,136.053741,132.227295,101.004150,83.433899,95.904976,107.781006,76.747948,36.533077,17.134727,12.020680,9.485964,9.608281,12.140512,10.038857,3.930587,1.161160,0.543803,0.482645,0.052066,0.105785,0.000000,0.126447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.355000,4612485.550000,4266,4505,111.752914,183.905792,175.162003,161.600006,147.963654,135.715714,135.434723,134.575226,134.451248,137.211578,135.823151,148.203323,165.162003,182.294235,195.492569,207.360336,206.558685,193.690918,168.905792,147.021500,136.666122,133.600006,128.327286,99.087616,82.228111,94.327286,104.773567,75.765320,35.748775,15.222332,11.666135,8.940512,8.722329,10.039685,9.461999,3.908273,0.584299,0.325621,0.174381,0.128926,0.009918,0.000000,0.007438,0.042975,1.400000,0.000000,0.000000,1.110744,0.000000,0.000000 -601598.755000,4612485.550000,4283,4505,123.380180,187.520676,174.214890,163.256210,147.925629,135.404968,135.074402,133.892578,133.685974,137.685974,135.983490,146.760345,164.413239,181.619858,195.074402,206.636383,207.000015,193.107452,168.355392,146.305801,135.165298,133.099182,127.818199,98.264481,81.702492,94.462830,104.735550,74.586792,35.958698,13.961175,11.619854,9.126461,9.170261,10.938859,9.408278,4.446289,1.000828,0.183472,0.072728,0.107439,0.071901,0.000000,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.755000,4612485.550000,4303,4505,109.623161,184.125626,171.439682,163.720673,148.604965,133.902496,135.547119,134.935547,133.613235,137.431412,135.431412,146.563644,164.803314,181.142151,195.191727,205.679352,206.076050,192.009918,166.993393,146.175217,134.885956,132.902496,127.381828,97.414894,81.431419,95.166962,104.497536,75.224823,35.968616,14.569439,11.580183,10.135551,8.029766,9.258692,10.308279,3.368603,0.723143,0.250414,0.282645,0.070248,0.136364,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.555000,4612485.550000,4317,4505,129.882660,184.640503,174.657028,166.161163,148.648773,136.723160,136.020676,135.012405,135.177704,138.830597,135.921509,147.690094,164.260330,182.103302,196.136368,206.714890,206.962830,193.078506,168.830582,147.582642,136.144638,133.863647,128.863647,98.607452,82.301666,95.549606,104.566132,76.326462,36.070267,14.692580,11.714894,11.246298,7.687617,9.923156,10.427287,5.338025,0.976862,0.518184,0.039670,0.072728,0.000000,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.955000,4612485.550000,4359,4505,137.373566,192.811569,176.018173,168.828094,150.712387,136.836365,137.423141,136.257858,135.679352,140.712387,137.381805,148.555359,165.117355,181.902466,195.852890,207.166931,206.233047,191.877686,166.753708,146.770248,135.026459,132.299179,126.836372,97.671089,80.836380,94.778534,102.662827,72.762001,36.018204,15.262830,11.530599,10.586794,7.866955,9.123981,9.386792,3.893396,0.597523,0.298348,0.303306,0.011571,0.000000,0.105785,0.222314,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.155000,4612485.550000,4375,4505,151.051270,197.638031,179.266144,171.960358,152.935562,139.687622,139.819855,136.861160,138.233078,143.795074,138.464493,149.762009,166.398376,183.737213,198.150421,209.042984,207.695877,191.629761,168.828125,148.274399,136.133911,133.125626,129.290924,98.629761,82.175224,97.009926,104.869431,74.770271,34.828117,16.209108,11.753737,12.675222,8.014890,9.131418,9.053733,4.453729,0.920664,0.354547,0.204133,0.000000,0.000000,0.000000,0.199174,0.047108,1.415703,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.555000,4612485.550000,4402,4505,163.811584,200.423141,182.109085,171.464478,153.571915,139.571915,138.547119,136.993393,137.332245,143.423157,137.596710,148.753723,164.745468,182.241333,196.547104,209.381805,206.233047,190.497513,167.357040,146.786789,134.770264,131.927277,129.836380,97.357033,80.233070,96.737198,102.712410,71.927284,33.588451,13.662000,11.803325,11.548773,8.671914,8.547949,9.097534,5.073564,0.340497,0.483472,0.082645,0.114050,0.000000,0.000000,0.003306,0.046281,0.000000,0.000000,1.223141,0.000000,1.457851,0.000000 -601626.355000,4612485.550000,4421,4505,114.011589,162.961990,168.408264,159.813232,145.168594,135.375214,133.077698,131.928940,131.639679,132.697525,134.945465,146.333893,163.176865,178.970245,192.400009,202.408264,202.614883,191.755371,165.490906,143.474396,133.656204,130.490921,124.763649,97.672745,79.928955,92.945473,101.152084,73.416557,35.978535,14.631423,11.342168,6.213236,8.619022,9.978527,7.885965,5.397529,0.547110,0.239670,0.113223,0.138017,0.265290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.355000,4612485.550000,4441,4505,112.090927,161.811584,171.952072,160.571915,144.728943,135.671082,133.778534,131.638031,130.877701,132.828110,133.786789,145.547119,162.158691,178.613235,192.522308,202.985123,203.233047,190.092560,165.059509,143.803314,133.894226,130.547119,125.018196,97.018196,78.803322,94.183487,100.340515,74.431419,36.092583,15.255390,11.365308,6.657863,9.420676,9.222326,8.959518,4.232238,0.749589,0.686779,0.590084,0.001653,0.086777,0.000000,0.105785,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,2.213223 -601633.555000,4612485.550000,4457,4505,112.247116,162.759521,171.098343,160.891739,147.676880,137.462006,135.172745,134.147949,133.668610,135.395874,136.486801,147.751266,164.966125,179.643799,194.147934,204.395874,204.040512,191.569427,166.528107,145.106628,133.933075,131.875214,127.172737,99.511581,81.536377,95.833893,103.007446,76.668610,37.048779,16.307455,11.561176,7.050426,8.070263,8.079353,8.066130,3.507445,0.884300,0.767770,0.455373,0.235538,0.000000,0.027273,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.755000,4612485.550000,4503,4505,115.289276,165.281006,169.685974,160.338852,146.190094,137.231415,134.371918,132.396713,132.809937,134.611588,135.933899,146.446304,163.991745,179.107452,191.561996,201.338852,202.842987,189.322327,165.008286,144.305801,132.388443,129.462830,125.090927,96.809937,79.958694,93.537209,101.933899,74.082664,33.338863,12.976876,11.371920,7.261168,7.215715,8.932245,6.342161,4.250422,1.189259,0.269422,0.053719,0.001653,0.142149,0.000000,0.000000,0.538017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.355000,4612485.550000,4531,4505,113.584305,168.361160,171.501663,160.121490,146.807449,138.617371,135.113235,133.319839,133.766129,135.121490,136.658691,147.567780,163.857040,180.559509,192.658691,203.658691,202.443817,191.096710,166.625626,144.782654,134.799179,131.328110,126.609100,99.278519,80.650421,95.204140,104.270256,75.146301,36.419029,14.240513,11.509936,7.947947,9.893401,8.039683,10.362824,2.858684,0.596696,0.085951,0.008265,0.000000,0.000000,0.009918,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.155000,4612485.550000,4550,4505,94.138031,162.113235,169.295044,158.030594,144.923157,136.071915,133.683487,132.204147,132.799194,133.311584,135.658691,146.204147,162.419022,179.071915,191.096710,201.452072,201.633896,189.675217,165.609100,143.650421,133.633896,129.303329,124.700020,98.559525,80.790924,94.129768,103.452087,74.113243,35.642170,13.721505,11.336384,6.833071,7.520673,8.384311,8.484311,5.391745,1.645458,0.566943,0.141323,0.127273,0.127273,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.355000,4612485.550000,4566,4505,109.440514,162.349594,167.142975,159.671906,143.696701,134.671921,133.167786,131.977707,132.903320,133.952911,135.828934,146.019012,162.374390,179.242157,191.374390,202.266953,202.085129,190.333069,165.423981,143.713226,133.481827,130.300018,124.390923,97.118195,80.820679,93.498360,101.581009,73.159515,36.209114,15.046298,11.308284,5.459517,7.474394,8.043814,6.344641,3.235543,1.020663,0.105786,0.000000,0.000000,0.187604,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612485.550000,4586,4505,121.714058,162.755356,170.284302,160.548752,147.738846,138.259506,136.714050,134.689270,135.085968,135.540497,138.102478,149.259506,164.606598,181.193390,194.590073,203.350403,204.342133,193.813217,167.813217,147.102478,135.581818,131.838028,127.490921,99.424805,83.218201,96.342163,104.581833,76.681007,38.515720,15.834730,11.590102,7.999187,9.630593,9.793402,8.342989,3.998356,1.206615,0.723969,0.097521,0.001653,0.001653,0.026447,0.042975,0.000000,1.347108,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.755000,4612485.550000,4608,4505,114.142990,165.200851,168.275223,158.366135,145.357880,137.572739,135.184311,133.845459,133.804138,135.200836,137.126450,146.704987,163.961182,180.151260,192.490112,203.729782,203.820679,192.581009,167.539688,145.861984,134.357864,131.514877,126.118187,97.473572,80.804146,94.200844,103.019020,73.291748,35.713242,14.357869,11.465308,6.300837,7.764479,8.103319,9.091748,5.133068,0.604960,0.233885,0.452067,0.059504,0.000000,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.955000,4612485.550000,4624,4505,115.945473,165.011597,168.085953,159.730576,146.846298,138.482666,134.986786,134.201660,133.110748,136.747131,138.242996,147.672745,164.854553,180.449600,193.209915,204.780167,205.094223,192.747116,168.962006,146.325638,135.259521,129.846298,127.218193,99.292580,81.689278,95.722336,103.862831,77.507454,36.061176,16.180183,11.565308,7.426458,8.462825,8.967784,7.729764,3.565295,0.995870,0.267769,0.061984,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.755000,4612485.550000,4638,4505,110.413239,166.363647,170.289261,162.702499,148.314087,139.380203,136.438034,136.115723,136.859543,137.264496,139.785156,150.421524,167.099182,182.404953,194.677689,206.330582,206.504135,195.214874,170.809937,147.677719,137.487640,133.190094,129.272751,101.355385,83.099190,98.809937,105.966957,78.082664,37.760349,15.218199,11.752087,6.809102,7.902494,8.252081,9.609932,2.952899,0.987606,0.176860,0.132232,0.000000,0.061157,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,2.003306,0.000000,0.000000 -601672.555000,4612485.550000,4652,4505,106.946297,167.012390,168.971069,158.417358,145.268600,137.582657,135.252075,133.706619,134.103317,135.508286,138.078506,147.904953,165.194214,180.078506,193.913223,203.673553,203.417358,192.673553,167.590912,144.863632,134.557861,132.128113,126.045471,97.119843,81.789276,94.756203,104.276878,76.582664,34.549606,14.601670,11.458695,4.744638,6.591751,7.021501,6.320673,2.466948,0.270249,0.134711,0.119008,0.062810,0.066942,0.000000,0.000000,0.000000,0.000000,1.344628,0.000000,0.000000,0.000000,0.000000 -601676.155000,4612485.550000,4670,4505,120.409927,168.641342,172.864471,162.781830,148.476028,137.038040,136.509125,134.029770,135.120667,137.641342,139.170258,149.062805,166.310760,182.277695,194.814896,206.062820,205.955383,194.930588,170.277695,147.963638,137.798370,133.178528,128.327286,100.542160,83.525642,95.831421,105.881004,77.451256,36.971916,15.142166,11.666135,7.482656,9.713239,10.642991,10.316545,5.056208,1.090085,0.199174,0.185125,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.755000,4612485.550000,4693,4505,119.692574,166.998367,170.155396,160.304153,147.957047,139.081009,137.395065,136.560349,136.676056,138.238037,139.990112,150.519028,165.948776,182.882660,196.428116,206.188446,206.469437,194.535553,170.213242,148.634735,137.684326,132.436371,128.527283,101.659508,83.254562,96.915718,105.676041,77.147125,36.717369,15.554564,11.684317,6.374393,9.481009,8.312411,8.346293,2.698353,1.241325,0.079339,0.000000,0.090910,0.000000,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612485.550000,4715,4505,124.905800,171.608276,172.062820,161.583481,147.368607,138.004974,135.914062,135.038025,134.897522,137.690918,138.327286,149.591751,166.004974,181.558685,194.550430,205.814896,204.533890,194.079346,169.914062,147.112411,136.195053,133.814880,128.509109,100.773567,82.864479,97.054558,105.211594,77.558701,37.723984,14.695886,11.682666,7.473565,7.100841,8.690098,7.628941,5.047116,0.271902,0.375207,0.000000,0.000000,0.000000,0.000000,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.155000,4612485.550000,4750,4505,122.624809,167.962006,171.408279,164.838043,148.548782,136.995056,133.961990,134.061172,132.995056,137.185150,138.110764,149.945480,165.895889,182.796692,195.391754,204.234726,205.499191,193.714066,168.209930,146.540512,136.160355,130.829758,125.672737,98.871086,80.945473,93.788445,104.548775,76.672745,36.019855,14.402497,11.424812,5.073563,8.268610,9.563651,10.320677,4.158687,1.422318,0.102480,0.290910,0.179339,0.057025,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.155000,4612485.550000,4775,4505,133.496704,173.827286,171.653732,161.819016,148.984314,138.513229,136.149597,135.083481,134.736374,137.678528,138.827286,147.703323,165.695053,181.703323,194.893402,204.281830,205.579346,193.909927,168.653732,147.967789,136.728119,131.265305,127.736374,98.678528,81.918198,95.670258,104.521500,76.381020,36.331425,15.167788,11.612415,5.923977,7.949604,7.717371,8.175220,3.552899,0.566944,0.063637,0.000000,0.335538,0.000000,0.000000,0.018182,0.255372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.155000,4612485.550000,4790,4505,109.733070,146.257874,155.016556,152.038025,144.466141,137.920685,136.741348,136.138870,135.816559,140.601669,142.023163,151.386780,168.343811,185.533890,198.095886,208.203323,210.583481,199.399200,174.068619,153.266968,142.605804,138.126465,133.118195,103.878525,86.266129,101.192574,110.547943,81.068611,39.947952,17.514067,12.101672,5.499184,8.872744,8.976047,10.106625,4.785131,1.976862,1.876861,1.916531,1.628927,0.695042,0.563637,0.017356,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.155000,4612485.550000,4805,4505,122.122330,174.193405,171.251266,162.780182,148.738861,140.722336,139.689270,136.069443,135.523987,138.904144,139.292587,149.623154,165.945480,181.457870,194.780182,205.986801,205.102493,194.920685,170.714066,149.714066,137.218201,134.747131,128.490921,100.730598,83.061180,97.185143,106.813240,79.598366,38.358696,16.085142,11.681011,6.060341,7.748776,7.796709,7.976873,3.339677,0.671076,0.159505,0.368596,0.000000,0.000000,0.235537,0.000000,0.131405,0.000000,2.725620,0.000000,0.000000,0.000000,0.000000 -601706.355000,4612485.550000,4821,4505,128.913239,173.946320,172.285141,163.607452,150.169434,138.855392,137.078522,135.260345,134.929764,137.896713,138.144638,148.508286,165.648773,182.227310,194.657059,204.764496,205.376068,194.582672,169.954559,148.202499,136.293411,132.070251,128.227295,100.293396,82.747940,96.177696,106.888435,78.789261,38.078529,16.977703,11.657045,5.167778,8.647124,8.479353,7.990096,3.870255,0.657853,0.307439,0.203306,0.004959,0.095042,0.000000,0.056200,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.155000,4612485.550000,4835,4505,111.488441,170.174393,167.769440,163.463654,149.133072,138.143799,137.152069,135.722321,134.961990,138.904129,139.474380,149.656204,166.300827,182.780167,194.703323,205.678528,205.579346,193.744644,168.909927,147.686783,136.538025,132.223984,126.190926,98.827286,81.645470,94.695053,105.587616,78.166130,37.262001,15.324811,11.471920,4.453728,6.576872,7.616541,6.854558,2.928104,0.677688,0.587605,0.686778,0.533885,0.066116,0.000000,0.195042,0.480166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.955000,4612485.550000,4849,4505,126.742165,180.114059,170.229752,162.469421,150.213226,139.188446,137.014877,134.874390,134.196701,137.411591,137.271103,148.229752,165.932236,181.667755,194.386780,203.725632,204.957031,193.791748,169.246292,147.238022,135.742157,131.717361,127.436371,98.519012,81.469429,94.452896,107.337196,77.485954,38.725639,16.170265,11.585143,4.723151,7.942164,8.416542,8.053734,2.948765,0.609092,0.589257,0.130579,0.002479,0.109092,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.555000,4612485.550000,4862,4505,118.147957,175.245483,169.336395,163.749619,151.972748,140.509949,139.658707,137.666946,135.832260,139.906631,140.096725,149.757858,166.807465,183.592575,195.253723,204.716537,206.138031,193.898361,171.113235,148.890106,136.939697,133.212418,128.609100,100.576050,82.509926,96.080177,104.914894,80.179359,38.683487,17.669439,11.691753,7.003317,8.340510,9.107452,9.211584,3.233892,0.902481,0.661158,0.005785,0.135538,0.148761,0.042149,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601717.355000,4612485.550000,4876,4505,129.566116,167.147934,166.957855,160.825623,148.709915,136.189255,135.048767,134.875214,133.420670,137.949585,137.528107,146.957855,163.354553,180.519836,192.676865,202.552902,202.924789,192.610748,167.280167,144.924820,132.949585,130.205795,124.536369,97.536369,80.296707,94.561157,106.007446,78.106621,35.850433,15.044645,11.321506,4.431415,6.900840,7.114888,7.019846,4.269427,0.456200,0.485125,0.375208,0.337191,0.090910,0.043802,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.755000,4612485.550000,4893,4505,123.053734,175.563644,172.704147,166.266129,151.885956,138.885956,138.125626,137.158691,134.348785,138.522324,136.712402,148.952072,165.423157,183.117371,196.695877,206.530594,205.919022,195.390091,170.249603,148.175217,137.274384,133.778534,128.563660,100.960350,81.811584,95.976875,106.332253,79.125641,37.076054,17.002499,11.687622,5.881830,10.149603,7.596707,9.150427,3.061990,0.583472,0.652068,0.363637,0.059504,0.000000,0.000000,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.355000,4612485.550000,4911,4505,135.134735,190.729752,177.514877,168.258682,155.151245,139.713226,138.134720,138.184311,135.762817,141.729752,139.465302,149.985962,167.068604,184.341324,197.266953,206.762817,207.870255,194.911575,170.804138,148.498352,137.572739,133.465302,128.300018,98.795883,81.159515,97.498360,107.068611,80.415718,37.291752,16.521507,11.663655,6.609103,9.045470,8.957041,10.291752,4.249594,0.300001,0.166943,0.302480,0.000000,0.025620,0.000000,0.078513,0.280992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.555000,4612485.550000,4927,4505,118.729774,182.027298,177.101669,167.399200,152.771103,138.886795,137.680191,135.870255,134.994232,138.655396,139.242172,150.490112,166.514893,183.027298,194.696716,205.052094,205.572754,193.258698,168.027298,146.680191,135.523148,132.316544,126.481834,97.118195,79.886803,94.597534,105.787621,77.498360,37.704979,15.809937,11.498365,5.727283,8.933070,7.155385,7.764476,3.783479,1.226449,0.142149,0.043802,0.073554,0.082645,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.555000,4612485.550000,4942,4505,117.213234,172.808273,175.047943,163.114059,147.436371,136.171921,135.386795,134.130600,134.362000,135.552094,135.444656,145.039673,163.775208,179.188431,191.642975,201.378525,201.287613,188.047943,164.105789,143.370255,132.932251,130.147125,123.890923,95.576874,78.808281,92.733902,102.585136,74.461174,35.907455,14.377704,11.262829,8.216541,9.552906,10.344644,7.947949,3.003312,0.558679,0.194215,0.180992,0.253719,0.051240,0.009091,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.155000,4612485.550000,4970,4505,124.928947,176.470245,177.610748,163.040497,147.933060,136.949585,136.552917,132.701660,132.123154,133.759521,134.891754,146.511566,164.304962,179.147934,191.321487,201.230576,200.428925,188.139679,163.222321,142.999176,132.346298,129.007462,123.900017,95.329773,78.833900,92.900017,103.131424,74.098366,35.784317,15.223985,11.263655,9.542164,9.838856,10.190097,10.246298,5.032241,2.720665,0.654546,0.967770,0.569422,0.061157,0.239670,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.755000,4612485.550000,4983,4505,123.142990,172.547943,174.804138,165.035538,148.093399,136.266953,136.919846,133.457047,132.614059,134.903320,134.514893,145.911575,163.680176,179.457031,191.068604,200.861984,200.671906,188.382645,163.432236,142.490082,131.440506,129.027283,123.663651,94.671913,79.184311,90.167786,101.349602,74.374405,35.052090,14.818201,11.242168,10.354562,8.061171,8.897535,8.881834,4.319843,0.769423,0.297522,0.071075,0.052066,0.063637,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.555000,4612485.550000,4997,4505,131.908264,182.668594,174.916534,162.982651,148.900009,136.776047,135.883484,134.296707,132.726471,135.123154,134.470261,146.362808,163.784302,178.990906,192.007446,200.751236,200.833893,187.883469,163.552902,143.090103,132.296707,130.362823,124.627289,95.197540,78.040512,91.767792,103.156219,75.329773,36.362823,16.917374,11.329770,9.598361,8.464476,8.778524,10.629766,3.313231,1.011573,0.700828,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.355000,4612485.550000,5016,4505,112.094231,180.416534,177.408264,165.722321,148.168610,136.705811,135.953735,134.978531,133.548782,135.482666,135.218201,147.226456,163.689255,179.284302,191.920670,202.110748,201.689255,188.523972,163.532242,142.995041,132.019852,129.077698,122.581841,94.895882,79.523987,90.838028,101.606621,76.152084,35.309113,16.131422,11.143820,9.094228,7.544641,8.581832,9.673568,3.762817,0.274381,0.080166,0.217356,0.000000,0.000000,0.006612,0.187604,0.120661,1.355372,0.000000,0.000000,2.604133,0.000000,0.000000 -601749.355000,4612485.550000,5036,4505,119.881004,183.095886,175.575226,162.401672,148.930588,136.533890,136.409927,134.566956,134.128937,135.128937,134.633072,146.186783,163.765305,179.492569,192.533890,201.980179,200.368607,187.525635,161.938858,142.839676,130.773560,128.790100,123.418198,94.922325,77.971916,90.930588,100.732246,73.558701,35.343822,14.523984,11.219853,8.028113,7.304971,8.285137,7.704145,3.713232,0.808267,0.097521,0.239670,0.000000,0.000000,0.000000,0.188430,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.555000,4612485.550000,5057,4505,123.401672,181.252899,177.161987,162.244629,146.922333,134.988449,135.781830,132.476044,133.219849,135.302490,134.674393,145.765305,163.484299,179.566940,192.062820,202.682648,202.054565,187.558685,162.798340,142.244644,131.170258,129.492569,123.327286,95.319031,78.682663,92.294228,101.434723,73.798370,33.219852,15.198364,11.211590,8.554560,7.359518,7.852905,9.367784,2.714056,0.523142,0.071901,0.059505,0.052893,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.755000,4612485.550000,5078,4505,121.153740,187.294235,175.038025,164.046295,147.905792,135.004959,135.021515,132.476044,132.748764,135.484314,134.484299,145.219849,162.914062,178.823151,191.451248,201.682663,200.624802,186.310760,162.071091,141.971909,131.806625,128.666122,122.781830,93.856209,78.740509,91.004974,100.434723,72.740509,33.343822,13.295059,11.162003,8.643815,7.832245,7.199186,6.856212,2.550420,0.190083,0.318183,0.155373,0.000000,0.000000,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.355000,4612485.550000,5096,4505,124.233078,187.274399,175.745483,165.026474,150.266144,136.638046,136.745483,135.406631,134.828110,136.869446,135.001663,146.728958,163.671097,179.770279,192.621521,203.257874,200.307465,187.828125,162.935562,142.307465,131.985138,129.522339,122.927292,94.051247,79.464478,91.332245,100.563644,72.315720,35.588448,14.328118,11.175226,9.436378,7.600014,7.674393,8.296708,2.896701,0.707440,0.249588,0.000000,0.042149,0.000000,0.000000,0.063637,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612485.550000,5123,4505,128.442169,194.367767,177.780991,167.880173,148.632233,137.235535,136.227295,134.739685,133.830597,138.690079,133.995880,146.384293,163.169418,180.524796,191.880173,203.483475,200.954544,186.359497,162.847107,142.020660,131.334732,128.342987,122.590927,95.334732,78.037216,91.995895,102.781006,72.177711,32.979359,14.013241,11.144648,11.223156,7.685962,7.908278,7.521499,4.268604,0.302480,0.246282,0.000000,0.000000,0.000000,0.000000,0.069422,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.955000,4612485.550000,5149,4505,135.408279,196.664459,178.383469,171.127274,153.028107,140.036362,137.614883,136.581818,135.962006,141.300827,137.631409,149.152069,165.358688,182.780167,194.945465,206.309097,203.904129,187.780167,165.201660,145.152069,134.689255,130.590088,125.127281,96.474380,80.540512,93.507446,104.325623,73.457870,36.267792,15.798365,11.375225,12.919024,8.690923,9.082658,8.423155,2.885133,0.656201,0.205786,0.296695,0.243802,0.016529,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.555000,4612485.550000,5172,4505,147.631424,196.904129,181.623138,172.829758,154.383469,140.383469,138.714050,137.226456,137.862808,142.722321,138.218201,149.259506,165.871078,183.945465,196.276031,207.110748,204.457855,189.309097,166.813232,145.143799,135.218201,130.970261,127.036385,96.242996,80.871094,94.895889,104.044647,75.143822,36.259525,16.115719,11.548779,11.611587,9.324807,9.499187,9.809107,5.140504,0.851243,0.410745,0.127273,0.000000,0.000000,0.000000,0.055372,0.149587,0.000000,0.000000,0.000000,1.142149,0.000000,0.000000 -601783.355000,4612485.550000,5206,4505,157.761993,200.042999,181.753738,172.117371,151.795044,139.001663,138.497528,136.233063,137.390091,141.927277,136.638031,148.282654,164.158691,182.323990,195.712418,205.803314,203.869446,187.497543,164.952072,144.935547,134.166946,130.431412,125.200012,95.588448,79.770256,95.943817,103.191742,71.621506,35.133904,15.504148,11.381838,10.184312,7.974392,8.321502,8.228938,3.899182,0.935540,0.385125,0.023967,0.068595,0.123967,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.555000,4612485.550000,5262,4505,108.768608,166.958694,171.991745,160.123978,145.966965,137.545471,134.181839,131.710754,132.479355,134.446304,134.933899,146.099182,163.900848,179.206635,191.925629,201.421509,202.297531,190.198364,165.297531,142.958694,132.049606,128.983490,123.454559,94.834724,77.900848,92.520676,103.264481,74.429779,33.867790,13.609935,11.223159,6.496705,8.381008,8.088444,7.476047,3.276868,0.681820,0.082645,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.355000,4612485.550000,5356,4505,110.597542,163.812424,170.895065,160.804153,147.035553,137.349609,135.523163,132.779358,132.663666,133.605804,134.655396,145.795883,163.539688,179.374405,192.589279,202.399200,201.209106,189.333084,163.762833,143.242172,132.572754,128.523163,123.481842,94.994240,78.738037,92.845474,103.217377,76.258698,34.704979,14.088449,11.225639,6.205796,7.695057,9.195884,8.476873,2.572735,0.845456,0.365290,0.047108,0.108265,0.000827,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.555000,4612485.550000,5407,4505,112.671082,167.076065,170.208298,160.844650,147.365311,137.613235,134.588440,132.233063,133.522324,135.299179,135.481003,146.042999,164.423172,179.654572,192.530609,202.051270,202.274399,190.340515,166.348785,144.266144,132.390091,129.935547,123.927292,95.885971,79.117371,92.390091,103.803322,77.257866,36.638035,15.453736,11.266134,5.587614,8.439685,7.747948,8.596707,3.057858,1.106614,0.088430,0.166116,0.042149,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601828.755000,4612485.550000,5433,4505,119.690910,168.864487,169.550430,159.442993,147.277695,135.608276,134.376862,133.434723,133.112396,133.616531,136.641342,145.823151,164.203323,180.575241,192.467789,201.186783,202.442978,190.153732,166.401672,144.335556,133.740494,129.062820,123.690910,95.219849,78.839684,93.038025,105.674393,77.566956,36.881012,16.234730,11.244647,7.616542,8.295883,9.126460,8.045467,3.307445,0.773555,0.176033,0.000000,0.161158,0.000000,0.000000,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.955000,4612485.550000,5464,4505,124.979355,167.409088,170.508270,161.136368,147.780991,137.086792,134.268616,133.987625,132.384308,134.847122,135.971085,146.260330,164.433884,180.574387,192.995865,202.210739,201.772720,190.599167,165.326447,144.202499,132.541336,128.177704,123.227287,95.400841,78.086792,93.640511,103.632248,75.954559,36.508286,14.431423,11.202498,7.187615,8.260345,7.716544,8.432245,2.819841,0.737191,0.171075,0.176034,0.000000,0.006612,0.000000,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.555000,4612485.550000,5512,4505,107.551247,165.947952,170.311600,160.658707,147.956223,138.716553,134.972733,134.171082,133.642151,136.179352,136.055374,146.609100,165.369446,180.303329,193.518188,203.898376,203.460342,191.493393,167.600845,145.443817,134.551254,129.584305,124.063644,95.220673,78.319855,94.551247,105.352905,78.385971,37.419025,15.822332,11.278532,4.938026,7.833074,7.821502,7.700013,4.476041,0.846283,0.254546,0.058678,0.003306,0.000000,0.000000,0.000000,0.037190,1.289256,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.555000,4612485.550000,5592,4505,125.625641,169.121475,170.857025,160.443802,148.542969,137.476852,135.518188,134.650421,133.600830,136.410751,136.799164,147.104950,164.947922,181.286774,194.270248,203.972717,204.129745,193.443802,167.501648,145.848755,132.840515,130.022339,124.881836,96.609108,78.295059,93.460350,105.195885,77.691750,35.947952,13.819025,11.352911,5.450423,7.672743,5.897534,6.818194,3.460339,0.449588,0.031405,0.125620,0.000000,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,2.071075,0.000000,0.000000 -601881.755000,4612485.550000,5698,4505,129.971909,182.137192,172.145447,166.228119,152.385132,140.285965,137.872742,136.864471,135.484314,139.368607,138.624802,149.170258,167.575211,185.310745,197.393387,208.476028,208.004959,197.715698,173.525620,150.145462,137.905792,133.269440,128.145462,98.525635,81.575218,96.723976,108.831421,81.426460,37.426472,15.276050,11.649605,4.928109,8.897535,7.067782,9.314889,3.243808,0.865291,0.001653,0.205786,0.000000,0.000000,0.000000,0.000000,0.090083,1.338017,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.155000,4612485.550000,5745,4505,134.364487,190.306625,179.091751,168.885132,155.083496,141.108292,139.604156,137.860367,135.992569,140.414078,139.810776,150.496719,167.876877,185.637207,198.521500,209.397537,208.752899,198.372742,172.058685,150.538040,139.248795,135.223984,129.736374,100.736374,82.595879,96.785965,108.314888,82.116539,38.240517,15.377703,11.794232,6.123150,8.386792,7.044642,9.707452,4.558685,0.752894,0.061984,0.000000,0.005785,0.042149,0.000000,0.106612,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.355000,4612485.550000,5766,4505,125.581017,183.622330,179.936386,166.366135,152.729782,139.407455,138.696716,137.514893,136.027283,138.952911,138.630600,150.771103,168.787628,185.374405,198.721512,210.159531,211.242172,198.547958,173.275223,151.564484,142.250443,136.382645,131.754547,102.200851,84.192581,99.465309,109.597527,81.853745,37.928116,15.674398,11.977706,7.968608,7.081006,7.714064,9.827288,3.838023,0.581820,0.471902,0.066116,0.000000,0.012397,0.000000,0.000000,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,2.095868 -601898.155000,4612485.550000,5780,4505,116.250435,180.333084,179.828949,165.547958,149.225647,138.275223,139.143005,136.052078,135.233902,137.539688,138.465317,150.878540,168.961182,185.903336,198.812424,210.853729,211.176041,197.473572,173.630600,150.407455,140.151260,137.523163,132.118210,102.275230,85.944649,99.762833,109.919861,81.126472,40.142994,16.056217,12.010762,10.470263,10.920676,10.422331,11.325635,4.942157,0.827275,0.223141,0.190083,0.063637,0.125620,0.181818,0.086777,0.290083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601901.555000,4612485.550000,5797,4505,114.461998,178.652084,180.362823,166.999191,149.916550,139.106628,138.387619,134.395874,135.040512,137.139694,137.437210,150.222336,168.453735,185.280182,197.189270,208.850433,210.197540,198.065308,172.883484,151.189270,139.833908,137.850433,132.809097,101.643814,86.238853,99.792572,111.181000,81.114891,41.561176,15.975224,12.073572,12.604147,9.983487,9.947948,10.895056,4.769430,0.678514,0.745456,0.273555,0.128926,0.000000,0.000000,0.009091,0.000000,0.000000,1.557851,0.000000,0.000000,0.000000,0.000000 -601904.755000,4612485.550000,5813,4505,119.114075,183.419861,178.552094,166.064484,148.651260,138.659531,136.957047,134.378525,134.312408,136.122314,137.014893,149.287628,167.882660,184.147125,196.882645,208.395035,210.213211,196.948761,173.659531,150.800018,138.494232,137.246307,131.800018,101.039696,84.717369,101.229774,110.006638,80.700851,40.014896,15.885142,11.981835,11.891751,10.528942,10.069435,10.014890,5.612404,1.075208,0.771076,0.101654,0.003306,0.005785,0.000000,0.609092,0.088430,0.000000,1.469422,0.000000,0.000000,0.000000,0.000000 -601911.355000,4612485.550000,5846,4505,122.445473,184.519836,183.156204,168.395874,152.428925,140.032257,139.891754,136.065308,135.652084,137.850433,138.255386,150.090103,168.486786,184.933060,197.734711,209.296692,210.800827,196.974380,173.866943,150.594223,140.222336,136.635559,132.354568,102.866959,85.652084,98.916550,110.627289,80.619026,40.949608,16.313242,12.032249,10.699188,7.685966,9.828115,11.346295,6.201663,1.216531,0.302480,0.416530,0.062810,0.120661,0.000000,0.095868,0.000000,1.634711,0.000000,1.281818,0.938017,0.000000,0.000000 -601914.755000,4612485.550000,5863,4505,120.602493,187.238846,180.247116,166.941330,150.924789,137.784317,136.428940,133.933075,134.486786,136.205811,136.544647,147.924820,166.114883,183.742981,196.635544,208.015701,208.412399,195.280167,171.966125,149.602478,138.015717,135.098373,129.354553,100.329765,84.627289,97.081833,108.619019,78.304977,39.346306,15.850431,11.759522,11.977701,8.778528,8.476872,10.393402,4.389264,1.130580,0.309092,0.052893,0.000000,0.000000,0.000000,0.073554,0.080992,0.000000,0.000000,0.000000,1.151240,0.000000,0.000000 -601919.355000,4612485.550000,5886,4505,103.480179,189.190918,179.785965,165.794235,148.199188,137.124802,136.257034,133.529770,133.397537,135.339676,135.538025,147.860321,165.339676,184.339676,195.959518,207.248764,208.124786,193.843811,169.579346,148.827271,136.942993,134.347946,131.190918,99.918198,82.761169,97.290092,107.223976,79.554558,37.595890,15.462828,11.926465,9.600842,7.343817,10.383487,9.743816,4.788438,0.723142,0.380993,0.095042,0.128926,0.000827,0.000000,0.032232,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.955000,4612485.550000,5914,4505,121.800842,190.387619,181.263657,168.139694,150.792587,139.445480,139.866959,137.081833,136.916550,139.222336,138.214066,149.544647,166.842163,185.007462,197.660355,209.495056,209.495056,194.685150,172.123154,150.181015,138.263657,136.189270,131.627289,101.957870,83.561180,98.800842,107.809113,77.338036,39.503326,15.635554,11.966135,11.847947,8.316545,8.882659,11.490098,3.826455,0.661986,0.578514,0.378513,0.060331,0.063637,0.000000,0.093389,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.755000,4612485.550000,5933,4505,115.255386,174.255386,173.437210,166.619034,149.371094,137.098373,135.023972,133.428940,132.007446,136.470261,135.197525,147.247131,161.445480,178.503326,190.420685,202.594238,204.304977,191.627289,168.660355,146.866959,136.552917,134.495056,130.445465,102.098358,87.057037,98.999184,107.511581,77.900009,34.346302,13.807455,11.858697,6.196705,9.003319,7.326461,9.395881,2.621494,0.257854,0.276035,0.257852,0.105786,0.000000,0.634712,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.955000,4612485.550000,5949,4505,104.604965,174.993393,171.654556,165.514053,148.522324,137.018188,137.571915,134.514053,134.728943,137.406616,137.398361,148.100830,163.563644,179.861160,192.489273,203.621490,205.051254,194.869431,170.563644,148.811584,139.778519,134.927277,132.472733,104.150421,88.613235,101.885963,110.224800,80.985130,38.861179,15.683488,12.042994,7.495054,10.183487,7.901667,8.587614,5.889264,1.418186,0.774382,0.455373,0.416529,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601937.155000,4612485.550000,5975,4505,116.189270,170.462006,173.205811,165.271927,148.941345,137.478531,136.263657,134.668610,133.023972,136.387619,136.428940,147.205811,162.057037,179.536377,192.552917,203.751266,204.123154,192.842163,170.023987,148.850433,138.817368,134.990921,130.172745,103.073563,87.313232,100.197533,108.569435,78.660339,37.701672,14.606629,11.833903,5.447944,8.482660,7.752081,10.742990,3.691741,0.612400,0.059505,0.070248,0.000000,0.000000,0.086777,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601945.155000,4612485.550000,6015,4505,113.529770,167.050415,171.827271,160.976028,148.819016,137.207458,135.232254,132.794235,132.397537,135.604141,136.653732,145.091751,161.794205,177.637192,188.901657,200.984299,201.728088,191.248764,167.571075,146.050430,137.116547,132.926468,128.918198,101.901672,85.075226,99.405807,107.562828,79.653740,36.430599,15.112416,11.719854,7.524806,9.044642,9.328941,9.544642,3.547940,0.681822,0.247109,0.202479,0.876034,0.002479,0.000000,0.221488,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601952.155000,4612485.550000,6050,4505,99.362007,163.238037,169.841339,161.295883,148.502502,138.841339,135.651260,133.618210,132.403336,134.717377,136.262833,146.527298,161.609940,177.353745,189.766968,201.477707,202.056213,190.585144,168.428116,146.733902,137.957047,133.370270,129.981842,101.857872,86.114075,99.171921,108.262833,79.147133,38.147125,15.631423,11.816548,5.981003,8.814064,8.762825,9.751254,2.809096,0.479340,0.090084,0.228926,0.165290,0.147108,0.240496,0.515703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601955.955000,4612485.550000,6069,4505,102.322327,157.553741,166.157043,160.586792,146.512405,136.388443,135.008270,131.520676,130.520676,133.495880,134.148773,143.991745,160.363647,176.595062,188.652908,199.314072,201.231415,190.157043,165.677704,146.198364,134.652893,131.776871,126.636383,101.074387,86.388443,99.057869,106.090927,77.239685,36.074402,15.474397,11.512416,8.161996,8.733900,7.758694,6.497531,2.785130,0.544630,0.025621,0.225620,0.111571,0.212397,0.080165,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.355000,4612485.550000,6101,4505,85.341339,164.009949,168.373581,158.952087,144.671097,135.679367,132.671097,132.117371,130.861176,133.481003,134.795059,145.257874,160.092590,176.877716,189.489288,199.687622,201.497543,189.580185,166.357056,146.142181,135.976883,132.150436,128.290924,101.133904,84.522331,100.076050,106.629768,77.166962,38.183487,14.372745,11.662829,7.116542,9.242166,7.148777,9.908278,2.928105,0.580995,0.547936,0.000000,0.227273,0.005785,0.267769,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.755000,4612485.550000,6123,4505,104.196709,163.527298,168.535553,160.436386,147.618210,136.064484,133.411591,131.667786,131.717377,133.047943,134.395065,144.609955,160.204987,175.204987,187.362000,197.502502,200.072754,188.709106,166.436386,145.833084,135.585144,132.527298,128.527283,100.593407,84.766960,99.295883,107.238029,78.006622,37.841339,15.569439,11.684317,6.585134,9.382660,9.762825,9.703321,4.676867,0.687607,0.029753,0.132232,0.578514,0.000000,0.076860,0.000000,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.755000,4612485.550000,6158,4505,90.256218,155.100845,167.381851,158.307465,144.249619,135.282669,133.588440,131.323990,130.894226,134.406631,135.109116,145.133911,160.828125,176.762009,188.034729,199.489288,200.125641,189.993408,166.753738,144.522339,134.993408,131.447952,126.654564,99.770264,83.580185,97.191750,105.712418,78.208282,35.762001,14.990928,11.514070,4.994226,7.886791,7.248773,5.803317,2.109094,0.271076,0.323969,0.052893,0.368596,0.000000,0.069422,0.000000,0.119008,0.000000,0.000000,0.000000,1.714876,0.000000,0.000000 -601982.755000,4612485.550000,6203,4505,93.085968,158.730591,165.763657,157.738861,145.036377,132.152084,131.333893,128.209930,128.094223,128.557037,131.647949,141.838043,156.366959,172.895889,185.119034,196.110764,197.623154,186.242996,163.722336,141.780182,132.466125,127.895882,123.854553,98.540504,81.433067,95.581833,103.416542,75.565308,35.672745,15.503324,11.259523,4.667778,6.619021,6.969435,6.886789,2.630586,0.839673,0.137191,0.258678,0.158678,0.207438,0.162810,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.755000,4612485.550000,6218,4505,92.269432,150.798355,165.806625,157.484314,143.269455,134.509109,131.723984,130.062820,129.600006,130.905792,131.723984,142.451248,157.558685,173.376877,185.938858,196.732239,197.219849,187.252899,164.021500,143.343811,132.476044,129.806625,125.054558,98.153732,83.162003,96.897537,105.831421,77.211601,38.285969,14.838861,11.368614,6.789268,9.441338,7.833898,7.817367,2.994221,0.608266,0.699175,0.418183,0.000000,0.000000,0.000000,0.138843,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601990.955000,4612485.550000,6244,4505,103.291748,156.382660,164.027298,157.870270,143.514893,134.589264,130.514893,128.614059,128.324814,129.919846,131.374390,142.275223,157.820679,173.242172,184.713242,196.052078,196.671906,186.423996,162.498367,141.506638,132.655380,128.812408,123.936378,97.754562,82.142990,96.886795,104.762825,76.043816,36.151257,15.119852,11.266962,6.012408,7.585138,8.398361,8.808277,5.326454,0.630581,0.005786,0.061157,0.121488,0.004132,0.145455,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602001.755000,4612485.550000,6298,4505,95.155388,155.733902,166.485962,158.882645,143.023148,136.353729,133.378525,129.403305,131.080994,131.114059,132.023148,142.304138,159.188446,174.535553,187.725647,197.023163,199.758698,187.362000,163.444641,144.444641,133.312408,129.378525,125.527283,97.874397,83.262825,95.923981,106.626457,77.419846,37.014896,15.345472,11.411590,7.226459,9.321503,8.618197,8.647946,5.029761,1.531409,0.314877,0.125620,0.128099,0.005785,0.344629,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.955000,4612485.550000,6314,4505,99.959518,154.579346,168.711594,159.124817,145.893402,136.405792,133.719849,130.496704,130.372742,131.463654,132.926453,143.133072,159.199203,175.174408,187.686813,198.042175,198.265320,187.504990,164.529785,143.389267,134.223984,130.372742,125.554558,98.868607,83.199188,97.116539,105.909927,77.273567,37.108280,16.735554,11.414068,7.864477,9.105800,9.461999,10.513238,3.960338,1.104963,1.080994,0.433059,0.000000,0.120661,0.000000,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,1.966942,0.000000 -602010.155000,4612485.550000,6340,4505,82.097534,155.932236,170.700836,160.105789,145.568604,136.485962,133.006622,132.386795,131.419846,132.362000,134.485962,143.833069,161.907440,176.866119,188.866119,198.452896,200.700836,188.411575,165.957031,144.138855,134.477707,132.138855,126.527290,98.238029,83.709106,97.824806,105.890923,76.138863,38.915726,16.131424,11.502499,6.253730,8.821505,11.815719,9.960346,3.376869,0.095869,0.864466,0.343803,0.111571,0.000000,0.000000,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602013.355000,4612485.550000,6356,4505,89.110764,154.077728,165.647964,157.515732,143.400024,134.730606,133.077713,129.416550,128.771927,129.499207,131.557053,142.780182,158.928955,174.416565,186.218216,197.011612,197.218216,185.631439,162.747147,142.697540,133.259537,129.242996,125.036385,98.044647,81.433067,96.548782,105.474396,76.697533,36.317375,14.637209,11.366961,6.391746,7.170263,7.751255,8.147120,4.477694,0.666943,0.259505,0.352067,0.240496,0.000000,0.072727,0.161984,0.432232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.355000,4612485.550000,6376,4505,96.183479,159.100830,166.803314,155.828110,145.224808,135.439682,133.398361,130.200012,129.133896,129.737198,131.786789,141.538849,159.117371,174.299179,185.588440,196.877701,196.885956,185.877701,163.423157,142.381821,133.348770,127.836372,123.836372,98.431412,82.803322,95.538849,105.481003,76.522324,36.861179,14.896711,11.257870,6.571086,10.095057,10.355387,6.947947,3.321493,0.180993,0.685952,0.113223,0.071075,0.204959,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602023.755000,4612485.550000,6408,4505,107.846291,158.391754,165.871094,159.061172,146.614899,135.995041,135.565308,130.771927,130.986801,132.317383,133.515732,143.259521,160.036377,174.681000,187.507462,198.168610,198.077698,186.300842,164.705811,142.581833,133.242996,130.532257,125.672745,99.110764,82.342163,97.614899,106.507454,78.400017,39.333904,15.166961,11.424814,7.188444,9.098362,7.701669,6.046294,3.937196,0.250415,0.149588,0.361158,0.150414,0.114050,0.000000,0.014050,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602032.555000,4612485.550000,6452,4505,101.048775,158.575226,169.277679,160.765305,144.600006,135.087616,132.319016,130.814896,129.285965,130.211578,131.062820,142.418198,157.996704,174.079330,186.128922,196.211563,198.236359,186.823135,164.401672,143.690918,134.310760,131.484314,125.327286,98.343811,81.889267,97.302490,106.517365,77.517365,36.872749,16.062826,11.393408,8.515716,9.030593,9.873569,10.105799,5.191744,0.820663,0.128927,0.113224,0.323142,0.000000,0.161984,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.555000,4612485.550000,6492,4505,92.638855,156.506622,167.200836,158.052078,142.291748,134.374390,131.696716,128.671921,128.275223,128.622330,130.349594,140.473557,156.605789,173.101654,185.200836,195.324799,196.547943,184.250427,161.828934,140.349594,132.589264,128.680176,123.300018,96.696709,81.564476,93.804146,103.944641,75.291748,37.795891,14.312413,11.209109,6.311581,8.200840,7.942162,8.033070,2.613228,0.845456,0.401654,0.233058,0.327273,0.016529,0.164463,0.390909,0.000000,0.000000,0.723967,0.000000,0.000000,0.000000,0.000000 -602047.155000,4612485.550000,6525,4505,104.840523,158.675232,169.394241,160.361176,145.204163,135.121506,132.443817,130.658691,128.666962,130.997528,131.881821,142.435562,160.766144,175.352921,186.840515,197.650436,199.030609,186.443832,163.989288,143.848785,133.650421,130.228943,125.518196,98.452072,81.394234,95.700020,104.964470,76.534729,36.187622,15.338032,11.410763,8.192574,8.147122,9.333898,9.976046,4.977694,1.300003,0.330581,0.487604,0.033058,0.027273,0.592563,0.000000,0.325620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602052.555000,4612485.550000,6552,4505,90.561996,162.561996,171.024811,162.330597,145.512405,136.421494,133.892563,131.454559,129.289261,130.917358,133.157028,143.123978,159.900848,174.710754,186.933899,197.214890,198.033081,185.628113,163.793411,143.190094,133.719009,131.487610,125.363647,99.363655,80.702492,96.471092,105.438034,77.049606,38.132252,16.410761,11.396713,7.660346,11.263653,10.613239,9.493402,3.978519,0.383474,0.528102,0.327274,0.436364,0.039670,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602055.755000,4612485.550000,6568,4505,97.534737,160.972733,169.377701,157.700012,143.642151,134.410751,132.212418,128.625641,128.642166,129.567780,130.823990,141.683487,158.253723,172.840500,185.212402,196.460342,196.658691,185.567780,161.956207,140.733063,131.410767,128.964478,122.700020,95.749596,81.237213,94.658684,103.295052,75.410767,35.584320,13.409934,11.154564,7.553731,8.077702,7.209931,7.028110,3.336370,0.546282,0.148761,0.168596,0.080166,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.155000,4612485.550000,6585,4505,110.477707,157.056213,172.626465,160.444656,147.006638,136.552094,134.180191,129.758698,130.386795,129.841339,132.039688,142.923996,158.783493,174.403336,186.700851,198.147125,198.122330,186.188446,164.618210,143.221512,132.800018,129.213242,122.981842,96.841347,80.229774,96.014900,105.262833,76.262833,36.419853,16.466961,11.180185,6.893399,9.538033,8.932245,7.953732,4.553726,0.657027,0.318183,0.334711,0.087604,0.009918,0.202480,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.955000,4612485.550000,6609,4505,93.274391,163.836395,168.241348,160.042999,144.026474,134.762009,133.001663,130.249603,130.233063,131.943817,131.877701,143.150436,159.051270,175.456223,187.092590,198.604980,199.109116,185.654572,162.555405,142.158707,132.067780,129.323975,123.109100,97.026459,81.224800,93.629761,104.084305,76.150421,36.993404,16.299191,11.191754,8.438027,9.496709,10.924809,8.538029,3.814881,0.976861,0.819836,1.242976,0.828100,0.544628,0.346281,0.411571,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.755000,4612485.550000,6638,4505,104.051262,165.084305,170.695877,159.869431,144.381851,134.762009,133.877716,130.018204,128.695892,130.935562,131.704147,142.084320,158.365311,175.770264,186.431412,198.414886,198.811584,186.720673,163.514053,143.571930,133.323990,129.439682,125.290924,96.365318,80.910767,95.968620,104.811600,75.704147,37.935555,15.141340,11.390102,7.653730,10.071091,9.368609,8.293403,3.018187,0.500829,0.288433,0.122314,0.024794,0.000000,0.227273,0.000000,0.000000,0.000000,2.185124,0.000000,0.000000,0.000000,0.000000 -602075.955000,4612485.550000,6669,4505,104.481010,170.282654,170.373566,161.117371,145.819855,134.357040,132.910767,130.762009,128.993408,131.290924,130.001663,141.662842,158.927292,173.952072,185.976868,197.695877,197.208267,185.266129,162.439682,143.497543,130.679352,129.092575,125.290924,95.894234,80.654564,93.596710,103.902496,75.704147,36.836380,15.133077,11.390102,8.961169,9.894230,7.967782,9.575218,3.992568,0.516532,0.348762,0.060331,0.114050,0.028099,0.000000,0.646282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.755000,4612485.550000,6688,4505,102.741341,168.774399,168.617386,161.096725,147.468628,133.823990,133.435562,129.923157,130.567780,132.981003,130.584320,143.245483,158.832260,175.047134,188.733078,199.435562,201.138046,186.683502,163.832260,142.807465,132.501663,129.278534,124.790924,97.476875,82.088448,95.898361,105.873573,76.187630,35.733074,14.552085,11.344646,8.123979,9.755388,8.728114,10.814064,3.571082,1.107442,0.512398,0.608265,0.261985,0.000000,0.000000,0.466942,0.000000,0.000000,0.000000,0.000000,1.609918,0.000000,0.000000 -602084.355000,4612485.550000,6711,4505,105.353745,169.651245,167.279343,161.411575,145.411575,135.122330,133.023163,128.808289,130.262833,132.452911,130.742172,142.097534,157.411575,174.758682,188.965302,199.147110,199.932236,186.866119,162.626450,142.766953,132.411591,130.585144,123.618202,96.940521,80.130600,94.915726,103.304153,74.709114,36.229774,13.609937,11.238036,9.767783,5.868608,9.683486,8.714064,2.702484,0.117357,0.180993,0.062810,0.000000,0.000000,0.323968,0.327273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602090.755000,4612485.550000,6743,4505,98.896721,172.326477,169.318207,159.309952,142.607468,133.574402,132.268616,129.979355,129.632248,132.706635,130.508286,143.053757,158.632263,178.136398,188.731430,201.268600,202.888428,188.276886,166.690109,145.128128,136.582672,132.276871,125.681839,98.326469,82.045479,95.913246,105.706627,74.450439,36.632248,14.290099,11.425640,6.991745,9.650429,10.789272,6.101665,2.793393,0.459505,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.955000,4612485.550000,6774,4505,106.622345,177.423996,169.985977,163.936386,146.795883,136.506638,136.266968,135.952911,133.630615,136.820679,136.085144,147.680191,164.721512,181.366135,194.324814,208.366119,207.671906,192.316559,171.291763,149.589279,140.985977,137.010773,131.936401,102.473587,87.085152,103.341354,109.903336,80.035568,39.068615,16.904976,11.994234,10.984311,9.949602,9.840509,11.425632,5.306621,1.043806,0.490910,0.190083,0.178513,0.000000,0.000000,0.418182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602101.155000,4612485.550000,6795,4505,115.892586,180.743820,173.512405,165.338852,150.512405,137.297531,136.413239,133.636383,134.322342,138.909103,136.487625,148.157043,164.272751,182.991745,195.719025,209.983490,208.710754,194.115723,173.165298,153.057861,141.842987,139.008301,134.181839,105.644653,89.363655,103.429779,113.082672,81.157051,40.165310,17.181837,12.198366,12.902493,12.858694,12.533900,12.600842,4.961994,0.309921,0.581821,0.132232,0.096695,0.000000,0.233058,0.525620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602107.955000,4612485.550000,6829,4505,118.910759,179.919022,174.621490,165.770264,147.671097,136.662842,135.439697,132.447952,132.704147,138.009949,133.282669,145.200027,161.092590,179.365295,192.671082,205.580170,204.679352,189.414886,169.695877,148.960358,137.604980,135.257874,129.290924,100.447952,85.770264,100.266136,110.472748,81.472748,40.125637,16.248777,11.753738,13.546296,10.619024,9.827287,12.021502,4.354554,1.076863,0.365291,0.121488,0.195868,0.014876,0.331406,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602112.355000,4612485.550000,6851,4505,119.145462,176.029755,172.930573,164.409912,147.781815,135.922318,134.137192,130.740494,130.492569,135.790085,131.310745,143.352066,159.624786,175.897522,188.558670,202.674377,201.120651,185.930573,166.269424,146.170242,136.219833,131.707443,127.963638,98.095871,83.657875,99.550415,109.872734,76.236382,38.343822,14.704976,11.633077,11.776875,9.204974,8.885139,11.007453,2.981826,0.871903,0.463638,0.052893,0.133058,0.000000,0.291736,0.046281,0.618182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.355000,4612485.550000,6871,4505,133.080185,178.956192,172.063629,166.898346,147.964462,136.319839,132.617371,129.931427,130.989273,134.576050,130.666962,142.567764,157.683472,174.733047,188.708252,201.419006,199.195862,185.476852,164.989243,145.980988,134.700012,131.592575,126.700020,96.931419,82.493408,98.435555,109.617371,78.774399,38.923161,16.503323,11.518201,12.735555,8.874395,11.069438,8.638857,6.078523,0.518184,0.276862,0.452893,0.589257,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602122.155000,4612485.550000,6900,4505,107.274399,150.935547,163.042984,149.497528,136.935547,126.323982,125.538864,122.357040,121.233078,124.687622,125.290924,135.935547,152.811584,168.985138,181.447937,192.902496,193.819839,183.778519,162.423157,141.224808,130.580185,125.150429,120.200020,92.447952,76.150429,93.009933,107.935555,79.166969,38.042995,15.314067,10.927292,5.452904,9.772742,8.526460,9.252079,2.942157,0.814879,0.441324,0.000000,0.000000,0.000000,0.085124,0.019835,0.275207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602129.355000,4612485.550000,6936,4505,90.491760,149.921509,154.285156,149.971100,134.863663,125.169441,122.863655,119.500015,118.359520,120.772743,121.392578,132.210754,149.673584,165.086807,177.904968,189.797531,190.764481,180.582657,158.285156,138.425629,127.789276,122.219025,116.954559,90.318199,75.219025,93.301666,105.871918,79.144646,36.533077,14.252083,10.632251,6.448773,6.958691,8.957867,6.470258,3.116537,0.521490,0.238844,0.000000,0.079339,0.000000,0.000000,0.614877,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602136.555000,4612485.550000,6972,4505,98.743828,150.421509,159.685974,150.834732,136.628113,127.933891,124.239677,122.867775,121.264473,122.636375,124.785133,134.545456,152.785141,167.561996,179.355377,191.082642,192.190079,181.809921,160.090927,140.413239,130.743805,124.884308,120.181824,92.504143,76.801666,93.148766,108.586784,81.008278,38.256214,15.463655,10.925639,6.746294,9.044642,10.394231,9.385962,4.081827,1.039673,0.097522,0.691737,0.187604,0.045455,0.000000,0.070248,0.129752,0.000000,0.000000,0.000000,1.473554,0.000000,0.000000 -602141.355000,4612485.550000,6996,4505,104.503326,148.643814,158.511597,148.949600,134.668610,125.098366,122.701675,120.255394,119.023987,119.784317,122.048782,133.057037,149.619034,165.288452,178.172745,189.362823,189.536377,180.230591,158.123154,137.916550,127.585968,123.081841,117.718201,90.627289,74.453735,91.205803,106.164482,80.338036,36.164486,13.598362,10.701672,6.218193,7.923154,9.461998,7.918194,3.622322,0.656200,0.166117,0.000000,0.038017,0.000000,0.175207,0.282645,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602147.755000,4612485.550000,7028,4505,103.342163,144.945480,157.598373,149.069443,134.838028,126.028107,122.160339,120.292572,118.838028,119.879349,121.350426,131.961990,150.119034,165.639694,178.135559,188.780182,189.366959,178.259521,157.771927,136.970261,127.135551,122.185135,115.309105,88.945465,73.284309,92.267776,105.185135,79.995056,39.300842,15.219851,10.482665,6.419021,8.813238,7.844642,8.398360,3.638852,1.058681,0.309918,0.109091,0.106612,0.047108,0.000000,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602150.555000,4612485.550000,7042,4505,99.338867,145.338852,158.024811,145.793396,132.297531,123.041336,120.479355,118.462830,116.404976,118.173569,119.190102,130.785141,147.834732,163.082642,175.355377,186.586777,186.479340,176.479340,155.710754,135.876053,124.983490,121.396713,115.090927,88.305801,71.669441,91.438034,105.157043,80.347122,37.066135,13.740513,10.462831,6.470260,8.994229,8.525635,7.256210,5.010754,0.702483,0.128926,0.052066,0.324794,0.457025,0.000000,0.066942,0.305785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.555000,4612485.550000,7057,4505,94.109108,148.274384,156.381851,145.530594,132.307449,122.175224,119.456215,116.323982,113.844643,114.018196,115.976875,127.142166,145.241348,161.233078,173.563660,184.712418,184.712418,174.828125,153.381851,133.621506,123.671089,118.596710,111.109108,85.522331,69.299194,88.935555,105.497536,78.315720,34.505802,13.611588,10.100846,6.057036,7.676873,9.116544,9.140510,4.089264,0.600002,0.467770,0.000000,0.062810,0.122314,0.000000,0.188430,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.555000,4612485.550000,7082,4505,82.129768,141.319839,155.617371,143.476868,131.716537,120.782661,118.658707,114.790924,113.733078,113.352913,115.823975,126.261993,144.766129,159.650421,172.344635,183.253723,183.840500,174.675217,152.675217,133.055374,121.782661,117.650429,110.427292,84.592590,67.261993,88.187622,106.576050,77.295067,35.939690,12.722331,10.038861,3.706622,7.121500,7.782657,7.704144,3.304968,0.591737,0.585125,0.120661,0.192563,0.047934,0.000000,0.043802,0.509918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.155000,4612485.550000,7120,4505,91.642998,152.304138,153.659515,145.957031,130.353745,121.519028,116.568619,114.378532,112.502495,112.841347,113.221512,125.833084,142.758698,159.031418,171.122314,182.758682,182.403305,172.039673,152.147110,132.609940,121.783493,117.304153,110.072739,83.081017,68.279358,88.609940,105.064476,80.006638,35.791752,13.163655,10.006630,4.671909,7.516542,8.100842,7.613236,3.158687,0.756201,0.119009,0.347108,0.023967,0.261157,0.000000,0.126447,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602174.355000,4612485.550000,7161,4505,123.918190,160.496704,157.926453,147.909927,132.025620,123.819016,117.347939,113.554550,111.959511,112.538025,113.257027,123.612404,140.711578,155.686783,167.893402,180.273560,179.430588,169.009109,149.339676,130.190918,118.124802,115.422318,108.918190,82.571098,66.686790,86.083481,102.835548,76.744652,34.166138,12.480183,9.901671,6.491746,6.941336,8.843817,7.386789,2.900007,0.751243,0.064464,0.000000,0.117356,0.076033,0.000000,0.247108,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602181.555000,4612485.550000,7197,4505,167.062012,173.202515,171.681030,150.590103,129.019852,122.119026,123.557045,122.085968,122.590103,124.656219,123.656219,131.251266,145.094238,156.970276,165.392593,174.500015,172.723160,162.516556,142.772751,126.037209,114.804138,111.994225,106.936371,81.333069,64.647125,84.614059,101.531418,73.862007,34.807457,12.736381,9.721506,13.999187,14.947948,19.442989,22.174397,17.353729,13.280170,16.876863,15.703309,17.508265,19.659506,17.146282,17.101656,17.938017,13.969422,13.904960,19.789257,17.428926,19.200827,12.534711 -602204.555000,4612485.550000,7312,4505,129.580170,172.485138,160.658691,146.212418,129.402496,115.832245,113.989265,109.625633,107.633896,107.724800,107.782654,119.666954,138.981003,155.270279,169.278519,182.947937,183.096710,171.757874,150.749619,130.270264,118.526459,114.452072,108.154556,76.551247,61.262001,80.303314,103.427284,76.840508,35.055393,14.385968,9.832251,10.066130,7.733900,8.833898,11.471090,5.924802,0.871076,0.331405,0.327273,0.054546,0.000000,0.000000,0.000000,0.000000,1.414050,0.000000,0.000000,2.117356,0.000000,4.093389 -602210.755000,4612485.550000,7343,4505,115.233070,161.993393,161.315720,145.084305,128.489258,118.348770,115.869431,111.728935,110.026459,111.555382,111.290916,123.249588,142.728943,159.266129,173.621490,186.629761,187.795044,176.381821,155.100830,133.067780,120.819839,117.125633,109.927284,79.125633,62.919029,81.976868,102.604965,75.133904,33.795059,12.388447,9.993407,8.182658,7.630594,7.731419,8.673567,4.569428,0.789258,0.116529,0.144628,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,1.060331,0.000000,0.000000,0.000000 -602220.555000,4612485.550000,7392,4505,103.042999,160.111588,160.838852,145.739685,128.830597,118.574402,116.169441,111.582664,110.359520,111.128113,112.169441,124.086800,142.781006,160.822327,173.946304,187.276855,189.045456,175.995880,154.260345,132.409119,121.590935,116.293404,110.590927,80.144646,62.971096,81.103325,101.747948,74.706635,33.276878,13.078531,10.053739,6.919847,6.669436,8.061997,8.389271,5.356206,1.506614,0.000000,0.199174,0.331405,0.190083,0.400827,0.272727,0.000000,1.431405,0.000000,0.000000,0.000000,2.509091,0.000000 -602235.755000,4612485.550000,7468,4505,104.035553,151.472733,156.133896,143.472733,127.712410,117.034721,115.100838,112.332245,111.133896,112.563644,113.315712,124.894234,144.191742,159.580170,173.183487,185.728943,186.224808,175.489273,153.051254,132.547119,120.447952,117.191750,110.109100,81.919022,64.439690,81.530586,99.241341,71.910751,32.976879,12.462002,10.009936,8.401667,7.323156,7.433071,9.190098,4.996702,0.328100,0.152893,0.204133,0.114050,0.090083,0.000000,0.000000,0.000000,1.353719,0.000000,0.000000,0.000000,0.000000,0.000000 -602259.555000,4612485.550000,7587,4505,99.187622,158.344635,158.055374,146.534714,131.981003,123.939682,120.708275,117.766129,116.757858,118.187614,119.700012,131.080170,150.460342,167.766129,180.394226,191.146286,193.295044,181.295044,157.121490,134.997528,124.782654,120.113235,114.427284,85.270256,69.319855,85.038849,98.972740,69.559525,33.278534,12.789273,10.402498,7.957865,8.811586,8.827288,8.817370,4.403313,1.283475,0.524795,0.000000,0.054546,0.467769,0.178513,0.000000,0.000000,0.000000,0.000000,1.268595,1.064463,2.431405,0.000000 -602276.755000,4612485.550000,7673,4505,106.294228,156.295883,157.791763,146.692581,131.642975,120.519012,118.229759,116.238022,114.775215,116.196701,116.733894,128.138855,147.527298,164.262833,177.444656,188.601669,190.519028,179.965317,156.147125,134.361984,123.709099,118.899178,112.890915,83.452904,66.585144,83.915718,97.651253,70.676048,34.461174,13.439687,10.262829,6.777699,8.104975,9.102493,8.923155,3.918188,0.508266,0.395869,0.089256,0.293389,0.000000,0.097521,0.000000,0.000000,5.680166,1.334711,0.000000,0.000000,2.300827,0.000000 -602284.355000,4612485.550000,7711,4505,109.453720,157.505798,159.753723,145.257858,129.778519,120.282654,116.753731,113.257858,113.191742,114.018188,115.613235,126.943810,146.505798,163.365295,177.514053,189.398361,190.233063,178.638031,156.381821,134.811584,122.662819,119.067780,113.381828,83.323975,65.927292,83.216537,98.216537,71.604965,34.158699,12.999192,10.307457,8.048774,9.149603,9.380179,10.866131,6.565298,0.912398,0.485952,0.038017,0.059504,0.128926,0.386777,0.000000,0.000000,2.847934,0.000000,0.000000,0.945455,0.000000,0.000000 -602290.155000,4612485.550000,7740,4505,109.729767,155.490082,155.258682,138.556198,124.217369,113.597534,111.680183,109.490097,108.696709,110.812408,111.291748,122.870262,142.027283,160.490082,174.845459,186.019012,188.341324,177.291748,154.440506,132.043823,120.266960,116.820679,110.572739,81.886803,63.514896,80.556221,96.564476,71.316544,32.308285,12.381837,10.052085,6.214059,8.187618,8.048772,9.539684,4.482652,0.749588,0.301654,0.340497,0.000000,0.050414,0.196695,0.000000,1.431406,0.000000,1.338843,1.152066,1.125620,2.328926,0.000000 -602296.555000,4612485.550000,7772,4505,122.447121,156.061996,150.946304,137.194229,121.830597,110.144646,107.706627,104.962830,104.367783,107.194229,107.144646,119.070267,138.177704,155.772751,169.756210,182.169434,184.219025,173.152908,150.706635,129.144638,117.392578,113.318199,108.863655,80.095055,60.838863,79.185966,94.433899,69.128120,32.838860,11.833902,9.896713,7.790922,8.522328,9.173567,11.481832,4.887610,1.437194,0.791738,1.013225,0.183472,0.477687,0.000000,0.000000,0.000000,0.000000,2.757851,0.000000,2.898347,1.104132,0.000000 -602302.155000,4612485.550000,7800,4505,130.917358,157.866119,149.676041,133.684311,120.114059,108.684303,106.081001,103.122330,103.163651,105.213226,105.758682,117.072731,136.601654,154.114059,169.122314,181.370255,183.213226,173.800003,150.659515,128.039673,116.659508,113.370255,109.254555,79.957039,60.370266,77.965302,92.808281,68.890923,31.948778,11.653737,9.932250,8.552081,8.903320,9.400843,9.591750,6.438028,1.262815,1.178516,0.391737,0.427274,0.167769,0.333885,0.733885,0.801653,0.000000,5.064463,5.338844,3.731405,2.308265,2.124794 -602305.355000,4612485.550000,7816,4505,149.517365,160.588440,148.547119,134.084305,117.398354,106.497528,103.142159,101.249596,100.100838,103.191742,103.662819,114.828110,134.390091,151.067780,166.398346,178.067780,180.299179,170.158691,147.968597,126.348770,113.472740,112.183479,106.654556,77.398361,59.373577,76.538864,91.770256,67.059525,31.208284,11.178530,9.695888,8.608278,9.329766,11.581007,10.933072,7.614888,2.752900,0.710748,0.814878,0.776861,0.271075,0.547108,1.411571,0.802480,8.773555,9.753720,4.209091,3.712397,4.425621,6.093389 -601113.155000,4612475.550000,1855,4555,124.601677,122.452072,107.617363,93.270256,77.352905,66.485138,63.237209,58.733078,58.815720,58.774399,59.104977,71.402496,93.666954,110.071907,123.113235,130.733063,131.253723,123.369431,108.989265,92.038849,82.220673,80.567780,76.518196,44.022335,25.614069,50.807461,82.923149,67.700012,30.270267,6.601665,6.956217,19.657869,10.174396,18.834728,25.647953,24.079355,8.014061,3.523146,2.725625,2.710747,2.707441,1.944631,2.871903,4.479342,58.995052,38.481003,25.354553,16.055378,21.076864,10.146282 -601116.155000,4612475.550000,1870,4555,115.972748,126.355385,110.190109,97.322327,81.454567,70.991753,66.537209,62.925636,62.413239,61.322330,62.322330,72.859528,93.586792,110.702507,123.024811,131.644638,131.933899,124.867783,109.347130,91.396713,79.504158,78.793411,74.090935,42.016552,23.479357,48.330605,77.900848,63.578529,29.478531,9.177700,6.735556,21.142166,11.976051,17.428942,23.503323,25.381008,10.990097,4.426454,3.961163,2.960335,1.535539,0.766944,3.788432,2.843806,52.204144,41.485134,24.556202,16.134716,18.230581,18.893389 -601119.355000,4612475.550000,1886,4555,117.278519,124.303314,108.038849,95.452072,80.096703,68.146301,63.906628,60.253738,58.865307,58.385967,58.658695,70.947945,92.121506,109.625633,122.625633,131.195877,131.088440,124.865295,108.914886,91.402496,80.675217,78.212410,72.972740,39.509937,21.964483,46.650433,77.022324,63.567787,28.166136,7.673566,6.633903,16.499191,11.138859,17.554567,21.004980,25.077703,10.294229,4.406619,3.895047,1.747937,1.739673,1.838020,3.588432,1.821491,50.618191,47.349598,19.779345,17.605791,26.518185,39.625622 -601122.555000,4612475.550000,1902,4555,149.774384,129.138031,112.419022,99.071907,82.319847,70.724800,66.129776,62.551262,61.262005,61.104980,61.030602,73.542984,94.328110,112.518188,125.584305,135.757858,136.518188,128.898361,111.799187,93.319847,82.344635,80.650421,75.336372,42.195889,24.814070,48.509937,77.220673,60.311592,28.303324,7.717369,6.848780,16.126463,12.166959,15.579355,21.590101,22.378531,8.752079,3.307444,2.682650,1.239672,1.628928,1.011572,1.138844,3.948763,61.961994,35.714886,23.044634,17.882650,17.931408,31.280996 -601125.755000,4612475.550000,1918,4555,128.879364,126.218193,111.383484,95.606621,79.681000,69.796707,64.457870,60.457870,59.581837,59.565308,60.044647,71.796707,92.788445,110.085960,124.276047,133.540512,135.152084,126.970261,110.631416,92.771912,82.375221,79.780174,75.400017,42.817375,22.672745,49.276051,80.557037,62.168613,27.841341,7.290094,6.854564,18.073570,10.657867,16.411589,20.793407,25.514067,12.052081,4.758685,3.334716,2.711574,1.536366,2.398350,5.654549,3.541325,56.062820,39.409927,25.748770,17.203310,14.379342,31.480167 -601128.955000,4612475.550000,1934,4555,139.844650,125.344635,108.708275,96.080177,80.733078,70.526466,66.625641,61.890099,60.220680,61.468613,60.981010,73.402496,93.567787,110.509926,123.989265,133.443817,135.245468,127.815712,112.154556,94.022324,85.179359,82.642166,78.972748,46.352909,29.493408,52.038860,82.592583,64.865311,29.542995,7.480178,7.179358,18.571091,10.952082,18.240513,25.689274,28.804153,12.903318,5.085130,3.623973,2.880169,2.009921,1.447110,7.887608,3.371078,54.554550,45.532238,30.530584,19.730585,19.193394,19.507439 -601132.155000,4612475.550000,1950,4555,124.015717,119.111588,104.871918,93.020676,78.169441,67.772743,64.144646,60.235558,59.392582,60.491756,61.053738,72.285149,92.979355,109.681831,123.268608,133.475220,134.714890,127.483490,109.458694,93.235550,83.797539,82.458694,78.409103,45.904976,27.070269,51.797543,82.210762,64.714890,30.747953,6.622326,7.128119,18.313242,12.146297,17.078531,23.709936,29.285143,13.579355,7.366951,4.962818,2.461987,2.785129,3.018184,8.515707,2.409920,77.142159,61.235550,32.749596,25.171911,21.595045,24.918184 -601135.355000,4612475.550000,1966,4555,119.354568,123.178535,107.104156,94.657875,78.451263,69.178535,65.112411,62.831421,61.228115,61.657867,62.401669,74.343826,94.087624,111.525635,123.476044,132.748779,134.583496,127.856209,110.591751,92.244652,82.269440,81.137215,75.963654,45.922333,26.234730,50.285969,77.666138,62.327290,27.195059,7.287616,6.905804,18.037207,11.276875,16.739687,23.224812,26.364479,11.935552,4.588438,4.711577,3.272731,1.557853,4.166946,6.702483,4.614879,49.948769,49.447117,38.252903,20.706619,21.971079,32.454548 -601138.555000,4612475.550000,1982,4555,138.569443,119.486786,103.230591,91.147957,75.726463,65.338036,62.759525,59.114895,58.676880,59.453739,59.809109,72.354568,90.809113,108.189270,121.792572,130.718201,132.453735,124.825630,109.833893,91.552910,81.850433,80.247124,76.900017,45.767788,28.048780,51.032249,81.362831,64.420677,29.346300,7.134723,6.990929,18.877701,14.071917,19.858696,27.809935,32.167786,11.127288,3.848767,4.803313,2.967772,1.869425,4.490087,10.232237,3.438845,60.004139,64.603325,28.515715,15.671907,23.342154,40.515705 -601141.355000,4612475.550000,1996,4555,97.690926,102.309113,83.309113,69.496704,57.747124,48.305801,46.329769,43.475224,42.619850,43.971092,43.781010,52.920677,69.069443,82.661995,93.895889,101.565308,103.780182,98.160347,84.490929,71.771919,63.780182,61.133900,59.409103,34.669434,18.041338,38.618202,72.783493,65.444641,30.742165,7.187615,5.400844,19.688446,13.695885,24.139685,31.619026,38.339687,17.114063,7.476868,5.772733,6.481822,5.043807,6.355376,12.672733,7.096697,65.437202,44.714062,33.852901,28.977697,35.998352,53.899181 -601236.355000,4612475.550000,2471,4555,170.716553,155.865311,132.972733,118.683479,101.344643,90.567787,88.700020,84.700020,84.460350,86.873573,87.088448,99.369438,118.295052,136.666946,148.972748,160.394226,161.526459,149.419037,128.766129,109.237206,98.485138,96.542984,88.790924,61.956215,43.005802,60.642166,81.633904,58.931423,26.704977,9.304146,8.071920,17.504148,12.601669,14.014893,13.623158,12.671914,6.261993,4.545463,3.642155,2.459508,2.258682,4.790916,10.368600,7.609927,85.048775,60.780178,37.445461,24.166121,31.151247,31.337193 -601240.355000,4612475.550000,2491,4555,176.583496,156.674408,140.798355,122.674393,105.500839,93.831421,93.451256,89.707458,89.467781,90.616539,92.120674,103.723976,123.038033,140.343811,153.443008,165.145477,165.335571,153.839691,132.533890,112.442986,101.195053,99.112411,92.236374,64.104149,47.310760,64.120682,82.930603,62.054562,29.368612,11.561173,8.385143,17.925636,11.112413,14.826462,12.490099,11.018195,3.568603,1.036368,2.382649,1.644631,1.429754,2.676864,2.680170,5.531412,34.802483,38.213230,27.177691,18.522318,33.766949,30.980993 -601245.155000,4612475.550000,2515,4555,167.151260,159.083466,136.331436,124.496704,107.083488,94.984322,94.091759,89.984322,90.984322,91.942993,92.504982,104.504982,123.835548,140.860367,154.637192,165.347931,165.860321,154.232224,132.083496,112.405807,102.083488,99.389275,94.009109,64.257042,46.017372,62.736382,79.571106,58.785969,25.777702,9.813238,8.546301,13.488446,8.328938,10.148774,12.219024,6.617366,1.463642,1.494218,0.280167,0.222315,0.494216,0.504959,0.775209,2.128928,20.674383,14.801655,16.736366,14.800002,9.235539,13.759505 -601251.155000,4612475.550000,2545,4555,145.358688,160.889252,140.509094,127.715714,112.616539,99.269440,98.996712,96.302498,95.889275,97.294235,97.666138,108.806625,128.004974,144.690903,159.426437,170.657852,170.500839,159.525620,137.095871,118.153732,107.178528,104.600014,99.054565,68.831429,50.385139,67.558693,84.492584,60.310760,26.085968,9.381005,9.004977,14.299190,10.033071,9.652081,11.086791,6.271083,1.771906,0.376035,0.683472,0.309918,0.607439,0.376033,1.187605,0.799174,17.650415,13.083472,9.337193,11.114052,13.369424,12.815703 -601259.955000,4612475.550000,2589,4555,140.507462,165.130585,148.923981,135.750443,119.163651,106.353737,107.353737,104.089272,103.932243,106.957039,105.378525,118.246292,136.717377,153.419846,166.890915,177.990082,178.361984,166.667770,145.097534,125.461174,114.345467,113.419846,107.345467,77.915726,59.147121,73.287628,87.618195,66.039688,29.188448,12.519026,9.758697,14.640514,10.739684,11.311587,11.871092,6.172737,0.995044,0.635539,0.718183,0.447109,0.409091,0.000000,0.136364,0.000000,5.496695,2.978513,3.225620,8.324795,3.177686,5.857852 -601271.955000,4612475.550000,2649,4555,146.501663,176.711578,150.752899,141.860336,123.876869,111.488441,111.331421,109.215714,110.149597,114.273567,112.166130,124.257034,140.769440,159.033890,173.215714,186.347946,185.488449,174.356216,151.728119,131.587616,121.215714,119.240509,113.918198,83.852081,66.215714,79.769432,92.562820,68.199188,29.471922,12.604976,10.356217,15.766960,9.004972,11.167785,11.909934,7.790920,1.233062,0.333885,0.309919,0.457852,0.040496,0.218183,0.064463,0.000000,5.585125,1.130579,1.641323,3.446281,0.000000,8.228927 -601288.955000,4612475.550000,2734,4555,154.400848,183.169434,160.086777,149.367767,131.061996,117.913239,116.781006,116.045471,115.764481,122.747948,118.623985,128.929764,146.095062,164.128098,178.863647,190.152908,190.541336,176.665283,156.128098,136.053741,125.293404,123.202492,118.045471,87.880180,70.169441,85.376053,96.549606,66.739685,30.747952,13.800018,10.731423,16.465305,8.716541,9.941336,10.934725,5.655379,0.933889,0.416530,0.495043,0.157025,0.118182,0.000000,0.000000,0.000000,1.167769,4.685951,0.000000,0.000000,3.718182,2.148760 -601313.955000,4612475.550000,2859,4555,101.482666,153.930588,150.244644,143.038025,128.616547,119.963654,117.773575,115.261177,115.757050,117.550438,119.657875,129.765305,146.641342,163.170258,177.128922,186.864456,188.657852,178.492554,155.104141,135.467789,126.128944,121.881012,115.690933,88.252914,69.409943,84.120682,93.442993,68.806641,30.393406,10.281009,10.517374,4.951250,6.761170,7.339681,8.002492,3.509097,0.381820,0.166943,0.118182,0.123967,0.181819,0.258678,0.000000,0.000000,1.976033,0.000000,0.000000,0.000000,0.000000,0.000000 -601336.155000,4612475.550000,2970,4555,108.408279,156.414062,156.199188,145.265305,132.843811,122.827286,120.670258,119.604149,117.926460,121.042160,121.926460,132.686783,149.686783,164.612411,177.769440,188.207428,190.901657,180.934723,157.314896,136.620667,127.843811,122.893402,117.009102,90.050423,70.876877,84.306633,97.091751,69.232254,31.959522,11.419853,10.637209,6.641333,8.814066,9.631417,8.802492,4.042984,0.609092,0.540497,0.159505,0.081818,0.033884,0.065290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601349.355000,4612475.550000,3036,4555,104.523155,153.212418,156.171097,145.832260,134.642166,125.650421,122.096703,121.419022,120.931412,123.228935,123.807449,133.567780,150.352921,166.278534,178.394226,190.716522,191.014038,182.377701,158.518204,137.923172,127.766129,124.485130,117.881828,91.741333,71.757866,86.857040,96.757858,70.906631,32.895885,14.012414,10.716547,5.506621,10.171915,7.359516,9.683485,3.012403,0.957027,0.319009,0.028926,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.019835,0.000000,1.134711,0.000000 -601362.955000,4612475.550000,3104,4555,112.575226,162.894226,157.142151,148.423157,135.538849,124.398361,122.423157,121.348778,120.348778,123.224808,123.935555,134.365311,150.737198,166.009933,178.795044,190.745468,192.927277,183.191742,158.720673,138.960342,128.456223,123.968613,117.836380,90.547127,72.712418,87.348778,97.489273,70.274399,31.635557,14.057869,10.712417,5.376868,7.983485,8.073566,8.622327,3.762816,0.963638,0.283472,0.359505,0.183472,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,1.052066,0.000000,0.000000,0.000000 -601370.955000,4612475.550000,3144,4555,157.838837,196.739670,170.574387,164.070251,144.285126,133.979355,132.524811,131.433899,132.194229,138.797516,133.392578,144.524796,160.896698,179.847107,192.111572,206.152893,205.880173,191.359497,168.888428,149.871902,137.483475,136.260345,131.045471,101.301666,83.524818,99.607452,105.161171,75.095055,34.557877,15.461175,11.913242,12.624809,9.792578,10.087619,11.791751,4.885959,1.316531,0.265290,0.062810,0.075207,0.067769,0.000000,0.000000,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601374.555000,4612475.550000,3162,4555,130.039688,184.725632,171.667770,163.238037,146.213242,132.932236,132.461166,130.973557,132.080994,138.750443,133.833069,145.345459,161.452911,179.279343,193.147110,206.576859,206.345459,192.221497,170.006638,149.510757,139.204987,136.419846,131.072739,101.130592,84.064476,99.097534,105.262825,74.312408,35.279358,15.592580,11.915722,11.453733,9.087620,10.557867,9.405801,4.967779,0.621489,0.165290,0.263637,0.004132,0.148761,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.955000,4612475.550000,3179,4555,132.761169,188.033920,169.124802,160.281830,144.546295,132.290100,132.595886,130.215714,129.794235,136.405792,133.190918,144.314896,160.496704,178.372757,191.414078,204.215729,204.083496,191.835571,167.959518,148.562820,137.025635,134.662003,130.827286,99.538040,82.042168,96.777710,103.670258,74.852089,34.967785,13.421505,11.893409,9.567783,7.875221,8.341337,9.370261,5.184307,0.460332,0.234711,0.633059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601380.555000,4612475.550000,3192,4555,137.111588,185.871918,171.979355,162.607452,145.450439,133.483475,132.871902,132.285126,132.665298,137.458694,133.681824,146.111603,162.276871,180.309937,194.037201,207.136398,207.053741,193.293411,169.714890,150.061996,140.194229,136.921509,132.227280,101.946297,84.764473,98.508270,106.376053,76.607445,36.797543,14.838861,12.020680,12.729769,9.200842,10.681006,11.436378,5.581827,0.327274,0.639671,0.298348,0.023967,0.104959,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601383.355000,4612475.550000,3206,4555,134.701675,179.900009,168.023972,159.222321,142.470245,130.040497,129.296692,127.990921,127.982658,133.023972,131.379349,142.164459,159.676865,177.114883,190.371078,203.536362,204.304962,190.238846,166.825623,147.048767,136.594223,133.817352,129.445465,98.511574,82.966125,95.585953,103.792564,72.313240,33.371094,12.904974,11.767787,8.800838,8.523983,8.085967,8.981832,3.249593,1.005787,0.033058,0.093389,0.000000,0.000000,0.000000,0.001653,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.955000,4612475.550000,3229,4555,121.432251,184.283478,165.671906,160.035538,143.969421,132.605789,132.886795,131.052078,131.473557,136.969421,134.019028,145.547943,160.903305,179.903305,193.258698,206.903305,206.242157,193.886795,170.514877,150.275208,140.068604,136.622330,132.390915,102.019028,83.977707,97.027298,105.936378,78.754570,37.027290,15.281010,12.035556,12.369437,9.139685,11.167785,11.310759,5.412406,1.155375,0.176033,0.373554,0.172728,0.000000,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601394.555000,4612475.550000,3262,4555,119.589279,173.300003,166.126450,157.878525,142.217377,130.713242,132.085144,129.250427,129.423981,133.547943,132.076874,144.919861,161.019012,178.192566,191.795868,202.928101,206.324799,192.597534,168.630585,149.440506,137.828934,135.845459,130.936371,100.490105,82.531425,94.994232,105.597542,76.878525,35.192581,13.687622,11.903325,10.622329,8.646297,9.734727,8.750424,6.751250,0.655374,0.000000,0.063637,0.176034,0.000000,0.000000,0.274381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601398.155000,4612475.550000,3280,4555,120.171921,181.692581,167.502487,158.287613,143.601654,132.560349,131.874390,131.114059,131.957047,134.642990,134.502502,145.304138,162.039673,178.733902,193.833069,206.238022,207.353729,194.775208,171.452896,150.824799,139.560349,136.304153,132.890930,101.304146,84.791748,97.907455,106.667786,78.312408,36.229771,14.004974,12.081010,10.065302,9.736380,10.306627,10.597536,5.203316,0.554547,0.159504,0.048760,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.047108,0.000000,0.000000 -601401.155000,4612475.550000,3295,4555,107.466957,169.797531,170.723160,158.152908,141.797516,129.921509,130.723160,129.367783,128.896713,132.582672,132.409119,144.814072,161.557877,178.268616,191.847122,205.053726,205.301651,193.061996,169.847137,148.516541,138.342972,134.714905,130.500031,99.723160,81.921501,96.615715,106.871918,76.557869,36.141342,13.470264,11.863655,8.989270,9.736381,9.146298,9.540510,4.580175,0.398348,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601405.355000,4612475.550000,3316,4555,116.807449,172.782669,168.509933,157.906616,144.997528,133.840500,133.542984,130.865295,131.014053,134.005798,134.344635,145.278519,163.542984,179.931427,192.766144,206.617386,207.691757,196.253738,171.774399,150.923172,139.485138,136.584305,132.881821,102.410751,84.303314,97.245461,107.154556,77.071930,36.840515,15.919853,12.080184,10.774395,8.900017,9.411587,9.188444,3.295049,0.444629,0.146281,0.071901,0.000000,0.001653,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601410.355000,4612475.550000,3341,4555,123.135551,174.152084,168.499191,161.408279,145.598373,134.317368,134.193405,131.961990,131.474396,134.135544,135.019852,146.606628,164.664490,181.152084,194.424820,206.986786,208.085968,196.904144,173.069443,150.598373,140.962006,137.342163,132.490921,102.482658,85.350426,97.292572,106.590096,77.945473,35.424812,16.037209,12.044647,10.311585,9.589272,9.923984,9.471914,4.157861,1.290085,0.126447,0.070248,0.054546,0.005786,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,1.519009,0.000000,0.000000 -601416.555000,4612475.550000,3372,4555,126.136375,175.582657,170.252075,158.657043,143.681839,134.541336,133.334732,130.962830,130.549606,134.020676,134.293411,146.095062,163.607452,178.946304,191.731415,205.417374,207.756210,196.028946,171.433899,150.028946,139.392578,136.690094,131.318192,101.623985,83.078529,96.830597,106.020676,76.417381,36.491756,14.928118,11.938035,10.022328,8.242165,10.164479,9.981833,3.998356,0.624794,0.277687,0.123967,0.000000,0.139670,0.000000,0.070249,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.555000,4612475.550000,3387,4555,121.730598,170.788452,168.259521,160.391754,144.573563,134.763657,134.003326,131.433075,131.681015,133.623154,135.408264,146.755371,163.945480,180.871094,192.829773,206.606644,207.771942,197.036377,170.962006,150.697540,140.094223,137.408264,132.218201,102.259521,85.590103,98.573570,108.449608,77.457870,36.961998,18.474398,12.019853,10.523154,10.242167,10.864479,9.458691,4.369430,0.546282,0.460332,0.059504,0.274380,0.064463,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.355000,4612475.550000,3406,4555,115.495064,166.933060,171.776031,158.362808,143.966125,132.916550,133.255386,130.941345,130.751251,134.181015,135.280182,146.197525,163.742981,179.668594,192.966125,204.784302,207.453720,195.354553,171.147934,149.222321,139.379349,136.090103,131.445480,102.032249,83.114899,98.445473,106.453735,76.908287,36.238857,15.630596,11.949605,11.279352,9.491753,10.258695,11.077702,4.216537,0.752068,0.201654,0.128926,0.000000,0.000000,0.000000,0.025620,0.065289,0.000000,0.000000,0.000000,3.017356,0.000000,0.000000 -601426.355000,4612475.550000,3421,4555,105.258690,166.506622,171.060364,157.828934,144.159531,134.324814,134.176041,130.994232,131.159515,133.101669,134.795883,145.820679,162.845459,179.713242,192.390915,205.382645,207.184311,196.200836,171.374390,149.787628,139.217377,135.589279,131.845474,101.242165,84.250427,95.547943,106.209106,75.738029,37.052086,14.710762,11.985969,8.952080,8.343819,9.486794,10.191751,3.047114,0.365290,0.419836,0.188430,0.247934,0.000000,0.000000,0.054546,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601429.955000,4612475.550000,3439,4555,116.666130,166.071091,168.095886,157.980179,145.781830,133.947113,132.773560,132.137207,131.492569,133.864471,135.236374,146.657867,164.666122,181.013229,193.690918,207.079346,209.360336,196.980179,172.352081,150.690918,138.674393,135.723984,131.781830,102.988441,84.517365,98.104149,108.269432,77.195053,35.566963,15.060349,11.980185,10.309105,8.704148,11.071091,9.820676,4.484306,1.125622,0.177686,0.423142,0.142975,0.003306,0.000000,0.010744,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.755000,4612475.550000,3468,4555,114.127281,170.317352,170.482651,158.978516,144.110748,134.284302,133.160339,132.052902,132.738846,133.755386,135.631409,146.796692,164.366943,180.515701,194.292572,206.251266,208.366959,197.143799,172.598343,151.333893,139.796692,136.218185,131.581833,102.433067,83.887611,98.342155,107.515717,77.325630,36.672745,14.381836,11.962002,7.971913,8.729769,10.119024,9.612411,3.845464,0.941324,0.036364,0.000000,0.005785,0.014877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.555000,4612475.550000,3497,4555,125.787628,159.961182,168.845474,158.886795,142.101669,133.052078,133.349594,131.366135,131.407455,133.341339,135.795868,145.523163,163.572754,179.688446,194.035538,204.432220,207.754532,197.952896,172.490112,150.572754,140.448776,136.795883,131.663651,102.688446,83.333084,96.374397,108.291748,75.862007,36.076878,14.237206,11.969441,8.561996,8.266958,9.852909,9.957868,4.466126,0.856200,0.770249,0.064463,0.000000,0.000000,0.000000,0.000000,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.755000,4612475.550000,3513,4555,121.405792,167.463654,170.223969,158.852066,144.017349,135.281830,133.909927,132.661987,132.414047,134.306610,136.703308,148.728088,164.752899,180.703308,195.918182,206.976028,210.033875,198.661987,174.835541,152.174377,141.257019,138.422318,132.372726,102.918198,84.744644,99.364479,107.595879,78.852081,36.951256,15.125638,12.033902,8.947120,10.097539,9.707455,11.716545,5.619844,0.776035,0.000000,0.219835,0.062810,0.000000,0.000000,0.000000,0.000000,2.570248,1.190083,0.000000,0.000000,0.000000,0.000000 -601451.155000,4612475.550000,3545,4555,117.706627,166.334717,167.260330,156.723145,143.822311,135.235550,133.342987,131.500015,131.764481,133.921509,135.690094,147.252060,165.053726,182.342972,195.880173,209.243805,211.516525,199.334717,175.219009,152.690079,143.144623,139.582642,133.136383,103.921501,85.136383,100.161171,108.888443,79.161171,36.268612,16.059523,12.103325,9.219023,9.142166,9.021503,7.304146,5.125630,1.488433,0.090909,0.316530,0.000000,0.023141,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.555000,4612475.550000,3572,4555,113.108276,163.240509,168.554565,158.645462,145.166122,135.909927,134.339676,132.587616,132.992569,135.298355,137.347946,149.083481,166.736374,182.835556,196.728119,209.752899,211.794235,201.058685,176.430588,153.356216,143.298355,139.587616,134.918198,106.133072,86.182655,101.670258,110.166130,78.728111,37.752914,16.608282,12.265308,10.617369,10.833901,10.384314,8.928114,4.872737,0.940498,0.229753,0.179339,0.022315,0.087604,0.000000,0.008265,0.244628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612475.550000,3587,4555,117.688446,165.837204,167.250427,158.176041,142.366119,134.126465,132.977707,130.895050,131.506622,133.233902,135.944641,147.035538,165.861984,181.713226,196.870255,208.944641,211.349594,200.870255,175.134720,151.994217,142.134720,138.275208,134.572739,103.928116,84.961174,100.539696,107.638855,78.333084,36.432255,16.066959,12.233904,7.599185,10.138034,9.448777,9.842164,4.025630,0.859506,0.201654,0.113223,0.269422,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.755000,4612475.550000,3608,4555,122.996704,160.674393,168.897537,157.252899,144.757034,134.451248,133.600006,131.170258,132.476044,134.806625,137.343811,148.211578,166.021500,182.723984,197.071091,209.649597,212.790100,201.236374,175.120667,154.740509,142.170258,140.558685,134.236374,105.294228,85.600014,100.319023,109.368607,78.285965,36.897541,16.433075,12.203324,8.800839,10.303322,10.134727,11.178529,3.901660,1.320664,0.097521,0.183471,0.008265,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.555000,4612475.550000,3622,4555,116.291756,160.242157,167.423981,156.680176,143.795868,135.580994,133.308273,132.093399,131.952896,134.333069,136.176056,147.564468,166.258682,183.547943,197.440506,209.870255,213.167770,202.977692,176.688431,154.531418,143.300003,140.969421,135.209091,105.060349,85.886795,101.647125,111.349602,80.126457,38.523159,15.008282,12.291754,8.434724,9.003324,10.078529,11.009108,5.428108,0.380166,0.000000,0.065290,0.016529,0.000000,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,1.204132,0.000000 -601472.555000,4612475.550000,3652,4555,113.151253,160.217361,165.291748,158.076859,142.671906,135.225632,134.895050,133.729767,133.093399,136.019028,138.539673,148.390915,168.333069,185.118179,199.142960,211.738007,214.275192,203.795853,178.101654,155.572739,145.688431,141.374390,136.300003,106.093407,87.911583,102.233902,111.804146,79.324806,39.109936,16.277704,12.390928,9.314065,9.281836,9.758695,10.221503,4.154554,0.737192,0.316530,0.219836,0.069422,0.009918,0.000000,0.000000,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.155000,4612475.550000,3670,4555,116.571907,167.233063,169.249573,156.828094,144.150421,135.266113,134.662827,133.191742,133.357040,135.489273,136.844635,149.117355,166.976868,184.943817,199.348770,211.770264,215.092575,204.530594,178.357040,156.092560,145.282654,142.885956,137.745468,106.571907,86.034721,103.034721,111.902489,79.770256,37.604980,15.476877,12.522333,7.666128,10.017371,9.859521,10.735551,4.891744,0.719836,0.112397,0.194215,0.016529,0.008265,0.000000,0.000000,0.000000,0.000000,1.302480,0.000000,0.000000,0.000000,0.000000 -601480.355000,4612475.550000,3691,4555,112.065300,163.288437,168.321487,159.313232,145.668594,135.313232,134.585953,133.470245,135.676865,136.701660,138.759506,150.065292,167.900009,184.635544,199.883469,213.817352,216.858688,205.338013,180.685120,156.833893,145.974380,143.098343,138.172729,107.676872,88.098358,102.453728,112.594223,81.114891,38.404156,16.636381,12.561175,8.947121,10.073570,11.060349,9.273567,6.202491,0.828928,0.293389,0.130579,0.000000,0.020661,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.555000,4612475.550000,3712,4555,109.600845,159.956207,166.452072,156.336380,142.923157,133.898361,133.592575,131.576050,132.385956,135.005798,137.956207,148.228943,166.476868,184.138031,198.881821,210.675217,214.278519,203.799179,177.914886,154.708267,145.047119,141.146286,136.336380,105.873573,86.890099,101.228943,110.981010,79.237206,36.981010,13.651257,12.394234,6.701665,9.082661,8.764478,9.350428,3.360337,0.742977,0.063637,0.208265,0.000000,0.011570,0.000000,0.009091,0.082645,0.000000,0.000000,1.108265,0.000000,0.000000,0.000000 -601488.755000,4612475.550000,3733,4555,103.185966,159.632233,165.739670,158.119827,146.020676,136.557861,133.557877,133.243820,133.640518,136.053741,138.326462,149.367783,167.458679,185.433884,200.053726,213.541321,215.913223,205.599167,179.128098,156.847107,146.210754,142.483490,139.045471,107.227287,87.971092,104.037209,112.623985,81.210762,38.053738,15.255389,12.640515,8.390096,9.466134,10.925637,10.732246,5.548768,0.818184,0.052066,0.206612,0.000000,0.006612,0.090909,0.000000,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.555000,4612475.550000,3752,4555,116.108284,164.199188,167.835556,160.347946,146.298355,136.141342,134.323151,133.447113,134.876877,137.719849,139.133072,149.868607,170.066956,186.223984,200.777695,213.562820,216.686783,206.703323,181.620667,157.736374,146.926453,143.719849,139.372742,107.909927,87.984322,103.595879,114.066956,82.323166,38.356216,15.237206,12.670267,6.823153,10.623984,9.602493,9.686790,4.938850,0.481819,0.206612,0.350414,0.010744,0.011571,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.155000,4612475.550000,3770,4555,113.389267,161.984314,168.000839,158.182663,143.571091,136.463654,134.546295,133.017365,133.381012,136.157867,137.967789,148.604141,168.207458,184.959518,200.331421,213.546295,215.752899,206.273560,179.810760,156.893402,146.215714,142.232239,135.918198,106.628937,87.546295,101.116539,111.620674,80.595886,38.033901,15.076052,12.356217,8.616544,8.598365,8.823981,8.188443,4.096701,1.133887,0.143802,0.140496,0.076860,0.000000,0.000000,0.029752,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.955000,4612475.550000,3789,4555,118.451256,160.914062,170.285965,157.550430,145.674393,137.145462,135.542160,134.600021,135.277710,137.558685,139.690918,150.211578,169.409927,186.153732,201.798355,214.062820,217.112411,208.013229,180.674393,157.624802,147.558685,143.550430,139.418198,107.765305,88.707451,102.657867,112.757034,82.087616,39.145477,17.128944,12.674398,8.900013,10.271918,10.489273,9.692576,3.653728,0.765291,0.207439,0.166116,0.019009,0.014876,0.938844,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.355000,4612475.550000,3811,4555,104.444641,166.122314,168.543808,157.634720,146.023163,137.163666,134.857864,133.576874,134.816544,136.609940,139.676056,150.485962,168.370255,184.899200,200.593399,213.411575,215.717361,205.089264,180.271088,156.775208,145.560349,143.105804,137.163666,107.791748,88.147125,101.593407,111.700844,80.973572,37.287617,15.195886,12.469441,8.153731,9.184314,9.620677,9.371915,4.737198,0.790911,0.301654,0.145455,0.000000,0.014050,0.434711,0.000827,0.190910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.355000,4612475.550000,3836,4555,116.364479,165.050415,167.645447,160.414047,146.595886,137.678528,135.496704,133.769440,134.182663,138.488449,138.827286,150.504974,168.959503,185.942978,201.637192,215.281815,217.149582,206.430573,180.653717,156.686783,146.876877,143.381012,137.463654,108.116539,88.992577,102.447121,112.223976,82.166138,38.860352,16.698366,12.496712,6.764475,8.633075,9.871918,9.797536,4.667778,0.404133,0.066116,0.213224,0.143802,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.355000,4612475.550000,3851,4555,108.157867,165.794235,168.339676,157.703323,146.959534,136.356201,135.901657,135.281830,134.736374,138.868591,138.777679,149.819031,169.000824,185.769424,199.942978,213.240494,216.009094,205.232224,179.257019,156.976059,145.794250,142.422318,137.736359,107.868607,86.273567,101.579353,113.513237,82.174393,39.009113,16.420679,12.521505,5.933894,9.526463,9.462000,10.877701,4.181826,0.833886,0.070248,0.000000,0.132232,0.016529,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.155000,4612475.550000,3865,4555,98.140511,162.272720,167.570251,158.942154,145.363632,136.512390,134.851257,134.165298,134.454559,138.000000,139.421494,150.644623,168.165283,185.338837,201.082642,213.239670,215.165283,205.247940,179.157028,156.603302,146.338837,142.165283,135.545471,106.413239,86.231422,100.892578,110.892578,80.834724,39.082664,15.426464,12.322333,6.961168,10.081007,8.185140,6.770260,3.685958,0.590084,0.345455,0.464463,0.068595,0.131405,0.402480,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.155000,4612475.550000,3880,4555,138.686783,167.901672,167.232239,158.571091,146.967789,138.323151,134.695068,135.538040,134.182663,138.604141,139.538025,150.885132,168.819016,186.728119,200.587616,213.562820,216.223984,205.777695,179.579346,158.108276,146.157867,142.050430,137.100006,105.819031,87.298363,101.538033,111.141342,82.835548,40.042171,16.490927,12.463655,7.696705,8.894231,9.219026,8.886791,5.739679,0.414877,0.273554,0.889258,0.000000,0.014877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.955000,4612475.550000,3909,4555,112.399178,166.614059,168.423981,159.845459,147.142975,137.696701,134.134720,134.961166,134.093399,137.630585,139.663635,149.787613,168.142975,186.002487,200.647110,212.895050,215.093399,204.729752,179.878525,156.870255,145.184311,141.514877,136.754547,106.680168,86.126457,100.531410,111.217361,81.523155,37.250427,15.555389,12.432250,5.832242,9.252910,9.106629,7.921500,3.400007,0.760333,0.191736,0.004959,0.067769,0.020661,0.000000,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.755000,4612475.550000,3923,4555,123.758690,171.105789,167.056198,161.469421,149.337204,136.915710,135.667786,133.229767,135.485977,138.676041,139.833069,150.552078,168.238022,186.171906,200.262817,213.601654,216.072739,205.552078,179.221497,156.659515,146.510757,142.196701,137.709091,105.923981,86.337204,100.651253,112.502495,82.527290,38.056221,15.685142,12.519027,6.742160,9.834727,9.800841,8.979351,3.591742,0.936366,0.125620,0.002479,0.000000,0.000000,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.555000,4612475.550000,3947,4555,110.814064,169.714890,170.830597,161.450424,147.971085,137.326462,136.119858,135.095062,135.698364,139.450424,140.541336,150.475220,169.136383,186.665298,201.566116,213.425629,215.433899,206.227280,179.772751,156.466965,145.235550,141.764481,136.954559,105.995880,86.491753,100.723160,112.582664,81.615715,37.648781,16.165306,12.450433,7.324804,10.157868,10.502495,9.109933,3.478520,0.600828,0.219010,0.066942,0.141323,0.012397,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.555000,4612475.550000,3982,4555,129.798355,175.525635,171.963654,164.451248,150.319016,137.657867,137.442993,136.071106,136.814896,139.343811,140.947113,151.393402,168.707458,187.013229,201.327286,214.112411,215.095886,204.971909,179.360336,155.864471,144.723984,141.294235,136.236389,106.616539,85.641335,100.137199,110.748772,80.426460,38.426464,14.856217,12.385143,5.250422,10.079355,8.561999,8.838031,3.313230,0.523968,0.780166,0.465291,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.755000,4612475.550000,3998,4555,120.142998,172.514893,172.052094,162.746307,150.754562,138.457047,136.283478,136.324799,136.655396,139.828949,140.804153,151.597549,168.341339,187.721512,201.366135,213.490112,214.729782,204.589279,178.324814,156.126465,144.382660,140.911591,137.300018,106.655396,86.870270,99.357872,112.134735,81.390930,38.820679,15.533902,12.481838,6.830589,8.257041,9.494230,7.402492,3.360338,0.779340,0.015703,0.250414,0.000000,0.000000,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,1.394215,0.000000 -601545.955000,4612475.550000,4019,4555,117.679367,175.877701,171.456207,163.770264,149.224808,138.877701,136.505798,135.728943,136.555405,140.753723,141.398361,151.100830,169.034714,186.447937,201.216537,214.728943,215.737198,205.505798,178.968597,155.695877,143.795044,140.398361,137.109100,105.357048,85.638039,100.315727,110.869446,82.158707,37.753742,15.419851,12.464481,5.852903,9.563653,8.509933,9.100014,3.666121,0.359505,0.028927,0.075207,0.086777,0.025620,0.000000,0.107439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.955000,4612475.550000,4034,4555,128.419846,175.535538,173.676041,165.238022,150.965302,139.213226,137.659515,136.510757,136.965302,141.056198,140.874390,152.014877,169.957031,186.833069,201.444641,213.849594,214.725632,204.659515,178.163635,155.725632,145.072739,140.833069,136.618195,106.700836,87.072739,100.171913,108.915710,81.502495,37.642998,16.929770,12.419853,6.633069,9.900018,9.268611,9.212412,3.962818,0.054546,0.000000,0.146282,0.000000,0.015703,0.000000,0.023141,0.065290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.555000,4612475.550000,4047,4555,123.423164,181.332245,172.819839,165.604965,151.910751,138.894226,138.555374,137.299179,136.034714,142.150421,141.439682,152.497528,168.795044,186.885956,201.406616,213.447937,216.067780,205.200012,179.001663,156.431412,145.191742,141.365295,135.654556,105.778534,87.018196,99.472755,110.778534,82.142166,36.960350,16.040514,12.332251,6.603316,8.404148,8.745471,8.292575,2.969428,0.468596,0.075208,0.380166,0.005785,0.085951,0.000000,0.000000,0.080165,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.355000,4612475.550000,4091,4555,119.211586,169.864487,172.393417,161.748795,146.401688,136.608276,135.773560,134.881012,132.947128,136.112411,137.285980,148.699203,165.277710,183.566971,196.889282,208.087631,210.550446,197.120697,172.525650,150.376892,140.228134,137.062836,132.327301,103.038040,85.004982,98.624817,107.533905,75.930603,37.484318,17.149603,12.029770,9.104973,10.336378,10.548776,11.412411,3.931413,1.634714,0.232232,0.091736,0.087604,0.000000,0.000000,0.113223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.155000,4612475.550000,4110,4555,119.385139,169.079346,172.302490,161.434723,145.575226,135.666122,134.881012,133.219849,133.624802,135.087616,136.004974,148.013229,165.897537,182.029770,196.029770,207.451248,208.385132,196.790100,170.839676,149.310760,139.071091,135.831421,132.236374,101.203323,83.922333,96.046303,107.170265,77.302498,38.252914,15.294231,12.021506,9.014889,9.451256,10.678529,10.933898,5.500009,1.561161,0.811572,0.127273,0.000000,0.116529,0.086777,0.152893,0.104959,0.000000,1.248760,0.000000,0.000000,0.000000,0.000000 -601568.555000,4612475.550000,4132,4555,113.720673,171.786789,169.778519,159.009933,143.332245,134.076050,133.216537,131.290924,130.332245,134.414886,133.985138,146.125626,163.654556,180.481003,193.456207,206.117371,206.836380,194.819839,169.266129,147.894226,137.828110,134.654556,130.563644,100.274391,82.282654,93.728935,103.993401,73.935547,34.555393,14.574396,11.869440,10.586790,8.909106,10.300841,7.513236,3.142156,0.094215,0.311571,0.138017,0.000000,0.000000,0.000000,0.000000,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.555000,4612475.550000,4162,4555,114.541336,175.483490,171.086792,162.376053,148.466965,135.995880,135.929764,134.425629,133.326462,136.276871,136.524811,148.797531,165.822327,182.466965,196.219025,208.400848,210.103317,196.888443,170.805801,150.119858,137.863647,135.177704,130.590927,100.442162,82.491753,95.161171,105.747948,75.739685,36.442169,15.350430,11.871920,9.845469,8.491751,9.128114,9.019023,4.078520,0.499175,0.120662,0.347935,0.275207,0.102480,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,1.652893,0.000000,0.000000 -601582.155000,4612475.550000,4200,4555,119.704147,174.357056,170.158691,161.166946,146.588455,134.828110,134.985138,133.629761,133.704147,136.340515,136.100845,147.398376,165.464478,182.514069,196.431412,208.555374,209.894211,196.348770,171.018188,149.712418,138.720688,136.481003,131.018188,100.910751,83.927292,96.076042,106.604973,76.695885,34.786793,15.432250,11.910764,9.186790,8.111586,6.895055,8.897534,5.162818,0.881820,0.128926,0.117356,0.283472,0.076860,0.000000,0.365290,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.555000,4612475.550000,4217,4555,121.419029,179.452072,171.435547,161.766129,146.385971,134.262009,136.262009,132.898376,132.815735,136.584320,135.848785,147.741333,164.683487,182.898361,196.559509,209.237198,208.873566,195.443817,170.361160,149.270264,138.567795,136.377716,130.609116,100.328117,82.650429,96.096710,104.534729,74.476883,35.005802,15.123158,11.873572,9.060345,6.847121,8.040510,9.439683,4.393396,0.390910,0.377687,0.039670,0.326447,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.555000,4612475.550000,4277,4555,139.630600,183.283493,174.112411,164.864471,149.938858,136.062820,135.963654,133.732239,134.823151,139.294235,136.608276,147.938858,164.236374,182.434723,195.236374,208.046295,207.591751,192.980179,169.120667,148.054565,137.244644,133.922333,129.236374,99.591751,81.707451,95.062820,103.418198,72.748779,35.029770,13.258697,11.748779,10.510758,8.677700,7.823154,11.719850,5.065299,1.103308,1.275208,1.232233,0.401653,0.814050,0.482645,0.000000,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.355000,4612475.550000,4301,4555,153.135544,184.573563,172.325623,163.565292,149.375214,135.788437,135.209930,133.110748,134.036377,139.292572,135.251251,146.209915,163.284302,179.681000,194.193390,206.300827,205.895874,190.995041,168.028107,145.904129,135.730576,132.259521,127.036377,98.705795,81.664482,93.176872,101.995056,72.689270,33.962002,13.746298,11.548779,9.809103,7.794228,8.835550,8.009104,5.605793,0.701654,0.121488,0.114876,0.005785,0.071901,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.355000,4612475.550000,4316,4555,137.647949,190.011566,179.970261,170.664490,151.515717,137.573578,137.375229,136.391754,135.862823,141.152084,137.606628,149.788452,165.482666,183.317368,196.705795,209.077698,207.102478,191.829758,169.920685,148.705811,136.763657,133.457870,129.581833,99.557045,83.755394,97.333900,105.003326,74.457870,36.028118,14.912414,11.780184,13.483486,8.879354,10.025635,10.654560,5.653728,1.077689,0.237191,0.299174,0.294216,0.074380,0.000000,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.355000,4612475.550000,4331,4555,156.975220,194.314056,178.082657,169.446304,152.760345,138.735550,137.694229,136.190079,136.561996,142.322327,137.380188,149.413239,165.702499,183.123978,196.851242,208.760330,207.636368,192.793396,169.281006,147.495865,136.537186,134.256195,129.272720,99.074394,82.842995,96.925636,104.404968,73.685966,34.966961,15.979356,11.752086,12.120677,9.387618,9.279352,10.249601,5.296703,0.801654,0.044628,0.406613,0.185951,0.052893,0.000000,0.017356,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.955000,4612475.550000,4349,4555,142.007462,204.402466,180.939682,171.799164,152.790924,138.220673,137.261993,136.683487,138.427292,143.162827,139.584305,151.187607,165.832245,184.576050,198.947922,210.311569,208.790909,192.228912,169.245453,147.914886,136.121521,133.352905,129.336380,97.071922,81.600845,96.848778,103.435555,73.716545,35.708286,15.116549,11.757870,14.520678,9.458693,9.404146,10.114064,5.175216,1.044631,0.739671,0.433059,0.379340,0.086777,0.000000,0.000000,0.216530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.155000,4612475.550000,4365,4555,152.761169,198.620651,177.835541,169.286789,151.129761,136.592575,136.228943,135.468597,134.799179,142.204147,135.452072,148.270264,163.815720,180.815720,195.005798,208.567780,206.766129,190.435547,167.716537,147.443817,135.592575,133.055374,128.245468,97.890091,83.179359,97.443810,104.435547,73.030594,35.840519,15.971919,11.658696,14.874397,8.104147,10.655388,10.609106,4.690918,1.991739,1.317358,0.399174,0.366116,0.299174,0.173554,0.000000,0.002480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.355000,4612475.550000,4396,4555,124.375229,167.457855,172.631409,160.234726,145.408279,136.077698,134.143814,133.267776,133.755386,135.317368,136.424820,147.176880,164.738861,180.226456,194.127274,204.317352,205.714050,194.036362,167.945480,146.507462,136.639694,132.937195,127.945465,99.408279,81.614899,95.540504,105.201668,75.110764,37.185143,16.027290,11.631424,8.199187,9.208281,10.291750,9.290924,3.373562,0.619836,0.219009,0.000000,0.000000,0.003306,0.014050,0.052893,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.555000,4612475.550000,4417,4555,112.501671,168.923157,168.782654,159.113235,146.617371,138.179352,136.716537,134.104965,134.625626,135.625626,137.683487,147.567780,165.344635,181.253723,194.022324,205.253723,206.584305,194.179352,169.460342,146.757858,136.914886,133.914886,128.609100,99.749603,82.881836,95.493408,106.402489,76.138031,36.716549,16.202496,11.691754,8.661170,9.199189,9.564478,10.861998,3.615710,0.359506,0.380166,0.000000,0.183471,0.071075,0.434711,0.000000,0.000000,0.000000,0.000000,1.138843,0.000000,0.000000,0.000000 -601631.755000,4612475.550000,4448,4555,118.534737,166.741348,172.162842,160.262009,145.154572,136.914902,136.311600,135.228958,134.757874,135.840515,138.005814,148.435562,165.071930,181.625641,196.080185,205.410751,206.071915,193.815735,169.972748,147.493408,136.700027,133.956223,128.790939,101.187630,82.757874,96.030602,105.228951,76.361183,37.609108,15.957869,11.708283,7.669436,9.693402,9.813239,9.625633,3.362816,0.755374,0.462811,0.182645,0.000000,0.117356,0.009918,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.355000,4612475.550000,4461,4555,111.907455,171.709076,172.312408,159.535538,147.775208,138.800003,136.560318,136.287598,134.841339,136.576859,138.535522,148.990082,166.510757,181.990082,195.700836,205.866119,206.890900,194.990082,169.494217,146.766953,138.039658,133.899185,128.890930,100.304146,82.923988,96.932243,105.866127,76.477699,37.047958,14.328118,11.717375,8.648773,8.430593,9.580180,9.846296,4.389266,0.712399,0.046281,0.060331,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.755000,4612475.550000,4478,4555,122.944641,164.010757,171.936356,161.366119,147.052078,138.423981,137.275208,134.787613,136.010773,137.655380,138.961166,149.002487,166.209091,181.696686,195.390900,205.738022,207.159515,194.647095,168.746292,147.804138,137.275208,132.498367,128.209106,100.547951,83.465302,95.977699,104.870262,75.597534,37.010761,14.001671,11.655392,6.104969,7.729766,8.828940,9.100014,2.893395,0.864464,0.095041,0.131405,0.114876,0.092562,0.000000,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.555000,4612475.550000,4512,4555,117.901665,167.389267,171.777695,162.463654,148.571091,140.149597,137.331421,135.918198,137.000839,139.100006,141.050430,150.876877,168.992569,184.604141,197.728119,207.463654,209.562820,197.422333,171.662003,150.546295,140.091751,135.356216,131.554565,103.562820,86.959518,99.620674,107.207451,78.604156,39.091755,17.247128,11.959523,8.174395,10.722331,9.107452,11.719025,3.966949,0.710745,0.502481,0.076033,0.000000,0.017356,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.555000,4612475.550000,4527,4555,115.890091,165.906616,169.890091,160.237198,147.633896,139.352905,136.303314,135.997528,135.542984,137.898361,140.096710,149.947937,167.848770,182.832245,194.964478,206.931412,207.567780,196.625626,171.377701,147.485138,137.625626,134.534714,130.245468,103.485130,85.328110,99.675217,105.832245,75.658699,37.700024,15.563655,11.840514,6.690920,8.195884,7.328114,10.265305,3.695874,0.236364,0.000000,0.050413,0.003306,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.155000,4612475.550000,4545,4555,105.695053,156.339676,165.794235,157.587616,147.232239,139.695053,136.984314,136.075226,136.802490,138.488449,140.455383,151.215714,167.546295,182.521500,196.942993,207.595886,209.240509,197.504974,171.976044,150.901672,139.835556,138.513229,131.100006,104.066956,87.653732,99.554558,108.471916,78.050423,38.409107,15.966134,11.918200,8.094227,9.174397,8.842163,8.561172,5.120670,0.820663,0.242149,0.443802,0.000000,0.086777,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.555000,4612475.550000,4567,4555,116.428116,165.552078,171.783478,159.899185,147.750427,139.072739,138.130585,135.990082,136.386780,139.031418,140.957031,151.957031,168.072739,183.849609,197.502502,208.171921,209.114075,196.320679,173.403305,150.535538,139.543808,136.857864,130.981827,103.403320,86.014900,99.122330,106.122330,77.626457,37.238033,15.427292,11.907457,8.092575,9.250429,10.149603,8.366129,3.685957,0.466117,0.252067,0.198347,0.000000,0.000000,0.000000,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612475.550000,4584,4555,96.205803,166.144623,169.119827,160.582642,146.929749,139.169418,138.334717,136.177704,137.896698,140.904968,141.359528,152.053726,168.954544,185.847107,200.078506,211.252075,211.004150,198.896698,175.061981,152.954544,141.657028,138.219009,133.590912,105.797546,89.557861,101.202507,108.657051,79.111595,38.888454,18.194233,12.144648,7.028110,9.442165,10.628116,10.770263,6.691746,1.876862,1.131407,0.064463,0.421489,0.256199,0.856199,0.085951,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612475.550000,4605,4555,111.716537,174.518188,170.906616,164.741333,148.857040,141.691742,138.220673,137.204147,137.204147,139.666946,142.303314,151.708267,168.815720,185.617371,198.485138,209.303314,209.650421,197.757858,173.171082,151.452072,140.518188,136.534714,132.063644,104.890091,87.741333,98.485130,109.154556,79.460342,37.774403,15.795060,12.005804,6.838028,8.835554,8.776875,9.852907,3.371907,1.146282,0.042975,0.019008,0.138017,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.155000,4612475.550000,4630,4555,116.013237,168.938858,169.195053,161.418198,146.203323,139.401672,136.112411,134.889267,136.550430,138.591751,139.938858,150.600006,166.790100,182.732239,195.723984,206.666122,208.542160,196.492569,171.285965,148.038025,139.261169,134.467789,129.236374,102.856201,85.814896,98.583481,107.773567,78.079361,35.674400,13.395060,11.748779,7.452078,5.641337,7.795883,8.490924,3.268602,0.712398,0.227274,0.069422,0.000827,0.000000,0.000000,0.000000,0.205786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601670.955000,4612475.550000,4644,4555,112.105797,166.155380,170.204971,162.791748,148.849594,138.023148,137.138855,135.626450,135.907440,138.510757,139.990082,151.320663,167.180176,184.502487,197.047943,207.800003,208.312408,196.725632,172.180176,150.717361,140.519012,135.932236,129.800018,103.047951,85.552078,98.965302,108.337204,77.783493,40.833080,16.833904,11.800019,7.216541,8.868611,9.700842,9.855386,4.005794,0.494216,0.235538,0.075207,0.271901,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.755000,4612475.550000,4663,4555,121.519844,166.102493,171.342163,161.945480,147.532257,138.168594,136.895874,136.681000,136.482651,139.871078,140.664459,152.449600,168.292587,184.573578,197.292587,208.350433,209.590103,197.218201,173.350433,150.457870,140.011566,135.408264,130.218201,104.358688,85.689270,98.771912,107.168610,78.507446,37.854565,16.630596,11.838036,5.824803,8.453733,6.483485,8.760345,3.414884,0.838018,0.477688,0.237190,0.140496,0.121488,0.000000,0.006612,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.955000,4612475.550000,4684,4555,107.903328,171.536362,172.214050,164.999176,150.668610,141.313248,138.205811,138.280167,139.090103,141.362823,141.652084,152.371094,170.007446,185.709915,199.040497,209.296692,210.346283,199.131409,174.023972,151.676880,142.040512,137.842163,132.172745,104.205803,85.875237,100.106636,109.949608,81.445473,39.875221,16.523159,12.015723,7.070260,10.340512,9.615720,10.026461,4.899180,0.309918,0.167770,0.000000,0.265291,0.138843,0.000000,0.053719,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.355000,4612475.550000,4701,4555,120.161995,171.244629,175.434708,164.566940,150.004959,139.765289,138.525620,137.872726,136.872742,140.228088,141.451233,151.922318,168.442978,183.352066,197.038010,208.872726,208.277679,197.880981,173.095871,150.393387,139.914047,135.236374,130.690918,102.509102,85.385139,99.558693,107.955383,79.426460,38.368614,16.070265,11.881012,6.302492,10.134728,9.994231,9.835553,4.203313,0.885952,0.362811,0.688431,0.738018,0.471901,0.479339,0.018182,0.000000,1.289256,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.355000,4612475.550000,4716,4555,125.265312,167.271912,170.015701,162.544632,148.627274,138.585968,135.412415,133.883484,133.387619,137.387619,137.742996,149.114883,164.073578,181.338013,192.652069,205.015701,204.792572,194.585953,168.718185,147.569427,137.693390,133.751266,128.809113,101.263657,83.412415,96.106628,107.247116,78.230598,35.652084,14.668613,11.709937,5.671913,10.250429,8.924809,9.340510,2.240501,1.358680,0.378513,0.766117,0.213223,0.279340,0.052893,0.185124,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612475.550000,4731,4555,107.275223,156.996704,159.218185,155.664459,144.647934,135.044647,132.666122,131.294235,131.009933,133.466125,135.472733,145.590088,160.879364,177.871078,190.738846,200.738846,202.647934,192.441330,167.193390,147.267776,134.804977,133.028122,128.109100,100.902489,83.811577,96.978531,106.375229,78.499191,37.762005,14.862827,11.646299,4.592570,8.225635,7.928939,8.057037,3.246288,0.999175,1.713225,0.138844,0.500827,0.011570,0.061984,0.110744,0.252893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612475.550000,4745,4555,120.281006,171.859543,175.363663,164.619873,149.413254,138.950439,136.363647,133.330582,134.504135,137.487625,139.735565,149.859543,166.818207,182.537216,195.603333,207.404984,205.925659,196.239700,169.991760,149.504166,137.338852,133.173569,128.181824,99.272736,80.942162,96.099182,105.380173,78.338852,36.884319,14.531422,11.652911,7.551251,8.683487,9.712413,10.066957,3.705793,0.726448,0.204959,0.486778,0.000000,0.065289,0.000000,0.005785,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.155000,4612475.550000,4765,4555,120.561996,173.258682,172.457031,163.622314,150.895050,139.721512,138.002502,136.432236,136.754562,140.423996,141.407455,151.233902,167.729752,184.539673,197.448746,207.713211,207.605774,197.142960,171.961166,150.597534,139.547958,135.225632,129.572739,103.324806,85.581009,98.696709,109.052071,81.027298,39.886795,16.748777,11.779359,7.522326,11.066957,10.598361,10.072742,4.055379,1.001655,0.481820,0.258678,0.036365,0.419009,0.000000,0.091736,0.754547,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.355000,4612475.550000,4791,4555,131.618195,175.915695,168.609909,162.353714,149.254532,135.717361,135.461166,135.147110,134.642975,137.287628,138.684326,147.766937,165.419830,181.147095,194.783463,204.105789,204.907440,192.403290,169.659500,147.444626,135.469421,131.312408,127.163643,99.742165,80.890915,94.370262,106.601669,77.262817,36.833076,14.780183,11.560350,5.495878,6.984312,6.522326,8.144641,2.876039,0.942977,0.044628,0.338017,0.000000,0.141322,0.000000,0.029753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.555000,4612475.550000,4822,4555,128.527283,175.357880,178.581009,167.109940,152.176056,138.936371,134.903320,134.275223,134.316544,138.134720,139.572739,150.068619,167.109940,183.324814,197.514893,207.126465,208.506638,196.407455,173.300018,150.060349,137.547943,134.622314,128.845474,99.952904,81.919846,95.961174,105.647125,79.704971,35.713245,15.096712,11.713242,5.176043,9.213240,10.355386,10.811584,4.558687,2.109094,1.152894,1.232232,0.539670,0.905786,0.308265,0.758679,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.155000,4612475.550000,4840,4555,145.887619,179.094238,171.416550,162.226471,149.441345,138.400024,136.871094,135.532257,133.945480,138.300842,137.928940,149.391754,165.309113,183.201675,195.052902,205.937180,207.276031,194.755371,169.738861,148.862823,137.499191,131.771927,126.854568,99.548782,81.449608,95.482666,104.548782,77.391754,35.821507,11.590924,11.532249,4.566951,7.446296,7.990923,7.259516,3.661990,1.070251,0.223141,0.118182,0.000000,0.000000,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.555000,4612475.550000,4857,4555,124.233910,178.575226,176.327286,166.600006,150.442993,137.905792,135.186798,134.633072,133.550430,138.442993,137.277695,148.550430,165.170258,183.021500,196.732239,207.426453,206.616547,195.723984,171.211578,149.170258,137.765305,134.277710,129.327301,100.459526,83.120682,95.806633,106.624817,79.368614,36.170269,15.727291,11.757045,6.023977,8.317371,8.152907,9.616544,4.722322,1.868598,0.550415,0.353720,0.167769,0.381819,0.000000,0.000000,1.579341,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.955000,4612475.550000,4874,4555,120.638863,177.792587,171.933075,164.519852,149.453735,138.437210,133.742981,133.726456,131.222321,134.718201,135.114883,145.619034,161.569443,180.007462,191.767792,203.139694,203.569443,192.751266,166.230591,145.776047,133.767776,130.544632,125.172745,97.445473,80.197540,93.776054,103.404144,76.784317,34.784317,13.266958,11.379359,5.513235,6.849600,7.535551,8.175221,2.954551,0.638844,0.290910,0.138844,0.170249,0.104133,0.000000,0.040496,0.083471,0.000000,1.392562,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612475.550000,4894,4555,133.578522,177.867767,175.371918,162.578522,148.702499,137.487625,136.611588,135.041336,133.801666,136.380188,136.504150,148.132248,164.619858,180.603317,193.008270,202.239670,202.619827,190.537186,165.479355,144.363647,134.396698,131.049591,125.000008,97.190094,80.909103,94.834717,103.578522,75.892578,35.231422,15.423159,11.363657,9.002494,9.381006,7.757864,10.414064,3.153726,0.613224,0.126447,0.018182,0.000000,0.171901,0.000000,0.000000,0.171901,2.709091,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.155000,4612475.550000,4925,4555,120.101669,174.498352,176.580994,163.324799,149.217361,137.498352,138.382645,134.828934,134.729767,136.523148,138.109924,148.399185,166.019012,180.944641,193.258682,203.300003,203.812408,191.027283,166.217361,145.291748,134.159515,132.217377,127.845467,98.423981,81.985962,93.101669,104.812408,75.671913,36.804153,17.867785,11.622334,8.812410,9.080182,9.022328,10.429769,3.094222,0.923144,0.095868,0.000000,0.148761,0.055372,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.955000,4612475.550000,4944,4555,114.827286,176.199188,174.347946,161.050430,145.587616,136.422348,134.984314,133.339676,132.852081,134.992569,135.240509,145.471924,163.281830,179.232239,191.116547,201.868607,201.645462,189.265305,163.273560,143.265320,133.215714,129.604141,123.190926,96.579353,79.058693,91.802490,102.372742,73.976044,34.190926,13.849604,11.199194,9.310759,8.322326,9.222327,8.560346,3.628933,0.608266,0.161984,0.261984,0.100827,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.355000,4612475.550000,4976,4555,123.598366,178.416534,175.325623,163.110748,147.515701,137.276031,136.697525,133.821503,133.441330,136.052917,135.292587,146.945465,164.730576,180.135544,191.664459,202.722321,202.532242,189.226456,164.738846,144.499176,133.697525,130.408279,124.036385,96.647957,80.102501,92.557045,101.350433,73.920677,35.738857,14.798367,11.276052,9.423155,7.995055,9.360345,9.049601,3.098354,0.151240,0.294216,0.141323,0.000000,0.000000,0.000000,0.082645,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601740.155000,4612475.550000,4990,4555,126.562820,177.959518,175.405792,166.480179,150.942993,138.488449,138.381012,135.314896,135.967789,138.422333,136.852081,148.587616,165.637207,182.042160,194.430588,204.538025,204.033890,190.364471,166.331421,146.347946,134.033890,132.381012,126.736374,98.736374,81.843811,94.538033,104.728111,74.819023,36.190929,17.055389,11.521506,9.813236,9.488443,9.901666,8.175221,2.825629,0.271076,0.418184,0.166943,0.000000,0.053719,0.480992,0.085951,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601743.555000,4612475.550000,5007,4555,121.537209,178.776871,177.884308,164.570267,150.148773,138.983490,138.057861,136.520660,135.363647,137.446304,137.140518,148.661179,165.942169,181.966965,193.851257,204.793411,203.454559,190.504150,166.487625,145.115723,134.140518,131.760345,126.727287,97.041336,81.371925,94.380180,103.033073,74.049614,36.735558,16.529770,11.520680,9.444642,9.585139,9.827287,9.119850,4.105792,0.411572,0.257852,0.114050,0.000000,0.056199,0.014050,0.033884,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.355000,4612475.550000,5021,4555,110.764481,176.252075,176.078522,163.177704,147.665298,135.500015,136.103317,133.400848,133.392578,134.632248,134.723160,146.425629,164.028946,179.541336,191.847122,202.185974,202.318192,188.698364,163.400848,143.549606,133.202499,127.599190,124.227287,95.500015,79.376060,92.756226,101.971092,74.020683,34.830597,13.965307,11.293407,9.056211,8.692575,10.147948,6.526461,3.342982,0.443803,0.142149,0.000000,0.000000,0.000000,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.355000,4612475.550000,5041,4555,125.202492,184.012405,175.508286,164.855392,152.177704,138.409103,137.863647,135.400848,134.904968,137.533081,136.566132,147.219025,164.830597,181.342987,194.128113,203.971085,202.814072,189.450424,165.045471,143.863647,133.508286,130.673569,125.136383,95.789276,79.913239,93.500015,101.880180,74.888443,34.880184,14.996712,11.376052,11.379354,9.276046,10.681831,8.495882,2.810750,0.962812,0.454547,0.041322,0.000000,0.058678,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.955000,4612475.550000,5074,4555,131.405792,187.257034,179.149612,169.422333,151.447113,139.174393,139.141342,137.356216,136.835556,140.604141,137.124802,149.033890,165.959518,183.182678,195.885117,205.298340,204.281815,189.265289,165.347946,144.752899,133.653732,130.967789,125.918198,97.678528,80.835556,96.025635,104.372742,75.025650,34.587624,15.606631,11.447126,10.962000,8.047948,10.258694,10.804975,6.425631,0.747936,0.431406,0.000000,0.000000,0.000000,0.000000,0.060331,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.755000,4612475.550000,5123,4555,151.981842,192.692566,179.684311,169.031433,150.775223,137.824814,136.585144,134.477692,134.990097,140.023163,135.899185,148.576889,164.188446,181.585129,193.502487,204.494217,201.890915,187.353729,164.105804,143.593414,133.560333,130.204971,123.436378,94.659515,79.386795,93.378525,101.800018,71.733902,35.601673,15.360350,11.221507,11.070264,8.418197,7.573566,8.643816,4.629761,0.598349,0.274381,0.297522,0.060331,0.150414,0.026446,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.155000,4612475.550000,5180,4555,149.379364,202.552917,182.585968,173.445480,154.065308,141.660355,139.900024,137.561172,138.271927,144.552917,138.569443,149.528122,166.090103,183.189270,196.338043,208.139694,205.974396,190.147949,166.090103,146.610764,134.321503,131.528122,126.718201,97.073570,79.999191,96.404152,104.809113,73.552910,36.544647,16.381836,11.519855,12.690099,7.972741,9.336376,8.171916,5.119019,0.782647,0.344629,0.186777,0.000000,0.000000,0.000000,0.085124,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.755000,4612475.550000,5243,4555,115.821510,175.730576,173.697525,164.755371,148.052902,138.714050,137.036362,134.854553,134.738861,135.714050,136.548767,147.829758,165.846283,180.879349,194.019836,204.218201,203.697540,191.507446,166.292572,146.614883,134.532242,131.590088,125.763649,98.590096,81.284309,95.664474,106.639679,78.457863,37.300850,17.855391,11.433078,8.400840,8.431419,11.945471,12.317371,3.692569,0.566117,0.539671,0.782646,0.000000,0.123967,0.000000,0.000000,0.036364,1.166942,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.555000,4612475.550000,5337,4555,117.344643,163.559525,171.485153,159.749619,146.138046,137.733078,135.262009,133.840515,132.774399,135.336380,135.666962,146.518204,164.865311,179.683502,192.890106,202.509949,201.997543,189.385971,166.154572,144.220688,132.964478,129.014069,125.154564,95.493408,79.939690,94.427292,102.666962,75.815720,36.071918,14.808283,11.377706,6.971086,8.032246,8.379353,8.409105,4.583480,0.470249,0.070248,0.341323,0.000000,0.000000,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.355000,4612475.550000,5401,4555,118.014893,167.510757,171.543808,160.940506,147.056213,137.667786,135.659531,133.519028,133.494232,135.221497,136.138870,147.576889,164.287613,179.783478,194.907440,203.593399,203.122314,190.477692,166.659515,144.428116,134.072739,129.395050,123.618195,95.485962,78.171913,93.403320,104.155388,77.775223,37.047951,15.328944,11.238036,8.217369,9.446297,8.133898,8.633073,4.637198,0.574382,0.079339,0.123141,0.000000,0.000000,0.000000,0.018182,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.955000,4612475.550000,5429,4555,122.233070,172.183487,169.985138,161.811584,148.166946,136.885956,133.910751,131.555374,132.183487,132.935547,134.431412,144.861160,163.687607,180.191742,191.786789,202.084305,202.596710,190.348770,164.034714,142.728943,131.819839,128.332245,123.200012,94.216537,78.001671,92.679352,103.530586,74.852913,35.588451,15.024811,11.200019,7.032243,6.724808,8.053733,8.325634,3.122321,0.425621,0.000000,0.393389,0.278513,0.000827,0.000000,0.000000,0.044628,1.363636,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.955000,4612475.550000,5459,4555,105.653732,169.662003,172.496704,160.604141,147.976044,136.645462,134.777695,133.893402,133.174393,134.546295,135.397537,146.562820,164.835556,181.000839,194.017365,204.149597,202.298355,191.604141,167.504974,144.802490,133.934723,130.397537,125.372742,96.620674,78.761169,94.033897,105.356209,76.562820,35.645477,15.728944,11.397540,6.530590,8.609931,8.029767,7.582659,3.804141,0.592564,0.000000,0.119835,0.000000,0.133885,0.000000,0.112397,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.155000,4612475.550000,5505,4555,119.135559,170.077682,169.482651,159.895874,147.482666,136.945480,133.912415,134.201675,132.705811,135.846298,135.821503,146.300842,164.424789,180.028107,193.201660,202.945465,203.201660,191.846283,166.284302,143.829773,133.433075,129.656219,123.945465,95.755394,78.838036,92.796715,104.457870,77.424812,36.077705,13.635554,11.267787,5.684308,6.914066,7.409931,6.439682,3.571908,0.916530,0.309091,0.433059,0.000000,0.000000,0.000000,0.004132,0.231405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.355000,4612475.550000,5581,4555,122.020668,172.367767,172.384293,162.210739,149.293396,137.896698,136.086777,134.185944,134.599167,136.442154,137.888428,148.425613,165.797516,182.243805,194.623962,205.483490,206.078522,194.061981,169.772720,147.888428,135.995880,132.061996,126.409096,97.549606,80.392578,93.466957,106.772736,78.681831,37.384323,15.845472,11.491754,5.428935,7.969438,7.490923,8.914062,1.790087,0.780167,0.048760,0.112397,0.000000,0.000000,0.000000,0.091736,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.355000,4612475.550000,5676,4555,113.974388,182.809082,176.676849,165.618988,151.660339,138.379364,137.346298,136.139694,134.445465,139.296707,137.817368,149.412399,167.247101,184.957840,197.371063,206.098328,207.933044,196.660324,171.569412,149.776031,137.577698,132.999191,128.172745,99.288445,80.850426,96.933067,106.288452,78.776047,35.486797,13.840514,11.652085,5.947943,6.634726,7.015717,8.223155,4.081826,0.244629,0.190910,0.129752,0.028099,0.014876,0.000000,0.049588,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.555000,4612475.550000,5717,4555,125.460342,189.815720,174.443817,167.534714,152.542984,140.204147,138.038849,136.989273,136.204147,140.724808,139.038849,150.154556,167.939682,185.542984,197.848770,208.204147,209.071915,198.237198,172.642151,151.592575,140.038849,135.576050,129.881821,99.666962,83.022331,97.658699,109.369431,82.096710,38.443825,15.749604,11.807457,4.928933,8.551255,7.481007,9.033897,3.344634,0.311571,0.338017,0.225621,0.009091,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601892.155000,4612475.550000,5750,4555,121.666130,184.062820,183.261169,167.269440,151.790100,141.765305,141.509109,138.071091,138.335556,140.732239,142.666122,153.699188,172.095886,188.864471,200.996704,212.831421,214.261169,202.426453,177.252899,154.418198,143.922333,140.930588,135.781830,107.153732,89.195053,103.294228,114.633072,83.426460,43.219856,17.688448,12.343821,12.600842,12.179355,11.427288,12.024808,8.944639,0.724795,0.371076,0.580167,0.000000,0.114050,0.022314,0.326447,0.422315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.555000,4612475.550000,5767,4555,128.466141,183.730576,179.689255,165.433060,148.838013,138.160355,137.284302,134.747116,133.970261,135.697525,137.912399,150.548782,167.449585,184.466125,197.995041,209.573563,210.581818,197.019836,172.325623,151.143799,138.937210,137.366959,131.945465,103.019844,85.639687,99.961998,112.003326,80.747124,40.102497,14.473571,11.995060,10.028940,8.995057,11.246299,9.020676,4.097529,1.014878,0.264464,0.239670,0.051240,0.000000,0.000000,0.000000,0.075207,0.000000,0.000000,2.563637,0.000000,0.000000,0.000000 -601901.355000,4612475.550000,5796,4555,118.533073,179.944656,177.985977,166.200851,151.952911,139.547958,141.878540,137.531433,137.159531,139.696716,139.812424,151.118210,169.564484,187.399200,200.143005,211.506638,212.812424,199.564484,175.721512,153.581009,143.432251,140.143005,135.390930,104.547951,89.035553,102.870262,113.382660,82.812416,39.721508,16.852911,12.308283,12.703321,11.604976,11.064478,12.691751,4.905795,1.414879,0.633885,0.164463,0.003306,0.066943,0.545455,0.000000,0.063637,0.000000,1.555372,0.000000,0.000000,0.000000,0.000000 -601904.555000,4612475.550000,5812,4555,133.792572,183.561157,178.999176,166.123138,148.908264,137.734711,136.916534,134.784317,134.280182,137.519836,137.610748,149.800827,167.676865,184.627274,198.875214,210.990906,211.329758,197.875214,173.007446,151.461990,140.354553,137.511566,132.990921,102.528122,86.660347,99.734734,110.098366,82.230598,41.156223,16.576054,12.090101,10.624808,8.974398,11.262827,11.967785,5.037199,0.495042,0.594216,0.112397,0.069422,0.000827,0.000000,0.001653,0.137190,0.000000,0.000000,0.000000,1.228099,0.000000,0.000000 -601910.955000,4612475.550000,5844,4555,111.554558,182.356216,181.182663,166.885132,150.240509,138.042160,137.356216,135.174393,134.471909,137.761169,137.662003,149.364471,168.438858,185.257034,197.571091,210.447113,211.438858,197.033890,174.116547,150.992569,139.876877,137.347946,132.463654,102.686790,85.670258,100.339684,109.661995,82.033897,39.538036,15.475224,12.042168,10.652081,8.020677,10.929769,11.505801,4.934720,0.966945,0.157025,0.066116,0.000000,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.955000,4612475.550000,5859,4555,116.236374,188.137192,178.236359,166.682648,149.980164,138.021515,138.062836,136.112411,136.137207,137.847946,137.657883,150.021484,167.922318,185.327271,198.889252,211.153717,212.104126,197.988434,172.649582,151.029755,140.244659,137.492569,133.145462,102.872742,86.798363,99.971916,111.203316,79.674393,39.806629,17.029770,12.104150,11.534725,9.478528,9.916543,10.866131,5.235546,0.475208,0.324794,0.185125,0.011571,0.068595,0.000000,0.041323,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.155000,4612475.550000,5885,4555,111.093407,183.799179,173.746292,165.390915,149.475220,136.392578,135.916550,135.592575,133.129761,136.923157,137.204147,148.014053,164.693390,180.495041,194.561172,206.230591,207.090103,193.924820,171.263641,149.635559,138.536377,134.569427,131.536377,101.437210,85.809113,99.883492,109.569443,79.776054,36.772747,15.809936,11.957870,8.228112,9.222330,9.570264,10.457038,4.527281,1.061987,0.429754,0.738844,0.005785,0.452893,0.000000,0.298348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.155000,4612475.550000,5900,4555,108.481834,175.010757,173.870255,163.837204,150.283478,136.539673,135.853729,133.969437,132.374390,137.093399,135.605789,146.349594,161.151245,178.812408,190.828934,202.944641,205.085129,193.283478,168.134720,147.167770,139.076859,134.159515,129.754562,103.233902,85.787621,101.481834,109.060349,79.531418,36.167789,15.544644,11.795887,7.177698,8.786791,9.796708,9.183484,4.536371,1.080168,0.333060,0.000000,0.000000,0.000000,0.086777,0.247934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.155000,4612475.550000,5915,4555,111.764481,177.318192,169.814072,165.342987,149.045471,137.433899,137.367783,134.632248,134.351257,137.987625,137.607452,147.673569,162.946304,179.590927,192.987625,203.524811,205.128098,193.582657,170.136383,149.599182,137.855392,135.185974,131.409103,104.119850,87.731422,102.152908,111.318199,79.533073,38.789276,17.220678,11.946301,7.414888,9.071916,9.104147,10.655386,3.382650,0.396697,0.137192,0.194215,0.204133,0.044628,0.034711,0.000000,0.000000,0.000000,0.000000,2.057025,0.000000,0.000000,0.000000 -601927.955000,4612475.550000,5929,4555,118.403320,174.878540,169.184326,163.738037,147.828949,135.225632,134.275223,132.473572,131.820679,135.506638,135.093399,145.233902,160.382660,177.572754,189.704987,202.184326,202.002502,192.002502,167.721512,146.225647,136.886795,133.250427,128.663651,102.787621,85.614067,99.167786,105.448776,78.200844,37.300018,15.271918,11.696713,7.586787,9.142163,7.013237,8.692575,4.161164,0.500829,0.193390,0.266116,0.179339,0.000000,0.087604,0.000000,0.318182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.155000,4612475.550000,5945,4555,115.073570,173.453720,171.668594,162.445480,147.214066,136.057037,134.387619,132.891754,132.602493,136.329773,136.081833,146.709930,161.420685,177.685120,190.759521,202.222336,203.742996,191.817368,168.858688,148.040512,137.784317,134.999191,130.081833,102.685143,85.833900,98.594231,107.619026,79.668617,36.825638,14.429770,11.825639,6.119845,8.671915,8.540509,9.188442,3.658684,0.499176,0.064464,0.000000,0.109918,0.025620,0.014877,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601936.155000,4612475.550000,5970,4555,112.138863,166.436371,169.254547,161.361984,147.155380,136.775223,133.717377,133.328949,131.957047,134.766968,135.758698,146.684311,161.552078,176.527283,188.262817,200.700836,202.758682,190.676041,167.485962,146.047943,137.618195,133.808289,128.981842,103.163658,85.221512,98.932251,107.155396,78.411591,36.915726,14.526464,11.725638,6.914059,8.982661,7.705800,7.594226,3.635544,1.026449,0.448762,0.180166,0.000000,0.002479,0.088430,0.165289,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601942.755000,4612475.550000,6003,4555,107.314888,164.257034,169.141342,162.381012,146.942993,137.604156,134.959518,132.347946,131.885132,135.290100,135.719849,145.438858,161.248779,177.108276,189.397537,201.273560,202.157867,191.447113,168.686783,147.000839,137.207458,134.265305,129.827286,102.794228,87.141335,99.695053,108.083481,78.447128,37.521507,16.585142,11.802498,6.847945,9.128942,9.352908,9.854560,3.095048,0.397523,0.352068,0.528100,0.007438,0.016529,0.085124,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.555000,4612475.550000,6022,4555,119.514076,162.175217,171.166946,163.208267,147.943817,137.943817,134.720673,133.042999,132.241333,135.753723,136.009933,146.604965,161.489273,177.737213,189.357056,201.447952,202.290939,191.770279,167.447937,147.563644,135.902496,134.009933,129.472748,102.373581,86.001678,99.472755,106.852921,80.076057,38.472744,16.821507,11.770267,6.273565,10.800843,9.781008,7.376046,3.488436,0.566944,0.177687,0.195868,0.158678,0.006612,0.081819,1.264464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.155000,4612475.550000,6045,4555,96.304146,158.899200,169.006622,159.403305,146.824799,137.973572,134.461166,132.254562,131.436371,134.725632,135.080994,144.783478,160.618195,175.940506,189.064484,200.585129,200.651245,190.361984,168.874390,145.833069,136.485977,132.742157,128.618195,102.196701,85.188446,100.766945,107.990089,79.386795,40.279358,16.174398,11.692581,7.338028,10.359520,10.094231,7.800839,3.815709,0.652895,0.366944,0.461984,0.233885,0.043802,0.081818,0.060331,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.755000,4612475.550000,6063,4555,104.613243,159.753723,167.348770,160.761993,145.770264,137.481003,135.332245,133.522339,132.365311,134.571915,135.976868,146.109100,160.547119,177.786789,189.671082,200.580170,202.266129,191.580170,168.357040,147.150421,137.092575,133.836380,128.745468,102.588448,85.844643,101.299194,108.489273,80.745476,38.712418,17.388449,11.704151,6.576871,10.933901,9.610759,9.236378,3.654552,1.424797,0.094217,0.261984,0.074380,0.197521,0.300827,0.642149,0.233884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.155000,4612475.550000,6090,4555,109.867790,160.396713,167.752075,162.132248,148.504150,137.454575,134.528946,133.363663,132.487640,134.363663,135.661194,145.553757,161.743820,176.619858,188.330597,200.272751,201.652908,191.438034,166.892578,146.190109,136.545471,133.471100,127.090935,102.752090,86.132248,100.776886,106.818207,80.520676,39.074402,16.298365,11.553739,6.257863,10.230595,8.961171,9.904145,5.106618,1.348764,0.087605,0.119835,0.114050,0.000000,0.000000,0.607439,0.304132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601965.155000,4612475.550000,6115,4555,89.874405,159.890945,167.147125,158.643021,146.246307,137.890930,134.998367,132.857880,131.444656,133.262833,134.163666,145.204987,159.775238,176.114075,188.965317,199.957047,200.874405,189.866135,166.089279,145.733902,135.609940,132.684326,127.800026,100.849609,84.502502,99.295891,107.014900,77.932251,38.411591,16.288446,11.618200,6.084309,9.090924,8.379355,7.678526,3.252898,0.678515,0.147109,0.237191,0.270248,0.114050,0.075207,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601969.355000,4612475.550000,6136,4555,84.071922,152.697525,169.143799,156.672729,143.226456,134.606628,132.061157,130.069427,129.813232,132.094223,134.300827,143.647934,160.069427,175.317352,187.433060,198.540497,199.548767,189.441330,165.738846,144.747116,135.226456,131.523972,127.490921,100.110756,84.945465,97.970261,106.028107,77.375221,36.672752,15.320677,11.590101,6.551250,8.666958,8.468610,7.271087,4.521496,1.002482,0.356200,0.668596,0.176033,0.161157,0.000827,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.555000,4612475.550000,6167,4555,99.314064,158.727295,168.619858,160.338852,146.595062,135.413239,134.603317,131.727295,131.586792,133.421509,134.785141,145.272751,161.123978,176.347122,188.801682,200.190109,200.644653,189.446320,166.958694,145.057861,135.619858,132.123978,127.636383,101.512413,84.438034,98.909103,108.611588,79.859520,38.611591,16.737207,11.603325,7.321498,9.450430,9.835553,9.896709,5.128108,0.506614,0.211573,0.173554,0.065290,0.004132,0.149587,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.555000,4612475.550000,6217,4555,98.541344,159.185974,167.392578,156.549606,143.739685,134.136383,132.690094,129.640518,129.433914,131.061996,131.880188,143.210754,157.756210,173.549606,186.772751,196.566132,198.334732,186.425629,163.252075,142.590927,132.789276,129.681839,124.681831,98.723167,83.185966,96.863663,105.185966,75.747948,37.037209,13.718199,11.334729,7.152077,8.008280,8.588444,7.259516,3.276038,0.387606,0.185952,0.115703,0.190910,0.122314,0.000000,0.000000,0.305785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.355000,4612475.550000,6266,4555,101.303322,157.154572,168.625641,157.931412,144.047134,133.038849,131.485138,127.584305,128.336380,129.666946,131.443817,141.956223,158.228943,173.460358,185.675232,196.278534,196.840515,186.410767,163.171097,142.410767,133.138031,129.476868,124.245461,97.468605,82.278534,96.551247,104.270256,75.989273,36.253738,14.533076,11.295061,4.460340,8.961999,6.306624,7.857865,2.805792,0.438845,0.519837,0.176034,0.263637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.355000,4612475.550000,6281,4555,83.649605,154.277695,167.905792,159.178528,144.418198,134.889267,132.988449,129.401672,129.046295,130.814896,132.178528,141.302490,158.889267,174.153732,186.244644,197.583481,197.575226,187.550430,164.277695,144.071091,132.881012,129.765305,124.509109,97.996712,83.442993,95.839691,104.071098,75.699196,37.062828,14.938862,11.319027,6.214060,8.236380,7.719849,8.071087,2.514883,1.565292,0.541324,0.187604,0.071075,0.000000,0.004132,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602000.955000,4612475.550000,6294,4555,96.499191,159.466156,169.689255,158.970261,145.292572,136.523972,133.780182,131.110748,130.573563,131.391754,134.119034,144.788437,159.466141,175.995056,187.689285,198.978546,200.110779,188.581848,165.639694,144.788437,135.325638,131.449600,126.763649,98.937202,84.251259,97.813232,107.061165,79.755394,38.408283,16.200018,11.523986,5.904970,10.153735,9.233073,9.510758,4.128935,0.855374,0.154547,0.123141,0.093389,0.445455,0.169422,0.300827,0.485124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602005.355000,4612475.550000,6316,4555,85.264488,160.041336,165.933914,157.157043,146.512436,135.768616,133.611588,130.165298,130.892578,130.834732,132.537201,143.454575,159.082672,175.917374,186.991760,197.578552,199.347137,188.107452,164.661194,143.380203,133.305801,129.454559,124.727287,98.413246,81.685974,96.669449,105.892586,76.272751,37.644646,15.426463,11.338863,6.358689,8.472742,8.855387,9.289270,3.600006,0.341324,0.068596,0.180992,0.111571,0.000000,0.000000,0.388430,0.304132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612475.550000,6353,4555,87.933083,156.933075,168.619034,158.536377,144.726471,135.536377,133.503326,132.519852,131.362823,131.751266,133.098373,143.701675,161.090103,175.652084,187.147949,198.866959,199.908279,188.536377,164.916550,144.081833,134.660355,132.023987,126.809113,100.445480,84.743004,98.718208,106.585968,78.131432,37.933079,15.986795,11.528119,7.847118,9.271918,7.902494,10.989273,3.447113,0.346284,0.165291,0.238017,0.188431,0.000000,0.152893,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.355000,4612475.550000,6381,4555,88.453743,155.495056,167.701675,159.073578,145.734711,134.635559,133.404144,129.842163,130.114899,130.825638,133.090103,142.594223,158.627289,174.395889,186.569443,197.098373,197.594238,187.073578,163.668610,142.891739,133.585968,130.404144,126.354568,98.313240,82.726463,98.288452,105.924805,76.313240,37.709938,15.461175,11.486796,8.432245,9.542991,9.808280,9.191749,3.361164,1.012400,0.466944,0.362810,0.119835,0.000000,0.091736,0.076860,0.000000,0.000000,2.055372,0.000000,0.000000,0.000000,0.000000 -602022.555000,4612475.550000,6402,4555,101.857872,157.643005,167.229782,158.560349,143.271103,132.353745,131.188446,128.428116,128.254562,128.130600,130.527298,142.229782,157.957047,173.585144,184.775223,197.436386,197.510773,184.709106,162.370270,141.676056,133.163666,128.932251,124.163658,97.221512,80.304153,95.469444,103.733910,75.204979,36.147125,13.421504,11.287622,6.333069,8.913239,7.861999,8.276873,3.540503,0.197522,0.233059,0.186777,0.176033,0.000000,0.095042,0.152066,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.155000,4612475.550000,6445,4555,110.931419,156.096725,167.154572,157.881851,142.567795,133.204147,131.468613,128.584320,128.047119,129.162827,130.823990,141.567795,157.774399,173.468628,185.551270,196.278534,198.799194,187.038864,163.344650,141.625641,132.212418,127.956215,124.154564,97.452087,80.815720,95.989273,105.237206,76.220680,36.914894,14.603324,11.286797,7.844641,8.076875,8.933898,7.647120,2.909096,0.429755,0.012397,0.219009,0.039670,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.755000,4612475.550000,6463,4555,95.789276,163.921494,170.648758,159.706604,144.400833,134.508286,134.144638,131.004150,130.417374,131.524811,132.442169,144.318176,159.665283,175.342972,187.681824,198.309921,199.582642,187.293396,164.020660,144.276855,134.020676,130.789276,125.409103,98.822327,82.714890,97.103325,107.458694,77.169441,38.979359,15.015719,11.400846,8.723154,9.515718,9.850429,8.696708,5.053726,0.623969,0.130580,0.242976,0.073554,0.015703,0.000000,0.145455,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.755000,4612475.550000,6493,4555,87.674393,160.715714,165.765305,158.043808,144.217361,135.176041,134.622330,131.432251,131.795883,132.341339,133.192581,144.225632,160.060333,174.721497,186.597534,198.167770,197.671906,187.076859,164.580994,143.101654,133.233887,130.200836,125.754562,97.192574,82.316544,95.176048,105.994232,74.531425,38.589275,14.423984,11.432250,9.254560,8.594231,9.042989,8.967781,3.262816,0.178514,0.043803,0.130579,0.250414,0.000000,0.155372,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.155000,4612475.550000,6515,4555,96.887611,161.474396,172.780182,159.871094,145.557037,134.507446,132.821503,129.631409,129.879349,131.094223,131.945465,141.953735,159.375229,174.598373,185.714066,197.548782,198.350433,186.540512,163.094238,142.259521,132.242981,130.590088,124.127281,98.391747,81.821510,96.400009,105.193398,76.094231,38.689274,14.987620,11.284317,8.073566,8.444642,7.990097,8.779351,3.852900,0.628101,0.300001,0.257852,0.054546,0.064463,0.239670,0.283472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.355000,4612475.550000,6536,4555,93.561180,164.156204,170.478516,159.205795,145.222321,135.462006,132.999191,130.114883,129.230591,130.709930,131.660339,142.759506,159.338013,174.404129,186.833908,197.255386,196.900024,185.552917,163.561157,142.742981,132.362823,129.552902,123.900009,97.561165,81.519844,94.858688,105.238853,76.222343,36.470268,14.724811,11.263655,8.544642,9.176048,8.786792,7.807451,4.112404,0.704134,0.404960,0.452067,0.128099,0.000000,0.168596,0.347934,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602055.155000,4612475.550000,6565,4555,97.301674,160.938019,168.210739,159.400833,143.235550,133.706635,131.657043,128.739700,127.599197,129.359528,130.119858,140.855392,157.623962,173.169418,184.880173,195.657028,196.483475,185.450409,162.020660,141.500015,131.731430,129.252090,122.954567,95.458702,80.533081,93.070274,103.665314,74.202507,35.822334,13.685143,11.177706,7.804969,8.559521,8.421501,8.954559,2.689261,0.837192,0.652894,0.176860,0.031405,0.342149,0.069422,0.331405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.355000,4612475.550000,6586,4555,101.329781,166.866943,171.048767,159.990906,144.891754,132.478546,133.139694,127.577713,128.908295,129.974411,130.081848,142.123154,158.296692,174.164459,186.247116,198.503311,198.329758,186.147934,163.172729,142.751266,133.114899,130.057037,124.536392,96.511597,79.453743,95.371101,105.817383,76.371101,36.842167,16.066959,11.321506,9.219847,10.326462,8.990097,10.981008,3.163641,0.706614,0.358679,0.764464,0.426447,0.177686,0.233058,0.270248,0.138017,0.000000,0.000000,0.000000,0.992562,0.000000,0.000000 -602066.355000,4612475.550000,6621,4555,91.236374,166.881012,170.426453,157.104141,141.790115,131.178528,130.732239,127.285965,126.542160,127.897537,128.178528,139.252914,156.790100,171.277695,183.418198,195.897537,196.600006,183.178528,161.947113,141.029785,129.798355,126.980179,122.690926,94.988441,80.600014,92.616539,103.178528,74.930588,35.699192,14.554563,11.153738,7.790095,8.929769,8.950427,9.781833,3.047940,0.313225,0.118183,0.190910,0.221488,0.000000,0.145455,0.397521,0.600827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602074.955000,4612475.550000,6664,4555,113.197540,160.437210,167.048782,160.495056,144.255386,133.990921,133.602493,129.850433,129.346298,132.304977,131.495056,143.106628,159.081833,176.552902,188.032242,200.495041,200.453720,187.503311,163.957870,142.420685,134.495056,129.371094,124.990929,97.114899,82.230598,95.404152,103.428947,75.610764,34.255390,14.148777,11.362829,7.355383,7.700015,7.655385,6.832243,2.886782,0.219009,0.003306,0.122314,0.021488,0.000000,0.000000,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602077.955000,4612475.550000,6679,4555,106.272751,174.776855,169.165298,162.851257,147.123978,134.694244,134.148788,131.661179,131.925629,134.413239,132.867783,144.876053,160.876053,176.942169,190.710739,202.595047,201.528931,188.694214,166.652908,146.090927,135.561996,132.966965,127.181831,98.528938,83.057869,97.404976,105.115715,77.173569,36.471096,14.730597,11.562002,9.768608,9.612413,11.605798,9.448775,4.848769,0.978516,0.169424,0.237191,0.044628,0.000000,0.080992,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.355000,4612475.550000,6696,4555,102.124817,174.157867,171.876877,164.562820,147.976044,135.389282,136.058701,133.166138,132.240524,134.628952,133.703323,146.066956,162.397537,179.124802,191.447113,204.695053,204.521500,190.918198,167.852081,147.496704,136.480179,134.579346,129.645477,100.298370,83.066963,97.769440,108.538040,80.248779,38.637211,16.233904,11.785971,10.974396,10.018198,10.802494,11.024808,3.819016,0.698350,0.223969,0.353720,0.061157,0.127273,0.000000,0.495868,0.357852,0.000000,3.039670,0.000000,0.000000,0.000000,0.000000 -602086.555000,4612475.550000,6722,4555,121.952904,176.870255,173.225632,165.597534,148.465317,135.523163,136.845474,133.762833,133.721512,137.060349,135.085144,147.944656,164.647110,182.109909,195.266953,207.721481,207.638840,193.771088,172.407440,150.903336,141.076889,137.043823,132.390930,103.812408,86.969444,102.374397,111.804146,80.969444,38.142994,16.804977,12.035557,10.199187,10.362826,11.763653,9.512411,4.767777,0.428103,0.077688,0.105785,0.056199,0.007438,0.081818,0.315703,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.955000,4612475.550000,6764,4555,104.976875,173.166962,170.737213,163.051270,147.588455,135.447952,134.952087,132.026459,132.671097,136.844650,134.125641,146.299194,162.885971,181.538864,194.588455,207.067795,205.935562,192.109116,170.009949,151.092590,140.861176,137.001678,131.836380,101.538864,86.018196,103.076050,110.596710,79.381844,38.299191,15.456216,11.985143,10.831421,9.335552,9.959519,11.137205,4.351248,0.957855,0.219010,0.272728,0.138843,0.126446,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602103.155000,4612475.550000,6805,4555,118.396713,169.677689,170.975204,163.223145,146.975204,133.735550,132.710754,130.644638,130.884308,134.446289,130.760345,141.694214,156.429749,174.380173,186.198364,199.214890,198.867767,183.727295,164.082642,145.223145,134.000015,131.008286,126.363655,97.057869,81.074394,98.024811,106.561996,76.512413,36.876053,15.147951,11.487621,8.735549,8.717370,9.170263,9.610757,4.769429,0.614878,0.260332,0.173554,0.212397,0.000000,0.122315,0.076033,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.555000,4612475.550000,6822,4555,113.185966,185.384293,170.880173,162.847107,145.747940,134.814056,133.863647,129.549606,128.673569,133.169434,129.450424,141.301651,154.979340,172.714874,186.152893,198.566116,197.483475,182.896698,162.574387,143.442154,133.078522,129.739685,124.500015,96.128113,80.929771,97.979355,106.888443,75.904976,37.309937,16.019852,11.318200,12.502493,8.494229,9.416542,9.076046,3.798354,0.142976,0.571076,0.419009,0.111571,0.022314,0.422315,0.000000,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602110.955000,4612475.550000,6844,4555,116.107460,165.562012,166.677719,158.272766,142.884323,132.214890,130.082657,126.785141,126.826462,128.677704,127.933899,137.991760,155.421524,171.661194,183.743835,197.214905,196.760361,184.049622,162.421524,144.140533,132.809937,128.661179,123.090927,95.198364,78.338867,96.760345,110.685966,78.404984,38.074398,14.259521,11.190102,8.302492,10.090924,8.723155,8.604971,2.938851,0.476035,0.247109,0.217356,0.039670,0.122314,0.000000,0.491736,0.953720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602116.955000,4612475.550000,6874,4555,86.600029,157.831436,159.748795,150.509125,137.261185,129.294235,124.418205,122.062828,120.922333,122.732254,124.211594,133.674408,151.864487,167.418213,179.310776,191.054581,192.393417,181.889282,160.170273,140.575241,128.352081,124.690933,118.054565,91.790115,76.054565,92.988457,106.476044,78.732262,38.128944,13.948780,10.732251,4.962821,9.391750,8.071088,8.060343,2.888438,0.376034,0.220662,0.097521,0.161984,0.000000,0.000000,0.000000,0.542149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.955000,4612475.550000,6914,4555,98.226456,148.490906,157.094223,150.780167,137.970245,128.887619,124.961998,122.705795,121.441330,122.995056,124.424805,136.094238,152.317352,168.251236,180.978516,191.937195,193.631409,182.276031,161.507446,141.069427,129.457855,126.416542,119.036369,91.573570,77.127289,94.515724,108.722321,82.383492,39.028118,17.023159,10.821506,6.055384,9.216543,8.714064,7.950425,4.009099,0.892565,0.228927,0.255373,0.073554,0.000000,0.000000,0.431405,0.461157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602130.755000,4612475.550000,6943,4555,101.916550,147.371094,155.395889,147.362823,134.428940,126.164482,122.495064,120.519852,119.271919,121.329773,122.205803,133.304977,149.486801,164.123154,178.470261,188.759521,188.974396,179.776047,158.238861,137.652084,126.866959,123.445473,118.081841,90.866959,75.123161,92.172745,106.610764,78.428947,37.387623,13.729769,10.734730,5.466128,7.157865,7.501667,7.868608,2.199180,0.747936,0.175207,0.000000,0.041322,0.056199,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602133.955000,4612475.550000,6959,4555,98.512421,144.628098,157.404953,150.057846,132.743820,124.710762,120.380180,118.942162,118.231422,118.950432,119.892578,130.694229,148.520660,163.495865,175.479340,187.000000,187.628098,177.033051,156.256195,135.190094,125.140511,121.661171,115.454559,88.785141,73.719032,91.148773,106.057869,79.181831,37.380184,13.785140,10.495887,4.965301,9.035552,7.465303,7.867781,2.714883,0.477688,0.107438,0.127273,0.028099,0.043802,0.083471,0.003306,0.233058,0.000000,0.000000,0.000000,1.747934,0.000000,0.000000 -602138.555000,4612475.550000,6982,4555,97.113243,144.840500,155.311584,147.038849,132.460342,124.237198,121.047119,118.261993,115.724800,116.559517,118.724800,129.551254,146.352905,162.204147,174.914886,186.121490,186.452072,176.452072,155.369431,135.476868,124.799187,119.303314,114.063644,87.212410,70.865311,89.633904,106.642159,78.162827,33.485142,13.604148,10.369440,4.971086,7.938857,8.890098,6.471085,3.413231,0.952069,0.057026,0.171901,0.033884,0.047108,0.000000,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602144.555000,4612475.550000,7012,4555,95.894234,148.588455,154.679367,144.125641,132.266129,122.522331,120.704147,117.249603,115.762001,116.960350,117.109108,128.852905,146.200027,161.563660,173.795074,185.695892,187.009949,175.481018,154.836395,135.728943,125.166962,119.976875,114.109108,87.290924,71.307457,90.100845,106.836380,79.993408,38.423157,12.979355,10.373571,6.349599,7.985137,8.621502,7.371912,2.740504,0.935539,0.380993,0.014050,0.032232,0.358678,0.000000,0.231405,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602153.355000,4612475.550000,7056,4555,89.648773,146.781006,155.301651,144.384308,132.582657,122.805801,120.037209,116.210762,115.425644,115.739685,116.491760,127.904976,145.202484,160.797531,172.921494,184.061981,185.855377,174.731400,153.971069,133.913239,123.962830,119.466957,113.409119,86.334724,70.491753,89.739685,105.954559,79.318199,36.623981,13.831422,10.309936,4.545464,7.482658,8.594228,6.864474,2.935545,0.452068,0.369423,0.147934,0.031405,0.051240,0.090909,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602163.155000,4612475.550000,7105,4555,109.284317,151.846298,154.168610,144.871078,130.763641,121.383484,118.226456,114.474388,112.614891,113.854553,114.325630,125.499184,143.482651,158.664490,170.143845,182.127304,182.416565,173.085983,153.763657,134.019852,124.143814,121.052902,115.309105,88.862831,71.325638,92.350426,111.895882,84.846298,38.689270,15.079357,10.482664,5.937202,8.378527,9.548776,10.652906,3.573562,0.932234,0.131406,0.000000,0.061157,0.133058,0.000000,0.353720,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602172.755000,4612475.550000,7153,4555,154.297531,162.570267,156.677704,144.545471,131.504150,120.148773,116.512413,110.900841,109.991753,110.305801,110.016548,120.884315,137.719025,153.991745,165.123978,176.859528,176.983490,167.495880,147.702499,128.330597,117.338860,114.851257,108.272743,80.818199,66.256218,86.438034,102.603325,77.495880,35.795887,12.776051,9.842995,6.956210,8.761172,8.862824,8.401667,5.176870,0.988432,0.419011,0.248761,0.138017,0.123141,0.000000,0.197521,0.880993,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.955000,4612475.550000,7274,4555,136.035538,174.950424,165.537201,149.371918,133.471069,119.223152,118.132240,113.909096,111.743813,115.462814,112.421494,124.231422,143.305801,159.851257,173.768616,187.049606,187.694229,175.735550,157.099182,135.991730,124.545464,121.619843,115.727280,85.264481,67.677704,86.504150,108.479347,80.471092,37.933903,14.053736,10.520680,11.873569,9.050430,10.316545,12.750431,6.763646,1.119837,0.169422,1.124794,0.452067,0.000000,0.000000,0.430579,0.000000,0.000000,1.439669,0.000000,0.000000,2.439670,0.000000 -602202.955000,4612475.550000,7304,4555,114.375221,170.085953,165.829758,150.738846,132.945465,120.085960,119.763649,115.209930,114.904144,115.333893,114.284309,126.375221,146.267792,163.366943,175.961990,190.102478,192.581818,179.557022,157.003311,136.400024,123.664474,120.185135,112.945465,82.631416,65.598373,82.755386,103.143822,76.631424,34.623165,12.895885,10.267787,8.685966,7.738031,9.037207,8.923154,6.044636,0.697523,0.342150,0.028926,0.119835,0.174380,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602212.355000,4612475.550000,7351,4555,107.591751,166.780167,161.763641,145.738846,132.185135,120.416542,118.647942,113.995056,113.846291,114.325630,113.747116,125.804970,145.738846,162.424789,176.474380,190.044632,191.515701,179.532242,156.978516,136.697525,124.714058,119.722328,113.763649,83.077705,65.614899,83.391754,103.961998,75.928947,34.796715,14.675225,10.342168,9.908278,8.754562,8.911586,9.578528,4.888438,0.829754,0.157025,0.168596,0.099174,0.104132,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.495868,0.000000 -602226.955000,4612475.550000,7424,4555,101.044647,157.903305,159.283478,144.382645,130.341339,117.159515,116.556213,112.060349,110.324806,111.969437,111.952904,122.399185,142.300003,158.713226,171.539673,183.432236,184.258682,172.762817,151.349594,130.225632,119.192574,113.961174,108.572739,79.928116,63.159527,80.581009,96.779350,71.994232,33.316551,13.657044,9.870268,8.457039,8.512414,7.778526,8.184312,3.685958,0.358679,0.185125,0.284298,0.000000,0.205786,0.000000,0.000000,0.000000,0.000000,1.257851,0.000000,0.000000,0.000000,0.000000 -602249.755000,4612475.550000,7538,4555,102.038864,153.923157,158.286774,144.361160,129.617371,120.344643,117.857040,113.964478,114.030594,114.782661,115.691750,127.303322,146.683472,162.997513,177.914886,188.369431,189.914886,178.485138,155.435532,133.890106,122.576050,117.757866,112.427292,82.865311,65.542999,81.989273,99.419029,72.336380,35.642170,13.257870,10.220681,8.091750,8.351256,8.895056,9.423158,4.297528,0.601654,0.298348,0.016529,0.086777,0.090909,0.078513,0.000000,0.000000,0.000000,0.000000,2.271075,0.000000,0.000000,0.000000 -602266.955000,4612475.550000,7624,4555,98.981842,158.849594,161.609924,145.791748,132.684311,120.502495,117.155388,115.353737,115.221504,116.362000,117.535553,128.733887,148.064468,164.014877,178.923981,189.378525,190.626450,179.543808,156.535538,133.882645,123.923981,118.957039,114.072739,84.923981,67.907455,83.246292,98.056206,69.791748,32.114071,12.014894,10.370268,7.751254,9.271915,8.576873,10.551254,4.890091,1.509094,0.638018,0.140496,0.201654,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,2.521488,0.000000 -602275.755000,4612475.550000,7668,4555,104.477699,157.383484,159.557037,146.433075,129.689270,119.416550,116.656212,114.160339,114.400009,115.077698,115.482658,127.168610,145.879364,162.342163,174.920685,187.333893,188.375214,178.110764,154.300842,132.209930,122.515724,117.507446,112.581833,83.416542,65.953735,83.143814,96.515717,69.573563,31.747128,12.504150,10.234730,7.446294,7.987619,7.838857,8.352906,4.495875,0.747110,0.542150,0.279339,0.054546,0.158678,0.193389,0.000000,0.000000,2.976860,0.000000,2.187604,0.000000,0.000000,0.000000 -602280.155000,4612475.550000,7690,4555,97.377693,151.036362,157.209915,143.912399,129.160339,118.391747,115.061165,111.879349,111.796707,112.449600,113.069435,124.119019,142.895874,159.457855,172.738846,184.581818,184.871078,174.276031,151.490906,129.449600,120.416542,116.623154,110.127281,81.499184,64.350426,80.433067,96.623154,68.325630,31.441343,12.212414,10.011589,6.442162,7.409108,8.044641,9.165304,3.806618,0.934713,0.300827,0.342976,0.123141,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.331405,0.000000 -602283.555000,4612475.550000,7707,4555,101.533066,152.225632,157.597534,142.911575,128.184311,118.349602,113.944641,110.721504,110.837204,112.134727,112.225632,123.341339,141.911575,158.291748,171.465302,182.870255,184.258682,173.126450,151.151245,130.200836,119.076874,115.457039,109.663651,80.828941,62.919857,79.994232,97.250427,69.481834,32.167786,11.593406,9.969441,6.509102,9.257041,9.378528,9.090924,4.428106,0.864464,0.267769,0.239670,0.061984,0.025620,0.000000,0.000000,0.004959,1.417356,1.331405,1.196694,1.054546,1.233058,0.000000 -602288.955000,4612475.550000,7734,4555,109.154564,154.427261,153.361145,141.286774,126.493408,115.319855,113.931419,111.295059,109.576050,110.609108,112.336380,122.989273,142.162796,159.782639,173.303299,184.733047,186.617355,176.633881,154.253708,132.253738,120.468613,115.766136,111.700020,82.476875,63.997543,80.865311,97.361176,70.840523,32.476883,12.432249,10.154565,8.737204,8.546298,9.646296,8.650428,4.936370,1.095044,0.233059,0.471075,0.125620,0.092562,0.230579,0.000000,0.000000,0.000000,0.000000,2.370248,0.000000,3.412397,0.000000 -602292.155000,4612475.550000,7750,4555,100.935555,156.085129,156.151245,144.167770,129.035553,117.746292,115.762833,111.820686,111.713249,113.729774,114.192581,125.333069,145.622314,163.176041,177.390915,189.085129,191.977692,180.895050,158.531418,136.200851,124.010757,118.952904,114.754562,85.233910,66.291756,83.407463,100.209114,72.126472,33.374397,12.384315,10.432250,7.717367,9.140512,9.314890,8.948773,5.805795,1.119011,0.312398,0.242149,0.191737,0.023141,0.674381,0.000000,0.000000,0.000000,0.000000,2.352893,0.000000,1.166116,0.000000 -602297.155000,4612475.550000,7775,4555,109.752907,153.691742,153.427277,140.295029,124.014069,112.724808,111.551254,109.038864,108.286797,109.956215,111.592583,122.881836,142.063629,160.014053,172.699997,185.452057,187.047104,177.377686,153.609100,131.807449,121.542992,117.675224,111.790924,82.799194,63.790928,80.047127,96.452087,70.906631,33.956219,12.882662,10.162828,7.244640,8.437205,10.523155,9.045467,5.166950,1.275209,0.434712,0.307439,0.006612,0.115703,0.428927,0.308265,0.028099,0.000000,1.263636,2.075207,1.843802,3.619835,2.066116 -602302.355000,4612475.550000,7801,4555,119.099190,157.371918,150.909103,137.322327,121.355385,110.818199,109.206627,105.495880,105.768608,108.214890,108.380180,120.438026,140.314056,157.652908,171.578522,183.578522,186.388443,176.223160,152.909103,130.950424,120.008270,115.479347,110.818199,81.884315,62.099190,80.024811,95.727287,67.512421,32.000019,12.747952,10.074398,7.396706,9.214892,9.515717,10.641336,7.473564,1.346285,0.766118,0.766944,0.192563,0.221488,0.975209,0.727273,0.000000,3.948761,2.559504,6.561158,4.728926,1.200827,0.000000 -602308.355000,4612475.550000,7831,4555,143.391754,165.087616,145.955383,132.228119,116.707443,105.790092,101.947121,99.707451,99.195053,101.798363,102.533897,113.715714,132.839676,150.542160,164.533920,176.029770,177.128937,167.352097,144.269440,121.880997,112.145470,109.211586,103.690926,76.021500,56.723988,76.203316,89.236374,63.988445,32.492584,11.589273,9.426465,9.449601,8.147948,12.078529,10.881008,8.809103,2.501660,1.518187,0.935539,0.537192,0.187604,0.936365,1.690084,1.397521,6.642149,8.805786,5.331406,4.539670,3.262810,0.000000 -601093.155000,4612465.550000,1755,4605,122.719849,123.016548,107.305801,93.694229,78.727287,66.289276,63.611595,58.537209,57.148781,57.834732,57.305805,70.272743,92.099190,110.512413,124.190102,133.429764,134.512405,130.264465,116.925636,100.561996,91.338860,91.685966,87.909103,52.231426,32.495888,58.570271,99.281006,85.471092,38.388451,8.574393,7.991755,19.290926,11.955388,19.623985,27.816547,27.524811,8.415712,2.498351,2.433889,1.168598,0.871075,1.136365,2.595043,5.785954,45.713230,38.605793,20.321493,13.306617,16.977688,22.289259 -601096.355000,4612465.550000,1771,4605,121.133896,135.796692,118.656219,107.251259,90.499191,80.400017,76.433075,71.656219,70.094231,70.102501,70.606628,82.565308,104.466133,120.598366,134.804977,145.945465,147.581818,141.400024,126.598366,108.821510,97.780182,96.342171,90.854568,53.755394,34.871090,58.945477,91.755394,74.119026,33.019852,8.458691,8.259523,14.341340,10.272743,13.048777,16.815720,13.802493,4.477693,0.887606,1.093391,1.122316,0.349588,0.534712,0.173555,2.228930,22.538847,16.710747,12.349589,9.374383,10.298349,16.649588 -601100.555000,4612465.550000,1792,4605,118.547134,133.372742,121.901665,107.356209,92.810760,81.802498,77.942993,73.752914,71.769440,72.232254,71.918205,83.504982,102.521500,119.984314,134.447113,145.571091,149.909927,144.628937,130.331421,113.257034,102.885139,101.240509,93.463646,57.604153,37.554565,59.620682,93.835548,75.422333,33.736382,10.537204,8.496714,11.169436,9.275220,12.974397,13.028942,10.747948,3.080171,0.552068,0.339671,0.282645,0.962812,0.863638,0.605786,1.496697,22.824797,18.071077,7.482646,6.917357,9.578514,11.242976 -601106.355000,4612465.550000,1821,4605,110.592575,121.484314,113.517365,102.922325,88.781830,78.426460,74.971916,70.195053,68.814888,68.773567,68.814888,81.302490,100.583481,118.442986,132.872742,145.335541,150.360336,146.500839,136.195053,121.021500,111.071091,110.930588,104.690926,67.451256,44.583492,70.310760,113.219849,99.624809,47.558693,11.308281,9.517373,10.712412,10.236379,15.397536,20.748777,14.214892,1.990912,0.464464,0.024794,0.012397,0.025620,0.053719,0.096695,1.114051,9.419010,9.757853,8.881820,5.364464,7.710745,1.649587 -601113.955000,4612465.550000,1859,4605,95.014893,121.884315,113.867783,101.785141,88.396713,78.066132,74.165306,69.710762,68.471092,67.661179,67.198364,79.239685,98.636383,113.586792,126.264481,135.842987,138.132233,134.008286,123.851257,109.479355,99.115715,97.942162,92.818199,57.611588,37.462830,62.983486,105.264481,97.363655,48.504154,10.846297,8.438036,10.661172,9.789270,13.871091,23.035555,15.633073,0.894217,0.252893,0.124794,0.142149,0.046281,0.192562,0.076860,0.267769,7.947108,5.580993,5.195868,1.567769,4.459505,1.623967 -601123.555000,4612465.550000,1907,4605,102.321510,122.775223,119.155396,108.733902,94.618195,86.072746,81.238037,78.147133,76.502502,76.775230,78.684319,89.725639,111.262833,128.560349,143.328949,155.386795,159.345474,154.874405,143.560349,128.304153,118.609940,117.923988,113.618202,74.634735,52.700844,79.047958,123.841347,110.047951,51.552086,12.353737,10.328945,10.206627,12.887620,17.454561,25.862000,16.319025,1.577691,0.339671,0.338018,0.016529,0.000000,0.000000,0.079339,0.328099,8.219009,5.113224,2.066116,0.693389,3.610744,0.000000 -601133.555000,4612465.550000,1957,4605,89.454559,125.773567,125.938850,115.930588,101.476036,91.376869,88.566956,86.170258,84.310768,85.162003,86.442986,98.831421,120.236374,138.013214,152.666122,165.054565,169.690918,164.128937,150.236374,132.905792,123.277702,122.509094,119.781822,82.128937,58.856216,83.500847,122.285957,98.434723,46.228119,13.330597,10.889276,9.714891,11.623983,14.073571,20.311586,12.604148,1.499178,0.072728,0.252893,0.074381,0.160331,0.201653,0.632233,0.603306,3.984298,4.814050,0.704959,3.421488,1.037190,5.369421 -601143.755000,4612465.550000,2008,4605,114.638855,128.028107,125.887611,114.623154,100.895882,91.697540,86.780182,83.515717,82.565300,83.052902,83.540512,96.094223,117.036377,133.705795,149.028122,159.110764,160.647949,153.606628,135.854553,116.722328,105.135551,102.879349,98.309105,64.135559,43.400021,65.160347,95.904144,75.226463,32.887623,10.866961,8.937209,9.552907,7.872740,10.044644,12.357039,7.588440,1.088433,0.366117,0.071901,0.000000,0.175207,0.384298,0.302480,0.123967,8.903307,6.047109,4.350414,4.525620,3.557025,5.281818 -601151.755000,4612465.550000,2048,4605,121.047958,126.862831,123.507454,110.912415,97.325638,87.119026,84.185143,81.507454,79.821510,80.771919,81.201675,93.482666,114.656219,133.532257,146.631439,159.143814,161.019852,153.201675,133.400024,112.953735,102.664482,100.160347,93.127289,60.110760,41.069435,60.581833,85.647957,64.342163,27.879358,10.305800,8.466135,8.050427,8.091746,9.709105,9.589271,7.074389,2.433065,0.782647,0.409093,0.417356,0.138017,0.536364,0.403307,1.914878,11.642977,12.904134,6.542150,7.260332,11.681820,20.560333 -601157.955000,4612465.550000,2079,4605,118.126472,132.617371,127.171082,114.823975,99.716537,89.642159,87.625633,84.286789,84.154556,85.534721,86.509926,98.567780,119.476868,137.534714,152.179352,163.394226,165.518188,156.832245,136.823975,116.088440,104.600838,102.286789,95.245461,62.138039,43.848782,63.931427,86.708275,64.981010,28.285145,10.281832,8.658696,11.115717,10.326461,11.904146,14.444644,10.142159,3.419841,1.504963,0.578514,0.575208,0.672729,0.695868,1.464466,0.997522,19.878515,11.554547,6.336365,7.426448,7.135538,8.998347 -601163.355000,4612465.550000,2106,4605,130.452896,136.115723,122.553726,111.702484,96.793396,88.545471,84.462830,80.553734,80.793404,82.991745,83.090919,95.537201,116.107445,134.421494,148.619858,158.735535,160.024796,151.884308,132.057861,111.157036,100.041328,96.446289,92.363655,59.983486,40.198364,62.016544,83.074394,63.066132,26.787622,8.818196,8.396713,13.806628,9.715717,11.909105,13.979355,14.029767,5.036372,2.214054,2.440500,1.439672,0.774382,1.090084,1.092565,3.147938,29.249592,29.480995,19.868597,12.856201,10.755373,23.633886 -601166.955000,4612465.550000,2124,4605,178.375229,161.410767,128.354553,105.920670,87.795059,77.340515,74.869438,73.580185,72.200020,75.224808,75.233078,87.836380,107.538864,126.656212,140.995056,151.127289,151.730591,143.730591,124.365295,105.241341,92.505806,90.365311,85.472748,55.001671,36.635555,57.042992,81.249603,62.160351,26.989277,9.312410,7.770267,13.139685,13.147124,19.665306,22.376051,20.436378,15.700838,11.418189,11.626453,12.595045,13.194219,15.265293,18.498352,19.838024,46.434715,36.571907,36.014053,29.619843,40.884304,41.161160 -601169.555000,4612465.550000,2137,4605,231.608276,162.013229,124.376877,110.285973,93.732254,82.690933,78.079353,76.013245,76.021507,78.500839,78.591751,92.261177,112.533905,131.236389,146.170258,156.550430,159.021500,150.608276,131.542175,109.269440,98.682663,96.872749,90.509109,58.947128,40.236385,61.294235,85.971924,64.847954,29.639688,9.399188,8.228118,15.464479,10.863651,13.534726,16.218199,16.406628,7.217365,1.731408,1.688433,1.997524,0.661159,1.023142,5.187607,2.008267,39.655380,36.436371,28.628107,23.602486,21.452900,20.763639 -601172.955000,4612465.550000,2154,4605,200.601669,155.651260,125.519028,110.543823,94.568619,84.411591,80.552086,77.775230,77.147125,80.535561,80.841339,93.262833,115.709114,132.923996,147.287628,158.527298,160.849609,152.403336,132.254562,112.213249,100.659523,97.659523,91.618202,59.725639,41.990101,62.163654,86.411591,65.031425,30.833076,9.657866,8.328944,13.128942,9.964480,13.108279,16.770266,17.221502,5.861995,3.256204,1.476863,0.727275,0.536366,1.658681,1.219837,3.182650,41.753723,36.600006,34.119015,17.205790,23.966946,24.612400 -601177.355000,4612465.550000,2176,4605,156.463654,138.124802,121.612411,108.199188,92.447121,82.455383,79.199188,75.769432,77.017380,78.364479,78.876869,91.827286,112.876869,130.703323,145.744644,157.100006,158.538025,149.918198,129.637207,109.513237,97.480179,94.926460,89.009102,57.653740,38.810764,59.033905,83.290092,62.959522,27.571093,9.005800,8.091754,12.094228,10.923156,12.409932,17.073570,15.397536,5.308274,2.044632,1.697525,1.557027,0.462811,2.716533,0.905787,3.963642,37.730587,33.931412,27.666948,15.576864,17.611574,9.709919 -601180.555000,4612465.550000,2192,4605,152.152084,140.738861,121.490929,108.623161,93.028122,83.077705,78.879356,76.639687,77.276054,79.251259,80.160347,91.548782,113.631424,131.565308,145.928940,157.590103,158.846298,150.466141,130.201675,110.276054,98.722336,95.408287,89.581841,58.606632,40.416550,61.523987,84.614899,62.325638,29.251259,10.066957,8.143821,15.153736,10.779355,12.885141,17.826462,18.066132,5.195877,2.066120,1.715706,1.561986,0.790911,2.384300,4.855376,3.123144,41.193390,39.690914,28.179342,17.239674,15.951242,35.573559 -601184.355000,4612465.550000,2211,4605,177.795868,149.157852,122.802490,110.405800,95.389267,85.083481,82.157867,79.058693,78.405800,81.595879,82.381004,94.414062,114.521500,132.157867,147.719833,158.529755,160.909912,153.075211,131.885132,111.843811,100.488441,97.356209,91.554558,60.091751,42.695057,61.612415,83.852081,65.513237,29.860350,8.913238,8.323160,14.923983,11.475223,12.914064,17.900017,16.842165,7.168606,3.020667,2.849593,1.690912,1.699176,2.084301,4.417360,4.984305,47.302483,31.445457,23.895872,11.472730,29.317358,28.878515 -601188.155000,4612465.550000,2230,4605,171.657043,146.359528,123.590927,113.086792,97.028938,85.814064,82.235550,80.392578,77.822327,82.128113,82.805801,94.351257,114.566132,132.921494,146.714890,159.483475,162.615707,153.202484,132.797531,111.599190,101.111588,97.549606,91.681831,61.004154,43.086796,62.491753,84.640511,62.971096,28.539688,8.913238,8.334730,14.312412,11.839685,14.875224,19.081835,16.752907,6.362820,2.864468,1.865294,1.477689,1.214052,3.206616,4.143807,4.176040,52.107445,34.477692,25.371904,24.831409,26.419010,20.739672 -601192.355000,4612465.550000,2251,4605,168.628937,146.686783,125.711586,112.455383,98.579353,88.802490,84.422333,83.637199,82.347946,85.232246,86.207451,98.009102,118.951256,135.653732,150.290100,162.075226,164.984314,156.587616,135.438858,115.290092,104.538033,100.232246,94.281830,63.471912,46.124809,64.108284,85.794228,64.901672,29.240517,10.864480,8.571094,13.350429,10.290925,12.646297,15.986794,13.675222,6.147944,2.968601,2.070252,1.752895,1.513227,2.769425,1.728931,4.325625,40.118187,28.788433,22.682650,13.051243,13.670250,25.400003 -601197.755000,4612465.550000,2278,4605,190.294235,155.228119,131.591751,118.533897,105.980179,92.236374,90.327286,86.988441,86.302490,90.657867,91.434723,102.302490,120.971916,139.608276,153.872742,165.930588,167.327286,159.418198,139.170258,118.104149,106.195053,103.352081,97.963646,67.765312,47.013245,67.285973,87.633072,67.228119,31.186796,11.614066,8.905804,9.998362,12.969438,12.368612,15.251255,11.428941,4.984307,2.399179,1.004962,1.034712,0.986780,1.267770,2.783475,5.446286,35.585957,23.228104,20.741323,10.441324,9.392563,18.231407 -601202.955000,4612465.550000,2304,4605,170.072739,154.477692,129.494217,117.676048,104.998360,93.213234,89.634727,87.510757,87.279350,90.271088,90.742165,102.766960,121.262825,139.238022,153.866119,164.800003,167.841324,158.419846,137.609924,116.692574,105.081009,102.097534,96.163651,67.130600,48.279358,65.304153,85.907455,65.229767,28.766960,10.787619,8.742167,11.359518,10.413238,11.979353,13.119023,9.415714,3.988437,1.847938,1.142978,0.619836,0.678514,1.934712,2.529756,3.693392,21.896698,29.785955,19.096695,11.102483,12.383472,16.923141 -601209.355000,4612465.550000,2336,4605,137.786789,148.377686,132.253738,120.014069,106.245476,94.005806,92.823982,90.534729,89.220680,93.890099,93.286797,104.956215,124.063652,142.038834,156.972717,167.807434,170.766113,161.823959,139.956207,119.526466,108.088448,105.146301,99.700020,67.666962,49.485146,66.394234,87.890099,65.923157,29.691755,9.628116,9.063656,10.895057,8.498361,11.841338,13.357039,7.933895,2.576039,1.204135,0.823970,0.659505,0.852067,1.901655,2.154549,1.271075,15.620663,12.331407,12.724795,9.352894,8.142149,13.421488 -601215.955000,4612465.550000,2369,4605,140.186783,159.903305,136.374390,126.952904,112.820671,99.729767,97.167786,95.895058,95.581009,98.663651,98.895058,110.200836,129.647110,147.779343,161.828934,173.762817,175.002487,167.746292,145.349594,124.795876,113.357857,109.440506,103.572731,71.804146,53.068619,72.969437,90.019020,68.886795,30.027290,11.261175,9.415722,10.323155,11.010759,11.265306,14.945471,8.114888,2.828933,2.046285,1.422318,0.548763,0.400001,0.555372,1.403308,1.503307,17.798349,7.942150,5.221488,7.119009,10.293390,8.054546 -601222.555000,4612465.550000,2402,4605,155.195892,162.014069,144.509949,133.138031,117.187622,101.898354,101.683479,99.600845,98.584312,102.526459,101.799187,112.600838,131.939682,151.104980,164.162842,175.493408,176.997543,167.890106,145.807465,124.733078,114.989273,109.352905,104.881828,72.890099,54.534729,72.724808,90.757866,68.782661,30.799192,12.348778,9.534730,7.930591,9.568609,10.079356,12.733901,6.978522,1.595873,0.669424,0.690911,0.385952,0.447935,0.027273,1.800002,0.578513,13.152894,2.808265,10.653720,4.263637,3.031405,9.841323 -601229.155000,4612465.550000,2435,4605,161.946304,157.979355,136.508286,123.177696,105.896706,95.673561,91.747940,89.318192,87.855377,89.309929,89.500008,101.458687,120.714882,136.516541,149.020676,160.202499,161.764481,150.557861,130.500015,111.566124,100.367775,98.516541,91.045464,62.351261,44.838863,60.971096,80.095047,58.756218,24.511589,8.542164,8.276878,13.179354,8.592574,8.981833,10.703320,5.746289,2.457031,0.627275,0.353720,0.160331,0.395042,0.947109,2.196698,3.456201,27.485954,21.985130,16.529757,11.952894,12.915704,19.601656 -601236.955000,4612465.550000,2474,4605,160.237213,152.610764,139.718201,126.222328,111.271912,98.189270,96.982658,94.197533,92.668610,93.990921,93.205795,105.627281,124.023979,140.007462,152.643814,164.404144,165.784317,155.065308,133.693405,115.098358,103.833893,101.718193,95.172737,65.379356,48.486797,63.734730,81.875221,61.073574,25.892580,10.480182,8.652085,13.790925,9.447948,11.568611,11.372744,6.580174,1.467773,0.656201,0.915705,0.737191,0.506612,0.247934,2.537194,1.288431,14.991737,16.459507,13.469423,12.347110,14.059505,13.030580 -601246.755000,4612465.550000,2523,4605,132.413239,162.504150,141.281006,129.446304,115.049606,101.867783,101.760345,98.785141,97.876053,99.768608,98.446297,110.652908,129.669434,145.157043,158.504150,169.595062,170.636383,158.504150,138.446304,118.272743,109.157043,106.157043,99.818199,69.578529,52.702496,68.074394,84.247948,62.223160,26.423986,10.456215,9.074399,11.821503,7.806625,10.303322,11.070263,4.100007,1.596697,0.429754,0.661158,0.483472,0.126446,0.000000,0.468596,0.477686,6.042150,7.079340,9.906613,7.287605,7.776034,7.401654 -601259.555000,4612465.550000,2587,4605,153.775208,169.869431,148.968597,138.844650,122.538841,109.976875,107.828117,105.762001,105.877701,110.051254,107.200020,119.067780,136.538849,154.910751,169.489273,180.100830,180.910751,168.414886,147.390106,128.439682,117.390099,115.877701,109.200020,79.489273,61.191753,75.679359,89.952087,67.051254,28.778532,13.271093,9.927292,15.697538,7.879354,9.081834,11.333075,5.796702,0.442152,0.747110,0.515705,0.061984,0.000000,0.026446,0.280165,0.000000,5.584298,1.017355,3.426447,7.484298,1.042149,2.059504 -601274.955000,4612465.550000,2664,4605,142.925629,181.416550,155.333908,145.499176,127.565300,115.003326,114.044647,111.879356,112.738861,118.276047,113.796715,126.019844,142.375214,159.796707,174.854568,186.730591,185.342163,170.970261,152.234711,132.937195,122.119019,119.821503,114.672745,84.639687,66.639687,83.523987,95.102501,68.110764,29.668612,12.686794,10.424812,16.680183,9.807453,11.614066,10.973569,4.619016,0.847936,0.642977,0.359505,0.278513,0.059504,0.000000,0.411571,0.435537,7.862811,1.116529,0.000000,0.911570,0.000000,2.152066 -601292.355000,4612465.550000,2751,4605,112.601669,153.635544,154.908264,143.280167,127.759514,119.957863,117.040504,114.999184,115.057037,116.222328,117.883484,128.999191,146.528107,162.304962,174.908264,185.742966,186.643784,177.255371,155.040497,135.271912,124.776047,122.420670,115.990921,88.420670,69.974396,84.577698,95.354553,69.561180,31.916548,12.476051,10.544646,9.099186,8.310760,9.509933,9.346295,4.451247,0.772729,0.307439,0.211571,0.004133,0.256199,0.042149,0.000000,0.000000,0.000000,0.000000,1.009091,0.000000,0.000000,0.000000 -601310.555000,4612465.550000,2842,4605,120.299187,152.221497,156.361984,144.361984,131.031418,122.568604,118.791740,116.981827,117.138847,119.081001,121.461166,130.510757,148.601654,164.204956,177.444626,188.337204,189.940506,180.138840,158.337204,138.105789,127.626450,123.089264,118.345459,90.560333,71.874405,87.114075,95.436371,70.204979,32.923988,13.833076,10.758697,7.243813,8.626460,7.538856,9.642161,5.396702,1.673558,0.458679,0.138844,0.120662,0.152066,0.206612,0.000000,0.000000,1.163637,0.000000,0.000000,0.000000,0.000000,0.000000 -601326.955000,4612465.550000,2924,4605,110.385139,152.146286,155.691727,145.096695,130.559509,123.700012,120.270256,117.782654,117.700012,120.179352,121.666954,131.237198,149.022308,163.931396,177.286774,188.187607,189.369431,180.104950,156.923141,136.980988,127.724800,122.873566,117.063644,89.964478,71.666962,85.790924,94.675217,70.700020,30.865309,11.974398,10.642169,6.386788,7.462824,8.193399,7.507450,4.034718,0.319836,0.004959,0.180993,0.007438,0.142976,0.080166,0.000000,0.000000,0.000000,1.119835,0.000000,0.955372,0.000000,0.000000 -601346.355000,4612465.550000,3021,4605,122.203316,155.991730,153.165283,144.628113,133.165298,123.008278,121.016548,119.355385,119.082664,121.611588,122.446297,132.793411,148.669418,163.347107,176.520660,187.322311,188.421494,179.867767,157.727295,136.983505,126.115715,122.123985,117.909103,90.347122,72.520676,86.033073,93.644646,69.314064,31.842993,11.634728,10.719028,5.262819,8.102493,9.667783,8.674393,3.652072,0.371902,0.093389,0.090910,0.003306,0.183472,0.229753,0.000000,0.000000,0.000000,0.000000,0.000000,0.914050,1.077686,1.969422 -601360.555000,4612465.550000,3092,4605,130.417374,180.183472,168.076019,156.919006,141.885956,130.200012,129.257858,128.604965,127.472740,132.786789,130.844635,140.861176,156.993378,173.778503,188.786774,199.737183,201.315689,189.332230,166.076019,146.406601,134.613235,132.497528,127.381828,98.902489,81.340508,95.348770,103.431412,73.266136,34.009937,14.062827,11.580183,9.589269,9.365304,10.559520,9.709104,5.043809,0.963638,0.279340,0.242149,0.000000,0.057025,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601367.955000,4612465.550000,3129,4605,137.828934,189.498337,173.357864,163.746292,145.159515,133.779343,133.366135,131.498367,132.308273,138.845459,135.068604,146.415710,161.795868,179.423981,194.176025,206.903305,206.936371,192.589249,170.977692,151.432236,140.713226,138.019012,134.209091,103.060333,86.870262,102.167786,108.680183,77.721504,36.217373,15.918200,12.200845,12.154561,9.381834,10.193404,9.514065,4.733067,0.300001,0.447108,0.167769,0.016529,0.000000,0.000000,0.003306,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.755000,4612465.550000,3158,4605,141.603333,185.685989,167.355392,160.743820,145.495895,131.148773,132.628113,130.735550,130.636368,136.281006,133.586792,145.140533,161.867783,178.429779,192.925629,205.520660,205.338837,192.851257,170.669434,149.553757,139.512405,137.884323,133.272736,102.553726,84.652901,98.636375,107.553734,76.545471,34.975227,14.200018,12.115722,11.195056,8.531422,9.153736,8.932246,4.532241,1.001655,0.210744,0.153719,0.000000,0.000000,0.000000,0.000000,0.049587,1.403306,0.000000,0.000000,1.050413,0.000000,2.243802 -601378.155000,4612465.550000,3180,4605,143.398361,187.100830,170.447937,162.522339,147.175217,133.042984,133.398361,131.514053,133.489273,138.282654,135.489273,146.952072,163.993408,180.348770,194.175217,206.233063,207.340500,194.059509,172.671082,151.885956,141.158691,137.621490,134.381821,103.811577,87.001663,99.935547,108.638023,78.704140,36.828117,15.935555,12.216548,12.014892,9.461175,10.882661,11.217371,5.546291,0.978514,0.136364,0.403307,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,1.308265,0.000000 -601384.955000,4612465.550000,3214,4605,119.794228,184.744629,167.257034,159.769455,143.670258,132.827271,131.992569,130.628937,130.661987,134.703308,133.347946,145.653732,162.066956,179.744644,192.860321,205.265289,205.893387,194.835541,171.281830,150.000854,139.653732,137.447113,133.281830,102.232246,84.711586,98.066956,108.050423,77.075218,35.703331,13.292580,12.116548,9.384312,8.879355,8.490098,8.933071,4.092570,1.036366,0.279339,0.152893,0.086777,0.001653,0.000000,0.084298,0.000000,0.000000,0.000000,1.195042,0.000000,0.000000,0.000000 -601387.955000,4612465.550000,3229,4605,118.971092,181.268616,169.062012,160.161179,146.260345,133.607468,133.789276,131.822342,132.797531,136.863663,135.549622,147.566132,163.566132,180.640533,193.847122,207.508286,207.756210,195.847122,173.301682,151.359543,142.152924,139.185989,134.227295,104.227295,87.020676,100.028938,109.210770,78.491745,37.128117,15.192581,12.202499,9.235551,9.678530,11.335556,10.786793,5.645465,0.527274,0.047108,0.128926,0.137190,0.013223,0.000000,0.002479,0.000000,1.403306,0.000000,0.000000,0.000000,0.000000,0.000000 -601394.355000,4612465.550000,3261,4605,118.652908,172.752106,167.479370,157.834747,143.190109,132.388443,132.950424,131.066116,131.198349,134.528931,133.826462,146.595078,163.471100,179.851273,193.644653,207.148773,208.380188,196.768631,172.909119,152.413254,141.768631,138.843002,133.909103,104.446297,87.057869,99.628113,109.289276,78.528938,36.181835,16.394234,12.173573,10.872741,8.266960,9.257043,10.290097,4.170257,1.111572,0.249587,0.050413,0.023141,0.001653,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601397.555000,4612465.550000,3277,4605,120.659515,175.419846,165.411575,158.485962,143.717361,132.585144,132.618195,131.254562,130.907455,134.204971,134.411591,146.304138,164.609924,180.824799,193.667770,205.411575,207.510757,195.676041,172.857864,152.229752,140.188431,139.031418,134.345474,103.816544,85.411583,98.047958,108.204971,79.337204,37.204979,15.624811,12.213242,11.047946,10.323157,9.823157,10.115717,4.013230,0.969423,0.226447,0.128100,0.000000,0.061984,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601400.755000,4612465.550000,3293,4605,113.323975,176.844635,169.514053,157.348770,144.076050,133.084305,132.307449,130.646286,130.695877,134.613235,134.571915,146.679352,164.183487,180.464478,193.414886,205.960342,207.117371,196.877701,172.117371,151.555374,141.241333,138.497528,132.381821,102.985130,84.902489,98.249596,108.472740,79.051247,36.076054,15.347951,12.034730,8.800838,10.123984,9.377701,9.857865,3.990091,0.919837,0.270249,0.197521,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601403.955000,4612465.550000,3309,4605,122.637199,173.496704,170.562820,160.066956,144.529770,134.009109,134.827301,132.496704,132.240509,135.926468,136.372757,147.240494,165.819016,182.496704,195.538025,207.620667,210.157867,198.876877,174.000839,154.290100,143.149612,140.033920,134.827286,105.273567,86.967781,100.100014,110.447121,79.876869,37.025642,17.216549,12.257043,9.252077,9.991753,11.391752,10.277700,4.810754,0.633059,0.363637,0.306613,0.013223,0.009918,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601407.155000,4612465.550000,3325,4605,127.946297,176.367767,172.566116,160.053726,144.582642,133.764481,134.028946,132.061996,131.623978,134.673569,135.466965,147.442154,164.533051,180.888428,193.929749,206.004135,208.442154,197.549591,172.590912,152.227280,142.442154,139.276855,134.772751,103.144646,86.541328,99.086784,109.285141,78.128120,36.781017,15.324811,12.252086,9.954559,10.016546,9.859521,10.510760,5.071083,0.857027,0.397521,0.390910,0.000000,0.138017,0.000000,0.059504,0.134711,0.000000,0.000000,0.000000,2.085951,0.000000,0.000000 -601413.155000,4612465.550000,3355,4605,122.552910,173.238846,172.214050,159.685120,145.685120,137.015717,135.073578,132.850433,133.999191,135.916550,136.792587,148.577698,166.652069,183.230576,196.139679,209.015701,209.982651,198.668594,175.255371,152.933060,143.247116,141.313232,137.627289,105.197533,87.519852,100.123161,111.164474,79.561180,37.784321,17.154566,12.511589,11.438029,10.966132,11.829768,11.309932,6.342160,1.438019,0.205785,0.200827,0.000000,0.002479,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.355000,4612465.550000,3376,4605,117.686783,172.331421,170.414062,160.438858,145.529770,135.992569,134.967773,134.058685,134.405792,135.620667,137.579346,148.695053,166.562820,181.926453,195.810760,207.827286,210.942993,199.860336,176.174393,153.976044,143.794235,140.653732,135.281830,106.405800,87.868607,100.422325,110.430588,79.009102,37.521503,17.518202,12.298367,10.651252,11.123984,11.546299,11.769438,5.674392,1.276036,0.201654,0.431406,0.276034,0.014877,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601420.555000,4612465.550000,3392,4605,120.511581,167.007462,168.354568,157.643814,144.685150,133.933075,134.685135,132.428940,131.759521,135.156204,136.445480,148.428940,166.172745,181.676880,195.569443,207.990921,211.048782,199.742996,174.742996,153.329773,142.040512,139.916550,135.263641,105.247116,87.544640,100.437202,110.131416,79.742989,37.610764,15.639688,12.296714,8.962824,10.152909,10.235556,10.776875,4.432241,1.170251,0.277687,0.250414,0.142149,0.002479,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,1.004959,0.000000,0.000000 -601425.555000,4612465.550000,3417,4605,105.768608,173.322311,170.760330,160.636368,145.719009,136.074387,135.148773,133.727295,133.528931,135.950409,137.264465,149.652893,166.652893,182.396698,196.322311,209.297516,212.396698,200.388428,176.000000,154.181824,144.644623,141.363632,135.454544,106.619850,87.256218,102.561996,111.933899,79.917381,36.925644,16.277704,12.314069,8.794228,9.178530,11.121505,10.664480,4.621497,0.696696,0.412398,0.068595,0.000000,0.001653,0.000000,0.000000,0.055372,0.000000,0.000000,1.076033,0.000000,0.000000,0.000000 -601432.755000,4612465.550000,3453,4605,111.485130,167.782654,167.088440,159.716537,143.468597,135.096710,134.014053,132.666946,132.162827,135.369431,136.038849,148.385956,165.691742,182.468597,196.774384,208.352905,210.063644,199.253723,176.022324,153.832245,142.807449,140.410751,134.336380,105.204140,87.625633,101.923149,109.518188,79.658684,37.625641,15.233075,12.212416,11.951253,10.219025,11.239687,11.061998,4.402488,0.397522,0.422315,0.066942,0.067769,0.008265,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.755000,4612465.550000,3498,4605,119.050423,169.017349,167.306610,157.124786,143.967789,134.810745,133.984299,132.075211,133.959503,135.604141,137.852081,148.099991,166.761154,182.802475,196.703308,209.414047,211.290085,200.587601,176.595871,155.223969,143.265305,140.835556,135.100006,106.934723,86.959518,101.265305,111.100014,80.290092,38.248775,17.047125,12.281837,8.717370,10.098364,12.163654,11.972744,5.907450,0.251240,0.296695,0.000000,0.147108,0.243802,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.555000,4612465.550000,3512,4605,118.371918,162.644638,170.148773,157.322327,144.057861,135.867767,134.983475,132.628113,133.727295,136.330597,136.752075,149.314072,166.429764,183.099182,196.380188,209.735550,213.322327,202.000015,176.950424,154.966965,143.512405,141.380188,136.000015,104.694229,86.578537,101.338860,110.520676,79.876060,38.487625,16.582663,12.363655,10.085966,9.669438,11.913240,8.970263,4.838851,0.985126,0.121488,0.000827,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.355000,4612465.550000,3536,4605,110.384315,166.392563,164.384293,157.475220,142.219025,134.359528,134.152908,131.822327,132.557861,134.698364,136.516541,148.194244,165.103302,181.433884,195.541321,208.780991,211.326447,199.838837,175.764465,153.227310,143.276886,139.202515,135.681839,105.219025,86.483490,101.070267,110.028938,79.582664,37.070271,15.650432,12.334729,7.527284,8.806628,11.956216,10.755388,3.677696,0.912399,0.182645,0.124794,0.064463,0.019835,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.555000,4612465.550000,3552,4605,115.585144,163.378525,168.403305,157.519012,142.981827,134.965302,134.221497,132.543808,133.841324,134.775208,137.204971,148.816528,166.337204,182.750427,197.494217,209.279343,212.370255,201.428101,176.775208,154.585129,144.138855,140.122314,135.436371,105.824814,86.204979,100.882668,110.370270,79.783493,37.642994,16.421505,12.312415,9.989271,9.248777,10.644646,10.589272,4.650423,1.071903,0.048760,0.145455,0.489257,0.049588,0.000000,0.000827,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.755000,4612465.550000,3573,4605,111.914062,162.418198,168.236374,156.856216,142.608276,135.170258,132.864471,132.583481,132.996704,135.162003,137.732239,148.600006,166.757034,183.277695,197.170258,208.790085,212.219833,202.013229,176.624802,155.360336,144.525635,141.352081,134.872742,106.823151,87.500839,101.616539,109.385139,79.054558,37.104153,15.081837,12.261176,8.452080,8.812414,9.262827,10.462826,4.609927,1.257854,0.235538,0.066116,0.007438,0.012397,0.000000,0.000000,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.755000,4612465.550000,3593,4605,115.363647,158.446304,166.933899,156.818192,145.355392,136.041336,135.239685,133.801666,133.123978,136.528946,139.396713,149.876053,167.752075,184.727295,199.132248,211.429749,214.909088,204.272720,178.776871,155.859528,145.933899,143.173569,138.272751,108.512405,87.917374,102.355385,112.595047,81.338852,39.256218,16.628119,12.570267,8.613235,11.252085,9.444647,12.295058,3.504140,1.366945,0.175207,0.000000,0.166942,0.000000,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.755000,4612465.550000,3613,4605,104.337212,163.254547,168.204971,158.370255,144.262833,135.081009,134.312424,133.519028,134.576889,136.072739,138.337219,150.114059,169.593399,185.791763,200.361984,212.494217,214.899185,204.775208,179.808289,157.056198,146.254562,143.395065,139.163666,107.403328,89.072746,102.948784,112.221512,80.105804,38.618202,16.635557,12.651259,8.459517,10.047124,10.619853,9.094229,5.321496,1.071076,0.227273,0.138017,0.013223,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.155000,4612465.550000,3645,4605,112.819031,162.521515,166.835571,156.612427,143.876892,134.976044,133.257034,132.430588,132.802490,135.777695,138.314911,149.918213,167.480194,184.852097,198.885147,212.174377,216.207428,205.190933,179.934738,156.926468,146.628952,144.215729,138.645477,107.976044,87.860344,103.612411,111.992577,81.223991,37.141338,15.188447,12.604150,7.575220,7.856215,9.174397,10.143818,4.054554,0.740497,0.132232,0.105785,0.066942,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601474.955000,4612465.550000,3664,4605,111.390923,162.903336,168.762833,157.415726,144.399200,136.068619,134.704971,133.556213,134.043823,136.233902,138.539688,150.845474,168.985977,186.696701,201.506622,213.382645,216.721497,206.936371,181.523148,158.886795,147.671921,143.473572,139.390930,108.696709,88.581009,103.002495,112.928116,81.060349,38.713242,16.183489,12.671921,7.819848,8.930595,10.970265,8.955388,4.204967,0.956200,0.057025,0.184298,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.355000,4612465.550000,3691,4605,111.965302,156.502487,168.527283,157.089264,144.593399,135.841324,134.692581,133.568604,133.345474,136.213226,138.940506,150.444641,168.196701,185.725632,201.114059,213.626450,217.279343,207.047943,180.758682,158.659515,148.320663,143.419846,139.436371,108.932243,88.601669,102.659515,113.783485,82.585136,37.849609,16.052084,12.676053,7.469433,9.387620,8.866958,9.370261,5.979347,0.891738,0.117356,0.211571,0.218182,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.955000,4612465.550000,3714,4605,112.671089,166.596710,169.109100,158.927277,145.613235,137.555374,136.414886,135.274399,136.381821,139.166946,141.638031,152.621490,171.423157,188.365295,204.836380,217.927277,220.596710,210.778519,184.919022,161.993393,150.472733,147.398361,142.927277,111.679359,91.894234,106.042992,116.067787,84.621506,40.811592,17.728117,12.993407,8.281831,11.070266,10.960347,10.811586,5.955382,0.750415,0.138017,0.153720,0.332232,0.017356,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.755000,4612465.550000,3728,4605,124.942986,160.670242,168.149582,158.876862,144.703308,136.736359,135.116531,133.777695,135.414047,137.314880,140.033875,152.058670,170.290100,187.810760,202.868607,215.480164,219.554535,208.273544,182.298355,159.290085,149.852066,145.744629,141.281815,109.042168,89.281837,103.736382,114.116539,81.934731,39.314896,15.809112,12.843821,7.928112,10.946301,9.522331,10.311585,5.881001,0.890912,0.215703,0.171902,0.013223,0.001653,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.555000,4612465.550000,3747,4605,121.695053,166.735550,167.462830,159.611588,146.347122,137.958694,136.380188,135.504150,136.652908,139.123978,141.826462,152.454559,171.247955,189.066116,204.520660,217.834717,220.157028,209.892563,184.595047,161.809937,150.338852,146.652908,142.090927,111.297539,90.272743,106.132248,115.033073,84.347122,40.024815,17.637207,12.917374,9.586791,9.872743,10.156215,9.339683,5.595050,0.776861,0.071901,0.105786,0.076033,0.003306,0.019008,0.000000,0.076033,0.000000,1.465289,0.000000,0.000000,0.000000,2.141322 -601495.155000,4612465.550000,3765,4605,110.739677,167.227295,165.136383,158.640518,145.491745,136.690094,134.020691,133.028946,134.458694,137.425629,139.880188,151.987625,169.359528,186.946274,201.938019,215.921494,218.946274,207.458679,182.772720,159.623978,149.351257,144.946304,140.227295,109.557861,90.202492,103.830589,113.855377,81.359520,37.781017,16.176878,12.747953,7.014062,9.089273,10.322331,7.926462,3.552901,0.863638,0.455373,0.166943,0.276034,0.014050,0.000000,0.011571,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.355000,4612465.550000,3791,4605,102.962830,163.548767,168.110748,158.482651,145.490906,135.523987,135.284317,134.548782,134.565308,137.780182,140.061172,151.218185,169.515701,188.077682,202.408264,215.457855,218.953720,209.424789,182.457855,159.226456,149.127274,144.623154,140.127289,109.152084,88.846298,104.110764,114.069443,84.044647,38.127293,13.817371,12.738861,6.212408,9.346297,7.824810,9.104146,3.651248,0.552067,0.070248,0.038017,0.019008,0.014876,0.000000,0.000827,0.000000,2.575207,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.155000,4612465.550000,3805,4605,112.726456,167.809097,165.908264,159.982651,146.040497,136.470245,136.329758,135.833893,135.966125,138.842148,141.114883,152.751236,171.404129,188.346283,203.767776,217.652069,220.164459,210.428925,184.842148,161.767776,150.751236,146.486786,141.536362,110.974388,90.379349,105.850426,114.924805,84.701675,39.313248,18.044645,12.866961,7.735550,11.393405,9.282661,10.592577,5.128108,0.438844,0.619010,0.312398,0.000000,0.025620,0.000000,0.013223,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601506.955000,4612465.550000,3824,4605,109.381004,164.976044,166.810760,161.083481,146.364471,136.852081,135.471909,134.827286,135.025635,137.529770,140.058670,151.389267,170.414062,187.298355,203.141342,216.819000,220.612396,209.661987,183.133072,159.232239,149.265305,145.356216,141.009109,109.273567,89.190926,104.769432,115.116539,83.703316,38.860348,15.380182,12.819026,5.971087,8.225635,8.109106,7.889268,2.888436,0.247108,0.143802,0.146282,0.147108,0.000000,0.000000,0.042976,0.351241,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.155000,4612465.550000,3845,4605,130.771088,159.002502,167.134735,159.341339,145.647125,135.828934,134.258698,133.969437,133.837204,137.944656,139.275223,150.994232,167.985977,186.357880,202.539673,215.027283,218.027283,208.688431,181.779358,158.457047,148.134720,144.423981,139.209106,107.928116,88.531425,102.465302,112.597534,81.969437,37.903324,14.670266,12.655391,4.990921,7.812412,7.378527,8.070260,3.566123,0.189257,0.142149,0.000000,0.299174,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.355000,4612465.550000,3861,4605,121.113235,168.096710,169.766129,161.435547,149.204147,139.104965,138.080170,137.237198,137.419022,140.923157,142.617371,154.906616,172.840500,189.724808,205.633896,218.716537,222.906616,211.220673,185.518188,162.683487,151.757858,148.666946,143.245468,111.857033,90.931412,106.923149,116.906624,85.559517,41.799191,18.471094,13.022333,7.929765,11.981008,12.447950,11.982659,5.002488,1.177689,0.304133,0.273554,0.166117,0.161158,0.000000,0.000000,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.755000,4612465.550000,3878,4605,118.121513,169.278519,169.592575,161.906616,147.857056,138.559525,136.972748,136.270264,135.981003,139.716553,141.063660,153.212418,170.757858,187.947937,202.997513,216.749603,218.782654,209.344635,183.956207,160.476868,149.509949,145.534729,140.336395,109.625633,89.427299,103.774391,113.452072,82.311600,40.443821,16.481010,12.757869,7.117367,10.531423,9.538033,11.306626,5.502488,0.753722,0.269422,0.149587,0.144629,0.004132,0.000000,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.555000,4612465.550000,3932,4605,124.232246,173.893387,170.909912,163.339661,148.769424,139.620667,138.281830,137.290100,137.108276,140.372742,142.604141,152.587601,169.843811,188.223984,203.174393,215.661987,218.513214,209.009094,182.133072,159.430573,146.835541,145.513229,139.100006,107.695053,88.661995,102.612411,115.017365,82.992577,39.232258,17.280184,12.645473,7.562823,10.085140,8.654560,10.722328,3.626454,0.771076,0.071075,0.339670,0.009091,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.755000,4612465.550000,3948,4605,120.360344,167.922333,170.889267,163.145462,149.310760,138.054565,136.831421,135.038025,136.558685,139.459518,140.699188,152.484314,169.071091,187.393402,202.732239,214.715714,217.228119,207.459518,180.509109,157.666122,146.707458,143.261169,137.690918,108.409927,87.881004,102.600014,113.013237,82.087616,38.352089,15.111588,12.517374,6.359514,9.921504,8.074394,7.838857,2.462816,1.286779,0.123968,0.409092,0.147108,0.174381,0.000000,0.060331,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.355000,4612465.550000,3976,4605,124.150429,174.662827,174.166946,164.580170,151.638031,140.762009,138.596725,138.514069,138.076065,142.646301,143.315735,154.142151,171.307449,189.423157,204.357040,217.357040,219.414886,209.208267,182.894226,160.117371,149.249603,144.604965,139.927292,110.241341,88.580185,104.761993,114.728943,85.795059,41.266129,17.484314,12.720680,8.752079,11.208282,10.743817,11.167784,3.811577,1.476863,0.276861,0.145455,0.023967,0.218182,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.155000,4612465.550000,3990,4605,115.727287,178.512405,170.471085,165.074387,152.735550,139.859528,138.636383,137.462830,138.553741,142.256210,142.669434,154.669434,170.586777,190.090912,203.958679,217.132233,219.140503,208.842972,182.347122,159.363632,147.917374,144.942169,139.363647,108.677704,89.231422,102.975220,113.975220,84.462830,38.256218,17.043819,12.669440,7.282656,9.215718,9.777703,10.748775,3.383478,0.478514,0.342976,0.357852,0.161984,0.044629,0.000000,0.017356,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.755000,4612465.550000,4003,4605,129.738022,181.853745,174.126450,165.076889,150.531433,139.539673,138.258682,138.275208,136.961166,141.531418,141.919846,153.349609,170.142975,189.010757,202.729752,214.779358,217.795883,208.085129,182.101654,159.118210,146.399185,143.134720,138.209091,109.316536,88.448769,103.209099,112.944633,83.481827,39.440517,15.973571,12.564482,8.198359,9.434727,10.007453,8.610756,3.434717,1.143804,0.026447,0.084298,0.000000,0.037190,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,1.296694,0.000000 -601547.955000,4612465.550000,4029,4605,127.524818,183.037201,174.309937,165.582657,151.946304,139.144638,137.830597,138.342987,137.615723,142.351257,142.285141,153.400848,170.384308,188.557861,202.896713,215.623978,217.541336,207.301666,181.640518,158.739685,147.475220,143.475220,137.409103,108.293404,87.797539,101.045471,111.772743,82.194229,39.342995,16.579357,12.491754,5.678522,10.554562,10.919025,8.602492,3.892570,1.077688,0.209919,0.155372,0.000000,0.228926,0.041322,0.023967,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.555000,4612465.550000,4052,4605,119.081841,177.668610,174.817368,164.007462,148.181015,138.189270,137.866959,135.379364,135.519852,139.602493,139.172745,151.040512,168.486801,186.759521,199.891754,212.594238,213.933075,202.528122,177.569443,154.776047,143.866959,140.883484,135.809113,106.809105,87.594231,100.511581,110.412407,81.023987,36.759525,16.877705,12.346299,8.784312,9.725636,10.204973,10.740509,3.994222,0.955374,0.210744,0.401654,0.004959,0.150414,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.755000,4612465.550000,4068,4605,124.895889,176.937210,173.069443,161.523987,147.838043,136.705811,137.011597,134.730591,134.813248,137.011597,138.598373,150.226471,168.185150,184.672745,198.185150,210.788452,212.408279,199.879364,174.523987,153.995056,141.986801,139.069443,133.309113,104.730591,85.804977,97.970268,107.755386,78.350433,37.019855,16.828943,12.119028,9.069435,10.437207,10.917371,9.908279,3.583479,1.153721,0.364464,0.082645,0.125620,0.155372,0.014876,0.076860,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.555000,4612465.550000,4082,4605,121.576042,171.485138,172.972733,159.245468,146.815720,136.311584,136.179352,133.832245,134.212402,135.518188,137.063644,148.741333,167.063644,183.253738,197.328125,209.600845,211.195892,198.592590,172.881821,150.873566,141.328110,138.733063,132.881821,103.162819,84.972740,99.551247,108.989265,78.757858,37.493404,15.208282,12.080183,10.433071,9.138858,9.373569,10.650429,5.152074,0.629754,1.000002,0.158678,0.000000,0.054546,0.272728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.555000,4612465.550000,4097,4605,119.120682,174.302490,173.021500,158.757034,146.203323,135.624802,134.773560,132.971924,132.203323,135.104141,136.988449,148.600006,164.608276,181.633072,196.525635,208.707428,210.087601,197.674393,172.451248,150.517365,140.021500,138.352081,132.509109,102.690926,84.343811,97.806625,107.352081,76.897545,35.401672,15.199190,12.046300,9.802493,9.173570,9.711585,9.549601,4.006619,0.519009,0.285952,0.418183,0.066942,0.000000,0.017356,0.052066,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.955000,4612465.550000,4119,4605,125.083481,179.223984,172.645462,161.513229,148.513229,136.777695,136.662003,134.827286,135.033890,138.042160,138.455383,150.066956,167.620667,184.777695,198.719849,211.463654,211.331421,198.521500,172.612411,152.752899,141.050430,137.909927,133.281830,103.893402,85.860352,98.042168,108.232246,76.967789,36.405804,15.963654,12.116548,9.158692,10.147124,10.874395,10.384312,5.164472,0.936366,0.165290,0.061984,0.003306,0.000000,0.000000,0.054546,0.055372,0.000000,0.000000,0.000000,1.591736,0.000000,0.000000 -601570.155000,4612465.550000,4140,4605,107.799187,177.741348,173.071930,162.633896,148.286804,135.807449,137.088440,135.088440,134.501663,137.361160,137.848785,149.749619,166.972748,184.063660,198.253723,210.154556,211.361160,199.179352,172.873581,151.708298,141.385956,137.989273,133.063644,103.253731,85.584312,98.071907,107.947945,76.551262,37.377708,15.718200,12.096713,9.990096,9.740513,9.212414,10.555387,3.878520,0.634713,0.504134,0.395868,0.000000,0.115703,0.000000,0.057851,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612465.550000,4154,4605,108.011589,178.507446,173.408264,163.490921,148.433060,137.871078,136.895889,135.300842,135.276047,138.201660,138.003311,149.631424,167.730591,185.085953,197.672729,211.342163,212.044647,199.416534,173.350418,151.119034,140.697525,138.581818,134.036377,103.540512,85.854568,99.317375,108.085968,77.771919,36.681007,15.995885,12.185143,9.988442,9.157868,10.100016,9.999188,4.117362,0.862812,0.613224,0.214050,0.133058,0.000000,0.000000,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.355000,4612465.550000,4171,4605,121.237213,176.071930,172.419037,160.939697,146.377716,137.080185,135.270279,133.443832,134.509949,137.716553,137.179367,149.286804,165.658707,183.559525,197.295044,209.584305,210.832245,197.683487,171.559525,151.096725,139.567795,137.485153,132.609116,103.014069,83.914902,97.154564,107.071922,75.857048,35.691753,14.542166,12.055390,8.504146,8.113238,10.216545,8.868608,3.193395,0.819010,0.120662,0.065289,0.000000,0.000000,0.000000,0.080165,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.355000,4612465.550000,4186,4605,124.773582,182.128922,174.558670,163.765305,148.839676,136.071091,135.442993,135.707458,134.922333,138.707474,137.195068,149.013229,166.451233,184.335541,197.509094,210.393387,210.310745,196.905777,171.880981,151.004974,139.285980,138.236389,132.872742,102.451256,85.162003,98.079353,106.517365,76.211594,36.781834,14.279356,12.079357,9.998362,8.380180,10.129766,9.995883,4.907447,0.459506,0.291736,0.052893,0.021488,0.071901,0.000000,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.755000,4612465.550000,4203,4605,123.492577,181.676041,170.775208,159.601654,145.497528,134.489273,135.249603,133.266129,132.626465,136.676041,135.676056,147.469421,164.461166,181.659515,195.361984,207.370255,208.130585,194.238022,169.411575,148.601654,137.282654,135.191742,130.018188,101.514061,82.497536,95.538849,104.299187,73.299194,34.588451,13.434728,11.819853,10.916543,7.445468,9.251255,8.036377,3.760338,0.469423,0.733886,0.161157,0.120662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.555000,4612465.550000,4222,4605,126.409119,186.468597,171.956207,162.807449,148.698364,136.161179,137.119858,136.161179,136.797531,138.954559,137.533081,149.995880,165.987625,183.657028,197.698349,210.078506,209.888428,196.450409,171.995880,150.243820,139.533081,136.665298,131.863663,102.541336,85.086792,97.822327,106.351257,75.400841,36.235558,15.064481,11.987622,10.181006,7.301665,9.176047,10.106627,5.288438,0.594217,0.160331,0.088430,0.000000,0.000000,0.000000,0.069422,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.355000,4612465.550000,4251,4605,141.434723,193.203323,176.641342,166.980179,149.657867,136.839676,136.914062,134.740524,135.302505,140.368607,137.095886,149.153732,165.905792,184.955383,197.872742,211.434723,210.740509,196.203323,171.434723,150.542160,140.186783,137.542160,132.054565,101.046303,84.368607,96.616547,105.376869,74.790100,35.988449,15.348778,12.004976,12.121503,8.192577,9.495882,7.810757,4.847942,0.513225,0.224794,0.219009,0.079339,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.555000,4612465.550000,4267,4605,132.439682,191.100830,174.935547,168.009933,150.381821,137.563644,137.621490,136.728943,137.390091,141.869431,137.869431,149.844635,166.464478,184.158691,199.266129,211.406616,211.786789,196.844635,172.117371,151.836380,139.464478,136.910751,132.200012,101.745461,83.695877,98.249596,107.067780,74.200012,35.943825,14.644646,12.018201,11.539685,7.975222,8.628940,8.433897,4.038023,0.909093,0.038017,0.412398,0.317356,0.000000,0.000000,0.019008,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612465.550000,4283,4605,151.572769,198.589294,177.052109,170.581024,153.547974,141.581024,140.845490,139.052109,139.415741,145.432266,141.233917,152.432266,169.382690,187.159546,200.680191,214.085144,213.118210,197.473587,173.688461,152.787643,142.192596,139.060349,132.936371,103.523155,85.779358,99.415718,107.200844,75.035553,35.341335,16.014894,12.085143,10.890098,9.329767,8.926461,8.585138,5.406621,0.960333,0.240497,0.000000,0.090909,0.000000,0.161157,0.019008,0.350414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.755000,4612465.550000,4313,4605,160.665298,200.668594,180.197525,170.561157,153.966125,140.098343,138.486786,136.949585,137.379349,144.742981,139.420670,150.263641,166.371078,184.057022,199.015701,212.081818,210.866943,193.982651,172.288437,150.271912,140.412399,137.156204,132.718201,102.809113,86.858696,100.833900,106.462006,74.784317,37.585968,16.390928,12.065309,14.299191,8.224808,10.269437,9.553733,5.584307,1.814053,0.578514,0.249587,0.137190,0.300827,0.000000,0.135538,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.555000,4612465.550000,4327,4605,139.354553,192.181000,178.222321,168.106613,151.495041,139.594223,138.263641,136.784302,137.734711,143.685120,140.296692,151.420670,167.205795,184.891739,198.561157,209.900009,210.420670,194.585953,171.619019,149.255371,138.379349,136.420685,131.627274,101.949600,84.990921,100.833893,106.189270,73.577698,36.280190,15.281837,11.966134,12.992577,9.085965,9.740511,9.987617,5.132240,1.498350,0.589258,0.560332,0.000000,0.000000,0.000000,0.000000,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.755000,4612465.550000,4343,4605,126.842155,171.941330,172.957855,162.619019,146.891739,138.395874,136.825623,135.313232,135.850418,138.098343,139.131409,150.263641,167.172729,182.445465,196.139679,206.759506,208.304962,195.338013,171.023972,148.329758,138.594223,135.015701,129.990906,100.751244,84.495056,97.858688,106.495041,76.916550,37.668613,15.344645,11.817373,7.596708,8.387619,9.639684,8.177700,3.161990,0.611572,0.218183,0.047108,0.004959,0.000000,0.000000,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612465.550000,4364,4605,109.770264,168.530594,171.472733,160.927277,146.869446,135.571930,136.241333,135.142151,135.166946,136.712402,139.216553,149.671097,166.811600,182.456207,197.109100,206.935547,208.224808,197.018188,171.737198,150.117386,138.968628,136.357040,131.018188,102.770264,84.076042,98.241341,105.762001,75.943817,38.191753,14.741340,11.910764,9.430592,7.265305,10.324809,10.299189,3.695048,0.604134,0.281819,0.130579,0.192563,0.068595,0.000000,0.057851,0.208265,1.366942,0.000000,0.000000,0.000000,0.000000,2.148760 -601621.355000,4612465.550000,4396,4605,120.280174,161.602493,170.585968,159.114899,144.858704,137.445480,135.652084,134.486786,136.081833,138.552917,140.395889,149.718201,167.313248,184.090103,197.900024,208.561172,208.627289,197.891754,173.883484,150.635559,140.866959,136.825638,132.263641,103.445465,86.908279,98.726456,106.850426,77.090096,36.817371,14.664480,12.023985,6.924804,8.177703,8.944644,9.902493,4.066951,0.699176,0.184298,0.000000,0.295868,0.070248,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.355000,4612465.550000,4416,4605,106.581833,165.647934,168.920670,160.523972,147.747116,137.656204,137.639679,136.482651,136.887604,139.441330,141.077682,152.408264,168.763641,185.838013,197.838013,209.102478,210.639679,199.639679,173.573563,152.317352,142.540497,139.267776,132.945465,105.970261,86.821510,101.780174,109.300827,77.962006,38.259529,15.217374,12.085969,7.093400,8.800015,9.655388,10.304973,3.826453,0.523142,0.262811,0.097521,0.068595,0.000827,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.555000,4612465.550000,4432,4605,116.777702,167.323151,171.744644,162.554565,148.323151,141.025635,141.223984,139.438858,138.984314,140.843811,144.000839,154.447113,171.686783,187.579346,201.190918,212.901672,213.835556,202.257034,176.133072,155.504974,143.934723,140.719849,133.827286,107.124809,88.860344,101.463654,109.612411,79.174400,39.306633,15.930595,12.166135,8.346293,9.895885,9.633073,10.761998,5.468605,1.170250,0.490910,0.342976,0.068595,0.064463,0.173554,0.195042,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.955000,4612465.550000,4454,4605,114.110764,165.895874,172.276031,162.474380,149.052917,141.623154,138.507462,138.532257,138.664459,141.259521,142.895889,153.730591,170.639679,187.639679,200.656204,212.350418,213.226456,201.102478,176.639679,154.540512,143.515717,140.854568,135.945480,107.366959,89.466133,103.689278,110.276054,80.375229,39.714066,16.652084,12.358696,8.682659,9.563654,11.884315,10.927288,4.300834,1.071903,0.091736,0.047108,0.066116,0.217356,0.000000,0.064463,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.155000,4612465.550000,4485,4605,113.298355,169.768616,173.685974,163.388443,149.504135,139.760345,138.644638,137.454559,137.776871,140.966965,142.892578,153.198364,170.206635,186.933899,200.495865,210.066132,212.685974,201.603302,175.495880,153.743820,143.479355,138.760345,134.818192,106.611588,88.140503,101.454559,108.719025,79.247948,38.669441,17.265308,12.256218,7.529764,9.647950,9.392577,10.675222,5.078522,1.111573,0.580166,0.052893,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.155000,4612465.550000,4505,4605,115.770264,162.687607,171.034714,162.142151,148.357040,139.811584,138.274384,137.877701,137.472733,140.786789,143.042984,152.968597,169.786789,186.051254,200.266129,211.290924,212.952072,200.654556,175.910751,152.522324,144.175217,139.522324,134.200012,106.315720,88.505814,102.472748,109.233078,80.390091,38.712418,15.545473,12.200020,7.608275,9.942167,9.742991,10.031421,4.620668,0.442150,0.340496,0.202479,0.085124,0.000000,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.955000,4612465.550000,4524,4605,119.659508,169.163666,171.791763,160.775223,150.502502,140.386765,139.361984,138.089264,139.395035,141.304138,143.568588,153.585144,171.254562,186.965317,201.692581,210.940521,212.915726,202.981842,176.932251,155.130600,144.651230,140.535522,136.618195,108.271080,90.147118,102.477692,110.370255,81.345467,39.948780,16.219027,12.419854,7.316540,8.854563,10.646297,9.110759,6.441333,0.986779,0.062810,0.066942,0.000000,0.068595,0.228926,0.000000,0.080992,0.000000,2.455372,0.000000,0.000000,0.000000,0.000000 -601652.955000,4612465.550000,4554,4605,122.196716,164.634720,172.105789,162.593399,148.816528,139.353745,138.709106,137.287628,137.196716,140.601669,142.353745,152.552078,169.882645,186.766953,199.328934,210.287613,210.353729,201.659515,175.543808,153.238022,142.188431,138.552094,133.163651,105.593407,87.857872,102.254562,109.775223,79.543823,39.370266,14.522333,12.105804,6.253729,9.039686,8.617373,8.460343,3.379346,0.241323,0.097521,0.266943,0.000000,0.006612,0.000000,0.034711,0.059504,1.219008,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.555000,4612465.550000,4567,4605,122.409119,167.409088,171.946274,162.276855,149.673553,140.012390,138.971069,137.086777,138.045456,140.690079,143.210739,152.541321,171.219009,186.632233,200.078506,211.805786,211.971069,200.871902,175.706604,155.111572,143.789261,139.004135,133.681839,105.648781,87.028954,101.458702,108.475220,80.095062,39.657047,16.727291,12.152912,7.126458,8.868613,10.448778,10.186792,5.087613,1.043804,0.044628,0.124794,0.003306,0.000000,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612465.550000,4584,4605,104.590935,166.276871,170.665298,163.681839,150.714890,140.805801,139.227295,137.103317,137.665298,140.623978,142.028946,153.946304,170.566132,186.020676,200.425629,212.442169,212.285141,201.400848,177.243820,154.896713,144.962830,139.954559,133.681839,107.037209,88.483490,101.086792,109.904976,80.235550,39.855392,17.177704,12.152912,7.237201,10.083487,10.870263,11.217370,4.934718,1.728101,1.232233,1.323142,0.658679,0.685125,0.310744,0.001653,0.198348,0.895868,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.755000,4612465.550000,4603,4605,119.446289,169.438019,174.181824,163.694214,150.909103,141.776871,140.429764,138.462830,138.702499,142.231415,142.644638,154.413239,171.851242,186.917358,201.537186,210.628082,212.289246,201.545456,175.801651,153.652908,143.107452,138.752075,134.000015,106.388435,88.181824,101.876038,111.520668,81.438026,38.297543,16.409107,12.181836,6.600011,9.619851,10.123982,11.144642,4.194223,0.752068,0.286777,0.419009,0.295868,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.555000,4612465.550000,4622,4605,117.150429,162.282654,170.497528,159.654556,148.125626,138.249603,136.638031,136.662827,136.811584,139.861160,140.761993,152.084305,167.241333,183.985123,197.266113,208.761978,208.646271,199.381805,173.299179,151.993393,140.894226,137.018188,131.018204,103.646301,86.538864,99.844643,108.150429,78.877701,38.323990,15.376053,11.910764,5.768606,7.769438,8.833075,8.442988,3.034718,0.144629,0.197521,0.839671,0.000000,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,1.182645,0.000000,0.000000,0.000000 -601671.155000,4612465.550000,4645,4605,118.181000,165.809082,170.437180,162.280167,145.875229,138.048782,135.561157,134.974396,135.098373,138.883469,139.428925,150.792572,166.982651,183.214035,196.263626,208.379349,208.338013,197.205765,172.982635,151.379349,139.709915,136.908279,131.627289,102.453743,86.271919,99.172752,109.362831,78.271919,38.974400,16.316549,11.966136,7.290921,8.234727,9.266132,10.264478,4.512404,1.231408,0.482645,0.701654,0.001653,0.219009,0.349587,0.076033,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.555000,4612465.550000,4672,4605,126.314064,167.609100,169.352905,162.914886,148.956207,140.997528,137.344635,136.551254,135.617371,138.303314,139.848770,150.873566,167.691742,184.179352,196.972733,208.633896,208.981003,197.939682,172.584305,151.757858,139.766129,137.138031,132.336380,103.923157,86.220680,99.369438,107.997536,80.030594,39.286800,16.025639,12.030598,6.202491,10.346297,9.487618,9.309931,4.081000,1.296697,1.016530,0.207439,0.156199,0.102480,0.016529,0.157852,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.555000,4612465.550000,4697,4605,114.877701,169.432236,170.903305,162.324799,149.382660,139.795883,136.498367,135.423996,136.184326,138.721512,140.093414,151.465317,167.547943,183.457031,197.118210,206.448776,207.845474,198.242172,172.622314,149.357880,139.374405,136.581009,130.481827,101.539680,84.713234,98.308281,108.192574,79.349602,38.101673,14.273573,11.862002,6.269433,8.366959,7.870265,8.581004,3.736372,0.927274,0.345455,0.174380,0.295868,0.014876,0.103306,0.015703,0.551240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612465.550000,4715,4605,128.890106,170.042984,172.638031,165.059509,150.357040,140.819839,138.604965,137.745468,137.406616,141.604965,142.191742,152.439682,169.514053,185.505798,198.018188,209.679352,209.894226,198.613235,173.910751,151.960342,141.034714,137.836380,133.018204,105.464478,87.423157,100.489273,109.034737,80.737198,39.216545,17.628942,12.092581,7.994228,9.793406,11.047950,8.931419,4.361165,1.446283,0.707440,0.266943,0.421489,0.252893,0.000000,0.019835,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.755000,4612465.550000,4748,4605,124.735550,179.719025,177.231415,166.132248,151.347107,140.603302,138.975204,137.876038,137.867767,141.652893,142.884293,153.438019,169.595062,186.157043,198.743820,209.694229,209.289276,197.768616,173.016541,151.214874,140.611572,136.404968,131.727295,103.991753,86.330597,99.247948,108.000015,81.239685,39.380184,16.614893,11.975224,7.846294,10.481008,10.119022,10.834724,4.251248,1.290912,0.634713,0.655373,0.127273,0.108265,0.000000,0.079339,0.068595,2.418182,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.555000,4612465.550000,4767,4605,127.022331,174.305786,174.123962,167.669418,151.487610,141.214874,140.421494,138.776855,139.933884,142.528931,143.644623,152.545456,169.280991,185.909088,199.173553,208.958679,209.900833,198.685944,173.454544,151.264465,141.157028,136.876038,131.909103,105.281006,86.049606,99.669441,109.454552,80.206627,39.537209,16.812416,11.991755,5.709927,9.061173,8.943818,8.948775,4.171082,1.158680,0.443803,0.232232,0.004132,0.004959,0.000000,0.036364,0.235538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601698.355000,4612465.550000,4781,4605,114.109940,171.795883,172.895065,163.870270,153.448776,143.647125,142.159531,141.721512,140.622330,145.225647,144.845474,154.638870,170.448776,187.696701,199.514877,210.861984,210.630585,199.696701,173.969437,153.415726,140.878540,137.903336,132.572754,105.159523,87.514900,99.382668,108.903328,82.101677,39.721508,16.852083,12.052086,6.791747,11.014894,9.866959,8.203320,4.095876,0.804134,0.222315,0.198348,0.028926,0.000000,0.000000,0.047935,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.155000,4612465.550000,4795,4605,130.292572,180.102493,176.251266,167.631424,152.523987,141.879364,140.209930,139.061172,139.102493,143.639694,142.846298,154.267792,170.540512,186.697540,200.168610,209.466141,211.292587,200.846298,175.259521,152.953735,141.019852,138.044647,132.127289,104.689278,86.887619,100.085976,109.424812,82.061180,40.507458,16.880184,12.011590,6.220674,9.630595,9.209105,10.511584,3.775215,1.183474,0.374381,0.233885,0.031406,0.191736,0.261984,0.080166,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.155000,4612465.550000,4810,4605,126.033897,181.876877,178.050430,167.381012,152.017365,140.389267,139.381012,138.703323,137.951248,142.033890,141.000839,152.058685,167.959518,185.397522,198.893387,209.331406,210.331406,200.182648,174.471909,151.447113,139.893402,137.091751,131.281830,104.157867,85.438858,99.389267,109.389267,80.009102,38.678539,16.854563,11.934729,5.682655,9.290098,8.595881,8.787619,4.379345,0.280993,0.350415,0.118182,0.142149,0.010744,0.000000,0.101653,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.155000,4612465.550000,4830,4605,130.486801,180.462006,173.718201,168.172745,152.453735,140.420685,139.131424,137.585968,137.048782,141.875229,141.371094,151.321503,168.850433,184.701675,198.205811,208.891754,209.247131,198.362823,173.627289,151.610764,140.495056,136.164490,132.536377,102.371094,85.660347,98.073570,107.131424,79.486794,38.420681,15.191754,12.048779,6.412409,9.095057,7.466129,9.399188,2.377691,0.338017,0.099174,0.119009,0.083472,0.032232,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,1.494215,0.000000 -601715.955000,4612465.550000,4869,4605,118.975220,173.719009,177.520660,162.008286,149.132248,138.157043,136.429764,135.685974,134.644638,136.586777,137.404968,148.619858,166.355392,181.561981,193.727280,204.495865,204.586777,191.404953,167.314072,145.206635,135.834732,131.892578,127.000015,98.702492,82.859520,95.603325,105.181831,75.950432,37.066139,14.857043,11.545474,9.676047,8.418197,9.693402,9.881834,3.774389,0.772729,0.163637,0.400001,0.000000,0.000000,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.555000,4612465.550000,4902,4605,126.973579,174.775223,175.056213,161.791763,147.378540,138.006622,138.692566,134.874390,134.229782,135.841339,137.543808,147.940521,165.948776,180.345474,192.750443,203.229782,204.097549,191.717377,166.089279,145.461182,134.816544,132.692581,126.436386,98.519028,81.642998,94.609940,103.824814,76.717377,35.047951,16.819853,11.494233,11.179355,8.395883,7.367781,10.216543,3.824802,0.881821,0.532233,0.255373,0.000000,0.000000,0.000000,0.000827,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.355000,4612465.550000,4921,4605,128.959518,179.976044,174.926453,164.513229,147.736374,138.257034,138.290100,135.752899,134.984314,136.670258,137.471909,148.331421,165.843811,180.761169,192.504974,203.571091,203.785965,190.719849,166.199188,145.248779,134.992569,132.422333,125.372742,98.471916,81.513237,94.670258,103.050423,75.455383,36.546303,16.653736,11.397540,9.396708,8.837205,9.003319,9.143816,3.937198,0.683473,0.365291,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.125620 -601729.755000,4612465.550000,4938,4605,124.195885,181.584305,175.956207,162.113235,148.691742,137.609116,136.956223,134.526474,134.361176,135.807465,135.534729,146.997528,164.154556,179.576050,191.989273,202.080170,201.989273,189.485138,165.311584,143.518188,133.005814,130.509949,124.881844,96.989273,79.865318,91.683487,102.303322,73.766144,34.121510,14.991754,11.352911,10.005800,8.254559,9.143814,7.552906,3.957858,0.658679,0.247935,0.361984,0.000000,0.056199,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.755000,4612465.550000,4963,4605,121.567780,183.146301,176.005814,163.129776,148.096725,135.890091,137.592590,132.592575,133.319855,135.030594,135.286789,146.047134,164.005814,179.931427,191.815720,201.972733,201.923157,188.956207,164.964493,143.749619,132.493393,129.799179,123.881836,95.419029,79.460350,91.055389,102.683487,73.121506,33.303326,14.134729,11.262003,10.004973,8.073566,7.919021,8.565303,3.438022,0.743804,0.280166,0.059504,0.000000,0.000000,0.000000,0.001653,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.755000,4612465.550000,4978,4605,116.206619,183.520676,175.000015,164.429764,151.148773,136.983490,137.363647,135.247955,134.115723,137.223160,135.545471,147.628113,165.074402,182.305801,193.247955,204.520676,203.917374,190.148773,165.206635,145.107452,133.834732,131.049606,125.090927,96.363647,80.545471,92.909096,103.842987,74.826462,34.454567,14.213241,11.371920,7.872741,8.771915,8.069434,7.668608,4.152900,0.838019,0.138844,0.069422,0.000000,0.000000,0.000000,0.007438,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601743.555000,4612465.550000,5007,4605,120.990097,186.552094,173.981842,163.312439,149.535583,135.857880,136.965317,134.039688,133.998367,137.634735,134.130600,145.833084,163.081024,180.171921,192.246307,202.750443,201.180191,187.948776,164.461197,142.725647,132.105804,129.890930,123.527290,94.609932,79.130592,92.295883,103.221504,75.138855,33.609940,13.273572,11.229772,9.691751,8.401667,9.792578,8.049602,3.395050,0.630580,0.104133,0.142976,0.004959,0.000000,0.000000,0.175207,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.355000,4612465.550000,5021,4605,122.567787,184.997528,174.931412,167.270264,150.551254,137.361160,138.385956,136.063644,134.881836,138.005798,136.501663,147.749603,165.782654,181.493393,194.344635,204.724808,202.534714,189.981003,165.146286,144.187607,134.262009,130.691757,124.609100,95.625641,80.080193,92.857040,102.385963,74.526474,35.278534,15.366960,11.328118,10.860346,8.425632,9.542162,10.742990,3.147941,0.653721,0.237191,0.131405,0.000000,0.000000,0.000000,0.059504,0.000000,0.000000,1.273554,1.124794,0.000000,0.000000,0.000000 -601751.155000,4612465.550000,5045,4605,128.601669,185.890930,176.014893,166.849609,150.147125,136.560333,136.436371,135.370270,134.362000,138.907455,135.775208,147.370270,164.213242,179.568619,193.667770,204.238037,202.626465,187.866135,164.766968,144.147125,133.312408,130.014893,124.890923,96.064476,79.535553,93.196709,102.519020,73.915718,34.692581,14.471919,11.353738,11.027288,8.570261,8.766130,10.002495,2.149593,0.321489,0.075207,0.112397,0.020661,0.000000,0.009091,0.197521,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.555000,4612465.550000,5062,4605,146.092575,193.836380,176.547119,169.819839,151.662827,138.109100,137.423157,135.290924,135.257858,139.447937,137.001663,148.026459,164.142151,181.968597,193.522324,205.439682,204.315720,188.406616,165.976868,145.307449,133.596710,131.439682,124.836372,96.828110,80.596703,94.175217,102.910751,73.795052,35.150436,14.442992,11.348779,8.744643,9.039684,9.281831,8.090098,3.279346,0.464465,0.136364,0.187604,0.003306,0.000000,0.000000,0.066116,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.355000,4612465.550000,5091,4605,150.889282,194.847931,177.203323,167.657852,151.930573,137.707458,136.393417,134.864471,134.666122,139.054565,135.814911,146.137207,163.550415,180.641312,194.062805,204.500824,202.467758,186.856201,164.500824,143.608292,132.723984,129.021500,124.509102,94.550423,79.542160,92.261169,102.261169,70.963646,33.856220,13.980183,11.319027,11.414892,8.086791,8.311584,8.890096,4.047943,0.521489,0.104959,0.236364,0.000000,0.048760,0.000000,0.062810,0.247934,4.175207,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.155000,4612465.550000,5140,4605,141.362823,202.205811,181.544647,171.577698,152.643814,141.023987,138.172745,136.800842,136.023987,142.486801,136.453735,147.147949,164.288452,181.313248,194.585968,205.990921,202.908279,188.222336,165.106628,144.577698,132.676880,131.114899,125.172745,96.296715,79.643822,94.941345,103.296715,72.685143,34.982662,14.988449,11.379358,13.014893,8.371088,7.395053,10.107452,3.955381,0.386778,0.212397,0.152893,0.000000,0.000000,0.000000,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,4.753720 -601786.555000,4612465.550000,5222,4605,118.085968,162.945465,170.804962,161.061157,147.127274,136.193390,134.061172,132.028122,132.309113,133.672745,134.895889,145.333893,163.722321,179.515701,191.557022,201.970245,201.557022,190.647934,165.573563,143.259506,132.259521,129.226471,123.400017,95.325638,78.102501,91.904152,102.887619,74.912415,36.441345,14.534728,11.218202,7.370259,7.681006,7.713238,8.057864,3.214883,0.335538,0.000000,0.333885,0.000000,0.000000,0.000000,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.155000,4612465.550000,5330,4605,106.936378,160.366119,169.200836,160.506622,146.506622,135.622314,133.771088,132.622330,130.977707,132.812408,133.721497,145.101654,163.795868,178.680176,191.870255,201.589264,201.333069,189.622314,164.895050,144.060333,132.754562,128.795883,123.390923,94.630592,77.382660,92.399185,103.837204,75.266960,35.738033,15.128943,11.217375,6.264472,7.659517,8.064476,7.957037,3.623976,0.521489,0.138843,0.202480,0.059504,0.000000,0.009918,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601825.355000,4612465.550000,5416,4605,119.581841,166.102493,170.664490,161.069443,146.887619,137.292587,135.647949,132.342163,133.135559,135.061172,136.019852,146.391754,164.143814,180.185150,193.019852,202.945480,202.523987,191.631424,166.747131,144.928940,133.127289,130.557037,125.127289,95.656219,77.606628,92.854568,105.945473,76.681007,36.342167,14.760348,11.375226,6.474391,8.537205,8.257038,7.742162,3.769428,1.088432,0.042149,0.173554,0.208265,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.755000,4612465.550000,5478,4605,124.163643,167.882645,172.609924,162.271088,148.080994,137.981827,136.023148,134.097534,134.196701,137.444641,136.510773,147.196701,165.775208,182.262817,194.907440,204.890915,205.361984,193.295868,169.833069,146.461166,135.824814,130.585129,126.345459,97.130585,79.965309,94.717377,105.849594,78.973579,37.990105,15.184316,11.485969,5.866952,8.434726,8.207454,8.766129,3.607445,0.819836,0.083471,0.000000,0.051240,0.061984,0.000000,0.026447,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601853.555000,4612465.550000,5557,4605,122.209930,174.135544,170.408264,163.664459,149.176865,137.846283,136.722321,134.780182,134.242981,138.052902,137.474380,148.515701,166.391739,183.028107,195.697525,205.391739,205.019836,194.069427,169.788437,147.342148,136.152069,131.904144,127.218193,98.871086,80.565308,94.358688,106.606621,79.350433,38.565304,16.199192,11.565308,5.857861,7.631420,7.795055,9.036377,3.609926,0.608266,0.104133,0.203306,0.000000,0.000000,0.000000,0.034711,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.355000,4612465.550000,5646,4605,121.671082,171.662842,170.109116,161.423172,149.753738,138.009949,136.935562,135.844635,134.819839,139.158707,137.613251,148.621521,165.158707,183.580185,196.142181,206.894226,206.538849,195.481018,171.365311,150.084320,138.679367,134.538849,129.018188,99.604965,81.968613,96.836372,108.885963,80.877701,36.952084,15.505804,11.728946,4.702489,7.938859,7.981833,8.081005,2.890915,0.200001,0.114877,0.216529,0.019009,0.000000,0.000000,0.033058,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.955000,4612465.550000,5684,4605,128.130600,189.196716,176.122330,167.733902,153.899200,138.395065,139.320679,137.742172,135.808289,140.238037,138.833084,150.560349,168.081009,185.130600,198.419861,208.783493,209.923996,198.899200,174.271103,152.519028,140.709106,135.246307,130.709106,100.535561,82.882668,98.403328,109.816551,82.709114,38.923985,14.416547,11.882664,4.443810,8.232247,6.807453,9.696709,3.652900,0.166943,0.130579,0.261158,0.000000,0.015703,0.000000,0.028926,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.555000,4612465.550000,5737,4605,123.579369,177.852097,177.885147,166.703339,149.174408,140.546310,139.901688,136.100006,135.620697,136.554565,137.331436,152.257050,169.827301,186.091766,200.141357,211.397537,213.405792,199.009125,175.124817,152.529785,143.356232,139.637222,133.827301,105.042168,87.736382,102.157875,110.662003,81.116547,42.529770,15.501671,12.166135,10.146295,10.583488,9.932247,11.352908,6.371085,1.450416,0.794217,0.000000,0.000000,0.008265,0.000000,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601892.355000,4612465.550000,5751,4605,111.705795,181.639694,177.416550,165.614899,148.168610,138.722336,138.375229,135.333893,134.366959,137.152084,137.061172,149.614899,167.218201,185.309113,198.292587,209.804977,210.771927,197.796707,173.400024,151.028122,140.581833,137.300842,132.036377,102.614899,86.276054,99.995064,111.424805,81.135559,39.614895,15.323985,12.003325,11.623981,8.051256,10.145472,10.881833,4.205792,0.461158,0.271902,0.180166,0.123141,0.001653,0.000000,0.020661,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.755000,4612465.550000,5768,4605,118.860352,184.257034,176.942978,165.372742,147.926437,137.546280,138.133057,134.455383,134.108276,136.000824,136.447098,148.604141,167.306625,183.852066,197.116531,207.405792,209.843811,195.612396,172.934723,149.827286,138.918198,136.794205,130.645462,101.728111,85.538033,97.926460,109.909935,80.860352,38.538036,15.207456,11.876880,10.767783,8.629768,8.846296,9.790097,6.390919,0.896697,0.216530,0.487605,0.000000,0.000000,0.000000,0.286777,0.000000,3.153719,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.755000,4612465.550000,5793,4605,126.857849,185.188446,180.709106,166.204987,151.428116,137.428101,137.775208,135.659531,135.973572,137.676056,136.998352,149.766968,167.651260,185.403336,198.750443,209.783493,209.849609,195.816559,172.940521,150.874405,140.221497,138.072739,133.072739,101.428116,84.461174,99.147125,110.461174,79.576874,38.965309,16.159523,12.097539,11.110760,9.141338,10.905802,10.945470,5.611579,1.013225,0.201654,0.123967,0.000000,0.000827,0.000000,0.004959,0.046282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.955000,4612465.550000,5809,4605,108.217377,182.027283,182.076859,168.101654,152.490112,139.961182,139.638855,137.762833,137.357864,139.473572,139.060349,150.754562,168.903336,186.630585,199.638855,212.886780,213.134720,199.614059,175.349594,151.878540,141.787628,138.209091,134.390930,104.043816,86.415718,98.795883,111.068619,81.878525,42.275227,17.347950,12.217375,10.925636,9.298363,11.755389,12.180182,6.433068,0.772729,0.333059,0.048761,0.000000,0.000000,0.000000,0.024794,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.555000,4612465.550000,5837,4605,129.506638,187.266953,180.316528,168.068604,151.663635,138.200836,140.589264,137.407440,136.820663,139.762817,137.928101,150.101654,169.556198,185.663635,199.481827,211.308273,210.961166,198.109924,174.316528,152.052078,140.159515,139.597534,133.572739,102.647125,85.614067,102.192566,112.200836,79.928116,39.448780,14.461174,12.142994,12.890099,8.733072,9.846296,9.500013,4.328107,1.451242,0.087604,0.099174,0.058678,0.004132,0.000000,0.091736,0.489257,0.000000,1.333058,0.000000,0.000000,0.000000,0.000000 -601912.355000,4612465.550000,5851,4605,129.809097,189.421494,185.310760,168.856216,152.132233,139.033051,139.829773,138.719009,138.950409,144.000015,142.256210,153.628098,169.991730,187.176849,200.631409,211.804962,211.788437,198.433060,175.358704,152.226471,140.586777,138.656204,132.727295,103.545471,87.057861,100.214890,108.719025,78.661179,38.281013,15.881836,12.066134,10.471087,10.010758,11.771918,12.944645,7.152902,2.950417,1.716531,1.623142,1.575208,1.257852,0.000000,0.136364,0.066942,0.000000,3.911571,0.000000,0.000000,0.000000,0.000000 -601915.155000,4612465.550000,5865,4605,122.022331,177.187592,174.443802,164.369431,149.344635,137.609085,135.336380,133.311584,133.278534,138.088425,136.749573,147.981003,162.485138,180.419006,191.923141,203.840485,204.625610,192.592560,169.369431,149.080170,139.096710,136.666931,131.245468,104.981010,88.344643,100.410759,109.005806,80.377701,36.774403,16.117373,11.931424,5.980175,9.186792,9.538033,9.366129,3.891744,0.779344,0.314052,0.294216,0.218182,0.000000,0.028926,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.955000,4612465.550000,5889,4605,105.300842,169.350433,167.003326,162.003326,147.061157,136.449600,135.218201,133.383484,133.490921,135.499191,135.028122,146.482666,161.722336,177.656204,190.408264,202.234711,203.019836,191.085953,167.755386,147.441330,138.697540,134.160355,129.036377,103.573570,86.424812,99.433075,107.433075,79.557045,36.829773,14.882662,11.730597,6.375218,9.021502,7.609107,8.137202,2.736369,0.563638,0.076861,0.314877,0.265290,0.155372,0.000000,0.172727,0.734711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601926.555000,4612465.550000,5922,4605,112.023163,167.254547,169.733887,162.907440,148.940506,137.213226,135.122330,134.304153,133.370270,135.510757,135.783478,146.105789,161.337204,177.072739,189.262817,200.998352,204.089264,192.948761,169.436371,147.915710,138.056198,133.841339,129.890930,102.386803,87.238029,98.841347,109.717369,78.742165,38.593410,14.895886,11.808284,6.928110,8.936379,8.876047,9.747947,3.109923,0.395869,0.085952,0.241323,0.050413,0.180992,0.003306,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,1.377686,0.000000 -601932.555000,4612465.550000,5952,4605,108.575226,166.426453,167.947113,160.847946,146.591751,136.542160,134.459518,132.757050,131.352081,134.897537,135.269440,145.575226,160.558685,176.839676,189.426453,201.426453,202.608276,190.847946,168.153732,147.236374,137.360336,133.343826,129.509109,103.302498,86.492584,100.591759,108.038040,79.459526,38.773575,14.624811,11.773574,7.352902,8.913239,7.838030,9.510756,3.201659,0.684301,0.149588,0.330579,0.061157,0.000000,0.005785,0.000000,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601936.755000,4612465.550000,5973,4605,115.747948,159.409119,168.797531,160.582657,144.623993,134.392578,133.053741,131.863647,129.202499,134.301666,134.028946,143.640533,159.665298,175.533096,189.028931,198.392563,199.863647,190.458679,165.582657,144.276886,134.425629,131.367783,126.681831,101.450432,83.061996,97.648773,105.747948,77.814064,37.681839,13.952084,11.516548,4.533067,8.660345,5.657040,5.996703,3.548765,0.404135,0.419010,0.491737,0.337191,0.000000,0.080165,0.000000,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601942.755000,4612465.550000,6003,4605,96.733086,162.873566,170.749603,161.385956,146.716537,135.989288,133.749603,132.071915,132.733078,135.352905,135.328110,145.493393,161.278519,177.402496,188.658707,200.584320,201.402512,191.080185,166.633896,147.047119,136.633896,132.328110,129.336380,102.964470,85.063652,100.658699,107.278534,79.030602,36.245472,17.431423,11.757870,6.415713,9.271917,8.812413,8.445470,2.925625,0.935540,0.028100,0.119835,0.000000,0.000000,0.271075,0.569422,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601948.355000,4612465.550000,6031,4605,107.646301,162.034714,167.290924,159.241333,145.274384,135.861160,133.720673,132.662827,131.166946,133.233063,134.629761,144.381821,160.299179,175.695877,188.505798,200.133896,201.067780,190.976868,166.877701,145.704147,135.332245,131.795044,127.563652,101.638031,85.224808,99.555389,106.852913,78.373573,38.241344,15.778530,11.596713,6.573564,9.017370,7.464478,7.985137,1.240500,0.834713,0.351241,0.319836,0.076033,0.000000,0.002479,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.355000,4612465.550000,6061,4605,108.309937,160.442169,167.954559,158.747955,143.342987,135.714874,134.442154,132.789276,131.425629,133.136383,134.442154,145.805801,160.756210,175.615723,188.888443,199.384308,199.533081,189.557861,166.342987,145.607452,136.095047,132.169434,129.863647,101.285141,84.797539,99.433899,107.541336,79.185966,36.822334,15.247125,11.805803,5.695054,9.371916,11.714064,9.661998,5.460340,0.693391,0.293390,0.488430,0.295868,0.000000,0.006612,0.575207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601963.955000,4612465.550000,6109,4605,100.238037,151.766968,168.477722,159.056213,143.725647,136.560333,131.791748,130.213226,129.791748,131.130585,133.114059,142.213242,157.667801,173.808289,186.014908,196.585159,197.601685,188.006653,164.155411,143.775223,134.295868,130.965302,125.345459,100.114059,83.122322,96.337196,106.072731,77.477699,36.907459,16.209108,11.395061,4.192573,7.665303,6.590098,7.488441,3.838849,1.011573,0.380166,0.401654,0.000000,0.047934,0.078513,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.955000,4612465.550000,6124,4605,95.605804,154.663635,166.142975,155.514877,142.886780,133.704971,130.192566,129.002487,128.977692,129.919846,131.176041,141.812408,156.969421,172.366135,184.572754,195.324814,197.109940,185.895065,162.795868,142.688431,133.242157,129.167770,125.390915,98.101669,81.589279,96.407455,105.845467,76.374405,36.762829,13.457867,11.399192,4.221498,7.047948,7.923156,8.752906,3.199181,0.687606,0.147108,0.074380,0.105786,0.127273,0.076860,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.955000,4612465.550000,6149,4605,110.257050,155.447113,166.653732,157.554565,143.248779,133.810745,131.637192,130.157852,129.777695,130.661987,133.166122,143.628937,159.281830,173.951248,187.736374,198.000839,198.728119,188.447113,165.232239,143.529770,134.538025,131.455383,125.100006,99.281822,82.414062,97.000832,106.628929,76.422325,36.885143,13.676052,11.372746,6.881830,7.876048,8.804148,8.572741,2.476039,0.773556,0.347936,0.000000,0.460331,0.000000,0.000000,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.155000,4612465.550000,6190,4605,85.257050,153.066956,169.174393,157.066956,142.752914,135.637222,133.546295,130.521515,130.240524,130.628952,132.819031,143.248795,159.066956,173.529770,186.298370,196.529785,198.695068,188.075241,165.017365,143.662018,134.273575,130.207458,125.554565,99.538040,84.000847,97.951263,105.207458,76.802498,36.471920,13.512414,11.414068,6.904144,9.019850,7.642989,9.676873,3.408270,0.252068,0.195042,0.303307,0.157025,0.000000,0.086777,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.155000,4612465.550000,6215,4605,92.165306,153.256226,168.677704,158.264481,144.752075,135.801666,132.264465,130.165298,129.719009,131.157028,133.090912,143.289276,159.256210,174.512405,186.735565,197.545486,199.975235,188.950439,165.281006,144.016541,135.305786,131.355377,126.272736,98.942154,83.991753,97.314056,106.066124,78.768600,37.190098,15.679357,11.479358,6.956210,7.976874,9.966958,9.409931,5.926455,1.329756,0.583473,0.172728,0.035537,0.012397,0.076860,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.755000,4612465.550000,6233,4605,83.076881,157.820679,169.035553,158.969437,144.019012,135.655380,132.647110,130.035538,130.225632,131.638855,132.853729,143.374390,158.861984,174.614075,186.862000,197.771103,199.151260,189.035553,164.911591,143.597534,135.060333,130.432236,125.936371,100.043808,84.076866,96.713226,105.680168,77.531418,38.217377,15.996710,11.448779,6.721499,10.257868,7.225634,8.313237,3.257032,1.030583,0.545457,0.315703,0.000000,0.000000,0.003306,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601994.155000,4612465.550000,6260,4605,82.004990,160.608292,167.335571,158.616562,143.236374,134.616547,131.889267,129.814896,129.566956,130.608276,131.814896,142.897537,160.021515,175.029755,186.649582,197.947113,198.401672,187.583466,164.914078,143.955383,133.740509,130.608276,125.236374,98.781830,82.806625,96.806625,106.690926,77.566956,37.095886,15.116547,11.385144,6.547119,8.285139,8.831421,11.005800,3.757860,1.375210,0.393391,0.177686,0.206612,0.008265,0.087604,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.155000,4612465.550000,6305,4605,84.068619,157.185974,168.235550,159.351257,143.706635,134.533081,133.417374,131.549606,130.367783,131.971085,133.351257,144.376053,159.896713,175.657043,187.599182,198.557861,200.028946,187.004150,165.161179,143.483490,134.871918,131.880188,125.500015,99.871918,83.847122,98.582664,107.880180,77.161171,37.342995,14.791753,11.409110,6.804144,8.449603,9.838031,7.690923,3.977692,0.984299,0.118182,0.000000,0.082645,0.047934,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612465.550000,6353,4605,98.938042,159.731415,166.995880,156.541336,144.252075,135.301666,132.615723,130.235550,128.235550,130.128113,132.466965,142.789276,159.367783,173.979355,186.698364,198.789276,199.293411,187.483490,164.012405,143.665298,133.979355,130.136383,127.772743,98.913239,83.252083,98.921501,106.136383,77.152908,38.252087,14.108281,11.615722,7.591748,10.121503,9.456215,7.563649,2.792568,0.777689,0.270250,0.243802,0.120662,0.000000,0.100001,0.000000,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.155000,4612465.550000,6370,4605,103.185135,156.962006,169.366959,158.234726,142.937210,134.218201,132.201660,130.003311,128.862823,130.829758,132.069427,143.267792,158.209930,174.416550,186.705811,198.548782,199.887619,187.681015,163.937210,142.672745,133.978531,130.846298,125.309105,98.937202,82.482658,96.598358,105.185135,76.176872,35.788448,15.035556,11.391755,7.695054,8.395883,9.182660,9.270263,3.922322,1.304962,0.221489,0.295042,0.180992,0.062810,0.000000,0.000000,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.555000,4612465.550000,6397,4605,96.014900,158.295868,171.114059,158.659515,145.766968,136.758682,134.047958,131.841339,130.419861,132.155396,133.940521,144.725647,160.800003,176.692566,188.717361,199.080994,201.097534,190.014877,167.097534,145.990112,134.246307,132.585144,127.436386,99.527298,83.196716,99.204979,107.527298,77.419861,39.362003,15.454562,11.585142,9.723155,9.275222,10.379354,9.171088,3.613229,0.873557,0.223143,0.247108,0.239670,0.000000,0.094216,0.031405,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.755000,4612465.550000,6433,4605,103.043823,166.928116,171.539688,159.225647,145.465317,136.779358,132.605804,130.647125,129.663666,131.432251,133.911591,144.696716,159.969421,175.886795,188.333069,199.506622,200.151245,188.721497,165.878525,143.961182,134.870270,131.275223,126.572746,100.754570,84.374397,97.853737,106.977707,80.804146,39.985970,16.658695,11.506630,9.239682,9.685966,9.094231,10.206626,3.661989,0.956201,0.844631,0.673555,0.118182,0.214050,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.841322,0.000000 -602034.755000,4612465.550000,6463,4605,100.383484,156.408264,170.474380,158.796692,143.796692,137.003311,133.862823,131.201660,131.515717,132.036377,132.532242,144.069427,160.854553,174.780167,187.449585,197.771912,199.953720,188.300827,164.813232,142.904129,134.094223,131.623154,125.854553,98.871078,84.011589,96.300827,106.383484,76.276054,35.375229,15.066133,11.441340,8.783484,8.185140,9.236378,10.156215,3.240503,1.142979,0.457026,0.466117,0.272728,0.211570,0.320662,0.216529,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.355000,4612465.550000,6486,4605,91.133080,158.405792,169.240509,158.909927,144.571091,135.108276,131.967789,130.901672,130.083481,131.091751,132.703323,143.909927,158.075226,174.819016,187.347946,197.314896,198.901672,187.017365,165.422333,144.248779,133.488449,131.414062,126.009102,98.504974,83.075218,96.000839,104.579353,76.728119,36.678532,14.604976,11.455391,6.304972,9.378528,9.228941,9.902494,4.149594,0.172729,0.066944,0.058678,0.310744,0.000000,0.000827,0.000000,0.000000,2.272727,0.000000,0.000000,0.000000,0.000000,0.000000 -602044.555000,4612465.550000,6512,4605,109.723999,157.054565,165.889267,158.418198,142.938858,132.790115,131.988464,130.211594,128.319031,129.542175,130.707474,141.484314,157.682663,173.319016,185.955383,196.244644,197.203323,184.847946,161.707458,142.252899,132.178543,128.707474,123.872749,96.195061,80.302498,95.219856,103.947128,76.062828,37.004974,15.419854,11.261176,7.686788,8.733899,8.458692,10.057866,4.477694,0.554548,0.061985,0.520661,0.105786,0.000000,0.231405,0.000000,0.429753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.155000,4612465.550000,6545,4605,91.419029,163.716553,168.840515,160.534729,146.022339,135.542999,135.014069,131.361176,130.228943,131.030594,131.162827,143.823990,160.154572,175.295044,187.228943,198.162827,200.171082,186.063644,163.683502,143.237213,133.931427,131.617371,126.245476,97.542992,82.286797,96.063652,106.534729,76.270264,37.204151,14.349606,11.476879,7.974393,10.396710,9.700841,9.349602,3.229757,0.678515,0.227275,0.118182,0.390084,0.000000,0.319835,0.350414,0.226446,2.259504,0.000000,1.509917,0.000000,0.000000,0.000000 -602055.555000,4612465.550000,6567,4605,108.102501,164.598373,167.201675,160.011597,143.656219,134.168610,134.573578,130.209930,129.449600,130.433075,131.912415,143.143814,158.152084,174.904144,186.664490,197.771927,199.730591,186.656219,162.515717,142.127289,132.449600,129.895889,124.218201,97.424812,82.267792,95.928947,104.276054,76.160347,36.598366,15.618199,11.292582,9.184311,8.798363,9.765304,10.901669,4.638023,0.346284,0.467770,0.166943,0.409091,0.004959,0.077686,0.157025,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.755000,4612465.550000,6588,4605,92.648773,166.419037,167.195892,157.509949,144.509949,133.410767,131.617371,129.385971,128.435562,130.518204,130.964493,142.741348,158.542999,174.567795,187.187622,198.485153,199.154572,186.220688,163.592590,142.691757,132.815720,128.881836,124.336380,97.576050,81.675232,95.840515,104.526466,77.997543,36.708282,14.297539,11.303326,7.562822,8.017371,10.336379,9.236378,3.125626,0.350415,0.200828,0.215703,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.755000,4612465.550000,6608,4605,94.198364,167.413239,171.396713,165.611588,146.909103,136.776871,134.247955,131.570267,130.074402,133.495880,133.099182,144.628113,161.785141,176.661179,188.198364,200.595062,201.008286,189.413239,164.925629,144.082657,133.876053,131.363647,126.272743,98.933899,82.933899,97.082664,105.446297,77.809937,36.694237,17.040516,11.479357,9.198360,9.723983,9.027288,9.614063,4.040502,0.266117,0.286778,0.095868,0.117356,0.294215,0.000000,0.000000,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602072.355000,4612465.550000,6651,4605,101.727287,169.347122,172.082657,161.223160,148.247955,136.024811,137.702499,133.628113,131.785141,134.702499,133.528946,146.000015,162.512405,178.305801,189.933899,202.429749,203.099182,189.404968,166.785141,146.677704,136.198364,133.363647,128.090927,100.074402,84.958702,97.438042,106.347122,78.694229,38.223160,15.767787,11.644648,8.469434,8.930594,9.849600,10.084311,2.804140,0.855375,0.215704,0.363637,0.049587,0.019835,0.074380,0.156199,0.700827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.555000,4612465.550000,6667,4605,103.269440,176.922348,170.426468,162.385147,147.368622,135.013245,135.046295,131.773575,130.806625,135.029770,133.550430,145.302505,163.004990,179.211578,191.666122,203.723969,203.682648,189.790100,168.128952,146.781845,137.451263,134.476059,128.690933,99.963646,84.137215,98.500847,107.649605,77.600021,38.930595,16.003323,11.699192,10.620675,9.080180,10.417370,10.070262,3.761164,0.614878,0.291737,0.084298,0.047934,0.152066,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.955000,4612465.550000,6699,4605,98.080185,175.129745,168.476883,160.377716,145.476883,134.154572,132.253738,129.972748,129.774399,133.220688,133.154572,144.369446,161.146301,179.022324,190.600815,204.898346,204.931396,190.766113,168.724823,149.311600,137.989288,134.286804,129.972748,100.898361,84.319862,100.038864,108.997536,77.187622,37.303329,15.783490,11.815722,9.930593,8.935552,10.427287,10.356213,4.035545,1.116532,0.149588,0.257025,0.000000,0.012397,0.000000,0.320661,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602085.955000,4612465.550000,6719,4605,119.774406,179.559525,172.666962,164.014069,147.642181,136.724823,135.030609,133.906631,131.509949,137.774399,134.344650,147.319855,163.435562,181.972748,194.881851,207.501663,207.691742,192.700027,171.162842,150.923172,140.757874,137.592590,131.700027,102.592590,87.030594,101.716553,111.113251,79.873581,41.253738,14.965307,11.972746,11.779352,9.743816,10.761998,10.676874,3.677692,1.126450,0.556199,0.475207,0.000000,0.006612,0.158678,0.257851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602091.155000,4612465.550000,6745,4605,130.776886,181.595047,173.694214,163.330597,147.272751,134.231430,134.735565,131.818207,131.942169,136.743835,133.702499,145.413254,161.851257,178.983475,194.545456,207.008270,205.958679,190.950409,170.669434,151.793411,139.537216,135.454559,130.363663,99.305809,85.107460,101.694237,110.719032,77.867790,39.347126,15.874399,11.851258,9.841336,9.725636,8.086791,8.838030,4.915711,0.386778,0.119009,0.142975,0.052893,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602096.155000,4612465.550000,6770,4605,134.050430,178.174393,172.149597,163.314896,146.298355,134.637207,133.223984,129.976044,130.009109,135.000839,130.579346,142.100006,157.009109,174.496704,189.215714,201.678528,201.794235,185.951248,166.174393,145.959518,137.190918,133.298355,126.554558,97.785965,81.604149,100.232246,108.595879,79.976044,38.719856,16.302498,11.504977,11.634725,9.730593,10.516545,8.533071,5.184308,0.610746,0.137192,0.325621,0.310744,0.000000,0.205786,0.285124,0.540497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.555000,4612465.550000,6792,4605,125.924812,177.296707,174.916550,166.982666,147.966141,134.941330,133.767776,130.866959,129.809097,136.428940,131.495056,142.346298,157.569443,175.379364,188.891754,200.866959,200.453735,185.073578,165.412415,146.858704,136.205811,130.304977,127.263649,99.164474,82.040504,100.627281,109.065300,77.569443,38.734734,14.603324,11.569441,12.322330,8.225635,10.604974,9.904973,4.402489,0.892565,0.360333,0.171901,0.066116,0.049587,0.060331,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602104.755000,4612465.550000,6813,4605,91.579353,159.124802,166.091751,153.653732,138.645462,129.909927,124.819023,123.711586,120.901665,124.273567,125.529762,136.794235,152.050430,168.017365,180.951248,192.719849,193.810760,182.554565,161.000839,139.595886,129.819016,127.604149,120.372742,94.703316,77.719849,92.819023,106.058693,77.405800,38.240517,13.460346,10.942994,5.319844,8.754560,5.320673,8.504972,3.081001,0.549589,0.285951,0.098347,0.080166,0.000000,0.085951,0.335537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602109.355000,4612465.550000,6836,4605,106.912422,145.656219,160.193405,150.606628,138.424820,127.300858,126.061188,123.449615,123.094246,124.871101,125.854576,136.342163,153.242996,169.895889,182.185150,193.350433,195.912415,184.780182,162.342163,142.953735,131.647964,128.110779,120.581848,94.482674,78.457878,94.218208,108.771927,82.523994,38.457870,13.419852,10.962003,6.361994,8.709931,7.040510,8.150425,3.785959,1.271904,0.188431,0.000000,0.038017,0.000000,0.004959,0.164463,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602114.755000,4612465.550000,6863,4605,96.069443,155.028107,158.052902,149.557022,136.623138,127.408279,123.614891,121.631416,120.259514,122.697533,122.581833,136.234726,152.036362,168.011566,179.623138,192.234711,193.234711,183.317352,161.581818,140.697525,130.961990,124.986786,120.127281,93.449608,77.003326,93.755394,106.193405,80.267792,37.647957,13.423984,10.920679,4.811582,6.571915,8.528112,10.005797,2.854553,0.353721,0.137190,0.000000,0.036364,0.000000,0.000000,0.000000,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602124.355000,4612465.550000,6911,4605,97.575218,147.748779,158.963654,150.492569,135.335556,126.013237,121.699188,121.178528,119.128937,121.195053,123.170258,133.368607,150.980179,166.352081,179.393402,189.839676,191.071091,179.996704,159.327286,137.905792,127.963646,125.153732,118.781830,91.690926,77.533905,93.484314,106.938858,79.393402,37.938858,14.298367,10.798365,4.876045,8.323156,8.915719,8.221500,3.105794,0.664465,0.217356,0.043802,0.000000,0.000000,0.000000,0.000000,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602127.355000,4612465.550000,6926,4605,108.181831,146.438034,159.892578,151.107452,136.388443,126.603325,125.181831,122.917374,121.603325,122.933899,123.983490,134.454559,151.884308,166.793411,179.140518,191.008286,191.256210,181.082657,159.578522,139.487625,128.553741,124.264481,118.909103,93.115730,76.570274,92.404984,107.760345,80.066139,37.950432,14.557042,10.809937,7.040509,9.744643,11.351254,9.152079,4.555383,0.733060,0.522315,0.109918,0.249588,0.280992,0.000000,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602132.355000,4612465.550000,6951,4605,107.283485,158.853729,156.159531,147.200851,133.399185,125.423981,121.746284,118.804138,117.308273,117.861992,119.407448,130.721497,147.688446,163.506622,175.126465,186.547958,186.597549,176.506638,155.886795,136.407455,125.506615,120.919838,114.390915,87.746292,71.713249,90.523155,106.713226,80.225632,36.952911,14.567785,10.399192,5.875217,8.522328,9.133899,8.738855,3.266123,0.332233,0.160331,0.052066,0.031405,0.233058,0.000000,0.071901,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602139.755000,4612465.550000,6988,4605,98.046303,148.211578,158.203323,146.170258,130.955383,122.095879,119.682655,115.699188,114.839684,115.707451,116.947121,127.509102,146.004974,162.079346,172.914062,184.616547,184.881012,175.723984,153.575226,134.021500,124.178528,119.856209,114.690926,85.087616,71.211586,88.930588,105.261169,79.806625,37.864483,14.414066,10.426465,7.144640,8.156213,9.068608,8.246293,5.976870,0.414051,0.585126,0.052066,0.089257,0.045455,0.000000,0.000000,0.156199,0.000000,2.027273,0.000000,0.000000,0.000000,3.147934 -602150.155000,4612465.550000,7040,4605,105.828117,148.307449,155.307449,144.885956,130.001663,120.885971,116.836380,113.398361,112.580185,112.472748,114.059525,124.894234,142.828110,158.175217,170.464478,181.968582,181.943802,172.315720,152.307449,132.646301,121.555389,117.472748,110.745476,85.323982,68.555389,87.208282,105.034729,79.902496,37.547131,14.609935,10.067787,5.697531,7.458692,8.792576,10.433898,3.925629,0.395870,0.150414,0.000000,0.088430,0.190083,0.000000,0.478513,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602158.955000,4612465.550000,7084,4605,115.119858,153.549591,150.392563,136.822311,125.053734,115.053734,111.309937,108.342995,107.152908,108.392578,107.433899,119.508278,136.789261,152.648758,164.053726,173.367767,169.830582,161.706604,144.185944,128.012405,119.673569,118.012413,116.681831,92.028938,73.285149,95.458694,133.169434,112.731422,55.359524,14.746299,10.607457,9.178525,10.803321,13.881008,21.499191,11.568607,1.752897,0.176860,0.031405,0.137191,0.000000,0.016529,0.003306,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602166.955000,4612465.550000,7124,4605,175.440521,169.754562,155.878540,136.184326,126.333084,115.523163,110.647133,106.746307,106.200851,106.969444,106.704979,117.126472,132.291763,146.457047,156.167786,163.539688,160.415726,151.985977,137.895065,121.994240,113.407463,112.324814,112.027298,87.159523,68.985970,91.382668,125.490105,106.556221,51.688454,14.392581,10.184317,10.499187,11.076874,17.260347,22.732248,13.571090,1.872731,0.884299,0.733059,1.150414,0.896695,0.694215,0.400827,1.176860,0.000000,0.000000,3.105785,4.052893,3.105785,0.000000 -602190.355000,4612465.550000,7241,4605,117.809929,178.057877,162.619873,151.082657,132.429764,118.578522,118.479347,115.008270,113.090919,116.123978,113.652901,124.776871,143.586792,162.570282,176.281021,190.024826,192.041336,177.661194,157.760361,137.066132,125.057861,121.471085,115.363647,83.297531,65.685966,84.008270,105.024803,75.793396,34.834732,12.196712,10.487622,10.921503,7.695057,9.128941,10.305801,5.129759,1.194217,0.057025,0.202480,0.070249,0.191736,0.270248,0.000000,0.000000,1.472727,0.000000,0.000000,0.000000,0.000000,0.000000 -602196.755000,4612465.550000,7273,4605,121.938858,180.707458,166.046295,152.558685,134.294220,120.302483,119.161987,114.542152,113.401657,115.922318,113.170250,125.434715,145.112411,163.294235,177.533890,192.360336,193.914062,180.566956,159.748779,138.484314,126.062813,121.963638,114.054550,82.856209,65.195061,84.426460,106.170258,77.542160,36.831421,14.582663,10.368614,10.761999,7.461174,9.447124,11.579356,4.911579,0.761985,0.358678,0.195868,0.203306,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602206.755000,4612465.550000,7323,4605,124.796715,166.757858,158.914886,148.104980,130.501663,117.071922,116.443817,112.485130,109.766129,112.080177,109.890091,122.857040,142.501678,159.881851,173.551270,186.485153,188.733078,175.534729,155.204163,134.972748,122.014069,116.857040,110.427284,80.278519,62.757870,81.063644,102.923149,75.964470,36.947952,11.964478,10.038863,9.817370,8.217371,8.806626,7.401667,3.717361,0.711572,0.057851,0.649587,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.555372,1.021488,1.308265,0.000000 -602222.355000,4612465.550000,7401,4605,99.223152,160.621490,157.175217,146.183502,126.943817,116.166954,115.654564,110.927292,108.894234,109.381836,107.803322,119.761993,138.795074,154.489273,168.150421,180.241348,181.952087,170.323975,149.241348,128.638031,117.257866,111.861176,105.200020,75.935547,60.365307,77.365295,97.431419,72.117371,32.323986,11.943819,9.563656,8.006624,7.604147,6.673565,9.364478,3.984304,0.780167,0.377687,0.095868,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000,0.000000,0.000000 -602246.755000,4612465.550000,7523,4605,112.111588,150.012390,158.376038,145.483475,130.020676,117.979355,116.235550,113.004150,110.855377,111.880180,113.095055,125.161163,145.061981,161.756195,174.888428,187.111572,188.739670,177.095047,154.681824,133.177704,122.219025,118.119850,110.863647,81.599182,64.235565,82.309929,99.466949,71.747955,32.648777,13.342168,10.078531,7.219021,6.699190,8.919850,8.452906,4.156205,0.742150,0.565291,0.174381,0.000000,0.000000,0.168595,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602262.155000,4612465.550000,7600,4605,103.868614,158.161163,161.698349,147.599167,130.409103,120.219025,119.020676,115.268608,115.929771,116.384315,118.053734,127.987617,147.028931,163.913223,177.219009,188.301651,190.045456,178.772720,155.797516,133.219025,122.177704,118.557869,114.500015,84.268608,66.549606,83.227287,95.128113,67.822327,30.342995,13.278530,10.409110,7.697533,8.825636,8.157866,9.289270,3.996701,0.471902,0.240496,0.303307,0.101653,0.023141,0.578513,0.000000,0.000000,1.225620,0.000000,0.000000,0.000000,0.000000,0.000000 -602268.755000,4612465.550000,7633,4605,94.513237,151.006638,161.543823,147.353745,132.097549,120.056221,118.378532,114.990105,114.014900,115.477707,115.907463,128.287628,146.849609,163.833084,176.800018,187.469437,189.023163,178.328949,154.733887,133.254562,122.535561,118.138863,112.709114,83.973572,66.188446,83.081009,98.452911,69.304153,31.246300,13.522332,10.246300,7.235551,8.495885,8.218196,8.123156,4.467775,0.866944,0.380993,0.275207,0.153719,0.000000,0.309918,0.000000,0.004133,0.000000,1.351240,0.000000,0.000000,0.000000,0.000000 -602271.355000,4612465.550000,7646,4605,99.197533,155.238861,157.610764,146.718201,130.189270,119.437202,116.842163,115.106621,113.875221,114.404144,115.280174,126.916542,146.073578,162.346298,174.990921,186.495056,187.643799,177.453735,154.090103,132.164474,121.817368,117.693398,112.809105,83.313232,65.073570,82.949600,98.594223,70.395882,32.230598,11.969440,10.255391,7.303319,8.557041,8.628116,7.764477,3.027278,0.758679,0.185125,0.022314,0.170248,0.000000,0.028099,0.000000,0.074380,0.000000,0.000000,0.000000,1.053719,0.000000,0.000000 -602274.155000,4612465.550000,7660,4605,106.497528,158.098373,159.387619,146.139694,131.974396,120.800835,117.858688,114.800835,114.081833,115.015717,115.528107,127.131416,147.197540,163.693405,176.230591,187.552917,189.800842,178.610764,155.685150,133.495056,122.825630,118.528107,113.354553,84.106628,66.866959,84.304977,99.842171,71.263649,33.536385,13.206629,10.304978,7.656212,8.170263,9.441338,9.215717,4.637198,1.110747,0.469423,0.393389,0.238017,0.269422,0.100000,0.002479,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,2.010744 -602277.355000,4612465.550000,7676,4605,102.792572,158.820663,157.151245,143.911575,128.597534,116.969437,114.895058,112.118195,111.977699,113.192574,113.589272,124.729759,143.357864,160.936371,174.035522,184.746277,186.952881,176.729736,152.589264,131.432236,121.060349,117.060349,111.390923,82.300018,64.184319,81.283485,98.027290,69.862000,30.581013,11.235556,10.126466,6.627285,6.464477,7.080180,7.371914,4.028105,0.966117,0.254546,0.000000,0.102480,0.000000,0.217356,0.277686,0.000000,1.420661,1.296694,1.101653,0.961984,0.000000,2.153719 -602281.755000,4612465.550000,7698,4605,98.923981,153.409103,156.433899,143.095062,127.781006,117.731422,114.557869,111.309937,110.541336,112.318199,112.442162,123.491753,142.442169,159.276871,172.706635,184.880188,185.268616,174.855392,152.805801,131.491745,120.458694,116.136383,111.227287,81.690102,64.623985,81.252083,97.698364,69.888443,32.458698,11.491752,10.111589,6.423152,8.642991,8.583485,7.888443,4.245461,0.627275,0.175207,0.013223,0.191736,0.092562,0.433059,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,1.135537,0.000000 -602285.355000,4612465.550000,7716,4605,100.566132,152.959518,156.670258,142.025635,127.852081,116.769432,115.546295,111.819023,112.215714,113.463646,113.628937,124.810760,143.868607,160.232239,174.868607,186.050430,187.381012,176.620667,154.166122,133.785965,122.521500,118.356209,112.827286,83.323158,65.306625,82.686798,98.719856,71.141350,33.042171,12.847952,10.257044,6.176045,8.093405,8.721501,8.314064,3.241328,0.854547,0.443802,0.320662,0.189257,0.000000,0.099174,0.006612,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602289.355000,4612465.550000,7736,4605,110.394226,153.589264,158.407425,142.242157,126.052071,116.696701,114.886780,111.481827,111.457031,111.779343,113.275215,124.076866,143.952896,161.952881,174.944626,185.209076,187.688416,177.151230,153.919846,133.812408,122.638847,118.506615,112.845459,83.233894,64.366135,82.919861,100.109924,72.209114,31.407459,11.150430,10.258698,6.975219,8.614892,9.176046,9.449602,5.752075,0.600001,0.137191,0.504960,0.147108,0.119009,0.395868,0.000000,0.000000,2.829752,0.000000,0.000000,0.000000,0.000000,0.000000 -602294.755000,4612465.550000,7763,4605,124.234718,154.449600,153.747131,140.771927,125.515717,115.548775,112.127281,109.507446,108.771912,109.937202,110.986786,122.747116,142.127289,159.152084,172.838043,184.474396,186.457870,176.970261,152.829773,131.342163,120.317368,115.606621,110.218193,80.747116,63.590103,80.813232,95.061165,69.590096,31.193409,12.655391,10.019855,7.984312,7.494230,9.114064,8.661171,5.042984,0.392563,0.476861,0.242976,0.002480,0.000000,0.255373,0.000000,0.574380,0.000000,1.257851,0.000000,0.986777,1.228099,0.000000 -602300.555000,4612465.550000,7792,4605,115.571907,154.390091,153.952072,139.613235,124.009926,115.042984,111.621498,108.373566,107.621498,109.266129,110.811577,121.985130,141.786789,158.770264,173.216537,184.282654,186.621490,175.819839,153.431412,130.059509,119.795052,115.191742,110.836372,81.712418,64.051254,79.687622,96.076042,67.960350,34.092583,11.685141,10.076052,8.197534,8.516544,8.952079,10.091749,4.516537,2.036367,0.216530,0.910746,0.401653,0.019835,0.720663,0.000000,0.000000,2.791736,1.347934,3.388430,2.067769,1.076033,0.000000 -602304.355000,4612465.550000,7811,4605,117.042992,152.271088,152.659515,138.527283,122.775223,112.990097,110.171913,107.436378,107.163651,108.618195,109.824806,121.362000,140.469421,159.080994,171.626450,184.114059,186.097534,177.097534,152.725632,129.461166,119.890923,114.965302,110.981834,81.196709,62.279362,78.609932,94.576874,67.766960,30.362001,12.387621,10.089275,6.628936,8.281833,8.975221,11.482659,6.014885,1.704136,0.439672,0.233059,0.319836,0.432233,0.923969,0.242975,0.354546,2.719835,1.222314,1.152066,2.833058,2.323141,0.000000 -602307.955000,4612465.550000,7829,4605,133.419022,155.518188,149.898346,136.857040,120.898361,110.369438,106.228943,103.790924,104.600845,105.815720,106.625641,118.526466,137.410751,155.286789,169.179352,181.427277,183.030594,173.179352,150.212402,128.799194,117.666962,113.146301,108.972748,80.104973,60.443821,78.815720,94.361176,68.055389,31.683491,13.156217,9.906631,9.318196,9.648775,10.571091,10.581834,6.664474,2.302486,0.825623,1.031407,0.860332,0.733886,0.696696,0.939670,0.789257,5.257026,9.022315,4.285951,3.552067,3.337190,1.994215 -602313.755000,4612465.550000,7858,4605,161.894241,162.005814,144.741348,130.989273,116.121506,102.997536,100.551254,98.096710,97.047127,99.749603,100.774399,111.518196,131.493393,149.658707,163.452087,175.625641,177.840515,167.609116,145.121521,123.171089,113.171089,109.542992,104.972748,75.559525,57.162827,76.328117,88.733078,64.666962,30.104979,11.934728,9.542994,10.684311,9.721502,11.718199,12.494230,8.828940,2.523148,2.508270,1.090085,0.990086,0.373555,0.519836,3.429755,1.241323,21.002481,19.442976,10.022316,7.921489,5.368596,0.000000 -601083.155000,4612455.550000,1705,4655,119.105804,133.004974,121.426468,108.170265,92.856216,80.128944,77.814888,73.137215,72.112419,71.963654,71.600014,84.046303,105.319031,121.947128,134.269440,144.922333,145.806625,138.467789,122.707458,105.600021,94.723991,92.790100,87.145477,52.219856,34.517376,57.021507,88.087624,70.087624,30.087622,8.817369,7.922333,12.536379,9.736377,11.812411,15.371918,10.112410,2.500006,1.074383,0.746283,0.451240,0.166116,1.051242,0.758679,1.423143,13.730579,9.104960,10.479341,7.703308,9.197522,20.341324 -601086.555000,4612455.550000,1722,4655,134.522339,134.935532,122.323982,109.902496,96.869438,84.076050,80.026466,76.059525,73.753738,74.299194,73.819855,87.125641,108.580185,125.935555,140.960358,150.522339,152.869446,146.514069,131.745468,113.778534,102.753738,101.629768,95.290924,58.580185,38.687622,62.530598,95.390099,75.406631,33.472748,11.326463,8.662829,11.613239,8.228940,10.927287,15.634728,8.609930,2.118186,0.418183,0.665292,0.104133,0.169422,0.339670,0.788431,0.504133,8.845455,7.307439,5.388431,6.220662,7.423141,3.427273 -601091.355000,4612455.550000,1746,4655,112.040504,130.457855,121.705795,108.995056,94.267776,84.201668,80.813232,75.449600,73.507446,73.565308,74.515717,86.193398,107.375221,124.639679,140.085938,151.945480,156.102493,152.879364,139.912384,123.747116,112.375221,111.771912,104.127281,66.796715,44.540520,70.871094,113.565300,95.796707,43.639694,10.805802,9.466136,11.946297,9.391750,13.719025,19.049604,10.223155,1.236366,0.152893,0.101654,0.000000,0.150414,0.048760,0.169422,0.250414,9.836366,6.844629,3.933885,6.586778,2.350414,10.222315 -601098.355000,4612455.550000,1781,4655,90.100853,119.587616,113.976044,101.852081,87.984322,78.463654,75.190933,69.703339,67.719856,66.976051,68.843834,80.967789,100.661995,117.389267,131.777695,145.290100,149.761169,147.876877,139.091751,122.645470,112.794228,111.827286,104.554558,65.298363,41.471920,70.314903,122.033897,109.901665,54.033905,13.408282,9.504978,11.120676,12.666132,17.672743,24.136381,14.359520,1.361986,0.000000,0.185125,0.000000,0.000000,0.223967,0.088430,0.091736,5.769423,6.312397,4.804960,1.161984,2.889257,0.000000 -601109.355000,4612455.550000,1836,4655,79.089272,105.017365,103.248772,92.984314,79.199188,68.860344,66.141342,62.133076,61.273571,60.695057,61.670265,74.199188,95.984314,111.604149,124.976036,133.934723,135.653732,132.959503,122.744644,109.488441,98.769432,96.951256,90.918198,55.967785,32.414070,60.554562,110.149597,105.653732,52.942997,11.016544,8.265308,8.701664,10.157042,17.438036,27.323162,16.773569,1.036366,0.171075,0.000000,0.000000,0.000000,0.000000,0.072728,0.000000,0.685951,0.676860,3.047108,0.000000,5.805786,2.948761 -601123.955000,4612455.550000,1909,4655,66.505798,79.328941,83.378525,72.295883,57.800014,48.064476,44.163651,39.700840,37.618195,36.981834,36.758694,45.700840,62.758694,75.362000,85.436378,94.444641,96.221504,94.014893,88.023155,76.089272,66.006622,64.899185,62.981834,30.300020,11.433073,36.411583,92.254562,101.221504,57.345470,9.272742,5.725639,7.288441,12.372743,23.748779,39.295883,29.595060,1.014052,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.875207,1.134711,1.379339,1.388430 -601131.355000,4612455.550000,1946,4655,71.728943,102.437210,99.288445,88.759514,73.668617,64.346298,62.437210,57.676880,56.825638,56.445473,56.189274,66.428940,86.098358,100.106621,112.503319,121.594223,124.842163,121.503319,112.420670,99.230591,89.833893,88.387611,86.172745,52.594234,30.083490,60.602497,113.313232,112.131416,60.635555,10.265304,7.833904,6.774392,13.978530,21.721506,36.230598,22.563654,0.719838,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.623141,0.000000,2.418182,0.466942,1.279339,0.000000 -601139.755000,4612455.550000,1988,4655,91.271088,131.309937,129.425629,118.896713,104.367775,93.574394,91.797539,88.119850,88.078529,89.640511,90.698364,102.276878,124.838860,142.557861,157.301651,169.574402,171.152893,161.979340,145.169434,125.185966,114.756218,112.541336,109.136375,74.062004,53.458694,75.607452,109.747948,88.020676,39.475224,10.195886,9.921506,7.504144,7.774393,9.509106,12.197536,5.392570,0.719011,0.137191,0.391736,0.143802,0.000000,0.000000,0.662811,0.000000,2.952066,0.941322,2.408265,2.112397,0.930579,1.913223 -601152.555000,4612455.550000,2052,4655,106.795876,132.181839,131.876053,121.834724,107.801666,98.132248,95.892578,91.520683,90.826462,92.256218,92.512421,104.958694,124.281006,143.000015,156.140518,167.595062,169.272751,161.041336,142.074402,121.528938,110.867783,106.876053,101.000015,67.198364,49.735558,69.272751,92.528938,71.851257,31.677706,12.176878,9.181837,7.785964,8.131418,9.941338,9.815717,6.471083,1.200829,0.189258,0.433059,0.131405,0.138844,0.000000,0.413223,0.421488,3.109092,1.052893,5.097522,7.063638,5.009092,1.825620 -601165.755000,4612455.550000,2118,4655,115.325630,131.371918,130.677704,122.264481,107.677704,98.024811,95.776878,92.355385,92.793404,94.214890,95.305801,107.181831,126.966957,143.636368,158.446304,168.636368,171.495865,163.553726,144.041321,124.107452,112.338860,108.983490,103.181831,69.809937,50.966961,68.388443,92.834724,70.247948,31.471094,11.294231,9.380183,6.178522,8.171088,8.270263,9.513237,4.406619,0.903309,0.166116,0.095868,0.505786,0.123141,0.212397,0.626447,0.493389,0.000000,2.999174,2.723967,4.726448,0.908265,0.000000 -601175.355000,4612455.550000,2166,4655,128.772736,142.195068,134.707458,124.434731,111.649597,100.963654,99.261177,95.467789,96.195061,97.608284,97.930603,109.781830,128.781845,146.641342,160.765305,173.236374,173.847946,167.600006,147.327286,126.550438,115.723991,111.195061,105.327286,73.236382,53.633080,72.996712,93.087624,72.790100,33.203323,12.948778,9.575226,6.321499,8.671913,10.274396,10.509933,5.194224,0.513225,0.114878,0.797522,0.478513,0.171901,0.119008,0.000000,1.823968,5.332232,3.085124,2.573554,6.402480,2.807438,3.863637 -601185.355000,4612455.550000,2216,4655,135.254547,146.639694,135.325638,124.325630,111.226456,101.201675,97.945473,94.722328,94.185143,97.639687,97.242996,108.912407,127.912407,145.408279,160.209915,172.631409,173.953720,168.234711,147.887619,126.747116,114.366951,111.532242,104.672745,72.102501,52.127293,71.887619,94.722328,71.813232,32.061176,11.453736,9.515720,6.816542,8.993402,9.353735,9.920676,5.673563,0.827276,0.589259,0.261984,0.242150,0.081818,0.204132,0.506612,0.844629,1.067769,4.809092,7.567770,3.168596,3.031405,1.896694 -601196.155000,4612455.550000,2270,4655,127.531418,151.839676,135.343811,128.203323,113.335548,102.806625,99.988441,97.277702,96.021500,99.310760,99.310760,111.649597,129.649597,148.517365,162.839691,174.095901,175.963669,169.195068,147.947113,127.451256,115.930588,111.310760,105.690926,73.740524,54.996716,72.682671,94.566956,71.633087,31.823160,10.817371,9.608284,7.148774,8.543813,7.438031,8.681833,4.970256,1.075210,0.338845,0.160331,0.347934,0.142976,0.000000,0.210744,1.058678,4.287604,6.538844,3.523141,2.608265,4.220662,8.141323 -601208.155000,4612455.550000,2330,4655,139.332245,156.668594,140.776047,128.643814,116.073570,104.379356,102.164482,100.602501,98.908287,102.652084,102.313240,114.329773,133.222336,150.999176,164.652069,176.395874,178.594223,171.676865,149.900009,129.643814,118.652084,114.916550,108.263657,75.519852,56.569443,74.255394,93.255394,70.982666,30.007456,10.686795,9.842167,5.849599,8.327286,8.071090,7.188443,6.424803,0.838020,0.123143,0.248761,0.290084,0.000000,0.375207,0.761158,0.352893,4.427273,1.100827,1.735537,6.664464,3.132232,4.247108 -601217.355000,4612455.550000,2376,4655,146.177689,165.814056,145.607437,134.169434,121.466957,108.367783,105.359520,105.053734,102.500015,107.590927,106.623985,117.285141,135.318192,153.797516,167.392563,181.285126,182.574387,173.698349,152.260330,131.582657,120.500015,117.194229,110.318199,78.747955,60.946301,76.508286,94.756218,72.202507,29.954563,12.264480,10.028945,6.559515,7.791749,9.449601,11.208281,5.022321,0.855374,0.698349,0.599175,0.199174,0.142149,0.161158,0.121488,0.438843,1.295868,1.953719,0.000000,1.328099,1.904132,1.873554 -601220.355000,4612455.550000,2391,4655,127.053734,145.983475,141.223145,127.561996,111.925636,100.181831,100.090927,96.049606,94.669441,96.330597,96.925636,108.363655,127.115715,143.338837,156.752060,167.206604,168.859497,159.008270,137.826447,119.644646,109.322327,104.760345,99.000015,68.619850,50.297546,67.942162,84.917374,63.099194,27.983490,11.256215,9.000019,9.728113,8.885965,9.790098,10.740512,5.012406,0.907440,0.145456,0.454546,0.094215,0.000000,0.166116,0.538844,0.000000,2.951240,4.614050,4.016530,8.009092,8.442977,1.776033 -601225.555000,4612455.550000,2417,4655,121.633080,145.950409,142.884293,130.157043,114.206627,103.330597,101.281006,97.504150,97.016548,97.586792,98.454559,110.570267,128.652924,144.561981,157.140503,169.504135,169.768600,161.438019,139.694214,120.347122,109.917374,108.173569,101.272743,70.975220,52.471096,68.727287,86.603325,64.239685,27.528116,11.009935,9.206631,11.621505,8.649601,10.338033,10.574397,4.845464,1.084300,0.344629,0.709093,0.000000,0.092562,0.000000,0.701654,0.328099,4.909091,6.741323,2.495868,7.882646,2.732232,1.914876 -601234.355000,4612455.550000,2461,4655,129.384308,162.152908,145.070267,131.995880,117.252075,105.913231,104.293396,101.351257,100.533073,102.004150,101.400841,113.235542,131.524796,147.657043,160.772751,172.384308,173.599182,164.095062,143.053741,123.690094,114.070259,111.037201,104.045464,73.483490,56.632248,72.227287,89.632240,68.045479,29.128119,12.283488,9.458698,12.146298,10.088446,10.304149,12.174396,6.513234,1.142978,0.226448,0.274381,0.313224,0.438843,0.192562,1.485125,0.635538,4.131406,2.085124,4.098348,3.630579,5.852067,7.475207 -601248.755000,4612455.550000,2533,4655,137.404129,167.080994,147.114059,136.866119,121.105797,107.676048,106.510757,104.337212,103.287621,106.576874,105.436378,116.287621,133.948776,150.816528,163.419846,174.973557,175.783478,163.585129,144.188431,126.386795,114.857864,113.990097,108.254562,77.089279,60.543823,75.990105,92.965309,68.196716,29.742168,10.523158,9.841342,13.890925,9.774397,9.648776,10.928942,6.929762,0.842979,0.423969,0.404960,0.479340,0.033058,0.000000,0.342976,0.825620,0.000000,1.075207,1.806612,3.449587,1.859504,9.885125 -601262.555000,4612455.550000,2602,4655,140.242981,177.484299,151.757019,141.872742,124.790092,111.674400,110.310768,108.145477,107.897545,111.963654,108.690933,120.178528,137.228119,155.500824,168.781815,181.128922,180.525620,166.980164,147.236359,128.864471,117.401665,115.765305,110.690933,79.492584,61.740517,78.963654,93.038040,67.219856,29.112415,9.747952,10.062829,13.304976,8.237204,9.657041,9.034724,4.934718,0.838020,0.166117,0.077687,0.265290,0.107438,0.122314,0.721488,0.409091,5.514050,2.155372,2.571075,4.423141,1.169422,2.106612 -601270.755000,4612455.550000,2643,4655,166.017380,187.488464,158.108292,149.042175,128.538040,117.504974,115.488441,114.942986,114.661995,120.066956,114.752907,127.050438,143.133087,160.686813,174.752914,187.488464,185.728134,171.397552,152.430603,133.645462,122.761177,120.736382,116.281830,85.430588,68.934738,83.901665,96.042160,69.281845,33.394234,13.599191,10.571093,18.321503,10.412412,11.492577,11.220675,7.826458,2.451245,0.803307,0.253720,0.080166,0.164463,0.096695,0.141322,0.000000,0.000000,0.000000,1.913223,0.906612,3.437190,2.117356 -601280.755000,4612455.550000,2693,4655,113.586792,152.410751,154.088440,142.419037,128.361160,118.823975,116.799187,115.460342,113.757858,115.724800,117.005798,126.931412,145.245468,161.005798,173.708252,184.220657,185.195862,175.121475,153.476852,133.600845,123.832245,121.055382,116.972740,88.162819,69.898376,84.790916,96.666954,70.460358,31.220680,12.243820,10.633904,7.571911,8.557040,9.428939,9.400841,3.452072,0.766117,0.316530,0.225620,0.219009,0.295042,0.193389,0.000000,0.000000,0.000000,1.001653,0.976033,0.000000,0.000000,1.928926 -601296.155000,4612455.550000,2770,4655,102.433067,151.372726,155.240494,143.091751,128.662003,120.686790,117.637199,116.521507,115.009109,117.695053,119.513237,129.058685,146.075226,162.777679,174.323135,185.876862,186.728088,178.480164,155.504959,134.843811,125.009102,121.827286,116.736382,90.273575,71.091759,86.199196,95.513245,69.662003,31.769440,11.596712,10.612415,6.643812,8.591750,8.661997,8.390095,3.114881,0.310745,0.119009,0.238017,0.001653,0.000000,0.023141,0.000000,0.392562,0.000000,0.000000,0.000000,0.000000,0.000000,1.878513 -601307.155000,4612455.550000,2825,4655,109.278534,152.658691,153.303314,144.650421,130.700012,122.195885,119.427292,117.914894,116.956215,119.658699,121.030594,130.212418,147.435547,162.625626,175.939682,186.509933,188.005798,179.319839,157.237198,135.947952,126.485138,122.857040,118.154564,90.047119,71.890091,86.435547,95.658684,70.534721,31.914896,13.285968,10.741341,6.759515,7.576046,8.061172,7.959516,4.779346,0.794217,0.233058,0.081818,0.000000,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.984298,0.745455,0.000000,1.959504 -601316.355000,4612455.550000,2871,4655,120.109924,155.388443,155.950424,147.148773,133.818192,124.024811,121.933899,120.528938,118.826462,121.661171,123.966957,133.809937,149.462830,164.619858,179.371918,188.909103,191.016541,181.685974,158.743820,138.264481,128.016541,125.454559,119.909103,93.504150,73.479355,88.752083,99.016548,73.727287,34.614899,14.022333,10.900845,8.238854,9.128941,10.076873,9.243814,3.868602,0.272728,0.682647,0.145455,0.024794,0.230579,0.161984,0.280165,0.000000,0.000000,1.052893,0.000000,0.804132,0.000000,0.000000 -601326.955000,4612455.550000,2924,4655,106.996712,154.202499,156.334732,145.706635,131.623978,121.500015,119.450432,119.458694,118.078529,119.640511,121.723160,131.202499,148.475220,162.863632,176.466949,186.516525,188.367767,178.888428,156.979355,136.533081,126.913239,122.524811,117.590927,91.210762,71.409103,85.615715,97.152908,70.590927,30.119854,12.362001,10.690102,5.671085,7.464476,6.061167,6.731416,4.114057,0.299176,0.187604,0.151240,0.000000,0.038843,0.120661,0.360331,0.000000,2.049587,0.000000,0.000000,0.000000,0.000000,0.000000 -601340.555000,4612455.550000,2992,4655,114.835548,153.623154,155.077698,147.028122,134.540512,123.350426,120.895882,120.606621,120.077698,121.788445,123.730591,133.342163,149.408279,165.152084,178.375229,188.209930,189.433075,181.234726,159.309113,138.449600,128.598358,125.284309,120.400009,92.548775,74.185135,88.135551,98.416542,73.209930,32.623161,14.306629,10.945474,7.727285,8.181007,8.831418,10.014061,5.075214,0.943804,0.333059,0.181819,0.008265,0.433058,0.042149,0.489257,0.000000,1.140496,2.219835,0.000000,0.913223,1.150413,0.000000 -601351.755000,4612455.550000,3048,4655,140.947937,181.493393,170.782654,160.460342,144.724808,131.352905,130.295059,130.080185,129.600845,135.162827,132.171097,144.171082,159.005798,176.195877,190.592575,201.700012,202.245468,190.096710,169.055374,148.493393,138.972733,134.584320,131.245468,101.460350,83.898361,98.476875,107.741341,76.509933,36.080185,15.039688,11.931424,10.033073,8.228941,9.618198,9.650427,4.636372,0.947935,0.617357,0.232232,0.333885,0.003306,0.000000,0.285124,0.143802,0.000000,1.046281,0.000000,0.000000,0.000000,0.000000 -601359.155000,4612455.550000,3085,4655,141.150421,187.836395,172.175217,163.935562,147.290924,133.671082,133.910751,133.580170,133.968597,140.175217,136.464478,148.323975,163.481018,181.704163,196.208298,207.885956,207.968597,193.596725,173.133896,153.307449,143.133896,140.770264,135.563644,105.580177,88.307457,102.935547,110.307449,79.621506,38.522331,16.519852,12.323986,11.649602,8.850430,11.009933,10.188443,4.581827,1.016531,0.489257,0.152067,0.006612,0.006612,0.000000,0.006612,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601362.555000,4612455.550000,3102,4655,146.027283,186.498352,172.812408,163.647110,145.415710,132.556213,133.184311,130.895050,132.142990,137.828934,135.002487,146.605789,162.027283,180.242157,193.514877,206.994202,207.200821,193.870255,172.423981,152.580994,141.514877,139.547943,134.209106,104.126472,87.283485,100.539696,110.680191,76.465302,35.159527,14.470266,12.200846,11.706628,7.581008,8.013238,7.864476,4.451249,0.505786,0.253720,0.236364,0.133884,0.003306,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601366.955000,4612455.550000,3124,4655,145.380173,182.603302,170.570251,162.330582,145.388428,132.396698,134.198349,130.355377,131.256195,137.322311,134.917358,146.016525,161.900833,180.305786,193.231400,206.272720,207.396698,193.884293,171.628098,152.289261,140.619827,138.495865,133.181824,103.801666,87.752083,98.115715,109.925636,78.231422,35.652912,14.895886,12.107456,10.811584,8.954561,9.304976,10.309934,4.433067,0.731406,0.254546,0.100000,0.011570,0.000827,0.000000,0.002480,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601370.355000,4612455.550000,3141,4655,128.856216,187.319016,170.641342,162.748779,147.451248,133.319016,134.409927,134.079346,133.922333,139.418198,136.236374,147.831421,165.368607,181.988449,196.740509,208.723984,209.285965,195.847946,173.914062,154.145462,144.723984,141.228119,137.054565,107.839691,90.038040,102.500847,111.740517,80.195061,39.112419,16.730597,12.459524,12.912413,9.930595,10.419852,13.428116,6.746291,1.257028,0.486778,0.600001,0.000000,0.002479,0.000000,0.012397,0.334711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601375.555000,4612455.550000,3167,4655,128.248779,186.761169,170.488449,159.695068,145.397537,133.637207,133.934738,132.645477,132.389282,137.381027,135.422333,146.967804,164.430588,181.248779,193.959518,206.843811,208.794235,195.728119,173.951248,152.934738,142.546295,140.331421,135.918198,105.058701,88.042160,101.009109,110.984322,80.678543,36.984314,15.183489,12.356217,11.518196,9.247952,11.914894,10.476049,6.404969,0.521489,0.083471,0.277687,0.020661,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.318182,0.000000 -601379.155000,4612455.550000,3185,4655,121.242172,181.176025,168.341324,158.903305,143.374390,133.622330,133.192581,131.589279,131.952911,136.258682,134.919846,147.043808,163.300003,181.010757,192.911560,206.630569,207.605774,195.250397,172.060333,153.142975,142.382645,139.085129,135.027298,105.308289,87.994240,100.556221,110.514900,79.779350,36.184315,14.349605,12.275226,9.324807,8.249602,8.354563,10.205799,5.713233,0.753721,0.350414,0.253719,0.000000,0.000000,0.000000,0.085124,0.048760,0.000000,0.000000,0.000000,0.000000,1.279339,0.000000 -601381.755000,4612455.550000,3198,4655,117.068611,182.242157,169.580994,159.316528,143.845459,132.209106,133.085144,131.911591,133.266953,136.539673,135.490082,147.804138,164.680176,181.671906,194.944641,208.076859,209.597534,196.969421,173.919846,153.812408,143.663635,141.432236,135.118195,105.118195,87.481834,101.010757,110.680183,79.787621,37.349609,15.032249,12.283490,10.642991,9.223985,10.648777,10.162825,5.001662,1.145457,0.125620,0.092562,0.048761,0.080166,0.000000,0.000827,0.135538,0.000000,1.276033,0.000000,0.000000,0.000000,0.000000 -601386.755000,4612455.550000,3223,4655,127.963646,173.128937,168.963654,158.261169,145.624802,132.690918,132.781830,131.500839,131.881012,136.021500,135.823151,147.302490,164.269440,181.203323,195.071091,207.401672,208.558685,197.335556,174.971909,153.608276,143.343811,140.401672,136.509109,105.608276,87.285965,100.029762,111.674393,80.765305,36.442993,15.178530,12.409936,10.068608,9.661172,8.290924,9.543817,5.823150,1.304134,0.106612,0.280166,0.126447,0.000000,0.000000,0.044629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601389.555000,4612455.550000,3237,4655,125.657043,169.392563,166.681824,157.615723,144.665298,133.681839,133.938034,132.772736,132.376038,136.185974,136.384308,147.623978,165.070267,182.442154,196.103302,207.772720,210.533051,198.549591,176.128098,155.136383,144.805801,141.524811,135.772751,107.301666,88.111588,100.012413,112.078522,80.177704,37.417374,15.897540,12.342994,9.978526,9.742992,9.514066,10.753735,3.912405,0.596696,0.262810,0.293389,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601393.755000,4612455.550000,3258,4655,120.102501,169.614899,168.234726,158.928940,144.482666,132.747131,134.152084,131.457870,131.813248,135.970261,135.945480,147.342163,165.523987,181.433075,196.052902,208.052902,209.647934,198.887604,175.540512,154.548782,143.838043,142.011597,136.309113,106.449608,87.681007,99.780182,111.937210,81.102501,38.044651,15.245472,12.391755,9.078526,9.280183,9.480183,11.442165,5.362821,0.846283,0.000000,0.133885,0.006612,0.000827,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601398.955000,4612455.550000,3284,4655,121.451256,174.261169,170.062820,160.062820,144.748779,134.294235,134.856216,131.938858,133.285965,135.492569,136.996704,149.211578,166.773560,182.988449,196.476044,208.252899,211.666122,200.360336,177.038025,156.434723,146.104141,142.517365,137.600006,108.087624,88.930603,103.170265,113.847954,81.575226,39.071095,15.185968,12.509109,10.794229,9.586794,9.642992,12.772741,4.737201,0.986779,0.703307,0.000000,0.060331,0.011571,0.000000,0.429752,0.064463,0.000000,0.000000,0.000000,1.022314,1.255372,0.000000 -601402.755000,4612455.550000,3303,4655,125.890930,174.758698,170.155396,158.494232,145.965317,134.791763,135.081009,132.114075,132.535553,136.097549,137.064484,148.593414,165.833084,182.609940,196.535538,207.915726,210.643005,199.833069,176.114075,154.477707,144.097549,141.494232,136.163635,106.717377,88.700851,100.775230,111.328949,79.081017,38.014896,16.512413,12.378532,9.621500,9.366960,10.260345,12.307455,4.992571,0.980167,0.366943,0.104959,0.069422,0.097521,0.106612,0.015703,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.355000,4612455.550000,3336,4655,118.163651,165.601654,168.824799,159.833069,145.171906,135.362000,134.709106,132.642990,133.469437,135.609924,136.626450,148.386780,167.287613,183.452896,196.295868,209.436371,211.262817,200.576859,177.064468,156.345459,145.766953,141.519012,136.163635,107.684311,89.271088,102.155388,111.395058,81.395058,38.386799,15.552084,12.378532,9.014063,9.786794,9.846298,11.851255,3.884305,0.566943,0.177686,0.124794,0.000000,0.014050,0.000000,0.000000,0.070248,0.000000,0.000000,0.804959,0.000000,0.000000,0.000000 -601412.155000,4612455.550000,3350,4655,124.750427,170.527298,168.014893,157.766968,144.254562,134.328934,133.816544,132.601669,132.419846,135.006622,137.419861,149.328949,167.122330,183.287628,196.304138,207.833069,211.461166,200.370255,176.717377,154.279358,144.783493,142.254562,136.618210,107.642990,88.642990,102.304146,111.262825,80.353737,37.626465,16.904152,12.419854,8.943815,10.361175,10.657868,10.191751,5.579348,1.252068,0.314050,0.204133,0.287604,0.014876,0.000000,0.013223,0.073554,1.337190,0.000000,0.000000,1.123141,0.000000,0.000000 -601418.155000,4612455.550000,3380,4655,117.963669,166.773590,171.385147,158.261185,142.856232,133.649612,134.591751,132.451263,132.285965,135.203323,137.476059,149.120697,166.839691,183.335571,196.591766,210.013229,212.120667,201.889267,178.781845,155.542175,145.046310,143.104156,137.600037,107.261177,89.409935,103.013245,111.641342,80.401672,38.261173,15.254563,12.509110,10.140510,9.669438,11.176050,10.005800,5.671910,0.405786,0.210744,0.391737,0.300827,0.084298,0.000000,0.000000,0.116529,0.000000,0.000000,0.000000,0.000000,1.075207,0.000000 -601421.955000,4612455.550000,3399,4655,116.539696,168.076889,168.506638,157.961182,144.564484,134.630600,135.101669,131.680191,132.473572,135.531433,137.638870,149.159531,166.638870,182.316559,196.663666,209.333084,210.895065,201.068619,177.242172,155.680191,144.382660,141.762833,135.936386,106.804153,87.589279,101.407463,111.928123,81.052086,36.399193,14.239689,12.357871,9.198361,8.451257,9.271916,9.783486,4.433893,0.641324,0.069422,0.446282,0.000000,0.011571,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601424.755000,4612455.550000,3413,4655,109.787621,165.209106,168.547958,157.324814,143.861984,134.002487,134.374390,132.597534,132.828934,135.167770,137.085144,148.209091,166.159531,182.291763,196.481842,209.143005,212.200851,201.440521,178.076889,155.944656,146.076859,141.713242,137.118210,106.729759,89.002495,100.523148,110.828934,80.300018,38.118202,15.832251,12.465309,9.974395,10.091752,10.761175,8.847948,5.751250,1.148763,0.185124,0.003306,0.019009,0.080166,0.000000,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601428.955000,4612455.550000,3434,4655,115.674400,166.021500,168.905792,157.583481,144.657867,136.575241,134.955399,133.360352,133.748779,135.905792,139.170273,149.335556,167.302490,184.666122,198.459534,210.616547,213.071075,202.988464,178.831421,157.071091,146.434723,144.294235,139.236389,108.071098,89.558701,103.335556,111.955391,81.955391,38.600021,15.693407,12.657870,8.861998,9.715719,10.179356,12.150429,4.662819,1.190086,0.439671,0.070248,0.000000,0.022315,0.000000,0.000000,0.068595,0.000000,1.265289,0.000000,0.000000,0.000000,0.000000 -601432.755000,4612455.550000,3453,4655,126.723152,168.549606,169.268616,158.417374,144.607452,135.714874,134.078506,132.954544,133.764465,136.136368,137.764481,149.962830,167.789276,184.566132,198.574402,210.466965,213.227295,202.640518,178.615723,156.582657,146.772751,143.574402,139.863647,107.979340,89.301666,103.772736,112.772728,81.433899,37.971096,14.934729,12.714895,9.336376,9.647951,9.423156,9.697535,4.291744,1.325622,0.265290,0.261158,0.208265,0.179339,0.000000,0.000000,0.000000,1.288430,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.755000,4612455.550000,3468,4655,114.957870,163.709915,166.866943,157.759506,144.445465,135.569443,135.007446,133.172745,133.536377,135.544647,138.900009,149.718185,167.792572,184.263641,198.693390,210.817352,214.098343,203.536362,178.321487,156.619019,147.123138,144.156204,139.172729,107.792580,88.875229,103.949608,113.214066,80.536385,38.676880,15.307455,12.652085,9.490096,9.085139,9.881834,12.080182,5.522323,0.503307,0.189257,0.072728,0.078513,0.261984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.755000,4612455.550000,3493,4655,121.300003,165.109924,169.564468,158.498352,146.043823,137.333084,135.944656,134.209106,134.961166,136.994232,139.911591,151.333069,168.514877,185.242157,199.498352,211.647110,214.861984,204.035538,179.952896,157.275208,148.101669,144.498367,139.572754,108.704964,90.233894,104.614059,113.341331,83.779343,39.614067,17.368614,12.688448,10.380180,10.295058,11.497537,10.776874,5.775218,1.267771,0.155372,0.242149,0.006612,0.195042,0.092562,0.010744,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.755000,4612455.550000,3508,4655,109.489265,164.712402,166.464478,155.489273,143.059509,134.009933,132.390106,131.910767,132.745468,134.795074,137.786789,148.505798,166.290924,182.753738,196.869431,209.414886,212.299179,201.852905,177.431427,155.646286,145.100830,141.679352,137.018188,106.142166,88.042984,101.571922,110.695885,79.753738,36.563660,15.198366,12.456217,9.065303,8.874397,10.023156,8.994228,4.194223,0.778513,0.440497,0.000000,0.000000,0.011570,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601448.755000,4612455.550000,3533,4655,103.377693,166.253723,168.104965,158.526459,145.063644,138.138031,136.138031,133.815720,134.741318,137.162827,139.658691,150.700012,168.576050,186.270264,200.501663,212.410751,216.435547,205.782654,180.939682,158.171082,148.080170,144.757858,139.336380,110.311569,90.452072,105.691734,113.518181,80.939682,39.716549,16.597540,12.666961,12.324808,11.346298,12.771917,12.482659,4.914059,1.104135,0.309918,0.380993,0.237191,0.043803,0.000000,0.012397,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.355000,4612455.550000,3576,4655,107.856209,166.162003,164.864471,155.244644,144.327286,135.071091,133.757034,131.889267,133.690918,136.294235,139.071091,150.409927,167.938858,184.004974,198.971909,211.773560,213.889267,204.120667,179.525635,157.376877,147.335556,144.327286,137.872742,108.889267,88.525642,102.542160,113.277702,81.426468,36.831425,15.704151,12.533904,8.543814,8.247951,10.902496,10.819848,3.739677,0.788431,0.195868,0.000000,0.062810,0.028926,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.155000,4612455.550000,3590,4655,116.271912,158.652069,165.255371,155.833893,144.891739,133.792572,133.643814,132.866959,133.238861,136.015717,138.751236,149.966125,167.263641,183.544632,199.098343,212.032242,214.891739,203.916534,179.420670,156.842148,146.536362,142.503311,137.809097,107.726456,89.908279,103.635551,113.329765,81.635551,38.065311,15.852910,12.528117,9.143814,8.209108,8.848776,9.426460,3.958685,0.852894,0.135538,0.145455,0.080992,0.000000,0.000000,0.003306,0.000000,0.000000,1.228099,0.000000,0.000000,0.000000,0.000000 -601463.355000,4612455.550000,3606,4655,109.728119,162.430588,166.959518,157.761169,147.637207,137.257034,135.529770,134.827286,135.645462,138.852081,139.554565,151.480179,169.389267,185.926453,201.397537,213.190903,215.488434,206.926437,181.909927,158.389267,148.108276,144.893402,140.463654,109.554565,89.488449,105.199196,113.703316,82.174400,40.290100,17.303324,12.769441,7.468607,12.438035,11.449604,11.238031,4.834720,1.315705,0.542150,0.271901,0.326447,0.011570,0.000000,0.070249,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.555000,4612455.550000,3622,4655,104.761169,157.670258,165.298355,155.893402,144.133072,134.463654,132.794235,132.339676,133.769440,136.075241,138.141342,150.033890,167.025635,184.372742,199.719849,212.496704,215.918198,205.091751,180.835556,158.934723,147.752899,143.777695,139.100006,108.769424,88.728111,104.017357,113.372734,80.562820,39.100018,14.781010,12.645473,7.658690,9.627288,8.533073,8.855386,4.920669,0.752067,0.050413,0.066942,0.000000,0.035538,0.166116,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.555000,4612455.550000,3642,4655,121.068611,165.994217,167.994217,157.142975,144.415710,135.539673,134.457047,133.258698,134.142990,136.961166,139.242157,150.490082,169.490082,185.936371,201.176041,214.688431,217.729752,206.622314,181.655380,159.671906,149.085129,145.597534,140.209091,110.043816,89.721504,105.514893,113.184311,81.638855,39.225643,15.598366,12.746301,8.210753,9.938859,10.265306,9.666958,5.073564,0.665291,0.218183,0.239670,0.388431,0.023141,0.000000,0.000827,0.004959,1.295868,0.000000,0.000000,0.000000,0.000000,0.000000 -601477.555000,4612455.550000,3677,4655,113.165306,163.677689,166.338837,158.520660,144.958679,137.900833,134.024811,134.347122,134.809921,136.471069,141.694214,151.950409,169.958679,187.760330,203.388428,216.975204,220.636368,209.305786,184.247940,161.851242,149.669418,147.247940,142.000000,111.975220,91.388443,105.619850,115.520676,82.661171,39.355392,14.785142,12.909109,6.019847,8.056214,9.056215,11.360346,4.545463,0.495042,0.287605,0.147108,0.000000,0.033058,0.234711,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.355000,4612455.550000,3696,4655,120.874390,167.585129,168.130585,158.717361,145.295868,137.328934,136.395050,135.122314,134.089264,138.130585,140.750427,153.428101,171.047943,188.461151,203.527283,216.485977,220.643005,209.857880,184.138840,161.998352,151.080994,146.552078,142.254547,112.147118,91.866119,106.138847,116.304138,84.700844,40.122334,16.962828,12.932249,9.002495,8.919852,9.658693,9.806627,5.587613,0.847937,0.412398,0.066943,0.013223,0.009091,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.555000,4612455.550000,3722,4655,123.456215,161.257858,165.563644,157.852905,145.109100,137.233063,135.406616,133.902496,134.968613,137.505798,140.464478,151.795044,170.547104,188.340485,203.976852,215.819824,219.638016,209.761978,184.208267,161.547119,149.952072,146.952072,142.109100,109.390099,90.604973,104.811584,116.034729,82.406631,38.588451,15.037208,12.919027,7.136377,7.741339,8.855389,9.704147,4.727282,0.658679,0.268596,0.075207,0.080165,0.012397,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.155000,4612455.550000,3750,4655,119.737206,168.365295,169.100830,160.018188,146.051254,138.993393,136.472733,135.555374,136.423157,139.233063,141.679352,153.076050,172.266129,189.712402,205.505798,218.059509,222.290924,212.117371,185.844635,162.150421,152.505798,149.282654,143.018188,113.728943,91.778519,106.332253,116.373573,85.059517,39.844650,16.633078,13.001672,7.490921,8.715718,10.271091,10.301667,4.481826,0.369422,0.061157,0.015703,0.000000,0.057852,0.000000,0.085951,0.000000,0.000000,1.336364,0.000000,0.000000,0.000000,0.000000 -601497.155000,4612455.550000,3775,4655,113.783485,159.204971,170.180176,158.295868,146.213226,137.485947,135.882645,135.105804,135.593399,139.188431,140.791748,153.105789,171.064468,190.229736,204.229736,219.287598,223.097504,212.204956,186.948761,163.287613,152.709091,148.254547,143.981827,113.593407,91.890923,107.188446,117.147125,85.056213,39.006634,15.377705,13.089275,7.772741,9.781011,9.847122,8.301666,3.490915,0.544630,0.137191,0.004133,0.000000,0.020661,0.000000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.155000,4612455.550000,3790,4655,106.008278,162.975204,170.661163,159.479340,148.380188,138.000031,137.487640,136.289291,137.330612,139.487640,142.859528,154.495880,172.644623,190.024796,206.752060,219.727280,222.884293,212.760330,186.933884,163.504135,152.892578,148.991745,142.545471,112.652908,92.652908,107.950432,117.289276,86.090927,40.231426,16.484316,12.958695,6.825634,10.182662,11.183487,9.846294,4.678521,1.038019,0.427274,0.145455,0.000000,0.022314,0.000000,0.145455,0.003306,0.000000,1.337190,0.000000,0.000000,0.000000,0.000000 -601502.955000,4612455.550000,3804,4655,119.390923,164.514877,170.539673,160.936371,147.597534,139.126450,136.432236,136.828934,137.076859,140.423981,142.994217,154.911575,172.407440,190.010727,206.101654,219.283478,223.655380,213.027283,187.597504,163.151245,153.283478,149.275208,144.481827,113.870262,91.523155,107.647125,117.233902,85.597534,40.539692,16.024811,13.134729,7.847121,10.009107,10.006628,11.857867,4.850420,0.852894,0.213224,0.310745,0.019835,0.029753,0.000000,0.128100,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.755000,4612455.550000,3818,4655,142.070267,171.921509,169.508286,161.012405,148.805801,139.458694,137.566132,136.706635,137.045471,141.161179,142.219025,154.574402,172.954559,190.392578,206.896713,219.847122,222.541336,212.946304,186.880188,163.706635,153.367783,149.590927,143.318192,114.334724,93.557869,107.516548,117.020676,85.103325,40.045475,16.623159,13.028945,7.228113,9.664480,10.632249,9.042164,4.598356,1.113226,0.000000,0.017356,0.013223,0.108265,0.000000,0.074381,0.006612,1.361157,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.355000,4612455.550000,3841,4655,120.398361,169.877716,170.629776,163.836395,149.315735,139.935562,138.786804,137.811600,138.365311,142.109116,143.563660,155.596725,173.613251,191.968628,207.489273,221.811569,224.299164,214.456192,187.613251,164.216553,153.497543,149.968628,145.290939,114.042992,94.456215,108.547127,117.671089,86.125641,39.861176,17.328117,13.208282,8.672741,11.042993,11.590100,11.181833,5.051249,0.490084,0.440496,0.090084,0.092562,0.085124,0.000000,0.038017,0.080166,0.000000,0.000000,0.000000,1.152066,0.000000,0.000000 -601515.955000,4612455.550000,3869,4655,110.447121,169.504974,169.389267,159.116547,147.108276,138.000839,136.257034,134.595886,135.455383,139.496704,141.612411,152.571091,171.364471,188.744644,203.670258,217.761169,221.438858,212.091751,183.934723,161.422333,149.843811,147.587616,142.190918,110.984314,90.843811,104.703316,115.157867,84.281830,37.058693,15.824811,12.926464,5.967781,8.964479,8.923156,9.285137,3.711577,0.372729,0.373555,0.138017,0.008265,0.028099,0.000000,0.062810,0.011571,0.000000,0.000000,1.185951,0.000000,0.000000,0.000000 -601519.555000,4612455.550000,3887,4655,116.956207,173.509933,171.071915,162.344635,149.873566,137.931412,137.567780,137.014053,136.997528,141.815720,142.344635,155.237198,171.551254,190.534714,205.881821,219.840500,222.022324,212.295044,186.295044,162.890091,151.286789,147.138031,142.427277,112.815712,90.179359,105.402489,114.675217,85.823982,39.799194,17.195885,12.947952,6.916542,10.837208,7.995058,9.954559,3.654553,0.170250,0.447935,0.320663,0.155372,0.049587,0.187603,0.023967,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601522.555000,4612455.550000,3902,4655,122.212418,168.691742,172.352905,161.146286,148.047119,138.898376,136.691742,136.171082,136.220673,140.650436,142.311600,153.435547,170.204147,188.096710,203.344635,217.476868,219.485138,210.146286,184.823975,160.658691,149.228943,146.691742,140.972748,110.989265,89.559517,104.493401,116.104965,83.551254,37.435558,16.846298,12.815722,6.857862,9.016545,7.609106,8.222327,3.032238,0.611573,0.012397,0.278513,0.000000,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.361984 -601525.755000,4612455.550000,3918,4655,131.532242,168.325638,172.061172,162.350433,149.400024,138.895889,137.127289,136.234726,136.904144,140.333908,142.251266,153.309113,169.631424,188.292587,203.077698,216.813248,220.424820,209.614899,184.234726,160.408279,149.052917,145.433075,139.763657,110.515724,89.507454,104.003326,115.292572,84.160347,38.119026,15.952084,12.705805,5.597530,8.291749,8.044641,8.942163,4.322322,0.995044,0.293389,0.036364,0.080992,0.021488,0.000000,0.155373,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.755000,4612455.550000,3943,4655,115.895058,178.176041,171.052078,164.514877,150.936386,140.258698,140.027298,138.804153,138.118210,142.316559,143.556213,154.217361,171.440506,190.010757,204.746292,218.283478,220.052078,210.911575,184.118195,161.002487,149.754562,145.531433,140.936386,111.142990,90.060349,104.721504,115.374397,83.729767,40.349606,16.733076,12.812415,7.007449,10.167787,9.950429,10.619850,3.814884,0.915705,0.357026,0.006612,0.043802,0.096695,0.042976,0.103306,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.155000,4612455.550000,4020,4655,116.685966,171.760330,174.752060,162.033051,148.272720,137.272720,135.752075,134.413239,134.876053,137.933884,138.504135,149.578506,168.173553,185.743805,200.586777,211.942154,214.123962,202.165283,176.760330,154.289261,144.181824,141.363632,135.454559,106.694229,86.363663,99.892570,110.801666,78.826469,37.735561,16.783489,12.314069,8.577700,9.280183,8.034725,9.341335,4.489265,0.270249,0.247108,0.065289,0.000000,0.001653,0.000000,0.036364,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.155000,4612455.550000,4035,4655,110.537209,172.799179,169.625626,160.253723,144.815720,135.964478,135.609100,134.220673,133.898361,136.633896,137.815720,150.187607,168.129761,184.410751,199.245468,212.038849,214.551254,201.766129,176.435547,154.576050,145.129761,142.138031,137.063644,106.501671,87.923149,99.534721,110.286789,79.898354,37.195889,15.743819,12.460349,9.718195,7.711586,10.418198,9.933898,4.528107,0.943804,0.570249,0.451240,0.249587,0.066943,0.165289,0.053719,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.355000,4612455.550000,4051,4655,125.875221,173.453720,172.883469,162.453720,147.999176,137.875229,138.742996,135.957870,136.784317,138.627289,139.833908,151.379349,169.379349,186.668594,200.354553,212.833893,214.123138,202.676865,175.891739,155.742981,144.371078,142.552917,137.172745,106.519852,87.908287,101.776047,110.073570,80.643814,37.941341,16.252911,12.470267,11.102496,10.326464,10.509107,11.366131,4.743810,0.567770,0.289257,0.082645,0.133884,0.004132,0.009091,0.013223,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.555000,4612455.550000,4067,4655,131.428940,173.742996,175.015717,161.776047,147.842163,138.073578,137.255386,135.883484,135.395889,138.395889,138.304977,151.478531,169.181015,186.114899,199.908279,213.445480,214.685150,203.800842,175.933075,155.081833,144.544647,141.387619,136.172745,106.676872,87.106628,100.941330,110.511589,79.866959,38.230598,16.000845,12.379358,10.931418,9.945470,10.593403,10.976877,3.738850,0.961986,0.133058,0.182645,0.000000,0.000000,0.000000,0.000000,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.155000,4612455.550000,4095,4655,125.878525,176.779327,172.457016,163.134705,148.481827,137.432236,137.333069,136.002487,135.539673,137.688431,138.300003,149.539673,168.109909,184.547928,199.341309,211.027267,211.490067,199.564453,174.861969,152.721497,141.622314,140.622314,133.845459,104.366119,85.680183,99.680183,109.399178,77.886795,36.812420,13.160348,12.167787,9.364475,8.121504,7.862824,10.501667,3.609926,0.925622,0.177687,0.000000,0.000000,0.000000,0.000000,0.000000,0.239670,0.000000,2.808265,1.102479,0.902479,0.000000,0.000000 -601566.555000,4612455.550000,4122,4655,115.124809,177.323151,174.273560,162.257034,149.157867,138.653732,138.257034,137.290100,136.190918,140.207458,140.042160,152.116547,168.810760,187.075226,200.843811,213.711578,214.628937,202.199188,177.777695,154.504974,143.265305,141.405792,136.463654,105.901665,87.785965,100.819023,110.025635,78.529762,37.662003,16.134727,12.405804,10.002492,9.803322,9.752908,10.395884,4.609098,0.932234,0.181819,0.096695,0.000000,0.001653,0.017356,0.074380,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.755000,4612455.550000,4158,4655,119.020676,191.252075,174.929764,163.103317,148.301666,136.500000,136.954559,135.433899,135.995880,138.863647,138.409103,151.185974,167.475220,184.913239,198.243820,211.400833,213.037186,199.508286,174.698364,151.979355,141.739685,139.607452,133.954559,102.904976,85.632256,98.384323,105.814064,77.822327,36.351261,13.016545,12.177705,8.900840,8.274394,8.791751,11.771090,4.989265,1.428102,0.367770,0.000000,0.387604,0.000000,0.000000,0.122314,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.155000,4612455.550000,4175,4655,113.271912,181.933884,169.595047,162.739670,149.938019,137.545471,138.603317,136.735550,136.793411,140.776871,138.917374,151.876038,168.578506,185.611572,200.338837,213.520660,213.859497,200.983475,175.801651,154.355377,144.363632,141.537186,136.545456,106.297531,89.545464,100.628105,109.859512,78.247948,36.677708,15.365308,12.413242,9.569437,9.771917,11.179354,10.309105,5.657861,0.557026,0.373555,0.775208,0.142149,0.009918,0.026446,0.147934,0.309918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.955000,4612455.550000,4189,4655,133.968597,190.142151,174.869431,168.423157,151.828110,138.431412,138.671082,137.844635,138.439682,142.679352,141.646286,152.034714,169.274384,187.340500,200.885956,213.282639,214.489243,199.381821,174.720673,153.844635,142.976868,139.753723,135.745468,106.191742,87.761993,99.985130,109.679352,78.555382,37.844650,16.319851,12.340514,11.609106,10.516546,11.576050,11.385964,5.737200,1.023970,0.547109,0.193389,0.011570,0.002479,0.000000,0.157852,0.251240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.955000,4612455.550000,4219,4655,129.052917,194.375229,178.358704,168.094238,153.515701,138.821487,139.895874,137.292572,138.747116,144.342148,141.647934,153.788437,170.102478,188.375214,201.532257,214.631424,214.276047,200.160355,175.028122,153.780167,143.317352,141.482651,136.127289,105.342163,88.433075,100.887611,108.218193,77.490929,38.201668,16.423157,12.375225,12.334726,8.966958,11.685140,11.958692,6.549597,1.176036,0.419836,0.596695,0.439670,0.414876,0.277686,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.955000,4612455.550000,4239,4655,152.847107,197.260330,178.392563,171.061981,153.657028,139.929764,141.235550,139.491745,139.739685,145.871918,142.847122,155.293396,171.483475,189.037186,203.086777,216.524796,217.599167,201.103302,177.764465,156.731400,145.814072,141.929764,136.954575,107.590927,90.004150,101.971092,110.830597,77.946297,39.227291,16.943821,12.450432,11.281006,9.912412,10.704149,10.317370,4.919017,0.788431,0.416530,0.104959,0.149587,0.063637,0.009918,0.016529,0.178513,0.000000,1.345455,0.000000,0.000000,0.000000,0.000000 -601592.555000,4612455.550000,4252,4655,167.548782,198.143784,182.672745,174.143814,156.094238,142.358704,143.358704,142.590103,143.276047,149.763657,145.358704,156.962006,173.366959,191.342148,206.242966,218.342133,218.631393,203.631409,179.342163,158.730591,147.416550,146.094238,139.309113,108.424797,91.730591,105.234711,111.978516,78.457870,40.433079,17.395060,12.664481,12.495057,9.574394,13.042166,12.109935,6.533893,1.049589,0.434712,0.133885,0.096695,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,2.317356,0.000000,0.000000,4.747108 -601596.355000,4612455.550000,4271,4655,152.354568,198.668610,179.453735,172.990921,155.693405,142.313248,141.098373,139.817368,141.304977,147.602493,144.338043,155.916550,171.271927,189.652084,203.627289,217.528107,217.040497,202.106628,178.040512,156.693405,146.701675,142.528122,138.354568,107.478531,90.949608,103.652084,109.536385,76.098358,37.668613,14.770266,12.577705,12.776875,10.333901,12.058695,9.911585,5.683480,0.244629,0.609919,0.195042,0.013223,0.000827,0.000000,0.000000,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.355000,4612455.550000,4291,4655,162.919037,205.282669,184.613251,174.952087,156.365311,144.158707,144.249619,142.828125,143.307465,152.018204,146.762009,157.695892,173.919037,191.357056,206.547134,219.555405,219.530609,203.067795,180.249619,159.340515,147.795074,144.332260,140.563660,109.084305,92.208275,107.216537,112.224800,80.034729,39.332249,17.402498,12.778532,13.647123,10.104149,11.617373,11.619023,7.144639,0.860333,0.522315,0.473555,0.028100,0.000000,0.000000,0.095868,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.955000,4612455.550000,4319,4655,122.141342,171.876877,171.215714,160.182663,147.430588,138.934723,138.761169,137.364471,137.504974,140.000839,141.695053,153.075226,170.843811,186.678528,200.166122,212.100006,213.736374,203.389267,177.232239,155.347946,144.620667,141.058685,136.463654,107.480186,88.463646,103.678535,110.141342,79.976044,39.314892,15.499192,12.405804,7.964477,8.442993,9.552909,11.223156,3.299179,0.327274,0.515704,0.244629,0.048761,0.171075,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.155000,4612455.550000,4335,4655,111.944641,159.961151,170.250397,160.167755,146.151245,139.308273,137.886780,135.473557,136.746292,138.936371,140.977692,151.167755,169.366104,185.242142,198.572739,210.159515,211.952896,201.630585,175.052063,152.845444,142.812408,140.994217,134.118195,105.994232,88.919846,102.457039,108.878525,79.804153,36.539688,14.581836,12.192581,8.419022,8.612414,10.455389,11.000842,4.970257,1.342152,0.038843,0.146281,0.124794,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.755000,4612455.550000,4353,4655,116.142990,166.382629,169.093384,160.333054,146.779343,138.713226,137.043808,137.333069,137.275208,140.010757,141.853729,152.671906,170.547928,185.919846,200.085129,211.134720,212.580994,201.192566,176.184280,155.448746,144.027283,140.514877,135.300018,107.159515,89.300018,102.795883,109.845467,79.886795,37.242172,15.690102,12.300019,9.136376,9.091752,9.554563,9.297535,4.256207,0.469423,0.296695,0.052893,0.003306,0.000000,0.302480,0.000000,0.130579,0.000000,0.000000,2.214876,0.000000,0.000000,0.000000 -601616.955000,4612455.550000,4374,4655,114.308273,165.704987,173.828949,161.936386,149.531433,140.225647,139.043823,138.928116,139.275223,141.655396,144.771103,156.035553,173.200851,188.399200,201.746307,213.308258,215.176025,203.151260,178.704987,156.316559,145.514893,142.895065,137.936386,109.919838,91.572731,104.754555,111.581001,80.919846,40.671921,16.980183,12.539689,9.519848,8.596712,9.831421,11.260345,7.619018,1.119837,0.238017,0.822315,0.005785,0.002480,0.000000,0.000000,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.755000,4612455.550000,4393,4655,117.756218,167.177704,171.342987,164.103317,147.838852,140.500015,139.838852,138.723160,139.185974,142.243820,144.723160,155.582657,172.004150,188.913239,203.128113,214.929764,216.566132,204.219025,180.367783,157.210754,146.814072,143.384308,139.681839,109.566132,92.516548,105.756218,112.268608,81.516548,40.012417,17.047951,12.698366,8.200012,10.214893,10.989272,12.073570,5.218190,0.285951,0.110744,0.388431,0.071075,0.080166,0.000000,0.003306,0.061984,0.000000,1.255372,0.000000,0.000000,1.139670,0.000000 -601624.155000,4612455.550000,4410,4655,104.823982,163.295074,171.311600,159.947952,147.931427,138.881851,137.790939,136.559525,137.551270,140.080185,141.493408,154.129776,171.352921,186.716553,201.443817,211.501678,215.104980,202.642151,177.642181,155.063660,144.567795,141.625641,136.609116,107.633904,89.435555,102.906631,109.278534,79.179359,38.625637,13.857041,12.419028,7.600011,8.757041,8.938858,9.585138,3.461991,0.233058,0.190083,0.307439,0.000000,0.000000,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.555000,4612455.550000,4437,4655,107.813232,164.358688,169.986801,161.788437,148.962006,141.581818,138.656219,138.631424,140.201660,141.474380,145.127274,155.234726,172.722321,188.697525,202.333893,214.019852,216.284317,204.763657,180.375214,157.251266,146.887604,143.705795,138.581818,109.862831,91.763649,104.854568,113.019852,80.738861,40.978535,16.698366,12.598368,8.404144,7.964480,11.552910,11.079355,3.947115,1.969424,0.480993,0.512398,0.057852,0.000000,0.000000,0.018183,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.555000,4612455.550000,4462,4655,119.034729,165.125641,168.803329,162.472748,148.026474,141.249619,138.629776,137.646301,139.381851,141.034729,143.687622,154.762009,171.034729,187.373581,202.613235,213.001663,215.687607,202.894226,179.357056,156.695892,146.481018,143.472748,137.563660,109.249603,90.852913,104.274399,112.034729,82.233078,39.464485,15.255391,12.505804,6.052078,10.895060,9.281836,8.364477,4.409926,0.055372,0.000000,0.145455,0.128926,0.076860,0.000000,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.555000,4612455.550000,4477,4655,105.043808,162.870255,170.622314,163.250427,149.564468,139.283478,138.738022,138.704971,137.969421,140.002487,143.209091,154.316528,170.795868,186.465302,200.994217,211.804153,212.217377,203.465302,177.903305,156.101654,145.076859,140.490082,137.027283,108.316544,91.506615,104.192574,111.151245,79.729767,38.771091,15.734728,12.457044,6.741334,9.105801,9.519852,9.214064,5.670257,1.723969,0.062810,0.208265,0.416529,0.005786,0.000000,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.555000,4612455.550000,4497,4655,118.922333,166.261169,173.757034,159.723984,150.666122,141.319016,139.880981,138.335556,139.294235,141.525635,143.533890,154.550430,171.707458,187.186783,200.732239,212.806610,213.889252,203.277695,178.575226,156.533890,145.905792,143.352081,137.599991,108.310760,91.517380,104.013245,112.624802,82.657875,40.236385,17.424810,12.509109,8.385963,9.805804,10.125637,10.119022,5.904968,0.258678,0.552067,0.582646,0.140496,0.219009,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.555000,4612455.550000,4522,4655,111.706619,166.475235,168.921524,161.028961,150.285141,142.301666,140.714890,140.731415,140.574402,143.334732,145.004150,155.681839,171.665298,187.764481,201.830597,212.838852,215.409103,204.285141,178.838852,156.400848,145.814072,141.582657,136.318192,108.078522,90.103317,103.714882,110.566124,81.681824,39.830597,16.460350,12.392582,8.014063,11.033075,9.967786,11.346296,5.064472,0.956201,0.045455,0.066942,0.007438,0.001653,0.246281,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.755000,4612455.550000,4553,4655,112.563644,162.555359,171.910751,161.166946,148.621490,139.034714,137.761993,136.753723,137.770264,140.224808,141.646286,152.282639,169.530594,184.836380,199.547119,209.340500,212.084305,201.406616,175.952072,153.340485,143.547119,138.943817,133.927277,106.224800,88.282661,102.191742,108.307449,78.927292,37.943821,14.510760,12.175224,6.300837,8.461174,9.175222,7.748774,4.334719,0.124794,0.185951,0.061157,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.755000,4612455.550000,4573,4655,116.534721,174.625626,173.071915,164.220673,150.005798,140.410751,139.377701,138.733063,138.658691,140.964478,142.989273,153.972733,170.485138,186.245468,200.385956,210.584305,212.063644,201.757858,176.452072,153.981003,142.931412,139.138031,134.609100,105.633904,88.427292,101.914894,109.600845,80.881836,39.658699,16.409935,12.237209,6.470258,9.127290,10.676049,9.924808,3.589264,0.609919,0.211571,0.004132,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.111570,0.000000,0.000000,0.000000 -601660.755000,4612455.550000,4593,4655,106.924805,158.498367,167.308304,157.184326,144.432251,135.876877,135.785965,136.819016,137.653732,141.085144,143.291763,152.564484,171.762833,187.928101,201.085159,211.944641,212.233902,202.754562,176.209106,154.845474,144.076904,139.828964,135.027298,107.347946,88.653732,101.885139,109.126457,79.490097,37.795059,15.760346,12.275226,5.326457,9.066132,9.420676,11.011583,5.229762,3.176037,1.952069,1.742151,0.628100,1.062811,0.000000,0.985124,0.229753,0.000000,0.000000,1.111570,0.000000,0.000000,0.000000 -601664.555000,4612455.550000,4612,4655,110.914062,160.980164,165.523148,159.500824,147.819839,138.439682,135.076050,133.957870,136.313248,139.924820,142.346298,153.792572,169.117371,185.753723,199.654556,209.274384,209.778519,199.357040,173.737198,152.852905,141.811584,137.059509,133.381821,104.423157,84.753746,99.712418,107.650429,79.733086,39.880184,17.562000,12.125639,8.286790,10.558696,13.003323,13.498363,8.291746,2.109093,1.985125,2.516530,2.318183,2.046282,1.442149,1.038844,0.527273,0.000000,0.000000,0.000000,0.000000,1.013223,0.000000 -601667.555000,4612455.550000,4627,4655,123.459518,164.150421,170.299179,162.315720,149.257858,140.538849,139.208298,137.381851,137.076065,140.919022,142.257858,152.183487,168.786789,184.704132,199.307434,209.390076,209.960327,200.175201,174.018188,152.257858,140.596710,137.249619,132.745468,104.555389,88.018196,100.042992,107.803322,79.646301,38.505802,14.960348,12.067788,5.307447,7.728941,8.410759,9.969436,3.468602,1.111572,0.295868,0.316530,0.222315,0.089256,0.390083,0.029752,0.373554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.955000,4612455.550000,4649,4655,123.083481,170.083481,170.604141,163.331421,150.504974,140.909927,138.637207,136.628937,136.620667,140.058685,142.298355,153.604141,168.587616,185.083466,198.893387,209.050415,210.273544,199.728088,174.554565,151.728119,141.133072,136.934723,131.736374,104.257034,85.893402,101.149597,109.744644,79.157875,37.744648,14.288448,11.976053,8.362822,10.135553,8.585966,10.055387,4.041331,1.338846,0.658679,0.057852,0.022315,0.011570,0.000000,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.155000,4612455.550000,4670,4655,130.310760,175.071091,174.004974,163.971909,149.376877,139.765305,138.881012,137.128937,137.657867,142.236374,142.542160,152.922333,168.657867,185.393402,197.748779,209.368607,210.905792,199.996704,175.773560,152.542160,141.393402,137.252899,133.054565,104.409927,87.368607,99.707451,109.261169,79.162003,38.905807,15.578530,12.095887,7.169433,8.648777,8.342165,9.209104,3.204964,0.476034,0.052066,0.167769,0.018182,0.003306,0.000000,0.023141,0.095868,1.349587,1.323141,0.000000,0.000000,0.000000,0.000000 -601681.355000,4612455.550000,4696,4655,128.841339,174.950409,172.702484,165.198349,151.669449,140.983505,140.123993,139.884323,140.074417,143.214905,144.900864,154.826477,170.132233,187.950409,201.462814,212.033051,211.347107,201.512390,176.561981,153.363663,142.090942,138.033096,133.636383,104.685974,86.644653,98.743828,109.752090,80.900848,39.487621,15.680183,12.148779,4.346290,8.427288,9.152906,8.921502,4.477694,0.645456,0.423142,0.253719,0.011571,0.273555,0.177686,0.000000,0.314877,0.000000,0.000000,0.000000,1.133884,0.000000,0.000000 -601684.755000,4612455.550000,4713,4655,119.373566,174.340500,174.547119,166.431412,151.497528,140.580170,139.183487,136.604965,136.960342,141.447937,142.009933,151.861160,168.464478,184.481003,197.001663,207.910751,208.927277,198.770264,173.770264,151.266129,138.869431,137.522324,132.109100,105.059525,87.381836,99.456215,109.563652,79.547127,39.357044,16.423159,12.009936,6.195879,9.442165,9.828942,11.094229,3.918190,0.976862,0.162810,0.073554,0.000000,0.100827,0.000000,0.253720,0.088430,2.680992,0.000000,0.000000,0.000000,0.000000,0.000000 -601687.755000,4612455.550000,4728,4655,120.941345,177.577682,173.255371,165.230576,150.503311,141.660339,138.486786,137.833893,139.040497,144.197525,144.833893,156.131409,171.098343,187.734726,201.486801,211.577682,212.329758,201.106628,176.131409,153.271912,141.900009,138.222321,132.990906,105.495056,87.164474,99.354553,108.883492,81.032249,38.635555,15.695885,12.090101,6.383482,8.535553,10.250429,8.647120,2.330584,1.257854,0.161158,0.335538,0.088430,0.180992,0.000000,0.046282,0.126447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.355000,4612455.550000,4741,4655,120.378532,173.502502,171.056213,163.064484,150.023163,141.031433,139.717377,139.709106,139.874405,142.899200,143.056213,152.279358,169.295883,186.072754,198.601669,208.841339,210.469437,198.411591,173.428116,152.824814,141.742172,139.023163,132.163666,104.047958,86.709114,98.395058,108.337212,79.560349,38.510761,16.252085,12.014895,6.555384,7.467784,9.895057,7.800015,3.382651,0.873555,0.361158,0.138017,0.110745,0.062811,0.000000,0.096695,0.529753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.155000,4612455.550000,4760,4655,125.384308,168.744644,165.141342,164.256210,151.248779,139.017365,137.455383,136.381012,135.785965,140.397537,139.934723,151.232239,166.819016,183.686783,195.893402,207.248779,209.529770,198.893402,175.381012,152.323151,141.876877,138.876877,133.463654,105.612419,88.372749,98.801666,108.942169,82.115707,39.124809,16.014894,12.133077,6.514060,9.750428,9.237206,9.228937,5.739678,1.934714,1.047936,1.121489,0.666118,0.499175,0.316529,0.390910,0.171901,0.000000,1.147934,0.000000,0.000000,0.000000,0.000000 -601701.355000,4612455.550000,4796,4655,124.543823,174.726456,173.164490,165.809113,151.065308,138.594238,136.833908,136.048782,135.081833,138.709930,138.619034,149.131424,165.809113,183.106628,196.164444,206.015686,206.495026,195.189240,170.916550,148.602493,136.891754,134.238861,129.627289,100.784317,83.726463,97.205803,105.379356,78.296715,37.057045,15.895885,11.784317,6.158689,7.856214,6.581005,9.819022,3.392570,0.618184,0.182646,0.101653,0.006612,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.955000,4612455.550000,4809,4655,148.105789,191.618195,175.750427,167.039673,152.750427,138.824799,138.171906,137.502487,136.593399,142.320663,140.742157,151.138855,168.262817,184.965302,198.014877,207.403305,209.750427,196.808273,172.568604,151.519012,138.609924,135.295883,129.890915,102.320679,84.370262,97.866127,107.725632,79.271088,37.171925,14.263652,11.808283,4.783481,7.807451,7.892576,6.775219,4.015710,1.143804,0.285125,0.171901,0.000000,0.000000,0.041323,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.155000,4612455.550000,4835,4655,129.194229,174.177704,174.954559,162.219025,147.706635,135.979355,136.119858,134.376038,133.376038,135.334717,135.995880,147.219025,164.491745,179.880188,191.665298,202.954559,203.128113,190.714890,165.797531,144.450424,134.756210,131.946274,125.772736,97.433891,82.161163,94.037201,103.533073,71.351257,33.805805,13.772745,11.433904,7.388440,8.081833,8.077701,8.276047,3.280173,0.509919,0.062810,0.107438,0.004132,0.000000,0.093389,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.155000,4612455.550000,4850,4655,132.938019,180.871902,173.929749,163.318176,148.574387,136.929749,137.706604,134.838852,134.632248,136.607452,137.566116,148.714874,167.028931,182.326447,193.946304,204.078522,204.979355,192.351257,168.326447,146.995865,135.466965,132.698364,126.954559,99.475220,82.161171,94.095055,104.781006,75.367783,37.673569,15.366961,11.541341,9.700015,8.879354,8.460345,9.696709,3.640503,0.453720,0.228100,0.211571,0.256199,0.000000,0.000000,0.000000,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.755000,4612455.550000,4863,4655,128.500839,177.302475,175.269424,163.211563,147.971893,136.856216,137.831436,134.781845,134.847946,135.905807,136.856216,148.583481,165.897522,181.054535,192.352066,203.327271,203.781815,191.170242,167.219833,145.765305,135.203323,132.319016,125.781830,98.401665,82.112411,94.980179,103.178528,76.947121,36.748787,15.346299,11.434729,8.179353,9.081834,8.392576,8.983485,4.214885,0.933060,0.296695,0.048761,0.000000,0.000000,0.012397,0.020662,0.242149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.955000,4612455.550000,4884,4655,124.702492,179.033081,176.851257,165.281006,150.355392,137.925659,138.082657,135.958694,135.206619,136.371918,137.628128,148.322327,165.925629,180.727295,193.991745,203.884308,204.305801,190.603317,166.504150,145.900848,134.909103,132.330582,126.727280,98.603317,82.214882,94.561989,104.991745,75.396713,35.694229,15.268613,11.520680,10.885139,9.984312,10.219850,9.266957,4.285959,0.926449,0.106612,0.114876,0.000000,0.069422,0.000000,0.000000,0.587604,0.000000,0.000000,0.000000,0.000000,1.323141,0.000000 -601729.355000,4612455.550000,4936,4655,122.803322,177.985138,175.414886,163.481003,150.414886,137.778519,138.125626,135.621490,133.456207,135.910751,135.844635,147.737198,163.985138,180.621490,192.191727,202.960342,203.001663,188.489243,165.976868,145.290924,133.646286,130.704147,124.472748,96.505806,80.778534,93.604973,102.150429,76.456215,36.059521,14.562827,11.315722,9.662000,7.867782,7.847121,7.932246,3.518189,0.353720,0.350414,0.075207,0.000000,0.000000,0.000000,0.185124,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.355000,4612455.550000,4961,4655,114.712425,184.836395,174.604980,163.216553,147.580170,135.952087,136.629776,134.133911,133.175232,137.059525,134.026474,146.332260,163.026474,180.547134,191.191757,201.985153,201.067795,188.406631,164.059525,143.249603,132.233078,129.191757,123.563660,95.042984,78.423164,92.357033,101.472740,72.530602,33.927292,14.081010,11.233077,9.404973,8.164476,7.988444,7.546296,3.726454,1.024795,0.244629,0.121488,0.000000,0.000000,0.000000,0.069422,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612455.550000,4980,4655,121.164490,180.577698,173.999191,163.536377,147.825638,136.949600,136.767792,134.139679,134.065308,136.437210,135.329758,147.156219,164.263657,180.395889,191.280182,202.974380,201.759506,188.362823,165.114899,144.131424,132.569427,129.900009,124.627281,95.751259,80.164474,93.172745,101.346291,73.495064,33.784317,14.423985,11.329771,10.431420,8.819023,9.332245,8.483485,3.470257,0.682647,0.473555,0.090083,0.000000,0.047108,0.000000,0.069422,0.155372,0.000000,2.854546,0.000000,1.107438,0.000000,0.000000 -601741.755000,4612455.550000,4998,4655,124.510765,185.097534,175.147110,165.684311,150.328934,138.337204,137.328934,135.543808,135.105789,138.576859,136.783478,148.386780,164.940506,180.725632,194.130585,203.659515,202.899185,189.403305,165.576859,144.841324,133.874390,131.089264,125.163643,96.535553,80.576874,92.998360,103.725639,75.733910,36.328949,15.121506,11.378531,10.669436,8.002492,9.462824,9.520677,3.923149,1.061987,0.671903,0.016529,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.955000,4612455.550000,5019,4655,142.604980,195.687622,178.902512,168.009949,150.233078,137.472748,136.522339,135.150436,134.704147,138.852921,135.166962,146.654572,163.489288,180.695892,192.547134,202.861176,202.175232,187.133911,163.505814,143.588455,132.505798,129.712418,124.654564,95.439690,79.439682,93.571907,103.175224,72.514069,33.795063,13.811588,11.332252,10.247121,7.927285,8.054558,7.851253,3.916537,0.900829,0.178513,0.014050,0.000000,0.000000,0.000000,0.070248,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.555000,4612455.550000,5052,4655,144.870255,194.837204,179.895065,170.787628,151.795883,140.407455,139.498367,137.581009,136.506638,142.407455,137.713242,149.390930,166.035553,182.862000,195.779343,206.688431,205.275208,189.853729,166.704987,146.341339,135.440521,132.225647,127.481834,97.027298,81.176056,96.663658,104.572746,75.126472,36.390926,15.888447,11.589274,11.448776,10.938859,9.029766,9.825634,5.023977,0.792564,0.436366,0.009091,0.143802,0.000000,0.000000,0.001653,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.955000,4612455.550000,5099,4655,152.385956,205.898361,181.989273,173.171082,153.270264,140.799179,139.278519,137.187607,137.295044,143.443817,137.625626,148.923157,165.228943,183.138031,196.385956,207.080170,204.881821,188.617371,166.708267,146.551254,134.625626,131.245468,126.790916,96.906624,81.171082,95.600838,104.972740,73.443810,34.542995,15.884315,11.526465,11.359519,8.690923,9.208277,10.314891,3.737199,0.812399,0.178513,0.178513,0.071901,0.000000,0.022314,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601775.355000,4612455.550000,5166,4655,109.584305,166.220657,169.154541,159.113220,145.567764,136.460342,134.245468,131.584305,131.947937,133.113235,134.592575,145.658676,163.121475,179.509918,191.865280,202.113220,201.774368,191.666931,165.567764,144.286774,132.757858,129.700012,123.881828,94.956215,77.600845,93.303322,104.311584,76.138031,34.617378,14.585143,11.262002,6.782655,8.363651,7.773567,9.114064,2.412403,0.556200,0.000000,0.068595,0.000827,0.051240,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601796.955000,4612455.550000,5274,4655,120.604973,166.307434,168.266129,159.596710,144.795074,136.952057,132.646301,130.481003,131.299194,132.753738,133.745468,145.067795,163.067780,179.224792,191.340485,201.952057,201.679337,189.299164,164.993393,143.885956,131.803329,128.406631,124.381836,93.935555,77.811584,93.414894,103.943817,76.158699,35.034733,12.547122,11.307457,7.092574,7.631420,8.811584,7.528938,2.776867,0.455373,0.552067,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.555000,4612455.550000,5412,4655,116.278519,160.195877,171.361160,161.600830,148.807449,139.022324,135.005798,135.154556,134.063644,136.146286,137.047119,147.823975,166.402496,182.146286,195.030594,206.270264,205.766129,194.204147,168.493393,147.038849,135.609100,132.146286,127.609100,99.261993,80.162827,95.774391,106.352905,78.658699,37.642170,16.489273,11.600845,6.913235,9.604148,10.229768,8.851253,3.944636,0.994217,0.051240,0.000000,0.000000,0.000000,0.000000,0.059504,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.755000,4612455.550000,5508,4655,123.397537,173.455383,170.546295,163.364471,149.273560,137.909927,137.174393,134.579346,134.265305,136.984314,138.347946,148.835556,166.562820,183.323151,195.612411,205.959518,205.976044,195.281830,170.868607,149.100006,136.934723,133.422333,127.918198,99.794228,81.513237,95.579353,107.612411,80.620674,38.554565,16.119852,11.628944,6.695051,8.657041,7.102494,9.103318,3.478522,0.657853,0.100827,0.300827,0.000000,0.000000,0.000000,0.021488,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601862.155000,4612455.550000,5600,4655,128.363647,181.809921,175.603302,165.355377,150.611588,138.834732,136.685974,136.685974,134.421509,138.628113,137.884308,149.603317,167.024796,184.512390,197.512390,208.429749,208.123962,198.495865,173.900833,151.173569,140.388443,135.867783,129.636383,100.495880,82.074394,98.561996,109.752083,83.314064,38.719028,15.104978,11.785143,5.669432,8.444644,7.133899,7.245467,2.690914,0.615704,0.067769,0.000000,0.017356,0.034711,0.000000,0.026447,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.955000,4612455.550000,5644,4655,114.661179,185.206635,177.950424,168.396713,152.710754,142.545471,139.041336,138.090927,136.528946,141.247955,140.570267,152.528946,170.123978,186.876053,200.661179,210.743820,210.719025,200.380188,175.008286,154.355392,140.983490,137.743820,132.000015,102.115730,83.760353,99.388451,111.520683,83.677704,38.710766,16.371090,12.000019,6.644639,7.681007,8.558695,9.106626,3.937197,0.946283,0.117356,0.144629,0.009918,0.000000,0.000000,0.028099,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.955000,4612455.550000,5664,4655,123.195877,175.771103,179.266968,165.746307,149.473572,139.746307,139.944656,136.589279,136.919861,138.853745,139.357880,151.713242,170.233902,187.415726,201.035553,211.762833,214.721512,201.944656,176.597549,155.448776,143.581009,141.101669,136.300003,105.812408,88.490097,102.547958,112.101669,82.465309,41.027290,16.561174,12.390927,10.230593,11.214066,11.895885,11.615717,5.414885,1.100003,0.400001,0.187604,0.061157,0.000000,0.000000,0.013224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.155000,4612455.550000,5680,4655,113.458694,183.351257,179.466965,167.946304,151.781006,139.995880,141.152908,137.442169,136.590927,138.904968,140.210754,151.987625,170.838852,188.491730,201.342972,213.061996,215.219025,202.202499,176.938034,156.020676,143.731415,140.954559,135.590927,106.566124,88.673569,103.731415,114.954552,81.491753,40.913242,17.038033,12.326466,9.923982,10.816545,12.154561,14.331421,5.922325,1.242152,0.472728,0.155372,0.009091,0.000000,0.310744,0.236364,0.476860,0.000000,0.000000,0.000000,0.000000,1.312397,0.000000 -601883.155000,4612455.550000,5705,4655,117.738853,181.961990,181.292572,166.317368,150.383484,139.119034,138.168610,135.722321,135.879349,138.292587,138.209930,150.895889,169.747131,186.391739,199.267776,212.730560,212.441315,200.358688,176.019836,153.804977,141.945480,140.251266,135.309097,104.135551,86.523987,102.185135,114.011581,82.879356,42.523987,18.300844,12.300847,12.427288,10.289271,10.873570,12.836380,5.876868,1.070250,0.315703,0.434712,0.000000,0.170248,0.000000,0.074380,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.755000,4612455.550000,5723,4655,121.920677,181.813232,180.028107,166.821487,149.400009,137.978516,138.705795,134.466125,134.424805,136.879349,137.218185,149.755371,167.681000,184.317352,197.829758,209.937195,211.119019,197.408264,174.515701,152.490906,141.590088,138.185120,133.127289,103.168610,86.011589,99.829765,110.400002,80.292580,38.614895,15.376050,12.102498,11.438031,8.061998,9.447948,11.428941,3.676868,0.596696,0.341323,0.367769,0.006612,0.000000,0.000000,0.004132,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.355000,4612455.550000,5741,4655,120.695061,185.504974,182.562820,168.926453,150.802490,137.670258,139.703323,135.331421,135.942993,138.075226,137.901672,150.463654,169.000839,186.364471,199.058685,210.612411,213.438858,199.331421,174.438858,152.323151,140.835556,139.025635,134.100021,104.827293,85.695061,101.100021,112.802498,80.670265,42.562832,16.749605,12.190928,10.759521,8.942166,9.448776,12.692578,6.714886,0.934713,0.061984,0.119835,0.075207,0.005785,0.000000,0.047935,0.414051,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.755000,4612455.550000,5758,4655,112.155380,184.824799,178.915710,168.692566,150.279343,137.155380,138.510757,137.163635,135.998367,138.328934,138.568604,151.064468,168.692566,186.386780,198.957031,211.940506,212.320663,198.378525,174.626450,152.510757,141.089264,137.816528,132.709091,102.552071,85.147125,99.171913,113.320671,81.543816,40.519032,16.262829,12.064482,9.797537,8.577703,10.347952,9.881834,4.743809,1.147936,0.340497,0.254546,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.155000,4612455.550000,5785,4655,111.260345,182.428940,175.809113,164.057037,146.635559,134.400833,136.359528,133.293396,133.809097,136.147949,135.032242,146.654572,165.720688,182.241348,195.807465,208.981018,207.638046,194.381851,172.919037,150.023987,138.147949,136.503326,131.009109,101.868607,86.066956,100.942986,112.119026,81.042160,40.802502,15.647952,11.909936,11.033900,10.704149,11.799191,11.668611,4.292570,1.250415,0.910746,0.689258,0.285125,1.080993,0.398347,0.000000,0.140497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.155000,4612455.550000,5800,4655,111.138031,185.923172,180.790939,167.691742,151.162827,139.245468,137.964478,136.096710,136.716537,138.997528,138.774384,151.385956,170.121490,187.402512,200.113251,212.642181,213.625641,198.782669,175.782654,153.138031,142.311569,138.823959,134.609116,104.121498,86.923157,100.567787,113.790916,80.295059,40.633911,17.374397,12.237209,12.417371,9.714066,11.109934,11.629767,3.790917,1.109094,0.305786,0.895869,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.955000,4612455.550000,5814,4655,121.203308,185.748795,179.232239,171.042160,162.131424,150.722336,148.327286,145.895889,145.313248,149.404144,147.197540,158.032257,171.957870,188.181015,200.412415,209.981018,211.138031,197.262009,175.795868,155.663635,146.572739,143.754547,139.845459,110.535553,93.161163,106.524803,116.268600,83.962814,43.119850,18.301672,12.713243,10.952078,10.713238,12.745470,13.276874,9.262819,4.147111,3.938020,2.879341,3.060333,2.192564,0.417356,0.103306,0.371901,0.000000,1.617355,0.000000,0.000000,1.912397,0.000000 -601907.555000,4612455.550000,5827,4655,107.799194,169.576050,175.683487,163.419037,147.245483,135.708298,134.336380,132.708282,131.476883,135.452087,135.038864,145.253738,159.088455,176.410751,189.204163,201.295074,202.823990,191.542999,168.220673,146.691757,137.179367,133.253738,129.518204,103.113243,86.311577,100.063652,105.551254,79.138031,37.369438,14.362001,11.774400,5.233068,9.057040,7.630593,9.587616,2.927279,0.683474,0.155373,0.146281,0.000000,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601911.755000,4612455.550000,5848,4655,114.493401,170.716553,170.179367,163.501678,146.832260,134.419022,134.187622,131.881821,131.336380,134.997528,135.807449,144.873581,159.823990,176.658707,188.666962,200.526474,201.534729,190.947952,168.022339,147.303329,136.757874,134.088440,129.245468,103.005798,85.939682,98.914886,107.394226,77.790916,38.187622,14.414894,11.749606,4.399183,7.545468,7.438857,7.544641,3.378519,0.679341,0.244629,0.255372,0.217356,0.000000,0.092562,0.172727,0.333884,0.000000,0.000000,0.000000,0.000000,0.000000,3.429752 -601918.755000,4612455.550000,5883,4655,116.614899,169.590088,170.433060,164.226456,148.623138,137.664490,135.722336,133.722321,133.325638,136.755386,136.862823,146.366959,161.656204,177.920670,191.160339,202.011566,203.441330,192.887604,170.565292,148.771927,138.119034,135.267776,130.581833,104.069443,88.259521,99.962006,108.838028,79.408287,38.433079,15.632250,11.871094,5.738027,8.871915,8.384311,9.089269,4.348768,0.849590,0.050414,0.122314,0.418183,0.000000,0.163637,0.328926,0.494215,2.425620,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.755000,4612455.550000,5938,4655,111.963646,169.963654,166.666122,159.723984,147.467789,136.054581,134.938858,132.186783,131.128937,133.112411,134.930588,145.393402,159.641342,175.550430,187.550430,200.071091,201.434723,190.145462,165.930588,146.839676,137.343811,132.748779,127.872742,101.938858,86.542160,99.219849,106.922325,77.806633,37.335556,13.439685,11.624812,5.780174,7.505798,8.687617,8.489269,3.467775,1.124797,0.300002,0.193389,0.298348,0.000000,0.003306,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601937.755000,4612455.550000,5978,4655,101.572739,161.333084,168.845459,161.721497,146.614059,137.886780,134.250427,132.291748,132.423981,134.738022,135.886780,144.994232,161.341324,175.886795,188.589294,200.556244,201.895065,190.969467,167.109924,146.870255,136.680176,133.217361,128.845459,102.481834,86.704971,100.919846,107.622322,79.837204,39.341339,17.225636,11.713243,7.082658,9.620677,10.901670,10.206626,4.276039,0.721490,0.261985,0.000000,0.465290,0.020661,0.165290,0.485124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.955000,4612455.550000,5999,4655,109.007454,159.908279,166.197540,160.470261,144.594238,135.048782,133.263657,131.098373,130.065308,132.222336,133.676880,143.858704,158.833893,174.255386,186.701675,198.073563,200.222321,189.569427,165.957870,145.090103,134.949600,131.751266,127.718201,100.866959,84.610764,98.255394,106.362831,79.189278,36.668613,14.902497,11.610764,6.985135,8.767782,6.999189,7.244640,3.857860,0.850416,0.096696,0.242976,0.000000,0.000000,0.082645,0.350414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.355000,4612455.550000,6026,4655,107.662819,160.935547,167.431412,157.960342,144.671082,137.142151,133.034714,131.588440,130.481003,132.679352,134.745468,144.133896,159.894226,175.158691,188.464478,198.927277,201.216537,189.828125,166.381821,146.332245,136.431412,131.927277,128.563644,102.423149,86.728935,99.720673,106.604965,78.935555,38.662830,15.860348,11.687622,7.127285,9.371091,9.508280,9.137202,3.980173,0.376862,0.058679,0.431406,0.000000,0.000000,0.000000,0.442149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.555000,4612455.550000,6042,4655,79.737206,154.224808,167.489273,161.985138,146.927277,136.786789,134.530594,133.051254,132.357040,133.133896,135.423172,145.059509,160.654556,176.076050,189.076050,197.836380,200.919022,189.018188,167.423157,146.423157,136.100845,132.348785,128.200012,101.109108,84.233078,99.200020,107.695885,80.191750,36.795063,15.234728,11.654564,6.572738,9.577702,7.407453,9.180179,3.908271,0.047935,0.120662,0.000000,0.163637,0.000000,0.568596,0.804133,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.555000,4612455.550000,6062,4655,90.962830,156.194244,165.053757,157.632263,143.285156,134.318192,131.136368,129.342987,129.334717,131.103317,131.814056,142.987625,158.590942,173.814087,186.053757,195.359543,198.582672,187.500031,164.161194,143.549622,133.566116,131.309921,126.136375,99.161163,82.657043,97.376053,105.334724,76.409103,35.913239,14.365307,11.466962,6.015715,7.681832,8.647949,6.766128,3.519842,0.666944,0.109092,0.347935,0.042976,0.490910,0.087603,0.436364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601961.155000,4612455.550000,6095,4655,99.540504,155.682663,169.583481,157.971909,145.021500,135.831421,133.765305,131.376877,130.872742,132.765305,134.128937,144.451248,160.525635,175.459518,188.162003,198.798355,200.228119,189.947113,166.509109,145.575226,135.897537,132.600006,127.872742,101.814896,84.938866,98.434731,108.385139,79.087624,37.269444,16.411589,11.624812,6.709929,8.824809,9.038032,8.531420,4.056207,1.118185,0.289258,0.130579,0.284298,0.000000,0.074381,0.141322,0.150413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.155000,4612455.550000,6140,4655,79.881828,158.981003,167.609100,157.088440,145.584305,137.187607,133.228943,131.278519,129.675201,131.559509,132.080170,143.724808,159.848770,174.642151,187.055374,198.410751,198.427277,187.129761,165.435547,143.757858,134.427277,130.377701,127.154556,99.493401,84.212410,97.154556,105.774391,77.237198,36.666965,14.802496,11.559523,6.222324,8.367784,8.704147,8.081830,4.823148,0.211572,0.487605,0.000000,0.038017,0.000000,0.002480,0.145455,0.311570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.155000,4612455.550000,6155,4655,106.946304,159.602493,169.296707,158.643814,143.462006,135.676880,134.147964,132.032257,131.346298,132.933075,134.668625,144.304977,160.627289,175.081833,187.833908,199.900024,201.073578,189.321503,166.338043,146.453735,135.404160,131.742996,127.445480,100.404160,84.544655,99.610771,106.685150,78.685143,39.007458,14.820680,11.585971,6.933070,8.759521,8.770265,9.128940,3.779346,0.359507,0.353721,0.075207,0.060331,0.000000,0.167769,0.383472,0.214876,2.347934,2.270248,0.000000,0.000000,0.000000,0.000000 -601975.955000,4612455.550000,6169,4655,93.673569,150.904968,167.177704,157.814072,145.078522,136.194229,132.855392,132.078522,130.359528,132.425629,133.946304,144.111588,159.152908,175.830597,187.458694,199.326462,198.690094,188.962830,165.334732,144.962830,135.500015,132.061996,126.681831,101.508278,84.590927,98.359520,107.392578,76.524811,37.714897,15.175225,11.516548,7.015714,9.968611,9.937205,8.638029,4.376040,0.705788,0.600002,0.171901,0.028099,0.000000,0.319835,0.066942,1.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.755000,4612455.550000,6193,4655,85.906624,158.716537,169.691742,158.840500,145.055359,136.063644,132.567780,131.518188,130.584305,131.757858,133.328110,143.658676,159.914886,175.923157,188.534714,199.542984,199.964478,188.823975,166.518188,144.576019,135.080170,131.534714,127.154556,100.526459,83.567780,98.956207,107.005798,77.104965,38.782665,14.940514,11.559524,7.057036,9.301668,9.199189,8.814889,4.636371,0.076035,0.055373,0.058678,0.038017,0.000000,0.087604,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.155000,4612455.550000,6225,4655,96.981018,156.377701,169.096710,160.443817,146.956207,137.410751,135.162827,132.253723,132.228943,133.848770,135.228943,146.352905,162.898361,177.096710,190.228943,201.476868,202.600830,191.733063,167.997528,147.088440,137.906616,134.063644,130.427277,102.526459,87.129761,100.559517,109.443810,78.898376,39.790932,16.208282,11.857043,7.200839,10.705801,12.100018,9.849600,4.500009,0.680167,0.360333,0.240497,0.425620,0.000000,0.420662,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601993.155000,4612455.550000,6255,4655,85.557045,152.515717,166.780182,158.292587,144.598373,135.300842,132.441345,130.763657,130.193405,132.400024,133.366959,144.309113,159.937210,175.028122,187.185150,197.738861,199.714066,188.573578,165.218201,144.466141,135.168610,132.094238,127.400017,100.300842,85.069443,99.152084,105.647957,77.019852,37.342167,15.373571,11.581837,7.923980,9.119022,7.621503,9.169435,3.662817,0.451243,0.099175,0.116529,0.457025,0.016529,0.000000,0.153719,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602001.955000,4612455.550000,6299,4655,94.735550,157.975220,169.347122,159.140518,144.561996,135.570267,133.586792,131.000015,131.355392,131.528946,133.619858,144.355392,161.363647,175.520676,187.471085,199.809937,200.495880,188.776871,165.876053,145.247955,135.694229,132.495880,127.363655,100.710762,84.743820,98.619850,107.049606,77.024811,37.140514,15.726463,11.578530,6.746293,9.466958,7.738858,9.002492,3.703312,0.896696,0.390084,0.275207,0.065290,0.003306,0.158678,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.355000,4612455.550000,6351,4655,90.889267,163.806625,169.723984,159.310760,144.393402,135.153732,132.839676,130.781830,130.616547,132.492569,134.352081,143.930588,159.938858,175.294235,188.757034,199.376877,200.087616,189.170258,166.699188,145.814896,135.145462,131.897537,126.963646,100.095879,83.938858,98.856209,106.831421,77.128937,36.302502,15.871091,11.542168,7.511581,8.809106,10.231421,10.097535,4.051249,0.626449,0.204134,0.185124,0.256199,0.071901,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602019.355000,4612455.550000,6386,4655,100.579361,162.137222,166.550446,158.723999,145.823166,136.723984,133.881012,131.360352,129.897537,130.872742,133.252914,143.723999,160.955399,175.690933,187.203339,198.748795,200.128952,187.905807,165.087631,144.137222,135.038040,131.236389,125.600021,100.087616,83.624809,98.426460,105.153732,75.905807,37.186794,14.100843,11.418200,8.367781,8.410760,9.518196,8.949601,3.236371,0.828928,0.264464,0.123141,0.106612,0.000000,0.004132,0.384298,0.000000,0.000000,0.000000,0.000000,0.000000,1.827273,0.000000 -602023.955000,4612455.550000,6409,4655,102.594231,156.842163,168.891754,156.561172,143.280182,133.437210,132.015717,129.395889,128.759521,129.924820,131.395889,142.288452,158.081833,173.453720,186.891739,195.982651,198.825623,186.098343,164.800842,144.098373,133.990921,130.313248,124.263664,98.908295,83.569450,97.999199,106.280190,78.371101,39.172752,17.412416,11.296715,8.138855,9.522332,9.019851,9.325635,4.274387,1.126450,0.028926,0.323968,0.254546,0.116530,0.009091,0.140496,0.826447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602027.355000,4612455.550000,6426,4655,104.828110,161.109116,170.315735,159.398376,144.604980,132.869431,132.497528,129.728943,128.828110,129.737213,131.439682,142.357056,158.414902,175.323975,186.249603,197.208298,198.613251,187.018188,163.621521,143.662842,133.638031,130.927277,126.472748,98.166962,82.571907,96.100853,105.728943,77.538849,39.290928,16.540514,11.497540,8.428112,10.379354,10.876877,8.466129,3.891743,0.304134,0.209092,0.203306,0.066942,0.000000,0.234711,0.142975,0.000000,0.000000,0.000000,1.959504,0.000000,0.000000,0.000000 -602029.955000,4612455.550000,6439,4655,100.828941,165.176056,169.035553,157.349609,143.490112,134.514893,132.696701,129.729752,129.729752,130.721497,130.895050,143.266968,159.143005,175.035553,185.812424,198.002502,198.440521,186.771103,164.300018,143.052094,134.341324,130.895050,125.300003,98.035553,81.952904,95.167786,105.713234,76.688446,36.192577,14.585969,11.390928,7.687616,8.772742,8.235555,7.398359,3.777693,0.990086,0.093390,0.116529,0.109091,0.004132,0.000000,0.000000,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.355000,4612455.550000,6461,4655,95.178528,163.211578,171.120667,160.128937,146.872742,134.748779,133.137207,129.980179,129.459518,130.847946,131.492569,143.004974,159.368607,175.244644,186.633072,197.575226,199.029770,186.963654,163.633072,143.228119,132.814896,130.864471,124.872742,98.542160,81.302490,95.839684,105.748772,74.864479,36.616547,15.020678,11.352085,7.356210,9.028941,11.108279,9.485964,3.473559,0.321490,0.349588,0.228926,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.854546,0.000000,0.000000,0.000000 -602037.555000,4612455.550000,6477,4655,121.895889,156.300842,169.920685,158.433075,141.152084,131.895889,129.681015,127.590103,127.143822,128.466141,129.953735,141.449600,158.507462,172.862823,184.400024,194.300842,197.606628,184.557037,161.639694,141.209930,130.714066,128.052917,122.036385,95.714066,79.920677,94.152084,103.590103,74.664482,35.168613,14.666960,11.094234,8.209929,9.814066,8.672742,9.765304,4.832238,2.143804,1.567770,1.567770,1.003306,1.084298,1.218182,0.820661,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602041.155000,4612455.550000,6495,4655,97.637222,163.992584,168.744644,160.133087,143.100037,133.538040,133.075226,129.066956,129.133072,130.009109,130.909943,141.595901,158.017380,173.662003,185.670273,197.405807,198.976059,185.471924,162.422348,142.124817,132.009125,129.885147,124.918213,97.405815,81.199203,93.447136,105.364494,74.843834,35.513241,13.623984,11.356218,6.779350,9.683486,9.272742,6.280178,3.179345,0.953722,0.247109,0.291736,0.000000,0.000000,0.000000,0.389257,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.555000,4612455.550000,6522,4655,105.887619,172.284317,168.986786,161.094238,143.986801,134.879364,131.606613,129.846298,130.284302,130.829773,131.672745,142.780182,160.267792,174.995041,187.127274,199.482651,200.523972,186.838013,164.251266,143.771927,134.061172,131.152084,126.218193,98.052902,83.152084,96.408279,105.226456,77.482658,35.416550,15.511589,11.474399,8.476872,9.481008,10.767783,8.421500,4.516535,0.747937,0.024794,0.454546,0.163637,0.000000,0.142976,0.724794,0.000000,2.440496,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.955000,4612455.550000,6539,4655,103.176048,163.052094,168.399200,158.647125,143.506638,132.919846,131.027283,128.010757,128.837204,129.671921,130.151260,141.886795,157.258698,173.886780,186.729752,198.159515,197.696701,185.977692,162.225647,141.581009,131.473572,129.539688,124.390923,96.895058,81.118195,94.151253,104.407455,75.663651,34.531422,13.365306,11.308284,7.961996,8.071916,9.007452,8.456211,3.703313,1.686779,0.125621,0.242149,0.161157,0.026447,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.955000,4612455.550000,6564,4655,110.409927,173.914078,171.666122,165.013245,145.773560,134.732254,133.856216,131.484314,130.500854,133.575226,132.922333,145.509109,161.509125,176.004974,188.980164,200.922318,201.872726,188.980164,165.806641,145.054565,135.938873,132.525635,127.600021,98.847946,82.699188,95.476044,106.600021,77.748772,37.533901,15.785141,11.600018,8.629766,9.000016,10.239684,11.617372,2.921493,0.694218,0.032233,0.246282,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.803306,0.000000 -602060.155000,4612455.550000,6590,4655,94.212425,170.567780,172.245468,164.220673,147.419022,134.047134,134.220688,130.931427,131.005814,132.625641,132.385971,143.865295,159.187607,176.261993,188.220673,199.509933,200.228943,187.650421,164.898361,144.377701,134.154572,130.609116,125.972755,98.204140,82.700027,95.204140,104.047127,75.460358,34.997543,14.721504,11.452085,9.272740,8.481007,9.187619,8.685138,3.878518,1.007441,0.222315,0.162810,0.035537,0.046281,0.000000,0.081818,0.233884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602065.155000,4612455.550000,6615,4655,99.878525,168.688431,172.002487,163.465302,145.159515,134.671921,133.622330,132.754562,130.721497,133.300018,132.052078,143.556198,160.225632,177.002487,188.010757,200.738022,199.828934,186.961166,165.242157,144.465302,134.291748,131.448776,126.209106,98.556213,82.903320,95.795883,104.514893,75.184311,36.275230,14.545473,11.473573,9.498361,8.299189,8.538030,9.894229,2.994220,0.632234,0.338844,0.305786,0.118182,0.137190,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602070.955000,4612455.550000,6644,4655,110.167793,168.994217,170.242172,163.481842,146.366150,134.200851,132.870285,130.448792,130.382660,133.126480,131.597549,144.647125,161.076889,178.382660,192.068619,203.994217,203.638855,190.556213,167.151276,147.027298,137.258713,133.316559,128.481842,99.688446,84.134727,98.324806,109.192574,76.085136,37.019028,13.807456,11.680185,9.228113,10.161174,8.847949,9.772741,3.402486,0.113225,0.114051,0.190910,0.040496,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.555000,4612455.550000,6667,4655,113.181007,183.304977,171.900024,164.800842,148.462006,136.990952,135.726486,133.288452,134.660355,138.544662,135.015732,146.817368,164.073578,181.123154,194.883469,207.610748,207.371078,192.916534,171.313248,151.462006,140.437225,136.536392,132.263657,103.428947,87.329773,102.627289,111.908287,81.379356,40.453739,17.227291,12.023986,11.565304,9.853735,12.448777,12.658693,6.390092,0.827277,0.288432,0.393389,0.052066,0.006612,0.073554,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602081.555000,4612455.550000,6697,4655,115.733910,178.295883,172.758698,163.783493,148.238037,135.238037,135.527298,132.609924,132.576889,136.667786,135.014893,146.643005,163.609940,181.552094,193.800018,207.485977,207.403336,191.907455,171.196716,152.064484,141.180191,138.552094,132.163651,102.436378,86.312408,102.948776,111.824806,80.998360,39.676052,15.200017,12.014895,11.452081,10.123981,10.700016,10.518194,3.925628,0.376035,0.077688,0.514051,0.046281,0.000000,0.004959,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.155000,4612455.550000,6730,4655,134.876053,179.537216,172.396713,164.578522,146.586807,134.578522,133.454559,130.900848,130.644638,136.090927,131.933899,143.917389,159.066132,177.743820,191.107452,203.198364,202.727295,189.752075,167.305801,147.438049,137.661194,134.429764,129.000015,98.471092,83.743820,99.561996,108.148773,77.793404,37.404976,15.738034,11.727292,10.581832,9.680181,7.974397,9.838032,5.848769,0.590912,0.209092,0.290083,0.000000,0.049587,0.004959,0.409918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602093.555000,4612455.550000,6757,4655,120.743820,181.239685,172.297531,164.619858,145.958694,133.636383,133.454559,130.950439,130.876053,135.694229,131.495895,143.190094,158.619858,176.495880,191.198364,203.429764,202.892578,188.107452,167.975220,148.041336,137.256210,134.289276,128.818207,98.429771,83.173569,101.727287,111.446297,79.214890,39.016548,17.910761,11.710763,12.028940,9.625637,8.853732,11.416543,5.170258,0.428927,0.202480,0.000000,0.053719,0.021488,0.109918,0.081818,0.000000,1.494215,0.000000,0.000000,0.000000,0.000000,0.000000 -602099.555000,4612455.550000,6787,4655,113.236382,159.277695,160.285980,153.211578,136.773560,127.426468,123.608284,121.409927,120.996704,121.922333,124.021500,135.327286,152.368607,168.591766,182.004974,193.905807,195.360367,184.682663,161.996719,140.748779,131.236389,126.699196,120.236374,94.285973,77.550446,92.591759,108.046303,79.352089,36.360348,13.795883,10.930596,6.704144,8.902493,7.194229,8.654558,3.319843,1.019837,0.087604,0.230579,0.027273,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602106.355000,4612455.550000,6821,4655,114.470268,153.544647,158.916534,148.627274,135.519852,126.528122,123.214066,119.065308,119.304977,120.916550,122.519852,133.891754,151.296707,167.470261,179.536392,191.172745,192.966141,182.032272,160.784317,141.032257,128.329773,124.718201,118.809113,92.742996,75.718201,93.875229,108.048782,81.098366,36.123158,12.958694,10.800846,6.472738,8.040510,8.449603,9.395880,3.422323,0.680994,0.121489,0.063637,0.137191,0.000000,0.085124,0.372728,0.530579,0.000000,0.000000,0.000000,0.000000,0.000000,1.983471 -602115.555000,4612455.550000,6867,4655,111.314903,153.480179,158.108276,147.438858,134.942993,124.529770,121.918205,118.893410,118.852089,120.463654,121.100021,133.157867,149.976044,165.835556,178.389267,190.331421,190.149597,181.199188,159.009109,137.951248,126.777710,124.587616,118.281837,90.546295,73.670258,93.207451,105.595886,80.653732,35.909939,13.494231,10.752912,4.458689,8.566957,8.139685,7.854557,3.350421,0.229754,0.059504,0.068595,0.000000,0.000000,0.000000,0.152066,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602125.555000,4612455.550000,6917,4655,92.723991,143.434738,151.319031,146.484329,132.905807,123.484322,119.881012,116.426468,114.517380,117.112419,118.038040,128.352081,145.980194,161.723999,172.971924,184.277710,184.145477,174.062836,152.955399,133.319031,123.707458,119.525642,114.418205,86.988449,70.905800,89.319031,105.269440,78.145477,36.533901,13.559522,10.401671,4.856209,8.061172,8.453733,7.627285,3.309100,0.209918,0.304959,0.217356,0.038017,0.043802,0.000000,0.443802,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602133.955000,4612455.550000,6959,4655,91.139687,146.957855,153.610748,143.486786,127.875221,117.866951,115.304970,112.321503,111.065300,112.181000,111.908279,123.792572,140.957855,156.354553,168.742981,179.776047,179.891754,170.610748,149.842148,130.114883,118.371086,115.081833,109.263649,82.346298,66.734734,87.156219,104.668610,79.809113,36.369442,12.162001,9.933076,6.890922,7.788443,7.971915,8.247121,4.081002,0.894219,0.338845,0.021488,0.028099,0.041322,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602141.755000,4612455.550000,6998,4655,136.606628,159.102493,155.259521,141.928940,128.862823,118.738869,114.011597,110.449608,108.110764,109.970268,110.085968,120.962013,139.127289,155.284317,166.383484,178.804977,180.094238,169.218201,149.838043,129.829758,119.895897,114.904152,109.309113,81.681007,67.928947,87.804977,105.606628,79.474396,39.333904,14.635556,9.937209,7.442990,10.679355,11.359519,10.240512,7.179351,1.839674,0.577687,0.052066,0.239671,0.205786,0.000000,0.561985,1.239670,0.000000,6.317356,0.000000,1.461984,0.000000,0.000000 -602147.555000,4612455.550000,7027,4655,140.485153,156.237198,151.724808,138.576050,124.146294,115.195877,109.485130,107.295052,105.518188,105.675217,107.038849,116.344635,133.005798,146.542984,157.055374,167.774384,168.253723,160.509933,144.782654,128.807449,118.633896,117.336372,113.700012,85.666962,70.104988,91.162827,116.848770,95.121506,45.576054,14.673572,10.336383,9.042989,9.624808,14.802497,17.423159,8.614888,1.531409,0.147935,0.252893,0.025620,0.097521,0.000000,0.076033,0.387604,0.000000,0.000000,0.000000,2.925620,1.732232,0.000000 -602184.755000,4612455.550000,7213,4655,112.872742,159.553741,160.471085,144.355392,128.826462,118.900833,116.049591,111.322319,110.033066,111.537201,113.247940,125.041328,143.636383,162.206635,175.702499,187.504150,191.198364,178.752075,158.165298,137.024811,126.049606,121.396706,116.272736,86.917366,67.570267,88.719025,108.628105,80.380180,37.297543,13.559523,10.570267,7.647120,7.947948,9.988443,11.114066,4.296702,0.194215,0.276860,0.050414,0.009918,0.032232,0.036364,0.000000,0.012397,4.339670,0.000000,2.441323,0.000000,1.325620,1.976033 -602191.155000,4612455.550000,7245,4655,108.330597,160.113235,158.625626,146.989273,131.485138,122.361176,120.270264,117.319855,116.947952,118.361176,119.733078,131.262009,149.526459,166.658691,180.848770,193.369431,194.956207,183.700012,161.923157,139.865311,129.080185,124.749603,118.427292,90.460358,71.782669,90.700027,106.782654,79.022339,38.592583,14.542993,10.766134,8.791749,9.596711,10.138858,11.519851,6.190092,0.847109,0.385126,0.247935,0.127273,0.000000,0.000000,0.000000,0.085124,0.000000,0.000000,1.383471,0.000000,0.000000,2.090083 -602201.755000,4612455.550000,7298,4655,107.335556,156.521500,159.645462,146.240509,132.190918,120.885147,118.835556,115.182655,115.075218,116.058693,116.893402,127.777710,147.645462,164.033875,177.794235,189.802475,191.455368,181.141312,157.587616,135.405792,124.488449,120.066963,114.009102,83.967789,67.546295,85.240517,102.290092,74.389275,35.199196,13.205804,10.364483,5.721499,7.390925,8.960345,8.685966,3.666949,0.264464,0.385951,0.046281,0.496696,0.082645,0.000000,0.000000,0.004133,2.845455,0.000000,2.342149,0.000000,1.309091,0.000000 -602218.555000,4612455.550000,7382,4655,98.988441,152.880188,156.508270,145.078522,128.252075,116.747948,114.921501,111.491753,109.979355,111.392578,111.491753,121.904976,140.896713,155.475204,167.830582,179.847107,181.227280,171.318176,148.508286,127.417374,115.590927,110.871918,106.227287,78.334724,60.847122,77.698364,93.194229,66.756218,29.809938,11.801669,9.657043,6.091746,6.261997,8.222328,7.776874,5.463645,0.692564,0.482646,0.371076,0.052066,0.211571,0.100000,0.000000,0.000000,0.000000,2.795042,0.000000,1.024794,0.000000,0.000000 -602244.755000,4612455.550000,7513,4655,92.659523,159.221512,158.328949,144.750443,128.519028,117.642998,116.973579,112.700851,112.395065,113.056221,113.527298,124.395065,144.742172,162.213242,176.395065,188.651260,190.411591,179.576889,157.411591,135.543808,124.122337,119.957047,113.981842,82.709114,65.188446,82.957047,101.419861,72.700851,33.246300,12.290101,10.362003,8.786791,8.020677,8.128114,8.305800,3.708271,0.466943,0.057025,0.000000,0.008265,0.099174,0.105785,0.000000,0.008265,1.491736,0.000000,0.000000,0.000000,0.000000,2.097521 -602259.555000,4612455.550000,7587,4655,98.102501,156.424789,157.466125,143.804977,128.383484,118.366959,115.714066,112.317375,112.160347,112.821510,113.408287,125.300842,145.127274,162.590088,176.689255,190.069427,191.441330,181.143799,158.457855,136.251266,124.755394,120.598366,114.672745,84.523987,65.804977,84.185143,100.433075,73.152084,33.540516,13.933904,10.424812,7.790923,7.695058,9.468610,7.761998,4.885131,0.559505,0.454547,0.044628,0.236365,0.011571,0.000000,0.000000,0.004959,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000 -602266.355000,4612455.550000,7621,4655,111.070267,156.867783,158.859528,143.090912,129.942154,117.735542,115.942154,113.396706,112.743813,114.661163,114.801659,126.595047,146.041321,162.595062,174.966949,187.099167,188.504135,177.876038,155.247955,133.892563,123.049591,119.438026,114.000008,83.958694,66.677704,83.338860,98.214882,70.586792,32.900845,13.083487,10.363654,7.881004,9.071916,7.902493,6.671088,4.271082,0.863639,0.554547,0.000000,0.218183,0.000000,0.104132,0.000000,0.000827,0.000000,0.000000,0.000000,1.122314,2.267769,0.000000 -602270.155000,4612455.550000,7640,4655,105.996704,157.957870,159.387604,145.924789,130.652084,121.065300,118.833893,114.916542,114.875221,116.866951,117.718193,128.536377,147.800842,163.924789,177.304947,187.908249,190.858688,179.197510,155.817368,134.395874,123.552902,120.238853,114.445465,84.900017,67.371094,84.528122,98.643822,70.057045,32.652084,12.233075,10.404152,8.314889,8.710760,8.305800,8.685966,3.255378,1.090085,0.385951,0.066116,0.185951,0.000000,0.000000,0.000000,0.003306,0.000000,1.396694,0.000000,1.100000,1.288430,0.000000 -602283.155000,4612455.550000,7705,4655,111.461174,157.302490,161.128937,144.013229,129.409927,118.732239,116.872734,114.021492,113.938850,115.004967,115.161987,126.153725,146.252899,163.831421,176.591751,188.228119,189.533890,178.409927,155.302490,134.285950,122.715706,119.467773,114.327278,85.690926,66.765305,84.137192,100.409920,71.021507,33.806629,14.192579,10.393408,9.812411,9.738859,9.683486,8.436379,5.393396,1.750416,0.499175,0.233885,0.304133,0.014876,0.708266,0.353719,0.062810,0.000000,0.000000,1.152066,0.990083,1.157851,0.000000 -602287.155000,4612455.550000,7725,4655,99.557869,159.811584,155.489273,142.497528,127.514061,117.034729,115.117371,112.034729,112.109108,112.795059,113.406631,126.076042,144.464478,161.423157,174.588440,185.464478,188.018188,176.877701,154.753723,132.266129,122.348778,119.373573,113.290924,83.613251,66.109108,83.952087,98.018196,70.770271,31.514067,12.833076,10.299192,7.469433,7.699190,9.514891,8.000840,3.732238,0.917357,0.425621,0.290910,0.102480,0.024794,0.155372,0.000000,0.000000,0.000000,0.000000,1.023141,0.000000,2.539670,0.000000 -602290.555000,4612455.550000,7742,4655,107.805809,156.031418,158.849594,144.874390,128.601669,118.775223,114.940514,112.560356,111.527298,113.585136,114.006622,125.386795,144.568604,162.791748,175.204971,186.626450,187.097534,177.337204,154.667770,132.940506,122.395058,117.981834,113.618195,83.957047,65.742172,82.527298,97.171913,70.395065,33.948784,14.142994,10.328945,8.778526,8.415718,9.175223,10.269438,4.738851,1.074383,0.454546,0.131405,0.174381,0.250414,0.294216,0.000000,0.000827,0.000000,0.000000,4.579340,1.052893,0.000000,0.000000 -602293.755000,4612455.550000,7758,4655,119.776878,152.812424,156.085129,141.258698,125.812408,115.754562,113.151253,111.142990,109.564476,110.961174,111.795883,123.787621,143.143005,160.969421,173.680176,185.019028,186.572754,176.556198,153.985977,132.432251,121.415718,117.936378,113.663651,83.440521,64.614067,82.771088,98.688446,71.473579,32.837208,12.322331,10.333077,6.748773,7.684314,9.124808,9.497536,6.280175,0.935539,0.566944,0.581820,0.123967,0.230579,0.189257,0.000000,0.000000,1.352893,1.342149,1.143802,1.076033,0.000000,0.000000 -602298.155000,4612455.550000,7780,4655,110.003319,155.162003,152.715714,139.616547,124.277702,114.219849,110.137199,108.294228,108.062820,109.484314,110.641335,122.748772,142.690918,159.004974,172.715714,184.856216,186.310760,175.765305,153.715714,131.120667,120.682655,116.525635,110.509102,82.104156,63.823162,80.459526,95.723976,68.790092,30.128946,11.992579,10.046300,6.323978,8.641337,7.987617,8.092575,4.477693,0.877688,0.401654,0.201654,0.055372,0.000000,0.147108,0.231405,0.000000,4.047108,0.000000,0.000000,1.979339,1.261984,0.000000 -602305.155000,4612455.550000,7815,4655,124.014061,155.724808,149.675217,139.055374,122.675217,112.567780,108.840508,106.757866,106.857040,109.385971,109.881828,121.443810,142.352905,160.419022,174.179337,186.171066,188.633881,178.493378,153.311584,131.625626,120.757858,117.774391,113.245461,82.700020,64.319855,80.857048,97.096710,68.485153,30.766134,12.770266,10.295060,7.118194,8.080179,9.126459,8.704972,5.040503,1.244632,0.579340,0.557852,0.241323,0.527274,0.745456,0.439670,0.000000,0.000000,1.349587,1.152066,2.002480,2.187604,0.000000 -602310.155000,4612455.550000,7840,4655,135.644653,155.735535,151.264465,135.966965,121.735550,110.611588,107.057869,104.016548,104.338860,105.702492,107.000015,119.115715,139.809921,157.363632,172.264465,183.892563,186.057846,176.413223,153.264465,130.603317,119.528938,116.074394,112.181831,81.008278,62.049610,80.628113,98.016548,68.330605,29.603325,11.500842,10.198365,8.171088,8.047949,9.539684,10.075220,6.847118,1.623971,0.999176,0.447109,0.404960,0.705787,0.594217,0.320661,0.000000,3.889256,1.272727,1.222314,2.971901,1.023141,0.000000 -602317.155000,4612455.550000,7875,4655,166.563644,164.737198,149.332245,133.720673,117.852913,105.323975,102.390091,99.902489,99.067780,101.695877,102.869431,114.613243,134.976868,152.133896,167.348770,177.745468,179.960342,171.795044,148.910751,127.761993,116.728943,114.381836,111.018196,79.357040,61.183495,80.158699,95.100838,70.588448,34.009933,12.797540,10.092582,10.847121,9.578527,11.671090,13.757042,10.199187,2.938025,2.094219,2.029755,1.470251,0.572728,0.228926,3.312399,1.487604,14.908266,15.657027,5.114877,7.224794,11.789257,6.077686 -601073.155000,4612445.550000,1655,4705,139.822311,142.425613,123.921509,111.037216,95.442162,82.516548,80.450432,76.789276,74.392578,74.301666,75.219025,87.276878,109.640518,127.177711,139.896698,151.599167,152.706604,146.351242,131.210754,113.913246,103.433899,101.128113,96.772743,61.243816,40.028946,64.210762,97.665306,78.136383,34.733906,10.770265,8.797540,15.691753,11.276876,13.748776,16.766134,12.183486,4.770257,0.658680,0.945457,0.768596,0.454547,2.097523,1.094217,0.645456,19.957855,15.494217,9.219836,5.302480,4.333885,10.363636 -601077.155000,4612445.550000,1675,4705,123.381004,138.936386,121.506615,107.944633,94.523148,81.936378,78.911583,74.886780,73.382652,74.399178,75.324799,87.919838,109.779343,127.911583,142.448761,154.952896,158.142975,152.605789,139.564468,123.490097,113.308273,112.688438,107.754555,70.704964,49.019032,73.382652,117.233902,98.366119,45.275234,11.776051,9.795886,14.101670,10.647950,15.791751,22.446297,15.007454,2.326451,0.657026,0.662811,0.071901,0.047934,0.768596,0.457853,0.704959,15.044630,10.096696,5.894216,7.087605,6.400827,3.157025 -601083.155000,4612445.550000,1705,4705,92.157867,119.938858,114.442986,100.971916,88.178528,77.409927,72.277702,68.715714,66.616547,66.542168,66.963654,80.500839,102.343811,120.112411,136.269440,150.368607,156.401672,152.996704,143.128937,127.616539,116.657867,115.715714,109.327286,68.583481,45.459526,73.161995,125.616539,111.195053,51.633080,12.259521,9.938862,11.307450,10.695057,17.032249,23.948778,13.404975,1.118184,0.114876,0.022314,0.000000,0.000000,0.142975,0.044629,0.321488,5.374382,7.004960,5.938844,1.512397,5.629753,9.854547 -601092.155000,4612445.550000,1750,4705,67.720680,106.974396,104.569443,93.982666,78.048782,70.346298,65.924812,61.635551,59.635551,58.610760,58.850430,71.495064,91.114899,106.371094,120.974396,132.214066,135.081833,132.519852,124.585968,110.420677,98.387619,96.668617,90.354568,52.147953,31.329771,59.139687,112.957870,108.866959,57.577702,11.683486,8.214068,8.809930,10.134727,17.430597,26.817375,15.598362,0.614052,0.000000,0.000000,0.000000,0.000000,0.147934,0.000000,0.000000,3.119835,2.704133,3.065290,1.689257,1.388430,3.009917 -601104.755000,4612445.550000,1813,4705,17.444635,25.297533,20.590097,13.845467,4.695876,1.778516,1.143804,0.511571,0.461158,0.214051,0.224794,0.769424,2.366119,5.584305,9.104967,14.015716,16.131418,14.281004,12.674391,7.635547,4.165295,3.657030,3.009096,0.000000,0.000000,0.347935,32.652081,59.519028,37.700844,2.540502,0.273559,6.419019,14.924809,30.587620,50.461174,39.337208,3.230583,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.353719,0.992563,0.190083,0.000000,0.115703,2.076033 -601121.355000,4612445.550000,1896,4705,23.161989,33.184311,31.492579,20.122328,9.566128,3.918190,2.293394,1.173558,0.766945,0.625622,0.376034,1.185954,5.161993,10.776046,17.114891,25.283485,27.951256,26.852909,24.174395,16.976048,10.223980,9.902491,9.618195,0.640497,0.042149,1.542152,47.766132,72.220680,42.898365,4.964472,0.874393,5.995050,14.742165,29.594233,46.146297,38.214066,2.058681,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.765290,0.472728,0.234711,0.397521,0.428926,0.000000 -601126.555000,4612445.550000,1922,4705,82.407455,118.319847,121.402489,109.947952,94.195885,85.972748,82.600845,79.666962,78.890099,80.567787,82.113243,94.997536,117.476868,136.220673,151.997528,164.890076,170.096695,166.997513,154.708252,138.427277,126.162827,126.476875,122.336380,83.005806,57.757870,85.278534,133.823990,113.749603,54.171093,12.550431,11.121507,8.590923,11.441339,15.538034,24.338034,13.033073,1.229755,0.119835,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,1.052066,0.000000,0.823967,1.403306,0.865289,1.766116 -601129.755000,4612445.550000,1938,4705,84.923981,124.761993,126.943810,117.803314,103.034729,91.522331,89.712418,86.290924,85.852913,86.133904,87.629768,99.538864,121.960342,139.299179,154.803314,166.530594,168.704147,162.629761,148.753723,129.142151,118.894226,114.836372,110.927292,73.290924,52.753742,76.720680,116.803314,97.927292,44.819851,13.191753,10.084316,8.251253,8.697534,12.141339,16.241341,8.223150,0.156200,0.114051,0.000000,0.000000,0.000000,0.000000,0.000000,0.509091,0.898347,0.949587,2.376860,2.164463,3.685124,0.000000 -601134.555000,4612445.550000,1962,4705,91.710762,131.895050,128.605804,119.448776,104.093407,95.837204,92.754562,89.192574,88.324806,90.936378,91.481834,103.729767,125.614067,144.142975,157.845459,169.977692,171.787613,165.630585,148.266953,128.002487,117.547951,113.994232,107.845467,73.101669,52.002502,75.184311,106.605797,85.333069,37.366138,9.525638,9.804152,7.505796,7.956212,8.248775,9.614890,5.781001,0.358680,0.173555,0.000000,0.000000,0.000000,0.037190,0.000000,0.188430,2.198347,1.001653,3.240496,0.820661,0.000000,3.766116 -601142.355000,4612445.550000,2001,4705,92.263657,131.169434,131.838852,121.342987,107.425636,99.698372,95.847130,92.681839,91.838867,92.384323,93.764488,106.177704,127.863647,144.318176,158.739670,171.392563,173.681824,166.037186,147.417358,127.880173,116.987610,114.640511,107.136383,71.995895,52.533081,73.896721,101.351265,78.797546,34.946301,11.542167,9.739689,6.628938,7.692575,8.842164,10.741338,4.775215,0.790911,0.411572,0.146282,0.055372,0.000000,0.042149,0.213223,0.000000,1.085124,2.117356,0.976033,0.855372,0.924794,1.922314 -601152.355000,4612445.550000,2051,4705,97.468613,135.020676,133.119858,123.847122,110.342995,100.475220,98.185966,95.351257,94.012413,95.921501,97.169441,109.103325,129.524811,147.359528,161.243805,172.962814,175.169434,167.747955,148.334732,128.640518,117.301666,113.169441,106.590927,73.979355,53.772747,74.276878,99.929771,74.632248,34.293407,12.306628,9.690101,7.952905,9.210757,8.210758,10.939683,4.894221,1.016532,0.307439,0.154546,0.315703,0.000000,0.000000,0.471075,0.174380,0.888430,4.957025,1.607438,2.546281,2.889257,0.000000 -601159.355000,4612445.550000,2086,4705,108.648773,143.595062,136.446304,126.165314,112.082664,103.033073,99.760345,95.561996,94.355385,95.727287,95.454559,107.669441,128.537216,147.578522,161.520676,173.561996,176.528946,169.603317,150.198364,129.611588,117.966957,115.057869,107.000015,71.801674,50.826466,72.942169,103.024811,81.677704,36.702499,14.215721,9.727292,8.255385,9.261998,9.651256,11.148776,4.810752,0.978516,0.145456,0.344629,0.121488,0.218182,0.000000,0.315703,0.513223,2.858678,0.857851,1.752066,3.353720,5.457852,3.564463 -601168.755000,4612445.550000,2133,4705,121.266945,141.193405,134.267776,120.953735,108.168617,96.796715,94.804977,91.135559,90.548782,92.705803,92.689278,105.358696,126.995064,145.085968,160.408279,171.639694,174.441345,169.160355,151.507462,133.424820,121.424812,118.879356,113.218201,77.449608,54.449608,79.160347,111.689278,89.614899,39.375225,11.190926,10.292582,6.975219,8.247120,10.388446,11.894231,6.500011,1.133061,0.466117,0.480167,0.281819,0.200000,0.379339,0.832233,0.464463,4.070249,6.883472,6.680167,3.741323,2.926447,3.962810 -601177.955000,4612445.550000,2179,4705,125.890915,136.572739,132.696701,123.647118,110.258682,99.738022,96.928108,94.820679,94.085136,96.341331,97.415710,110.498352,131.597534,148.688431,163.283478,175.589264,177.886780,172.580994,155.415710,136.316528,124.704964,121.498352,117.027283,80.266968,59.192585,81.176056,112.506615,91.283485,40.862007,12.432248,10.638862,7.757864,10.460346,11.067782,14.666133,7.100013,0.933887,0.398348,0.022314,0.009918,0.000000,0.000000,0.227273,0.000000,1.920661,3.240496,4.342976,3.125620,0.987603,3.827273 -601184.155000,4612445.550000,2210,4705,126.137215,146.657867,133.914062,126.021500,110.434723,101.319023,99.707451,96.451256,96.418190,99.624809,100.170258,112.781837,132.294235,150.492569,167.095886,177.947113,181.914062,174.071091,156.550430,135.418198,124.426460,121.294228,114.236382,81.591751,59.649609,80.095879,108.442986,85.418198,38.633083,12.637208,10.385143,6.578525,9.400841,11.054562,11.286793,5.767779,1.535542,0.219011,0.259504,0.625621,0.301653,0.000000,0.467769,0.209091,5.699174,2.047108,2.621488,6.176034,5.009918,3.961984 -601189.755000,4612445.550000,2238,4705,116.189270,143.821487,135.904129,129.234711,114.747108,103.904137,101.110748,97.507446,98.499184,101.722328,101.019836,113.829758,134.003311,152.689255,167.309097,180.003311,181.854553,173.912399,154.821487,134.689255,122.664467,118.515709,111.945457,78.036369,57.714073,77.540497,104.490913,79.441322,34.168617,12.400845,10.176878,6.718194,9.542164,10.279354,10.575223,5.748769,0.649591,0.778515,0.519836,0.392563,0.043802,0.000000,0.247934,0.000000,4.309918,4.850414,1.600000,2.644629,3.428100,4.009917 -601195.755000,4612445.550000,2268,4705,109.163658,153.176865,137.160339,130.168610,116.094231,104.135559,102.656219,99.201675,98.383492,102.614899,103.119026,114.433075,134.019852,152.821487,167.722321,179.804962,183.838013,175.813232,155.532242,134.135559,122.292580,118.168617,112.127289,77.581841,59.168610,78.391754,100.747124,78.581848,31.970268,12.535555,10.193407,7.401666,8.223154,8.953735,10.893403,5.418190,1.551245,0.871903,0.720663,0.285951,0.052066,0.119835,0.389257,1.137191,2.127273,1.084298,0.897521,2.577686,2.199174,6.170248 -601201.955000,4612445.550000,2299,4705,143.281006,154.132248,138.380188,133.082657,118.289261,106.495872,103.190094,101.322319,100.851250,105.801659,104.173561,116.900833,136.206635,154.975220,169.702484,181.413239,183.867783,175.909103,156.157043,135.553741,123.909096,119.867775,113.454544,79.950432,59.900848,78.223160,100.454552,78.859520,34.114891,13.131424,10.314070,6.723981,8.816543,8.565304,11.128114,5.376040,1.364467,0.418184,0.300827,0.406613,0.052893,0.124794,0.154546,0.000000,0.000000,0.000000,2.588430,0.913223,2.415703,0.000000 -601206.955000,4612445.550000,2324,4705,127.211586,154.178513,141.500824,133.641342,119.542160,107.641335,105.277702,103.319023,102.368607,106.996704,106.335548,117.161995,137.294205,156.476044,170.699188,183.195053,186.120651,177.914062,157.319016,137.996689,125.971916,122.839684,116.509102,82.624809,62.442993,80.385139,102.319023,80.980179,34.509113,12.283488,10.591754,6.185961,9.004971,8.156212,11.400842,3.500832,1.123971,0.294216,0.279340,0.000000,0.355373,0.104133,0.252893,0.000000,3.621488,1.164463,1.971901,5.812397,1.242975,4.352067 -601211.755000,4612445.550000,2348,4705,115.204147,149.938873,138.509125,127.079353,110.988449,100.839691,98.723991,95.319031,94.657867,95.525642,97.021507,108.302498,128.170258,144.839691,157.699203,169.963669,171.682678,163.608292,143.814911,124.517365,115.244644,111.922333,106.327286,71.690933,53.517376,73.087624,95.352089,71.228119,31.839689,11.866134,9.666136,11.665303,9.500841,11.076875,12.259521,6.409100,0.744631,0.837193,0.961158,0.382645,0.195868,0.000000,0.836365,1.033885,7.212397,4.876860,7.401654,5.346282,5.642976,3.719008 -601217.755000,4612445.550000,2378,4705,123.569443,146.244644,139.285965,126.773567,111.360344,99.575218,98.757034,95.236374,94.203316,95.004974,95.897537,107.112411,127.517365,143.690918,157.269440,168.550430,171.542160,162.269440,143.715714,125.699188,114.104149,112.905800,106.327286,74.095879,55.889278,72.864487,97.509102,73.600014,30.573572,10.696711,9.666135,11.553735,8.733070,10.914892,12.967784,6.317365,1.585953,0.535539,0.123967,0.108265,0.147108,0.000000,0.204133,0.596695,3.040496,3.005785,2.504959,4.799175,4.055372,5.639669 -601223.755000,4612445.550000,2408,4705,137.668610,146.748779,139.046295,127.500839,111.393402,101.120674,99.938858,95.319023,94.376869,96.723976,96.649597,108.773567,127.137199,144.071091,156.633072,167.550415,170.790085,162.608261,144.038025,127.426460,118.715714,117.409927,111.690926,80.566956,60.732254,78.434731,103.252907,80.699196,33.409935,11.185142,10.153739,12.353735,8.104145,10.512413,12.081837,8.347946,1.097525,0.405786,0.085124,0.135538,0.000000,0.000000,0.514877,0.668595,2.912397,0.000000,2.309091,4.404960,0.000000,7.585124 -601229.755000,4612445.550000,2438,4705,120.626450,152.287613,140.428101,130.105804,114.899185,103.684311,101.709106,98.279350,97.733902,99.973572,98.940514,112.816544,131.816544,147.461166,162.039673,174.965302,176.411575,169.783478,152.948761,135.783493,126.213234,125.527290,118.890923,88.147125,66.692581,86.667786,112.568611,85.651260,36.485970,11.952083,10.808283,12.862825,9.357863,12.228941,13.531422,7.171912,1.269424,0.363638,0.302480,0.166116,0.043802,0.026446,0.143802,0.428100,1.036364,3.950414,1.685951,1.470248,6.980166,3.547108 -601236.555000,4612445.550000,2472,4705,129.111588,157.632233,146.508286,134.442154,117.268600,108.541336,106.871918,103.252083,102.632248,105.260345,106.061996,117.301659,136.442169,154.400833,166.938034,180.409103,183.103317,175.219025,156.690079,140.185974,131.169434,128.450424,123.681824,93.458694,71.681831,90.004150,111.987617,88.623985,37.557873,15.223158,11.243821,13.829768,10.647950,11.230595,14.000844,9.204971,0.880169,0.283473,0.150414,0.102480,0.000000,0.000000,0.000000,0.000000,1.067769,2.991736,3.419835,1.680166,0.000000,0.000000 -601246.355000,4612445.550000,2521,4705,130.257050,164.256226,146.371918,136.867783,120.140511,107.537209,106.173569,103.694229,103.694229,107.884315,106.181831,118.388443,134.752075,152.371918,166.041351,178.545471,179.380188,169.148788,151.074402,133.818192,123.710762,122.272743,118.272743,86.429771,65.776878,83.107452,104.438034,75.851257,31.181835,10.004974,10.752086,12.325635,7.933070,8.676874,9.974395,5.932240,0.590086,0.224794,0.110744,0.480992,0.000000,0.000000,0.196694,0.000000,0.000000,1.086777,3.431406,0.882645,1.044628,0.000000 -601259.955000,4612445.550000,2589,4705,163.154556,178.237198,155.642151,145.493393,127.683487,115.716545,114.154564,110.914894,111.857040,118.146301,112.873573,124.881836,141.055374,158.468597,172.873566,185.022324,184.014053,170.394226,151.658691,133.055374,123.435555,120.666962,117.336380,85.708282,67.700020,85.774399,99.576050,72.691750,31.485144,12.614895,10.666961,12.747124,10.205801,10.784314,10.136380,7.106622,1.003309,0.266944,0.195043,0.007438,0.077686,0.118183,0.485951,1.650414,3.347934,1.071075,1.019008,0.964463,1.192562,0.000000 -601266.755000,4612445.550000,2623,4705,180.821503,182.036377,159.804977,147.598373,129.069443,117.085968,114.631424,112.871094,111.945473,119.226463,114.333900,124.986794,141.962006,159.325638,174.557037,187.036377,185.507462,172.333908,153.986801,134.755386,124.672745,122.763657,117.218201,87.160347,70.143822,86.003326,98.962006,69.606628,31.515722,12.404978,10.656217,15.724811,9.358692,10.658692,11.829768,6.601664,0.938846,0.466943,0.221489,0.063637,0.269423,0.097521,0.295041,0.000000,0.000000,0.000000,0.000000,0.000000,6.132232,2.148760 -601270.955000,4612445.550000,2644,4705,108.654556,160.276886,156.012436,147.483490,131.202484,121.954552,119.913231,117.070259,116.938026,119.045464,119.814056,130.508270,149.012436,162.822327,176.268616,188.169418,188.549591,178.805801,157.615738,138.070282,129.004135,126.334717,121.136375,92.789261,73.351257,89.640503,103.384308,76.475220,34.995884,14.722331,11.012416,11.076049,10.674397,10.363651,10.777700,6.218191,0.660332,0.185124,0.110744,0.080166,0.082645,0.111571,0.000000,0.000000,1.091736,0.000000,0.876033,0.000000,0.000000,0.000000 -601277.955000,4612445.550000,2679,4705,110.602501,149.653717,153.331406,142.281830,129.017365,119.876869,117.967781,115.901665,115.000839,116.281830,117.752907,128.108276,145.695038,162.058670,175.281815,184.298340,187.471893,177.562805,156.802475,136.918198,127.513237,124.744644,120.100014,91.025635,72.240517,87.686790,101.620674,75.381012,32.695065,12.622332,10.918200,6.958689,7.714891,8.661997,8.811583,4.791742,0.833059,0.238844,0.314050,0.023141,0.120662,0.114050,0.000000,0.000000,0.000000,0.000000,1.717356,0.786777,0.000000,0.000000 -601289.755000,4612445.550000,2738,4705,107.280182,152.661179,154.892578,144.471085,130.958694,120.776878,120.165306,117.355385,116.900841,119.181831,120.876053,130.743820,147.652908,163.008286,176.281006,186.760345,187.867783,179.190094,156.983490,137.595062,127.355385,124.743820,119.545471,92.090927,73.371925,88.586792,101.082664,75.140518,33.297539,12.101670,10.867787,8.161169,9.585967,9.624807,9.790923,3.988437,0.527274,0.093389,0.036364,0.003306,0.079339,0.046281,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.985951,0.000000 -601301.755000,4612445.550000,2798,4705,111.007454,148.681015,153.490921,145.871094,130.606628,122.457870,119.614899,118.912422,118.466133,119.879356,121.242996,131.879364,147.796707,164.771927,177.127304,188.242996,189.482666,178.962021,156.838043,138.276047,128.986801,123.623161,118.309120,92.623161,74.011589,87.937210,98.656219,73.962006,32.251259,13.685142,10.755392,7.758690,9.004148,9.215716,9.660345,3.219841,1.288433,0.481820,0.260332,0.019009,0.000000,0.000000,0.000000,0.000000,0.000000,2.173554,0.878513,0.000000,0.000000,0.000000 -601308.155000,4612445.550000,2830,4705,123.404968,154.159500,153.052063,143.985947,131.019028,122.919846,120.341339,117.374397,117.498360,119.746292,120.382660,129.812408,146.804123,162.795853,177.142960,186.225616,189.093384,180.052063,156.969406,137.291748,127.415718,123.820679,118.209106,91.630592,72.762825,87.961174,98.333069,72.101669,31.878531,12.081009,10.746300,6.457861,9.514062,7.464474,8.486790,3.852900,0.811572,0.090910,0.045455,0.149587,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.785124,0.000000,1.976033 -601312.355000,4612445.550000,2851,4705,104.481010,151.388443,156.537201,144.330597,131.545471,123.842995,121.297539,118.247948,118.363655,121.148773,121.958694,132.338852,148.892578,164.016541,177.462830,187.925613,189.628098,180.314072,158.090927,137.760361,128.991745,124.983490,119.727287,92.545471,73.512413,87.281006,99.487617,73.132248,31.959522,13.938035,10.884316,7.547945,7.588443,9.252907,8.095880,3.546288,1.256201,0.103307,0.372728,0.213224,0.000000,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601317.155000,4612445.550000,2875,4705,109.214066,152.585129,158.254547,147.023163,133.081009,124.089279,121.320686,120.039696,119.932251,121.932251,123.585144,133.626465,150.750427,164.758682,178.519028,189.386795,191.056213,181.643005,159.469421,138.990112,130.171921,125.576881,120.709114,93.957047,75.519028,89.502502,101.081017,74.105804,34.758698,14.814894,10.973574,7.427285,7.816544,7.865302,8.023978,3.055378,0.784300,0.166943,0.333885,0.161157,0.000000,0.000000,0.000000,0.000000,1.098347,1.133058,0.000000,0.000000,0.940496,0.000000 -601321.155000,4612445.550000,2895,4705,117.500847,153.290924,156.522324,147.894226,134.456223,125.604973,123.662827,122.059525,121.175224,123.819855,125.712418,135.629761,151.018188,166.274384,179.117355,190.067764,191.952057,182.191727,160.695877,141.224808,130.042999,126.142166,121.745476,94.621506,75.348778,89.638031,101.249603,75.431419,34.117378,14.517373,11.067788,7.174391,9.703321,7.916542,8.896708,4.152900,0.607439,0.147109,0.729753,0.012397,0.074380,0.326448,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.930579 -601327.155000,4612445.550000,2925,4705,107.785973,151.790909,156.071899,146.261993,133.526459,123.600838,122.625641,119.344643,120.592583,122.212410,124.014061,133.989273,150.080154,164.485123,179.708252,189.303299,190.609085,181.766113,160.526443,141.253723,129.658691,126.790916,122.154556,93.253738,75.815727,89.501663,100.352913,74.840523,33.956215,14.020679,11.104978,6.793399,9.464477,7.914889,8.935550,3.676865,0.761985,0.369424,0.360332,0.105785,0.000000,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.911570,0.000000,0.000000 -601336.955000,4612445.550000,2974,4705,113.337196,154.013229,157.864471,148.120667,135.575226,125.327278,121.682648,120.633064,120.674385,122.880997,124.244637,134.558685,150.633072,166.385132,178.971909,190.889267,191.418198,182.980179,161.401672,141.790100,129.905792,126.947113,122.236366,94.385139,75.723976,88.558693,101.261169,75.476044,33.128944,13.146298,11.112414,5.851250,8.474397,8.612408,8.900012,5.263645,0.590085,0.179339,0.409092,0.011571,0.167769,0.092562,0.000000,0.000000,2.252066,0.000000,0.000000,0.000000,0.000000,0.000000 -601345.155000,4612445.550000,3015,4705,112.009926,159.182663,157.091736,148.223984,136.223984,124.777702,123.223976,120.372742,121.447121,124.471916,125.323151,135.083481,151.604141,167.728088,179.538010,192.083466,192.860321,183.761154,161.422318,141.430588,131.257034,127.513237,122.372742,95.852081,76.215714,89.042160,100.992577,75.785965,32.124813,14.295886,11.124811,6.812407,7.858691,9.229765,8.571087,3.186782,1.160333,0.285952,0.245456,0.061984,0.174381,0.177687,0.000000,0.000000,1.214876,0.000000,0.000000,0.000000,0.000000,0.000000 -601348.755000,4612445.550000,3033,4705,154.128937,192.492569,175.368607,165.732239,147.930588,136.418198,135.426453,133.335556,134.492569,141.104141,137.170258,147.765305,163.715714,181.211578,196.244644,208.872742,208.467789,194.228119,174.657867,153.715714,143.600006,140.699188,137.145462,105.699188,87.327286,104.401665,112.319023,79.277702,38.732254,16.557045,12.467787,15.262828,10.768612,10.547950,11.580180,5.943811,1.329754,0.557026,0.295869,0.004132,0.000000,0.000000,0.070248,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601352.155000,4612445.550000,3050,4705,147.220673,194.865295,172.716537,163.352905,148.468597,134.468597,135.361160,133.567780,134.757858,140.369431,136.270264,148.766129,164.402496,181.534714,197.129761,208.460342,208.526459,196.088440,174.790924,153.873566,144.295044,142.204147,137.336380,106.295052,89.708275,103.757858,113.906624,79.179359,37.509933,15.010761,12.485143,12.723982,8.692577,11.580181,11.523982,5.814887,1.612399,0.388431,0.046281,0.166117,0.018182,0.000000,0.078513,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601357.155000,4612445.550000,3075,4705,135.838043,189.532257,171.234726,164.085953,146.738846,134.061172,134.201675,133.085968,133.523987,138.978531,136.061172,147.912399,163.838013,182.242996,196.821503,208.490921,208.730591,194.631424,173.689270,154.854553,144.143814,141.474396,137.309113,106.168617,88.276054,103.681007,111.647957,79.854568,37.804977,16.422333,12.482663,12.504974,9.416546,10.187619,10.941338,7.663647,0.667770,0.226447,0.286777,0.139670,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601360.555000,4612445.550000,3092,4705,137.317368,188.441345,169.383484,163.201675,146.565308,132.672745,133.061172,131.970261,133.672745,139.127274,135.499191,148.226471,164.433075,180.937210,195.557037,208.590103,209.036377,195.838043,175.259521,154.110764,144.019852,141.094223,136.127274,106.854568,89.813240,102.433075,111.135559,78.242996,37.962002,15.238860,12.375226,10.462823,8.365306,10.161173,8.182657,5.265299,0.483472,0.149587,0.000000,0.000000,0.000827,0.466116,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601365.355000,4612445.550000,3116,4705,128.479355,181.710754,170.652908,161.239685,145.702499,134.322327,133.826462,132.702499,133.033081,138.504150,136.495880,148.966965,165.595062,183.148773,195.479355,208.884308,209.239685,196.768616,175.057861,155.099182,146.537201,141.652908,138.909103,107.008278,89.900848,102.892578,113.685966,82.198364,38.214897,15.905803,12.628119,13.564478,9.050429,9.746299,11.745470,5.441330,0.736365,0.199174,0.352894,0.000000,0.007438,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601370.955000,4612445.550000,3144,4705,125.480186,188.009109,170.306625,161.323151,146.455383,134.298370,135.033920,133.223999,134.116562,137.711578,137.934723,149.695053,165.562820,183.893402,197.612411,209.959518,211.108276,198.835556,176.480179,157.670258,146.843811,143.504974,138.827286,108.785973,90.843834,104.017387,115.273575,83.711601,37.885143,17.138861,12.620680,11.361171,11.325636,10.504976,12.647124,5.589268,0.716530,0.036364,0.284298,0.003306,0.006612,0.000000,0.088430,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601374.555000,4612445.550000,3162,4705,115.883484,174.147964,168.437210,158.015717,143.486801,132.007446,132.883484,131.428940,132.007446,136.280182,136.032257,147.081833,164.304977,183.147964,196.172745,208.214066,209.875229,197.346298,175.784317,154.635559,145.577698,143.395889,137.809113,106.296707,90.123154,101.271912,112.445465,82.387619,38.552914,14.252912,12.528118,8.702492,9.073572,9.676052,10.033074,4.319016,0.614051,0.233058,0.312398,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.355000,4612445.550000,3176,4705,136.783493,178.882660,170.089279,161.403336,145.717377,134.271088,135.056198,133.634720,133.882645,138.304153,137.866135,150.469421,166.940521,184.370270,197.948776,211.609940,211.138870,200.692581,178.800018,156.262817,146.733902,144.742172,139.890930,109.684303,90.965302,104.287613,115.651245,82.833069,39.114067,17.495886,12.717374,10.889272,9.923159,12.360348,10.963652,5.709102,0.174381,0.336364,0.187604,0.000000,0.000000,0.000000,0.088430,0.053719,0.000000,2.375207,0.000000,1.119835,0.000000,0.000000 -601380.355000,4612445.550000,3191,4705,124.421494,175.842987,168.760345,159.553741,144.694229,132.702484,135.148773,131.925629,132.619843,136.909103,136.429764,149.884308,166.479355,183.842987,197.545471,209.206635,212.553741,200.685974,177.115723,155.768616,146.884308,144.388443,138.181839,109.024803,89.380173,102.644638,114.727287,82.223160,37.793407,15.633904,12.562002,8.952906,9.220678,11.590925,12.640514,4.297530,0.809093,0.345455,0.180166,0.000000,0.011571,0.000000,0.000000,0.000000,1.371074,0.000000,0.000000,0.000000,0.000000,0.000000 -601386.955000,4612445.550000,3224,4705,120.750420,175.543823,171.328949,161.362000,146.023163,135.353729,136.072739,133.254547,133.750427,138.072754,138.081009,151.378540,168.907455,185.692566,198.965317,212.692566,213.899185,202.940521,180.510757,158.766968,148.328949,146.047958,140.436386,110.932236,91.816536,105.775215,115.568604,84.122322,39.163654,17.842995,12.766960,10.109107,10.905802,10.961174,10.973568,5.219845,0.745456,0.072727,0.490084,0.000000,0.004959,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601389.955000,4612445.550000,3239,4705,124.635544,179.313232,171.040497,160.461990,147.949585,136.015717,136.321503,135.602493,134.759521,139.420670,139.561157,152.007446,170.263641,185.825623,198.974380,212.404129,214.569427,203.875214,181.652069,160.214050,148.090088,146.726456,141.354553,111.197533,92.420662,104.247116,117.007439,83.825638,38.743000,17.868616,12.850431,10.478526,10.231421,12.260347,11.808280,5.940506,0.967772,0.171901,0.416530,0.004959,0.006612,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601392.755000,4612445.550000,3253,4705,123.804977,168.548782,168.755386,156.920685,143.185150,133.069443,133.019852,131.408279,131.557037,133.705811,134.912415,147.623154,166.747131,183.185150,196.656219,207.928940,209.540512,199.499191,176.912415,155.614899,145.482666,142.656219,137.036377,107.598366,89.937210,100.606628,113.044647,82.094231,36.970268,15.715719,12.457870,9.645468,8.121504,10.636381,8.718197,4.975217,0.668597,0.138017,0.138843,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601397.555000,4612445.550000,3277,4705,138.229752,172.634720,169.469421,158.320663,144.791748,133.725632,134.882645,133.122314,133.899185,136.667770,138.626450,150.634720,166.948761,184.758682,198.271088,210.510757,214.345459,203.552078,178.890915,158.304138,148.560333,144.849594,140.163635,110.816536,91.213234,104.452904,114.204964,83.568611,38.601673,16.281010,12.742167,11.209105,9.129768,10.621505,11.129767,6.280178,0.376034,0.000000,0.067769,0.002479,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.052066 -601403.955000,4612445.550000,3309,4705,118.319855,169.923157,169.716537,159.857040,144.716537,135.576050,136.311584,134.617371,134.220673,137.410751,139.286789,151.633911,169.700012,185.162827,199.443817,211.253723,214.311584,205.195877,179.832245,157.881821,148.344650,147.245468,139.881821,111.509926,92.121498,104.675217,114.559517,82.956215,37.716545,15.757870,12.716548,10.972742,10.541341,11.252086,11.446296,4.666952,1.004134,0.066116,0.000827,0.126447,0.000000,0.000000,0.000000,0.141323,0.000000,0.000000,0.801653,0.000000,0.000000,0.000000 -601407.155000,4612445.550000,3325,4705,122.671913,169.919846,168.341324,159.101654,145.969421,135.845459,135.060349,134.390930,133.936371,136.936371,138.804138,149.895050,169.357864,185.233887,199.944641,212.076859,215.746292,203.969421,179.845459,160.423981,148.804138,145.407440,140.481827,111.746292,92.093407,106.432243,115.333069,83.275223,38.779362,16.568613,12.771094,10.386790,11.361175,10.361174,12.340512,5.352076,0.841325,0.230579,0.653721,0.135537,0.018182,0.000000,0.027273,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601412.155000,4612445.550000,3350,4705,121.640511,167.681839,169.028946,157.417374,144.772751,135.500015,134.524811,131.855392,133.954559,135.855392,137.657043,149.334732,168.475220,184.880188,198.276871,211.409088,213.657028,204.508270,179.243820,158.442169,148.987625,145.888443,139.045471,110.475212,89.590919,104.557861,114.020668,82.095047,37.475227,14.490927,12.640515,7.130591,9.442991,9.674397,10.214891,4.519842,0.311571,0.062810,0.285952,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.555000,4612445.550000,3377,4705,118.728111,165.141342,167.124802,159.100006,142.934723,135.306610,134.628937,132.620667,134.240494,136.405792,139.108276,150.604141,167.976044,185.050430,199.199188,211.554565,214.331421,204.926453,180.827286,158.876877,149.075226,146.967789,140.918198,112.166130,91.810768,104.876869,115.066956,83.157875,37.381012,15.246300,12.810762,8.831419,9.671092,10.198363,12.127289,4.052901,0.949588,0.500828,0.230579,0.013223,0.000000,0.000000,0.020661,0.061157,0.000000,0.000000,0.000000,1.928926,0.000000,0.000000 -601423.355000,4612445.550000,3406,4705,118.587624,166.728088,168.347931,159.380981,147.215698,135.488449,135.761169,134.397537,135.653732,137.232239,140.637192,152.868607,170.860321,187.546280,201.728088,215.223969,218.050415,206.463638,182.728088,161.157852,150.885132,148.835556,142.009094,112.637215,93.662003,106.885147,115.628944,84.538040,39.860352,15.428944,12.909937,10.796711,10.809935,10.625637,10.496709,4.881000,1.231408,0.057025,0.302480,0.000000,0.004132,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.555000,4612445.550000,3442,4705,114.376053,170.880173,170.921509,158.466965,145.863632,136.194229,135.301666,135.185974,136.028946,138.260345,141.425629,153.111572,171.028946,188.342972,203.235535,215.417358,218.235535,208.318176,184.524796,161.533081,151.442154,149.119827,143.227280,113.433891,93.566132,108.904968,117.078522,84.442154,40.276878,16.867786,13.020679,8.937203,11.585967,11.000015,11.651255,6.213234,1.631407,0.254546,0.091736,0.250414,0.017356,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.155000,4612445.550000,3465,4705,125.363655,163.826462,168.256210,157.057861,144.983490,136.355392,135.322327,134.537201,134.504150,136.685974,140.256210,152.272751,169.933899,186.570267,201.165298,213.834732,217.512405,208.413239,182.760345,160.677704,151.008286,147.090927,141.636383,111.487617,92.793404,106.876053,114.917374,82.595055,38.933903,16.327291,12.876052,10.266129,11.036381,9.842165,10.772742,3.904141,0.743804,0.373555,0.147935,0.206612,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601438.755000,4612445.550000,3483,4705,119.540512,163.061157,167.466125,155.069443,144.085968,136.300842,135.069443,133.623154,134.705811,137.168610,139.061172,151.168610,169.796707,185.466125,201.689255,213.044632,216.664459,206.540497,182.482651,159.565308,150.119034,147.581833,140.672745,111.366959,90.647957,106.631416,116.400017,81.937210,37.829773,16.800844,12.788449,9.028113,10.064480,10.585968,10.404147,6.043812,0.709092,0.247934,0.159504,0.000000,0.348761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.155000,4612445.550000,3510,4705,101.444641,161.808258,163.775192,156.700821,144.527298,136.221512,133.766953,133.642990,134.221497,136.519028,139.733902,150.642975,168.618179,185.254532,201.047928,212.857849,216.601639,205.791733,181.072723,159.114044,148.279343,144.370270,141.436386,110.072731,90.651253,105.436371,114.155388,83.006615,39.965309,15.844646,12.857870,8.149600,8.756213,8.749602,11.940514,4.271909,0.457026,0.061984,0.000827,0.312397,0.012397,0.167769,0.000000,0.208265,0.000000,3.661984,0.000000,0.000000,0.000000,0.000000 -601450.955000,4612445.550000,3544,4705,101.960342,158.472733,169.241333,158.059509,144.976883,136.571930,136.026459,134.439667,135.811584,137.621521,140.117386,152.406616,170.761993,187.059509,202.481003,214.191727,218.927261,207.811569,184.274384,161.431412,150.588440,147.133911,141.472748,112.001671,91.786789,106.679359,115.439682,83.770264,39.125637,15.137207,12.861175,8.313236,8.740513,10.855388,10.085139,4.593397,0.612398,0.119009,0.153720,0.000000,0.004132,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.955000,4612445.550000,3564,4705,125.606628,166.152084,168.986801,157.689270,145.879364,136.887619,135.714066,135.185135,136.209930,139.019852,141.143814,152.408279,171.375229,188.259521,203.846298,216.350433,219.821503,209.400024,184.482666,162.135559,152.143814,148.490921,142.854568,113.218201,92.672745,108.689270,116.515724,83.672745,39.226467,16.588448,12.986796,9.721502,8.771091,10.990927,10.680181,5.255382,0.816531,0.114050,0.132232,0.014876,0.037191,0.000000,0.010744,0.000000,1.231405,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.755000,4612445.550000,3583,4705,114.364479,165.083466,169.133072,158.017349,145.595871,137.099991,134.901657,134.190918,135.868591,138.471893,140.604126,152.099991,170.414062,187.463654,202.736389,215.422348,219.009125,209.281845,184.728119,162.273560,151.190903,147.909912,143.554535,112.438858,92.769432,108.009102,117.372742,84.653732,40.290108,16.259523,13.050431,7.800014,9.123984,11.409933,8.999187,4.640504,0.376034,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.259505,0.000000,0.000000,2.057852,0.000000,0.000000,0.000000 -601463.955000,4612445.550000,3609,4705,117.483482,164.095062,168.458694,158.913239,144.880188,139.045471,137.260345,135.962830,136.359528,139.119858,142.822327,154.061996,172.293411,189.004150,204.805801,218.210754,221.136383,211.904968,185.549606,163.128113,153.483490,148.309937,144.318192,113.037201,93.028931,107.491745,117.508270,83.698364,41.921505,17.891752,13.119854,8.211582,11.118199,11.291752,11.556215,5.145463,0.992564,0.228101,0.168596,0.161157,0.011570,0.069422,0.006612,0.004959,1.233058,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.755000,4612445.550000,3623,4705,122.400009,161.598343,166.482651,158.590088,144.375214,137.201660,136.515701,134.400009,135.788437,138.052902,141.813232,152.375214,170.523956,187.961975,202.796677,216.011551,219.548752,208.573547,184.276016,162.350418,151.887604,148.424789,143.309097,112.647942,91.838028,108.441330,117.358688,84.829773,40.168613,16.919027,13.028117,7.261171,9.331423,9.102496,9.700016,4.729762,0.740498,0.083472,0.247935,0.152066,0.000000,0.092562,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.555000,4612445.550000,3637,4705,115.652908,162.363632,167.884293,160.495865,144.876038,136.950409,135.553726,136.363647,136.933884,138.925613,142.421494,152.809921,172.305786,188.809921,205.123962,217.892563,219.669418,209.900833,185.826447,162.272720,152.123962,148.289261,144.363632,113.140503,93.917374,108.330589,119.314056,85.595055,39.528942,18.069439,13.123986,6.846295,10.560349,9.568613,11.581835,6.813234,0.684300,0.851241,0.374381,0.000000,0.031405,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,0.949587,0.000000,0.000000 -601474.155000,4612445.550000,3660,4705,115.144646,159.805801,164.500015,156.078522,143.177704,135.309937,135.450424,133.202499,134.442169,136.954559,139.863647,151.747955,169.384308,187.070267,201.987625,215.425629,218.557861,208.384308,183.020676,160.723160,149.161179,147.500015,140.863647,111.855385,90.541336,105.855385,115.053734,84.260345,38.896713,15.395059,12.805804,6.552906,8.443818,8.247950,7.809105,5.301662,0.453720,0.440496,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.755000,4612445.550000,3683,4705,127.890091,164.410767,168.071930,160.303314,146.898361,138.642151,137.270264,136.005798,136.741333,139.741333,142.088440,153.733063,171.832260,188.914902,204.369446,218.088455,221.501678,210.766144,185.881851,162.914886,151.691742,148.584305,144.336380,111.658684,91.898354,107.286789,115.906624,84.832253,39.369438,16.871092,13.121506,7.051252,9.574396,8.916544,7.643815,2.837196,0.806613,0.078513,0.172728,0.259505,0.086778,0.000000,0.004959,0.015703,0.000000,0.000000,0.000000,0.000000,1.147108,0.000000 -601484.155000,4612445.550000,3710,4705,121.869438,166.720657,170.968582,159.679337,147.199997,139.026443,137.588425,136.588425,137.406601,140.233047,143.059494,154.646271,172.861145,190.687592,206.423141,219.927261,222.340485,213.191727,188.117355,164.704132,154.431396,151.067764,146.654541,115.332253,93.555389,108.307457,118.770264,86.489273,41.158695,17.386793,13.332251,7.979351,10.645472,11.902496,12.105802,3.878520,1.446284,0.393390,0.028099,0.108265,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.155000,4612445.550000,3725,4705,130.790100,165.980179,168.104126,158.641342,144.368622,137.980194,135.856216,135.682663,136.211578,138.723999,141.575241,154.533920,171.492569,189.352066,204.004959,216.310745,221.467758,212.269424,185.674377,162.095886,151.368622,149.814896,142.872757,113.004982,92.203323,105.690933,117.376869,85.145477,38.352081,15.698366,12.988449,6.228938,8.989272,10.110760,10.165304,4.033891,0.983473,0.138843,0.225620,0.042976,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.355000,4612445.550000,3741,4705,99.743820,163.537186,168.322311,158.033051,146.099167,136.355377,135.842987,134.966965,137.272720,140.206604,142.297516,152.752060,171.247940,189.388428,205.933884,219.057846,222.603302,212.735535,187.165283,164.842972,153.652893,149.611572,144.181824,114.247940,92.198364,107.603317,116.024803,85.842995,39.685970,16.455391,13.107457,9.197533,8.890924,9.720678,10.485141,4.330586,1.446283,0.339671,0.090083,0.097521,0.345456,0.000000,0.072727,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.955000,4612445.550000,3759,4705,116.723160,166.309937,170.764481,163.070267,149.119858,141.566132,138.210754,138.061996,139.045471,142.392578,145.235550,157.028946,174.590927,192.392578,208.574402,221.822327,224.301666,214.334732,190.210754,166.301666,155.020676,150.764481,147.681839,114.888443,94.144646,110.640511,118.698364,87.144646,42.128120,15.815722,13.425639,7.016544,9.296711,10.104147,10.514065,5.584305,0.251242,0.030579,0.013223,0.014050,0.004959,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.555000,4612445.550000,3802,4705,122.589272,169.779358,171.448776,162.828949,150.638870,140.052094,138.762833,137.919861,138.886795,142.754562,145.333084,156.746307,174.134735,192.523163,209.151245,221.523148,225.804138,215.762817,189.961182,165.928116,154.010773,152.473572,147.390930,116.713234,94.192574,108.614067,118.547951,85.936386,41.291756,16.716547,13.399191,7.397534,10.391752,10.324810,10.931420,6.018191,1.123971,0.165290,0.075207,0.008265,0.022315,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.555000,4612445.550000,3817,4705,125.293404,169.144623,171.161163,162.293396,149.632233,140.012405,137.334732,137.177704,138.309937,143.301666,144.979355,156.342972,174.384293,192.805786,208.574387,222.144623,225.475204,216.764465,190.690079,167.185944,154.690079,152.690079,145.772751,115.161171,94.714890,108.309937,118.607452,86.409103,40.797543,16.701672,13.252085,7.719021,8.893405,9.414892,10.181007,4.629761,0.772730,0.159504,0.000000,0.000000,0.023967,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.555000,4612445.550000,3832,4705,121.185143,169.400024,172.201675,162.631424,149.309113,139.276047,138.342163,138.416550,139.383484,143.044647,144.623154,156.813248,174.350433,192.548782,207.895874,221.747116,225.788437,216.457855,190.152084,165.821503,155.085968,151.259521,146.581833,115.763657,94.887619,108.284317,119.292580,86.953735,39.664482,16.705803,13.325638,7.635551,11.103323,10.547124,9.261171,4.618189,0.942978,0.150414,0.102480,0.077686,0.000000,0.000000,0.078513,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.355000,4612445.550000,3846,4705,125.360344,172.071075,168.682648,161.955368,148.872726,138.823151,136.682648,137.732224,137.773544,141.930588,143.881012,155.914047,172.955368,191.302475,207.352066,222.228088,224.897522,214.988434,188.856201,164.922318,154.905777,150.128922,143.963654,115.459518,92.558693,108.178528,118.591751,86.674393,41.104153,15.332248,13.087622,5.876046,8.785966,8.181007,8.982659,3.964471,1.139672,0.080166,0.233885,0.000000,0.047108,0.000000,0.066116,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.355000,4612445.550000,3861,4705,111.307465,172.315720,170.927277,161.505798,148.819839,138.720673,137.985138,136.869431,137.687607,142.266129,143.059509,154.761993,172.216537,191.638031,206.514053,219.943817,223.728943,214.051254,187.348770,164.563644,153.638031,150.968597,145.018188,113.290916,90.952072,106.761993,117.514061,85.538864,38.927292,15.836381,13.183491,5.070257,8.484312,7.213238,9.798362,4.084303,0.792565,0.005785,0.096695,0.085124,0.171902,0.000000,0.000000,0.000000,0.000000,0.000000,2.297521,0.000000,0.000000,0.000000 -601517.155000,4612445.550000,3875,4705,126.601669,174.097534,171.676041,164.337219,152.634735,140.436386,140.279358,139.808289,140.386795,144.138870,145.105804,157.527298,175.932236,194.725632,209.758682,222.758682,225.981827,216.262817,190.163635,166.981842,156.188446,151.485977,146.890930,116.742165,95.436378,109.659515,119.287621,86.709106,41.841339,16.395061,13.353739,8.181003,11.195058,10.824809,10.014891,4.202487,0.529756,0.381819,0.085951,0.000000,0.230580,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.755000,4612445.550000,3888,4705,121.493401,168.964478,172.700012,164.914886,150.633896,140.691742,140.567780,138.807449,140.171082,142.774384,144.336380,155.261993,173.336380,191.443817,207.171082,220.716537,224.799179,214.881821,188.014053,166.030594,153.650421,149.584305,144.245468,115.278519,92.683479,108.898354,117.981003,85.823975,40.278534,17.845472,13.113242,7.575217,8.729769,9.039685,9.668610,2.119840,0.649589,0.178513,0.093389,0.047934,0.000000,0.000000,0.022314,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.355000,4612445.550000,3906,4705,120.976875,175.976868,171.985138,163.142151,151.828110,139.059509,138.456207,138.456207,137.902496,143.059509,144.423157,156.613251,173.183487,191.034714,206.819839,219.133896,224.233063,214.042984,187.720673,164.753723,152.042984,149.852905,144.563644,113.927292,93.001671,106.902496,117.728943,84.852913,38.795063,16.373573,13.142169,5.903315,9.530594,10.893404,9.871088,3.076040,0.652068,0.429754,0.070248,0.123141,0.000000,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.155000,4612445.550000,3940,4705,118.012413,176.359528,174.714890,166.417374,152.136383,140.144638,139.475220,138.871918,139.607452,144.202499,145.086792,156.334732,173.202499,192.128113,208.764481,221.425629,224.417374,215.673569,188.103317,165.342987,153.723160,149.847122,144.954559,114.185966,93.838860,107.574394,116.723160,86.913239,39.582664,16.018200,13.177705,5.966124,9.607454,9.044644,9.454558,4.362817,0.678515,0.286779,0.304133,0.000000,0.025620,0.000000,0.027273,0.176860,0.000000,1.209091,0.000000,0.000000,0.000000,0.000000 -601533.355000,4612445.550000,3956,4705,127.501678,177.113235,175.014053,166.460342,153.138031,141.088440,139.361160,139.485138,140.476868,144.650421,144.873566,156.617371,172.328110,193.179352,208.898361,221.485123,225.146271,215.815689,188.625626,165.055374,154.600830,149.625626,145.881821,115.121498,93.526474,106.815712,117.402489,85.212410,39.195885,15.820680,13.262002,6.425629,8.383486,10.285138,9.446294,4.904966,0.740498,0.433061,0.163637,0.042976,0.000000,0.000000,0.004959,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.355000,4612445.550000,3971,4705,129.618195,179.130569,173.609909,163.750397,149.882645,138.890930,138.791763,138.295883,138.890930,141.932236,142.634735,154.973557,172.295853,190.766937,205.824783,218.990067,221.642960,211.097504,185.006607,161.229736,151.229752,146.527283,143.436386,112.733894,93.320671,106.138847,114.981827,83.717369,38.122334,14.667788,13.039688,7.381004,8.779354,8.348776,8.434723,3.722321,0.348761,0.316529,0.209091,0.002479,0.034711,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.355000,4612445.550000,3986,4705,132.277695,180.914047,175.153717,164.641312,151.013214,141.153717,140.790085,138.195038,139.319000,142.211563,143.748764,156.013214,173.038010,190.897522,205.327271,218.715698,221.963638,210.261154,184.178513,162.269424,152.021484,148.897522,142.236359,112.294228,93.740509,107.533897,115.426460,83.062820,40.128944,17.757870,12.930596,10.804146,12.201670,10.904974,11.828114,5.622323,1.063639,0.457026,0.495042,0.141323,0.000000,0.000000,0.054546,0.334711,0.000000,1.184298,0.000000,0.000000,1.304132,0.000000 -601542.355000,4612445.550000,4001,4705,135.245468,175.410751,176.385956,164.534714,152.815720,140.691742,141.311584,140.311584,139.278519,143.154556,143.956207,155.881821,174.567780,191.344635,205.228943,218.741333,223.014053,210.815720,183.749603,161.063644,150.865295,148.757858,143.790924,112.716537,93.443810,105.212410,115.460342,82.228935,38.708282,17.424812,13.071919,10.507451,10.451258,12.049603,10.595881,4.248767,1.486780,0.161158,0.138017,0.185952,0.137190,0.046281,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.755000,4612445.550000,4018,4705,129.084320,175.381821,175.100830,163.241333,151.406616,139.456207,140.456207,138.687607,138.819839,141.447937,143.142151,154.795044,173.166946,189.282669,203.638046,217.621490,219.852905,208.836380,181.555374,160.398361,149.233063,146.431412,140.745468,110.968613,91.332260,104.026474,113.861176,82.100853,38.414898,16.626465,12.795060,11.076873,8.636381,10.100843,10.830594,5.004140,0.409092,0.237191,0.223967,0.004959,0.004959,0.319835,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.155000,4612445.550000,4035,4705,124.090935,182.057846,174.181839,165.338852,149.925629,139.859528,141.603317,139.636383,138.958694,141.471085,143.380188,155.512405,172.603317,190.140503,203.487610,217.487610,218.413223,208.066116,181.743805,160.008286,148.719025,148.082657,141.454559,110.809937,93.429771,105.578529,113.809937,82.975220,40.347126,15.834729,12.859525,9.404971,11.610764,12.365307,11.526462,4.131413,0.548762,0.368596,0.590084,0.163637,0.156199,0.000000,0.104133,0.397521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612445.550000,4056,4705,122.245476,182.146286,174.658707,164.121521,151.881851,140.237198,139.650421,138.460342,138.336380,142.270264,142.542984,154.534729,173.104965,189.419022,204.460342,217.584305,219.989273,207.113235,181.014053,159.873581,148.675232,145.832245,140.609100,109.890099,91.518196,102.898361,112.865311,79.113243,39.303329,15.357043,12.782664,10.101668,10.101670,9.751256,9.548775,4.685960,0.680167,0.652067,0.000000,0.000000,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,1.857851,0.000000,0.000000 -601557.955000,4612445.550000,4079,4705,123.823982,176.195877,176.997528,165.700012,150.609100,140.005814,139.906631,138.840515,138.328125,142.171097,141.989288,154.741333,171.311584,188.030594,202.435562,215.823975,218.600830,205.790939,180.361160,157.063644,147.807449,144.303329,138.972748,107.766136,90.898361,102.716545,110.567787,79.642166,38.195885,15.526465,12.633904,10.380179,9.862828,8.543818,9.984311,5.204141,0.522316,0.317356,0.154546,0.064463,0.123967,0.000000,0.237191,0.269422,0.000000,1.332232,0.000000,0.000000,0.000000,0.000000 -601561.755000,4612445.550000,4098,4705,122.021500,180.790100,175.740509,164.211578,148.847946,138.459518,139.897537,138.162003,137.641342,141.707458,141.806625,155.244644,172.294235,189.633072,204.228119,217.327286,220.029770,205.823151,180.319016,159.723984,149.517365,145.847946,140.963654,109.004974,90.393402,102.244644,113.137199,79.798370,37.434731,15.719028,12.814895,11.485965,9.272743,10.048778,9.102493,5.862820,0.565290,0.221488,0.100827,0.071075,0.036364,0.000000,0.169422,0.000000,0.000000,0.000000,1.161984,0.000000,0.000000,0.000000 -601566.355000,4612445.550000,4121,4705,127.647125,186.382645,175.820663,165.481827,149.977692,139.556198,140.754547,138.242157,138.944641,142.126450,142.159515,154.647110,171.630585,189.985962,202.961166,218.118195,218.547943,204.903305,179.556198,158.795868,147.936371,144.936371,139.663635,107.514893,91.291748,102.870262,112.341339,79.547951,37.407459,15.289273,12.696713,11.420676,9.627289,10.842993,10.245469,4.656207,0.574381,0.338844,0.048760,0.120662,0.334712,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601570.155000,4612445.550000,4140,4705,134.083481,184.860336,179.232239,167.513229,150.893402,140.438858,141.207458,140.513229,140.381012,144.843811,143.728119,156.926453,172.199188,190.711578,204.926453,217.744644,218.554565,205.571091,181.149597,158.819016,148.381012,145.761169,140.281830,110.000839,92.290092,105.835548,112.546295,82.157867,39.116550,15.530594,12.752912,10.923983,8.902497,11.119025,9.855386,5.604969,1.292565,0.050413,0.019835,0.502480,0.161158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.355000,4612445.550000,4171,4705,144.419861,191.775208,179.543808,169.535538,152.758682,140.229782,142.180191,140.188446,141.659531,146.047958,144.981842,157.428101,172.700836,191.361984,205.328934,218.866119,220.089264,205.990082,180.130585,159.783478,148.527283,145.601669,140.709106,110.775223,93.047951,104.469437,111.535553,79.981834,39.461174,15.590928,12.791755,14.305801,9.218199,10.771091,10.762827,6.300836,0.208265,0.476860,0.151240,0.128926,0.000000,0.000000,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.555000,4612445.550000,4192,4705,157.254562,197.114059,179.965302,174.105789,155.428101,143.502487,144.494217,142.990082,144.452896,150.485962,147.593399,159.593399,176.535538,193.733887,208.337204,222.519028,222.213242,207.957047,183.196701,162.866119,152.519012,148.849594,142.981827,113.510750,95.353729,108.081001,114.287613,81.816544,42.345478,17.918201,12.998365,13.366957,10.642992,10.702497,11.489272,5.789267,1.274383,0.261158,0.085951,0.114050,0.111571,0.000000,0.003306,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.355000,4612445.550000,4216,4705,149.411591,198.312408,180.328934,171.990082,154.899185,143.990112,144.436386,143.866135,144.130600,151.552078,148.089264,161.014877,175.849594,194.915710,209.361984,221.676041,222.783478,207.593399,184.717361,162.328934,151.552078,149.948761,142.345474,112.006622,95.229767,108.395058,113.709106,80.717377,39.667786,15.839686,12.940515,14.288447,11.134727,11.072742,9.538857,5.846290,0.747110,0.213224,0.365290,0.024794,0.263637,0.000000,0.231406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.755000,4612445.550000,4243,4705,149.632248,200.210754,177.640518,170.086792,155.252075,141.417374,143.847122,142.243820,142.904968,151.152908,145.309937,157.764481,174.400848,193.128113,208.466965,221.293411,221.119858,205.739685,183.219025,162.268616,150.921509,148.210754,144.590927,113.252083,96.367783,111.500015,113.756218,82.111588,41.946301,18.645472,13.144648,14.087619,9.336380,11.022331,10.027287,4.681000,0.577688,0.281819,0.000000,0.017356,0.317356,0.000000,0.013223,0.024794,0.000000,0.000000,0.000000,0.000000,1.356199,0.000000 -601596.755000,4612445.550000,4273,4705,113.633080,166.021484,173.385132,163.128922,147.856201,139.872726,138.872726,138.732224,139.434708,142.071075,144.352066,155.748764,172.376877,188.591751,204.244644,216.343811,218.046295,206.360336,181.566956,158.947098,149.112396,145.046280,140.690903,111.765312,91.864487,105.905807,112.765312,81.748779,39.376881,16.720680,12.790103,9.102491,9.807457,10.864481,10.609107,5.060340,1.063638,0.471902,0.000000,0.013223,0.034711,0.000000,0.015703,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601599.755000,4612445.550000,4288,4705,125.876869,172.885117,171.182648,162.852081,148.719849,139.992569,139.042160,139.124802,140.133072,141.728119,144.265305,154.438858,172.827271,188.182648,203.686768,214.819000,218.058670,207.265289,180.967758,159.240509,148.794235,144.852081,141.009109,110.290092,92.785965,106.430588,113.290092,81.926460,38.381008,16.637209,12.819026,9.065300,10.182660,10.738859,9.152079,5.248769,0.429753,0.554546,0.621489,0.021488,0.014876,0.000000,0.130579,0.202480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.755000,4612445.550000,4313,4705,112.580185,168.720673,170.952072,163.200012,149.051254,140.819839,140.373566,138.489273,139.671082,142.910751,145.687607,156.158691,172.745468,189.233063,203.125626,214.811584,217.522324,206.406616,181.241333,159.249603,147.943817,145.910751,141.109100,111.687614,93.042999,107.332253,113.828110,81.935562,41.274403,16.838861,12.828118,9.081830,9.840513,10.101671,12.476048,4.533893,1.114052,0.107438,0.188430,0.008265,0.009091,0.000000,0.019835,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.555000,4612445.550000,4342,4705,120.685143,165.833908,171.924820,161.949600,150.552917,140.404144,139.098373,139.900024,140.098373,142.412415,145.057037,155.652084,173.371094,188.916534,203.941330,214.428925,216.949585,206.255371,180.321503,159.073578,148.280182,144.594238,139.627289,110.709930,93.280182,107.602493,112.776054,80.809113,40.966137,18.333076,12.693408,8.007450,9.119024,10.771091,10.581006,5.632240,0.504960,0.144628,0.000000,0.026447,0.011570,0.240496,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612445.550000,4360,4705,120.371918,169.768616,171.297531,163.148758,149.933899,140.776871,140.024811,139.380188,139.966965,142.826462,145.735550,156.099182,173.595062,189.512390,204.380173,214.760330,217.314056,205.033051,180.991745,158.404968,147.933899,145.685974,139.636383,110.677704,92.743820,106.702492,113.148773,81.933899,39.198364,18.201672,12.694235,8.807452,10.126464,11.726463,10.859518,4.629762,0.612398,0.890911,0.072727,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.107438,0.000000,0.000000,0.000000 -601619.955000,4612445.550000,4389,4705,119.443817,167.509918,172.005798,163.104950,149.782654,143.080154,141.906601,140.733047,142.609085,144.435532,146.452057,157.394226,174.179352,190.278519,205.005798,218.377701,218.295044,206.939682,182.551254,161.303299,150.171082,145.857025,142.063629,112.344643,93.981010,107.394234,115.179359,84.071922,42.047131,19.040514,12.914895,8.081830,11.281837,10.977703,12.082661,6.042159,0.842151,0.105785,0.487604,0.008265,0.104134,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601623.155000,4612445.550000,4405,4705,111.084312,162.059509,171.976868,165.084305,150.745468,141.357040,141.596710,139.902496,140.290924,143.059509,146.828110,157.034714,173.927277,191.158691,204.885956,214.993393,217.464478,206.018188,181.257858,158.514053,149.613235,145.778519,141.018188,112.042999,92.042999,105.340523,113.299187,82.266144,40.894238,19.245472,12.819854,7.841335,9.278530,11.409108,12.125635,5.885959,0.598348,0.000000,0.078513,0.000000,0.100001,0.000000,0.000000,0.168596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.355000,4612445.550000,4421,4705,119.197540,158.032242,169.519852,160.900024,147.470261,139.866959,138.139694,136.866959,139.214066,140.660355,144.048782,154.759521,171.585968,187.519836,201.437195,213.453720,216.354553,205.660339,179.437210,158.891754,147.453735,143.577698,140.172745,110.032249,92.462006,105.701675,113.321510,81.462006,39.222332,15.647126,12.742993,5.753729,7.705801,9.477702,7.615714,3.920669,0.843804,0.051240,0.233885,0.074380,0.000000,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.555000,4612445.550000,4437,4705,106.644646,171.181854,172.685989,163.421524,149.355408,141.355392,139.553741,139.644638,141.099182,143.892578,145.727295,156.247955,173.223175,189.942184,202.355408,215.057877,216.314087,206.537216,181.173584,158.223175,147.801682,144.371918,139.272751,110.843002,92.843002,106.520683,113.049614,83.214890,41.396709,15.866960,12.661175,7.274391,9.835554,11.615719,10.191751,6.916539,0.820663,0.110744,0.228926,0.019009,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.352067,0.000000,0.000000 -601632.555000,4612445.550000,4452,4705,113.514069,164.530594,169.761993,161.398361,149.018188,139.381821,139.439682,138.472733,138.952072,141.613235,143.497528,154.175217,172.166946,188.795044,201.985138,214.323975,215.927277,205.431412,179.811584,157.761993,146.745468,142.836380,139.563644,110.695885,90.175217,104.778534,112.679359,80.307457,40.919025,16.221508,12.687621,7.560344,9.951255,10.462001,9.514065,3.972736,0.788432,0.107438,0.070248,0.072727,0.010744,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601635.155000,4612445.550000,4465,4705,126.251259,165.838013,171.135544,162.160355,149.011597,138.986801,139.433075,137.036377,138.862823,142.647949,144.284317,154.300842,171.829773,188.309113,201.168610,213.829758,215.895874,203.904144,179.209930,157.218201,146.573578,142.317368,137.036377,109.143822,91.152084,104.044647,110.689278,80.185143,40.722336,15.333902,12.457870,8.726460,8.695056,8.400017,10.767783,3.523148,0.508265,0.102480,0.000000,0.004959,0.003306,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.555000,4612445.550000,4487,4705,118.335556,172.748779,175.079346,165.773560,151.624802,142.814896,140.657867,140.228119,140.765305,143.071091,145.666122,156.699188,174.310760,190.112411,203.476044,215.434723,216.938858,205.525635,180.847946,159.244644,148.947113,144.186783,138.781830,110.500839,93.409935,105.839691,114.112411,83.591751,42.186794,16.921505,12.616548,8.885138,10.874397,10.119852,12.517370,5.445465,1.158681,0.240496,0.000827,0.071901,0.016529,0.100827,0.064463,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.955000,4612445.550000,4524,4705,104.557037,171.094238,170.069443,163.069443,150.193405,140.813248,138.829773,137.614899,138.085968,140.763657,142.838043,154.639694,170.094238,186.424820,201.085968,210.887619,212.871094,201.548782,176.540512,154.697540,143.474396,139.986801,133.763641,106.292572,88.813232,102.234718,110.507446,80.317368,39.838036,16.642166,12.160350,6.081830,9.128942,9.732248,8.955386,4.810753,0.664465,0.208265,0.070248,0.003306,0.000000,0.000000,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,1.129752,0.000000 -601651.355000,4612445.550000,4546,4705,103.428947,162.371094,168.544647,160.362823,146.519852,138.866959,136.230591,135.338043,137.081833,139.966141,141.123154,152.379364,168.478531,185.057037,197.090103,209.139694,211.156219,199.726471,174.908279,153.428940,142.090103,138.032257,133.718201,105.362823,87.288452,101.924812,108.007446,78.048782,37.999191,14.376051,12.156218,6.119844,7.603323,8.303323,10.239684,3.535546,0.165290,0.000000,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.155000,4612445.550000,4565,4705,112.758690,172.615723,173.756210,165.458694,149.384308,141.623978,139.086792,138.227295,138.111588,141.276871,142.723160,153.136383,171.309937,186.731415,200.235535,211.417374,212.136383,201.904953,176.037201,155.169434,143.814072,140.731415,133.590927,106.409103,89.053734,101.318199,110.103325,80.318199,38.533073,15.676876,12.144646,6.454557,9.677703,12.398362,10.315717,4.996704,1.136366,1.028927,0.130579,0.368596,0.202480,0.000000,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.355000,4612445.550000,4581,4705,111.762817,169.161179,168.533081,160.004150,148.599182,139.888443,138.789276,138.954559,138.714890,140.888443,143.252075,153.896713,169.475220,185.855392,199.285126,211.607437,211.921494,202.119827,176.061996,154.541336,143.376053,140.202499,134.681839,106.483490,88.681831,101.607452,108.781006,79.739685,37.533077,14.956217,12.243821,5.092573,7.909107,7.785139,7.640511,4.559513,0.285125,0.142149,0.123141,0.002479,0.077686,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,1.038017,0.000000,0.000000 -601663.355000,4612445.550000,4606,4705,123.445465,161.534729,168.038849,158.989288,149.815720,140.286789,138.823975,138.972733,139.700012,143.724808,144.716537,155.840500,172.939697,187.840500,203.005798,212.947937,214.914902,204.749603,179.923172,157.675217,145.336380,142.228943,136.972733,107.815712,89.774391,101.807449,110.518188,80.832245,39.518204,16.081837,12.452085,5.966126,9.196712,9.625634,9.352906,3.519841,0.866118,0.769422,0.962811,0.466116,0.230579,0.049587,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.355000,4612445.550000,4626,4705,125.985138,169.970261,170.400024,161.416550,148.780182,139.912415,137.152084,134.614883,134.978531,137.829773,140.590103,150.920685,167.755386,183.895889,197.970261,209.069443,210.350433,199.928940,177.110764,154.523987,143.639694,140.821503,136.036377,107.102493,89.771912,103.995056,111.895882,82.317368,38.482662,17.410761,12.366961,5.816539,8.846297,10.237206,9.701666,4.683480,0.876035,0.440497,0.000000,0.008265,0.408265,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.755000,4612445.550000,4653,4705,127.857864,179.238022,173.684311,164.163666,152.981842,142.056213,139.882660,140.403336,139.791763,144.238037,143.800018,153.998367,170.758698,188.609940,200.957047,211.725647,213.758698,201.948776,177.312408,154.791763,143.213242,139.932251,135.800018,106.138855,89.130592,102.056213,110.890923,81.221504,39.188454,17.401670,12.345473,7.107449,10.099190,11.694231,9.815719,2.742980,0.842977,0.400828,0.000000,0.000000,0.000000,0.000000,0.024794,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.355000,4612445.550000,4686,4705,123.304146,179.436386,173.725647,165.254562,152.403336,142.031433,141.948776,139.915726,141.238037,145.634735,145.733902,155.758698,173.700851,189.816528,202.692566,213.857864,213.973557,203.981827,178.328949,154.452911,144.923996,141.130585,134.618195,107.791740,88.353729,101.114059,110.477692,82.056213,40.081009,15.705804,12.238035,4.721498,9.288447,9.685966,9.543816,3.382651,0.838845,0.383472,0.215703,0.004133,0.010744,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601684.355000,4612445.550000,4711,4705,109.990913,178.712402,174.365295,166.538849,152.571915,140.456207,138.067780,138.357040,136.985138,140.613235,141.332245,151.241333,167.166946,184.836380,198.547119,207.778519,210.753723,199.679352,174.861160,152.423157,140.985138,137.299179,133.109085,105.555374,88.547119,100.431404,108.753723,79.960342,39.200016,16.279356,12.100845,4.073562,7.936381,8.392577,7.853732,3.548767,1.609920,0.261984,0.499174,0.000000,0.078513,0.000000,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601687.755000,4612445.550000,4728,4705,135.742157,183.139694,175.007462,165.528122,152.825638,141.519852,140.792587,140.536377,139.569443,144.164490,143.569443,155.660355,171.627289,188.255371,202.346283,211.577667,212.404114,202.247116,176.561172,154.189270,142.676880,139.057037,132.990921,104.941345,86.437210,103.098366,110.263649,81.552910,39.809109,16.321507,12.090102,6.011581,9.317371,8.971090,8.647948,4.705793,0.816531,0.232232,0.114050,0.033058,0.033885,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.555000,4612445.550000,4742,4705,124.775223,176.973572,174.543823,166.800018,153.114075,140.609940,138.419861,137.998367,137.180191,140.163666,140.618210,151.485977,167.585144,185.428116,198.345474,208.626465,209.056213,198.601669,174.519028,152.494232,140.667786,136.833069,133.436371,104.568611,86.642990,99.965302,107.411583,82.428116,39.047951,17.014893,12.130598,6.074390,8.377702,7.300014,8.492575,4.643811,0.635538,0.339670,0.109918,0.157025,0.439671,0.000000,0.013223,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.355000,4612445.550000,4761,4705,134.927292,186.819824,179.067764,169.150406,155.092575,142.092575,141.142151,141.307449,139.266129,145.183487,144.687607,154.712402,171.902466,188.423141,201.439667,211.861145,214.381805,201.373550,177.166931,155.158691,142.753723,139.042984,135.018204,105.712418,88.323982,100.489273,110.720680,82.274399,39.133907,17.514067,12.274399,4.571911,9.481009,7.580181,10.182659,3.642156,0.979341,0.519836,0.202480,0.027273,0.103306,0.000000,0.021488,0.149587,0.000000,1.328926,0.000000,0.000000,0.000000,0.000000 -601697.155000,4612445.550000,4775,4705,125.966957,182.735550,179.727295,165.876053,154.404968,141.371918,141.008286,141.165298,139.785141,143.752075,142.776871,153.528946,169.793411,187.090927,201.338852,210.115723,210.727295,199.735550,175.314072,153.768616,142.247955,139.190094,132.636368,104.851257,86.925636,99.628113,109.867783,80.074394,37.859524,16.038034,12.057871,5.131415,7.869436,7.171088,9.695883,3.419015,1.175210,0.332232,0.230579,0.478513,0.000000,0.000000,0.000000,0.581819,0.000000,0.000000,1.191736,0.000000,0.000000,0.000000 -601700.155000,4612445.550000,4790,4705,120.738022,176.134720,176.655380,166.985962,151.729752,140.572739,140.688431,138.523148,136.870255,138.217361,140.440506,150.713226,168.308273,183.994217,195.870255,206.209091,206.184311,195.465302,169.754547,148.762817,138.324799,135.151245,129.663635,101.787613,84.985954,97.589264,105.886780,76.440506,36.994236,16.113241,11.787621,10.519024,9.597535,9.809931,10.646296,5.246290,1.316532,0.362811,0.774381,0.000000,0.059504,0.000000,0.013223,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.755000,4612445.550000,4818,4705,125.462830,174.148773,176.479355,165.752075,149.702499,140.074402,137.512405,136.388443,135.818192,137.768616,137.661179,149.892578,166.123978,181.628113,194.074402,204.429764,205.181839,192.603317,167.404968,147.504150,136.305801,133.578522,126.909103,100.454559,84.380180,94.942162,104.570267,76.363655,35.355392,16.861177,11.537210,8.981832,9.316544,9.853732,9.666957,3.595049,1.156200,0.166943,0.194215,0.000000,0.000000,0.000000,0.044628,0.138017,0.000000,0.000000,1.175207,0.000000,0.000000,0.000000 -601712.355000,4612445.550000,4851,4705,104.937210,172.515717,176.201675,164.028122,148.515717,137.614899,137.309113,135.143814,134.912415,136.887619,137.110764,147.821503,165.317368,181.160355,192.821503,203.771927,202.854568,190.747131,166.424820,145.424820,133.953735,132.565308,126.490921,98.391754,82.970268,94.755394,103.606628,73.160347,34.879356,14.464480,11.499193,10.230592,8.619849,8.287617,9.616544,3.322320,0.408266,0.065290,0.114877,0.059504,0.075207,0.000000,0.114876,0.695869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.955000,4612445.550000,4864,4705,125.649597,177.128922,174.343796,164.269440,149.790100,137.492569,137.616547,135.723984,134.740509,136.624802,136.740509,147.914062,165.385132,180.864456,193.426437,203.955368,203.682648,191.285950,165.996704,146.302490,134.657867,131.847946,125.418198,98.029762,81.517380,93.624809,103.517365,74.566963,34.500847,15.339688,11.401671,7.584310,7.872740,8.276047,8.691750,4.457860,0.498349,0.100827,0.119835,0.000000,0.000000,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.818182,0.000000,0.000000 -601719.155000,4612445.550000,4885,4705,115.890106,178.055405,177.691742,164.435562,149.716553,137.989288,137.683502,134.881851,134.914902,136.609116,136.493408,148.237213,165.518204,180.807449,193.716537,203.435547,202.328110,190.452072,165.716553,145.774399,134.642181,132.096725,125.609108,97.749611,81.228951,92.931427,103.460358,75.361183,35.700016,15.656217,11.419028,11.164478,8.076047,9.105798,10.103321,3.908274,0.599176,0.262811,0.307438,0.000000,0.132232,0.016529,0.000000,0.000000,0.000000,0.000000,1.095041,0.000000,0.000000,0.000000 -601724.555000,4612445.550000,4912,4705,130.368622,184.195053,178.319016,164.798355,150.814896,139.244644,138.442993,136.517365,135.566956,137.500839,136.649597,149.162003,165.376877,181.666122,194.112411,203.054565,204.633072,190.211578,166.079346,144.914062,135.451248,132.624817,125.236382,98.682663,81.922333,94.723991,104.310768,75.781837,35.071095,15.608282,11.385144,10.814065,8.794229,9.120676,8.795881,3.487610,0.719011,0.396695,0.000000,0.009918,0.128926,0.000000,0.324794,0.121488,1.467769,1.233884,0.000000,0.000000,0.000000,0.000000 -601727.355000,4612445.550000,4926,4705,136.585144,182.138855,176.766968,163.180191,147.791763,137.047958,137.609940,135.023148,134.535553,137.452911,136.246307,148.411591,164.593414,180.981842,192.841324,204.295868,202.188431,189.328934,165.345474,143.047958,133.428116,129.469437,124.709106,96.733894,81.386780,93.428108,103.758690,72.808281,34.370266,13.226462,11.337208,9.128939,7.379353,8.305799,8.072742,3.451247,0.417357,0.544629,0.000000,0.000000,0.066116,0.000000,0.069422,0.053719,0.000000,1.164463,0.000000,0.000000,0.000000,0.000000 -601731.155000,4612445.550000,4945,4705,136.967789,185.058685,179.306625,166.686783,149.546295,138.637207,139.248779,136.571091,135.521500,138.901672,137.157867,149.091751,165.033890,181.488449,194.124802,204.860336,203.876877,190.116547,166.909927,146.232239,135.504974,131.934723,126.372734,97.033897,82.240509,95.587616,104.017365,77.645470,35.967789,14.766960,11.488449,9.947124,10.490097,9.994230,10.538033,4.749597,1.150417,0.080166,0.066116,0.002479,0.000000,0.000000,0.066942,0.259505,1.276860,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.155000,4612445.550000,4960,4705,133.337204,190.758682,176.378525,166.519028,150.709091,138.957031,138.006622,135.320663,135.543808,139.667770,136.948761,147.973557,163.932251,180.816528,193.345459,203.940506,202.122314,188.915710,164.436386,145.072754,133.304138,131.494217,125.254555,96.973557,80.733902,94.031410,103.428108,74.461182,35.692581,14.674398,11.386794,11.023157,8.557864,8.452907,8.986792,3.487611,0.691737,0.238017,0.131405,0.081819,0.000000,0.000000,0.216529,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612445.550000,4980,4705,117.461998,190.247116,179.437195,168.561157,152.627274,138.238846,137.966125,136.519852,136.685120,140.280167,137.255371,148.205795,164.519836,181.933060,194.032242,204.966125,203.519836,189.610748,166.222321,145.023972,134.933075,131.643814,126.354553,96.610756,81.015717,94.519844,104.742989,74.511581,35.503326,14.140514,11.486797,11.195883,8.575223,8.555386,10.547122,4.588439,0.309092,0.421489,0.006612,0.022315,0.081818,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.155000,4612445.550000,5010,4705,140.063644,196.080185,179.220673,168.840500,152.369431,138.204147,136.873566,136.666946,136.509933,140.154556,136.576050,147.385956,164.766129,182.361160,193.865311,205.584320,204.096725,188.542999,165.171082,145.278519,133.402496,131.526459,126.154556,96.774391,79.972748,94.733070,103.030586,75.419029,35.633907,14.982662,11.468614,10.590097,6.351251,8.152906,10.041335,3.795050,1.534714,0.524795,0.225620,0.009091,0.000000,0.000000,0.071901,0.000000,0.000000,1.280992,0.000000,0.000000,0.000000,0.000000 -601753.755000,4612445.550000,5058,4705,149.462006,190.792572,179.486786,169.999176,152.602478,138.181015,138.420685,135.966141,136.230591,142.164490,137.238861,148.147934,164.371078,182.668594,194.949585,206.809097,206.114883,189.676865,166.230576,145.726471,134.776047,132.404144,127.263657,97.007454,81.561180,96.503326,104.114899,72.594231,35.023983,15.308282,11.569440,11.652081,9.377700,8.519849,8.714890,4.210753,1.679343,0.602480,0.295042,0.000000,0.000000,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.755000,4612445.550000,5133,4705,116.435555,165.278519,170.617371,159.799179,145.592575,135.303329,133.790924,131.700012,130.981003,132.592575,134.187622,145.617371,163.063644,178.989273,192.179337,202.146271,202.138016,190.344620,166.419022,144.179352,132.964478,129.551254,124.881836,95.369438,78.476875,92.848778,103.022331,75.691750,35.683495,14.995887,11.352911,7.077698,8.070264,8.495882,9.914064,3.756207,0.350414,0.157852,0.203306,0.127273,0.000000,0.000000,0.107438,0.000000,1.357025,0.000000,1.070248,0.000000,0.000000,0.000000 -601790.155000,4612445.550000,5240,4705,124.371086,171.280167,171.569412,161.106613,147.561142,138.478500,135.701660,133.784302,134.007446,135.866959,136.205795,147.784286,166.577682,182.296692,195.139664,204.437180,204.635529,192.618988,168.470230,145.792542,136.511566,132.602493,127.081833,98.577705,81.445473,94.445473,106.544640,77.495064,36.660351,15.838862,11.552911,7.464474,8.368610,8.328940,8.865304,3.482652,0.551241,0.158678,0.333059,0.064463,0.000000,0.000000,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.755000,4612445.550000,5408,4705,112.762833,167.721497,171.176041,160.589264,146.919846,137.333084,135.085144,134.176041,133.853729,134.804153,136.828949,146.837219,165.233887,181.713211,195.357849,205.217346,204.374374,194.118179,169.696701,147.514877,135.985977,132.085144,127.027298,98.547958,81.126472,95.771095,107.176056,77.977707,38.134727,15.691754,11.547954,5.409100,8.144645,7.454561,8.469435,3.361164,0.560332,0.738844,0.000000,0.118182,0.000000,0.000000,0.057025,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601848.955000,4612445.550000,5534,4705,134.486786,174.759506,171.726456,161.974380,149.015701,138.147934,135.941330,134.123154,134.147949,136.238861,137.395874,148.247116,165.676865,182.875214,195.032242,206.404129,207.131409,196.081818,172.238846,149.561157,138.742981,133.461990,128.990921,100.676865,80.825638,96.536377,107.866951,80.619026,37.552914,15.537208,11.726464,6.326456,7.468611,8.313238,7.952906,2.120667,0.484298,0.047108,0.145455,0.003306,0.044629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.755000,4612445.550000,5593,4705,136.683502,183.766144,174.336395,166.865311,152.906631,140.592590,139.237213,137.154572,135.774399,140.179367,139.394241,150.700027,167.923172,185.534729,197.633911,209.774399,210.187622,199.063660,174.518204,152.542999,140.551270,136.551254,131.427292,101.774399,83.328117,96.658699,109.171089,83.129768,38.328117,14.437207,11.947953,5.157033,7.771090,7.483485,8.138856,3.922320,0.310744,0.063637,0.132232,0.008265,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.155000,4612445.550000,5630,4705,115.101662,176.440506,182.159515,165.804153,148.109940,139.159515,138.506638,135.944641,135.589264,137.192566,138.936371,150.498367,168.671921,186.647110,200.101654,211.159515,212.870255,201.010757,176.539673,153.423996,143.614059,139.969421,135.027283,105.721497,87.886780,102.366119,113.357857,82.721504,42.647125,17.107456,12.275227,10.571088,11.105802,11.016544,11.269437,6.589266,1.001655,0.056199,0.133059,0.000000,0.071075,0.000000,0.080166,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.955000,4612445.550000,5644,4705,116.129768,178.179352,180.311584,167.559509,150.311600,138.427277,138.923157,134.873566,135.138031,136.724808,137.485138,150.270279,169.410751,185.584305,198.923157,212.047104,211.452057,199.939682,176.419022,153.352921,142.443817,138.650421,134.518204,103.385971,85.716545,100.848778,113.815720,80.600845,38.906628,15.925638,12.228945,10.589270,8.981008,10.102493,11.405801,5.128107,1.807441,0.371901,0.383472,0.000000,0.000000,0.000000,0.209092,0.660331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.955000,4612445.550000,5664,4705,116.725639,184.541336,182.061996,165.764465,150.442169,137.623978,138.400848,135.285141,136.004150,138.119858,139.037201,151.128113,168.698364,185.847122,200.268616,210.731415,212.202499,198.466965,174.061996,152.334732,141.384308,138.921509,133.318192,104.161171,85.442162,101.673569,111.995880,81.376053,40.194237,15.882663,12.119854,11.948777,10.250431,10.810759,11.113239,7.961995,1.007440,0.461158,0.118182,0.130579,0.229752,0.000000,0.042149,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.355000,4612445.550000,5681,4705,130.090927,186.099213,180.074417,167.198364,150.471069,136.115723,139.297546,136.272751,136.008286,136.752106,138.537216,150.727280,169.818207,186.851273,200.024826,212.157059,213.562012,200.090942,176.256226,152.892563,142.644653,139.611603,134.272751,104.876053,86.966965,102.727287,113.504150,83.851257,42.462826,16.910763,12.206630,12.322329,9.507453,11.729769,10.268610,6.395877,0.523142,0.515704,0.303307,0.009918,0.063637,0.015703,0.109092,0.360331,1.576033,0.000000,0.000000,0.000000,0.000000,0.000000 -601882.155000,4612445.550000,5700,4705,127.272736,179.342163,178.598373,166.829773,147.036377,135.416550,136.532257,134.342163,133.325638,136.747131,136.788452,148.854568,167.358704,184.044647,198.730591,209.912415,210.738861,197.218201,173.350433,150.763657,140.482666,137.995056,132.945465,103.912407,86.408279,100.474388,111.234718,81.697533,40.052914,15.006629,12.085969,10.878529,8.483487,8.376876,10.232244,4.953727,0.686778,0.352067,0.195868,0.094215,0.079339,0.000000,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.155000,4612445.550000,5720,4705,114.559525,182.121521,179.113251,164.361176,147.923172,135.642181,138.088455,133.121506,133.972748,137.228958,136.592590,149.146301,167.658707,184.361176,198.245483,210.790924,210.361160,196.981018,174.394241,150.377716,138.443832,137.204163,132.336380,101.716545,85.270264,98.138031,110.509933,79.551254,37.038860,13.826463,12.030598,10.935552,7.594230,8.790097,9.499187,5.003312,0.384299,0.317356,0.075207,0.004132,0.066942,0.000000,0.000000,0.350414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.555000,4612445.550000,5737,4705,116.895058,188.795868,177.825638,165.966141,148.999191,134.734726,135.733063,133.303314,133.162811,136.369431,135.650421,147.625626,166.443832,183.253723,197.076889,210.333084,211.432251,198.746307,175.804153,154.804138,144.374390,142.919846,137.572739,108.481834,90.432251,103.349602,115.283485,84.134727,41.961174,18.390926,12.506630,12.340510,10.610760,11.980183,13.073568,9.204969,3.002482,2.683473,2.119838,3.371076,1.296696,2.915703,1.166944,1.317356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601892.155000,4612445.550000,5750,4705,112.081017,184.814911,184.195053,174.203323,159.186783,147.021500,147.029770,143.434723,143.294235,146.583481,145.236374,157.211578,174.897537,192.319031,204.153748,215.335571,216.038864,202.476868,178.277710,157.881012,146.723984,143.980179,139.154556,108.401665,89.865311,104.455383,115.571091,83.174393,42.641342,16.978529,12.650432,12.832248,11.038034,11.218197,11.093403,8.270259,2.624796,2.628927,1.898348,2.038844,1.960331,1.595868,1.162810,1.765290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.355000,4612445.550000,5776,4705,111.652077,179.048752,180.354538,167.032242,151.552902,138.445480,138.106628,135.470245,134.156204,138.784317,138.032257,148.742981,164.751236,182.809082,194.693375,208.470230,208.032211,195.519821,173.470230,151.263641,141.247131,137.792587,132.445480,104.007446,87.800835,101.462006,111.660355,80.247116,36.800846,15.734729,12.040515,8.745467,8.277700,8.111584,12.387620,2.592569,1.303308,0.499175,0.402480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.555000,4612445.550000,5802,4705,115.727287,169.404953,171.826447,162.752060,146.082642,135.487625,133.983490,132.214890,132.595062,135.570267,135.396713,145.628113,162.595047,178.652893,190.338837,203.512390,204.487610,192.363632,169.190079,148.867767,138.413239,133.768616,130.363647,101.983490,84.661171,98.066132,106.785141,77.553734,36.652916,13.094231,11.851258,5.952076,8.255387,8.537204,8.114888,3.540503,0.791737,0.170249,0.076033,0.260331,0.134711,0.028099,0.000000,0.259504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.755000,4612445.550000,5818,4705,116.215714,169.447113,171.628937,163.703323,147.637222,135.529770,134.942993,133.066956,131.257034,135.670258,135.397537,145.414078,159.967789,176.025635,189.480194,201.785980,202.538040,191.819031,168.166122,147.893417,138.083496,134.223984,129.736374,104.496712,85.604156,99.471924,107.653740,78.736382,37.290104,12.861174,11.794235,6.376870,9.119022,9.300841,8.160342,3.609097,1.137193,0.291736,0.377687,0.128926,0.198348,0.581819,0.579339,0.000000,0.000000,0.000000,0.000000,1.138843,0.000000,0.000000 -601911.155000,4612445.550000,5845,4705,110.319855,179.303329,175.055405,166.055405,148.708298,138.352921,136.047134,136.063644,133.873566,138.171097,137.179367,147.220688,163.080185,180.410767,191.600830,203.443817,204.551254,194.162827,170.129776,149.708298,138.526474,136.328125,130.245468,103.030586,87.666954,100.468605,109.799187,80.154556,38.427296,14.351258,11.840514,7.679350,7.919022,10.316544,10.589269,4.301660,0.670251,1.060334,0.069422,0.052066,0.223967,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.355000,4612445.550000,5891,4705,107.624809,159.550430,166.285965,159.236374,146.509109,135.079361,133.153732,130.823151,129.426453,132.492569,134.228119,144.004974,159.674393,174.723984,187.368591,199.930573,201.228088,189.872726,166.418198,146.831421,136.277695,132.525635,129.418198,102.723976,85.409927,98.847946,107.831421,77.575218,37.029774,15.067785,11.765308,3.514057,7.571915,7.281007,7.643813,3.260337,0.396696,0.366943,0.117356,0.295042,0.142975,0.000000,0.078513,0.471075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601934.755000,4612445.550000,5963,4705,104.743820,162.652908,167.628113,160.727295,147.190094,136.586792,135.082657,132.256210,132.785141,133.859528,135.900848,145.438034,160.743820,176.024811,188.950424,199.917374,201.429764,191.322327,167.735550,147.917374,137.495880,134.008286,129.454559,102.652908,85.487617,99.793404,108.082664,78.884315,37.694237,16.072744,11.768614,7.521500,9.897535,9.057040,9.249599,2.505792,0.374383,0.235538,0.070248,0.000000,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,3.476033,0.000000,0.000000 -601940.955000,4612445.550000,5994,4705,97.052910,160.705811,167.804977,157.226471,145.383469,134.242996,132.962006,130.416550,129.573578,132.176880,132.614899,143.375214,159.433075,174.259521,186.920685,198.358704,199.482666,190.127289,167.267792,145.598343,135.366959,133.226471,127.127289,100.557045,84.499191,99.854568,105.408287,77.457870,38.292580,14.816545,11.557044,6.608276,7.433072,7.833899,7.886789,3.071080,0.709093,0.590085,0.241323,0.160331,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.355000,4612445.550000,6026,4705,101.480186,155.579346,168.100006,160.562805,144.885132,136.976028,133.942978,132.265289,131.959503,133.290085,135.248764,145.017365,161.538025,176.133072,188.149597,200.852081,202.281830,190.777695,167.521500,146.579330,136.141312,133.207443,129.190918,103.000839,85.769440,99.124809,108.182655,78.810760,37.050434,15.420678,11.744647,6.874393,10.257040,9.111586,8.657866,3.204139,1.339672,0.254546,0.128099,0.037190,0.219008,0.168596,0.000000,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.355000,4612445.550000,6056,4705,104.162827,156.881851,166.914902,158.584320,146.179337,136.848770,132.666946,131.691742,130.757858,133.038849,134.171082,145.270248,159.757874,175.443832,187.890106,199.485153,200.187622,189.443832,167.344650,146.476868,135.865295,132.617371,128.427277,102.410751,84.741333,98.344635,107.658684,79.311577,39.460354,14.998364,11.675226,7.291748,9.265306,10.601669,9.272740,3.495876,1.331408,0.247935,0.000000,0.095868,0.000000,0.083471,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.555000,4612445.550000,6072,4705,93.533073,152.136383,167.946304,159.995880,145.433899,134.657043,132.219025,129.227295,129.921509,131.392578,132.095062,143.450424,159.012405,174.334732,186.111588,197.359528,199.979355,187.623978,164.169434,145.028946,135.144638,131.053741,126.590927,100.376053,83.475220,99.061996,105.962830,77.483490,37.301674,14.657868,11.508284,6.900839,8.326462,7.409932,6.733068,4.015710,0.371076,0.309918,0.234711,0.074380,0.000000,0.003306,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.955000,4612445.550000,6094,4705,99.381012,152.843811,166.852081,158.637207,144.372742,135.463654,132.091751,130.703323,129.777710,131.893402,133.744644,143.769440,158.984314,175.794235,188.042160,197.976044,200.587616,189.835556,165.934723,144.422333,135.604141,132.116547,127.827293,101.083481,85.372749,99.347954,105.620682,76.157875,37.695065,15.574399,11.620680,7.987616,10.236381,9.489273,8.958691,3.876866,0.409919,0.312397,0.382646,0.045455,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.955000,4612445.550000,6129,4705,86.472748,151.519852,164.792587,157.528122,142.858704,134.585968,131.676880,129.751266,128.503326,130.321503,130.858704,141.800842,158.197540,172.263657,187.643814,195.924820,198.470261,187.313248,165.462006,144.462006,133.511597,130.214066,126.445473,100.495056,82.627289,98.379356,106.709930,77.181000,36.073574,13.369437,11.495061,4.568607,9.120678,8.721502,7.340507,3.760337,0.880168,0.052893,0.069422,0.102480,0.071901,0.012397,0.724794,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.955000,4612445.550000,6169,4705,86.466141,153.614899,168.499191,158.540512,144.292587,134.796707,131.771912,130.333893,130.333893,130.813232,133.507446,143.689270,159.102493,174.986801,187.540497,198.623138,200.557022,189.284302,166.003326,144.904144,136.110748,132.358688,127.036377,100.201683,85.664490,99.780190,106.821518,76.854568,36.986797,16.111589,11.548779,6.988441,8.826462,9.006627,9.149600,2.947114,0.493391,0.084298,0.149587,0.040496,0.120661,0.324795,0.000000,0.205785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.955000,4612445.550000,6194,4705,94.541336,159.986801,168.532257,157.986801,145.226471,134.631409,132.829758,130.061172,129.656204,132.019836,134.185120,144.515717,160.102493,175.871094,188.606628,199.523987,201.152084,189.664490,166.995056,146.119034,136.804977,133.218201,127.127274,101.267776,84.920677,100.738853,107.986786,77.482666,38.540516,14.990100,11.557044,7.110756,9.581835,10.714892,9.884311,4.913232,1.175210,0.435538,0.228926,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.580992,0.000000,0.000000 -601985.555000,4612445.550000,6217,4705,92.599197,160.276871,168.582657,160.342987,146.533096,137.665298,135.979355,132.731415,133.549591,134.516541,135.202484,146.566147,162.549606,178.309921,189.797546,200.466980,202.095078,192.632263,167.822327,148.078552,138.020676,134.582657,130.045456,103.433891,86.533066,103.119843,109.764473,80.723152,39.334728,16.627291,11.822332,8.643814,10.109106,10.457042,8.777699,5.047943,0.706615,0.319011,0.190910,0.000000,0.000000,0.178513,0.231405,1.439670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.555000,4612445.550000,6252,4705,89.951256,156.083466,170.719833,157.265289,144.091736,134.620667,133.199188,130.860336,130.885132,132.050430,134.166122,144.116531,160.091736,176.331406,189.116531,199.769424,201.628922,190.232224,166.653717,144.579330,135.901672,133.670258,127.100014,101.571091,85.050423,97.976044,107.323151,78.810760,39.488453,15.209934,11.554564,7.892575,9.346295,8.564478,7.264475,5.511580,0.889259,0.214051,0.000000,0.258678,0.000000,0.172728,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.955000,4612445.550000,6309,4705,94.061996,154.004150,169.293411,157.615723,144.888443,135.632248,132.938019,130.508270,130.665298,131.103317,133.582657,144.219025,159.673569,175.466965,188.194229,198.425613,199.954544,188.822327,165.227295,143.847122,135.623978,131.632233,127.500008,99.987610,84.144646,97.566124,107.037201,77.235550,38.293407,14.526462,11.590927,6.895053,8.740511,10.244643,8.295054,2.493394,1.317359,0.433887,0.311571,0.209092,0.000000,0.083471,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602009.155000,4612445.550000,6335,4705,101.876060,162.421524,167.380203,159.082672,143.876053,137.719025,133.181839,131.842987,130.595062,132.024811,134.413239,145.363647,160.297546,175.752106,188.066132,199.876053,199.661179,189.363647,167.157059,145.851257,137.272766,132.099197,127.909103,101.231422,85.371918,99.322327,107.297539,78.958694,37.198372,15.771918,11.628118,8.052907,9.895884,10.335552,10.381005,4.000006,0.994219,0.314879,0.200827,0.042149,0.000000,0.171901,0.376860,0.000000,0.000000,0.000000,0.000000,0.000000,1.916529,2.955372 -602014.555000,4612445.550000,6362,4705,102.239685,157.272766,168.950439,157.330597,144.165329,134.966965,132.603317,130.140503,129.735550,130.685959,131.471085,142.471100,158.694229,175.066147,187.033096,197.289291,198.562012,187.024826,164.148773,143.454575,133.123978,129.404968,125.545464,99.008270,82.471100,96.793396,106.702484,78.107460,37.132248,15.379356,11.413243,6.164474,8.841339,9.502496,8.003319,3.724800,0.324795,0.336364,0.055372,0.195869,0.047934,0.009918,0.400000,0.692562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.555000,4612445.550000,6392,4705,100.738029,162.928101,170.192581,158.349594,143.291748,133.176041,131.845459,129.614059,127.895050,130.010757,130.638855,141.647110,157.655380,174.853745,185.828949,197.349609,198.738037,186.076889,163.903336,143.159515,133.142975,131.019012,125.300003,98.151253,82.465309,96.680183,107.068604,78.109940,37.481842,14.767785,11.390928,7.579352,9.682658,8.942163,10.063649,4.552901,0.869426,0.275208,0.140496,0.031405,0.071901,0.004132,0.227273,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,3.153719 -602025.555000,4612445.550000,6417,4705,98.601677,161.733902,167.419861,158.560349,143.295883,134.221512,133.171921,129.717377,128.238037,130.238037,131.502502,142.601669,159.262833,175.378540,186.684326,197.857880,198.692581,186.494232,164.345474,143.659531,133.766968,130.890930,124.254570,99.031425,82.031425,94.246307,106.717377,76.915726,36.254562,14.337208,11.295887,7.776048,9.888445,8.458692,9.235553,3.599180,0.985126,0.116530,0.206612,0.038017,0.000000,0.157025,0.142975,0.557025,0.000000,0.000000,0.000000,0.000000,0.000000,3.153719 -602030.155000,4612445.550000,6440,4705,95.769440,155.645462,169.406631,158.976883,144.142181,133.803329,132.869446,129.629776,128.274399,129.571930,131.720688,142.133911,159.026474,174.943832,185.885971,198.290939,198.976868,186.629776,163.952087,142.125641,133.282669,130.571930,124.654572,98.571930,81.580193,94.861183,107.009941,76.166969,36.613239,14.342994,11.332251,7.344638,8.579353,8.759518,10.246295,5.227281,0.735540,0.445456,0.059504,0.095042,0.069422,0.000000,0.229752,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.155000,4612445.550000,6470,4705,103.116547,168.934723,170.009109,159.546295,144.595901,135.314896,133.934723,130.265305,129.306625,130.430603,131.769440,143.108292,160.141342,174.306625,186.719833,199.942978,200.157852,187.149597,165.827286,143.843826,133.471924,130.695068,125.190933,99.298370,82.612419,96.579361,106.356216,77.959526,38.538036,14.974399,11.381012,10.548774,9.500016,10.119024,9.000015,3.234716,0.610746,0.569424,0.303306,0.028926,0.000000,0.000000,0.147108,0.000000,0.000000,0.000000,1.509917,0.000000,0.000000,0.000000 -602044.555000,4612445.550000,6512,4705,113.514893,169.333084,171.316559,159.721512,142.490112,134.597534,131.837204,129.481827,128.027283,129.465302,129.688446,141.085144,158.399200,173.721512,185.481842,196.969437,198.118210,185.655396,161.721512,142.432251,131.878525,128.374390,123.754562,96.746292,80.514893,94.010757,102.382660,74.688446,32.919853,14.267785,11.250432,8.252907,7.181832,7.701667,7.634721,3.695874,1.435540,0.200001,0.000000,0.042149,0.000000,0.000000,0.000000,0.307438,0.000000,0.000000,0.000000,1.778512,0.000000,0.000000 -602054.755000,4612445.550000,6563,4705,97.139694,169.949585,172.569443,162.734726,146.147949,135.883484,134.329773,131.139694,131.776062,133.387634,133.676880,145.131424,160.676880,177.850418,188.784302,200.602478,202.495041,188.949585,166.081833,143.759521,134.652100,132.098373,126.263664,98.412415,82.304977,95.321510,104.742996,74.924812,35.858700,14.469440,11.478531,8.786790,8.288445,8.730594,8.081830,2.863642,0.090911,0.028926,0.398347,0.181819,0.094215,0.230579,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.955000,4612445.550000,6624,4705,114.319862,169.691742,170.848770,162.443817,147.642181,137.030609,137.071930,133.394241,132.262009,137.146301,134.782669,147.303329,164.129761,181.559509,194.600830,207.666931,207.253708,194.518188,170.840500,151.212418,140.195892,138.270279,132.336395,102.890106,86.724823,100.815727,110.485153,79.947960,40.220680,16.650431,12.030599,11.646296,10.295884,9.436378,10.524809,4.141329,0.874384,0.295870,0.118182,0.000000,0.000000,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602072.355000,4612445.550000,6651,4705,113.554565,174.769455,173.157883,164.513245,146.430603,134.033905,134.066956,131.488449,131.835556,135.571091,133.852081,145.785980,161.306641,179.967804,193.447144,205.645462,207.843811,192.389282,170.843826,150.463669,140.182678,136.777710,129.918198,102.091759,84.645485,99.397545,111.984322,76.852097,37.744644,14.382661,11.810763,12.692577,9.161999,10.815720,10.568609,5.325628,0.290911,0.040496,0.119009,0.092562,0.000000,0.080992,0.156199,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602075.955000,4612445.550000,6669,4705,124.114906,185.205811,174.139694,168.032257,149.346298,136.850449,135.858719,132.585983,133.676880,138.106644,134.709946,147.528122,164.023987,181.660355,195.809113,208.470261,207.742996,193.123154,172.742996,153.230591,141.619049,138.288467,132.081848,102.900024,87.949615,104.255402,112.718201,80.701683,39.883492,14.741340,12.007458,10.856215,10.851254,10.165304,11.675221,5.630588,1.226450,0.135539,0.277687,0.039670,0.006612,0.162810,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.555000,4612445.550000,6692,4705,115.683479,178.361160,170.286789,163.261993,148.518188,135.815720,134.171082,131.576050,132.063644,136.981003,133.204147,145.666962,162.138031,179.741333,194.179337,206.195862,206.286774,191.212387,171.055374,150.832260,140.964478,136.096710,131.063644,101.212410,87.576050,102.757858,110.807449,78.981003,40.129768,15.743820,11.914895,11.102493,10.264477,10.524809,11.333073,4.681001,1.470251,0.303308,0.242976,0.153719,0.000000,0.321488,0.000000,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.355000,4612445.550000,6711,4705,126.831421,177.641342,171.682663,162.137207,146.517365,134.864471,133.071091,130.666122,131.732239,135.914078,131.781830,143.773560,159.864471,177.285965,190.773560,203.566956,202.690918,189.186783,168.062820,148.021500,137.988449,133.831421,130.327286,99.947121,84.550438,101.054558,109.517365,79.442993,39.905807,15.651257,11.847953,14.212410,10.312411,8.947949,10.156211,6.670260,0.365291,0.114051,0.000000,0.000000,0.000000,0.000000,0.322315,0.662810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602088.355000,4612445.550000,6731,4705,132.525635,180.856216,177.269440,166.285965,149.285965,136.806625,135.343811,132.930588,131.823151,138.170258,133.525635,145.550430,161.823151,178.591751,193.310760,206.352081,206.228119,190.930588,171.426453,150.988449,140.021500,137.624802,131.236374,101.814888,86.914062,104.864479,113.112411,81.525635,39.244648,18.216547,11.930597,15.938858,11.464479,12.825635,10.952082,6.576869,0.593390,0.351241,0.717357,0.073554,0.100001,0.000000,1.403307,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602094.755000,4612445.550000,6763,4705,127.757050,161.484314,159.690918,150.765305,137.922333,129.013229,125.153740,122.566963,121.781837,123.633080,125.500847,135.434723,153.781830,169.839676,182.038025,193.657867,196.145462,184.566956,161.963654,142.600006,130.401672,127.467789,120.236382,93.186798,77.608284,94.839691,108.922333,81.790100,38.765305,14.601670,10.930597,5.114886,9.287618,8.739683,7.984309,4.225630,0.596696,0.263637,0.000000,0.151240,0.123141,0.000000,0.000827,0.217356,0.000000,0.000000,1.793389,0.000000,0.000000,0.000000 -602105.355000,4612445.550000,6816,4705,148.091766,160.744644,158.695053,149.166122,136.455399,126.265305,121.761169,118.728111,117.091751,118.752907,120.215714,131.504974,149.257034,165.281830,177.496704,189.339676,190.736374,180.992569,157.480179,138.612427,127.347946,124.480179,117.463646,91.025642,74.405807,93.422333,106.752907,81.521500,37.761177,13.653735,10.678531,8.147120,10.655385,9.102493,9.599189,4.413231,1.100830,0.489258,0.035537,0.000000,0.302480,0.000000,0.469422,0.552894,0.000000,2.111570,0.000000,4.479339,0.000000,0.000000 -602118.355000,4612445.550000,6881,4705,156.510773,170.262833,155.196716,147.849609,130.700836,120.337204,116.733902,112.320679,110.444641,110.766960,112.262825,122.345467,139.345474,153.527298,163.353745,173.180191,172.981842,164.725647,148.221512,130.750427,122.031418,116.899185,114.527290,88.535553,71.031425,89.998360,112.709106,88.362000,42.692581,13.842166,10.411590,7.421500,10.144642,11.090924,12.256213,8.152078,0.747936,0.557026,0.361158,0.341323,0.204959,0.000000,0.085951,0.562811,0.000000,0.000000,1.810744,1.501653,0.000000,15.641324 -602178.355000,4612445.550000,7181,4705,121.078522,162.069412,159.176849,145.242966,130.044632,118.532242,116.127281,112.251251,111.970261,112.168610,112.722328,124.598358,144.813217,162.532211,176.507431,190.044632,191.895874,180.490891,158.788422,137.689255,125.193398,121.532242,114.763649,84.226456,65.242996,85.110756,108.110756,78.681023,37.515720,14.108282,10.433078,9.436379,8.158693,11.200015,12.438858,5.985960,1.381820,0.213224,0.280166,0.001653,0.234711,0.000000,0.038017,0.000000,0.000000,0.000000,3.517356,0.991736,1.202479,1.969422 -602181.755000,4612445.550000,7198,4705,121.902489,163.344620,160.923141,147.609100,130.774384,118.311577,117.055382,113.187614,111.642159,112.063644,113.741333,125.733070,146.204163,163.328094,177.518188,190.476883,192.336395,181.592575,160.220657,138.559525,125.551247,121.220673,115.063644,84.923157,66.865311,86.162827,108.799187,80.799194,36.964485,14.930597,10.460350,8.431418,8.786793,10.123983,10.232246,5.519018,0.912398,0.250414,0.000000,0.011571,0.090909,0.152066,0.000000,0.000000,0.000000,2.543802,0.000000,0.000000,1.149587,0.000000 -602187.555000,4612445.550000,7227,4705,119.999191,160.683487,160.038849,143.691742,130.733063,119.468605,117.724800,113.890091,113.237198,114.212410,115.030586,126.865295,147.113235,163.823975,179.286789,190.956207,193.129761,181.650421,159.171082,137.394226,124.782654,122.179352,115.700012,83.460342,67.228951,85.600838,106.584305,79.385971,37.154564,14.869440,10.518201,9.342163,9.224811,10.364478,7.626461,4.685132,0.886779,0.400001,0.164463,0.004132,0.031405,0.353720,0.712397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602197.355000,4612445.550000,7276,4705,93.911583,152.614899,156.738846,143.705811,129.110764,119.755394,117.061180,116.309113,114.507454,115.755394,117.457870,129.085968,148.771927,165.887604,178.598343,191.738846,194.102478,182.234711,160.110748,138.143814,126.771919,122.606628,116.490929,86.738861,69.581841,87.259521,105.515717,78.168617,38.383492,14.710761,10.590102,8.497536,7.381832,8.118196,9.142991,5.280999,0.804134,0.200828,0.028099,0.127273,0.000000,0.228926,0.303306,0.018182,0.000000,1.502479,3.381819,0.000000,0.000000,0.000000 -602213.755000,4612445.550000,7358,4705,101.076874,153.636368,159.446304,147.289261,132.363632,122.677696,119.586784,116.446289,116.256203,117.785133,118.371910,129.330582,148.801651,166.206635,180.338837,191.297516,193.727280,182.421494,158.719025,135.272720,126.123970,121.297531,116.454552,86.247940,68.619850,86.214882,102.264473,72.710762,34.900848,14.085968,10.586795,8.490921,7.733901,8.617370,10.089272,4.128105,0.561158,0.600828,0.348761,0.001653,0.008265,0.280166,0.028099,0.008265,0.000000,1.414876,1.165289,1.105785,0.000000,4.143802 -602241.155000,4612445.550000,7495,4705,102.052910,160.614059,159.928101,146.043808,129.242157,117.820679,117.853737,114.523155,113.581009,115.911583,116.812408,129.382660,151.539673,169.630569,184.266937,198.225616,200.837173,190.432220,167.961151,145.101654,132.523148,129.242157,122.300018,89.316544,70.415718,88.457039,108.886795,77.638855,34.382668,12.916546,11.118201,9.309105,9.116545,9.297534,9.093403,4.407444,0.257025,0.288431,0.055372,0.107438,0.000000,0.123141,0.000000,0.000000,0.000000,1.410744,0.814876,0.000000,0.000000,0.000000 -602252.955000,4612445.550000,7554,4705,107.052902,159.052902,160.474380,143.879349,128.424805,118.077698,114.887611,111.970261,111.234718,112.606621,113.871086,125.457863,147.623138,165.449585,180.152069,193.201675,196.242996,184.804962,163.061157,140.292572,127.755386,124.581833,118.581833,86.730591,66.705803,85.052902,106.614891,75.614891,34.722336,14.056216,10.780184,8.299188,9.259519,9.752907,9.117368,3.622322,0.699175,0.362811,0.238017,0.202480,0.164463,0.000000,0.000000,0.007438,0.000000,0.000000,1.143802,0.000000,0.000000,0.000000 -602261.955000,4612445.550000,7599,4705,107.482658,155.160339,159.449585,145.325623,128.780182,119.019844,116.978523,113.300835,112.978523,113.846291,115.433067,127.722328,147.937195,167.160355,181.515717,194.871094,197.069443,187.085968,163.771927,141.267792,130.102493,126.036377,119.581833,88.383492,68.763657,87.201675,105.102493,76.127281,34.647953,14.703322,10.871094,7.889270,8.914890,9.374395,9.527288,4.638024,1.428102,0.422315,0.000000,0.188430,0.000000,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602267.355000,4612445.550000,7626,4705,102.872742,149.335556,157.798355,144.674393,126.732246,117.252907,115.112411,111.426453,111.790085,112.608269,114.261169,126.343811,146.203323,164.757034,178.029770,190.922333,193.558685,183.624802,161.335556,139.996704,128.178528,124.864479,118.236374,87.914062,68.442986,86.690926,103.938858,74.426460,32.319027,11.896710,10.748779,8.084311,8.183485,8.683485,8.451254,3.693396,0.649588,0.277687,0.189257,0.082645,0.171075,0.033884,0.000000,0.003306,0.000000,0.000000,1.177686,0.896694,0.000000,0.000000 -602272.755000,4612445.550000,7653,4705,116.410751,157.295044,161.047119,146.220688,130.328110,119.766129,117.476868,114.584312,114.931412,116.204140,117.055382,129.030594,148.625626,166.485153,180.881821,191.559494,194.154541,184.419022,161.171082,139.873566,127.774391,124.063644,118.609100,88.443810,69.592590,86.162819,102.030594,71.939690,33.509937,13.742992,10.782663,9.165303,8.784314,9.478528,8.000015,4.043808,0.594216,0.180992,0.152893,0.105786,0.000000,0.169422,0.000000,0.000000,1.429752,0.000000,2.439670,1.009091,0.000000,0.000000 -602275.755000,4612445.550000,7668,4705,105.504143,149.619034,156.197540,143.652084,129.131409,117.445465,115.379349,112.569435,111.850426,113.445465,114.668610,125.635551,145.957870,163.090103,175.404144,186.974396,187.941345,177.982666,155.296707,133.461990,123.569435,118.809105,114.263649,84.602493,65.990921,83.296707,97.437202,69.990929,31.685143,12.440513,10.387623,8.139683,7.388446,8.421502,7.876048,4.773561,0.997523,0.373555,0.311571,0.122315,0.178513,0.099174,0.014050,0.058678,1.361984,2.652066,0.000000,0.000000,0.000000,0.000000 -602280.955000,4612445.550000,7694,4705,93.372742,153.281006,155.471085,142.603302,128.479355,117.785141,115.884315,112.834724,112.281006,113.702492,114.272743,126.132248,146.355392,163.561981,176.289261,186.909088,189.165283,177.785126,155.049606,134.793411,123.082664,119.322327,114.545471,84.123985,66.752075,83.570267,97.710762,69.933899,31.644648,13.140513,10.413241,7.529765,8.828115,8.600840,9.218194,3.559510,0.612398,0.543803,0.327274,0.119835,0.000000,0.199174,0.004959,0.000000,0.000000,1.423141,4.471901,2.118182,0.000000,0.000000 -602286.155000,4612445.550000,7720,4705,112.641335,158.118195,156.853745,144.490112,128.002502,117.506638,114.630600,111.878532,111.845474,113.167793,113.068619,124.771095,144.151260,162.490082,175.523148,185.952896,188.192566,177.795868,154.242172,132.862000,123.581017,118.738037,113.663658,83.333084,66.027290,84.308289,99.308289,71.390930,32.481838,13.534728,10.333076,7.220673,9.318196,10.071090,9.557039,4.897529,1.086779,0.743803,0.307439,0.305786,0.091736,0.637191,0.000000,0.000000,0.000000,0.000000,1.064463,2.023141,2.352893,0.000000 -602289.755000,4612445.550000,7738,4705,101.450432,154.557022,156.168610,143.391739,127.284309,116.433060,114.383476,111.317360,111.102486,111.565292,114.284302,124.639671,144.160339,161.466125,174.598343,186.028107,187.176865,176.515701,154.912415,131.705795,121.590088,118.077690,112.763641,84.259514,65.069443,82.821510,96.920670,68.598366,31.499193,11.995886,10.251258,7.544641,7.767784,8.708280,8.003320,4.660338,0.531406,0.247108,0.106612,0.058678,0.180992,0.285125,0.495041,0.000000,1.361157,1.425620,0.000000,0.918182,1.094215,1.914876 -602297.155000,4612445.550000,7775,4705,117.831421,156.000015,157.239685,140.867783,127.603317,116.504143,113.107445,109.727280,110.743813,111.842987,113.471085,125.826454,146.173569,163.867783,177.636383,189.256210,190.520676,180.388443,156.752075,134.272736,123.338852,120.173561,114.727280,84.760338,66.429771,82.057861,98.223152,70.148773,32.256218,12.917374,10.429772,8.083484,9.054563,8.132244,9.619022,4.758686,0.804134,0.209091,0.061157,0.071901,0.533059,0.214050,0.000000,0.006612,4.149587,0.000000,2.061984,4.273554,1.201653,0.000000 -602299.955000,4612445.550000,7789,4705,110.032242,152.750427,152.337204,139.246277,123.981834,113.535553,111.461174,109.180183,108.750427,109.742165,111.320679,123.576874,144.089264,162.981827,176.965302,188.717377,190.643005,181.626450,156.386780,134.742157,123.155388,120.023155,115.800018,84.808281,64.725639,83.221504,98.601669,69.039696,30.601671,11.247952,10.527291,5.207449,7.485964,8.777699,9.092576,5.057033,1.295044,0.500002,0.249588,0.145455,0.451241,0.612398,0.357851,0.000000,1.428926,4.065290,1.018182,1.894215,4.736364,0.000000 -602302.955000,4612445.550000,7804,4705,130.889267,154.234711,156.152084,139.722336,124.961998,114.408279,112.400009,110.003319,109.714058,111.408279,112.590096,124.358688,145.747131,165.457870,179.540512,191.747131,195.317368,184.267792,159.474396,136.970261,125.887611,123.044640,118.581833,86.251259,66.391754,84.342171,100.920677,71.185143,33.350433,12.900845,10.780185,6.760342,8.066957,8.462822,10.257040,6.913235,0.957854,0.348762,0.234712,0.087604,0.360331,0.431406,0.388430,0.003306,1.226446,4.103306,1.223141,1.891736,1.226446,6.172728 -602307.355000,4612445.550000,7826,4705,120.088440,156.346298,152.271927,138.139679,122.478531,111.321510,109.858696,106.437210,106.255394,108.280182,110.412415,121.982666,143.619034,162.453720,176.949585,189.189255,191.230576,181.933060,158.296707,134.437195,123.569443,120.023987,115.081841,83.999191,63.833908,83.321510,100.106628,71.842171,32.222332,12.891755,10.462002,8.679352,8.975222,8.961170,9.523154,6.509102,2.268600,1.298349,0.752895,0.138017,0.376034,0.423142,0.000000,0.012397,0.000000,2.663636,3.415703,2.981819,1.148760,0.000000 -602313.555000,4612445.550000,7857,4705,126.611588,151.027298,145.539688,134.713242,117.828934,106.738022,104.035545,101.754555,101.853729,103.994225,105.233894,117.523148,137.762817,157.655396,171.250443,182.977707,184.605804,174.589279,152.531433,129.151245,118.399178,114.713226,111.118187,79.771095,60.688450,77.266968,96.209106,68.671921,29.671919,10.695886,10.101672,7.986790,8.355387,9.324807,8.483485,6.730589,1.655377,0.587606,0.215703,0.922315,0.309918,0.347935,1.027273,1.367770,3.485951,1.271901,2.181818,2.657025,2.235538,0.000000 -602322.155000,4612445.550000,7900,4705,136.400009,148.408264,131.160339,116.722336,101.102501,91.871094,89.028107,86.581841,85.970261,89.135559,90.185135,102.267792,123.441345,141.780167,156.019836,166.912399,168.656204,160.986786,141.986786,121.804977,110.309113,107.821510,105.036385,74.689278,54.267792,75.581841,97.722336,75.234734,34.796711,10.316545,9.548779,13.096711,11.216546,15.337206,18.477705,17.132248,7.487614,3.773561,3.470256,2.817360,2.333062,4.425624,8.104967,7.935543,45.042152,30.661985,21.842979,21.279341,22.695869,18.652067 -601063.155000,4612435.550000,1605,4755,135.607452,133.913239,118.731430,107.367783,91.070267,78.177704,75.781013,70.913246,69.210762,69.450432,68.285141,81.045471,102.549606,120.557877,134.334732,146.020691,149.673584,144.194244,130.946304,113.698364,103.053734,103.541336,96.954559,58.648777,39.111588,64.227287,102.111588,84.260345,38.995884,10.390924,8.814069,16.922333,10.823155,15.095057,18.127291,13.451254,2.747113,0.695870,0.657853,0.310745,0.184299,0.535539,0.847109,0.890910,14.285954,16.935541,14.085954,8.480168,11.571076,10.188430 -601066.555000,4612435.550000,1622,4755,118.400017,123.016556,115.743828,103.388451,87.644653,76.512421,72.867790,67.876053,66.140511,66.008286,66.404976,79.132256,99.636391,117.355392,132.132263,146.239670,150.537186,147.231400,136.867783,121.239693,110.322342,111.272751,105.090935,65.148781,42.338860,69.719032,117.760353,101.909119,48.636387,11.469437,9.553739,11.633073,10.566958,17.331419,21.910761,14.363651,1.975210,0.527274,0.153719,0.039670,0.066943,0.067769,0.015703,0.676035,15.258680,13.211573,7.090911,6.678514,4.668596,6.406611 -601071.755000,4612435.550000,1648,4755,101.386795,116.634727,105.304146,94.353737,77.857864,68.295883,64.758698,59.667789,57.700848,56.684319,56.841347,68.560356,88.089272,105.238029,119.229767,131.923981,136.634720,132.056213,123.882660,108.527290,96.816544,95.196709,88.072739,48.444653,27.066133,56.337212,109.742165,105.742165,51.915726,12.066130,8.006631,10.252080,7.826461,18.357868,25.848778,16.981834,0.847936,0.150414,0.080992,0.000827,0.000000,0.000000,0.438843,0.094215,4.314877,3.765290,3.303307,3.377687,4.614050,4.614050 -601079.955000,4612435.550000,1689,4755,67.211594,99.838860,94.533073,84.152908,68.549614,56.995888,53.673573,48.334732,45.995892,44.458698,45.268616,56.896713,75.475227,89.623978,101.756203,113.475212,115.450424,112.053726,102.789261,90.541336,80.285149,77.359520,71.136391,34.954567,14.608281,42.466965,97.276871,99.243813,54.136383,9.997537,6.466961,8.093402,10.316543,18.339685,28.237207,17.063652,0.906613,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.738018,3.683472,2.151240,1.170249,1.322314,5.761984 -601087.555000,4612435.550000,1727,4755,73.737213,102.485970,99.287628,87.047958,71.651260,61.031422,59.477703,53.684315,51.973572,51.295887,52.056217,62.791752,83.535561,100.328949,112.130600,123.676056,126.709114,122.808289,115.271095,102.122337,90.618202,88.998367,83.527298,44.163654,22.271919,51.254562,105.576881,104.089279,54.642994,11.258694,7.593408,9.086791,10.455388,16.532248,26.638035,17.932245,0.891738,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.041322,2.569422,0.776860,0.597521,1.486777,3.033885,1.586777 -601092.755000,4612435.550000,1753,4755,63.771088,94.041336,89.066124,79.495880,64.719025,53.090931,49.958698,43.586796,40.942169,40.619854,39.247955,51.099194,67.338860,80.884315,91.561989,101.256218,103.214890,100.404976,93.561989,82.404976,73.033073,70.925636,65.000023,32.181839,13.425637,39.917374,94.727280,102.157043,56.562004,9.331421,5.909110,9.100013,10.944644,19.990101,34.876053,24.046297,0.467770,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.208265,5.163637,0.778513,1.459505,1.276033,1.567769 -601099.955000,4612435.550000,1789,4755,18.401657,28.423981,22.424810,11.850430,2.894222,0.367770,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.226447,1.308268,4.681827,11.580181,12.976875,11.492577,8.985138,3.784305,1.068598,0.986779,0.754548,0.000000,0.000000,0.000000,38.047947,68.965309,43.833076,2.434718,0.068597,5.634721,14.051254,31.895060,53.114067,42.602493,1.831408,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.104132,0.446281,0.229752,0.000000,0.190083,0.000000 -601111.555000,4612435.550000,1847,4755,39.641335,72.542992,68.542999,57.898365,44.584316,33.336380,29.359522,23.134729,20.424810,18.113241,16.881010,24.651258,37.443821,47.245472,56.774395,65.840508,67.088455,63.790924,58.890099,47.766132,38.452084,35.923157,33.954563,7.171085,0.687606,14.420677,71.807465,87.493401,48.782661,5.400012,3.086796,4.973562,9.375222,21.855389,40.088448,23.894232,0.891738,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.832232,0.000000,0.371075,1.017356,0.428926,0.000000 -601124.555000,4612435.550000,1912,4755,103.054565,127.928116,128.597534,117.746307,103.399193,94.713249,92.019028,88.233910,87.324814,88.407463,88.820686,101.399193,123.242172,141.250427,155.952896,167.382645,170.580994,162.919846,147.762817,127.109940,115.638863,112.415726,105.209114,70.291756,50.101677,73.622337,105.985970,84.151260,36.457047,10.445473,9.564483,5.148771,7.271087,8.070262,9.699190,4.219842,0.461986,0.134711,0.024794,0.122314,0.045455,0.000000,0.055372,0.000000,6.130579,1.941323,0.000000,0.695868,1.915703,0.000000 -601132.355000,4612435.550000,1951,4755,96.167786,131.019028,133.630600,125.217369,111.845467,103.225632,99.440514,96.754562,95.903320,96.919846,98.638855,111.217369,131.886795,150.399200,164.167786,176.448776,179.217377,172.184326,155.109940,135.366135,123.853737,120.564476,114.300018,79.581009,58.572742,82.035553,111.341339,88.192574,39.729771,14.621506,10.390928,7.817368,10.300841,11.656215,12.947124,7.929763,1.511575,0.271902,0.247109,0.138017,0.311571,0.000000,0.232232,0.000000,1.015703,1.800000,0.000000,2.304959,0.000000,1.900000 -601141.955000,4612435.550000,1999,4755,95.238029,137.788452,134.234726,124.457863,112.019844,102.945473,100.416550,97.234734,97.028122,98.119026,99.747124,112.267776,130.986786,149.416550,166.234726,177.664490,180.871094,174.342163,157.019852,136.995071,126.259514,123.722328,119.309105,84.011589,62.788448,84.449600,114.366951,92.325638,41.185143,12.916546,10.846300,7.907450,8.764476,10.809106,12.499188,6.338027,1.147111,0.294216,0.089257,0.142149,0.000000,0.052066,0.000000,0.204959,0.000000,2.809918,0.000000,0.766942,4.886777,3.734711 -601150.555000,4612435.550000,2042,4755,95.947121,114.469437,115.064476,105.287621,90.312401,80.634720,75.725639,70.923988,67.733910,68.130600,65.750435,74.998367,92.114067,106.105797,117.271088,126.345467,127.965302,124.452904,113.957039,99.808281,87.824806,85.204971,80.800018,48.428123,28.585142,54.568619,105.783485,103.800018,54.064484,12.147124,7.345473,6.630591,9.195054,15.500017,24.272745,14.715717,0.521490,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,2.307438,1.616529,1.540496,3.256199,1.515703,0.000000 -601154.155000,4612435.550000,2060,4755,79.751259,110.991753,109.958694,99.272743,85.214890,74.760345,68.925636,63.933903,60.462830,58.884319,57.826466,66.462830,82.966957,94.710762,105.727287,114.239685,115.537209,110.909103,102.520676,88.173569,75.958694,73.834724,69.272743,37.512417,18.164482,45.066135,96.603325,99.743820,51.305805,9.829766,6.297540,4.915711,8.533073,14.861999,23.820681,16.898361,0.341324,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.022314,3.746282,2.170248,0.000000,0.639670,2.304133,3.345455 -601158.355000,4612435.550000,2081,4755,45.888439,53.632240,48.049595,40.882652,33.149597,26.771908,22.977697,19.585135,17.685133,16.499184,14.913232,16.611580,21.998356,26.755381,29.638025,33.002487,32.858685,30.685131,27.807447,21.840506,18.041330,17.200834,15.509100,5.488436,1.376863,7.915710,29.145464,36.614056,19.556210,3.807444,1.409926,3.017361,9.632241,15.679352,31.251253,19.038027,9.269426,11.054550,13.023144,13.333062,13.396697,7.467772,8.132233,9.064466,3.653720,6.152067,4.070250,10.640499,21.921492,13.825622 -601165.155000,4612435.550000,2115,4755,62.639690,62.553734,51.415722,41.578533,27.178530,14.688446,10.936378,7.501666,4.432241,4.076869,2.912404,5.151249,13.289271,20.655390,28.511587,36.003326,38.289276,36.396717,31.383488,23.223984,16.107454,14.344644,13.572742,1.214879,0.000000,3.578521,54.479359,75.066132,44.760349,6.495879,1.233899,4.201661,13.589272,28.407455,43.446301,33.494232,1.447111,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,3.841324,2.555373,0.502480,0.163637,0.846281,1.222314 -601170.555000,4612435.550000,2142,4755,9.580171,2.750416,0.585951,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.300828,16.294230,13.460345,1.118186,0.000000,2.965295,14.534726,26.812416,47.394238,39.262005,7.311580,1.063639,0.215703,0.009918,0.247108,0.000000,0.023967,0.000000,0.000000,1.196694,0.000000,0.000000,0.014876,3.130580 -601233.555000,4612435.550000,2457,4755,106.862007,144.952072,124.604965,113.819855,98.695885,85.712418,85.447952,81.910759,80.522331,83.340515,80.654564,91.249603,106.563652,121.125633,131.009933,141.340500,140.960342,134.166946,123.613235,110.489273,101.042992,100.390099,96.654564,70.018196,50.836380,71.828117,112.737206,103.968613,51.282661,11.258694,8.786796,12.710759,10.900014,17.438860,27.649603,15.772742,0.846284,0.047934,0.008265,0.130579,0.000000,0.000000,0.138017,0.183471,3.880992,0.872727,1.332232,1.342975,0.975207,0.000000 -601238.155000,4612435.550000,2480,4755,123.401665,158.229782,139.163666,130.609940,114.758698,103.700851,101.923988,99.560356,99.899193,103.064484,101.362007,113.163658,129.990112,147.031433,160.692581,172.981842,175.576889,168.081009,154.386795,141.147125,132.081009,132.378540,129.345474,99.370270,77.965309,98.560356,130.651260,109.758698,53.204983,16.314068,11.758698,17.736382,12.903323,19.400843,25.544645,14.412414,1.373557,0.207439,0.155372,0.028926,0.000000,0.000000,0.313223,0.000000,1.012397,1.997521,0.000000,1.682645,1.893389,0.000000 -601245.355000,4612435.550000,2516,4755,145.995880,167.524811,150.285126,140.615723,122.590919,109.780998,109.789261,107.111580,107.376038,112.227280,109.450424,121.723152,138.152908,156.871918,170.276871,182.433899,183.772751,174.582657,159.235550,143.367783,133.904968,132.756210,128.136368,97.690094,77.863655,96.590927,118.491745,93.698364,41.946301,15.124812,11.648780,15.744645,9.765305,14.590925,15.699191,8.637203,0.669424,0.176861,0.177687,0.178513,0.000000,0.000000,0.228099,0.000000,1.147108,1.023141,1.738843,0.861157,0.000000,0.000000 -601257.155000,4612435.550000,2575,4755,149.782654,182.130585,157.452896,146.882645,129.469421,116.386780,114.560333,112.808273,113.444633,118.957031,115.047943,125.700836,141.494217,159.196701,173.824799,186.097534,184.750427,173.105789,155.403305,136.535538,125.502487,123.403313,119.072731,89.023155,70.560349,89.419846,104.312401,74.403320,34.403324,12.087620,10.824812,15.092577,8.605800,10.050428,11.264476,6.191744,0.888433,0.401654,0.219836,0.009918,0.097521,0.201653,0.000000,0.000000,0.000000,1.120661,0.000000,0.000000,0.000000,0.000000 -601267.555000,4612435.550000,2627,4755,103.881012,146.646286,152.109100,142.282654,128.563660,119.191750,117.373573,114.745476,115.216545,116.282661,117.580185,128.613235,145.514053,161.555374,174.183487,185.332230,187.299164,178.084305,156.844635,137.266129,127.927292,126.365311,121.472748,93.613243,74.530594,90.447952,104.753738,78.307457,33.406628,13.709110,11.042994,8.886789,8.874395,8.176046,10.571915,4.877694,0.357852,0.261984,0.294215,0.327273,0.037190,0.042149,0.000000,0.000000,0.986777,1.077686,0.000000,0.000000,0.000000,0.000000 -601277.355000,4612435.550000,2676,4755,96.176041,153.877716,152.737213,144.654572,129.257874,119.588448,117.919029,115.811584,115.175224,117.538864,119.654564,130.538864,146.869446,162.299194,175.166962,185.687622,186.985153,178.522339,157.795074,138.332260,129.282669,125.737206,120.472748,93.621506,74.952072,90.166962,102.836380,77.348778,33.751259,12.606629,10.952085,7.604970,9.176875,8.689269,11.110760,3.770254,0.584299,0.219009,0.031405,0.240497,0.040496,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601291.355000,4612435.550000,2746,4755,97.543816,151.413239,155.735550,144.173569,130.388443,122.487617,118.685966,116.735550,117.644646,118.570267,121.446297,130.636383,148.107452,163.438034,176.925629,186.198364,187.479355,177.793411,156.900848,137.223160,127.586792,124.297539,120.454559,91.942162,74.049606,88.347122,101.719025,75.768608,33.595062,12.385142,10.950433,7.502491,9.096708,9.287616,9.295881,4.718189,1.187605,0.597522,0.252067,0.057853,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,1.747934,0.000000,0.000000,0.000000 -601304.355000,4612435.550000,2811,4755,104.864487,154.401657,156.178513,145.790085,132.914062,123.881004,121.451256,118.128937,119.219849,121.352081,122.732246,132.980179,149.790085,165.542145,178.476028,187.814880,190.319000,181.806610,160.988434,139.765289,130.310760,126.285965,122.872742,94.649605,76.162003,90.682663,103.657867,74.856216,34.013245,13.435554,11.170268,6.058689,9.025635,10.261172,9.245468,4.165297,1.395044,0.029753,0.621489,0.007438,0.087604,0.099174,0.000000,0.000000,1.082645,0.000000,1.949587,0.000000,0.000000,0.000000 -601312.755000,4612435.550000,2853,4755,106.771919,149.619858,155.264481,143.380188,131.611588,121.851257,119.727287,118.495880,118.446297,120.851257,122.586792,132.008286,149.049606,163.925629,178.876053,189.115723,190.719025,182.049606,160.925629,140.818192,131.694229,127.966957,122.272743,94.793411,75.933907,89.677711,101.586800,75.107460,33.264484,12.474398,11.115722,6.517366,7.687617,7.390921,8.278523,3.288436,0.298348,0.138844,0.148761,0.013223,0.105785,0.095042,0.000000,0.000000,0.000000,0.000000,0.811570,0.000000,0.000000,0.000000 -601317.555000,4612435.550000,2877,4755,104.326462,153.171066,154.873550,146.733047,132.964478,124.014069,121.402496,119.757866,120.154564,122.501671,124.030594,133.807449,150.493378,166.890076,180.154541,191.179337,193.088425,184.559494,162.476852,142.195862,132.700012,128.509933,123.972748,95.278534,77.080185,92.047127,103.179359,76.592583,34.088451,12.731422,11.270267,7.350425,8.319849,8.491749,10.400842,2.024797,0.501655,0.500828,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.874380,1.066116,0.000000 -601321.755000,4612435.550000,2898,4755,106.238853,156.650421,156.972733,147.228943,133.154556,123.931412,121.154556,120.261993,119.352905,122.460342,123.815712,133.419022,150.443817,164.733063,178.526459,190.799179,191.724808,183.146286,161.352905,142.526459,130.336380,127.204140,122.972740,95.344635,75.369438,90.617363,102.815712,76.303322,33.782665,11.825637,11.179358,4.871084,7.782659,8.242987,7.766129,3.447940,0.709919,0.176034,0.391736,0.005785,0.126447,0.000000,0.000000,0.000000,0.000000,1.125620,0.000000,0.000000,0.000000,0.000000 -601327.955000,4612435.550000,2929,4755,119.129761,159.104965,158.534714,149.080170,134.567780,126.030586,123.195877,121.303314,121.270256,123.691742,126.014061,135.782654,151.551254,167.989273,181.551254,192.352905,194.658691,187.319839,163.518188,143.790924,134.204147,129.377701,125.700012,98.485130,78.427284,92.303314,104.113235,75.947945,34.617374,14.697538,11.427291,6.655385,9.723155,8.694228,9.016541,3.848768,0.490085,0.247935,0.326447,0.128926,0.000000,0.327273,0.000000,0.000000,0.000000,0.000000,0.000000,0.834711,0.000000,0.000000 -601337.155000,4612435.550000,2975,4755,125.586784,162.181824,159.652893,148.818176,136.892563,126.371918,123.917366,121.495872,122.247940,125.975220,126.669441,135.925629,152.694214,169.090912,182.247940,193.008270,195.396698,187.628098,164.570251,145.314056,134.966965,131.652908,126.727287,97.446289,79.000015,92.066124,105.619843,78.842995,34.785149,13.381010,11.520680,6.719020,8.561999,9.329766,8.921499,3.408270,0.795870,0.267771,0.000000,0.043802,0.000000,0.167769,0.000000,0.000000,0.000000,2.150414,0.000000,0.000000,1.043802,0.000000 -601344.555000,4612435.550000,3012,4755,143.644638,192.314072,172.776871,163.785141,147.305801,134.462814,135.099182,133.694229,134.512405,140.785141,136.570267,149.578522,165.553741,182.223160,198.404968,211.355392,212.024811,198.123978,177.247955,157.123978,147.462830,143.727295,139.363647,108.495872,91.190094,106.388435,115.603317,81.743813,38.900848,16.941341,12.669440,13.032247,9.585967,10.562826,11.121502,5.428108,0.742977,0.187604,0.211571,0.151240,0.014876,0.029752,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601349.155000,4612435.550000,3035,4755,139.985138,185.885956,170.588440,163.753723,145.530594,134.398361,134.737213,132.910767,133.638031,140.390091,136.299179,148.894226,164.728943,182.373566,197.092575,210.059509,211.604965,197.811584,176.224808,156.175217,145.522324,143.836380,139.745468,108.968620,89.935555,106.555397,115.340515,83.307457,39.439686,15.614895,12.704151,11.614065,9.449602,11.144643,10.640511,5.076043,0.641324,0.172728,0.049587,0.066116,0.011571,0.000000,0.003306,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601353.955000,4612435.550000,3059,4755,133.556213,189.828949,171.663666,162.928116,145.787628,133.448776,134.713242,132.465302,134.027283,139.597549,136.539688,149.134750,165.581009,183.647125,197.217361,210.357880,209.779358,198.308273,176.440521,156.994247,146.746307,143.729782,139.845474,108.919846,89.895058,105.192574,114.804146,83.531418,38.589275,15.607456,12.713242,9.744642,11.268613,9.271091,10.681832,4.594225,0.588431,0.168596,0.158678,0.011571,0.023967,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601359.955000,4612435.550000,3089,4755,126.003326,183.838043,170.152084,160.937210,145.829773,133.945480,133.821503,132.771927,133.689270,138.838043,137.383484,148.962006,166.614899,183.738861,198.135559,209.978516,210.342148,198.664490,177.771927,156.490921,146.705811,144.738861,141.309113,109.945473,90.705803,105.226463,115.623161,84.457870,39.218201,16.414894,12.846299,11.966957,9.207455,10.376049,11.770263,5.411579,1.186779,0.053719,0.501654,0.000000,0.007438,0.000000,0.004132,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601365.155000,4612435.550000,3115,4755,126.473572,180.415710,168.506622,158.250427,144.506622,132.952911,133.407455,131.688446,132.795883,136.952896,135.300018,147.985962,164.721497,183.448761,196.200836,210.076843,209.457016,198.688431,176.440506,156.374390,147.399185,143.985962,137.118195,109.465302,89.994232,103.052078,113.696709,83.283485,37.258701,13.637210,12.465309,7.721499,8.833900,9.899189,10.990925,5.876043,0.564464,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.231405,0.000000,0.000000,0.000000,1.059504,0.000000,0.000000 -601375.955000,4612435.550000,3169,4755,113.113251,173.576050,167.890106,160.088455,144.592590,134.724808,134.815735,134.146301,134.427292,137.385971,138.328125,150.328110,168.501678,185.311584,200.071930,212.286789,215.030594,203.460342,180.733063,159.658707,149.857056,147.485153,141.700027,112.906631,92.220688,105.675224,117.452087,85.939697,38.931423,15.822332,12.881837,10.301667,8.804150,11.216546,11.206627,4.758685,0.693391,0.115703,0.385951,0.009091,0.001653,0.000000,0.000000,0.330579,0.000000,1.251240,0.000000,0.000000,0.000000,0.000000 -601379.755000,4612435.550000,3188,4755,115.313240,172.412415,169.660355,160.577698,146.371094,134.693405,134.883484,133.528122,133.776047,137.263657,138.172745,151.090103,168.387619,185.371094,199.569443,211.974396,213.842163,203.709930,179.718201,160.032257,148.668610,146.478531,142.081833,111.321510,92.635559,104.908279,117.139687,84.990921,38.032249,15.959521,12.916549,9.346294,10.129767,9.808281,10.241336,4.857861,0.550415,0.228100,0.407439,0.000000,0.000000,0.000000,0.021488,0.112397,0.000000,0.000000,0.000000,0.628926,0.000000,0.000000 -601383.755000,4612435.550000,3208,4755,116.024803,174.033081,169.181839,159.314072,146.743820,135.033081,136.537201,133.578522,134.438019,137.966965,139.719025,151.553741,167.950424,185.628113,199.851257,212.206635,213.818192,204.900848,180.644638,158.991745,149.223160,147.173569,141.818192,112.429764,93.049591,106.793396,117.595047,84.462814,40.090931,16.209936,12.892581,10.509105,10.091752,12.718198,11.821504,4.898358,0.893391,0.230579,0.220662,0.369422,0.070248,0.000000,0.161984,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601388.355000,4612435.550000,3231,4755,112.515717,168.474396,168.416550,158.581833,144.540527,134.846298,135.143814,133.614899,133.986801,138.160355,138.879364,150.284332,169.160355,185.391754,199.920685,211.697540,213.821503,204.689270,181.342163,159.300842,149.143845,148.069458,142.490952,111.904152,92.028130,106.284317,116.366959,84.681000,39.457870,16.302498,12.953737,10.015718,9.306628,10.713241,12.342991,5.761993,1.201656,0.170248,0.157852,0.062810,0.009091,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.155000,4612435.550000,3245,4755,132.775208,175.138855,168.188431,160.204971,145.039673,136.089264,137.254547,135.353729,135.097534,137.047943,139.576859,152.279343,170.155380,186.965286,201.295853,212.676025,216.370239,205.948746,182.287598,160.783478,149.932236,147.395050,142.072739,113.477692,94.279343,106.238022,116.692566,85.684303,40.403324,17.728943,12.915720,9.491750,10.065306,11.401670,11.713239,5.166126,1.689260,0.195868,0.000000,0.146281,0.014876,0.000000,0.084298,0.059504,1.225620,0.000000,0.000000,0.000000,0.000000,0.000000 -601395.555000,4612435.550000,3267,4755,128.681000,174.391754,170.912415,162.119034,146.771927,136.490921,137.573578,134.829758,136.119034,138.623154,140.557037,153.763657,170.854568,187.598373,201.433075,213.416550,217.796707,206.871094,183.176880,161.573578,151.242996,149.565308,144.218201,113.300835,94.738853,109.102493,120.482658,85.573563,40.094234,17.390926,13.110764,9.950427,11.494231,12.157041,11.966131,5.933893,1.304136,0.166116,0.071075,0.000000,0.080166,0.000000,0.039670,0.000000,0.000000,0.000000,2.201653,0.000000,0.000000,0.000000 -601400.355000,4612435.550000,3291,4755,121.604973,167.059509,169.051254,158.894226,145.051254,135.662827,136.200012,134.489273,135.844635,138.580170,140.720673,153.009933,171.687607,187.877686,201.728912,214.133881,217.621475,207.266113,184.348755,162.976852,153.522324,148.910751,144.745468,114.571922,94.381836,109.695885,118.133904,86.406631,39.885971,16.471094,13.158697,9.818197,10.973570,11.123984,13.041340,6.104969,1.581822,0.490910,0.147934,0.032232,0.068596,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.355000,4612435.550000,3311,4755,109.811584,171.299179,168.819839,157.472733,143.522324,134.943817,135.712402,134.373566,133.125641,136.390091,139.613235,151.927277,170.133896,186.613235,200.538849,214.447937,217.009933,207.266129,182.695877,160.927277,151.109100,148.679352,143.018188,113.266136,92.257866,107.183487,118.885971,85.117371,38.737213,14.216547,13.001672,8.248773,8.943817,9.971090,11.853735,4.121496,0.744629,0.195868,0.095042,0.000000,0.003306,0.000000,0.002480,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601410.555000,4612435.550000,3342,4755,111.762001,165.472748,168.654572,158.067795,145.001678,136.489288,135.803329,135.158691,135.985153,138.150436,141.522339,152.894241,171.571930,188.613251,203.191757,215.067795,218.646301,208.439697,185.001678,163.985153,153.704163,150.067795,145.200027,114.233078,95.877701,110.067787,119.613243,86.183487,40.431423,16.732250,13.200020,10.919851,9.745471,11.637207,10.364478,5.751249,1.144631,0.214877,0.153720,0.000000,0.019835,0.000000,0.003306,0.001653,0.000000,0.000000,0.000000,0.961157,0.000000,0.000000 -601414.955000,4612435.550000,3364,4755,117.910751,166.737198,169.092575,159.563660,145.803329,135.472748,136.695892,136.745483,137.745483,139.365311,143.357056,154.679367,172.133911,189.481003,204.439697,217.307449,219.770264,210.894241,187.051254,165.762009,154.158707,151.985153,146.745483,115.662819,94.885963,110.266129,119.001663,85.778534,41.481010,16.307457,13.340516,11.458694,10.557042,11.634727,13.926463,7.281828,1.052069,0.306612,0.080166,0.127273,0.000000,0.000000,0.009918,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.955000,4612435.550000,3389,4755,125.590103,169.176880,168.375229,159.639694,146.193405,137.623154,136.449600,135.185150,137.482666,139.631424,141.995056,154.218201,172.590103,189.474396,203.763657,217.300827,220.598343,209.457855,186.201675,164.838043,153.714066,150.904144,146.309113,114.730598,95.490929,110.077705,118.829773,86.557045,41.267788,16.480183,13.300845,10.884314,10.895059,12.590926,12.509934,7.457035,1.249589,0.259505,0.176034,0.200001,0.179339,0.238017,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.955000,4612435.550000,3404,4755,122.058693,167.116547,170.752899,160.298355,145.810760,137.538025,137.182663,135.273560,136.347946,139.546295,142.711578,154.364471,173.480179,190.075226,204.885132,217.951248,220.951248,211.471909,187.124802,165.678528,154.802490,152.785965,146.918198,116.223976,96.976044,111.306625,120.364479,87.430588,41.017376,16.933903,13.356217,9.368609,11.593405,12.675223,13.325637,5.014884,1.004135,0.169422,0.348761,0.149587,0.063637,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601426.355000,4612435.550000,3421,4755,122.265305,166.174393,169.496704,159.637207,145.645477,138.480194,136.133072,135.942993,137.604156,140.414078,142.157883,154.405792,173.554565,190.381012,205.331421,217.860336,221.149597,210.909927,187.521500,164.182663,156.273560,151.422333,147.190918,116.645470,96.182663,111.091751,119.066956,86.471924,42.042164,17.989277,13.381012,8.804973,10.900017,11.938860,12.460347,6.328110,1.728928,0.066942,0.072728,0.015703,0.044628,0.000000,0.012397,0.064463,1.299174,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.955000,4612435.550000,3449,4755,110.357040,167.233063,168.373566,158.712402,145.340515,137.993408,136.547134,135.481018,137.481018,139.340515,143.067795,154.175217,173.142151,190.654556,205.695877,219.051254,222.076050,213.604965,188.282654,165.819839,156.067780,152.348770,145.745483,116.695885,96.365311,110.728943,120.208282,86.671089,39.852909,17.529772,13.249605,8.326461,10.859521,11.408282,11.440515,6.489266,0.993392,0.146282,0.240497,0.086777,0.035538,0.248760,0.000000,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.955000,4612435.550000,3474,4755,111.764481,160.979355,168.276871,160.814072,144.814072,136.640518,136.599182,135.500015,136.929764,139.764481,143.318192,155.574402,173.450424,191.326462,205.549591,218.698349,222.929749,212.714874,188.235550,165.690094,156.475220,154.144638,147.136383,117.863655,96.599190,112.458694,120.698364,87.169441,41.855392,16.885141,13.376051,8.219849,10.079356,10.218198,12.234726,6.171083,1.539671,0.226447,0.348762,0.021488,0.000000,0.000000,0.000827,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.955000,4612435.550000,3489,4755,112.147957,159.792587,168.354568,158.462006,144.362823,138.164490,136.668610,136.007462,137.288452,140.015717,142.817368,155.131424,173.354568,191.156219,206.371094,219.916550,222.189270,213.949600,189.090103,166.941345,156.238861,153.412415,149.081833,117.635559,97.594231,112.668617,121.123161,86.817375,42.759525,17.188448,13.552912,8.709931,10.601668,11.552909,12.338861,4.353726,0.802482,0.004959,0.000000,0.000000,0.060331,0.000000,0.008265,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.755000,4612435.550000,3508,4755,118.999184,163.941330,166.701675,157.900009,146.503326,137.833893,136.619019,135.751266,137.395874,140.304962,144.015701,155.461990,174.437195,190.842148,206.990906,219.329758,222.685120,212.990906,187.957855,166.486801,155.048767,152.106613,148.718185,117.503311,97.602486,112.065292,122.147934,87.123146,42.189281,16.826464,13.519853,9.089272,10.968613,12.392579,11.554562,5.314885,0.572729,0.102480,0.427274,0.077686,0.199174,0.000000,0.010744,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.155000,4612435.550000,3525,4755,115.719025,167.595062,168.099182,159.611572,147.603317,138.057861,138.785141,136.438034,139.033081,141.000015,143.495880,155.975220,174.520676,192.074371,205.842957,220.148743,223.710724,214.148743,189.272720,167.462830,157.024811,152.776871,147.181839,117.454559,95.966965,111.561996,121.512413,88.157051,41.595062,17.680183,13.380184,10.380180,10.621505,11.374395,11.068610,5.437200,1.165292,0.445455,0.088430,0.022314,0.097521,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.955000,4612435.550000,3549,4755,99.019012,165.448776,168.390930,159.093414,146.977707,139.052094,138.126465,136.481842,137.432251,140.605804,143.911591,154.738037,173.118210,191.093414,206.663666,219.300018,222.556213,213.952911,188.812424,166.961182,155.481842,152.547958,147.027298,116.622322,95.762817,111.762817,121.382652,87.333061,41.200844,17.287622,13.366135,9.869434,8.971916,9.295882,10.753735,4.493396,0.604134,0.138018,0.035538,0.003306,0.000000,0.000000,0.000000,0.086777,0.000000,0.000000,2.350413,0.000000,0.000000,0.000000 -601454.555000,4612435.550000,3562,4755,112.447136,156.728119,167.719849,160.554565,145.868622,138.612411,136.653748,135.893402,136.860367,140.265320,143.405807,155.273560,173.422333,191.248779,206.513229,219.513229,223.116547,213.265305,189.422333,167.273560,155.306625,152.108276,146.918198,117.190926,96.761169,111.232254,121.893410,86.529770,41.595886,17.211588,13.356217,9.970262,10.902496,11.420677,10.300014,5.871084,0.597523,0.090084,0.192563,0.000000,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,2.357025,0.000000,0.000000,0.000000 -601457.355000,4612435.550000,3576,4755,126.743820,162.818192,168.611588,158.132248,145.421509,136.801666,136.000015,135.090927,137.123978,140.231415,142.644638,154.413239,171.884308,190.851257,205.702484,218.677689,222.917358,213.355377,189.190094,166.181839,155.619858,152.198364,146.727295,116.355385,96.462830,110.148773,120.090927,86.537209,38.876053,15.257870,13.338861,6.290920,10.278529,9.386791,10.310758,5.355381,0.714051,0.207439,0.191737,0.330579,0.014050,0.424794,0.013224,0.029752,0.000000,0.000000,2.044628,0.000000,0.000000,0.000000 -601461.155000,4612435.550000,3595,4755,111.951256,165.918198,168.414047,158.108276,146.595871,137.835541,137.265289,136.918182,137.323135,140.951233,144.752899,156.000839,173.199173,191.736359,206.000824,219.058670,222.571075,212.207428,188.504959,167.595871,156.306625,153.248779,147.281815,117.331413,97.207458,113.447121,122.042152,89.538040,41.587627,16.480185,13.389275,7.568607,11.955390,10.768612,11.459520,4.452901,0.637192,0.014876,0.340498,0.100000,0.000000,0.000000,0.000000,0.204959,0.000000,0.000000,1.121488,0.000000,1.219835,0.000000 -601467.155000,4612435.550000,3625,4755,112.726456,165.718185,169.594223,161.090088,145.933060,138.767776,137.652084,137.412399,138.387604,142.040497,143.900009,155.908264,173.081818,191.585953,207.040497,218.751236,221.470245,213.486786,188.379349,166.718185,156.007446,152.536362,148.445465,118.230591,97.809105,112.139679,123.329765,89.313232,41.776058,16.630596,13.495060,9.920676,11.079357,11.691752,12.196709,5.892570,0.364465,0.459505,0.108265,0.028926,0.017356,0.000000,0.000000,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.555000,4612435.550000,3657,4755,121.840515,168.666962,168.518204,158.262009,147.352921,139.947952,137.468628,137.485153,137.840515,141.138046,144.195892,156.047134,173.848770,190.815720,204.700027,217.683502,221.138046,211.171097,188.121490,166.071930,156.385971,152.716553,146.154572,118.592583,96.625641,110.311584,121.666962,88.228943,40.633904,16.557043,13.286795,7.743814,10.135554,10.147123,10.613239,4.219016,0.937192,0.077687,0.187604,0.066942,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601477.755000,4612435.550000,3678,4755,120.942986,169.290100,171.116547,161.075226,146.876877,139.347946,138.265305,138.009109,139.637207,143.050430,145.827286,156.785965,173.984314,191.686783,207.166122,220.240509,223.306625,214.100006,189.637207,166.356216,156.149597,153.050430,149.009109,118.190910,98.174385,112.868599,123.843803,90.290085,44.000847,18.492580,13.546300,9.795882,11.120677,12.816546,12.285966,4.923149,1.663639,0.136365,0.171075,0.018182,0.008265,0.000000,0.038017,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.555000,4612435.550000,3692,4755,116.237206,163.906616,169.129761,160.443817,147.625610,140.708252,138.650421,138.187592,139.088425,142.865280,145.914886,156.741333,175.344635,191.542984,207.890091,219.931412,222.972733,214.138031,189.394226,166.914886,156.220673,155.014053,148.972733,118.402489,98.452072,112.162819,123.187614,90.030594,42.906631,18.657045,13.542994,9.039682,10.490099,10.900844,12.391751,4.628934,0.439671,0.158678,0.172728,0.100000,0.000000,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.755000,4612435.550000,3723,4755,123.163658,172.155380,171.262817,161.089264,150.543808,141.271088,139.684311,139.039673,140.841324,143.940506,146.279343,157.990082,175.973557,193.246292,209.593399,222.452896,227.023148,216.890915,191.998352,168.692566,158.932236,154.957031,149.072739,118.089272,96.973572,111.353745,121.469437,89.320679,44.114067,18.434731,13.552086,7.949601,11.061173,12.352909,10.481833,6.571083,1.134713,0.137190,0.332232,0.000000,0.012397,0.000000,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,1.197521,0.000000 -601490.755000,4612435.550000,3743,4755,122.897537,167.971909,168.864471,159.864471,148.905792,140.162003,138.971909,138.624802,138.624802,143.988449,145.442993,157.426453,174.823151,192.963654,208.922333,222.600006,226.831421,217.277695,191.046295,168.517365,158.013229,154.277695,148.963654,118.219849,97.905800,110.649597,119.996704,87.566956,40.641342,16.322332,13.542168,8.342164,10.309934,8.898362,9.136377,5.912406,0.737193,0.084298,0.118183,0.000000,0.029752,0.000000,0.073554,0.000000,0.000000,0.000000,0.000000,1.123141,0.000000,0.000000 -601494.355000,4612435.550000,3761,4755,136.342987,168.318192,169.648773,160.516541,150.185944,140.640518,138.285141,139.417374,139.433899,143.615723,146.830582,157.425629,174.252075,193.665298,208.814072,221.797531,226.772751,217.103317,190.921509,168.500015,156.285141,154.293411,148.318192,118.632240,96.566124,111.012405,120.880173,87.351250,40.425644,15.738861,13.483490,7.173567,9.844643,11.510761,8.323153,4.598356,0.436366,0.446282,0.756200,0.085124,0.000000,0.000000,0.017356,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601501.155000,4612435.550000,3795,4755,118.685143,167.883469,172.346283,163.073563,152.338013,141.412399,140.156204,141.040497,140.974380,145.329758,148.569427,158.709915,179.123138,196.742981,211.924789,225.420670,229.685120,220.635544,194.900009,171.321487,159.296692,156.652069,152.263641,120.668617,99.552910,113.486794,122.205803,89.627289,42.676876,18.523159,13.842167,7.628114,10.896711,12.204148,12.083487,4.465298,1.191739,0.188431,0.381820,0.071901,0.180165,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.155000,4612435.550000,3810,4755,119.018188,173.695877,172.414886,163.795044,151.390091,142.018188,140.357040,139.596710,140.390091,145.737198,148.076050,159.580170,177.109100,195.852905,211.505783,225.431396,228.737183,219.414871,194.125626,170.861160,158.836380,156.257858,150.927277,121.175217,98.200012,112.695885,122.761993,90.142159,42.117378,17.364481,13.720680,7.490923,10.147951,9.917372,12.478529,4.516536,0.405788,0.262811,0.130580,0.010744,0.050414,0.000000,0.030579,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601507.155000,4612435.550000,3825,4755,123.385139,174.897537,172.352081,163.914062,151.616547,141.409927,141.864471,140.707458,141.633072,146.038025,147.591751,159.872742,177.104141,195.955383,211.657852,225.955368,229.525620,220.599991,193.748779,170.773560,159.608276,156.616547,151.418198,120.864479,97.327286,113.261169,122.095879,89.401665,42.641342,17.226465,13.765307,7.533072,11.044644,10.629768,9.756211,3.780999,1.149591,0.308266,0.109918,0.126447,0.221489,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.155000,4612435.550000,3840,4755,124.889275,173.914047,171.773544,164.418198,152.013229,142.327286,141.244644,141.352081,141.385132,146.657867,148.186783,160.211578,178.971893,196.905777,212.252884,225.864456,229.352066,220.897522,195.062805,171.153732,158.963654,156.566956,150.327286,120.385147,98.938866,111.566963,122.591759,90.219856,42.368614,17.297539,13.666135,6.804970,9.814892,9.161999,10.594229,3.846288,0.973557,0.561985,0.021488,0.000000,0.126447,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.755000,4612435.550000,3853,4755,115.438034,179.561996,173.851257,165.380188,153.107452,141.537201,141.115723,140.603317,141.289276,146.652908,148.157043,159.570267,178.702499,196.041336,212.752075,226.082657,229.545471,220.000015,194.264481,170.735550,159.876053,156.628113,150.818192,119.595055,100.107452,112.404976,124.057869,88.338860,42.528942,17.755390,13.710762,7.955384,10.444646,11.530595,10.000841,3.233065,1.395044,0.286777,0.109092,0.095042,0.267769,0.000000,0.094215,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.155000,4612435.550000,3870,4755,125.352081,175.914047,171.930573,163.773544,152.649597,141.938858,141.352081,140.153732,140.715714,145.558685,147.790085,159.335541,177.509094,195.500824,212.013214,225.170242,228.814880,219.335541,193.310745,169.723969,159.401657,154.980164,149.327286,119.856209,97.509102,111.690926,120.409927,87.542160,42.285976,17.512417,13.575226,6.133894,9.196712,9.695884,10.007452,3.771909,0.804962,0.215704,0.093389,0.044628,0.030579,0.000000,0.000000,0.000827,0.000000,1.306612,0.000000,0.000000,0.000000,0.000000 -601519.755000,4612435.550000,3888,4755,116.071091,181.641312,174.947098,165.236359,154.781815,142.930588,142.575226,143.616547,142.847946,148.261154,149.203308,161.261154,178.352066,197.996689,213.211563,228.087601,231.236359,222.343796,194.930573,172.087601,160.492554,157.352066,149.963638,121.195045,99.839691,112.889275,121.533890,90.360352,42.558701,16.923159,13.633077,7.147946,10.368612,10.023982,11.699190,3.838851,0.623971,0.047108,0.352894,0.171075,0.051240,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.355000,4612435.550000,3916,4755,132.451248,177.294235,177.517365,168.178528,155.104141,142.922333,142.120667,143.666122,143.186783,147.608276,148.261169,160.434723,178.062820,197.252899,212.426453,226.302490,228.732239,220.046295,193.228119,171.294235,159.467789,156.418198,150.781830,119.335548,98.492577,110.583481,121.244644,88.004974,41.773575,15.490100,13.707457,5.621497,9.961999,8.933900,11.037205,3.800835,0.674384,0.516531,0.096695,0.013223,0.095041,0.000000,0.068596,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.955000,4612435.550000,3944,4755,130.304153,179.766968,177.659531,165.857880,150.452896,141.651260,142.072754,140.766968,141.461182,144.766968,147.081009,158.841339,176.560349,194.527298,209.800018,223.585144,226.725647,216.634735,189.609940,166.890930,157.056213,153.775223,147.709091,117.981827,97.948769,111.328934,119.692566,85.676041,40.188450,16.628944,13.428118,9.390922,10.569438,10.163651,11.492577,5.185132,0.553721,0.159504,0.082645,0.109091,0.000000,0.000000,0.060331,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.755000,4612435.550000,3958,4755,120.371086,178.833893,177.685120,164.511566,149.610748,141.271912,140.461990,140.338013,139.941330,142.999176,145.181000,157.412399,176.313232,193.561157,207.825623,221.941330,225.577682,213.924789,188.015701,166.048767,154.470245,152.709915,146.445465,115.065292,96.602493,109.189262,117.908264,83.974396,41.247128,16.742992,13.313242,10.296708,9.917372,10.943818,11.706626,5.413229,0.461160,0.006612,0.214877,0.012397,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.555000,4612435.550000,3982,4755,138.181839,176.677704,176.471069,166.561996,151.595062,141.975220,143.041336,141.438034,141.727295,143.975220,146.785141,159.214890,177.388443,194.181824,209.809937,223.247955,226.264481,214.834732,188.892563,165.181839,156.198364,153.173569,147.272751,117.223152,96.743813,109.355377,118.619843,85.363655,41.760349,18.495888,13.388448,11.566131,10.576050,10.990926,12.960345,5.776042,0.820664,0.504133,0.305786,0.022315,0.006612,0.000000,0.119835,0.209091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.155000,4612435.550000,4015,4755,129.327286,180.616531,177.484299,165.360321,150.748764,140.599991,141.244629,139.509094,140.310745,142.988434,144.955368,157.798340,174.872726,191.674377,207.137192,221.038010,223.732224,211.261154,185.798340,163.170242,153.376862,150.021484,144.327271,113.591751,95.533897,107.600014,115.740501,82.897537,40.186794,16.749605,13.120679,11.316544,8.545470,11.621505,11.119022,6.652077,1.179341,0.203306,0.145455,0.066116,0.009918,0.000000,0.001653,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,2.109917 -601548.355000,4612435.550000,4031,4755,135.129776,185.303314,176.129761,168.658691,153.303314,142.352905,142.881821,141.708267,142.352905,145.088440,146.790924,158.352905,176.526459,194.352905,209.063644,222.427277,224.518188,213.113235,186.658691,164.625626,154.642151,149.947937,146.154556,114.881836,95.881836,109.443817,118.270264,84.493408,40.675228,17.506628,13.286797,11.848776,10.672746,10.986794,12.775223,6.726457,0.605787,0.231406,0.125621,0.026447,0.094215,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.155000,4612435.550000,4045,4755,119.342995,181.764465,178.111572,166.202484,151.640503,141.781021,142.367783,140.723175,141.772751,143.781021,145.276871,158.086777,174.838837,193.276855,207.657028,221.574387,223.574387,211.376038,185.466949,163.475204,152.838837,151.260330,144.863663,114.648773,95.103325,107.971092,115.995880,83.772743,39.648785,17.269442,13.169439,10.891751,11.594233,10.092579,12.557867,4.451248,0.530580,0.343802,0.401654,0.000000,0.013224,0.000000,0.023967,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.155000,4612435.550000,4065,4755,126.806625,180.426437,173.872726,165.484299,151.517349,140.269424,141.219833,141.236359,141.244629,144.228088,144.806610,157.302475,175.302475,192.872726,207.550415,220.814880,223.484299,210.145447,185.401657,162.509094,152.426437,148.996689,143.145447,114.054558,94.252907,106.550423,114.715714,82.228111,39.319035,16.990101,13.013241,10.739683,9.783488,10.354562,10.671915,5.273562,0.876862,0.280993,0.251240,0.008265,0.083472,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.155000,4612435.550000,4080,4755,138.271103,183.700836,176.262817,168.064468,152.477707,141.122360,142.163681,140.775223,142.163681,145.419876,145.386810,157.957031,175.585129,193.047943,207.585129,220.568604,222.692566,209.915710,184.047943,162.436371,151.337219,148.155396,144.163681,113.229767,94.552086,106.345474,113.717369,83.072739,38.634727,15.940515,13.105803,10.467783,8.757867,10.239687,10.969436,4.793396,0.602481,0.238843,0.000000,0.018182,0.000000,0.000000,0.003306,0.045455,0.000000,1.118182,0.000000,0.000000,0.000000,0.000000 -601562.955000,4612435.550000,4104,4755,135.906616,185.410751,175.319839,167.518188,150.559509,141.295044,143.311584,140.981003,142.088440,146.733063,146.476868,158.633896,176.385956,193.675217,208.319839,221.675217,223.014053,209.708267,185.038849,163.419022,153.080170,149.485138,144.790924,114.253738,95.997536,107.088448,115.468613,83.658699,40.146301,15.798368,13.162829,10.238856,9.763654,10.914067,11.020678,4.346289,0.689257,0.246281,0.000000,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.555000,4612435.550000,4137,4755,142.238037,192.890915,176.857864,170.527283,153.965302,141.519012,142.585129,141.998352,142.791748,148.750427,146.634720,158.047943,175.816528,193.469421,208.403305,222.527283,222.940506,209.395050,184.089264,163.188431,154.097549,149.287613,144.436371,113.857864,95.527290,107.510757,115.543816,81.180183,38.874393,15.101671,13.130598,11.880181,9.210760,9.295057,10.338860,4.514057,0.515704,0.276034,0.051240,0.000000,0.009918,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612435.550000,4154,4755,136.128937,193.640518,178.400848,173.086792,157.582657,142.235550,143.491745,142.690094,143.433899,148.904968,146.805801,159.230591,175.428940,194.990921,208.379364,222.908279,224.214066,209.767792,185.230591,163.610764,153.371094,152.057037,146.354568,115.701668,97.007446,109.015717,117.685135,82.751251,40.114895,16.455391,13.304978,13.931420,10.052909,11.185142,12.429768,6.748770,1.272730,1.087604,0.828926,0.535538,0.674380,0.233058,0.266116,0.618182,0.000000,0.000000,0.000000,1.131405,0.000000,0.000000 -601575.755000,4612435.550000,4168,4755,141.318192,193.739685,182.235550,172.714890,155.103317,143.789276,144.632248,144.293411,144.756210,151.103317,149.227295,160.210754,177.557861,194.913239,210.871918,225.028946,224.276871,212.070267,187.500015,166.334732,155.376053,151.731415,147.227295,116.144646,96.838860,112.020668,117.384315,83.202492,39.177708,15.760348,13.384315,15.062827,11.386794,9.324810,13.124809,5.681828,0.948763,0.978514,0.189257,0.327273,0.086777,0.000000,0.111571,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.555000,4612435.550000,4182,4755,138.800003,197.981827,176.890915,172.306625,155.562820,142.447113,144.009109,141.777695,143.744644,150.546295,146.852081,159.438858,175.628937,193.628937,209.513229,223.248764,225.504959,209.893402,185.736374,164.521500,154.934723,151.331421,146.554565,115.653740,97.662003,111.248779,116.686798,82.686798,40.471920,15.870268,13.323160,12.876874,9.619852,11.433074,11.255387,5.589265,0.875208,0.474381,0.342149,0.185125,0.303306,0.188430,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.555000,4612435.550000,4202,4755,157.371094,198.156189,181.726440,173.941330,155.767776,143.643814,144.652084,143.594238,145.346298,152.569427,147.842148,159.792572,176.850403,194.734695,211.007446,224.395874,224.982651,209.585938,186.486771,165.354553,155.147934,150.916534,146.536377,115.552902,96.751259,111.900009,116.453728,81.891754,40.478531,16.009935,13.321508,14.290925,9.756215,11.952083,11.225635,5.911580,1.251242,0.130579,0.133884,0.003306,0.087603,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.155000,4612435.550000,4240,4755,115.469437,173.246307,172.279358,163.130600,149.899200,141.411591,140.370270,139.791763,140.948776,143.915726,145.824814,157.345474,175.403336,192.023163,205.543808,218.469421,220.147110,210.428101,184.353745,162.105804,152.651260,147.808289,142.800018,114.684311,95.667786,110.271088,116.171913,84.147125,40.700844,18.380184,12.981836,10.297533,10.755389,11.050429,10.309933,4.697530,0.324794,0.282645,0.146281,0.257852,0.185951,0.000000,0.086777,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.955000,4612435.550000,4254,4755,123.176056,170.250427,169.754547,161.564468,150.399185,140.399185,140.473557,139.101654,140.159515,142.366119,146.713226,157.870255,175.432236,191.035538,205.812408,218.366119,221.638855,210.060333,184.357864,163.399185,153.448761,148.787613,143.663635,113.961166,96.068604,107.407448,117.382652,82.622337,40.754566,17.152086,13.060349,8.561170,11.168612,11.440514,11.274394,4.867778,0.348761,0.272728,0.078513,0.012397,0.000000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.755000,4612435.550000,4268,4755,116.470261,163.718201,172.585968,160.065308,148.354568,141.123154,139.404144,139.007462,139.544647,142.181015,144.999191,155.982666,173.619034,191.544647,204.412415,217.585968,218.660355,210.015717,183.478531,161.643814,151.304977,147.230591,141.900024,114.114891,94.693398,108.387611,116.032242,83.164474,38.833904,15.966133,12.900020,8.242988,9.449604,9.446299,10.781833,4.477694,0.676861,0.176034,0.002479,0.000000,0.020662,0.000000,0.002480,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.555000,4612435.550000,4282,4755,120.701675,169.643814,173.032257,164.230591,150.040512,141.461990,141.197525,139.784302,140.652069,143.751236,146.172745,157.999191,176.131424,192.428925,205.742981,219.065292,222.933060,210.833893,185.900009,163.759521,154.395889,150.875229,144.627274,115.833900,96.759521,110.800842,117.486794,84.569443,43.395889,18.452085,13.147952,9.421501,12.341340,10.929770,12.752909,5.470258,0.847935,0.314877,0.219009,0.011571,0.170249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.355000,4612435.550000,4306,4755,112.984314,168.099991,172.331406,161.728088,149.405777,140.604126,139.860321,139.752884,140.761154,142.711563,146.190903,158.050415,175.265289,192.091736,207.066940,218.976028,222.587601,210.240494,184.835541,163.405777,153.157852,149.124786,143.009094,115.166130,94.480179,109.372742,117.133072,85.422325,42.339691,17.895061,13.000845,9.738857,10.115720,10.512414,12.568611,4.644637,0.851241,0.528100,0.000000,0.019835,0.014050,0.000000,0.001653,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.755000,4612435.550000,4328,4755,122.952087,165.778503,171.505783,163.398346,150.464462,141.778519,142.348770,140.795044,141.687607,144.976868,147.067780,158.687592,175.828094,192.390076,206.439667,218.514038,221.001648,210.629745,184.241318,163.018173,153.357040,149.290909,142.745468,114.828117,95.844643,109.481010,117.191750,85.076050,43.398365,18.181009,12.976878,9.557039,11.404977,11.342165,11.410759,5.885960,0.784299,0.112397,0.204133,0.012397,0.014050,0.000000,0.043802,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.755000,4612435.550000,4343,4755,115.823975,164.741333,173.518188,163.295044,150.782654,141.179352,140.782654,139.468597,141.063644,144.228943,146.625626,157.270264,175.005798,191.931412,205.914886,216.625626,219.303314,208.642151,184.195877,161.890091,151.633896,148.576050,143.245468,115.171082,94.898354,108.675217,116.377693,84.493401,42.476883,16.544647,13.022333,8.686790,11.193406,11.352083,12.236380,4.595050,1.336366,0.241323,0.054546,0.180166,0.053720,0.000000,0.011571,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612435.550000,4360,4755,123.149597,167.447113,168.579346,160.422333,148.166122,140.000839,138.695053,138.777695,139.480179,142.306625,144.281830,155.504974,173.447113,189.612411,203.513229,214.587616,217.240509,206.637207,182.083481,160.257034,149.604141,145.909927,139.463654,110.678528,92.852081,106.414062,113.033897,82.703316,39.100021,16.532249,12.678532,8.781005,9.133073,10.547124,11.614891,4.365297,0.995870,0.126446,0.077686,0.014050,0.040497,0.000000,0.005785,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.755000,4612435.550000,4378,4755,111.291748,163.126450,171.878525,162.713226,150.333069,142.804138,140.837204,139.547943,140.126450,143.498352,145.366119,157.109924,174.209091,190.936371,203.589264,216.366119,218.795868,207.795868,182.820663,160.977692,149.828934,147.209091,141.572739,113.614067,93.911583,107.944649,115.490097,83.357872,40.490101,17.604977,12.870267,7.753731,11.346298,10.248777,10.112411,5.165298,0.487604,0.649588,0.000000,0.011570,0.003306,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.955000,4612435.550000,4394,4755,125.930580,165.600006,172.682663,162.153732,150.839676,143.649597,141.418198,139.889267,141.575226,143.798355,146.244644,156.988449,174.352081,191.203323,204.963654,216.409927,218.971909,207.509109,182.814896,160.781830,151.740509,146.533890,142.781830,112.831429,95.401665,107.285973,115.062828,83.757050,43.327293,17.712416,12.980185,7.935549,9.415721,11.863654,11.609933,4.701661,1.016531,0.219836,0.444629,0.141322,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.042975 -601625.355000,4612435.550000,4416,4755,118.171921,168.890915,174.932236,162.171906,149.485962,141.684311,139.039673,139.775208,139.973557,141.899185,145.213226,155.452896,172.510757,189.262817,202.295868,214.923981,217.080994,204.890915,181.361984,157.981827,147.915710,143.882645,139.709091,111.089279,91.428123,105.147133,112.659523,82.163658,40.593410,16.911589,12.700845,8.603318,9.497538,10.692578,9.862823,5.167778,1.009919,0.197521,0.001653,0.295042,0.007438,0.000000,0.047934,0.067769,0.000000,0.000000,0.000000,0.000000,1.290909,0.000000 -601628.755000,4612435.550000,4433,4755,114.743820,166.471100,171.314087,161.719040,149.520691,140.231430,139.438049,137.743820,139.264496,141.471100,144.008301,154.727310,172.644653,188.636398,202.181854,213.975235,214.917389,203.140533,179.752106,157.479370,146.338882,143.214905,138.545486,108.900841,91.239685,104.760345,112.471092,81.950432,39.851261,17.562002,12.595061,8.401666,10.134728,9.808280,10.181007,4.542984,1.142151,0.283472,0.058678,0.008265,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.246281,0.000000 -601633.955000,4612435.550000,4459,4755,104.279350,166.105789,170.039673,162.709091,149.477692,140.651245,139.114059,138.981827,139.568604,142.130585,144.138855,155.188431,171.907440,188.395035,202.147095,214.072739,214.097534,203.229736,178.576859,156.965302,145.750427,142.072739,136.800003,108.833069,90.163651,103.651253,112.023155,81.923981,40.477707,16.027290,12.436383,7.933896,9.366960,8.729768,10.345470,4.138852,1.126448,0.210744,0.064463,0.030579,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.355000,4612435.550000,4491,4755,113.943817,167.026459,169.960342,162.795074,150.323975,141.183487,140.175217,138.910751,139.712402,142.340500,144.381821,155.307449,171.514053,188.290909,201.390091,213.348770,215.100830,205.084305,179.596710,157.200012,145.538849,141.638031,137.472733,108.869438,89.778534,105.191750,111.266136,82.431419,40.315720,16.229771,12.497540,7.124804,9.127290,10.609933,11.152081,3.380172,1.438845,0.604134,0.340497,0.032232,0.008265,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.555000,4612435.550000,4517,4755,109.702492,171.198364,173.859528,163.793411,150.950409,140.652893,139.123962,139.008270,139.677689,142.545456,143.925613,154.909088,172.636383,188.545471,201.909103,212.727295,214.247955,203.371918,178.206635,156.396698,145.570251,140.190079,136.727280,108.702492,89.487617,104.330597,111.570267,82.801666,39.214897,14.766958,12.429770,6.607449,8.488445,9.893404,8.520676,4.247942,0.593390,0.038017,0.000000,0.002479,0.000000,0.038017,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.555000,4612435.550000,4547,4755,115.954559,170.667770,171.502487,163.494217,151.659515,139.899185,138.750427,138.238022,139.047943,143.089264,144.766953,155.138855,171.857864,187.766953,202.163635,213.229752,214.370255,204.039673,178.750427,156.766953,145.419846,141.692566,136.800003,108.700844,90.485962,102.535553,110.362000,81.585136,39.733902,14.690926,12.436382,6.014886,10.059522,8.540511,10.257867,5.910753,0.710745,0.216529,0.122314,0.005785,0.090083,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.155000,4612435.550000,4575,4755,120.391747,168.606628,170.904144,164.168610,150.928940,141.788452,139.862823,139.036377,139.590103,142.433075,144.143814,155.391754,171.614899,188.143814,201.094238,212.375229,214.846298,204.052917,179.366959,156.193405,145.920685,141.565308,136.218201,107.871086,89.672737,102.838028,110.747116,81.912407,40.449608,16.172745,12.383491,7.512408,10.867786,10.876049,11.153734,3.947115,0.986779,0.279339,0.385951,0.154546,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612435.550000,4605,4755,125.545464,179.413239,176.636383,168.256210,153.553741,143.611588,141.429764,140.975220,141.148773,144.314072,146.404968,156.198364,173.090927,189.958694,202.380188,213.975235,215.801682,205.305817,181.347122,157.942169,148.256210,141.966965,138.272751,109.925629,91.809929,104.330589,112.966949,84.033066,40.867786,17.161177,12.570266,7.077697,9.450432,9.822332,11.243815,4.207445,0.933886,0.133885,0.192562,0.067769,0.136364,0.000000,0.000000,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.555000,4612435.550000,4622,4755,142.481842,174.572754,177.853745,168.440521,155.159531,144.936386,142.333084,142.085144,141.374405,146.399200,147.415726,157.250443,174.572754,190.961182,204.647125,215.820679,216.696716,205.936386,181.597549,158.151260,147.498367,142.242172,138.663666,110.242172,92.200851,104.944649,111.217377,84.589279,41.928123,17.276051,12.605804,7.102492,10.500017,7.647123,9.470263,4.742983,1.147109,0.271902,0.012397,0.142975,0.051240,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.555000,4612435.550000,4652,4755,134.554565,174.100006,174.414062,165.562820,152.488449,142.447113,140.976044,141.042160,140.711578,145.199188,146.190918,157.290100,172.637207,189.100006,203.157867,214.455383,215.265305,204.587616,179.637207,157.744644,145.744644,142.166122,137.463654,109.447121,91.157867,104.323151,112.083481,83.108276,40.364483,16.611588,12.496714,6.452076,10.185141,8.571091,9.446293,4.647116,1.357027,0.671075,0.077686,0.014876,0.254547,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.555000,4612435.550000,4682,4755,115.581841,178.887604,175.185120,166.185120,152.342163,142.226456,140.209915,139.598343,139.449585,143.548767,143.276031,154.325638,170.945465,187.730576,201.218185,211.515701,213.978516,203.606613,177.738846,155.234711,144.631409,140.028107,134.945465,107.986786,89.416542,102.771912,112.061165,82.069443,40.879364,18.117374,12.267788,6.876871,10.971089,10.314891,9.779353,3.618190,1.490913,0.112398,0.356199,0.161158,0.000000,0.000000,0.023967,0.004959,0.000000,0.000000,0.000000,1.171075,0.000000,0.000000 -601682.555000,4612435.550000,4702,4755,141.567795,182.448761,179.382645,167.506622,151.457047,138.349609,139.010773,137.043839,136.878540,141.647110,142.118195,152.035538,169.242157,186.258682,199.655380,211.250427,213.878525,201.638855,177.093399,154.300003,142.366119,138.985977,134.390930,106.804146,89.101669,101.357864,111.440514,81.506622,38.531418,16.148781,12.217375,5.288440,9.914894,10.060346,11.033074,4.266951,1.425623,0.209918,0.757853,0.237191,0.349588,0.101653,0.023967,0.626447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.355000,4612435.550000,4746,4755,120.926460,183.918198,178.852081,168.802505,154.802505,142.116547,141.893402,140.761169,139.447113,144.562836,143.248779,153.752914,170.719849,187.769440,201.042160,211.463654,211.488449,199.942993,175.579346,153.000854,142.166122,137.992569,133.009109,103.959518,87.141335,99.777702,109.009102,80.397537,38.455395,15.185969,12.091755,7.358689,8.854562,9.423983,7.110757,3.504966,0.804960,0.149587,0.300827,0.066116,0.000000,0.011570,0.011570,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.155000,4612435.550000,4760,4755,125.363663,173.636383,175.330597,163.479355,148.123978,138.520676,137.057861,135.520676,134.743820,136.694229,137.743820,149.363647,165.694229,181.545471,193.619827,204.727280,205.545456,192.884293,169.256210,148.033081,137.809937,134.793411,127.636383,101.066132,84.016556,95.876053,104.454559,75.586800,37.000023,15.437207,11.603325,9.247948,8.823981,8.559518,10.751253,4.481000,0.685126,0.114877,0.516530,0.055372,0.000000,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.755000,4612435.550000,4778,4755,127.222336,176.709930,177.594223,164.825638,149.668610,140.081818,138.718185,135.486801,135.652084,137.767776,138.685120,149.693405,166.858704,181.883469,194.321487,204.255371,205.288437,192.825623,168.362823,148.057037,137.428925,133.023987,128.536377,99.924812,84.197540,96.784317,105.800842,75.544655,35.800842,16.951258,11.685143,9.185965,8.871091,10.689273,9.744646,4.378520,2.104135,0.500001,0.194216,0.000000,0.000000,0.000000,0.004133,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,2.224794 -601702.355000,4612435.550000,4801,4755,126.300835,179.201660,173.895874,163.656204,147.623138,138.796692,137.937195,134.672745,134.623154,136.697525,136.623138,147.697525,165.565292,181.152069,192.102478,203.201660,203.408264,191.251236,166.499176,146.953720,135.143814,132.978531,126.490921,99.242989,83.094223,94.780174,103.829773,76.267776,34.664486,15.628943,11.499192,10.422330,9.246296,9.212410,9.071090,4.447115,1.219838,0.109091,0.000000,0.000000,0.110744,0.000000,0.048760,0.057025,0.000000,0.000000,1.064463,0.000000,0.000000,0.000000 -601705.555000,4612435.550000,4817,4755,116.640503,173.028931,174.020660,163.814056,148.376038,137.268616,136.351257,134.466949,133.219009,135.880188,135.781006,146.194214,164.541321,178.648758,191.326447,201.921494,202.219009,189.747940,165.789261,144.797531,133.904968,132.235550,125.681831,98.227287,81.433899,94.095055,103.152908,74.830597,35.673569,15.542167,11.425639,8.372740,8.647121,9.721502,8.749601,3.252074,0.932234,0.868597,0.149587,0.000000,0.000000,0.000000,0.061984,0.052893,0.000000,1.318182,0.000000,0.000000,0.000000,0.000000 -601709.555000,4612435.550000,4837,4755,127.836380,181.249603,175.638031,164.877701,149.381821,137.034714,138.059509,135.671082,134.414886,137.596710,137.092575,147.795044,165.282654,181.084305,193.067780,202.869431,203.489273,190.861160,165.728943,144.828110,134.125641,131.654556,126.654564,98.638031,81.885971,93.001671,104.365311,75.406631,35.522335,15.500017,11.514069,9.380178,9.032246,10.393404,9.627287,3.145461,0.996696,0.804961,0.274381,0.130579,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.555000,4612435.550000,4852,4755,118.588448,184.439667,176.390076,166.026443,150.720673,138.530579,138.778503,136.555374,136.084305,138.588425,137.208252,148.894226,165.547119,181.216522,194.505783,204.315689,203.786774,190.786774,167.373550,145.844635,135.745468,133.340515,127.381836,99.571922,83.340515,94.976875,105.588448,75.919029,36.076054,15.400019,11.580185,9.753734,8.947122,9.046295,9.855387,2.886783,0.676035,0.337191,0.019008,0.000000,0.000000,0.007438,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.955000,4612435.550000,4869,4755,123.582664,185.541321,176.590927,167.243805,149.582657,137.161163,137.392563,135.830597,135.061996,138.780991,136.756210,148.342987,165.500000,181.086792,192.838837,203.838837,204.119827,190.384293,167.764465,145.458694,134.673569,132.442154,127.136375,98.524803,81.830589,92.789276,104.400833,76.929771,35.863655,14.561174,11.557869,9.848775,8.691749,8.503320,8.955387,3.412403,1.219837,1.218183,0.178513,0.014050,0.068595,0.000000,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.155000,4612435.550000,4900,4755,125.807457,186.179367,175.617386,165.286804,149.344635,138.344650,138.666962,135.410751,136.080170,138.154572,136.625641,148.385971,165.295074,181.253738,192.989273,203.369431,204.005798,189.898361,166.947952,145.766144,134.890091,132.328110,126.063652,97.361176,81.452087,94.898361,103.014069,74.799194,35.633904,15.349606,11.460349,10.680181,9.478528,9.238031,8.939685,3.966125,1.347111,0.111571,0.051240,0.023141,0.145455,0.000000,0.061984,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.955000,4612435.550000,4914,4755,128.304977,183.503311,178.338013,165.701660,150.949585,139.181000,139.271912,136.759506,136.726456,139.990906,137.999176,149.197525,166.007446,182.263641,193.833893,204.817352,203.800827,190.313232,166.693390,146.214050,135.057022,132.395874,126.809105,98.412407,81.982658,95.619019,104.767776,76.652077,35.825642,14.903323,11.528117,11.934728,10.830594,11.490926,10.637207,3.879347,1.320665,0.278513,0.228926,0.069422,0.114050,0.000000,0.004132,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.955000,4612435.550000,4929,4755,126.362007,187.119827,178.309082,166.160324,149.391739,139.086777,137.946274,136.433884,135.822311,139.665283,137.822311,149.004135,165.516525,182.516525,194.566116,205.450409,203.904953,189.756195,166.483475,145.549591,135.483490,132.673569,127.136383,98.243828,82.376060,95.004158,104.896721,74.954567,35.223988,16.086796,11.557871,10.551256,9.685139,11.533073,10.316544,6.311580,1.294218,1.147108,1.558680,0.957853,0.120661,0.219008,0.706612,0.115703,0.000000,0.000000,1.119008,0.000000,0.000000,0.000000 -601731.555000,4612435.550000,4947,4755,134.000015,190.644638,180.024811,167.074402,153.041336,138.909103,139.000015,136.826462,136.446304,140.008286,138.438034,149.619858,164.892578,182.975220,194.818176,205.438004,204.289246,190.289276,166.842987,146.669434,135.214890,132.140503,126.818192,98.090919,82.735550,94.305794,103.694221,75.694229,37.231426,16.660347,11.528945,12.387620,9.396708,10.210757,10.384313,3.866950,0.993391,0.416531,0.047934,0.017356,0.000000,0.000000,0.003306,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.555000,4612435.550000,4972,4755,127.990097,190.923981,178.287613,167.130585,149.403336,137.651260,137.056213,134.552078,133.824814,138.271103,135.114059,146.766953,163.419846,179.750427,192.932236,203.287628,202.866135,187.419846,163.709091,144.576859,132.155380,129.990082,123.981827,95.609924,79.056206,94.485954,102.081001,72.047951,34.717373,13.838861,11.271093,9.287618,7.640508,7.927287,8.076875,3.098355,1.166118,0.179340,0.011571,0.002479,0.068595,0.000000,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.755000,4612435.550000,5013,4755,146.155396,200.295868,183.023148,171.973557,153.138855,140.866119,138.642975,137.097549,137.800003,143.080994,137.700836,150.502487,166.163635,183.692566,197.204971,207.800003,204.990082,190.676041,166.899185,146.634720,136.039673,133.320663,127.709099,98.998367,82.634735,98.147133,104.857872,74.824814,37.709114,15.249604,11.609936,11.125637,8.615717,9.258691,7.503321,5.463648,0.780994,0.215703,0.039670,0.000000,0.000000,0.000000,0.117356,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.355000,4612435.550000,5076,4755,112.903320,163.903290,169.142960,160.754547,146.878525,136.423981,134.746292,132.762817,132.473572,134.382660,136.192566,147.432236,165.002487,180.928101,193.919846,203.663635,203.076859,191.895050,166.994217,145.754547,134.291748,131.680176,125.300018,96.440514,79.928116,94.200844,105.043816,76.911583,35.853741,14.862002,11.390928,7.805798,8.600842,9.420677,9.016542,3.383479,0.671903,0.203307,0.050413,0.000000,0.058678,0.000000,0.000000,0.119835,1.185124,0.000000,0.000000,0.927273,0.000000,0.000000 -601777.955000,4612435.550000,5179,4755,119.946289,169.805817,173.070282,162.483505,149.045471,137.938049,135.599182,134.880173,135.409103,135.880188,136.904968,148.516541,166.657059,182.268631,195.235565,205.433914,205.409119,194.119873,169.309952,147.185974,135.921509,133.293396,128.681824,98.582649,81.987617,97.252075,106.425629,78.020676,37.987621,16.805803,11.698367,8.494227,9.212413,10.300841,9.027287,4.038025,0.595043,0.086777,0.052893,0.000000,0.009918,0.000000,0.052066,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.755000,4612435.550000,5333,4755,118.028107,165.697540,170.375214,162.019852,148.234711,138.003326,135.912415,134.391754,133.152084,136.631424,137.672745,147.656219,165.523987,182.887604,195.474380,205.879333,206.176849,195.408264,170.961990,149.267776,137.119034,133.441330,128.036377,100.276047,80.466133,97.127281,108.028107,78.416550,38.771919,16.499191,11.639688,6.385962,8.040512,8.342991,8.084312,3.466122,0.495869,0.063637,0.367769,0.135537,0.000000,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.955000,4612435.550000,5479,4755,130.669449,175.115707,172.041321,164.057846,151.685974,138.743820,136.842987,135.115723,135.652908,138.454559,139.173569,149.561996,167.206604,183.818176,197.355377,207.595047,207.975204,197.892563,173.537186,151.545471,140.702499,136.099182,130.272751,100.636383,82.925636,97.867783,111.876053,82.190102,38.363655,15.007457,11.842995,6.927283,8.257868,9.200017,8.516543,4.593396,0.820662,0.184298,0.457852,0.129753,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.755000,4612435.550000,5548,4755,124.723152,177.326462,171.615723,166.566132,150.095062,137.822327,137.078522,135.103302,134.442154,139.152908,137.797531,149.640518,166.045471,184.235550,198.111588,207.723160,208.334732,197.747955,174.590927,151.772751,140.351257,135.458679,130.409088,100.739677,81.971092,96.814056,109.053726,82.235550,36.938038,14.385142,11.855390,4.835546,7.971090,8.204975,7.861170,2.961164,0.638018,0.486778,0.210744,0.023141,0.026447,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.755000,4612435.550000,5583,4755,108.695053,183.149582,176.827271,166.620651,152.612411,138.166122,138.645462,136.058685,135.538025,140.248779,139.058685,150.752899,169.157852,187.223969,198.414047,210.347931,212.777679,201.281815,176.166107,154.257034,143.347946,138.653732,133.372742,103.538033,84.455383,100.372742,112.257034,83.298363,41.281837,15.476051,12.124811,7.228938,7.919850,9.459519,9.942162,5.605793,1.120663,0.554546,0.893390,0.196695,0.225620,0.045455,0.070248,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.155000,4612435.550000,5605,4755,103.414894,171.633896,175.060333,166.060333,150.985962,141.071091,140.393402,138.153732,136.360336,138.600006,139.723984,152.649597,170.558685,188.104141,200.839676,213.038025,216.236374,201.856216,177.781830,156.170258,145.021500,142.294235,136.963654,106.608284,88.823158,103.095886,116.575226,81.608284,41.798370,16.942169,12.451260,10.436379,10.301669,12.492578,11.984313,7.326456,1.600829,1.127274,1.098349,1.252894,0.737191,0.457852,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601866.955000,4612435.550000,5624,4755,127.363655,171.779343,178.027283,162.423981,148.085129,137.085129,137.457031,134.085144,134.704971,136.448761,136.977692,150.126450,168.209091,185.870255,198.432236,211.126450,213.341324,200.523148,175.961166,154.440506,142.895050,140.514877,135.845474,104.638855,88.490089,101.861992,113.886780,82.465309,42.085148,16.418200,12.349606,9.594228,9.028942,10.152081,11.417370,5.712405,1.196696,0.610745,0.190083,0.406612,0.131405,0.000000,0.122315,0.000000,0.000000,1.412397,0.000000,0.000000,0.000000,0.000000 -601869.755000,4612435.550000,5638,4755,108.854568,177.686783,177.339676,163.711578,147.124802,137.207458,138.645462,134.852081,134.471909,137.769440,138.447113,150.538025,169.372742,186.538025,199.290100,212.794235,213.909927,200.339676,176.579346,153.662003,143.562820,140.695053,136.736374,105.728119,88.562828,102.736382,115.042168,82.612427,41.116547,16.466961,12.430598,11.897536,8.929769,11.043818,10.168611,4.242982,1.278516,0.361158,0.241323,0.068596,0.303306,0.000000,0.000000,0.513224,0.000000,0.000000,0.000000,1.123141,0.000000,2.210744 -601872.755000,4612435.550000,5653,4755,122.524811,179.902496,175.943817,165.861160,151.166946,138.150421,140.357040,137.646286,136.687607,139.018188,139.274384,152.109100,170.216537,188.257858,200.695892,213.290924,213.927277,200.175232,176.555374,154.233063,143.142151,140.241333,133.927277,104.481010,86.701668,100.439682,112.522331,82.596703,40.742996,16.633904,12.175225,13.655388,9.528942,12.289272,12.357867,8.181828,2.252069,1.125621,0.916530,0.724794,0.233885,0.371075,0.255372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.555000,4612435.550000,5667,4755,124.474396,182.424820,180.871094,165.127289,151.259521,137.937195,139.581833,135.838043,136.400024,138.383484,138.416550,151.044647,169.176880,186.614899,200.085953,212.540497,214.193390,200.375229,177.052917,153.829773,144.499191,140.565292,135.036377,104.507454,89.019852,103.193405,113.970268,82.358696,43.788448,17.278530,12.276052,12.110761,8.231421,10.493405,12.590099,5.686786,1.977690,0.565290,0.626448,0.270249,0.057851,0.000000,0.119009,0.240496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.955000,4612435.550000,5699,4755,117.648766,188.019836,181.416534,166.557022,150.846298,138.085953,139.044632,137.003311,136.995041,139.317352,138.540497,151.433075,169.218185,186.995041,199.912399,212.920670,213.499176,200.970245,176.689255,154.581818,144.391739,141.168594,135.945480,106.226456,89.185135,102.557037,114.681000,82.821503,41.036388,16.265306,12.358696,12.487618,9.501670,10.745470,10.582659,6.966126,0.638018,0.550414,0.706613,0.138017,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.342975 -601884.755000,4612435.550000,5713,4755,124.122330,191.461182,181.304153,167.469437,153.213242,137.667786,139.733902,137.221512,137.254562,139.750443,140.039688,152.552094,170.006638,188.097549,201.601669,213.221497,214.436371,199.882660,176.444656,154.304153,142.990112,140.064484,135.163666,104.552086,87.634735,101.808289,112.618195,81.849609,40.857868,16.030598,12.287621,12.390925,9.792579,10.860348,11.281007,6.594224,0.814878,0.625621,0.296695,0.420662,0.059504,0.000000,0.463638,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601888.755000,4612435.550000,5733,4755,129.393402,194.930588,182.013229,168.947113,149.930588,136.657867,138.376877,135.773560,135.740509,139.418198,138.186783,151.211578,168.434723,187.004974,200.459518,212.897537,213.509109,199.021500,175.914062,153.451248,141.897537,139.798355,134.781845,103.897545,87.467789,101.690933,113.352089,82.236382,41.062832,15.289275,12.252913,10.557039,10.186794,9.893404,10.900017,5.705794,0.672729,0.064463,0.065289,0.014876,0.038017,0.008265,0.039670,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.755000,4612435.550000,5758,4755,111.997543,176.947922,173.823975,165.295044,147.121490,137.154556,136.228943,134.253738,132.939682,137.237198,136.600830,146.766129,162.518188,179.741318,192.261978,203.823959,205.898361,193.914871,171.344635,150.361160,140.443817,136.493408,132.336380,103.782661,86.509933,101.377701,108.881844,80.237198,38.328117,14.670266,12.030598,6.225630,9.015718,9.692577,9.671912,3.504965,0.308266,0.516531,0.055372,0.000000,0.073554,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.155000,4612435.550000,5780,4755,109.278534,171.237198,171.270279,166.228958,150.509949,136.096710,136.385971,134.394226,133.336380,136.600845,136.567780,146.840515,161.873566,179.005814,190.931427,203.047104,204.609100,193.344650,170.890091,150.212418,139.286804,135.443817,132.336380,104.848785,87.766136,102.303329,109.823990,81.509926,37.468613,14.886795,12.030598,6.057035,9.824809,8.418197,8.500013,4.127282,0.625622,0.097522,0.064463,0.328100,0.000000,0.007439,0.000000,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.355000,4612435.550000,5806,4755,108.775223,167.527283,169.750427,163.626450,147.593399,137.105789,135.709106,133.461166,132.750427,135.337204,136.155380,146.659515,162.262817,178.386780,190.676041,202.419846,203.700836,193.287613,170.114059,148.485962,139.576859,135.039688,131.072739,104.452911,88.171913,99.882668,109.081017,79.097534,37.560352,16.038862,11.915722,7.534722,9.069437,7.674393,8.951253,4.027281,0.166945,0.052894,0.261158,0.000000,0.000000,0.163637,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601906.755000,4612435.550000,5823,4755,106.325638,168.391739,167.904144,160.771927,148.226471,135.995056,133.457870,131.978531,132.490921,134.821503,135.631424,144.606628,161.292587,177.358688,188.400009,200.523972,202.705795,191.507446,168.028122,147.821503,138.871094,135.871094,131.672745,102.350433,86.804977,100.647957,108.325638,79.895889,36.920677,15.018198,11.970267,6.019019,8.308279,8.157866,9.233069,3.496702,0.519837,0.249588,0.204133,0.335538,0.000000,0.000000,0.197521,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601911.755000,4612435.550000,5848,4755,106.263657,169.247131,168.974396,164.131424,148.139694,136.519852,134.123154,132.858688,130.668610,134.486786,135.123154,144.602493,160.850433,177.007462,189.139694,199.726471,202.676880,192.329773,169.594238,147.610764,138.007462,134.999191,131.263641,104.933067,87.395882,100.577698,110.346291,79.908279,39.040516,16.326464,11.933077,6.356208,10.152908,9.447949,8.403317,3.435545,0.574384,0.801656,0.155372,0.095042,0.004959,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.119009 -601920.155000,4612435.550000,5890,4755,100.728943,164.795074,171.282669,164.009949,148.952087,137.117386,134.414886,132.935562,132.588440,136.695892,136.885971,146.704163,161.786804,178.489288,190.935562,202.357056,204.009949,193.026474,169.332260,148.910767,139.762009,135.414902,131.109116,104.365311,88.439690,101.076050,109.927292,80.861176,41.398365,15.198364,11.919028,7.144639,11.166133,10.942992,10.070262,4.403313,0.840498,0.404134,0.251240,0.000000,0.000000,0.000827,0.269422,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601932.955000,4612435.550000,5954,4755,101.682663,152.393402,166.071091,157.137207,144.426453,135.947113,133.112411,130.666138,130.847961,132.285965,133.864471,143.690918,159.732239,175.269440,188.368607,200.856216,200.666122,190.831421,167.814896,147.087616,136.757034,132.914078,128.145477,102.261169,85.434731,99.591751,106.244644,78.757034,38.137211,15.393406,11.649606,6.902491,8.606626,7.640511,8.619848,3.731412,0.634712,0.031406,0.066116,0.106612,0.304959,0.003306,0.333058,0.359504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.355000,4612435.550000,5996,4755,94.165306,158.380173,165.396698,155.859497,143.107437,132.628113,131.115707,128.471085,128.082657,130.082657,131.429764,141.314056,156.000000,172.396698,183.991730,194.900833,196.371902,187.107437,163.239670,143.041321,133.157028,130.198349,126.000008,99.859512,83.561996,97.487610,105.578522,76.132256,36.429775,13.843820,11.454565,6.228937,9.295883,7.919850,7.751252,4.000007,1.554549,0.533059,0.496695,0.309918,1.029753,0.218182,0.000000,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.955000,4612435.550000,6049,4755,101.981010,159.030609,168.733078,159.675232,145.212418,136.923172,133.220673,132.832245,132.576050,133.633896,135.947937,144.245483,161.435562,176.790939,188.782669,200.014069,202.195892,191.146301,167.501678,147.146301,137.220688,133.923157,128.972733,102.220673,85.485130,98.840508,107.658684,78.542984,38.295059,15.291752,11.724813,5.585135,8.606626,9.800844,8.429764,3.454553,0.355373,0.119836,0.183472,0.207439,0.000000,0.057852,0.070248,0.853720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601961.355000,4612435.550000,6096,4755,92.209938,156.391754,170.400024,159.416550,147.375229,138.581833,136.143814,132.788452,131.945480,134.218201,136.631424,146.366959,161.309113,177.160355,190.193405,201.011597,202.333908,191.920685,168.904144,148.201675,139.449600,135.573578,130.763641,104.457870,87.871086,101.168617,108.466125,78.565300,37.011589,16.230597,11.887623,7.792573,9.645471,9.974397,9.315716,3.476866,1.421492,0.367771,0.200827,0.127273,0.060331,0.083472,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601965.155000,4612435.550000,6115,4755,94.733070,155.220673,169.427277,160.617371,147.848770,138.328110,135.179337,131.956207,132.129761,134.443817,136.666946,146.278519,162.733063,178.377701,190.171082,201.402496,203.030594,192.377701,169.253723,148.435547,138.625626,134.790924,130.881821,103.997528,87.898354,100.972740,108.319847,79.427284,37.799194,16.796713,11.898366,8.100012,10.374394,10.321504,10.657866,3.590090,1.038020,0.395043,0.284298,0.123141,0.227273,0.010745,0.428926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601969.355000,4612435.550000,6136,4755,92.516548,154.581833,168.573578,158.036377,145.044647,136.482666,134.697525,131.119019,131.094223,132.879349,134.689270,143.829773,160.656219,176.573578,188.647949,199.689270,201.672745,191.176880,167.259521,146.755386,136.813248,134.317368,128.854553,102.383484,87.160347,100.400009,108.102493,78.581841,36.681011,15.857043,11.714069,7.801666,9.682662,12.499191,9.809105,4.657033,0.759506,0.509919,0.523967,0.264463,0.000000,0.094215,0.000000,0.314876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.955000,4612435.550000,6169,4755,102.128944,155.120667,167.509109,159.352097,146.079346,136.319016,135.484314,131.773575,131.451263,133.682663,134.922333,145.492584,162.013245,177.566956,189.162003,200.583481,203.178528,190.798355,167.930603,147.319016,137.575226,135.013229,128.509109,102.798363,87.533897,100.509102,107.079361,76.294235,38.748783,14.029769,11.682664,6.125631,9.679355,9.952910,9.738856,4.400008,0.200001,0.138844,0.051240,0.085951,0.000000,0.066116,0.657852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601986.955000,4612435.550000,6224,4755,98.304977,157.875229,168.346298,158.635559,144.412415,136.602493,133.833908,131.420685,131.147949,132.288452,134.990921,144.404144,160.883484,176.734726,187.742996,199.495056,200.875229,190.569443,167.098373,145.776047,136.900024,133.354568,128.445480,102.445473,84.701675,99.883492,106.875229,77.974396,37.255390,16.137207,11.676878,7.941335,9.394230,8.375223,9.676046,3.214056,0.609092,0.471902,0.057025,0.120662,0.272728,0.000827,0.152066,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601997.955000,4612435.550000,6279,4755,98.571091,159.876877,167.290100,158.364471,146.100006,134.595886,133.124802,129.711578,129.761169,130.604141,132.347946,143.149597,160.546295,174.232239,186.868607,197.223984,199.314896,187.405792,164.281830,144.025635,133.174393,131.314896,125.100014,98.835548,82.926460,96.347946,106.455383,75.050423,35.504978,15.123158,11.372746,7.220674,9.142990,9.095882,7.874391,3.770256,0.694217,0.155373,0.123967,0.261158,0.008265,0.090909,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.955000,4612435.550000,6314,4755,103.647118,163.845459,167.101654,157.556213,143.952911,135.283478,133.605789,130.597534,130.101654,131.151245,132.060333,142.928116,159.696701,174.407440,188.126450,199.490112,198.704987,187.176041,163.448761,143.647125,133.605789,130.886780,124.754555,98.738029,83.209106,97.109932,106.853729,77.390923,37.060349,14.677702,11.341342,7.761169,9.679354,9.167783,9.678526,4.261165,0.758680,0.115703,0.131405,0.353720,0.022315,0.081818,0.072727,0.514876,0.000000,0.000000,0.000000,1.574380,0.000000,0.000000 -602007.955000,4612435.550000,6329,4755,101.776054,162.635559,167.139694,158.230591,142.693405,134.536377,131.850433,129.759521,129.090103,129.908279,130.908279,142.858704,160.544647,173.850433,186.627289,198.338043,199.222336,188.106628,165.106628,144.486801,134.247131,130.453735,126.627289,98.247124,82.354568,97.693405,105.974396,77.825638,36.676880,15.761175,11.511589,7.281004,9.509106,9.118197,8.969435,4.289264,0.242977,0.265291,0.140496,0.140496,0.000000,0.000827,0.366943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602013.755000,4612435.550000,6358,4755,97.970268,160.909103,171.537201,161.231415,146.685974,136.966965,135.281006,132.314072,131.123978,133.743820,133.611588,144.487625,160.966965,176.983490,189.355392,200.388443,201.462830,189.454559,166.859528,147.107452,135.330597,132.148773,127.272743,100.595055,82.958694,98.553734,108.057869,79.157043,38.214897,13.836380,11.570267,9.238030,10.313238,8.823982,10.125633,7.053730,0.590085,0.572729,0.115703,0.164463,0.074380,0.252893,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.955000,4612435.550000,6379,4755,111.291740,160.002502,171.671921,163.308289,145.523148,137.498352,134.316528,132.184311,129.779343,131.886780,133.324799,143.911575,159.333084,177.134735,187.597549,200.068619,199.671921,187.845474,164.647125,144.556198,134.357864,132.052078,125.845459,99.448769,83.423973,96.969429,107.762817,77.490089,37.109940,15.695059,11.440515,7.636376,9.909932,9.657867,8.760343,5.401663,1.190085,0.029753,0.119009,0.210744,0.000000,0.086778,0.084298,0.406612,0.000000,0.000000,0.000000,0.000000,0.000000,3.202480 -602022.555000,4612435.550000,6402,4755,103.734718,163.817352,166.990906,159.693390,143.990921,134.404144,132.751251,130.230591,129.511581,130.933075,132.627289,143.346298,158.718185,174.445465,187.726456,197.941330,199.685120,187.544632,163.883469,143.172729,133.577698,130.610748,124.900017,97.503319,82.734718,95.866951,106.652084,77.288452,36.090103,15.333076,11.354565,8.444640,8.139683,8.111584,7.613235,5.153728,0.730581,0.055373,0.000000,0.023967,0.000000,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602030.355000,4612435.550000,6441,4755,110.304977,164.346298,169.288452,158.114899,144.660355,134.693405,132.759521,128.230591,128.668610,130.883484,131.123154,142.304993,158.511597,174.742996,187.205811,198.114899,198.701675,185.900024,163.585968,142.362839,133.627289,130.288452,123.990929,98.511589,81.139687,94.941345,104.767792,76.569443,34.676880,13.960346,11.271920,7.169432,7.494228,9.220675,8.674392,4.183478,0.762813,0.147109,0.471075,0.612398,0.000000,0.080992,0.000000,0.225620,0.000000,0.000000,1.957025,0.000000,0.000000,0.000000 -602036.355000,4612435.550000,6471,4755,108.509109,175.079346,171.360336,162.633072,145.765320,136.616547,135.963669,131.434723,131.839676,133.699188,133.145462,144.236389,160.773560,176.459518,188.038025,200.823151,200.666122,188.467789,165.170258,144.980194,135.302490,132.013229,126.872749,99.145477,83.881004,96.343826,106.459526,77.252907,38.517372,16.578531,11.533903,10.768609,9.440512,10.603322,9.317369,4.736372,0.802483,0.158680,0.371075,0.404960,0.222314,0.076860,0.228926,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.555000,4612435.550000,6492,4755,92.804153,170.043823,173.258698,163.250427,148.060333,136.622314,134.795883,132.010757,132.283493,133.134720,133.614059,144.217377,161.283478,176.994232,188.754562,200.423996,201.019028,188.952911,165.423981,145.407455,134.713242,131.919846,126.300026,99.746292,83.283478,96.176048,105.928116,76.382652,36.589279,15.558696,11.481836,10.787616,8.497536,7.150426,10.360345,5.476868,1.571904,0.453721,0.190910,0.172728,0.006612,0.000000,0.000000,0.126446,0.000000,0.000000,0.000000,1.304132,0.000000,0.000000 -602047.555000,4612435.550000,6527,4755,98.085144,167.415710,168.994217,161.680176,145.663666,133.209106,132.498367,129.250443,129.010773,131.977707,130.862000,142.605804,158.407455,174.184311,185.647110,199.771088,198.870255,185.448761,162.911575,142.415726,133.506638,130.432251,123.936386,97.828949,81.539696,94.035561,102.514900,74.283493,35.638863,13.119025,11.266962,9.130591,9.357867,8.409931,8.748773,2.866947,0.368597,0.285952,0.048760,0.175207,0.000000,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602059.555000,4612435.550000,6587,4755,113.465302,183.655380,168.903305,161.870255,145.076889,132.903320,133.531418,130.490097,129.804153,133.068604,131.837204,144.465302,160.713226,177.324799,190.688431,203.440506,203.415710,190.366119,167.539673,147.283478,138.903305,135.167786,128.390930,99.490097,83.820679,98.655388,109.828941,78.432243,36.101673,13.557042,11.671921,9.596707,9.742990,8.823155,9.958692,3.248768,0.534713,0.221489,0.530580,0.010744,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602066.155000,4612435.550000,6620,4755,118.244652,174.897537,174.533890,164.492569,148.467804,136.980194,135.062836,133.385147,133.046295,137.715714,135.162003,147.980194,162.591751,181.442993,194.608276,207.525635,207.228119,193.509109,171.128937,151.575241,140.765305,138.021500,132.327301,103.343826,87.831429,102.558701,112.104156,80.360352,40.054565,16.314068,12.029771,12.902497,9.930594,11.459519,10.783486,4.387613,0.795044,0.288432,0.060331,0.028926,0.000000,0.161984,0.000000,0.594215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602073.355000,4612435.550000,6656,4755,123.964478,182.171082,171.848785,166.071930,148.584320,136.038849,136.038849,132.427277,132.476868,137.212418,134.071915,145.625641,161.832260,179.724808,194.592575,206.261993,205.286789,191.303314,170.840500,150.716553,140.642181,137.154572,131.881821,102.443817,85.873566,101.906624,112.394226,79.790916,38.885143,15.993406,11.989275,11.123154,10.326463,10.076875,10.341335,5.098354,0.831409,0.467771,0.247935,0.090909,0.000000,0.160331,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602079.755000,4612435.550000,6688,4755,131.529770,176.843811,175.314896,163.662003,147.579346,135.314896,133.281830,130.405792,131.174393,136.149597,132.620667,143.719849,160.091751,177.728119,192.620667,204.257034,203.645462,189.934723,168.785965,149.852081,138.554565,135.066956,130.463654,100.529762,86.108276,102.620674,110.513237,78.422333,39.066963,17.238863,11.860350,12.681833,8.939684,10.123156,11.200842,4.804144,0.496696,0.318183,0.232232,0.262810,0.023967,0.000000,0.230579,0.862811,0.000000,0.000000,0.000000,0.000000,0.000000,2.052893 -602088.755000,4612435.550000,6733,4755,113.356216,159.273560,155.075226,149.719849,137.422333,125.190926,122.066948,119.620667,118.538025,122.033890,121.306618,132.463654,151.017365,167.414062,180.174393,192.794235,194.331421,183.000839,160.025635,139.645462,129.356216,125.901665,119.100006,91.372742,75.430603,90.389275,106.736374,81.149605,38.761177,13.309934,10.827291,4.395879,8.704146,7.481832,8.114061,3.876042,1.447937,0.561159,0.024794,0.089257,0.123141,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602100.155000,4612435.550000,6790,4755,140.848770,161.658707,162.600830,149.939682,135.931412,124.873573,121.567787,117.823982,117.303322,119.625641,121.385971,131.741333,148.691742,165.881821,177.981018,189.361176,190.385971,180.700027,158.815720,138.518188,128.476883,124.262001,118.154564,89.931419,74.865311,93.534729,106.171089,80.121506,39.385967,15.580184,10.741343,6.430591,9.436378,9.376046,10.231419,6.140506,1.309921,0.408267,0.000000,0.247935,0.184298,0.000000,0.757852,0.755373,4.553720,0.000000,1.799174,0.000000,0.000000,0.000000 -602110.155000,4612435.550000,6840,4755,179.820679,169.985977,153.696716,141.390930,124.200836,116.432236,111.556206,107.126450,105.233894,108.531418,108.217369,118.795876,134.523148,149.828949,160.473572,171.118195,172.167786,163.143005,147.159531,131.027283,121.167786,119.068604,115.663643,88.614059,71.795876,92.928108,122.531418,99.853729,49.390930,13.379355,10.514894,8.255384,9.645469,13.341338,17.490929,7.051251,1.080994,0.205786,0.114050,0.126446,0.000000,0.215703,0.004959,0.280166,2.126446,0.000000,1.725620,1.340496,0.000000,0.000000 -602115.555000,4612435.550000,6867,4755,163.829773,132.458679,107.013229,92.786789,79.996704,70.864487,67.505798,65.348778,63.885963,65.034721,65.728943,74.352081,88.583473,101.466118,111.728935,123.993401,125.348770,122.844635,113.414886,102.001663,94.639671,93.639671,92.218185,69.525642,52.530594,76.061165,115.005798,101.304138,53.653736,12.730594,8.383488,13.581007,16.997536,28.503323,40.056217,33.523159,12.628106,8.336369,8.343805,10.002482,5.399177,6.123970,8.325624,5.541324,20.456200,8.759505,11.522316,6.895869,10.303307,14.465291 -602168.955000,4612435.550000,7134,4755,127.928940,166.115723,159.123978,145.404968,128.214890,115.181831,114.842995,110.330597,108.669441,110.305801,110.041336,122.057869,141.388443,157.900848,172.123978,184.876053,185.553741,173.619858,152.834732,131.917374,120.330597,116.942162,109.818199,79.396713,62.057873,81.330597,104.504150,77.991753,35.024815,14.080183,9.983489,8.170260,8.965305,9.342163,9.588444,5.953727,0.737191,0.185951,0.069422,0.000000,0.016529,0.072728,0.000000,0.000000,0.000000,0.000000,2.268595,3.251240,0.000000,1.962810 -602172.555000,4612435.550000,7152,4755,107.603325,165.397537,159.860336,145.199173,129.405792,117.223976,114.777702,111.653732,111.009102,111.397537,112.273567,124.405800,144.257034,160.876877,174.108276,188.223969,189.397522,177.091751,155.670242,134.876877,122.389267,118.595879,111.645470,82.166130,64.182663,84.215714,105.290092,78.752907,35.604149,14.308282,10.149606,8.639683,7.831420,8.325633,9.683486,5.910752,0.405786,0.121488,0.036364,0.000000,0.096694,0.102480,0.000000,0.000000,0.000000,0.000000,1.104959,0.000000,0.000000,0.000000 -602176.955000,4612435.550000,7174,4755,105.142990,160.987610,159.475204,144.607437,130.119858,118.673569,117.789276,114.070267,113.747948,113.458694,115.020676,127.359520,146.764465,164.061996,178.070251,190.037216,191.781021,180.442154,158.095062,136.971085,124.549606,120.533073,113.863655,84.814064,67.450432,86.318199,106.731422,78.566132,36.888451,13.254564,10.351258,8.706626,8.212413,8.913238,10.188445,6.423975,0.345455,0.062810,0.080992,0.000000,0.314876,0.047934,0.000000,0.348761,0.000000,0.000000,0.000000,0.000000,0.000000,1.965289 -602183.355000,4612435.550000,7206,4755,103.699188,156.915710,158.031418,144.890930,127.180168,117.733894,116.229759,113.469429,112.692566,113.436371,114.915710,127.328934,147.907455,164.320663,178.337173,191.254547,192.304138,179.957016,159.634720,136.709106,125.155380,121.006615,115.254555,84.981827,66.783493,84.725624,104.709099,76.006622,35.461174,13.000017,10.477706,7.166129,7.186792,8.884313,9.684312,3.295875,0.619836,0.250414,0.114877,0.264464,0.038017,0.034711,0.000000,0.000000,0.000000,2.303306,0.000000,0.922314,1.087603,0.000000 -602193.755000,4612435.550000,7258,4755,107.561165,155.653732,157.992569,143.471909,129.447113,118.290092,117.571091,113.240509,112.414062,113.050423,114.703316,126.009094,146.728119,162.984314,177.141342,188.893402,189.744644,178.190918,156.703323,134.645462,124.091751,119.422325,113.372742,83.356209,65.976051,84.471924,102.116539,76.009102,36.571091,13.372746,10.306630,9.416542,8.053734,9.511585,9.431419,4.871908,0.339670,0.227274,0.091736,0.285951,0.019008,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602207.355000,4612435.550000,7326,4755,105.504150,154.138046,160.022339,146.096725,131.724808,120.898361,119.369438,116.823982,116.113243,117.807457,119.567787,129.832245,148.782669,166.113251,180.633911,192.534714,192.873566,182.146301,158.303329,135.956207,125.617363,122.377701,116.427292,86.113235,68.468613,85.716537,100.799187,73.485138,32.857044,12.417373,10.584315,7.628112,8.266957,10.227288,8.647123,4.042981,0.729754,0.459505,0.168596,0.410745,0.001653,0.036364,0.025620,0.014877,1.619008,1.356199,0.000000,2.204132,0.000000,2.199174 -602226.755000,4612435.550000,7423,4755,110.336380,158.364471,156.496704,143.083496,128.579346,118.686783,116.166122,113.108269,113.405792,114.157860,114.265297,126.645462,145.728134,162.314896,176.761169,189.397537,190.752899,180.133072,156.620667,134.612411,123.372734,118.116531,111.827278,83.414070,64.695061,82.521507,99.000847,70.951263,33.075226,12.049605,10.166136,6.092575,8.164480,7.364477,8.653734,3.776041,0.493390,0.548761,0.196695,0.120661,0.171075,0.389257,0.002479,0.002480,1.480992,0.000000,2.497521,1.089256,2.537190,0.000000 -602243.755000,4612435.550000,7508,4755,112.195061,159.440506,160.498352,145.572739,132.366135,119.514893,119.589272,116.275223,117.647125,119.068611,119.597534,133.357864,156.837204,175.985962,190.523148,204.126450,206.382645,195.853729,174.382645,151.771088,139.457031,135.977692,130.027283,95.944641,75.035553,94.101669,114.085136,81.977699,37.440517,14.302497,11.820680,9.141335,8.778529,10.757040,11.012413,4.718189,0.573556,0.465292,0.001653,0.011571,0.115703,0.309091,0.019008,0.000000,1.485124,2.767769,0.809091,0.000000,2.495868,0.000000 -602252.755000,4612435.550000,7553,4755,115.388443,159.454575,160.669449,147.305817,131.330582,119.578522,118.322319,116.157036,115.504143,116.652901,118.107445,132.057861,153.843002,172.454575,187.454575,200.404953,202.950409,191.892563,170.628128,147.429779,136.008286,132.148773,126.545464,93.462830,72.892578,90.909103,111.074387,80.454559,36.876053,14.790927,11.504151,9.867783,9.212413,9.695056,10.557867,4.822321,0.478514,0.102480,0.276034,0.089257,0.000000,0.039670,0.000000,0.019835,4.228926,0.000000,0.000000,0.000000,0.000000,0.000000 -602255.755000,4612435.550000,7568,4755,90.812416,157.638855,156.142975,142.300003,127.225632,116.812408,116.027290,112.118195,112.217369,113.936378,115.275223,127.564476,150.490082,169.845459,183.481827,196.795868,200.101654,188.952896,166.134720,144.407440,131.366135,128.671921,122.754562,90.002495,70.109932,89.076874,108.581009,76.597534,33.589275,11.613241,11.159524,6.853732,6.932244,7.928112,8.172740,4.278520,0.650415,0.072727,0.029753,0.023968,0.067769,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602258.555000,4612435.550000,7582,4755,113.966133,159.230576,158.627274,146.181000,129.329773,117.866959,116.685143,113.495064,112.164482,114.428947,114.908287,127.842171,149.098373,167.461990,181.974380,194.255371,195.850418,186.238846,164.329758,142.255371,130.147949,126.114899,121.172745,88.288445,68.866959,88.090096,105.263657,76.131432,34.825638,13.242992,11.015722,8.642990,8.856215,9.480179,10.183487,4.955379,0.709920,0.331406,0.131405,0.088431,0.309918,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602261.355000,4612435.550000,7596,4755,102.961182,153.032257,156.395889,145.081818,128.585968,116.759521,116.404152,112.098366,111.420677,113.065308,113.577705,125.387619,147.280182,165.065308,177.957870,189.387619,191.660355,181.379364,158.420685,138.693390,126.486794,122.776054,116.536385,86.255394,67.238861,85.453735,102.114899,74.949608,35.230598,14.428944,10.594234,8.602493,8.953735,8.153734,11.050430,4.901661,0.742977,0.380993,0.461158,0.059504,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,2.117356,0.000000,1.155372,0.000000 -602264.155000,4612435.550000,7610,4755,109.533897,154.842972,157.330582,142.917358,129.578522,117.074394,115.247948,111.785141,111.305801,112.305801,112.702492,124.702492,145.471069,162.471069,175.057846,186.049591,188.702484,178.148758,156.859497,134.966965,124.256218,120.644646,114.181831,83.876053,66.198364,83.884315,101.785141,74.322327,34.694237,12.827291,10.380184,8.022327,9.223157,8.114889,9.635552,4.561164,1.131407,0.321488,0.417356,0.320661,0.230579,0.000000,0.000000,0.015703,0.000000,0.000000,2.380992,1.104132,0.000000,0.000000 -602268.755000,4612435.550000,7633,4755,108.886803,158.138031,156.278519,142.708267,126.815720,115.476883,112.683495,109.873581,109.063660,111.228951,110.592590,123.204155,145.088440,162.286804,175.832260,187.964493,190.675232,179.452087,158.567795,136.361160,124.377708,120.576057,115.063660,83.981018,64.939690,83.807465,102.369446,73.460358,33.328117,11.742992,10.460349,6.570261,8.396710,8.520677,10.006627,4.742157,0.645455,0.239670,0.120661,0.264463,0.000000,0.452894,0.000000,0.004959,0.000000,1.359504,0.000000,0.000000,0.000000,0.000000 -602272.355000,4612435.550000,7651,4755,99.499191,152.655396,152.696716,140.622330,124.184319,114.159523,112.853745,108.663658,108.283493,108.977707,110.779358,123.547958,144.870270,162.812424,176.531418,188.605789,191.101654,180.696701,159.754562,137.680191,125.977707,122.820686,117.390930,85.473579,66.283493,84.233910,104.605804,74.399193,33.275227,11.884315,10.671921,6.488443,8.023154,7.940509,7.856212,4.745461,0.219835,0.077686,0.098347,0.005785,0.039670,0.044628,0.000000,0.000000,0.000000,0.000000,1.168595,2.042975,0.000000,0.000000 -602275.155000,4612435.550000,7665,4755,103.441330,154.558685,158.955383,144.071106,128.219833,118.013237,115.327286,113.459518,112.186798,114.360344,115.319023,127.219849,147.575226,165.062820,179.029770,191.649597,194.509109,183.319016,161.500839,139.401688,128.360336,124.682655,119.418198,88.112419,68.484322,86.881012,103.079361,71.442993,32.393406,11.720679,10.856218,7.881005,9.190099,9.552908,8.465302,3.965295,0.804961,0.262811,0.100000,0.119009,0.030579,0.524794,0.000000,0.007438,0.000000,0.000000,1.171901,0.914050,0.000000,0.000000 -602277.755000,4612435.550000,7678,4755,99.037209,156.609924,159.031418,144.461182,127.907463,117.948784,115.874405,112.808273,112.882652,113.940521,115.700851,127.023163,147.684311,165.485962,179.700836,192.320663,194.494217,184.056198,159.899185,137.932236,127.857864,125.254570,118.981842,87.353745,68.552086,85.419861,101.138855,70.469444,31.833078,12.449604,10.816547,7.729764,8.270263,8.764477,8.295057,4.082650,0.753720,0.327274,0.000000,0.044628,0.128926,0.000000,0.361157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602280.355000,4612435.550000,7691,4755,105.054558,159.314072,161.314072,143.429764,130.024811,118.181831,116.661171,115.082664,114.165306,116.115715,117.388443,128.380188,148.685974,165.851257,180.793427,193.462845,195.380203,185.033096,161.710754,139.024811,128.702499,125.677704,120.909103,89.537209,70.033073,87.619850,104.123985,73.173569,32.950432,15.062000,10.991754,8.850427,9.773571,10.593405,9.199188,4.072735,0.771076,0.751242,0.066116,0.115703,0.000000,0.311571,0.445455,0.071075,0.000000,1.368595,1.102479,0.894215,0.000000,2.066942 -602284.555000,4612435.550000,7712,4755,96.778519,149.570267,156.661179,140.487625,127.057869,116.066124,114.909096,111.975212,110.710754,112.611580,114.140503,125.909096,146.165298,163.933899,178.305801,189.528946,191.024811,181.735550,158.644638,137.727295,126.727280,124.123978,118.000008,87.661171,68.611588,85.958694,103.322319,73.991753,34.446304,12.406629,10.727291,7.607450,8.740511,9.252907,9.404146,4.565297,0.914052,0.497522,0.114050,0.151241,0.032232,0.413224,0.004959,0.000000,0.000000,0.000000,0.000000,0.992562,1.223967,0.000000 -602289.355000,4612435.550000,7736,4755,113.576042,159.873566,157.022324,142.840515,126.964478,117.088448,115.063644,112.377693,111.576042,113.410751,114.080177,125.493408,145.724823,163.369431,176.121490,187.890091,190.063660,180.476868,157.088440,135.402496,125.220680,120.815720,117.154556,85.865311,66.129768,85.749603,101.402489,72.030594,32.840519,14.367785,10.650432,8.421501,10.195884,10.348775,10.393403,4.944636,1.188432,0.481819,0.268596,0.387604,0.000000,0.276860,0.000000,0.013223,0.000000,0.000000,0.000000,2.955372,0.000000,2.033058 -602293.355000,4612435.550000,7756,4755,101.715714,157.483475,157.450424,141.111572,127.500015,116.739685,114.425636,111.500015,110.466957,112.929771,113.838860,125.095055,145.442154,162.260345,175.995865,187.657028,188.797516,178.392563,155.070251,133.764481,123.161171,119.466957,115.227287,85.433899,65.987617,84.152908,99.334724,70.103325,31.904980,12.939687,10.475226,6.569433,8.471917,9.311585,9.855386,5.303315,0.794216,0.213224,0.052893,0.080166,0.127273,0.042149,0.000000,0.000000,1.486777,0.000000,0.000000,2.014050,1.205785,2.078512 -602297.355000,4612435.550000,7776,4755,108.688454,150.961182,155.126465,141.242172,125.531425,115.523163,112.713249,110.423988,110.283493,112.291756,113.258698,126.002502,145.771103,163.390930,177.895065,188.572754,189.994232,179.647125,155.523163,133.919861,123.333084,119.828949,114.754570,85.473579,65.539688,82.275230,97.655396,69.473579,32.911591,11.785141,10.432250,8.958691,9.148776,10.530593,10.600015,4.377694,1.033886,0.459505,0.259505,0.063637,0.036364,0.334712,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602300.755000,4612435.550000,7793,4755,111.785965,150.923157,154.385956,139.956207,123.873566,113.757858,110.873566,108.501663,109.113235,111.361168,111.146294,123.832245,143.865295,161.460342,174.551254,183.716537,183.782654,173.261993,152.129761,130.187607,120.452072,116.617363,114.518188,85.468605,66.286797,85.220673,103.460342,74.633896,32.989277,12.155389,10.410763,7.459517,8.590923,9.884312,9.035551,5.285133,1.054548,0.068595,0.284298,0.000000,0.223968,0.137190,0.000000,0.000000,1.285951,0.000000,3.296695,0.981818,0.000000,0.000000 -602304.355000,4612435.550000,7811,4755,116.605797,149.692566,152.700836,138.601654,122.403320,112.692574,109.386795,106.791748,107.494232,107.560349,109.527290,120.965302,140.204971,157.238022,169.105789,176.527283,173.428101,162.907440,143.279343,123.105797,113.990097,111.477699,110.436378,83.419861,64.254570,82.097542,107.419846,82.659523,36.857872,14.023159,10.039689,7.809103,9.275222,11.278529,9.962000,6.430588,0.911572,0.163637,0.414051,0.008265,0.099174,0.365290,0.267769,0.000000,4.029753,3.986778,0.000000,0.995041,0.000000,0.000000 -602312.355000,4612435.550000,7851,4755,107.069435,151.252075,150.466965,135.070267,119.194229,107.574394,105.599190,102.946297,102.533073,104.136383,104.219025,115.533073,135.028946,151.235550,162.549591,168.185944,165.227280,154.235550,134.938034,115.425636,106.789276,104.210762,104.590927,79.351257,59.276878,79.665306,107.086792,85.144646,37.863655,12.302497,9.508283,7.628938,8.523981,10.561998,13.019024,7.881002,1.283475,0.429754,0.082645,0.063637,0.103306,0.276860,0.000000,0.000000,6.707439,1.272727,4.366942,2.909918,0.000000,4.029752 -602315.355000,4612435.550000,7866,4755,106.821503,154.619858,145.685944,131.454559,115.619850,104.462830,102.272751,99.925644,99.314072,100.504158,101.247955,111.950432,131.041336,147.413239,159.247955,164.842972,159.752075,148.942169,131.090927,111.842995,102.975227,99.809944,99.363663,74.909103,56.190102,75.743820,102.140518,83.033073,37.685970,10.405803,9.033078,7.283483,8.881008,10.842989,13.755389,8.410754,1.228103,0.826449,0.301654,0.747109,0.064463,0.294216,1.008265,0.619835,1.282645,7.263637,2.262810,2.744628,6.538844,1.827273 -602320.555000,4612435.550000,7892,4755,131.716553,157.219833,148.591736,132.971909,115.252907,105.699188,102.591751,100.897537,100.963646,102.575218,104.889267,116.955383,138.938873,158.120667,172.467758,184.459503,185.831421,176.971893,155.261154,133.806625,122.533897,119.831421,117.418198,84.674393,64.162003,82.566956,105.360344,77.071091,32.831421,11.988448,10.674400,10.963653,9.890099,12.047952,13.449604,8.817368,3.124800,1.171905,0.842150,0.657853,0.435538,0.404959,1.985126,1.004133,11.412398,8.552068,10.552894,4.560331,10.742150,1.921488 -602326.155000,4612435.550000,7920,4755,149.369431,142.295029,130.435562,115.427292,98.881836,89.179359,84.840515,82.369438,83.295059,85.683487,86.410759,98.658699,119.509933,136.195877,149.790924,160.956192,162.625610,156.047119,138.253708,118.369438,108.981010,106.633904,105.609108,74.468613,54.559528,77.220680,102.774399,78.873573,36.507458,9.238860,9.600845,12.138859,10.096711,15.156216,19.748775,15.883490,4.792569,2.419839,1.000830,1.567772,1.037193,1.270250,4.691740,3.674383,31.947113,24.012398,12.117357,16.239672,7.359506,22.213224 -601055.355000,4612425.550000,1566,4805,124.472748,134.201660,113.722328,101.309097,86.276047,74.672737,70.895882,66.350433,63.474400,63.854565,62.300846,75.515724,96.317368,115.011581,128.548767,141.259506,145.110748,140.722321,129.590088,114.094223,103.507439,102.317360,95.036377,56.846302,35.507458,62.242996,106.515709,90.912415,41.003326,9.661995,8.639688,15.542166,9.181833,13.768611,19.630594,11.149600,1.394219,0.638018,0.361158,0.305786,0.120662,0.539670,0.005786,0.676861,14.013226,14.892564,11.020664,9.152895,14.401654,6.514050 -601058.755000,4612425.550000,1583,4805,96.233910,119.266945,111.192566,98.068611,83.638855,73.845474,68.961182,63.787624,60.961178,61.308289,59.481842,71.713234,92.076874,107.795876,121.729759,134.490097,138.390915,135.498367,127.300003,112.663643,101.076874,101.432243,93.663651,54.333080,33.192581,61.109940,111.936371,104.002487,51.266964,10.231419,8.514894,13.441339,11.938034,16.882662,25.615723,17.798365,1.564466,0.242149,0.000000,0.005785,0.000000,0.000000,0.015703,0.194216,8.376035,10.242150,5.987605,2.038017,2.096694,8.408266 -601063.955000,4612425.550000,1609,4805,66.577705,73.474396,67.267792,55.548779,42.416550,30.771917,26.516546,21.836382,18.505802,17.708282,15.509935,26.160347,41.978531,55.309109,66.110764,76.523987,78.226463,75.804977,70.218201,58.366962,48.375225,47.681011,39.400021,8.397533,0.511572,16.745472,81.333900,93.928940,53.300846,7.104145,3.581838,10.159517,13.466958,23.086796,41.557045,29.604151,0.312398,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.517356,3.030580,1.580166,4.137191,0.464463,6.020662 -601072.155000,4612425.550000,1650,4805,35.068600,52.141338,44.857868,32.747128,18.674397,8.542989,5.612408,2.893394,2.085129,1.675211,0.957854,3.290090,12.862826,24.792580,33.031422,41.750431,43.957043,41.031422,37.097538,25.996712,16.601671,16.104975,11.900014,0.314050,0.000000,1.188432,56.081005,79.386803,46.882664,4.490093,1.081833,8.328938,10.854559,23.289272,41.758698,29.663654,0.720663,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.182645,2.307440,0.424794,0.321488,0.100000,4.861984 -601081.755000,4612425.550000,1698,4805,47.014896,68.836380,67.869438,54.828117,39.662830,30.460348,25.927290,18.870264,17.276878,15.663656,15.284316,23.914894,38.505806,50.803329,61.051258,69.505806,71.836380,68.737206,64.175224,53.993412,43.737213,41.803329,37.563660,8.298360,0.524795,16.465307,77.505806,89.613243,54.357048,7.138854,3.414895,5.595878,13.215718,21.921505,42.687626,30.447952,0.533886,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.379339,0.000000,2.093389,0.487604,0.000000,0.000000 -601085.155000,4612425.550000,1715,4805,47.831421,73.954559,70.285141,59.078529,43.549603,33.607456,28.012415,22.850431,20.050432,18.242992,17.592579,26.466961,42.260345,53.161179,63.690102,71.979362,73.797539,71.028938,66.409111,54.004147,44.979359,44.301670,39.863655,9.357038,1.337194,17.324812,77.566132,92.962830,54.574402,7.397534,3.623986,5.856210,13.804149,27.945475,41.896713,33.049606,0.957027,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.464463,0.981818,0.709091,0.561157,2.079340,0.000000 -601088.955000,4612425.550000,1734,4805,44.636379,76.752914,71.967789,62.058701,45.496712,34.496716,30.347954,25.273573,22.620678,20.002499,19.455391,28.992580,45.405804,57.637211,67.951263,77.414062,78.934723,76.496704,70.157867,59.504978,49.595890,48.025642,43.827293,11.826463,1.191740,21.227291,82.281830,95.042160,55.604149,7.398361,3.984317,6.736374,10.736379,23.371920,36.149609,27.524809,0.352067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.990909,0.000000,2.063637,0.233058,1.043802,1.340496 -601094.555000,4612425.550000,1762,4805,51.306629,80.458694,77.673569,69.103325,52.351261,42.161175,36.657043,30.533075,27.566133,24.433903,23.557869,32.599194,46.185966,57.814064,66.714890,74.210762,76.086792,72.632248,68.086792,55.491753,47.252087,44.161179,40.954567,10.996709,0.555376,21.217371,78.483490,90.640518,51.756218,7.561172,3.723160,6.591746,9.938031,22.740513,34.516548,26.292580,0.915705,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.024794,0.651240,1.125620,0.795042,1.263637,1.455372 -601102.755000,4612425.550000,1803,4805,57.692577,89.421501,92.132248,80.595055,65.603325,56.355392,51.520679,46.239689,44.000019,42.586796,42.016548,51.049606,65.479362,76.859520,85.487617,94.421501,97.371918,92.768608,87.355385,74.884315,65.793411,64.322334,61.000019,31.462828,12.876050,39.033077,89.553734,95.752083,51.082668,7.491750,5.545474,5.702488,10.682659,19.814894,31.982664,22.238033,0.545456,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.652066,0.541322,0.385951,0.000000,3.067769 -601116.155000,4612425.550000,1870,4805,92.091751,124.006615,127.246284,116.353745,104.634735,95.428123,92.403328,90.287628,89.362007,91.130592,92.957047,106.238037,127.915710,145.709091,161.700836,172.006622,174.766953,167.890915,152.981827,134.990082,123.651245,123.097527,119.163643,85.742172,62.783493,87.097542,129.857864,112.271095,52.890930,14.328943,10.833076,9.622328,9.425636,15.223157,21.857870,12.277702,1.000003,0.473554,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,2.076860,0.000000,0.760331,0.735537,1.801653,3.538017 -601124.155000,4612425.550000,1910,4805,106.088440,134.084320,133.166946,123.762001,109.704147,102.778534,99.348778,96.712418,96.076050,96.406631,98.877701,110.968613,133.084320,150.166962,164.472733,177.067780,180.588440,173.323975,156.596725,135.398361,123.861176,120.390099,114.109108,78.009933,59.282665,80.588448,114.902496,91.671089,39.588448,13.575226,10.373573,7.005797,8.098361,11.242992,12.059520,6.276042,0.490913,0.093390,0.102480,0.000000,0.000000,0.000000,0.000000,0.263637,2.188430,3.011571,3.674381,0.000000,4.005785,5.661158 -601127.155000,4612425.550000,1925,4805,102.947121,133.768616,132.785141,123.057869,109.834724,100.454559,99.041336,95.685966,94.793404,96.669441,98.900841,111.677704,133.694229,150.504135,165.603302,179.586777,182.603302,177.454544,161.239670,142.429749,131.644638,128.867783,125.181831,88.677704,65.661171,89.520676,124.628113,100.719025,46.082668,12.592579,11.380183,7.763649,8.414889,13.009934,15.803322,7.538856,1.094218,0.246282,0.000000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,3.266116,0.819008,3.202480,0.000000,0.000000 -601130.555000,4612425.550000,1942,4805,90.998352,137.411591,131.543808,121.791740,109.023148,99.238022,97.238029,94.436371,94.477699,95.667786,98.064468,110.395050,130.791748,147.775223,162.138870,175.849594,179.378525,176.386780,163.122330,144.676056,134.981827,133.428101,128.527283,95.246292,72.147125,95.816544,136.072754,116.188438,56.072750,15.502497,11.684316,9.995053,12.421504,17.907457,23.765308,13.328940,1.103310,0.069422,0.024794,0.258678,0.004132,0.000000,0.000000,0.289256,4.142976,0.000000,0.000000,0.000000,0.000000,0.000000 -601136.155000,4612425.550000,1970,4805,111.447960,129.781006,125.541336,117.508278,103.913239,93.946297,92.128113,88.673569,86.723160,89.144646,89.781006,101.541336,122.268608,139.648758,154.847107,169.119858,173.119858,169.508286,157.061981,140.061981,129.896713,127.731422,125.136383,86.781006,63.326466,89.516548,140.028931,121.384315,61.103325,13.566133,11.376051,7.364476,11.342991,16.779356,26.571918,15.739686,0.614878,0.000000,0.020661,0.000000,0.085124,0.000000,0.017356,0.000000,0.000000,2.553720,3.623967,0.774380,7.314877,0.000000 -601145.555000,4612425.550000,2017,4805,71.245476,99.333900,101.276054,92.242996,76.209938,65.077698,60.573570,55.416550,51.796715,49.656219,47.862831,56.466137,71.838036,82.003326,91.995064,99.598366,99.119026,95.424812,87.185143,74.234734,62.705803,60.714069,54.490929,23.745472,6.065301,30.507458,86.920677,96.755394,55.218201,9.273569,4.953738,4.881827,11.719025,21.067787,31.466135,20.833900,0.904962,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.751240,0.000000,0.338017,1.322315,0.668595,0.000000 -601156.955000,4612425.550000,2074,4805,54.447948,71.951256,64.354561,53.304974,38.032246,27.493406,21.180182,15.009934,11.461172,9.819849,8.227285,11.941339,22.963654,32.495060,41.205799,48.181007,48.453735,46.090099,41.057041,29.693405,21.600843,19.575224,18.127291,1.026450,0.004132,4.021496,57.784313,78.858696,47.395882,4.582653,1.647952,4.799181,13.427287,24.447124,40.683487,30.577703,1.920665,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.349588,1.187604,0.879339,0.314050,2.088431,2.740496 -601234.155000,4612425.550000,2460,4805,70.766960,105.070267,85.095055,73.822327,58.161175,43.946301,41.673573,37.756222,35.549606,36.714897,32.822330,39.632256,51.681843,62.425636,72.095055,82.028954,84.136391,79.152916,74.326462,64.334732,55.814072,55.086792,53.136383,25.364481,9.648775,31.417374,83.938042,94.442169,52.268620,8.766955,4.830598,16.000843,12.820679,27.263653,41.169441,31.741341,2.018186,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.324794,0.000000,0.000000,0.781819,1.225620,0.000000 -601237.555000,4612425.550000,2477,4805,96.052902,134.789276,121.103333,110.260345,94.194237,81.276886,79.516556,76.326469,75.020676,77.219032,74.028938,83.334732,97.657043,112.103333,122.326469,133.466965,133.962830,127.351257,117.971100,107.078537,97.781006,96.706627,94.681839,64.219025,46.243820,69.004158,113.342995,107.169441,55.921509,11.654562,8.607457,17.874397,10.964480,21.566133,33.255394,20.298365,1.628103,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,1.625620,0.729752,0.720661,1.233885,0.976033,0.000000 -601243.355000,4612425.550000,2506,4805,121.774391,170.738861,149.507462,138.862823,122.590103,108.978531,108.499191,106.532249,106.871094,112.383492,107.953735,120.218201,137.102493,154.945480,169.408279,180.854568,181.350433,171.433075,156.697540,140.623154,130.978531,131.044647,128.400024,97.928947,77.796715,99.829765,124.813240,98.697533,47.366962,15.576877,11.672747,16.026464,12.948776,16.217375,20.347126,11.834724,1.400004,0.085124,0.102480,0.078513,0.035537,0.000000,0.000000,0.000000,5.328100,0.000000,1.692562,1.653719,0.900827,0.000000 -601253.155000,4612425.550000,2555,4805,145.269455,177.128922,158.310745,145.079361,129.294235,116.104156,115.996712,113.690933,113.004982,118.980186,114.839691,126.814896,142.162018,158.864456,173.203308,184.533875,184.013214,172.128922,154.914078,136.434723,127.162003,123.947128,121.418205,91.393410,71.831429,91.137215,109.451263,80.864487,35.856220,14.004151,11.038036,16.117373,10.782660,9.514065,11.165302,6.125629,0.227275,0.170249,0.256199,0.013223,0.044628,0.191736,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,2.370248,4.429752 -601262.355000,4612425.550000,2601,4805,113.273575,142.485153,149.245483,139.336395,126.096710,117.617371,115.493408,113.633904,113.270264,115.452087,116.848778,127.923157,144.675232,159.352921,173.410767,183.336395,185.212418,176.609116,156.303329,137.650436,127.832253,125.881836,120.881836,93.369438,73.369438,89.782661,105.410759,77.518196,36.733074,12.976051,10.989275,9.057038,8.589271,8.704146,10.466956,4.034718,0.528101,0.004959,0.106612,0.295042,0.075207,0.039670,0.257025,0.000000,2.087604,0.000000,1.006612,0.000000,0.000000,0.000000 -601273.155000,4612425.550000,2655,4805,93.942986,143.435562,151.435562,142.509949,129.228943,119.427284,117.840508,115.691742,115.832245,117.022324,120.014061,129.691742,147.038864,161.708298,174.352905,186.344635,186.385956,177.757858,156.402512,138.468628,129.501663,125.642159,122.336372,94.542984,75.204147,91.369438,105.691742,78.989273,35.518200,13.042993,11.121508,7.395880,8.258693,9.194229,12.770264,3.902486,0.795870,0.000000,0.237191,0.019836,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601284.755000,4612425.550000,2713,4805,103.767776,151.509949,156.576065,143.278534,131.642166,122.799194,120.377701,118.584312,118.146301,120.914894,121.840515,133.195892,149.419037,165.038864,178.724823,188.617386,191.815735,182.228958,161.823990,141.542999,133.262009,128.104980,124.972748,96.857040,78.625641,91.881836,106.898361,78.972748,36.898365,14.998365,11.361176,8.971087,10.866131,9.119849,11.057867,3.710751,1.254548,0.001653,0.039670,0.008265,0.000000,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.934711 -601293.355000,4612425.550000,2756,4805,103.283493,152.078522,154.409103,144.673569,131.433899,123.004150,119.855385,118.442162,116.979355,119.731422,121.863655,132.574402,149.309937,163.913239,178.252075,188.541336,189.367783,181.880188,161.648773,142.045471,131.979355,128.971085,124.227287,96.070267,76.334724,92.301666,106.516548,79.128113,35.838863,13.689275,11.293407,7.711583,8.618197,9.365303,11.591751,4.042156,0.384299,0.470249,0.303306,0.030579,0.098347,0.325621,0.000000,0.000000,1.100827,0.000000,0.000000,0.857025,0.000000,0.000000 -601304.755000,4612425.550000,2813,4805,101.360352,151.625610,153.625610,144.749573,131.749603,123.014069,120.435555,118.997536,119.774399,119.931419,123.675224,132.890106,149.790909,165.633881,178.923141,189.931396,192.113220,183.452057,162.038834,142.534698,132.914886,129.898361,125.063652,96.741341,77.476875,93.394234,106.600845,79.476875,34.187626,13.045474,11.369440,6.555383,9.502494,8.891750,9.681831,4.168602,0.796696,0.158678,0.005785,0.013223,0.133885,0.259505,0.362810,0.000000,1.238017,0.000000,0.000000,0.000000,0.000000,0.000000 -601318.355000,4612425.550000,2881,4805,118.282661,156.847946,155.914062,146.847946,134.145477,125.277710,123.021507,121.442993,120.914070,124.104156,124.996712,135.905807,152.071091,168.823151,182.195053,193.352081,195.550430,187.690918,165.203323,145.376892,134.955399,132.814896,128.418198,99.145470,79.930588,94.831421,107.343826,78.269432,35.038036,14.201671,11.674399,6.061994,9.052906,8.702492,9.414063,3.422320,0.677687,0.154546,0.414051,0.030579,0.000000,0.148761,0.000000,0.000000,1.236364,0.000000,0.000000,0.000000,0.000000,0.000000 -601329.355000,4612425.550000,2936,4805,124.500839,164.738037,162.010773,149.969437,137.266968,126.589279,125.614075,123.390930,122.589279,126.820686,128.300018,137.911591,155.176056,170.382660,184.134735,196.423996,198.374405,190.465317,168.010773,148.440521,138.961182,134.316559,129.754562,101.944641,81.622337,94.638863,108.721512,81.498367,36.407455,15.810761,11.795887,7.261996,10.220675,9.492576,12.149600,3.470252,0.624796,0.185952,0.257025,0.048761,0.068595,0.424794,0.000000,0.000000,0.000000,0.000000,1.025620,0.000000,0.000000,0.000000 -601335.555000,4612425.550000,2967,4805,153.723999,195.434723,173.409927,165.757034,148.872742,135.773560,135.434723,133.930588,135.484314,142.062820,138.434723,150.434723,167.285965,185.211578,200.252899,213.566971,214.294250,201.170258,181.335556,161.186783,150.922333,148.831421,144.418198,111.633072,92.525627,109.955376,119.409920,85.310745,39.831421,18.316545,13.128944,13.614066,9.844646,11.122331,13.430593,6.706622,1.047936,0.000000,0.109091,0.390910,0.010744,0.000000,0.024794,0.139670,1.457851,1.286777,0.000000,0.000000,0.000000,0.000000 -601339.755000,4612425.550000,2988,4805,126.093407,193.861984,174.804138,165.217361,148.382645,137.903305,136.886780,135.118195,136.630585,142.349594,140.333069,151.225632,167.837204,186.242157,202.118195,214.969421,215.473557,203.109924,180.589264,161.399185,151.928101,149.200836,144.754547,111.432243,94.630592,112.060349,120.333069,85.019020,40.622330,18.554562,13.159523,15.187619,10.375224,12.519025,12.168609,7.608275,1.385953,0.766944,0.085951,0.028099,0.009918,0.000000,0.019835,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601342.555000,4612425.550000,3002,4805,145.287613,190.469421,169.973557,164.601654,148.642975,134.800018,135.196716,135.395050,135.337204,142.353729,139.105789,151.510757,167.593399,185.816528,201.700836,213.808273,214.684311,201.709091,182.204971,161.419846,151.271088,147.775208,143.163635,113.428116,94.527290,107.841339,119.171913,85.221504,40.097542,17.209934,13.014895,14.098362,9.687620,11.214893,12.283486,5.663646,0.460332,0.245455,0.252067,0.215703,0.010744,0.000000,0.022315,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601346.155000,4612425.550000,3020,4805,145.399200,181.928085,169.762833,162.159531,145.390915,132.002487,133.374390,132.514877,132.961166,138.614059,136.589264,149.027283,165.176056,184.043808,198.333054,210.729752,212.457031,199.043793,178.134720,159.184326,148.151245,145.283478,140.300003,109.977692,91.498360,106.060333,116.316536,81.911591,39.440514,14.856215,12.754563,8.790923,8.742166,8.017372,11.070263,4.116537,0.724795,0.000000,0.105786,0.000000,0.000000,0.000000,0.000000,0.231406,0.000000,0.000000,2.272727,0.000000,0.000000,0.000000 -601352.755000,4612425.550000,3053,4805,131.307449,180.472717,171.480988,162.869415,145.571899,134.894226,134.472748,133.092575,134.067780,139.505798,138.398361,150.373550,167.844620,185.654541,200.241318,212.927261,216.100815,202.861145,182.034698,162.431396,151.323959,147.952057,143.472733,112.547119,93.960350,108.555389,118.704140,87.629768,40.927296,15.785143,13.042994,14.525636,9.738033,11.012414,12.123156,7.096704,0.445456,0.056199,0.252067,0.039670,0.018183,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601355.355000,4612425.550000,3066,4805,140.000015,180.487625,170.528946,159.504150,146.388443,132.917374,134.528946,134.289276,134.735550,138.685974,137.239685,150.611588,168.049606,185.429764,199.809937,212.429764,214.223160,202.586792,180.396713,160.727295,151.223160,148.148773,142.181839,112.049606,94.066132,107.289276,120.264481,86.471092,40.942165,16.255390,12.925638,12.145471,10.894232,11.029768,12.434728,5.438852,0.880167,0.454546,0.228926,0.128099,0.008265,0.000000,0.004132,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601361.755000,4612425.550000,3098,4805,121.055382,180.509933,170.328110,160.204147,144.981003,133.609100,134.030594,133.923157,133.708267,138.014053,137.394226,149.724808,167.708267,185.361160,199.757858,212.476868,213.427277,202.700012,181.237198,159.683487,149.733063,146.947937,142.881821,112.666954,92.757866,105.328110,119.228935,85.923149,40.361179,15.685143,12.989275,10.340510,9.515719,11.399192,11.962001,4.857035,0.794216,0.490084,0.183472,0.005785,0.000000,0.000000,0.006612,0.101653,0.000000,1.290083,0.000000,0.000000,0.000000,0.000000 -601364.755000,4612425.550000,3113,4805,132.114899,179.668594,169.990906,159.304977,145.602493,133.891754,134.792587,135.371094,134.693405,138.503326,138.354568,150.685150,169.668594,185.767776,199.379364,213.081833,214.784317,204.701675,181.858688,160.313248,151.420685,147.974396,143.809113,112.123161,93.495064,107.023987,119.685135,88.726463,40.660351,16.640514,13.073573,10.647948,10.585968,12.229771,11.085138,6.665299,0.970250,0.000000,0.208265,0.000000,0.019008,0.000000,0.008265,0.277687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601369.155000,4612425.550000,3135,4805,117.036377,178.143799,168.887604,158.259506,144.788437,133.251251,135.011581,134.598358,134.705795,138.036362,138.052902,152.069427,168.590088,186.003311,201.193390,213.796692,215.226456,204.209915,182.044632,160.730576,151.490906,147.813232,143.490906,113.317368,93.309105,107.143814,119.829765,87.408264,39.738865,15.271919,13.044646,11.098361,9.617373,10.275223,10.959519,4.273562,1.271903,0.114050,0.000827,0.300000,0.024794,0.000000,0.023141,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601372.555000,4612425.550000,3152,4805,113.792572,176.114883,169.519836,160.503311,144.536377,136.916550,135.238861,134.214066,134.594223,138.164490,138.007462,150.933075,169.280167,185.437195,199.982651,212.585953,215.023972,203.709915,180.329758,160.734711,149.751266,147.569443,142.809113,114.189270,92.742989,107.387611,119.296707,87.338028,40.065311,16.172747,12.982663,11.147948,10.924809,11.492578,11.881005,5.094223,0.972730,0.207438,0.151241,0.079339,0.000000,0.000000,0.000000,0.346281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601375.155000,4612425.550000,3165,4805,123.849609,177.642975,168.692566,159.717361,144.783478,135.188431,135.262817,134.800003,134.221497,137.907440,139.733887,151.857864,170.031418,186.923981,199.535538,213.097534,214.469421,204.535538,181.345459,160.957031,150.791748,147.816528,143.072739,112.386795,92.816544,106.262825,118.295883,86.337212,38.568611,16.344646,13.006630,9.791750,9.158693,10.944646,12.398364,5.473562,0.568597,0.071901,0.223141,0.665290,0.013223,0.000000,0.000000,0.072727,0.000000,0.000000,0.000000,4.126447,0.000000,0.000000 -601379.555000,4612425.550000,3187,4805,118.704971,173.738037,171.002502,162.143005,148.382690,136.622360,137.316559,135.184311,137.663666,140.126480,141.531448,153.118225,171.382660,188.746307,202.060349,214.531433,217.738037,206.671921,183.209106,163.374405,152.035583,151.473587,145.481857,116.142990,95.481834,111.035553,122.523155,88.994232,41.795883,17.177704,13.225638,11.456214,11.297539,13.613241,12.469437,3.947941,1.457855,0.071901,0.157025,0.000000,0.028926,0.000000,0.128100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601383.955000,4612425.550000,3209,4805,113.935547,175.431427,170.084320,158.414902,145.373581,136.117386,136.109116,134.762009,135.530609,138.431427,140.125641,153.836395,171.472748,188.084320,200.778534,213.852905,216.803314,206.819855,182.943832,161.778534,152.051270,149.489288,144.927292,113.654556,95.092583,108.943810,120.439682,87.365311,41.505802,16.276051,13.175224,10.220674,9.547124,11.964478,13.088446,5.263645,0.995045,0.115703,0.001653,0.097521,0.284298,0.182645,0.069422,0.150414,0.000000,0.000000,1.185951,0.000000,0.000000,0.000000 -601387.355000,4612425.550000,3226,4805,115.708282,169.542969,172.485123,161.162796,146.923141,138.923141,137.898346,136.328110,138.071915,140.666931,142.873550,154.319824,173.749573,190.245453,203.757843,216.179337,219.989243,210.625610,186.567764,164.914871,154.749573,153.237183,147.699997,116.666954,97.286797,111.625641,122.625633,88.592583,42.650436,17.949604,13.427292,10.606626,11.530595,12.583489,12.638861,7.078523,1.100830,0.258678,0.654547,0.222315,0.053720,0.000000,0.103307,0.306612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601392.555000,4612425.550000,3252,4805,126.496712,167.901672,168.554565,160.009109,145.819016,136.703323,136.223999,134.571091,135.248779,138.909927,140.860336,153.273560,172.157867,188.562820,203.207458,215.587616,218.893402,209.827286,185.554565,163.959518,154.521500,151.579346,146.009109,115.951263,95.860352,110.033905,120.116547,88.248779,40.273571,16.323160,13.273573,8.826462,9.568611,10.704148,12.065305,5.823977,0.764465,0.328927,0.030580,0.000000,0.076860,0.000000,0.028099,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601397.755000,4612425.550000,3278,4805,116.270264,169.402466,171.609085,161.567764,147.914871,136.609100,137.005798,135.939682,136.584305,140.361160,143.468597,155.369415,173.361160,190.600815,205.146271,217.832230,220.749573,210.749573,187.567764,167.038834,155.038834,152.947922,148.336365,118.022331,97.394234,111.848778,121.749603,87.914894,41.278534,17.219854,13.485144,9.833073,9.672744,10.852083,9.643816,5.615712,1.475210,0.497522,0.115704,0.801654,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.125620 -601400.955000,4612425.550000,3294,4805,109.995064,169.507446,172.333893,160.697525,145.953720,138.523972,137.466141,136.069443,137.970245,140.408264,142.788437,155.077682,173.366943,190.325623,205.317352,218.317352,220.557022,210.581818,186.970245,166.689255,155.928925,153.036362,147.854553,117.962006,98.003326,110.623161,122.573563,89.110764,41.077705,17.867786,13.441340,10.664476,11.919851,11.562000,12.313237,4.830587,1.258680,0.200827,0.348761,0.187604,0.071075,0.000000,0.148761,0.000000,0.000000,2.434711,0.000000,0.000000,0.000000,0.000000 -601403.955000,4612425.550000,3309,4805,101.670258,163.298355,167.166122,157.339676,144.100037,136.025635,134.604141,135.124802,135.785965,138.637222,140.364487,153.785965,172.116547,188.405792,203.273560,216.389267,218.719849,209.538025,185.455383,164.000839,154.653732,150.744644,145.827286,115.182655,96.488441,111.124809,120.901672,88.009102,42.066959,16.190102,13.257043,7.717370,9.211587,11.441339,13.051256,3.621496,0.758679,0.385125,0.090910,0.180166,0.000000,0.000000,0.000000,0.095042,0.000000,0.000000,1.040496,0.000000,0.000000,0.000000 -601408.955000,4612425.550000,3334,4805,121.809937,171.272751,169.859528,156.983490,144.669434,136.049606,135.148773,134.206635,134.851257,138.628113,141.942169,154.049606,171.429764,190.165298,203.859528,215.975220,220.537201,210.024811,187.909103,164.537201,154.851257,151.272751,145.545471,116.322327,95.487617,111.545471,121.776878,86.512421,40.041344,15.308282,13.231424,8.347949,9.528942,11.036379,12.906629,5.524803,0.836366,0.003306,0.168596,0.076860,0.009918,0.000000,0.001653,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601414.555000,4612425.550000,3362,4805,118.419861,172.287628,169.651260,160.238037,145.502502,137.031433,135.899200,134.593399,137.428116,138.651260,142.477707,155.229782,173.006638,190.097549,205.601669,217.940521,220.122330,210.791763,186.676056,164.618210,154.899200,150.651260,146.800018,116.411591,96.188454,110.238037,119.279358,87.064484,39.948780,16.107454,13.345472,10.026462,10.549603,10.508281,11.125634,7.061168,0.963638,0.130579,0.042150,0.148761,0.038017,0.000000,0.000000,0.011571,0.000000,0.000000,1.027273,0.000000,0.000000,0.000000 -601419.155000,4612425.550000,3385,4805,109.704971,164.142975,170.291748,159.233887,144.572739,137.407440,136.622314,135.696701,136.853729,139.861984,144.225632,154.944641,173.837204,191.275177,205.523117,218.490067,221.349579,212.448746,187.895020,166.977692,156.985962,153.514877,147.027283,118.060349,98.142990,112.647125,122.465302,86.738029,41.390926,17.500015,13.366136,9.406626,10.240514,11.662827,12.228941,4.339677,1.578516,0.128926,0.207439,0.004132,0.028099,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.755000,4612425.550000,3403,4805,127.521500,165.414062,169.637207,158.711578,146.951263,138.876892,137.232254,136.810776,137.785980,141.100037,144.984329,156.075241,175.207474,192.777710,207.901688,220.381027,223.248795,214.157883,189.546310,168.719849,156.868607,155.033920,149.918213,119.199181,99.133080,112.909920,123.414055,88.819031,41.504974,18.503323,13.628944,8.535552,11.630595,11.230596,12.267786,6.187614,0.652068,0.139670,0.189257,0.224794,0.017356,0.000000,0.006612,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.955000,4612425.550000,3429,4805,114.183487,165.753738,167.340515,158.290939,144.844650,137.216553,135.687622,135.522339,136.588455,140.282669,143.340515,155.530609,174.216553,192.456223,207.282669,220.687622,223.720688,213.993408,190.076065,168.555405,157.844650,155.828125,148.927292,120.828117,98.059525,114.852913,123.654564,88.844643,41.613239,17.567789,13.538863,8.812411,10.476050,10.955388,9.525635,4.931413,0.652894,0.445456,0.402481,0.197521,0.019009,0.000000,0.000000,0.077686,1.234711,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.555000,4612425.550000,3472,4805,111.339684,163.769440,169.174393,160.628937,146.149582,138.298355,139.166122,138.695053,139.422333,142.405792,146.761154,158.496704,177.496704,194.761169,209.852081,222.397537,226.604141,217.133072,191.976044,171.538025,160.414062,157.058670,152.463638,122.480179,101.182655,115.876869,124.637199,90.785965,43.438866,17.333076,13.860349,11.132247,10.724811,10.900843,11.361172,5.276868,0.817357,0.153720,0.307439,0.080165,0.038017,0.000000,0.006612,0.010744,0.000000,1.295868,0.000000,0.000000,0.000000,4.052893 -601439.955000,4612425.550000,3489,4805,118.038864,169.014053,168.443832,160.038864,146.245483,139.055405,137.997543,137.369446,138.402512,142.691757,145.559525,158.427292,176.823975,195.352905,211.005798,224.005798,227.104950,218.237198,193.906616,171.551254,161.237213,159.030609,153.518204,123.716545,101.906631,117.749603,128.022339,92.311584,43.617374,18.221508,13.956218,8.270263,11.133076,12.343819,11.424809,4.783480,0.587605,0.123142,0.322316,0.000000,0.079339,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.755000,4612425.550000,3508,4805,117.523987,162.474396,171.276031,161.457855,147.573563,140.590088,140.267776,138.920670,139.970245,143.879364,146.846283,159.019836,177.094223,195.515701,210.069443,221.656219,226.714066,217.292587,193.755371,171.895874,160.813232,158.251236,153.854568,122.614891,101.879356,116.201675,128.135559,92.573570,45.185143,17.825640,13.986795,10.292575,11.905802,12.089272,11.510760,5.472736,1.117358,0.423142,0.026447,0.477687,0.041323,0.430579,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.555000,4612425.550000,3547,4805,104.834724,161.504135,169.214874,157.471069,147.181824,138.231415,139.297531,137.272766,137.752075,140.702499,144.512390,157.280991,174.223145,193.297516,207.752060,220.776855,223.462814,215.214874,191.462814,169.107437,157.619827,155.586777,150.090912,120.355385,99.685966,114.396713,125.454559,92.504150,43.330593,16.436380,13.644647,7.452079,10.319025,10.404974,10.956214,5.374388,0.809095,0.072728,0.323142,0.142149,0.020661,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.955000,4612425.550000,3564,4805,114.838860,167.136398,168.045471,160.995880,146.293411,138.673569,138.582657,138.359528,140.268616,142.425629,146.351257,158.367798,176.822327,193.789276,209.442154,222.483475,224.450409,215.739670,192.797531,170.144638,160.152908,156.252106,150.954575,122.012413,101.425636,114.690102,124.913239,91.466957,41.938034,16.953737,13.723159,7.089269,11.685141,10.957867,13.671090,6.911580,1.089259,0.221489,0.003306,0.000000,0.000000,0.000000,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.755000,4612425.550000,3593,4805,116.742165,164.510757,169.229752,158.965302,148.626450,139.535538,138.609924,139.229752,139.519012,143.130585,147.783478,157.709091,176.419846,193.750427,209.543793,221.213211,224.477676,216.494202,191.155380,168.866119,158.998352,155.915710,151.254547,120.171913,100.700844,115.304146,123.469437,90.353737,43.576881,16.538036,13.750433,8.695056,10.318199,11.574397,12.085140,6.109925,1.666119,0.607440,0.174381,0.464463,0.000000,0.000000,0.022314,0.082645,0.000000,0.000000,0.000000,0.000000,1.261984,0.000000 -601467.155000,4612425.550000,3625,4805,118.021500,165.814896,167.881012,159.261169,148.228088,140.459518,138.674393,138.095886,138.715714,144.195053,146.699188,158.657867,175.773560,193.781830,208.186783,222.145462,225.087616,215.500839,190.938858,169.352081,158.104126,155.641312,150.418182,119.930603,100.112411,113.071098,122.831429,90.128937,40.715725,17.166960,13.674400,9.028938,8.713240,10.965307,10.760346,5.845464,1.556202,0.336365,0.167770,0.000000,0.093389,0.109918,0.004959,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.755000,4612425.550000,3648,4805,117.382660,164.167786,169.481842,160.349609,148.581009,142.151260,139.151260,139.432251,141.423996,144.423996,148.572754,159.804153,178.341339,194.423996,210.572754,222.762833,226.828949,217.134735,192.771103,169.820679,160.275223,156.151260,152.300018,122.853737,100.647125,113.457039,123.473572,90.531418,43.291756,16.542168,13.845473,6.993402,9.628942,10.986794,11.556215,5.422324,1.019837,0.500828,0.167770,0.420662,0.017356,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.155000,4612425.550000,3670,4805,123.736374,166.802490,169.951248,159.967789,150.885132,141.058685,140.529770,140.381012,140.042160,144.686783,147.017365,160.174393,178.083481,195.381012,210.885132,223.893402,227.455383,217.488449,192.926453,171.389267,160.761169,155.876877,151.190918,122.463646,101.785965,114.496704,125.017365,91.711586,43.141342,17.245470,13.744647,7.122326,11.895885,11.293405,11.358694,5.631413,1.227276,0.079340,0.191736,0.000000,0.100001,0.000000,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.355000,4612425.550000,3701,4805,120.053726,166.252075,170.086792,160.764481,150.152908,142.979355,140.731415,140.458694,141.838852,146.177704,148.706635,161.061996,177.871918,196.161179,211.433899,224.276871,227.723160,218.549606,195.095062,171.433899,160.855392,157.814072,152.409103,122.971085,100.615707,115.954552,124.904968,91.243820,43.293404,18.156218,13.855392,8.420675,11.023157,10.310760,11.880181,5.316538,1.459508,0.420663,0.061158,0.161157,0.029752,0.000000,0.014876,0.292563,0.000000,0.000000,1.194215,0.000000,0.000000,0.000000 -601486.155000,4612425.550000,3720,4805,124.664482,171.647934,169.714066,162.209915,152.052917,141.978531,141.755386,140.928940,142.342163,146.697540,149.242996,161.614883,178.986786,197.499176,211.226456,224.714050,228.953720,220.408264,195.573563,172.135544,161.292572,157.557022,153.218201,122.854568,102.028107,116.061180,123.697540,91.127281,43.259525,18.293409,13.928944,7.723981,10.799190,11.506626,10.628115,4.799182,0.348763,0.128100,0.214051,0.023141,0.020661,0.000000,0.037190,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.155000,4612425.550000,3735,4805,125.013229,174.757034,169.633072,162.575241,151.046310,141.641357,141.757050,140.674408,142.525650,146.905807,149.492584,161.955399,179.773560,197.930588,212.054565,226.343811,231.368607,220.963654,195.459518,172.442993,162.285980,158.145477,152.963669,122.476036,101.352081,116.112404,125.616531,92.294220,43.864479,16.790928,13.905804,7.697535,10.785966,12.232248,11.642991,5.192571,1.173557,0.444630,0.138844,0.167769,0.145455,0.054546,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.755000,4612425.550000,3748,4805,117.472740,171.084305,173.348770,164.844635,150.861160,143.315720,141.505798,141.646286,144.034729,148.018188,150.249603,162.538849,180.786789,198.315720,214.150421,227.753723,231.390091,222.257858,196.629761,173.861160,163.456207,159.629761,153.018188,123.001663,101.844635,115.828110,123.142159,91.133896,43.720684,18.718201,13.910763,7.583484,10.813239,11.357041,12.900015,5.541331,1.370251,0.213224,0.185126,0.131406,0.000000,0.000000,0.000000,0.164464,0.000000,0.000000,0.000000,1.089256,1.298347,0.000000 -601494.555000,4612425.550000,3762,4805,120.303329,166.675217,169.063644,164.113235,151.171082,141.005798,142.088440,141.501663,142.931412,147.278519,149.443817,161.997528,179.419022,197.840500,213.311584,227.683487,230.964478,221.270264,196.832245,173.212402,162.700012,159.377701,153.427277,121.898354,102.038849,115.212410,123.567780,90.749596,43.823986,17.868612,13.947952,7.451253,9.896708,11.066958,12.153734,5.106620,0.398350,0.439671,0.109091,0.000000,0.000000,0.000000,0.026446,0.014876,0.000000,0.000000,0.000000,1.161984,0.000000,0.000000 -601499.155000,4612425.550000,3785,4805,113.467781,174.988449,169.881012,164.467789,152.162003,142.905792,141.955383,142.170258,143.790100,147.905792,150.608276,162.277695,180.368607,198.641342,214.575226,228.566956,231.889267,223.616547,197.996704,174.261169,162.203323,158.566956,155.145462,124.269432,103.120674,114.790092,124.013237,92.550423,42.996716,18.167788,14.104151,6.022327,11.133074,13.109107,12.981833,4.332240,0.600003,0.680994,0.199175,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.755000,4612425.550000,3808,4805,128.218201,174.664490,173.366943,166.375214,153.697525,143.185120,142.185120,143.705795,143.879349,150.077682,151.300827,163.160339,180.689255,199.449585,215.143814,229.689270,232.920685,223.416550,197.532257,174.986786,163.193390,160.383469,154.036362,124.061180,102.028122,115.978531,125.284317,92.119026,43.970268,18.904152,14.003325,6.467781,11.143818,12.978529,11.068611,5.550422,1.086781,0.746283,0.209092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.955000,4612425.550000,3849,4805,125.638863,176.919846,173.068619,166.366135,154.357880,143.671921,143.143005,143.283493,145.035553,148.895065,151.713242,163.076889,180.952896,199.093399,214.754562,228.977692,232.886780,223.903336,197.952896,174.928101,162.597549,158.911591,154.663666,123.564484,101.729774,115.919861,125.539696,90.721512,42.944645,18.076878,14.060349,7.112411,10.022331,10.263652,10.859521,5.848770,0.738845,0.094215,0.107439,0.000000,0.000000,0.000000,0.080992,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.155000,4612425.550000,3865,4805,133.519852,180.462006,176.123154,168.412415,155.181015,144.139694,144.280182,144.395889,144.676880,151.726471,151.933075,164.486801,182.313248,200.371094,217.561172,230.395889,233.999191,225.147949,199.263657,175.776047,164.023987,161.164490,154.900024,123.792580,103.536385,116.156219,126.164482,93.462006,42.668613,18.952911,14.081837,7.643816,11.098362,13.314892,12.214892,4.885959,0.391738,0.342976,0.837192,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.555000,4612425.550000,3882,4805,131.797531,178.334732,173.301666,168.367798,154.417389,143.962845,144.119873,142.863663,143.987640,149.400864,149.772766,161.276886,179.533081,199.111572,214.714890,228.938034,232.657043,223.938034,196.847107,172.714905,161.252106,158.161194,152.590942,122.466949,101.409096,113.475212,122.425629,91.409103,43.045471,17.566961,13.871920,6.444642,9.318198,9.568609,10.671916,5.250422,1.073558,0.137191,0.181819,0.000000,0.051240,0.000000,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.555000,4612425.550000,3912,4805,129.780182,179.490906,175.226456,166.011566,150.804962,141.143799,142.267776,141.904129,142.738846,145.978516,148.333893,160.226456,180.466125,196.267776,212.714050,226.424789,230.738846,219.540497,193.614883,171.209915,160.218185,157.565292,151.490906,121.796707,101.871094,113.912407,123.416542,88.383492,42.912415,20.085142,13.771919,11.464477,11.540512,11.433901,14.383488,6.805796,1.406615,0.000000,0.488431,0.085951,0.009918,0.000000,0.023967,0.252893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.755000,4612425.550000,3933,4805,114.422325,174.381012,174.066956,163.397522,149.372742,139.752899,140.529770,139.653732,139.620667,143.290100,145.810760,159.050430,176.686783,194.662003,209.785965,222.893402,227.571091,215.199188,189.480179,166.562805,156.248779,154.290100,147.918198,117.223976,96.653732,111.215714,118.207451,85.926460,41.083492,16.260349,13.447126,8.344640,8.734728,9.818198,10.634726,4.423149,0.780168,0.000000,0.299174,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.955000,4612425.550000,3959,4805,140.459518,177.203308,174.980164,166.451248,152.302475,142.112411,143.128922,141.980164,142.550415,145.814880,148.352066,160.938858,178.442978,196.029755,211.178513,225.302475,227.178513,217.393387,191.153717,168.104126,157.484314,155.071091,149.781815,118.971916,99.219849,111.517365,121.236374,87.269432,42.360348,17.411589,13.616547,13.779355,12.152909,14.022329,12.539684,6.082654,1.640500,0.497522,0.033885,0.172728,0.007438,0.022314,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.755000,4612425.550000,3973,4805,136.934723,179.232239,176.637207,164.967789,148.290100,140.314896,141.397537,139.934723,141.190918,143.719849,146.843811,159.033890,177.149597,194.653732,209.513214,222.678513,225.752899,216.033875,190.042160,167.488449,155.918198,154.149597,147.918198,118.686790,96.868607,110.744652,118.521500,85.529762,41.306633,16.182665,13.447126,9.288445,9.687621,10.519027,12.029768,5.711580,0.221489,0.069422,0.075207,0.178513,0.021488,0.000000,0.000000,0.229753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.955000,4612425.550000,3994,4805,133.678528,178.967789,175.290100,165.223984,152.447113,142.852081,143.934723,141.554565,143.587616,145.885132,148.108276,160.744644,178.612411,196.033890,211.628922,225.959518,228.901657,216.281815,190.571091,167.645462,157.290100,153.835556,149.645462,118.149597,98.645470,111.141335,119.058693,86.521500,41.686798,17.071918,13.604150,10.200840,11.491753,11.409933,11.860346,5.266952,0.893391,0.159505,0.000000,0.000000,0.097521,0.000000,0.001653,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.555000,4612425.550000,4012,4805,125.530586,180.852905,176.720673,164.381821,151.208267,141.406616,141.885956,140.712402,142.001663,145.348770,146.290924,160.514053,179.514053,196.357040,211.249603,225.340500,228.274384,216.183487,190.828110,168.960342,156.216537,154.109100,148.200012,118.051247,97.753731,109.332253,118.026459,84.538849,41.001675,15.704151,13.472747,9.481833,8.423984,10.773571,11.833075,3.535545,1.557855,0.254546,0.113224,0.028926,0.000000,0.000000,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.355000,4612425.550000,4031,4805,118.323982,182.910751,174.009933,167.737198,152.051254,141.811584,142.514053,142.133896,143.042984,146.968597,147.604965,161.001663,179.580170,197.505798,211.390091,225.720673,228.464478,216.935547,190.844635,169.034714,157.439682,155.885956,148.381821,118.588448,98.712418,111.142166,120.100845,85.745476,41.613239,17.578529,13.489275,11.467784,10.838034,11.342993,13.041337,4.761991,1.227275,0.203306,0.226447,0.014876,0.000000,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.955000,4612425.550000,4049,4805,135.150421,190.514053,178.596710,167.257858,153.894226,142.910751,145.241333,144.042984,144.290924,150.018188,149.621490,162.910751,180.960342,198.365295,212.481003,227.629761,228.819839,216.241333,192.158691,169.299179,159.266129,155.927277,150.745468,118.836372,100.555382,111.489265,120.142159,87.332245,42.109112,17.819029,13.704151,12.026460,12.389275,13.186794,13.042165,6.380176,0.590911,0.637191,0.152067,0.145455,0.044629,0.000000,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.755000,4612425.550000,4078,4805,142.945465,186.730576,175.978516,170.424789,153.276031,143.722321,143.970245,142.697525,143.722321,149.102478,148.838013,161.135544,179.383469,197.127274,211.185120,225.639679,227.598343,215.102478,189.028107,168.647934,156.970245,154.102478,148.945465,117.895882,98.647942,112.110756,117.714058,83.912399,42.391758,16.709110,13.540514,13.942165,9.920678,10.942991,12.836379,6.422325,0.849588,0.000000,0.186777,0.000000,0.057025,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.155000,4612425.550000,4110,4805,154.197525,192.528122,180.933075,173.007462,156.445480,142.825623,145.784302,144.181000,145.428925,151.073578,150.329773,161.784317,179.503326,198.189270,213.809097,227.470245,228.610748,215.577682,190.412415,169.924820,159.296707,155.643814,149.900024,119.495064,100.428947,113.354568,119.809113,86.395889,42.933079,17.962830,13.627291,14.901669,10.836380,11.485140,11.696709,6.221497,0.895043,0.122314,0.252893,0.092562,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.355000,4612425.550000,4131,4805,153.283493,199.713226,181.423981,174.614059,156.911575,143.275208,145.242157,144.861984,145.366119,152.010757,150.134720,162.671906,179.440506,197.622314,213.514877,229.572739,229.060333,215.440506,190.622314,169.572739,157.969421,155.200836,149.481827,119.118187,100.862007,113.407455,119.928108,84.680191,40.655392,16.585968,13.589275,12.429768,9.910762,9.895057,11.591751,6.125630,1.509920,0.125620,0.176860,0.338843,0.109918,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612425.550000,4154,4805,162.775238,201.180191,183.849594,171.651245,155.923981,144.147110,144.188431,143.436371,145.155380,152.221497,150.047943,163.485962,179.047943,198.353729,213.824799,228.064484,228.816559,214.014877,190.279343,169.138855,157.163635,154.601654,148.072739,118.337189,99.684311,113.105789,119.196701,84.568611,40.295887,16.579357,13.461176,13.014893,8.869438,10.620679,12.141339,5.963647,0.612398,0.076033,0.000000,0.017356,0.000000,0.000000,0.096695,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.755000,4612425.550000,4223,4805,133.597534,169.291748,173.845459,162.729752,150.002487,141.134720,142.316528,140.225632,141.647110,143.919846,146.704971,159.630585,177.349594,194.779343,208.671906,222.250427,224.250427,213.614059,188.572739,167.101654,155.928101,153.490082,146.572739,117.465302,98.539680,111.630592,119.118195,87.556213,41.514896,16.452085,13.324812,11.051253,10.807456,11.664480,11.598364,6.976046,0.733060,0.161158,0.125620,0.000000,0.000000,0.000000,0.048761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.155000,4612425.550000,4245,4805,106.861183,167.505798,172.927277,161.299179,149.456207,141.166946,141.604965,139.547119,140.671082,144.208267,147.580170,158.538849,177.059509,194.018188,209.737198,221.183487,224.745468,213.555374,188.778519,166.059509,155.885956,152.166946,146.200012,117.059532,97.373581,111.117371,119.447960,85.514076,43.158699,15.845472,13.290928,10.177700,10.057867,11.089273,11.789271,4.923149,0.508266,0.059504,0.000000,0.084298,0.022314,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,8.241323 -601593.955000,4612425.550000,4259,4805,119.144646,167.880173,170.450409,163.045456,148.004135,139.442154,139.855377,139.772720,140.673553,142.673553,146.078522,156.855377,176.632233,192.830582,207.301666,219.830597,223.516541,212.574402,187.574387,165.202484,155.780991,151.128098,145.863632,115.574394,95.475220,111.103325,118.252083,86.938034,41.491756,16.475225,13.260348,8.230591,12.050430,10.819025,13.243817,5.570256,1.292564,0.215703,0.076033,0.097521,0.003306,0.000000,0.019835,0.184298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.555000,4612425.550000,4277,4805,122.815720,169.617386,172.609116,164.253738,149.311600,141.319855,140.071930,139.956223,142.096725,143.989288,147.600845,158.633911,176.807465,195.047134,208.997543,219.931427,224.452087,213.906631,188.121521,165.303329,155.815735,152.080185,147.336395,117.567787,96.501671,111.319855,117.865311,86.559525,42.865307,17.906631,13.394235,10.276047,9.836381,9.156216,9.102493,6.341333,0.941324,0.216529,0.195042,0.033058,0.000000,0.000000,0.009918,0.000000,1.300000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.355000,4612425.550000,4306,4805,120.850433,165.941345,176.156204,162.809113,150.759521,142.057037,141.395889,141.486801,142.635559,144.800842,147.966141,159.123154,176.974380,193.850418,208.428925,221.065292,223.891739,213.495041,187.949585,164.478531,154.833908,152.073578,145.900024,116.817375,96.205803,110.776054,118.759521,87.073570,42.511585,18.206629,13.263655,10.280180,11.891752,12.827290,13.853736,7.295053,0.751241,0.133884,0.184298,0.166116,0.070249,0.000000,0.007438,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.355000,4612425.550000,4321,4805,113.203316,169.484314,172.004974,163.285965,150.740509,141.459518,139.938858,139.525635,140.095886,143.261169,145.335556,157.566956,174.897522,190.971909,205.657867,218.674393,220.591751,209.261169,184.633057,162.252899,152.996704,148.715714,143.872742,114.302490,96.558693,109.484314,116.790092,84.773567,42.550430,17.303326,13.079357,6.924807,9.733901,10.361998,11.266129,5.678522,0.999176,0.119835,0.203307,0.018182,0.000000,0.000000,0.000000,0.072727,0.000000,0.000000,2.150414,0.000000,0.000000,0.000000 -601609.355000,4612425.550000,4336,4805,101.662827,163.761978,171.505783,162.323959,150.695862,142.233047,140.745453,140.538834,140.604950,142.894211,145.026443,156.571899,173.778503,190.943802,204.563629,216.662796,219.150406,208.638016,184.026443,160.861145,150.596695,146.365280,141.290909,113.968605,94.406631,108.514069,116.034729,85.018196,39.687626,16.919027,12.844646,8.585136,9.223160,9.460347,11.552082,5.147117,0.360332,0.170249,0.000001,0.000000,0.009091,0.158678,0.012397,0.115703,0.000000,0.000000,0.000000,1.096694,0.000000,0.000000 -601612.555000,4612425.550000,4352,4805,128.009933,168.051254,172.299179,163.836380,150.018188,143.249603,142.183487,140.249603,141.910751,145.704147,146.786789,157.051254,175.274384,191.522324,204.795044,217.348770,219.340500,208.596710,183.464478,161.952072,151.233063,147.166946,142.109100,113.836380,94.902496,107.885971,115.547127,84.431427,42.968613,18.000843,12.919027,7.467780,10.530598,12.438861,11.163651,4.806620,0.773555,0.000000,0.329753,0.018182,0.063637,0.000000,0.030579,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.555000,4612425.550000,4372,4805,130.645462,167.124786,169.942978,162.414047,152.108261,140.033875,139.281815,139.571075,139.620651,142.992554,144.901657,155.695038,174.240494,189.769424,203.075211,214.157852,215.901657,205.728088,181.529755,159.149582,148.215698,143.091736,140.372726,110.876869,93.050423,108.678528,113.513237,82.331421,42.381008,16.323986,12.761176,9.323154,9.295885,11.094233,9.961998,4.663646,1.184301,0.178513,0.000000,0.026447,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.355000,4612425.550000,4391,4805,118.017365,171.661987,173.265289,164.339661,150.339661,143.628937,141.265305,139.554565,140.653732,144.314896,146.860336,156.959503,174.802475,189.942978,204.116531,216.447098,217.298340,207.637192,181.934708,159.215698,148.306610,144.571091,140.463654,111.488441,93.984314,107.546295,114.265305,84.265305,40.686798,18.228119,12.769441,5.399184,11.803324,10.709108,12.579353,3.488436,1.146283,0.120661,0.029752,0.149587,0.000000,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.555000,4612425.550000,4417,4805,112.181824,166.851257,170.570267,161.776871,150.603317,140.834732,140.173569,139.528946,139.801666,142.239685,144.281006,156.223160,172.661179,188.545471,203.462830,213.809937,216.851257,205.363647,179.669434,157.669434,147.545471,142.892578,139.090927,111.033073,92.752075,106.826462,114.049606,83.198372,41.462830,16.128944,12.644648,7.451252,11.172745,10.281836,9.124808,5.000835,1.203308,0.116529,0.067769,0.483472,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.755000,4612425.550000,4443,4805,110.247124,162.428940,170.891739,163.280182,149.057022,140.511597,138.800842,138.709930,139.709930,141.519852,143.833908,155.652069,172.354553,188.982651,200.900009,214.247116,215.338013,203.817352,178.164459,156.280167,146.288452,142.032257,137.354568,108.247124,91.015717,103.784317,112.271919,82.395882,38.974400,15.744647,12.486796,7.012408,7.925636,10.099190,10.100841,4.399185,1.111573,0.166943,0.000000,0.009091,0.009918,0.000000,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.955000,4612425.550000,4479,4805,114.457031,171.878525,173.762817,164.490082,150.572739,142.523148,140.324799,140.655380,141.068604,144.176041,145.746292,156.192566,174.176041,190.209091,204.010757,215.432236,217.952896,206.300003,180.696701,157.754547,148.514877,144.837204,138.936371,110.060333,92.771080,106.085129,113.952896,83.936371,42.250435,18.453739,12.630598,8.105799,9.943820,11.922332,11.740512,5.303315,0.469422,0.069422,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.755000,4612425.550000,4508,4805,141.118210,175.004150,176.690094,164.789276,151.781006,139.417374,138.888443,138.318192,138.789276,143.822327,145.764481,156.623978,172.938034,187.822327,203.673569,214.442169,214.971085,205.822327,180.913239,156.334732,146.301666,142.673569,137.954559,108.491753,89.797539,103.466957,112.004150,81.483498,39.367790,15.085142,12.541342,7.014887,7.188445,11.223158,10.701668,4.461991,0.866117,0.218182,0.395042,0.133059,0.000000,0.000000,0.111571,0.000827,0.000000,1.156198,0.000000,0.000000,0.000000,0.000000 -601646.755000,4612425.550000,4523,4805,128.633072,176.806625,172.087616,163.839676,150.723984,140.955383,138.864471,138.757034,140.071091,143.021500,144.583481,156.178528,172.517365,189.170258,204.236374,215.409927,216.542160,205.360336,181.186783,157.162003,148.517365,142.434723,139.145462,110.228119,90.806625,103.881012,111.360352,83.079353,40.418198,15.576051,12.649606,6.108275,7.741338,9.580181,9.424807,6.033066,0.838018,0.246281,0.137190,0.416529,0.010744,0.000000,0.038017,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.355000,4612425.550000,4546,4805,122.994232,173.670242,170.124786,164.099991,151.728119,141.075226,140.471909,140.133072,138.827286,143.951248,143.959518,155.852081,171.719833,188.604141,202.108276,214.471909,216.868607,206.331421,180.141342,157.860336,147.794235,143.273560,137.918198,111.314880,91.571091,105.918190,114.719841,83.819031,40.546303,16.875225,12.538036,6.719847,9.585967,8.325635,10.490925,4.185132,0.216530,1.042150,0.000000,0.004132,0.003306,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.755000,4612425.550000,4563,4805,139.016541,175.966965,174.884323,167.413239,153.545471,142.057861,139.859528,139.933899,140.181839,144.148773,145.214890,156.727295,173.090927,189.173584,202.710770,216.363663,216.363663,205.314087,179.884323,157.768616,147.057861,142.272751,137.363647,109.867775,92.190094,104.685959,113.066124,82.991753,39.859524,17.434731,12.487623,6.745467,8.893406,10.765306,11.588448,5.161166,0.586779,0.328100,0.387604,0.000000,0.004132,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612425.550000,4584,4805,136.528946,177.694229,172.024811,164.710754,152.537201,142.223160,141.578522,140.842987,139.826462,143.677704,145.495880,156.652908,172.826462,190.000015,204.347122,215.297531,215.454559,207.148773,180.198364,158.561996,146.983490,143.446304,138.000015,109.066132,90.760345,104.454559,112.264481,84.553734,40.322334,16.436380,12.545474,6.226459,9.489272,9.522331,8.844641,5.470257,1.192564,0.205786,0.247935,0.000000,0.037191,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.555000,4612425.550000,4602,4805,117.852913,176.753738,174.654556,166.885956,154.638031,143.803314,143.662827,141.555374,142.282654,145.927277,147.439682,158.662827,174.175217,191.646286,204.431427,216.737198,218.497528,207.530594,181.836380,159.266129,148.365295,143.778519,139.109100,109.547127,90.464478,105.142166,112.555389,84.117363,39.588451,15.799192,12.646299,6.354556,9.382662,10.402496,8.721501,5.266124,0.493390,0.076034,0.000827,0.045455,0.052067,0.000000,0.080165,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.355000,4612425.550000,4626,4805,131.560349,178.899185,178.130585,169.262817,155.428101,144.386780,142.056198,141.948761,141.452896,144.262817,144.957031,156.180176,172.684311,190.105789,204.105789,215.064468,217.717361,206.576859,179.444641,159.188431,147.527283,142.477692,138.527283,107.973572,91.882660,104.502495,112.469437,82.866127,42.138866,17.519852,12.593408,7.149597,8.991753,9.549603,9.134725,4.292570,0.233885,0.048761,0.420663,0.535539,0.090910,0.000000,0.059505,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.955000,4612425.550000,4649,4805,118.051247,175.333069,174.779343,166.481827,153.407440,142.481827,140.746292,138.556198,139.060333,143.771088,143.258682,155.159515,171.589264,188.019012,200.845459,212.068604,213.415710,203.035538,177.812408,155.556198,144.721497,140.440506,134.845459,106.547951,89.531418,101.977699,109.903320,81.448776,39.052090,15.157043,12.258697,7.114060,9.790926,9.500843,10.444643,4.606619,1.038019,0.071075,0.209918,0.216530,0.000000,0.000000,0.268596,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.755000,4612425.550000,4663,4805,133.662003,182.100006,179.546295,170.166122,156.422333,143.331421,142.223984,143.447113,140.719849,145.223984,146.397537,156.232239,173.728119,190.290100,203.885117,214.513229,215.909927,204.876877,178.802490,156.819016,144.116547,141.306625,136.463654,108.513245,89.620682,103.182663,112.116539,81.637215,40.157875,17.915722,12.405805,7.086787,10.271918,9.567785,9.288445,3.738850,1.183473,0.309092,0.479339,0.315703,0.040496,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.755000,4612425.550000,4678,4805,129.442169,177.553726,168.537186,162.380173,151.388428,142.049591,142.074387,141.223145,139.396698,143.214874,142.140503,151.842972,170.520660,187.933884,201.842972,212.900833,214.355377,202.867767,179.338837,157.735535,146.793396,141.752060,137.272720,107.314064,90.330605,103.338867,112.355385,82.528938,40.429771,16.852083,12.479359,7.157038,10.147952,8.081832,10.356215,4.674388,0.426447,0.160332,0.478514,0.028099,0.037190,0.000000,0.000000,0.275207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.355000,4612425.550000,4696,4805,132.374405,180.238037,173.766968,167.271103,154.361984,141.039688,140.171921,141.081009,138.866135,144.469437,143.122330,154.130585,169.948761,186.923996,200.568619,213.353745,212.213242,201.800018,175.552094,154.171906,142.651260,137.965317,133.527283,106.353745,86.725639,100.775230,110.353745,81.717369,37.667786,14.509936,12.138862,4.165298,7.936379,9.178527,9.302494,4.228932,0.560332,0.677687,0.111571,0.015703,0.087604,0.000000,0.002480,0.000000,0.000000,0.000000,1.166942,0.000000,0.000000,0.000000 -601685.555000,4612425.550000,4717,4805,127.452087,174.493393,175.245468,160.303314,145.286789,134.989273,134.286789,132.385971,131.452087,134.576050,135.071915,146.782654,163.633896,179.567780,192.270264,200.394226,201.956207,190.005798,166.328110,145.650421,134.088440,131.923157,125.700020,98.476875,83.171089,94.551254,104.311584,74.047127,35.022335,14.366134,11.427293,8.126459,7.965303,7.883483,8.133072,4.695877,0.449588,0.080166,0.019008,0.000000,0.296695,0.010744,0.048760,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.355000,4612425.550000,4736,4805,124.955383,177.153748,173.252899,162.153732,146.327286,136.442993,136.666122,134.798370,133.633072,135.633072,136.087616,147.938858,165.021500,180.757034,192.442978,202.128922,203.922333,190.880981,167.451248,146.484314,134.649612,132.137207,126.418205,99.244652,82.600021,94.690933,104.748779,75.872749,36.401669,15.818199,11.492581,10.109104,8.031418,9.547122,9.315717,3.737197,0.961159,0.634713,0.142149,0.000000,0.117356,0.012397,0.072727,0.222315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.355000,4612425.550000,4761,4805,133.930588,173.897522,172.880981,163.360321,147.806625,137.608276,137.385132,136.038025,134.889267,136.476044,137.137207,149.112411,165.922318,181.327271,193.046280,202.897522,203.657852,191.335541,168.294205,145.823151,136.360336,133.467789,127.963646,100.500839,83.600014,95.583481,104.302490,75.831421,36.566963,16.230597,11.633077,10.000014,11.333899,10.076048,9.479352,4.187613,1.519837,0.280993,0.316529,0.195042,0.001653,0.002479,0.000000,0.281819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601698.755000,4612425.550000,4783,4805,132.116547,177.331421,177.240494,164.546295,149.116547,137.777695,136.860336,135.703323,134.207458,136.190918,136.901672,148.149597,164.637207,180.918182,192.785950,203.009109,202.909912,191.058670,167.050430,147.273560,136.653732,133.232239,128.009109,99.571091,83.488441,94.678528,105.000839,77.248772,36.050434,15.664481,11.637209,10.590097,9.530592,11.327289,8.872741,4.782653,1.016531,0.385951,0.147934,0.199174,0.000000,0.000000,0.123967,0.400827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.555000,4612425.550000,4807,4805,117.068611,177.225632,177.101654,164.019012,149.060333,138.481842,136.952896,135.473572,134.671921,137.341339,136.771088,147.903305,164.399185,179.647110,192.399185,203.407440,202.812408,190.531418,165.837204,145.754562,135.291748,132.101669,127.390923,99.043816,81.680183,95.151253,103.581009,75.498360,36.333076,15.076051,11.581010,8.743814,8.560344,9.434726,10.057040,4.693396,0.179339,0.254546,0.219835,0.000000,0.051240,0.000000,0.000000,0.167769,1.353719,0.000000,0.000000,0.896694,0.000000,0.000000 -601706.755000,4612425.550000,4823,4805,120.257866,180.613220,176.067764,164.819839,149.439682,137.993393,138.357040,135.943817,134.795044,138.009933,136.638031,148.307449,165.109100,181.175201,193.315720,203.761993,203.200012,190.431412,166.059509,146.191742,134.761993,131.365295,126.472740,98.968613,82.109108,94.547127,103.497536,74.299194,35.133907,15.514894,11.497540,9.796708,8.748775,9.828940,11.445470,3.676868,0.538844,0.525621,0.052893,0.063637,0.047934,0.000000,0.070248,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.555000,4612425.550000,4847,4805,127.623161,183.424835,175.085968,163.441345,148.937225,137.201691,136.904144,134.689270,134.061172,136.771927,136.466141,147.995071,164.185150,181.003326,192.681000,201.904129,202.110748,189.697525,165.242996,144.986816,133.788452,131.871094,125.218201,97.011589,81.135559,93.573570,103.656219,74.714066,34.829773,15.071094,11.383491,8.530592,8.314062,10.885966,10.109106,4.223977,0.933061,0.720663,0.300001,0.000000,0.132232,0.000000,0.080992,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.755000,4612425.550000,4873,4805,128.623978,186.566147,173.739685,164.103333,148.524826,135.731415,136.871933,134.012405,133.723145,136.458694,134.731415,144.789291,162.995895,179.144638,191.177704,201.095062,201.086777,186.136383,163.904984,143.657059,133.177689,130.342987,123.954552,95.442154,78.351265,92.731415,102.367775,72.524818,33.946297,13.041341,11.268614,9.878527,6.260343,7.883487,7.589271,3.045462,0.589258,0.304960,0.079339,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.355000,4612425.550000,4891,4805,116.400017,187.606598,176.565292,167.871094,149.036377,136.978531,137.127289,135.242996,135.193405,138.540512,135.846298,147.548767,163.548782,180.474380,193.424774,203.391724,202.135529,188.796677,164.358704,144.614883,133.342163,131.962006,126.036385,96.565308,80.383492,93.441345,103.771919,74.771919,34.681011,15.514894,11.457870,10.331421,7.819848,9.381004,8.815716,3.741331,0.797523,0.110744,0.205786,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612425.550000,4917,4805,147.637207,187.042160,176.157867,167.463654,149.645462,136.852081,136.058685,133.769440,133.579346,137.414062,134.942993,145.868607,162.645462,179.761169,192.769440,202.695053,201.843811,186.538025,163.827286,143.050430,132.240509,129.876877,124.281830,95.381004,78.992577,91.661995,102.364479,73.166130,34.546303,13.166960,11.298367,8.938029,7.795880,7.457037,9.042990,3.419016,0.639671,0.187604,0.014050,0.000000,0.128926,0.000000,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.955000,4612425.550000,4949,4805,135.940506,198.742157,180.014877,171.849594,155.006622,139.370255,139.080994,137.163635,136.973557,143.180176,137.370255,149.039673,163.857864,181.816528,195.271088,206.130585,203.279343,187.279343,166.866119,145.824799,134.717377,131.783493,126.527290,97.791748,80.775223,95.543816,104.213234,73.915718,37.295891,16.199192,11.502499,11.578528,8.272742,8.504146,9.470264,4.538025,1.123145,0.271075,0.019835,0.000000,0.057851,0.000000,0.180166,0.519009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.955000,4612425.550000,4999,4805,159.670258,199.835556,180.339661,173.190918,153.025635,140.777695,139.257034,138.967789,137.868607,144.281830,138.777695,150.240509,165.447113,182.736359,196.637207,207.761169,205.554565,189.976044,168.248779,146.331421,135.595886,132.100006,129.009109,96.579353,80.918198,97.306625,104.942986,72.819023,36.323162,15.891752,11.728118,12.389272,7.062822,8.878526,9.692576,3.995050,1.116531,0.461985,0.000000,0.006612,0.137190,0.000000,0.130579,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.955000,4612425.550000,5074,4805,112.491745,164.037201,170.293411,160.458694,145.971085,136.045471,134.607452,131.136368,131.475220,134.235550,135.309921,146.698364,164.037201,180.780991,193.838837,203.392563,203.475220,192.342972,166.533081,144.466965,134.227280,131.268600,125.954552,97.028931,79.995880,94.318192,103.896706,75.409103,37.012417,15.647126,11.450433,8.261997,7.847122,8.400841,8.390924,4.272736,1.057853,0.261984,0.000000,0.004132,0.061984,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.555000,4612425.550000,5192,4805,115.898354,161.325623,169.995041,158.309097,146.259506,136.838013,133.928940,132.573578,132.639694,132.912415,135.044647,145.978516,163.242981,179.697525,193.457855,203.185120,204.209915,193.160339,168.424789,146.540497,135.540512,131.838043,126.490929,97.424812,79.094231,94.912415,106.044647,78.490929,36.788452,12.814066,11.499192,7.343813,6.767783,8.341337,8.600842,2.252899,0.275208,0.233059,0.056199,0.000000,0.000000,0.000000,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,2.127273 -601817.755000,4612425.550000,5378,4805,125.454552,173.421524,171.231430,163.661194,150.859543,140.652924,137.396729,135.090912,135.438034,138.528961,138.644653,150.033096,167.231430,184.578552,196.619873,207.024826,208.471085,198.363663,173.644653,150.793427,139.520691,136.611603,130.272736,100.785141,83.305794,97.826462,111.041336,83.256203,39.281010,16.231422,11.842995,6.118192,10.109935,9.677702,8.837204,4.871083,0.942977,0.238843,0.304133,0.000000,0.033885,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.755000,4612425.550000,5478,4805,127.367775,173.086777,172.714874,167.450409,151.590912,140.243805,137.962814,136.995865,136.260330,139.326447,139.194214,151.590912,168.557846,185.665283,199.342972,210.004135,210.838837,200.227280,175.913223,154.549591,142.219009,137.690079,132.045471,102.384315,84.838860,98.161171,112.557869,84.194229,40.491760,17.330597,12.004151,6.711581,7.859520,8.514067,10.962825,3.641330,0.865291,0.202480,0.347935,0.000000,0.000000,0.000000,0.166943,0.219836,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.555000,4612425.550000,5522,4805,112.547127,187.728958,172.902512,163.811600,151.340515,137.728958,137.894241,134.786789,134.076050,138.166962,138.125641,148.646301,165.877716,184.299194,197.993408,208.191742,209.042984,199.076065,175.059525,153.158707,140.299194,135.274384,130.654556,101.208282,81.795059,96.580185,109.456215,81.819855,36.737209,15.057869,11.877706,4.314884,7.409933,7.168610,7.632244,2.936370,1.310746,0.373555,0.000000,0.000000,0.000000,0.000000,0.000000,0.098348,0.000000,0.000000,0.000000,1.100000,0.000000,0.000000 -601851.755000,4612425.550000,5548,4805,117.013237,177.774399,176.129776,162.749619,149.394241,136.253723,136.700027,134.410751,133.402496,136.195877,137.245483,149.658707,167.964493,186.162842,200.104980,210.518204,213.691757,201.245483,177.071930,155.030609,143.576065,140.055405,135.881821,104.080177,86.485130,102.443810,113.675217,81.311584,39.476879,15.427291,12.352912,8.969435,7.909933,10.084313,11.785965,5.314886,1.555374,0.875208,0.627274,0.390083,0.336364,0.480166,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.776860,0.000000 -601860.755000,4612425.550000,5593,4805,127.629768,178.193390,181.019821,165.036362,150.061172,139.391739,140.003311,137.176865,137.920670,138.846283,139.771912,152.995056,171.242981,188.490906,202.681000,213.722321,215.937195,202.771912,179.061142,155.928940,145.714050,142.152069,137.581818,106.176872,89.449608,103.606621,116.507446,85.788445,42.391758,17.723158,12.507459,11.135553,9.509108,11.142165,11.151258,5.372735,1.315705,0.268596,0.415704,0.485951,0.167769,0.000000,0.128100,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.755000,4612425.550000,5608,4805,115.232254,181.306625,179.207458,164.703323,149.794235,138.215714,138.893402,135.967789,135.736374,138.711578,139.455383,151.273560,170.157867,187.265305,200.455383,213.017349,214.661987,202.356216,177.852081,155.463654,144.422333,141.290100,135.645462,107.323158,88.662003,102.339691,115.827293,83.538040,42.794235,16.720678,12.331424,12.750429,9.503323,10.847122,13.643819,6.683480,1.238019,0.347109,0.653721,0.013223,0.004133,0.000000,0.086777,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601866.555000,4612425.550000,5622,4805,108.601662,184.407440,180.219025,164.275208,148.318176,135.913239,138.185944,136.061996,134.822327,137.657028,138.161163,150.243805,169.541336,186.681839,200.235550,212.871918,212.921509,200.814072,176.227280,154.384293,144.508270,141.780991,136.500000,106.590927,88.706627,103.111588,115.392578,83.243820,42.268612,15.159523,12.409109,12.832247,9.975224,11.090925,11.750430,6.146291,1.519838,0.314877,0.591736,0.266942,0.622314,0.102480,0.252066,0.000000,0.000000,1.479339,0.000000,0.000000,0.000000,0.000000 -601869.555000,4612425.550000,5637,4805,118.509102,189.618210,184.041336,171.715698,153.781815,140.707458,141.459518,139.004974,138.699188,141.657867,143.203323,155.029755,174.112411,191.137222,205.038025,216.715698,217.277679,204.310745,180.219849,157.566940,146.732254,143.715729,137.963669,106.963638,89.095879,102.847939,114.798355,85.657867,42.376877,16.790928,12.542168,12.308281,11.053734,12.042165,13.653735,6.907448,1.885953,1.309920,0.872729,0.117356,0.243802,0.000000,0.490083,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601872.755000,4612425.550000,5653,4805,118.298363,183.752884,180.777679,168.240494,150.488449,138.455383,138.579346,136.066956,136.240509,139.066956,139.496704,152.620667,170.496689,187.959503,202.000839,213.504974,215.893402,201.248764,177.620651,154.876877,144.157867,141.744644,137.281830,105.422325,89.604149,104.314888,115.033897,83.480179,42.397541,18.108286,12.480184,13.013241,11.021505,12.195058,11.093404,5.841333,1.355375,0.639671,0.356199,0.000000,0.069422,0.000000,0.009091,0.000000,0.000000,1.560331,0.000000,0.000000,0.000000,0.000000 -601875.555000,4612425.550000,5667,4805,111.164482,190.106613,182.924789,166.536362,148.949585,137.040512,139.784317,136.181015,136.420685,139.065308,139.156219,151.957855,169.660339,186.635544,199.660339,212.048767,214.189255,198.552902,176.189255,153.751236,142.478531,140.561172,134.809113,104.685143,88.172745,100.569450,112.701675,82.751259,39.420681,15.236382,12.255392,13.747124,10.609935,12.730595,12.693405,6.230587,1.117357,0.547108,0.509918,0.264463,0.057025,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.555000,4612425.550000,5717,4805,126.057037,182.131424,181.255386,170.147949,154.139694,140.156219,138.371094,136.990921,135.528107,141.197540,140.197540,151.404144,167.379364,184.602493,197.189270,210.362823,210.164490,198.247131,175.833908,154.032257,142.974396,139.197540,134.900009,106.941330,91.395882,103.230591,112.280174,80.701668,40.776047,17.253736,12.263655,9.234724,9.804150,9.951256,11.727289,5.405795,1.652069,0.899175,0.738844,0.661158,0.540496,0.258678,0.047108,0.265290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.955000,4612425.550000,5744,4805,108.276047,170.747131,171.424820,163.259521,151.061172,138.829773,136.317368,136.168610,134.466141,138.077698,138.424820,147.928940,163.912415,180.193405,192.441345,204.325638,206.400024,196.416550,172.433075,152.052917,142.333908,138.201675,133.672745,107.466125,90.135559,102.862823,111.532242,82.598366,40.548779,17.367788,12.152085,6.457036,11.428116,10.523156,12.082660,4.319841,0.624796,0.519010,0.319836,0.165290,0.027273,0.167769,0.447934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.955000,4612425.550000,5759,4805,109.807457,176.857056,173.832260,166.352921,150.096725,138.187622,135.650436,134.055389,133.840515,136.848785,136.443832,147.501678,162.947952,180.104980,192.766144,204.303329,206.237213,194.989288,171.063660,149.394241,140.022339,136.857056,132.336380,104.204147,87.782661,101.336380,108.972748,79.419029,36.799191,14.371092,12.030599,6.264475,8.861999,9.837205,6.955384,4.241330,1.169424,0.434712,0.146281,0.305786,0.143802,0.007438,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.955000,4612425.550000,5784,4805,94.253746,171.443817,171.890091,162.261993,147.576065,136.228958,134.766144,133.071930,132.410767,136.278534,136.898376,146.138046,161.964478,178.162827,190.038849,202.642151,204.104965,192.997528,169.096710,149.551270,138.840515,135.493408,131.609116,104.171097,86.989281,102.567795,109.071930,80.592590,37.898365,16.619026,11.964481,7.021498,9.675221,9.494228,10.952906,5.937198,1.182648,0.748762,0.245455,0.422315,0.287604,0.498348,0.852893,0.541323,0.552893,0.000000,0.000000,0.180992,0.000000,0.000000 -601907.555000,4612425.550000,5827,4805,112.138863,157.246307,165.791763,158.155396,145.684326,135.452911,133.411591,130.370270,129.709106,133.833084,133.973572,144.461182,159.089279,175.097549,188.480194,200.918213,201.628952,192.017380,169.802505,147.248795,139.620697,135.397537,131.009109,103.934731,87.447128,99.901672,109.033905,80.157875,38.281837,15.741339,11.909935,7.679349,9.413237,8.579353,7.754557,3.904140,0.758680,0.616531,0.085951,0.307438,0.000000,0.372728,0.258678,0.710744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.155000,4612425.550000,5870,4805,103.470268,162.470245,169.982666,158.453735,145.263657,136.420685,133.313248,131.371094,130.544647,133.585968,134.420685,144.610764,159.462006,174.809097,189.420670,200.742981,202.073563,191.189255,168.602478,147.519852,137.577698,134.842163,129.900024,103.536377,86.809113,100.387611,108.288445,78.850433,37.742996,13.953736,11.809110,6.242160,8.263650,7.313238,7.924805,3.549594,1.871904,0.477687,0.123967,0.092562,0.000000,0.009918,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601926.955000,4612425.550000,5924,4805,98.023155,155.312408,169.535538,160.932236,146.304138,137.800003,134.775223,133.841339,132.626465,134.568604,136.147110,147.014877,161.337204,177.560333,190.047943,201.023148,203.064468,193.047943,170.320663,149.056198,138.585129,136.213226,130.618195,104.783485,87.758690,101.915718,109.733902,80.857864,38.130596,15.600845,11.874400,6.016540,9.528941,7.971916,9.077700,2.738849,1.172730,1.000829,0.190909,0.866117,0.000000,0.173554,0.556199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601934.755000,4612425.550000,5963,4805,104.343002,150.607437,169.946274,157.334717,143.500000,134.491745,134.252075,129.847122,130.111588,132.260345,134.004150,145.152893,160.466949,175.971069,188.301651,200.871902,202.194214,191.615707,167.227280,148.797516,137.756195,133.904968,129.954559,102.739677,86.136375,99.070259,107.681824,78.714897,38.276878,13.866134,11.814069,6.223978,8.635551,9.330596,8.936375,3.476039,0.617358,0.101654,0.731406,0.136364,0.051240,0.074380,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601937.955000,4612425.550000,5979,4805,96.522324,156.084320,167.869446,159.340500,143.084290,136.563644,133.489273,131.456207,132.034714,132.745468,134.935547,145.001648,161.059525,175.117386,189.067795,200.993408,200.216553,192.745483,168.018204,147.208267,138.266129,133.910751,129.927277,103.629761,85.538849,99.175217,107.266129,79.398354,37.654564,13.665307,11.811589,5.898358,8.870263,9.383488,8.071915,3.261164,0.879341,0.221489,0.077686,0.178513,0.000000,0.003307,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.355000,4612425.550000,6006,4805,91.139687,156.503326,168.131424,158.561172,146.767792,135.924820,134.891754,131.784317,131.123154,135.205811,134.842163,146.205811,161.610764,177.073578,190.114899,201.280182,203.800842,192.627289,169.321503,148.057037,139.511597,134.552917,129.081833,103.833900,86.594231,101.809113,108.726463,78.784317,39.511589,16.455389,11.734730,6.952907,9.310760,8.908279,8.297533,5.180175,1.383475,0.472729,0.066116,0.341323,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601952.555000,4612425.550000,6052,4805,103.288452,155.147949,166.023987,158.387619,144.338043,135.172745,134.073578,130.594238,131.131409,132.982666,135.230591,144.404144,160.023987,175.395889,188.362823,199.131424,200.528122,190.982666,166.602493,146.255386,136.635559,133.462006,128.900009,103.585968,85.941330,98.776047,106.949608,77.090096,35.528118,13.434728,11.718202,6.679351,7.366956,8.052082,7.852905,3.385958,0.347108,0.346282,0.365290,0.202480,0.413224,0.004959,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.355000,4612425.550000,6111,4805,95.300003,157.688446,170.382660,161.490112,147.283463,137.861984,135.200836,132.308273,132.688431,134.671906,135.696701,146.952881,163.176056,178.192581,190.523163,201.481842,202.787628,192.671921,168.845474,147.911560,139.093399,134.738022,130.845459,103.985954,88.217361,101.556206,108.647118,79.184311,39.399193,17.561176,11.895060,7.558691,8.862825,10.938033,11.860345,5.594224,0.525621,0.477688,0.266116,0.162810,0.131405,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601969.955000,4612425.550000,6139,4805,85.728935,161.885971,166.348770,159.398361,145.307449,136.001663,134.249603,131.679352,131.390091,131.497528,135.109100,143.737198,160.803314,174.828110,187.613235,198.505798,201.654556,190.414886,166.761993,146.092575,136.976868,133.761993,128.018204,101.803322,86.158684,100.051254,105.654564,77.489265,36.737213,15.378529,11.638035,6.726460,10.288445,8.870264,9.514063,3.813231,0.821490,0.271903,0.060331,0.108265,0.016529,0.301654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.155000,4612425.550000,6170,4805,97.538033,160.124802,167.240509,160.042160,147.000839,135.182663,134.819016,131.281830,131.149597,131.761169,134.108276,144.471893,159.637207,175.942993,187.843811,199.488449,200.554565,189.207458,166.422333,146.430573,136.091751,133.579346,128.645462,101.488441,85.091751,99.488441,106.893402,77.967781,37.066963,15.198364,11.695061,7.183483,10.296708,10.233900,8.435551,3.671081,1.730582,0.372729,0.180166,0.041322,0.056199,0.076033,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.124794 -601984.155000,4612425.550000,6210,4805,94.138855,161.229752,167.709106,157.023148,143.279343,131.411575,131.923981,128.014877,127.940506,129.882645,130.998352,142.122314,158.601654,173.684326,186.725632,195.312424,199.279358,187.031418,164.915710,145.138855,134.535538,130.849594,125.981827,98.411583,82.345467,98.502495,107.196709,77.990097,37.915722,14.765306,11.452910,6.180179,9.381833,10.738032,8.414062,3.499181,1.178515,0.501654,0.169422,0.494216,0.009918,0.374381,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.155000,4612425.550000,6230,4805,102.885963,156.927277,170.150436,158.257858,145.340500,135.340500,132.224808,130.704147,129.158691,130.885956,132.745468,143.654556,158.695877,174.216553,186.976883,198.530609,198.770279,187.795074,163.861160,145.216537,134.968597,131.431412,126.290916,98.621498,83.241341,99.257858,106.323975,78.340515,37.431423,16.988449,11.481010,8.123155,9.291752,10.687619,9.011584,6.617365,1.069425,0.185952,0.053719,0.245455,0.004959,0.146282,0.000000,0.290083,1.626446,0.000000,0.000000,0.000000,0.000000,0.000000 -601993.155000,4612425.550000,6255,4805,97.574394,158.723145,165.185944,157.045456,142.971069,134.475220,130.640518,129.954559,127.690102,129.442154,130.549606,141.657028,157.500000,173.756195,185.152893,196.309921,197.838837,186.632233,163.243805,143.309921,133.260345,130.028946,125.409096,98.599182,81.541328,96.673561,105.301659,76.491753,36.433903,14.904976,11.400845,7.488444,8.558693,9.367784,7.952078,3.482654,0.466944,0.079340,0.302480,0.224794,0.000000,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602001.355000,4612425.550000,6296,4805,101.502502,162.147110,166.527298,158.601654,145.114059,134.378540,133.386795,130.213242,129.899185,130.791748,131.990112,142.676041,159.370255,174.552094,186.833069,198.659515,198.626450,187.866119,165.717361,144.395050,134.262833,131.593414,124.981842,99.188454,82.684319,97.419861,106.717377,79.097542,36.576881,14.575224,11.362002,7.822326,8.704147,9.334727,8.888442,4.440502,0.826448,0.190084,0.122314,0.178513,0.000000,0.071901,0.728926,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.555000,4612425.550000,6322,4805,101.490929,165.796692,173.441345,161.003326,147.242996,136.523987,134.375229,131.028122,130.631424,131.639694,133.598373,143.962006,161.466141,177.342163,189.218201,200.036377,200.771927,189.895889,165.747131,146.011597,135.912415,132.185150,127.036385,99.780182,82.945473,98.176880,108.664482,79.391754,39.383495,16.214067,11.548779,9.078525,9.739684,9.866130,10.555387,5.003315,0.615705,0.481820,0.495043,0.124794,0.051240,0.154546,0.269422,0.591736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.555000,4612425.550000,6347,4805,105.991753,164.446304,170.743820,159.685974,147.297531,134.826462,134.115723,131.314056,131.066116,131.256210,132.388443,144.198364,160.818192,175.396713,188.256210,198.190094,200.801666,188.066132,166.652908,144.041336,134.785141,131.132233,126.090927,98.595055,83.801666,97.123985,106.892578,77.297539,38.231426,15.198364,11.462829,8.938030,9.555388,9.082661,9.976047,5.704968,0.746284,0.341324,0.190910,0.417356,0.000000,0.174381,0.774381,0.000000,0.000000,0.000000,0.000000,0.000000,1.904959,0.000000 -602015.955000,4612425.550000,6369,4805,102.243828,163.442169,168.433899,159.904968,144.334732,134.185974,132.648788,129.615723,129.202499,130.400848,132.301682,142.814072,159.342987,174.896713,186.119858,199.301666,198.574402,188.070267,165.037201,144.524826,133.946304,132.847137,126.590935,98.665314,82.888451,97.863663,108.301674,78.979362,35.210758,16.794233,11.508284,9.502494,9.123983,8.862000,7.792576,3.393395,1.476037,0.190084,0.061157,0.000000,0.009918,0.580993,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602019.755000,4612425.550000,6388,4805,102.339684,165.620667,169.645462,159.976044,144.893402,134.967789,132.653748,130.628952,130.083496,131.298370,133.075226,144.438858,160.670258,175.347946,187.323151,199.695053,199.984314,187.785965,165.719849,144.116547,134.802505,132.571091,125.918205,99.000847,82.686798,97.397545,106.595886,76.926468,37.645470,15.345473,11.447126,8.286788,10.133074,9.914892,10.138858,2.983476,0.802483,0.474382,0.063637,0.392563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.652066,0.000000,0.000000 -602023.355000,4612425.550000,6406,4805,92.051254,171.117371,172.530594,163.042984,144.712402,135.224808,135.084320,132.720673,132.299194,133.720673,133.398361,145.200012,161.249603,177.423157,189.158691,199.960342,201.076050,189.142151,165.770264,144.687607,135.158691,132.869446,127.109108,100.084312,84.968620,97.885971,107.423157,77.671089,35.935558,17.456217,11.555390,11.237203,10.851255,10.533073,11.245469,5.373562,1.459508,0.095870,0.616530,0.097521,0.000000,0.214877,0.306612,0.000000,0.000000,7.061157,1.328099,0.914050,0.000000,0.000000 -602028.355000,4612425.550000,6431,4805,99.591759,171.682663,173.980179,159.649597,146.236374,135.162003,134.029770,131.120682,129.872742,131.186798,132.162003,142.773560,159.542160,175.021500,186.575226,197.963654,198.938858,186.616547,162.963654,143.765305,133.963654,129.823166,125.327293,97.674400,82.087624,95.814896,104.500847,75.409935,35.211590,14.195057,11.393408,8.200839,7.657040,9.037205,9.351252,4.028932,0.740498,0.146282,0.179339,0.197521,0.000000,0.150414,0.070248,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.555000,4612425.550000,6472,4805,105.726456,172.247116,171.941330,165.453720,149.280182,137.668610,137.445480,134.106628,133.280182,134.900024,134.759521,144.751236,161.957855,178.941330,189.833893,202.023972,202.428925,188.701660,165.569427,145.519836,136.536377,132.941345,128.172745,101.164474,85.147957,97.536385,104.181000,76.974411,36.635555,17.222332,11.652085,10.242164,11.562826,9.766132,9.255387,5.062817,1.395871,0.138845,0.442150,0.206612,0.166943,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.955000,4612425.550000,6519,4805,100.942993,174.265289,170.637192,158.661987,144.356232,132.918198,132.298370,129.075226,128.116547,131.248779,130.662003,142.496719,157.628922,175.628922,188.273544,200.488434,200.009094,186.463638,164.843796,144.852097,134.397537,131.364487,126.190933,96.662003,81.504982,95.438866,105.529770,75.438866,35.538033,14.595885,11.471920,7.390093,7.185138,8.080178,8.423979,4.861166,0.889258,0.065290,0.000000,0.075207,0.000000,0.074380,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.355000,4612425.550000,6546,4805,116.798363,175.252899,171.633072,162.996704,147.261169,136.690918,135.277695,132.740509,132.459518,134.996719,134.509109,146.707458,162.409927,181.203323,192.657867,206.211578,206.385132,191.963654,170.707458,149.343811,139.343811,135.004974,129.690918,101.153732,85.153732,100.542160,109.492577,79.178528,40.442997,16.329771,11.790102,11.162824,10.298363,11.124808,12.017369,5.912405,0.544632,0.123968,0.273554,0.236364,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602056.355000,4612425.550000,6571,4805,109.421501,177.380173,170.132233,161.884293,146.082657,132.801666,132.859528,131.314072,131.603317,134.876053,132.347122,145.024811,161.033051,179.115707,191.859482,204.867752,204.322296,191.512375,169.272720,148.363647,138.884308,134.909103,129.181839,101.289276,83.776886,98.768608,108.462837,77.975220,36.900848,13.094233,11.743821,9.832246,8.231419,9.210758,11.362823,4.178519,0.470249,0.222315,0.105785,0.104133,0.052893,0.077686,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602060.955000,4612425.550000,6594,4805,110.579353,178.108276,172.852081,164.901672,146.959518,134.976044,135.149597,132.819016,132.223984,137.695053,134.554565,145.976044,161.752899,180.587616,193.422348,207.728119,206.934723,191.182678,170.538025,150.422333,140.653732,136.744644,131.645462,103.166138,86.331421,100.232254,109.182655,78.471931,38.620682,14.434729,11.967788,10.658691,9.196709,10.670265,11.491750,4.933893,1.139672,0.455373,0.593389,0.694216,0.051240,0.093389,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.755000,4612425.550000,6608,4805,114.128113,174.938019,173.541321,165.549591,150.235550,136.566132,136.781006,133.508286,133.301666,138.979370,136.268616,147.500031,164.400833,182.351242,195.433884,209.144623,209.045456,194.252060,172.822311,153.252075,142.524826,140.318207,133.500015,105.334732,88.549614,103.128113,112.062004,81.500023,41.012421,15.980185,12.136383,13.385968,12.619851,11.925636,10.813238,5.166949,0.973556,0.190911,0.198348,0.321488,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602067.755000,4612425.550000,6628,4805,112.406639,178.695877,173.447937,163.365295,146.530594,135.051254,133.423157,131.770264,131.423157,136.348770,133.390106,144.522324,160.249603,178.902496,192.555374,206.133881,205.092560,191.117371,170.266129,150.175217,140.621490,137.257858,131.836380,100.447960,85.340515,101.728951,109.216545,77.009933,39.266136,15.519025,11.985143,12.461997,8.421503,9.976048,10.240511,5.203314,0.892564,0.104134,0.068595,0.000000,0.000000,0.000000,0.392562,0.461157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602073.955000,4612425.550000,6659,4805,129.744644,189.976044,170.785965,163.695053,145.100006,133.942993,132.281830,130.199188,130.488449,135.752899,132.356216,142.670258,160.455383,178.157867,191.942993,206.529755,204.066956,187.438858,169.587616,149.571091,139.414062,134.339676,130.918198,100.017365,84.157875,101.752907,108.728111,79.223991,36.926468,14.963654,11.901671,11.156214,9.106626,10.304146,9.490095,5.239678,0.435539,0.257853,0.110744,0.111571,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602084.155000,4612425.550000,6710,4805,128.320679,165.510773,157.072754,148.601669,134.436386,125.742172,120.560356,119.246292,118.634727,120.014893,119.990097,132.800018,149.337219,165.295883,178.452911,190.535553,191.849609,180.626465,159.791763,139.626465,127.717369,125.469444,117.800018,91.452904,76.279350,93.519020,107.246307,81.180183,38.766960,13.929769,10.709110,6.248771,8.448774,9.262822,8.630592,3.723976,2.138022,0.354547,0.118182,0.042149,0.153720,0.001653,0.520662,0.312397,0.000000,0.000000,0.000000,0.000000,1.807438,0.000000 -602100.555000,4612425.550000,6792,4805,163.840515,161.319855,156.757874,143.997543,127.981010,117.823982,114.493408,110.733078,110.427292,111.113243,112.328117,122.989265,138.642181,153.972748,165.443832,174.799194,175.774399,167.121521,148.931427,131.534729,122.336372,118.708282,115.063652,88.898361,70.865311,89.840515,112.262001,87.865311,42.815720,12.796712,10.460350,8.927284,8.251253,11.790095,11.252081,6.585135,0.900003,0.452894,0.522316,0.179339,0.146281,0.000000,0.327274,0.726448,0.000000,0.000000,1.803306,0.000000,1.674380,0.000000 -602179.755000,4612425.550000,7188,4805,93.976883,153.631409,159.160339,142.333908,129.143814,117.085968,116.391754,112.077705,111.044647,112.590103,113.135559,124.077705,144.441345,160.904129,174.829758,187.697525,189.242981,176.433060,155.325623,134.242996,121.821510,118.036385,110.581841,80.474396,64.771919,82.400017,101.532249,74.309113,33.391754,12.257869,10.052912,7.356211,6.870263,8.168610,8.885139,3.857031,0.809919,0.146281,0.024794,0.000000,0.042149,0.079339,0.000000,0.000000,1.483471,0.000000,0.000000,0.000000,1.135537,0.000000 -602183.955000,4612425.550000,7209,4805,98.469437,158.336380,159.617371,145.014053,128.005798,117.807449,116.832245,112.642159,112.402489,113.104965,113.592575,125.435547,144.617371,162.303314,175.716553,187.443832,188.914902,176.964493,154.592575,133.071915,122.344635,116.981003,110.336372,81.625641,63.666962,82.981003,101.278534,74.443817,33.997540,12.189274,10.030599,5.751253,7.631420,7.605799,8.392577,3.825626,0.582646,0.187604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.275207,0.000000,1.182645,0.000000 -602188.955000,4612425.550000,7234,4805,104.006622,160.899185,161.395050,146.221497,131.436371,119.353737,118.436378,115.229767,114.494232,115.370262,115.940514,127.386795,146.957031,163.444641,177.056198,189.634720,189.899185,178.138855,156.676041,134.444641,123.403320,118.965302,112.890923,84.155388,66.295891,84.023155,101.882660,74.981842,35.527294,13.688447,10.262830,7.496707,9.276051,9.244643,10.237206,4.739677,1.390085,0.191736,0.057851,0.327273,0.058678,0.000000,0.333884,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.955000,4612425.550000,7264,4805,100.232254,156.321487,161.428925,145.131409,129.792572,119.726456,118.685135,115.288445,114.230591,114.519844,116.015717,127.354553,146.189255,163.982651,177.057022,188.420670,190.519836,178.519836,156.147934,135.437210,123.106621,120.288445,113.081833,84.709938,67.536377,83.445465,101.792572,72.387611,33.875225,13.389273,10.280184,7.728111,9.044644,9.696708,9.912411,4.391743,0.501654,0.325621,0.189257,0.414051,0.000000,0.085951,0.424794,0.000000,0.000000,0.000000,0.000000,0.832232,1.208265,0.000000 -602203.555000,4612425.550000,7307,4805,109.041336,152.004974,156.657867,143.071091,128.467789,117.649597,115.971916,113.079353,112.558693,113.864479,115.228111,126.228111,146.699188,163.765305,176.153732,188.889267,190.178528,179.327286,156.038025,134.162003,122.459518,118.649597,113.054558,83.079353,65.393402,83.376869,101.674393,72.170258,34.409939,12.516547,10.277705,6.825632,8.377702,8.095882,7.236378,3.233063,0.509092,0.215703,0.265290,0.075207,0.000000,0.039670,0.000000,0.029752,5.486777,1.296694,0.000000,0.000000,0.000000,0.000000 -602215.955000,4612425.550000,7369,4805,106.990921,160.827286,158.860336,146.124802,129.810745,119.612404,117.852074,116.248764,115.232239,116.199181,117.513229,130.257034,148.942993,164.819016,178.331421,189.381012,190.199188,179.025635,155.678528,133.587601,122.934715,118.653725,114.100006,84.554565,66.166130,83.248779,96.133064,68.232254,32.620682,12.547123,10.372747,5.838854,6.695056,7.611586,5.723981,2.835542,0.665290,0.385952,0.268596,0.171075,0.284298,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,2.438017,2.303306 -602233.755000,4612425.550000,7458,4805,101.404968,159.291748,157.275208,143.795868,128.514893,119.374397,116.068611,113.440514,112.556213,114.192574,115.275223,126.010757,145.242157,162.002487,176.184311,188.060333,189.465302,178.547943,155.738022,133.696716,122.961174,117.440514,112.118195,84.457039,65.581017,84.622330,97.952904,71.085136,34.242172,13.377705,10.192581,7.084311,8.385140,8.961172,9.104976,5.308272,1.434713,0.194215,0.486778,0.126447,0.000000,0.094215,0.022314,0.021488,0.000000,4.218182,0.000000,0.000000,1.276860,0.000000 -602242.355000,4612425.550000,7501,4805,109.751259,165.139679,161.156204,146.933060,131.197525,118.577698,120.883484,117.825630,118.238853,121.883484,122.866951,138.304962,160.561157,182.090088,198.147934,212.222321,215.131409,205.776031,182.709915,159.660339,147.346283,144.197525,140.172729,103.594223,82.577698,101.817368,122.767776,90.478531,40.230602,14.953735,12.742993,10.408278,9.426460,11.458693,11.689273,5.303317,0.658680,0.203307,0.097521,0.042976,0.051240,0.000000,0.248760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602248.955000,4612425.550000,7534,4805,115.220680,163.278534,160.146301,146.526474,132.452072,120.228935,121.749596,117.774391,118.609100,121.790916,123.650421,138.733063,161.286804,181.857040,196.823990,211.567780,215.014053,205.790939,182.162827,159.162842,147.113251,144.518204,140.154572,104.121506,82.460350,101.708282,123.989265,90.253738,41.741341,15.620679,12.741341,10.504147,9.481008,12.133900,12.964478,6.223151,0.655375,0.228102,0.206612,0.108265,0.100000,0.133058,0.000000,0.000000,1.376860,0.000000,1.157851,0.000000,0.000000,0.000000 -602253.555000,4612425.550000,7557,4805,118.575211,161.995056,161.581833,149.400024,131.821503,120.474388,121.697533,118.218193,118.647942,121.623154,122.590096,137.689270,160.474396,181.846298,196.871094,210.714066,214.366959,203.978531,179.606628,157.350433,145.358704,142.350433,137.854568,102.854553,80.995056,100.813232,121.127281,87.854553,40.085968,15.670267,12.532249,8.648772,12.112412,11.457041,12.713240,4.938853,0.683474,0.470250,0.713224,0.133885,0.097521,0.000000,0.245455,0.000000,0.000000,0.000000,1.072727,0.000000,1.123141,0.000000 -602257.755000,4612425.550000,7578,4805,115.982658,163.420670,159.511566,145.900024,129.767776,119.627281,118.602493,117.247116,117.742989,119.842163,122.685135,137.404144,160.379349,181.263657,197.751236,211.602493,214.065308,204.428940,179.304977,157.610748,145.742981,142.974396,137.900024,102.627281,79.916542,99.123154,120.511581,86.412407,38.817375,14.921506,12.536383,10.221501,9.944645,11.642163,12.244642,6.727283,0.597523,0.502481,0.609092,0.066943,0.169422,0.189257,0.000000,0.002479,1.373554,2.559504,0.000000,0.000000,0.000000,0.000000 -602264.155000,4612425.550000,7610,4805,104.614067,164.191742,160.472733,145.753723,131.092575,118.646301,118.778534,116.505806,117.166962,119.348778,120.365311,135.695877,159.274384,179.745468,195.398361,209.877701,213.555374,203.373566,178.604965,156.133896,144.084305,142.200012,136.745468,101.315720,79.704155,98.555389,120.051254,86.059525,39.464485,14.235555,12.431424,9.857039,10.011585,10.352906,13.000015,7.529764,0.678515,0.200002,0.118182,0.021488,0.045455,0.063637,0.000000,0.000000,1.308265,0.000000,0.000000,0.000000,0.000000,0.000000 -602267.155000,4612425.550000,7625,4805,108.682655,154.933075,157.189270,141.685150,126.660339,117.172737,116.230591,114.511581,114.147942,116.164474,118.379349,132.379349,155.652084,175.701675,191.131424,203.933075,207.214066,197.362823,174.222336,151.569443,140.106628,137.073578,132.445465,97.536377,76.767792,96.123154,116.197533,83.726456,38.825638,14.698365,12.040515,8.806625,8.728941,10.416543,10.617370,4.928934,1.580995,0.152068,0.438018,0.167769,0.137190,0.068595,0.000000,0.000000,1.376033,0.000000,0.000000,0.000000,0.000000,0.000000 -602269.955000,4612425.550000,7639,4805,103.352081,151.161179,156.202499,142.830597,128.359528,116.524811,116.061996,113.475220,113.987617,115.921501,117.756218,131.433899,154.681839,174.483490,190.020676,202.533081,205.665298,196.326462,173.136383,151.384308,138.425629,135.954559,132.500015,96.541336,74.747948,95.318199,116.169441,85.772743,36.665310,14.128117,12.045473,9.752907,10.163651,11.340510,11.023154,6.287614,1.870253,0.349589,0.257852,0.007438,0.214876,0.166116,0.000000,0.000000,0.000000,0.000000,1.044628,0.000000,1.085124,0.000000 -602274.755000,4612425.550000,7663,4805,106.731422,156.052094,158.291763,142.316559,128.498367,116.357872,114.837204,112.539680,112.779358,114.142998,115.523155,129.275223,151.985977,170.647125,184.465317,197.903336,200.349609,189.448776,167.374405,145.795883,133.977707,131.713242,125.390923,93.010757,71.531425,91.862000,111.688454,79.944649,37.696712,13.300844,11.399193,9.660344,9.470264,9.540509,10.881832,5.026456,1.085127,0.097521,0.412398,0.091736,0.028926,0.266116,0.000000,0.489256,2.663636,0.000000,0.000000,1.001653,0.000000,0.000000 -602281.555000,4612425.550000,7697,4805,99.335556,154.490082,159.473572,144.192581,128.109924,118.085136,115.448776,113.457039,113.250427,114.291748,115.514893,126.985962,146.688446,163.837219,177.622314,188.994217,190.316528,180.895050,159.671906,138.523163,128.126465,124.969437,121.118195,90.233902,69.357872,88.539680,106.415718,76.746292,35.457047,13.870267,11.010763,8.382656,10.295057,10.689272,8.978528,4.724800,1.100829,0.482646,0.284298,0.085951,0.000000,0.000000,0.000000,0.026447,0.000000,0.000000,0.000000,1.039670,0.000000,0.000000 -602285.355000,4612425.550000,7716,4805,110.330597,157.238037,157.593414,142.560349,126.585136,116.593407,114.816544,111.618195,111.684311,112.593407,113.973572,124.775223,145.948776,162.874405,175.915710,185.733887,187.510757,178.651245,156.304153,136.047958,125.138855,121.923981,119.345467,87.965302,68.659515,87.700844,105.147125,75.221504,33.254566,12.617373,10.849606,9.165302,7.860346,9.460345,9.693404,4.749595,0.831407,0.521489,0.198347,0.281820,0.094215,0.113223,0.000000,0.020661,2.736364,0.000000,1.180992,0.969422,0.000000,0.000000 -602291.755000,4612425.550000,7748,4805,103.743820,153.762009,156.737213,141.307465,126.761993,115.795052,112.373566,111.233070,110.059517,111.414886,112.613235,125.009926,145.621521,163.042999,175.704163,186.299179,188.414886,178.596725,157.042999,134.927277,124.795052,121.828110,116.200012,84.844643,67.009933,84.919029,101.563644,72.472748,33.497540,12.558696,10.563655,8.600841,9.157041,9.469438,10.563653,5.371083,1.385126,0.191736,0.680994,0.128926,0.291736,0.030579,0.000000,0.019835,1.428099,0.000000,0.000000,0.000000,0.000000,0.000000 -602294.755000,4612425.550000,7763,4805,109.137199,149.659515,154.659515,140.304138,125.006615,113.444633,112.262817,110.188438,109.576866,111.667778,112.254555,124.295876,146.221497,163.882645,177.097534,187.543808,189.246292,179.543808,156.882645,134.552078,123.469429,118.733894,115.800003,85.477699,64.750435,84.345474,99.097527,71.064484,31.882664,12.661175,10.527291,7.799186,8.271090,8.901666,10.234725,3.534717,0.770250,0.255373,0.148761,0.069422,0.027273,0.081818,0.000000,0.013223,1.423141,0.000000,1.142149,0.998347,1.062810,0.000000 -602297.755000,4612425.550000,7778,4805,100.903320,156.589279,155.655396,141.556213,126.060349,115.349602,114.911583,111.936378,111.357864,112.754562,114.531418,127.043816,148.341339,164.564484,178.556213,188.357880,190.614075,180.349609,157.291763,134.754562,125.052086,121.713234,116.209106,86.481842,67.374397,84.109940,99.837204,71.209114,34.498367,14.272746,10.564483,7.811583,9.249603,10.996709,9.490925,5.086784,1.146283,0.836366,0.258678,0.001653,0.367769,0.448761,0.000000,0.008265,0.000000,0.000000,0.000000,1.042975,0.000000,0.000000 -602302.555000,4612425.550000,7802,4805,103.687622,152.299194,152.786804,137.183502,123.307457,111.646301,109.985138,107.902496,107.762001,110.447952,111.224808,123.414894,143.927292,161.662842,175.514069,185.720688,186.348785,176.629776,154.249619,131.571915,121.125641,118.348778,114.200020,83.976875,63.828117,83.034729,98.877701,70.629768,30.381838,12.633902,10.381838,6.880177,7.533899,9.572742,8.152080,4.400008,0.523142,0.625621,0.229753,0.064463,0.062810,0.176034,0.000000,0.000000,1.235537,2.679339,2.176033,0.000000,1.076860,0.000000 -602307.955000,4612425.550000,7829,4805,110.547119,153.008286,149.413239,136.842987,121.016541,110.247948,108.231422,105.975220,106.446297,107.198364,109.033073,120.099182,140.264481,157.520676,169.950424,176.462830,173.900848,161.421509,141.537201,122.917366,114.165298,111.206627,111.545471,84.743813,65.231422,84.223152,113.396706,88.991753,39.570267,13.466132,10.140515,7.509930,8.170262,9.661999,11.567784,6.209101,1.533061,0.490084,0.059504,0.197522,0.149587,0.361158,0.298347,0.419835,1.361984,2.557852,2.058678,1.006612,1.141322,0.000000 -602315.355000,4612425.550000,7866,4805,121.702492,151.191757,147.365311,134.770264,117.150421,106.836372,104.662819,101.877693,101.786789,102.654556,104.158684,114.795052,134.307449,150.728958,161.894241,167.588455,162.447952,151.481018,132.191742,113.315712,104.001663,102.580177,103.563644,79.241341,59.357044,78.604973,109.786789,89.084312,40.431419,12.053738,9.414896,6.760342,8.415718,11.208281,13.545470,8.189266,1.887608,0.425621,0.266117,0.136364,0.214051,0.266943,0.672728,0.827273,2.713223,3.960331,3.304959,3.662811,4.604959,1.991736 -602321.155000,4612425.550000,7895,4805,122.387611,153.325638,144.672745,129.333893,113.937202,102.350433,101.102493,97.664482,97.424805,99.424812,100.400017,111.102493,130.904144,148.077698,159.705811,166.738861,163.226471,151.813248,132.309097,114.011581,105.069435,102.986786,104.400017,79.325638,59.416550,78.077705,110.185135,90.251259,41.565308,10.047951,9.490929,10.493403,10.010759,11.214891,13.397537,8.733071,1.612401,0.561160,0.871903,0.392563,0.296695,0.145455,0.100000,0.280992,8.777687,4.945455,5.421488,1.848761,6.347935,0.000000 -602324.155000,4612425.550000,7910,4805,130.880188,158.533890,147.566956,130.558685,115.864479,103.120674,100.492577,98.087616,98.319023,101.434723,102.542160,114.120674,134.476044,151.509109,163.872742,171.872742,169.856216,160.682663,141.244644,122.120674,113.161995,111.451256,111.054558,84.897545,63.872749,84.310768,112.839684,90.120682,41.120682,12.110761,10.095887,10.423981,9.205798,12.994231,15.928944,12.491753,1.635542,0.525622,0.715704,1.066117,0.597521,0.107438,1.391737,0.663637,12.305786,14.515705,4.200001,1.724794,8.439671,6.024794 -602327.355000,4612425.550000,7926,4805,145.306610,159.206604,146.479340,129.165298,113.454552,102.099182,99.438026,96.644638,97.586784,99.966949,101.677696,114.727280,134.917358,152.000000,164.545456,174.429749,175.380173,168.314056,149.991730,130.826462,122.801659,120.438026,118.727280,88.702484,70.512413,90.760338,111.438026,84.933899,37.900848,11.894234,10.793407,11.040511,10.957042,13.251256,16.240515,10.418196,3.908272,1.578517,1.897523,0.789258,0.728100,0.003306,2.194217,0.232232,16.270250,13.393390,9.952894,8.673555,12.525620,5.619009 -602332.755000,4612425.550000,7953,4805,110.952072,101.840508,83.830597,71.209106,58.762821,53.575218,51.558689,49.918194,50.492577,53.529766,54.600014,63.597530,78.010757,90.309105,100.826462,109.390091,111.960342,110.117371,100.266136,89.621498,83.538849,83.066132,82.836372,60.011581,45.870258,63.796711,92.038033,78.777710,38.633072,7.826457,7.530594,11.596708,18.083488,27.481836,42.620682,41.333073,18.115713,14.111578,16.733889,16.769426,14.709095,14.390088,15.936368,13.101655,21.666119,31.933064,19.557856,27.947113,21.771076,30.680168 -601053.155000,4612415.550000,1555,4855,101.139687,112.527290,99.882660,88.370262,72.246292,61.808289,58.229774,51.676052,49.543819,47.700848,47.485973,59.262833,76.923981,92.709106,106.229767,117.783485,121.130592,118.039680,110.857864,96.874397,85.948776,84.998360,76.527290,39.320683,18.209108,46.659523,103.188446,102.047951,52.965309,10.626461,6.957043,8.885964,12.343818,18.674397,29.157043,17.709108,0.994217,0.039670,0.167769,0.000000,0.000000,0.047934,0.320661,0.035537,8.022316,4.492563,5.353721,2.447935,3.166116,7.328927 -601059.755000,4612415.550000,1588,4855,49.649601,57.079353,44.466137,33.590099,19.248779,9.328112,5.773564,3.101660,1.843805,1.347938,0.805787,3.125626,11.623158,22.051260,31.912415,41.143822,41.970268,39.061176,35.242992,24.580185,14.285968,13.485140,10.381833,0.027273,0.000000,1.006615,55.028118,78.044640,47.052906,4.385134,0.943816,7.877696,10.838857,26.200846,47.044643,35.540512,1.133886,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.891737,3.110746,1.079340,0.041323,0.878513,4.167769 -601069.955000,4612415.550000,1639,4855,13.312401,15.901665,11.490094,3.289262,0.518183,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.066943,0.513225,0.615705,0.285952,0.298348,0.019835,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,14.167783,49.085968,31.656218,2.247939,0.000000,5.519018,13.439684,30.673574,49.854565,37.129772,2.022319,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.260331,0.275207,0.000000,0.000000,0.072728,3.560331 -601076.755000,4612415.550000,1673,4855,9.685127,3.107441,1.232234,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.443807,31.038033,21.824810,1.518186,0.000000,5.285133,14.400842,31.462826,55.252907,44.781837,4.438023,0.277687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.277686 -601081.755000,4612415.550000,1698,4855,2.117357,4.126451,0.928927,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.672732,29.374399,18.453737,1.095872,0.000000,5.732239,15.258694,32.377705,55.216545,44.770267,5.887610,0.002480,0.115703,0.060331,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,1.247108 -601086.355000,4612415.550000,1721,4855,2.315704,1.431406,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.579341,23.057869,17.083488,0.644630,0.000000,5.955381,13.801670,33.477707,52.810757,44.087620,5.809926,0.802480,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.119835 -601091.555000,4612415.550000,1747,4855,7.559507,10.198358,9.619845,2.174385,0.615704,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.023141,0.571903,1.042151,0.776861,0.395869,0.126447,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,12.202494,47.549603,31.483492,2.196699,0.000000,4.215709,14.504148,31.737209,49.814072,42.399193,3.723973,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.028926,0.220661,0.000000,0.000000,0.264463,0.000000 -601097.955000,4612415.550000,1779,4855,34.579357,58.880184,60.814072,50.392582,35.392582,25.160351,20.599192,16.057041,13.199190,11.833074,9.992576,16.443819,27.658695,36.384319,45.524815,52.921509,55.202499,53.392582,48.219028,37.566132,29.390928,27.523987,26.709110,4.468604,0.276861,9.914888,63.929771,81.772736,49.020679,5.846291,2.428118,6.223151,11.740511,26.357870,44.152912,33.502499,1.131408,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.374380,1.095042,0.000000,0.000000,0.444628,1.307438 -601106.555000,4612415.550000,1822,4855,78.091751,112.385139,109.178528,98.368607,87.079353,75.757034,73.327286,70.409927,69.666130,70.467781,71.872742,85.153732,105.814888,122.219849,136.153732,147.153732,151.343811,147.360336,138.186783,124.467781,112.914062,112.740509,107.872742,73.467781,50.666134,78.575218,130.914062,120.996704,63.707455,13.685966,9.806630,9.281006,12.548777,21.266960,31.442169,19.615721,0.901655,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.654546,0.699174,0.000000,1.442149,0.000000 -601118.355000,4612415.550000,1881,4855,72.162819,96.557045,97.606621,87.838028,73.672745,64.011589,62.119022,56.697540,54.614895,53.507458,54.143822,64.788452,81.540504,94.474388,105.606628,114.581833,116.763649,112.408279,104.970268,91.623154,82.590103,80.160339,76.127289,47.846302,27.408283,53.300846,103.829773,104.333893,56.201672,9.757040,6.920680,5.672737,9.908280,20.317375,32.562004,20.446297,0.407441,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.557025,0.000000,0.000000,0.615703,0.000000,0.000000 -601129.355000,4612415.550000,1936,4855,99.047951,132.946304,131.714890,121.929771,107.541336,98.466957,94.756218,89.466957,86.665306,86.557869,86.028938,98.648773,117.615715,135.475220,148.152908,161.070267,164.260345,158.698364,145.681839,128.152908,115.409103,112.417374,105.590927,69.252083,47.136383,74.657043,123.524811,109.136383,55.119854,14.010761,9.599193,7.617369,8.290097,14.186794,19.162828,10.606626,0.591737,0.037190,0.189257,0.078513,0.000000,0.000000,0.000000,0.121488,0.000000,2.549587,0.000000,2.361984,0.000000,0.000000 -601139.555000,4612415.550000,1987,4855,66.961174,93.443810,89.600838,79.212425,64.890099,53.047127,47.270267,40.840515,36.369438,34.005806,31.402498,40.947952,55.964481,68.832253,78.402489,85.857033,85.402489,81.187622,74.683487,60.675224,48.931423,45.551258,41.336380,9.078526,1.065292,16.833902,79.790916,94.658684,53.633904,7.590922,3.757870,4.608274,9.752908,17.291754,31.829771,17.802496,0.228927,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.590909,1.134711,0.318182,0.551240,0.914876,1.457025 -601149.355000,4612415.550000,2036,4855,57.378525,51.529770,41.660351,31.220678,17.890097,9.729763,5.081001,2.695873,1.471905,1.047937,0.702482,1.323144,4.709926,9.005795,13.616542,19.866131,20.362825,18.187620,15.030592,9.224806,3.795050,3.844635,2.718188,0.000000,0.000000,0.133058,34.995060,61.520679,38.380184,3.628934,0.247114,4.580999,13.116545,24.933077,44.057873,32.938038,2.911574,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.252068,1.161158,0.000000,0.048760,0.610744,5.613224 -601236.955000,4612415.550000,2474,4855,110.804146,123.985138,99.671089,89.902496,72.720680,58.290932,57.042992,52.555389,50.638035,53.348778,47.323990,55.340515,67.935555,78.993408,88.348778,98.728943,99.423157,93.042992,88.786797,78.852913,69.604973,69.447960,66.745476,39.059521,21.791752,46.555393,95.241341,96.026466,53.935555,8.815719,6.067788,18.893404,15.242992,25.521505,40.472744,31.614067,0.957854,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.271075,2.393389,1.491736,1.407439,2.680992,4.758678 -601242.555000,4612415.550000,2502,4855,139.730576,167.769440,141.455383,132.579346,114.926460,101.893402,100.033897,97.728111,97.265305,103.620674,98.455383,110.042160,124.678528,141.223984,154.926453,165.819016,166.868607,157.645462,146.240509,132.579346,122.984314,122.025635,120.918198,89.860344,70.232246,93.091751,127.364479,107.364479,53.868614,14.835556,10.992581,18.365307,13.403320,18.846298,26.548780,19.029766,0.783473,0.042975,0.000000,0.185951,0.000000,0.000000,0.000000,0.000000,2.059504,0.000000,0.895868,0.000000,1.004959,3.996695 -601252.155000,4612415.550000,2550,4855,97.932243,144.966141,147.577698,136.718201,123.511581,115.222328,113.164474,110.346291,110.486786,111.933067,113.751251,124.338028,141.462006,157.304977,169.486801,179.321503,179.635559,171.338043,154.900024,136.461990,126.685135,125.569435,121.172737,94.412407,74.387611,90.916542,115.255386,91.329765,41.619026,14.751258,11.015722,8.077699,10.372743,10.024808,13.828115,6.551250,1.341325,0.161984,0.177686,0.126447,0.038843,0.031405,0.000000,0.000000,0.983471,0.000000,0.979339,0.000000,0.000000,0.000000 -601258.355000,4612415.550000,2581,4855,101.192574,144.385941,150.840485,140.038834,127.526466,118.724808,115.195885,113.865311,113.113243,115.947952,116.559525,127.749603,144.352890,159.295029,172.708267,182.865295,183.187607,174.600830,155.914871,137.683472,129.410767,125.278534,121.245476,94.609108,74.476875,91.237206,110.766136,85.724808,40.121506,15.315722,11.022334,8.394227,9.342991,11.609933,12.803322,6.499184,0.614051,0.156199,0.129752,0.027273,0.064463,0.025620,0.000000,0.000000,1.082645,2.146281,0.000000,0.000000,0.000000,0.000000 -601262.555000,4612415.550000,2602,4855,84.852913,141.527298,145.833084,138.039688,125.981827,117.444633,115.039673,112.436371,112.601662,114.849594,116.271080,126.742157,143.609940,159.816559,171.857880,183.097549,184.229782,175.171921,156.634735,137.882660,129.147110,125.171906,120.163643,93.320679,73.957039,90.692574,106.585136,80.742165,35.097538,13.549605,10.923985,8.272740,8.908279,9.928114,9.114063,4.726454,1.428102,0.000000,0.104132,0.083472,0.000000,0.157025,0.000000,0.000000,0.000000,0.000000,0.838017,0.000000,0.000000,1.885124 -601269.755000,4612415.550000,2638,4855,96.107460,147.812408,151.581009,142.704987,128.572754,120.027298,117.655396,115.457047,115.531425,117.316551,119.506638,130.010773,147.308273,162.853745,175.531418,187.192566,188.366119,180.547943,159.828949,141.944656,131.547958,129.076889,123.663658,96.688454,76.200851,93.027298,108.680191,80.283493,35.721508,13.146297,11.242168,8.117369,8.563651,9.504972,10.115718,4.257858,0.834713,0.156199,0.070248,0.000000,0.114877,0.134711,0.189256,0.000000,1.230579,0.000000,0.000000,0.000000,0.000000,0.000000 -601280.955000,4612415.550000,2694,4855,113.504150,150.019836,151.722321,142.540497,130.573563,122.193390,119.705788,117.656204,118.755379,120.424797,122.697525,133.342148,150.681000,166.515701,179.838013,191.176865,193.689255,185.771912,165.135544,144.532242,135.127274,132.937195,128.400009,99.887604,80.052910,96.127281,111.631409,83.143822,36.862831,15.333075,11.672746,7.284309,9.181833,10.184312,9.979351,3.590916,0.585952,0.174382,0.202480,0.042976,0.057025,0.205786,0.327273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601286.755000,4612415.550000,2723,4855,99.020676,153.602478,155.280167,143.693390,132.660355,122.809113,120.957870,119.445473,119.420677,121.627289,123.478531,134.784317,152.156204,168.098343,181.990906,193.015701,195.255371,187.057022,166.007446,146.577682,138.288437,134.478531,130.354568,100.685143,81.081841,97.205803,112.503326,83.222336,37.558693,16.108282,11.850431,7.757864,9.976875,11.781007,11.411584,6.070256,0.958680,0.266118,0.354546,0.071902,0.000000,0.100000,0.000000,0.000000,0.000000,1.057851,0.000000,0.000000,0.000000,0.000000 -601290.955000,4612415.550000,2744,4855,99.342995,152.500015,154.607452,145.987625,131.772751,124.863655,122.417374,120.260345,120.483490,122.880180,124.863655,136.681839,153.747955,170.012405,184.946304,195.681824,197.351242,189.524796,168.929764,150.260345,139.607452,137.533081,133.318192,101.987617,83.971092,99.458694,115.590927,87.070267,38.607452,15.498366,12.119854,7.927287,10.733073,11.285965,11.713238,5.999183,0.986779,0.298349,0.442150,0.041323,0.000000,0.332232,0.000000,0.000000,1.233058,0.000000,0.000000,0.000000,0.000000,0.000000 -601297.555000,4612415.550000,2777,4855,101.452896,151.626450,155.295868,146.667770,133.659515,125.155380,122.444633,119.345459,120.279343,122.742157,125.279343,136.180176,152.469421,169.196701,183.717361,193.403305,195.295868,187.320663,167.436371,147.816528,137.147110,135.874390,130.345459,103.990089,82.403328,97.328934,113.527290,85.642982,39.609940,15.810760,11.849606,8.700840,8.972740,9.857864,11.149601,5.124801,0.996696,0.422315,0.014876,0.054546,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.180165,1.938843 -601307.155000,4612415.550000,2825,4855,104.064484,159.750427,157.444641,149.097534,135.585144,125.998367,123.345474,122.403320,122.163658,124.833084,126.882660,137.651260,154.361984,170.642975,184.907440,195.948761,197.932236,189.171906,168.651245,150.056198,140.147125,137.601669,132.618210,103.791756,84.114075,100.039696,115.519028,87.419861,38.890926,14.625639,12.056217,6.917367,9.283486,10.613238,12.548776,4.958686,1.053721,0.418183,0.041323,0.051240,0.080992,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601319.755000,4612415.550000,2888,4855,108.527290,157.667770,157.758682,149.014877,135.990112,126.915726,124.072746,122.527298,122.436386,125.957047,128.064484,138.246292,154.676041,171.155380,184.609924,196.560333,199.039673,191.080994,169.750427,149.519012,139.089264,137.171906,130.981842,103.477707,83.907463,97.461182,113.766968,85.229774,39.089275,14.024812,11.907456,6.795053,8.906626,8.179352,9.901666,3.624799,0.805787,0.387605,0.147108,0.043802,0.000000,0.240496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601326.955000,4612415.550000,2924,4855,155.700836,189.651245,172.138855,163.676041,144.775208,133.527283,133.337204,132.733902,134.081009,140.676041,137.593399,149.386780,166.700836,184.907440,199.543808,214.072739,214.692566,201.733887,182.171906,161.494217,151.403305,149.527283,145.345459,113.304146,95.180183,112.692574,122.494232,88.428123,41.882668,16.057043,13.213243,13.314068,9.709106,9.104974,11.812412,5.470258,1.717359,0.372728,0.399175,0.000000,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,1.259504,0.000000,0.000000,0.000000 -601331.355000,4612415.550000,2946,4855,152.336395,198.427292,173.146301,165.931427,149.658707,136.501678,136.162842,134.716553,136.600845,143.270279,140.104980,152.071930,169.295074,187.361176,203.807465,217.080185,218.063660,204.262009,184.650436,164.790939,154.832260,152.220688,148.063660,116.319847,96.592575,113.683479,124.047119,89.642159,42.501671,17.033903,13.460350,13.812411,10.694231,11.289271,12.705800,5.776867,1.299176,0.482645,0.063637,0.028099,0.018182,0.000000,0.178513,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,2.425620 -601335.155000,4612415.550000,2965,4855,155.266129,191.563644,172.563644,165.092575,148.109100,136.100830,136.976868,135.381821,136.274384,143.489273,140.629761,151.976868,169.753723,189.497528,204.571915,218.538834,219.456192,206.563644,186.505798,166.257858,156.076050,153.671082,149.472733,116.869431,97.629761,114.315712,125.638023,91.621498,43.257874,17.354563,13.588448,15.045470,11.350430,12.704975,12.071090,7.308276,0.825622,0.412398,0.749588,0.027273,0.080992,0.000000,0.006612,0.097521,0.000000,1.361984,1.133884,0.000000,0.000000,0.000000 -601337.955000,4612415.550000,2979,4855,128.951248,191.852081,170.215714,162.942993,146.496704,134.190918,135.257034,133.777695,135.397537,140.909927,138.926453,151.984314,168.744644,186.546295,202.133072,216.025635,216.901672,203.819016,183.223984,163.918198,152.372742,150.752899,145.554565,114.637199,95.703316,110.876869,124.124809,89.430588,42.777706,16.341341,13.232250,12.866132,10.577703,10.300843,10.860346,5.325631,1.656201,0.380166,0.191736,0.000000,0.033885,0.000000,0.039670,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601341.555000,4612415.550000,2997,4855,135.481842,188.440506,169.936371,161.738022,145.465302,133.473572,134.415710,132.787613,134.250427,140.258682,137.738022,150.043808,167.258682,186.779343,200.861984,215.142975,215.762817,204.349594,182.853729,163.250427,153.250427,151.176041,144.390915,114.159515,95.357864,109.597534,122.713234,88.333069,41.688450,16.135557,13.126466,12.128115,9.062000,10.805803,10.900842,5.841332,0.875209,0.133885,0.112397,0.172728,0.188430,0.000000,0.090909,0.135537,3.915703,0.000000,0.000000,0.000000,0.000000,0.000000 -601346.755000,4612415.550000,3023,4855,118.778534,189.299164,171.142136,159.852890,147.869415,133.786789,134.795044,134.704147,134.555374,139.861145,139.414871,152.009918,169.563629,187.745453,202.125610,216.076019,217.257843,204.307434,183.381805,163.728912,152.728912,149.125610,145.563629,115.472740,95.456215,110.323982,122.497528,89.811577,41.695889,16.093409,13.233077,12.679356,11.482663,10.456215,13.242166,6.262819,1.335540,0.158678,0.000000,0.000000,0.103306,0.000000,0.098347,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601351.955000,4612415.550000,3049,4855,121.697540,184.424820,171.838043,161.986801,147.978531,135.317368,136.193405,135.276047,136.110764,140.664490,140.284317,152.242996,171.292587,188.044647,203.292572,217.036362,217.879349,207.201660,185.193405,164.681015,154.647949,152.366959,147.400024,115.945473,96.300842,111.259521,125.433075,90.639687,42.408283,17.314070,13.400020,10.166955,11.090099,11.322332,13.477702,5.890921,0.415704,0.203306,0.062810,0.020661,0.006612,0.000000,0.024794,0.176034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601355.355000,4612415.550000,3066,4855,119.461166,182.105804,168.287628,160.130600,146.684326,136.147110,136.014877,134.510757,135.750427,139.692566,139.709091,152.907455,171.304153,188.238037,202.254562,215.948746,217.948746,206.973557,184.444656,164.370270,154.006638,152.552094,146.890930,116.651245,97.188438,109.709099,124.618187,91.089264,43.254562,16.466959,13.353739,11.577701,10.350430,11.719026,12.727288,6.037200,0.579340,0.000000,0.054546,0.081818,0.000000,0.000000,0.085951,0.000000,1.351240,0.000000,0.000000,0.000000,0.000000,0.000000 -601363.755000,4612415.550000,3108,4855,119.260345,177.871918,169.714890,159.417374,146.954559,134.938034,135.400848,132.987625,135.847107,139.070267,140.524811,152.409103,171.500015,188.723160,201.954559,215.607452,217.690094,206.987625,183.367783,163.690094,153.516541,150.623978,145.954559,115.690102,95.954559,109.929771,123.673569,90.954567,41.417381,16.395885,13.268614,11.068610,10.273572,12.191752,12.314891,5.200009,0.724796,0.134711,0.082645,0.018182,0.000000,0.000000,0.032232,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601367.155000,4612415.550000,3125,4855,122.272728,178.652908,170.256210,160.694229,147.214890,135.421494,136.347107,135.983475,135.330582,139.578522,140.239685,153.214890,172.099182,189.008286,203.033081,216.652908,218.661179,207.619858,185.314072,164.809937,154.834732,151.652908,147.181839,116.677689,96.867783,110.909088,124.157028,91.198364,43.008286,17.591755,13.380183,10.883486,11.970266,11.099190,13.143818,5.299183,0.539672,0.293389,0.096695,0.000000,0.000000,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.955000,4612415.550000,3159,4855,122.374397,175.663635,170.357864,159.812408,145.547943,136.043808,136.068604,135.415710,136.357864,139.374390,141.415710,154.357864,172.804138,189.308273,202.994217,217.200821,219.184280,209.184311,186.754547,165.184311,154.399185,151.952896,147.663635,117.870262,96.837204,112.060349,124.911583,90.721504,42.333080,17.361176,13.423986,12.102494,11.065306,12.568611,14.105803,6.374389,0.961986,0.368596,0.385125,0.159504,0.197521,0.258678,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.555000,4612415.550000,3177,4855,124.053734,169.789276,172.764481,158.855377,147.657028,137.194214,139.086777,136.847107,136.739670,140.169418,141.822311,154.500000,173.342987,190.260345,205.161163,217.053741,219.896713,210.169434,185.252075,166.260345,156.020660,152.342972,148.681824,118.136383,98.252083,112.466949,124.367783,91.119858,43.194237,18.076876,13.516548,11.220675,11.872746,12.949604,13.962828,5.396703,1.327278,0.276860,0.422315,0.219835,0.080165,0.000000,0.087603,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601380.955000,4612415.550000,3194,4855,127.411591,172.444641,169.642975,159.857864,146.750427,137.221497,137.560333,136.031418,137.304138,141.147110,143.733887,155.527283,174.717361,191.808273,205.783478,218.196701,222.163635,211.122314,188.576859,168.056198,157.361984,155.204971,149.254547,119.485962,99.428116,112.866127,126.998360,91.519020,42.857872,17.944647,13.568615,9.820675,11.346297,13.281836,13.480180,5.080174,1.033062,0.578514,0.186778,0.163637,0.081818,0.000000,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.355000,4612415.550000,3226,4855,121.568611,168.403336,169.180191,159.750443,147.428116,137.081009,137.676041,135.444656,137.122314,140.196701,142.791763,154.494232,172.238037,190.138870,204.709106,215.841339,220.006638,208.866135,185.171921,165.477707,154.866135,152.056213,146.800003,117.725632,96.576874,112.023155,122.684311,88.948776,41.337204,16.726463,13.345473,7.547122,10.119853,10.541339,10.854561,6.057860,0.928101,0.004959,0.080992,0.000000,0.031405,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601390.955000,4612415.550000,3244,4855,122.806625,167.930588,170.608276,159.236389,145.930603,138.038025,137.170273,136.757050,136.319016,140.095901,143.500854,156.013245,173.806625,191.137207,205.087616,217.872742,222.550430,211.748779,188.897537,167.856216,157.120697,154.244659,148.327301,119.641335,98.723976,113.228111,124.228111,89.781830,41.566959,16.991755,13.484317,8.412411,11.347951,11.819025,12.409107,5.177694,1.038018,0.076860,0.484299,0.018182,0.012397,0.000000,0.000000,0.063637,0.000000,0.000000,1.012397,0.000000,0.000000,0.000000 -601395.755000,4612415.550000,3268,4855,116.328934,170.601654,172.709106,160.353745,147.039688,136.981827,138.254547,137.130585,137.353729,140.452896,144.196701,156.841339,175.535538,192.361984,207.328918,219.634705,222.659500,212.841309,188.841324,167.527298,157.047958,155.609940,149.163666,118.940506,99.105789,112.874390,124.733894,91.006615,42.733902,17.262829,13.560349,10.644641,11.379355,12.360349,15.085140,5.979349,1.113225,0.208265,0.151240,0.081818,0.014876,0.000000,0.014050,0.150414,0.000000,0.000000,0.000000,1.035537,0.000000,0.000000 -601399.755000,4612415.550000,3288,4855,118.253738,168.080154,171.518173,160.369415,148.336380,138.030594,138.923157,137.947937,138.923157,140.914886,145.352905,156.964462,175.989243,194.055374,208.881805,221.344620,225.146271,215.022308,192.253723,170.683472,159.633881,157.286774,152.518188,121.542992,100.559525,114.443817,125.559525,91.823982,43.154572,17.257870,13.865308,11.291753,11.110763,13.568613,12.287619,7.317367,1.023970,0.394216,0.562812,0.234711,0.021488,0.000000,0.041323,0.002479,1.382645,0.000000,0.000000,0.000000,1.315703,0.000000 -601403.955000,4612415.550000,3309,4855,123.940521,167.147125,168.337219,160.800018,144.188431,138.155396,138.014893,136.543823,138.419861,140.494232,143.981812,155.312424,175.180191,191.667770,205.990082,219.304123,222.601639,213.907425,188.188431,166.676056,157.576889,154.502487,149.345459,119.180168,99.114067,112.337204,122.923973,90.204971,42.428116,15.846299,13.576880,9.736378,9.828115,10.622331,11.625638,6.430588,1.410746,0.652894,0.021488,0.033885,0.000000,0.000000,0.104960,0.091736,1.305785,0.000000,0.000000,0.000000,0.000000,0.000000 -601408.155000,4612415.550000,3330,4855,119.812408,169.242157,170.390930,160.523148,147.027283,139.027283,138.845459,138.308273,138.638855,142.605789,145.275208,158.068604,176.895050,193.614059,210.746292,222.060333,225.167770,215.093399,191.019012,170.490112,158.547943,157.184311,151.209091,122.217361,100.928108,115.382652,125.845459,91.828934,43.556213,17.560349,13.746300,10.304973,9.975224,11.195884,11.842991,5.923149,1.446284,0.336365,0.234711,0.306612,0.173555,0.000000,0.000000,0.013224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.155000,4612415.550000,3355,4855,104.779343,160.481842,169.985977,157.936386,145.415726,137.142975,136.837204,136.126450,137.622314,141.151260,144.366135,156.696716,175.647125,192.109940,207.250443,220.093414,223.068619,213.928116,188.985977,167.696716,158.324814,154.746307,148.754562,119.176041,99.035545,112.729759,123.465294,88.787613,42.109936,15.447125,13.523159,8.901666,10.342165,11.301670,10.305800,6.227284,1.194217,0.063637,0.088431,0.224794,0.061158,0.000000,0.000000,0.062810,0.000000,0.000000,1.020661,0.000000,0.000000,0.000000 -601418.955000,4612415.550000,3384,4855,126.373573,164.133896,168.133896,159.191742,146.968597,138.976868,138.976868,137.811584,139.910751,142.646286,146.811584,159.481003,178.009933,195.439667,210.307449,222.885956,226.555374,218.960342,193.414871,171.679352,160.307449,158.514053,153.472733,122.786797,102.638023,116.051254,128.100845,91.811577,43.001675,18.127291,13.952085,9.018196,10.900846,11.933903,11.297538,5.716539,0.919837,0.089257,0.000000,0.000000,0.025620,0.000000,0.000827,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.555000,4612415.550000,3417,4855,100.230598,163.007462,169.304962,160.255386,145.842163,138.627289,139.412415,138.751266,140.437210,143.090103,146.933075,159.850433,178.495041,195.346283,211.379349,224.057022,228.321487,218.701660,193.395874,172.817368,161.949600,158.718201,154.990921,124.412415,102.404152,119.015724,129.164490,93.949608,43.734730,16.653738,14.090101,9.823980,11.128943,12.319851,13.689273,5.578521,1.027275,0.387604,0.075207,0.028926,0.033885,0.000000,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.155000,4612415.550000,3450,4855,114.392578,167.359528,169.450424,160.144638,148.648773,141.152908,139.871918,140.607452,140.061996,143.913239,148.417374,159.805801,178.533081,195.557861,212.119858,225.500015,227.392578,219.012405,194.979355,173.971085,162.442169,160.409103,155.681839,124.400841,103.615715,118.789276,128.359528,95.301666,44.326466,17.551258,14.152912,7.374396,11.700843,12.509934,13.615720,6.640506,1.016532,0.329753,0.009918,0.000000,0.089256,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.919009 -601434.755000,4612415.550000,3463,4855,107.111588,166.392578,168.830597,160.227295,147.367767,139.690094,139.169418,138.252060,138.888428,142.681824,146.814056,158.814072,178.491745,195.830597,210.549591,223.053726,227.516525,217.706604,194.524811,171.582657,161.855392,158.772751,153.590912,122.921501,103.533073,118.111588,128.103317,92.185966,43.789280,18.177704,13.962828,9.238030,10.861997,13.793405,12.095057,5.018190,1.423970,0.299176,0.251241,0.000000,0.058678,0.000000,0.054546,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.155000,4612415.550000,3485,4855,123.521500,164.918198,169.066956,160.827286,146.860336,139.951248,139.562820,138.182663,140.381012,143.571091,147.769440,159.257034,178.033890,196.323151,211.149597,224.785965,228.223984,218.504974,194.447113,172.488449,163.504974,158.744644,153.554565,124.124809,103.000839,117.579353,128.827286,93.447121,43.918201,17.591753,13.959522,10.612410,10.609107,11.966132,13.764479,5.173563,1.669427,0.206613,0.047108,0.109091,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.955000,4612415.550000,3499,4855,109.617363,168.394226,169.509933,161.014053,146.832245,140.303314,139.220673,140.452072,140.501663,145.237198,148.080170,159.485138,178.617371,197.121490,212.295044,225.534714,228.666946,219.171082,195.427277,173.377701,161.749603,159.873566,155.154556,124.071907,104.584305,118.005798,128.361160,93.939682,44.088451,17.909111,14.104977,9.485138,11.478529,11.032247,12.017371,6.903317,2.055377,0.128927,0.046282,0.054546,0.000000,0.000000,0.042976,0.024794,1.304959,0.000000,0.000000,0.000000,0.000000,0.000000 -601445.555000,4612415.550000,3517,4855,107.478523,163.809097,168.602478,160.643814,147.023987,140.147949,138.362823,139.776047,141.362823,144.602493,147.478516,160.362823,179.197525,195.701660,211.652069,224.726456,227.230576,219.271912,193.916534,172.900009,161.982666,159.486801,153.081833,123.404144,103.437210,117.280174,127.776047,92.470268,42.676876,17.300018,13.916547,7.858693,10.976875,13.466132,10.258694,5.737200,1.298351,0.095042,0.028926,0.036364,0.000000,0.337190,0.095868,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.755000,4612415.550000,3538,4855,128.156204,171.949615,170.693420,163.139709,149.123154,142.924820,141.875229,141.767792,142.561172,147.057068,151.371094,162.776062,182.371109,199.999207,215.453735,227.569427,231.676865,222.751266,198.098389,176.362839,165.660370,161.255402,158.445496,125.875229,105.924805,119.916550,129.462006,94.742996,45.519852,18.404152,14.404151,9.867783,13.866959,12.898363,15.271919,6.367779,1.197524,0.204961,0.266117,0.000000,0.009091,0.000000,0.039670,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.155000,4612415.550000,3565,4855,123.767776,168.858704,167.437210,159.222321,149.577682,141.511566,139.437195,139.189255,141.139679,144.486786,149.040497,161.371094,179.875229,197.875229,212.974380,226.924789,229.759506,221.817352,195.387619,174.222336,163.544647,160.197540,155.354553,124.197533,103.106628,117.338028,126.982651,93.751259,42.916553,16.209936,14.123158,7.589271,9.474398,11.417373,12.252909,5.387612,0.913226,0.196695,0.219836,0.000000,0.012397,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.755000,4612415.550000,3578,4855,113.452904,165.981827,167.634720,160.461166,147.684311,139.477692,139.552078,139.039673,141.138855,144.527283,148.543808,161.717361,179.709091,197.527283,212.824799,226.709091,231.064468,221.444641,197.039673,175.295868,163.882645,160.676041,155.709091,126.271088,103.543816,119.180183,127.527290,92.907455,43.957039,17.624813,14.155391,8.910756,10.197536,11.844646,11.959521,4.181826,1.200004,0.102480,0.205786,0.179339,0.041323,0.000000,0.012397,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.555000,4612415.550000,3597,4855,113.269440,164.947113,172.343811,161.244659,150.393417,142.831436,141.666138,142.236389,142.566971,146.476059,150.162018,162.947144,181.947113,200.046295,215.021484,228.442978,232.847931,224.186768,198.319016,176.285965,165.682678,161.889282,156.872757,127.467789,106.128944,119.633080,129.980179,93.649597,45.013245,18.928120,14.261177,9.188443,11.530595,12.985141,13.866134,4.719018,0.847111,0.298349,0.127274,0.084298,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.955000,4612415.550000,3624,4855,118.383492,163.342163,170.871094,160.565308,149.631424,141.119034,140.383484,141.011597,143.052917,146.945480,150.681015,162.507462,181.019852,198.689270,214.623154,228.259521,232.705811,223.705811,198.350433,175.209930,165.730591,161.011597,156.945480,126.251259,105.193405,118.523987,126.375229,94.143822,45.242996,17.469440,14.267787,7.788444,11.703322,12.477703,13.600844,5.087613,1.138020,0.178514,0.061984,0.000000,0.000000,0.000000,0.023967,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.155000,4612415.550000,3655,4855,116.269432,165.509109,167.219849,161.244644,148.128937,142.137207,141.252899,140.971909,142.823151,146.955383,149.856216,161.864471,180.285965,198.211578,214.277695,227.418198,231.690918,221.492569,198.112411,175.244644,163.757034,160.765305,156.145462,125.376869,103.856209,117.120674,128.079346,92.864479,44.690926,18.186796,14.195061,8.762823,12.685141,9.360346,11.547123,5.438026,1.193392,0.343803,0.241323,0.000000,0.050414,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601477.155000,4612415.550000,3675,4855,135.614075,170.514893,172.233902,164.109940,152.440521,142.919861,141.870270,142.630600,143.977707,148.481842,150.589279,163.490112,181.985977,200.200836,216.308289,228.828949,232.572754,224.547958,198.820663,175.787628,165.242172,162.324814,156.845474,126.440521,105.886803,119.688454,128.985977,94.457039,45.547951,19.436382,14.258698,7.745468,12.901670,13.623157,12.128116,5.456207,1.240500,0.176862,0.333886,0.028099,0.107439,0.000000,0.038017,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601483.955000,4612415.550000,3709,4855,119.477707,172.444641,173.477692,164.543808,151.800003,143.676041,142.915710,142.609924,144.469421,149.337204,151.816528,164.130585,183.254547,200.312408,215.816528,229.775208,233.783478,224.105789,199.618195,177.023148,165.180176,163.816528,156.709091,126.998367,105.089272,118.089279,129.122330,94.411583,44.552090,18.820681,14.246300,9.200014,11.960347,11.661173,11.614064,4.838852,0.933061,0.772729,0.315703,0.018182,0.000000,0.000000,0.000000,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.155000,4612415.550000,3740,4855,129.758698,168.766953,168.882645,162.130585,151.618195,143.452896,143.196701,143.543808,144.271088,149.320663,151.428101,164.907440,181.990082,202.155380,217.105789,230.469421,234.502487,224.808273,199.651245,176.742157,166.014877,162.543808,157.436371,125.899185,105.915718,118.684311,127.948776,94.461182,45.973576,17.998365,14.312415,8.742990,10.844646,11.457041,13.333901,4.436373,0.474383,0.337191,0.105786,0.247108,0.026446,0.000000,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,1.320661,0.000000 -601492.955000,4612415.550000,3754,4855,120.023979,176.106628,174.164490,165.759521,153.131424,144.015717,144.676880,144.139694,144.933075,150.709930,153.280182,165.685150,183.371094,201.800842,217.536362,231.321503,235.106628,225.776031,200.528122,178.007462,166.792587,163.833908,158.081833,126.693398,104.652077,118.247116,128.685135,94.875221,45.280186,18.361177,14.371094,8.256213,12.052084,12.375224,11.876878,5.420669,1.004136,0.515704,0.210745,0.307439,0.057852,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.755000,4612415.550000,3778,4855,125.309937,175.177704,171.929764,165.814072,152.185974,142.425629,144.028946,142.243820,143.648773,149.913239,151.210754,163.061996,181.409103,201.012405,216.210754,229.607452,234.210754,225.516541,198.657043,176.632248,165.078522,161.582657,155.863647,125.855385,104.252083,119.028938,127.119850,92.128113,44.268616,17.704149,14.169440,5.931418,9.146295,9.989271,11.711586,3.556205,1.194218,0.012397,0.033885,0.000000,0.000000,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,1.276860,6.974380 -601505.155000,4612415.550000,3815,4855,129.996719,183.666122,177.120667,164.591751,153.294235,144.095886,145.062820,143.525635,145.013229,150.327286,152.228119,164.765305,182.269440,202.178528,217.823151,230.938858,236.128937,226.046295,200.856216,176.368607,165.054565,161.872742,155.509109,125.905807,104.963654,118.244652,126.566963,93.442993,43.087624,16.962000,14.137209,7.973568,10.981833,11.891753,10.103321,5.159513,0.640498,0.033058,0.095869,0.088430,0.019835,0.133884,0.000000,0.000000,1.364463,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.155000,4612415.550000,3835,4855,141.540497,182.689255,172.499176,168.540497,153.978516,144.689255,144.085953,144.482651,145.061157,151.945465,151.730576,164.383469,182.119019,200.953720,216.838013,230.400009,233.714050,225.218185,198.656204,176.540497,164.375214,161.003311,155.763641,124.209930,104.755386,116.391747,127.209930,93.499176,44.920685,19.084318,14.160349,7.536379,11.373570,11.829769,11.933073,6.685135,0.825622,0.175208,0.566944,0.198347,0.033884,0.000000,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.155000,4612415.550000,3850,4855,127.280174,184.048767,177.114883,170.065292,155.106613,143.776031,145.933060,144.685120,146.718185,152.875214,153.503311,165.536362,183.734711,201.759506,217.966110,231.081802,235.214035,225.949570,200.346283,177.908264,165.858688,160.304962,157.990906,124.850426,104.734718,118.032242,127.453728,93.536377,44.346302,17.514894,14.362828,8.676875,11.106629,10.479353,12.186794,5.397531,0.745458,0.104960,0.247935,0.000000,0.000000,0.267769,0.078513,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.555000,4612415.550000,3867,4855,129.989273,185.055374,174.823975,169.270264,155.080185,145.146301,143.468628,144.642181,145.022339,151.113251,151.749619,164.278519,182.129761,201.047119,217.311584,230.592575,235.303314,226.154556,199.534714,176.237198,165.650421,162.187607,155.336395,124.542992,103.906631,115.642166,124.410759,92.551254,42.344646,15.822332,14.121507,5.992574,10.036381,10.202496,10.900015,3.785133,0.308266,0.126447,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.219835,0.000000,0.000000,0.000000 -601520.555000,4612415.550000,3892,4855,136.820663,178.101654,176.531418,164.572739,149.291748,142.184311,142.655380,141.093399,142.258682,145.399185,147.928101,161.019012,180.167770,197.142975,212.076859,226.721497,231.134720,218.952896,193.473557,171.407440,159.787613,158.903305,152.209091,122.101669,101.779350,114.027290,123.465302,88.481842,42.762833,17.166132,13.837209,9.838031,11.611588,11.461174,11.904147,5.957860,0.934714,0.291736,0.007439,0.005785,0.019835,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.755000,4612415.550000,3908,4855,125.536369,176.676865,175.809097,165.990906,151.726456,141.701660,143.230576,142.528107,142.759506,146.709915,150.106613,161.329758,180.486786,197.718201,212.751282,227.544662,230.982666,218.379379,193.387619,171.519836,160.602478,157.875214,151.354553,121.668602,101.767769,114.238853,123.131409,88.701668,44.114899,16.806631,13.759522,13.371090,11.071093,11.976050,12.179355,6.301663,1.096699,0.295869,0.303307,0.085125,0.029752,0.000000,0.000000,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.955000,4612415.550000,3929,4855,133.645462,181.240509,176.381012,165.133072,150.339676,141.637207,141.703323,140.397537,142.703323,145.174393,148.529770,160.645462,179.124802,197.100006,212.347946,225.050430,229.703323,218.381012,192.166122,168.637207,159.083481,156.761169,151.009109,120.496704,101.042160,113.521500,122.042160,88.785965,42.116550,17.571091,13.728118,11.300840,10.685968,12.254562,12.540511,6.047117,1.014880,0.726448,0.093389,0.090909,0.017356,0.000000,0.030579,0.000000,0.000000,1.410744,0.000000,0.000000,0.000000,0.000000 -601533.155000,4612415.550000,3955,4855,124.336372,180.204163,175.146286,163.295044,151.799179,140.212402,142.815720,140.923157,142.501663,145.815720,146.832245,159.774384,179.576065,197.385971,211.947922,225.890076,229.038849,217.402466,192.683502,170.410767,158.303314,155.526459,150.427277,120.022324,100.485130,111.799187,121.377693,86.088455,39.336384,16.649605,13.675226,10.681833,8.603321,11.920676,12.419851,6.433068,0.614052,0.021488,0.447935,0.000000,0.000000,0.265289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.155000,4612415.550000,3985,4855,121.560349,180.692566,174.857864,164.890915,151.502487,141.254547,143.560333,141.948761,143.816528,147.287613,147.907440,161.279343,180.014877,198.271088,212.304138,227.204971,230.188431,218.031418,193.403305,169.585129,161.031418,157.552078,151.436371,121.386795,101.238029,113.345467,121.428116,88.196709,41.725643,17.884315,13.766961,11.894231,11.462001,12.780182,13.964480,5.739678,0.866120,0.057025,0.631406,0.362810,0.048761,0.000000,0.047108,0.000000,0.000000,1.111570,0.000000,0.000000,0.000000,0.000000 -601543.555000,4612415.550000,4007,4855,130.204971,185.238022,177.337204,168.477692,153.932236,143.419846,144.552078,143.626450,145.080994,149.155380,150.527283,163.576859,181.419846,199.320663,213.626450,228.138855,231.477692,218.428101,193.568604,171.667770,160.684311,157.651245,151.163635,121.593391,102.006622,114.122322,121.833061,88.204971,41.816547,17.935555,13.742167,11.073569,9.728118,12.438860,12.606627,5.474389,1.236366,0.257852,0.194216,0.000000,0.022314,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,2.140496,0.000000,0.000000 -601546.355000,4612415.550000,4021,4855,130.668610,188.833908,176.776047,166.718201,152.503326,141.933075,143.718201,142.718201,143.362823,148.453735,149.197540,162.734726,180.048782,198.090103,212.924820,227.073578,229.949600,216.395889,192.850433,170.594238,159.230591,157.338043,151.263657,120.842155,101.461998,112.561165,120.412399,86.635559,41.511589,16.349606,13.751258,12.119849,9.576876,12.968613,12.122331,5.866126,0.734713,0.270249,0.299174,0.004959,0.000000,0.000000,0.113223,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612415.550000,4064,4855,133.916550,192.404129,176.569427,170.437195,154.511566,141.652069,143.767776,143.503311,144.181000,151.023972,149.627274,161.875214,179.709915,197.181000,213.313248,226.428925,228.883469,215.982666,191.693390,169.792587,159.486786,156.007446,150.900009,119.726463,100.966133,114.131424,120.676880,86.643822,40.255386,16.310762,13.718202,12.966958,10.756214,11.271091,11.719025,6.413234,1.219837,0.162811,0.000000,0.072727,0.000000,0.000000,0.013223,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.755000,4612415.550000,4078,4855,147.254547,195.684280,181.882660,171.328934,157.031418,144.072739,147.130585,145.684311,147.485962,153.535538,151.089264,164.857864,182.560333,202.105789,215.965302,231.097504,231.948746,219.651245,195.047928,173.527283,161.981827,159.386780,154.072739,122.395050,103.287613,116.395050,123.452896,87.585136,43.882664,18.619028,14.006631,14.462826,11.823157,13.617373,13.324811,6.440507,0.765291,0.090909,0.001653,0.075207,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.555000,4612415.550000,4112,4855,148.842163,200.486801,179.577698,174.652084,156.701675,145.742996,147.544647,146.007462,148.280182,155.924820,152.304977,165.676880,184.032257,202.850433,218.817368,233.172745,234.255386,220.809113,196.767792,174.999191,163.230591,161.271927,154.990921,123.007446,103.982658,117.610756,124.437202,87.461998,43.825638,18.300844,14.090102,13.378529,10.404150,11.293406,13.090099,7.214061,1.259507,0.015703,0.056199,0.000000,0.060331,0.000000,0.029752,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.755000,4612415.550000,4128,4855,152.456207,200.522324,182.266129,176.191742,159.332245,146.109116,147.786804,145.588455,148.902512,155.960342,152.332245,165.257858,182.811584,202.051254,218.596710,232.811584,234.795044,219.803314,197.472733,174.927277,164.662827,161.257858,156.563660,124.638023,104.604965,117.885963,125.761993,89.398354,44.762005,19.568613,14.233077,14.748775,11.652908,12.203321,12.968611,8.764475,1.209094,0.539671,0.279340,0.295869,0.000000,0.386777,0.050414,0.000000,0.000000,0.000000,0.000000,1.185124,0.000000,0.000000 -601571.155000,4612415.550000,4145,4855,162.224823,201.332260,181.315689,172.679337,158.968628,147.274399,148.001678,146.910767,148.290939,157.646301,153.092590,166.447952,182.828094,202.894241,218.191757,233.712418,235.679367,220.547134,197.117386,175.216522,163.745483,161.555374,156.200027,123.555389,105.340515,119.555389,124.224808,87.381836,43.026466,18.780182,14.200019,14.631422,10.638034,11.079357,11.113238,7.383482,0.747109,0.608266,0.199174,0.037190,0.000000,0.000000,0.000000,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.355000,4612415.550000,4161,4855,157.980194,204.178543,186.500854,178.765305,157.996704,148.451263,148.236389,146.806641,148.484329,157.310760,152.591766,165.285965,183.195053,201.492584,218.087631,233.021515,234.600037,218.897552,196.459534,174.633072,163.930588,160.409927,154.145477,123.525642,105.029770,120.128944,125.228119,89.153740,43.889278,19.656216,14.013242,17.783489,12.056216,13.228944,12.693405,7.867780,1.048762,0.338843,0.159504,0.011570,0.000000,0.000000,0.114876,0.046281,1.398347,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.555000,4612415.550000,4177,4855,117.230598,170.437195,172.850418,163.751236,149.990906,142.313248,140.924820,140.619034,141.296707,144.776047,147.660339,159.577682,178.577682,195.676865,210.627274,223.552902,226.569427,217.536362,193.057022,169.891739,159.346283,156.371078,150.263641,120.577705,100.602501,113.668617,122.255394,87.652084,42.776047,17.886795,13.660350,9.336376,11.002496,11.576050,11.876048,5.503316,0.893390,0.366943,0.179340,0.000000,0.042976,0.348761,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.355000,4612415.550000,4196,4855,111.101677,165.804153,169.746292,162.928116,148.944656,141.151245,140.266953,139.663635,141.746292,145.085144,146.382660,158.961182,177.523148,194.671921,209.109924,223.134720,226.324799,216.109924,191.250443,167.572739,156.895065,154.614075,149.572754,119.936378,98.539680,113.432251,119.539680,87.010765,41.928123,17.148779,13.597540,7.995879,9.113241,10.597537,12.052081,5.716538,0.390910,0.259505,0.148761,0.132232,0.014876,0.000000,0.004133,0.000000,0.000000,0.000000,0.000000,1.757025,0.000000,0.000000 -601585.155000,4612415.550000,4215,4855,97.285141,161.690109,172.152924,161.450424,147.623993,139.863663,139.590942,138.706650,140.185989,142.781021,145.458710,158.524811,174.508286,192.417358,207.566116,220.756195,223.880173,214.351242,189.202484,167.500015,156.516556,153.152924,147.409119,117.524811,97.037209,112.243820,120.847122,87.367783,42.541340,16.516546,13.400846,7.456211,10.400018,11.532248,10.486794,5.338025,0.675207,0.096695,0.652894,0.000000,0.136365,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.755000,4612415.550000,4228,4855,118.738037,169.109924,168.242157,162.258682,149.861984,140.779343,139.614059,139.680176,139.845459,142.696701,146.283478,157.738022,175.696701,193.349594,206.936371,220.118195,223.696701,213.746292,189.052078,166.721497,154.250427,150.886780,145.754547,116.184303,96.564468,111.564468,117.176041,85.547958,41.928116,15.157869,13.250432,7.996709,8.095058,10.403322,10.162826,4.813232,0.504960,0.002479,0.006612,0.000000,0.000000,0.170248,0.000000,0.289257,1.233058,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.955000,4612415.550000,4259,4855,113.964470,163.476883,171.782654,162.237213,147.989273,140.022339,139.526474,138.964493,140.377716,143.650436,146.295044,157.675217,175.881851,192.741348,208.096710,219.642151,223.047119,213.080170,186.989288,164.906631,154.518188,151.138031,145.972748,116.171082,96.666954,111.270256,117.278519,86.782654,40.766132,16.702499,13.270266,8.072740,9.739687,11.102497,12.590099,5.266952,0.905787,0.170248,0.187604,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601601.555000,4612415.550000,4297,4855,118.058693,167.777695,172.761169,162.298355,148.885132,141.149597,140.199188,139.248779,139.306625,143.678528,145.232239,158.314896,175.166122,191.455383,205.802490,218.281830,221.827286,211.232239,185.959518,163.397537,153.372742,149.529770,144.100006,114.422325,95.612411,108.091751,117.414062,83.430588,41.240517,15.834729,13.100019,7.782658,10.915720,11.062001,10.568609,6.595879,0.261984,0.228926,0.027274,0.008265,0.000000,0.000000,0.113224,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.355000,4612415.550000,4326,4855,113.090103,163.759521,170.205811,159.866959,146.172745,137.561172,137.552917,136.280182,136.172745,141.304977,142.924820,153.561172,171.966141,187.395889,202.734726,213.900024,216.982666,206.346298,180.205811,157.817368,146.891754,144.875229,139.172745,109.420670,92.288452,105.685135,115.131416,82.090103,38.214069,14.925638,12.652085,5.890093,8.184314,10.340511,9.147122,4.554554,0.208265,0.114050,0.444629,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.355000,4612415.550000,4341,4855,116.943817,171.018188,171.910751,163.175217,150.357040,143.133896,138.761993,138.902496,139.588440,142.398361,144.803314,155.563644,173.150421,188.720673,204.125626,214.216537,217.315720,206.464478,181.952072,160.216537,148.976868,145.439682,140.472733,112.695885,91.654564,106.323982,114.861176,85.175224,41.406631,17.380182,12.770267,9.270261,10.749603,10.424809,11.180181,6.504969,0.132232,0.285125,0.117356,0.004959,0.250413,0.000000,0.019009,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.555000,4612415.550000,4377,4855,116.645477,169.463654,171.538025,162.199188,149.372742,141.802490,140.488449,139.339676,140.083481,143.215714,145.273560,155.901672,171.852081,189.678528,202.967789,213.885132,216.662003,207.182663,182.422333,159.381012,148.207458,144.620667,139.736374,111.265305,92.372742,106.257034,113.612411,83.033905,40.504978,17.750431,12.703324,6.954557,9.209934,10.900845,9.956212,4.889264,1.193391,0.111571,0.000000,0.004959,0.010744,0.000000,0.023141,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.355000,4612415.550000,4396,4855,114.860344,170.422333,170.959518,161.620651,150.587616,140.116547,138.802490,138.653732,139.257034,142.934723,145.141342,156.050430,173.331406,188.595871,203.009094,214.364471,217.752899,205.513229,180.579330,159.265289,148.810760,144.827286,140.009109,111.967781,92.207451,106.223976,113.215714,83.686790,41.215729,18.558697,12.728118,7.423152,11.695058,10.671091,9.011583,4.147115,0.798348,0.000000,0.057852,0.155372,0.011571,0.000000,0.018182,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.955000,4612415.550000,4419,4855,113.551247,168.452072,170.600830,163.129761,149.121490,140.617371,140.873566,139.212402,139.295044,142.609100,144.741333,156.385956,173.840500,189.303314,202.493393,215.344635,216.055374,205.914886,182.146286,159.096710,149.311584,144.361160,138.972733,112.807449,92.716537,106.857033,112.857033,83.691742,40.658699,16.593407,12.633904,8.393401,9.406630,8.878527,11.401669,5.534720,1.814879,0.233885,0.143802,0.160331,0.000000,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.355000,4612415.550000,4451,4855,115.634720,162.783463,170.659500,160.353714,149.973541,139.957031,138.940506,138.155396,139.304138,142.428101,145.304138,155.105774,171.890915,188.204971,202.725632,213.345459,215.766953,205.502487,179.312408,158.064453,148.014862,142.411560,137.890915,109.593391,90.783485,103.651245,111.560333,82.948769,39.370266,14.998364,12.535556,6.000009,8.222330,7.909105,9.919021,3.442156,0.380993,0.233058,0.075207,0.000000,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,1.109918,0.000000,0.000000,0.000000 -601636.555000,4612415.550000,4472,4855,123.867783,166.917374,168.975220,163.818192,151.297531,142.479355,140.768616,137.966965,139.363647,143.578522,145.206635,156.363647,173.000015,188.950424,203.586792,215.859528,216.652908,205.942169,181.504150,158.570267,146.892578,143.586792,138.909103,109.041328,92.818192,105.752075,112.809937,82.305801,38.611591,14.862826,12.628119,6.548773,8.469438,8.519024,9.384312,4.848768,0.587604,0.000000,0.013223,0.014876,0.000000,0.000000,0.059505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.555000,4612415.550000,4497,4855,134.335541,173.418182,175.178513,163.740494,154.996689,143.740494,141.616531,141.442978,142.649582,145.889252,147.897522,157.980164,174.922333,191.600006,205.211578,217.004959,217.980164,208.252884,183.162003,160.161987,149.550415,146.203308,140.690903,111.955376,93.178528,105.252899,115.285957,85.071091,42.186798,18.160351,12.790101,7.137202,10.900017,10.428942,12.580180,5.054554,1.559508,0.528100,0.322315,0.179340,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.095868 -601644.755000,4612415.550000,4513,4855,124.558693,168.740524,171.690933,164.757050,151.112411,142.219849,140.153748,140.062820,140.790100,145.071091,146.178528,156.509125,172.856232,189.633087,203.021515,214.302505,217.443008,206.839691,181.401688,159.062820,149.285980,145.261169,138.509109,110.790092,91.715721,104.261169,113.666122,83.004982,40.996712,15.533903,12.591755,7.482656,9.652911,9.118198,10.426461,6.575216,0.519836,0.127273,0.068595,0.224794,0.007438,0.000000,0.040496,0.000000,1.343802,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.155000,4612415.550000,4545,4855,130.458694,176.037201,176.351257,167.095062,152.979355,144.706635,142.334732,142.020676,141.838852,146.078522,147.491745,158.152908,174.814072,191.425629,204.615723,216.929764,218.384308,208.359528,182.549606,160.152908,149.095062,144.822327,139.500015,111.574394,93.342995,105.921501,114.921501,82.797539,42.128120,16.436380,12.681836,7.097531,10.288447,9.858695,11.441337,4.165297,0.868597,0.221488,0.000000,0.016529,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.426446,0.000000 -601653.755000,4612415.550000,4558,4855,132.264481,170.380188,174.041336,165.661179,152.421509,142.132248,141.090927,139.446304,139.181839,143.958694,145.371918,155.132248,171.371918,189.082657,202.644638,213.330597,215.462830,205.545471,180.545471,157.933899,145.752075,142.520676,137.454559,108.735542,91.669441,104.719017,112.198357,81.785133,40.537209,16.793407,12.495887,5.959514,7.857041,8.623157,9.238857,2.476865,0.948763,0.138843,0.037190,0.000000,0.074380,0.000000,0.072728,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.555000,4612415.550000,4577,4855,118.352905,171.205811,166.792572,162.032242,149.751266,139.387604,138.883469,137.908264,139.742981,143.561157,144.709915,155.114883,172.519836,189.428925,203.404129,214.693390,216.114883,206.271912,178.759506,156.759521,146.338013,142.817352,136.900009,108.957855,89.734718,103.974380,112.891739,82.924805,39.660351,15.555389,12.445474,6.041333,9.101669,9.232246,10.219849,3.508272,1.281820,0.355372,0.250414,0.352067,0.013223,0.066116,0.000000,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601661.355000,4612415.550000,4596,4855,129.988449,175.128922,175.269424,164.715714,154.021515,141.938858,140.112411,139.583481,139.186783,143.467789,145.228119,155.054581,171.360321,188.831406,202.137192,212.823135,214.434708,203.310745,177.798340,156.368607,144.947113,141.360336,136.145462,109.062820,88.360344,103.236374,111.963646,81.252907,40.715721,15.962827,12.376878,7.167780,8.721504,7.772743,10.000015,2.776866,0.259505,0.396695,0.132232,0.000000,0.014876,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601664.155000,4612415.550000,4610,4855,118.559532,174.551254,174.890091,165.840500,151.939682,141.179352,141.121490,140.121490,139.369431,144.311584,145.658691,155.253723,171.815720,189.435547,202.625626,214.237198,216.609100,206.055374,179.559509,157.576050,145.410751,140.749603,136.154556,106.923157,89.096710,103.427292,112.295059,84.146301,39.212414,17.924812,12.377705,6.515713,10.481835,8.870264,11.565304,4.318190,1.021490,0.277687,0.207438,0.104134,0.091736,0.000000,0.017356,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.755000,4612415.550000,4633,4855,129.464478,177.398361,171.836380,167.340500,154.076050,142.009933,141.034714,138.571915,137.811584,143.299179,144.406616,154.208267,171.084305,188.109100,202.133896,215.323975,214.993393,203.547119,177.604965,156.472733,145.431412,140.596710,136.018204,108.315712,89.761993,101.571907,111.175217,84.290924,39.456219,15.843820,12.365308,5.711581,10.427291,10.318199,10.714062,4.176041,1.690085,0.567770,0.520662,0.171075,0.519836,0.000000,0.079339,0.066117,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.355000,4612415.550000,4651,4855,140.052094,179.807449,172.225647,166.655396,155.853745,140.861984,139.787613,140.749603,140.584305,144.121490,143.997528,154.030594,171.435547,187.969437,199.936386,213.060349,213.275223,201.316559,175.828949,153.762833,141.688431,137.448761,134.845459,104.539673,85.514893,101.506615,110.721497,81.919846,35.870266,14.904976,12.258696,4.810754,6.214890,8.652081,10.153733,4.776042,0.501655,0.595043,0.582646,0.036364,0.100827,0.000000,0.000000,0.000000,0.000000,2.833058,0.000000,0.000000,0.000000,0.000000 -601676.955000,4612415.550000,4674,4855,116.756203,172.334732,172.549606,161.698364,147.037201,135.384308,134.648773,133.508270,132.491745,134.450424,136.830597,147.004150,164.475220,179.334732,191.475220,202.623978,202.045471,190.458694,165.847122,145.805801,134.896698,132.342987,125.863647,100.037209,82.706627,96.847122,104.417374,76.665306,35.880184,16.054564,11.442167,8.301665,7.634722,8.445468,7.926458,3.443809,0.404133,0.251240,0.108265,0.000000,0.000000,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,1.223141,0.000000 -601679.755000,4612415.550000,4688,4855,122.471092,170.082657,171.843002,163.719040,147.024826,137.396729,135.950424,134.578522,132.727295,135.330597,135.537201,146.801682,164.000031,179.024811,191.289276,201.165298,201.925629,190.818192,166.677719,146.429779,134.570267,132.181839,127.545471,100.462830,82.760345,95.363655,104.388443,76.008286,36.297535,14.861175,11.595060,8.814062,9.616544,9.881006,9.833899,3.891744,0.504960,0.111571,0.169422,0.000000,0.000000,0.000000,0.006612,0.100827,0.000000,0.000000,0.726446,0.000000,0.000000,0.000000 -601685.155000,4612415.550000,4715,4855,119.218201,180.813232,174.085953,160.681000,146.647934,135.102493,135.028107,132.523972,132.292572,133.838013,134.623138,146.722321,162.391739,177.548767,190.499176,201.094223,201.317352,188.317352,165.300827,144.862823,134.466125,130.937195,126.127274,97.904144,81.970268,93.912407,103.821503,73.482666,32.416550,13.695885,11.466134,7.485136,7.329765,8.202492,8.418197,2.629758,0.780994,0.176034,0.307439,0.000000,0.000000,0.000000,0.252067,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,2.199174 -601688.355000,4612415.550000,4731,4855,120.333061,172.795883,173.167786,161.382660,146.985962,135.407440,135.597534,133.134720,133.704971,134.134720,135.374390,146.746292,163.101669,178.423996,189.994232,200.432251,201.275223,188.341324,165.308289,144.465302,133.812408,131.647110,125.754555,98.539673,81.696709,93.787613,103.366119,75.564476,36.043819,15.166960,11.432250,8.408278,7.689270,10.167783,8.901665,3.053726,0.761985,0.146282,0.061984,0.000000,0.053719,0.000000,0.171075,0.276860,1.354545,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612415.550000,4745,4855,120.542160,175.690903,169.310745,159.831406,146.591736,134.228119,135.583481,132.814896,132.195053,134.839676,133.707458,145.847931,162.633057,177.484299,190.459503,200.583466,201.244629,188.814880,165.252884,145.335541,132.806625,132.170258,124.872742,98.277702,82.170265,94.104156,102.690926,74.856216,34.128944,15.074397,11.352084,9.930593,7.464475,9.706625,7.338029,2.945461,0.439670,0.123141,0.111570,0.169422,0.000000,0.000000,0.339670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.755000,4612415.550000,4788,4855,129.521500,178.347961,175.356232,162.785980,145.554581,134.455383,134.141342,130.347946,130.967789,133.909927,133.108276,144.835571,160.785980,176.926468,189.587631,199.703339,198.240524,186.794250,163.000854,141.785980,131.645462,128.984314,122.372742,95.538033,77.901665,90.670265,101.108276,73.918198,31.992579,12.278529,11.124812,8.279352,6.603319,7.419847,6.777698,2.573560,0.366943,0.028099,0.061984,0.000000,0.057025,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.955000,4612415.550000,4814,4855,124.235565,186.814056,173.152893,165.318176,148.648758,136.185974,137.433884,134.814072,133.549606,135.533081,135.128113,147.301651,163.500000,179.574387,191.326447,202.392563,201.500000,188.243805,164.582642,144.665283,133.847122,131.095062,125.227287,97.318199,81.210762,93.747948,103.037209,75.351257,35.384323,14.793406,11.384317,9.175221,7.838857,10.358694,9.373569,3.540505,0.842151,0.286778,0.271075,0.052066,0.116529,0.000000,0.001653,0.023141,0.000000,0.000000,0.000000,1.044628,0.000000,0.000000 -601708.755000,4612415.550000,4833,4855,120.808289,186.469421,173.576859,165.180176,148.684311,136.370270,136.816528,133.957047,133.246292,137.171906,134.940506,146.485962,162.469421,178.923981,190.279343,202.428101,200.238022,186.750427,163.114059,142.940506,132.824814,130.560349,123.527290,96.014893,80.543823,93.419846,101.667786,74.122337,33.684315,13.702497,11.229771,10.363651,8.388442,9.315716,8.904147,3.887613,0.428927,0.104959,0.282645,0.000000,0.128926,0.000000,0.120661,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.955000,4612415.550000,4849,4855,124.510757,182.692566,174.618179,164.750427,149.750427,136.766953,135.403320,133.948776,133.791748,137.560333,134.014893,146.560333,163.692581,178.783478,190.932236,201.519012,200.585129,187.229752,164.188446,143.659515,132.262817,130.089264,124.436378,95.312408,79.849602,93.386795,103.097534,73.932251,34.271091,14.518199,11.312414,9.724808,7.999187,7.631417,8.559519,4.046289,1.357854,0.266116,0.016529,0.091736,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.755000,4612415.550000,4868,4855,140.219849,184.385132,177.228119,167.004974,150.806625,136.872742,136.748779,135.095886,134.145462,138.228119,135.806625,146.087616,163.484314,179.476044,191.426453,202.798355,201.434723,186.914062,163.938858,144.170258,133.029770,129.798355,124.600014,96.071106,80.252914,92.426468,102.955399,74.922333,35.327293,15.867786,11.327291,10.912412,7.973566,9.423980,9.190924,4.035545,1.506615,0.264463,0.031405,0.000000,0.054546,0.000000,0.000000,0.115703,2.644628,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.555000,4612415.550000,4897,4855,138.062820,193.459518,177.451248,171.633072,153.062820,139.244644,138.533890,136.509125,136.740524,140.773560,137.856216,148.178528,164.277695,181.335556,194.591751,205.533890,203.682663,188.699188,165.881012,146.021500,134.872742,130.889282,127.418205,97.881012,81.600021,95.980186,104.244652,74.674393,36.566963,14.581009,11.583490,13.883489,9.758695,10.622329,10.933901,3.276041,0.686779,0.405787,0.112397,0.000000,0.000000,0.000000,0.067769,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.755000,4612415.550000,4938,4855,154.405792,199.265305,184.232239,170.901672,153.521500,138.447113,138.579346,137.223984,135.868607,142.273560,136.397537,147.810760,163.934723,181.257034,194.843811,205.447113,202.959518,188.290100,165.389267,145.149597,134.257034,130.769440,126.463646,96.356209,81.149597,94.843811,104.215714,73.868607,34.852089,16.300846,11.496714,13.056215,8.529765,7.031417,9.015717,4.397530,0.895045,0.352068,0.118182,0.000827,0.184298,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.555000,4612415.550000,5002,4855,120.617363,166.501663,172.972733,161.138031,147.187607,137.286789,135.989273,133.361160,133.410751,135.278519,135.964478,147.683487,165.700012,181.228943,193.526459,204.328110,204.038849,191.691742,168.005798,146.501663,135.485138,132.435547,126.427284,98.377693,80.749596,94.055382,105.724800,76.377708,36.989277,15.708282,11.493407,9.067781,8.424809,10.191751,9.846295,4.223977,0.929754,0.349588,0.356199,0.000000,0.000000,0.000000,0.214050,0.000000,1.276860,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.555000,4612415.550000,5102,4855,117.946297,168.202499,169.409103,160.971085,145.574402,137.756210,135.458694,133.417374,133.896713,135.078522,136.533081,147.285141,164.962830,181.913239,194.533081,204.061996,206.541336,192.830597,168.913239,147.607452,135.202499,132.458694,127.318199,98.012413,80.764481,95.987617,106.177704,78.070267,35.342995,13.726462,11.574399,8.203319,8.909106,8.961999,9.056212,3.192570,0.472728,0.127273,0.211571,0.000000,0.006612,0.000000,0.054546,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.155000,4612415.550000,5255,4855,118.630592,169.845459,170.217361,161.200836,146.771088,137.688431,135.349594,132.886795,133.308273,135.911575,136.738022,146.977692,165.878525,181.977692,195.663635,204.878525,205.696701,194.919846,170.043808,148.481827,137.547943,132.134720,128.027283,97.812408,80.820679,95.936378,108.085136,79.076874,37.779362,14.249604,11.638863,6.301663,7.422329,7.819024,7.199186,3.533891,0.285951,0.108265,0.000000,0.214876,0.000000,0.000000,0.000000,0.000000,1.359504,1.199174,0.000000,0.000000,0.000000,0.000000 -601823.155000,4612415.550000,5405,4855,126.310760,173.335556,173.649597,164.864471,150.451248,140.707458,137.641342,136.905792,136.319016,139.971909,140.038025,151.509109,168.674393,186.162003,199.542160,209.137207,210.872742,199.814896,175.980179,153.343811,142.054565,137.533890,131.418198,101.897537,84.418198,99.467781,112.244644,84.889267,40.021507,17.146299,11.947125,5.748771,10.163653,7.590924,7.749601,4.154553,0.566944,0.088430,0.214877,0.000000,0.049587,0.000000,0.101654,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.555000,4612415.550000,5472,4855,126.417374,186.863647,173.210754,163.343002,151.177719,138.623993,137.136398,136.508286,136.144638,140.475235,139.640533,150.111603,167.871933,185.574402,199.004150,210.177704,210.012405,200.731415,175.640518,154.318207,142.475235,137.095078,131.772751,102.863647,84.268608,98.888443,111.185966,83.566124,37.797535,16.215721,11.979358,7.326458,9.745471,8.146297,7.886791,2.237194,0.389257,0.200001,0.076860,0.144628,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601842.555000,4612415.550000,5502,4855,114.061180,183.904129,178.747116,164.209915,149.565308,137.342163,137.995041,135.102493,134.747131,137.689255,137.590103,150.639694,167.788437,187.548767,199.309097,211.209900,213.193375,200.771912,178.028107,154.813248,142.747131,138.028122,133.400009,103.763649,86.267792,101.342163,112.623154,83.672745,41.085968,14.322330,12.127292,8.223151,8.363652,8.825635,10.289270,3.651246,0.428926,0.442150,0.052893,0.001653,0.000000,0.000000,0.111571,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.955000,4612415.550000,5524,4855,110.268608,176.739670,178.657028,164.194214,147.714874,136.061996,137.053726,134.673569,134.425629,136.450424,137.921494,151.177689,169.053741,185.863632,199.987610,212.037186,214.557846,201.830582,176.731400,154.797516,143.491745,140.152908,135.681839,105.111595,87.632248,102.004150,114.533073,81.590927,40.871925,15.977704,12.334730,9.843816,10.691752,12.113240,11.884314,5.502489,1.642978,0.879341,0.176861,0.376860,0.000000,0.603307,0.103306,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601853.355000,4612415.550000,5556,4855,107.330597,183.247955,180.198364,166.016541,148.975220,138.446304,138.173569,135.966965,136.223160,138.702499,139.239685,150.942169,171.528946,187.495880,202.223160,214.033081,216.198364,203.330597,178.710754,156.504150,146.049606,142.801666,139.363647,108.066132,90.876053,104.388443,115.404976,85.264481,43.710766,17.625637,12.669440,11.709931,11.112414,12.706629,12.762825,6.532241,1.471078,0.417357,0.593390,0.048760,0.000000,0.058678,0.113224,0.739671,6.287604,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.555000,4612415.550000,5572,4855,117.799194,176.442993,177.285965,164.409927,148.376877,136.452072,136.576050,134.542999,133.204147,136.683487,137.410751,150.071915,168.526459,186.741333,200.724808,213.369415,215.030579,202.683487,178.840500,156.220673,145.534714,143.270264,137.790924,106.972748,89.212418,103.419029,114.981010,84.303322,41.832253,17.503323,12.526465,11.500014,10.211586,10.376048,12.634726,6.643813,1.139672,0.227274,0.420662,0.137191,0.081819,0.000000,0.060331,0.246282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.955000,4612415.550000,5589,4855,115.855385,184.309937,179.417374,164.442169,150.128113,136.648788,137.706650,136.227310,135.665298,137.367798,138.731430,151.781006,169.466949,187.078522,200.276871,212.442154,213.458679,200.673569,176.599182,153.623978,142.929779,139.409119,133.954559,104.309937,86.929771,100.756218,112.830597,82.425636,40.987625,15.071093,12.177704,12.658693,8.770266,8.393404,12.059520,6.238025,1.761986,0.570249,0.265290,0.269422,0.000000,0.000000,0.038843,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.555000,4612415.550000,5612,4855,132.026459,187.447937,180.332245,167.290939,150.257874,138.307465,139.919037,137.233078,135.580170,138.894241,139.191757,151.431427,170.919022,187.894226,201.216537,213.695892,215.001678,201.464478,178.216537,155.654572,144.489288,141.191757,136.745483,104.257858,87.200020,102.514061,115.059517,83.679359,40.927292,15.328117,12.431424,12.524811,9.794231,10.846297,10.372743,4.954555,0.457026,0.464464,0.176033,0.004959,0.000000,0.000000,0.106612,0.208265,0.000000,0.000000,0.000000,1.862810,0.000000,0.000000 -601869.955000,4612415.550000,5639,4855,119.843811,184.090088,181.966125,166.906616,149.022324,136.344635,136.709930,134.015717,134.602493,138.139694,137.412415,149.387604,168.685120,188.040497,199.817352,213.602478,214.338013,200.569427,176.875214,154.759506,143.404144,140.610764,135.172745,105.098366,87.691765,103.354568,113.900017,82.222336,40.181011,17.066133,12.288448,12.468611,9.270265,11.719026,13.704974,6.195878,0.908266,1.195869,0.222315,0.633885,0.011571,0.060331,0.110744,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.155000,4612415.550000,5655,4855,115.320671,183.028107,177.678513,165.632233,145.987625,134.698364,134.152908,133.318192,132.442169,136.037201,135.268616,148.739670,167.004135,185.392548,199.367752,211.301636,214.095032,199.442139,175.772720,154.210739,143.152908,140.648773,136.500015,105.797531,88.020668,103.566124,116.210762,83.533073,41.309937,14.946299,12.409110,11.815719,10.404976,11.678529,11.219849,6.314059,2.104136,0.312397,0.244629,0.057852,0.181819,0.257851,0.152066,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.955000,4612415.550000,5684,4855,117.204147,173.014053,173.890091,163.617371,149.146286,137.881821,135.741333,134.733078,133.344650,138.237198,136.625626,147.518188,163.104965,180.931412,192.923157,206.179352,206.683487,195.757858,172.303314,151.171082,142.658691,138.427277,134.700012,105.228943,88.733078,103.518196,110.286797,81.931427,39.220684,15.956217,12.245473,6.350424,9.057865,8.112411,10.749600,3.387609,0.580994,0.448762,0.209091,0.058678,0.023967,0.106612,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.155000,4612415.550000,5705,4855,121.528122,174.652069,170.850433,162.585968,148.610764,137.230591,135.602493,134.073578,132.412415,136.999191,136.726471,148.503326,163.156219,180.759521,192.709930,205.495056,206.420670,195.238861,172.263657,152.296707,141.726471,138.528122,134.172745,106.247124,90.147957,103.197540,110.776054,80.354568,37.924812,16.528944,12.197540,6.760342,11.923158,8.027288,10.376873,2.692567,0.493390,0.291737,0.137190,0.008265,0.000000,0.104133,0.385951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.155000,4612415.550000,5735,4855,99.499184,165.424820,171.590103,163.854568,148.499191,137.846298,136.185150,133.085968,132.928940,136.623154,136.755386,147.813248,162.631424,179.747131,191.474396,204.978531,206.581833,195.937210,173.044647,152.003326,141.540512,137.548782,133.672745,105.532242,90.019844,102.804970,110.317368,81.581833,37.391754,14.865308,12.152085,5.999184,9.533899,9.648775,8.643813,3.723149,0.400828,0.281819,0.185124,0.136364,0.059504,0.193389,0.198347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.955000,4612415.550000,5749,4855,99.910759,172.638046,170.646301,162.811600,149.505814,136.869446,135.497543,133.679352,132.323990,136.629776,137.481018,148.588455,162.762009,180.109116,192.340515,204.183502,205.662842,196.216553,172.100845,151.695892,141.712418,137.877716,133.654556,106.464478,89.530594,102.968613,111.514069,81.481010,38.902496,16.436380,12.150433,6.647118,9.444643,8.987617,10.540509,3.403311,0.591739,0.262812,0.238017,0.000000,0.188430,0.080992,0.957852,0.920662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.155000,4612415.550000,5770,4855,114.059532,169.067795,171.191757,163.588455,149.877716,139.175232,137.109116,134.803329,134.638031,138.596725,138.133911,148.654572,163.976883,181.042999,193.431427,204.687622,206.596725,195.530609,172.737213,151.009949,141.671097,138.571930,133.018204,106.671089,90.357040,103.299194,112.472748,82.034729,39.704151,16.099192,12.092582,8.763648,9.861998,8.332246,8.435550,2.775214,1.326449,0.087605,0.000000,0.000000,0.000000,0.004959,0.085951,0.560331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.955000,4612415.550000,5804,4855,107.950432,165.206635,170.487625,162.983490,147.603317,138.314072,137.057861,134.578522,133.157028,136.983490,137.851257,148.363647,164.289276,178.603317,191.289276,203.462830,205.495880,195.652908,170.586792,152.157043,140.495880,138.785141,134.636368,106.107452,90.454559,102.809937,110.925636,82.314064,39.628120,16.462828,12.239689,7.069434,10.530593,11.177703,8.100013,3.560338,0.690086,0.300828,0.067769,0.157852,0.082645,0.009918,0.176033,0.548761,2.282645,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.955000,4612415.550000,5839,4855,96.533073,163.400848,166.491745,161.508286,146.194229,135.714890,134.384308,132.301666,131.838852,134.673569,136.095062,145.871918,162.450424,177.632248,190.690094,201.904968,204.657043,193.367783,171.169434,149.037201,138.772751,136.797531,132.136383,103.599190,87.185966,101.128113,109.227287,81.764481,37.797543,15.735555,12.012416,6.689269,9.982659,9.621505,9.038855,3.323975,0.598349,0.185125,0.000000,0.367769,0.056199,0.015703,0.242976,0.280166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.355000,4612415.550000,5856,4855,99.485970,159.824799,167.238022,160.568604,146.552078,136.378540,134.155380,131.783493,131.337219,133.419846,136.213226,146.700836,161.403305,177.271088,190.196701,201.395050,204.485962,193.766953,171.089264,149.221497,139.485962,136.833069,130.890930,104.907463,88.700851,101.709114,109.585144,79.535561,38.766964,16.636381,11.899192,6.819020,9.515718,8.759520,10.284311,2.952073,0.620663,0.244629,0.134711,1.058679,0.000000,0.077686,0.654546,0.328099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.155000,4612415.550000,5885,4855,98.976875,161.861176,168.133911,158.927292,145.216553,136.861176,133.836380,132.365311,131.505798,133.993408,136.414902,146.299194,161.183502,176.357056,190.183502,200.960358,203.034729,193.712418,169.357056,148.679367,138.547134,136.274399,130.836380,105.158699,87.712418,101.563652,109.662827,79.472748,39.001671,15.875224,11.894235,7.561171,9.213239,8.600016,8.893401,2.988437,0.634713,0.175208,0.266116,0.123967,0.202479,0.004132,0.000000,0.132232,0.000000,0.000000,0.000000,1.109091,0.000000,0.000000 -601927.355000,4612415.550000,5926,4855,97.021507,154.897537,170.137207,160.434723,147.046295,137.451248,135.294235,133.120667,132.624802,134.385132,137.872742,146.401672,163.426453,179.046295,191.211578,202.261169,204.418198,193.814896,170.823151,149.517365,140.467789,136.773560,131.690918,105.244644,88.971924,101.707451,109.897537,80.723999,38.831425,15.804976,11.971920,8.240508,10.308279,9.812413,10.781006,3.968602,1.077689,0.487605,0.136364,0.119835,0.000000,0.203307,0.152893,0.326446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601930.955000,4612415.550000,5944,4855,100.030602,161.295044,168.815720,160.865311,148.427292,137.419037,135.716537,133.600830,132.237198,134.906616,135.865295,147.253738,163.303314,178.981003,191.658676,202.435532,204.683472,194.055359,171.352905,150.187622,140.253738,137.774399,133.245468,106.972755,88.914894,103.534721,111.022339,80.187622,40.071918,15.759521,12.113242,8.500014,9.706626,11.973570,10.155385,3.941329,1.116532,0.315705,0.147108,0.215703,0.000000,0.195869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.355000,4612415.550000,5966,4855,106.086792,160.871902,167.012390,159.797516,145.599167,135.954559,134.706619,132.723145,132.161163,134.838852,135.789276,146.491730,162.037186,177.169418,189.409088,201.442154,204.392563,193.342972,169.285126,148.301651,138.896698,134.797531,130.500015,104.078529,86.219025,101.392578,108.582664,80.235550,37.062004,15.613241,11.863654,6.738028,9.243814,8.167784,9.628112,4.139679,0.652068,0.242150,0.020661,0.000000,0.019008,0.016529,0.397521,0.549587,0.000000,0.000000,1.832232,0.000000,0.000000,0.000000 -601942.355000,4612415.550000,6001,4855,100.504982,158.463654,169.538025,161.785980,146.066971,137.819016,135.042160,132.785950,132.554550,134.876862,136.298355,148.571106,163.901688,178.397537,191.538040,201.752899,204.843811,192.075241,170.290115,149.554581,139.785980,136.637207,131.463638,104.372734,88.686798,103.728104,109.703308,79.893410,38.802498,15.974398,11.951259,6.921500,10.644642,8.433901,10.985138,3.874388,0.808267,0.356200,0.065289,0.031405,0.124794,0.000000,0.078513,0.228099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.155000,4612415.550000,6020,4855,96.529762,159.959503,166.207428,160.141312,144.885147,135.314896,134.571091,132.331421,132.686783,133.835556,135.000839,146.984314,162.711563,178.620667,190.521484,201.529755,203.414062,192.835541,170.471893,148.752899,138.628952,135.480179,131.736374,104.257027,87.827278,101.025627,109.405792,78.785965,36.637207,15.936381,11.976051,7.795054,8.884313,8.400015,8.783484,3.800834,1.044631,0.154546,0.142976,0.181819,0.000000,0.004959,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.155000,4612415.550000,6045,4855,91.390099,156.629745,170.712387,158.398346,145.538834,137.456192,135.150421,130.720673,131.613235,134.150421,135.447937,145.993378,162.274368,177.373550,189.381805,201.414871,203.249573,192.472717,169.728912,148.042969,139.092560,133.563644,129.654556,103.489273,87.538864,100.852913,109.125641,78.952087,37.968613,14.686795,11.786796,6.252077,9.292576,10.070264,7.147119,3.280173,1.080995,0.800829,0.480166,0.044628,0.058678,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601959.155000,4612415.550000,6085,4855,90.870270,153.076859,169.655396,159.151260,146.052094,136.159531,133.704987,131.539688,130.936371,132.919846,135.440506,144.704987,160.771103,176.547943,188.680191,199.977707,201.820679,191.903336,168.415726,147.407440,137.862000,135.060349,129.936371,103.523155,86.035553,100.465302,108.779350,78.250435,38.961174,16.835556,11.812416,6.172740,8.985966,9.907454,9.103320,4.494223,0.571902,0.335539,0.255373,0.181819,0.051240,0.021488,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.755000,4612415.550000,6123,4855,82.707458,156.228119,168.038010,157.442993,144.343811,134.054565,132.699188,129.988449,129.839691,130.938858,133.046295,142.674393,160.104141,174.781830,187.814896,198.492569,199.616547,188.095886,164.971909,145.128937,135.467789,130.897537,126.781837,100.847954,83.839691,98.451263,106.715721,77.600021,37.013245,16.109110,11.525640,7.442988,8.855387,9.763653,7.894227,5.101661,1.115705,0.204134,0.133885,0.000000,0.257025,0.004132,0.468595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.955000,4612415.550000,6149,4855,88.507454,157.482681,168.102493,159.019867,143.705826,135.085968,132.788437,129.871078,129.466125,131.871078,132.325638,142.672760,159.085983,174.788452,187.664490,198.598373,198.375229,187.920685,165.433075,144.482681,134.441330,131.986786,126.036377,100.044640,83.747124,96.474388,106.581833,77.085968,38.590103,14.469440,11.457870,7.586788,9.442165,8.726462,8.243814,5.233893,0.600829,0.233059,0.128926,0.000000,0.000000,0.001653,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.955000,4612415.550000,6179,4855,100.744652,158.314896,167.645462,157.381012,142.529770,133.248779,131.381012,128.852081,128.686783,129.744644,131.314896,142.662003,158.100006,173.232239,185.628937,196.124802,198.207458,185.207458,164.438858,144.116547,133.248779,130.893402,125.827286,98.538033,82.571091,97.810760,106.174393,76.397537,35.852081,14.073570,11.438861,5.652077,9.328941,9.095883,8.931417,4.071907,0.536365,0.267770,0.105785,0.200827,0.000000,0.005786,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.555000,4612415.550000,6207,4855,105.281830,155.728119,170.686783,158.000839,146.414062,135.678528,134.182663,131.108276,131.604141,131.769440,132.628937,142.612411,159.447113,175.438858,186.885132,198.273560,199.695053,188.009109,164.306625,145.232239,134.033890,132.860336,126.281830,99.653732,82.819023,98.017365,106.761169,77.967781,39.265308,15.190926,11.480185,7.821500,9.554563,9.671917,10.880179,5.500836,0.844631,0.214051,0.209091,0.589258,0.000000,0.000000,0.915704,0.000000,0.000000,0.000000,1.787603,0.000000,0.000000,0.000000 -601987.555000,4612415.550000,6227,4855,100.924812,161.379364,168.569443,158.594238,143.941345,134.346298,132.230591,128.949600,128.263641,130.065308,130.503311,141.420685,157.809113,173.412415,185.701675,196.379364,197.561172,186.718201,163.271927,143.271927,132.924805,129.949600,123.900009,97.503319,81.776054,96.536377,106.164482,77.585968,36.718201,14.447951,11.263656,6.983483,9.727289,9.077701,9.081832,3.309924,1.404962,0.342976,0.342976,0.060331,0.012397,0.153719,0.000000,0.268595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601993.355000,4612415.550000,6256,4855,102.866135,158.353729,169.378525,158.816528,145.130585,134.452911,133.122330,128.932251,128.733902,129.766968,131.469437,141.609924,158.328934,174.171906,186.312408,196.775208,198.444641,186.833069,163.742157,143.535538,134.403336,130.634735,125.072746,97.651260,82.419861,96.800026,106.114075,77.750435,35.923988,15.033902,11.370268,7.161169,8.587619,9.357865,8.941336,3.299180,0.857027,0.133885,0.057025,0.295042,0.119008,0.077686,0.346281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601999.555000,4612415.550000,6287,4855,102.169441,166.384308,168.582672,159.400848,144.053757,133.458679,132.731415,128.995880,128.260345,129.913239,129.913239,141.607468,158.533081,173.838882,185.756226,197.450439,199.028961,186.177719,163.681854,143.268631,132.929764,130.524796,124.590927,98.301666,80.243820,95.119850,104.293404,77.359520,35.938034,13.960348,11.326467,8.482658,8.784312,9.309106,9.537203,3.538025,0.602482,0.336366,0.174381,0.238844,0.000000,0.000000,0.856199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.755000,4612415.550000,6308,4855,103.873573,167.278503,172.782639,161.377686,146.352890,135.724808,134.261993,130.427277,129.914886,131.286789,131.708267,143.964462,159.997513,175.542969,187.666931,198.906616,200.055374,188.129745,165.774368,144.493378,134.898361,132.104965,125.518188,99.063652,83.683487,97.551254,105.890099,76.972748,38.352913,14.410762,11.410763,9.245469,10.856215,9.094232,9.991749,4.345462,0.706614,0.376860,0.232232,0.035537,0.063637,0.000000,0.597521,0.433885,0.000000,2.116529,0.000000,0.000000,0.000000,0.000000 -602006.555000,4612415.550000,6322,4855,107.471092,163.669434,168.719009,161.247955,145.801651,134.454559,133.545471,131.421509,130.057861,130.281006,131.991745,143.000000,159.760345,177.049591,187.975220,198.454559,200.140518,187.388443,165.247955,143.975204,133.727295,130.628113,125.727287,100.314064,82.917374,97.297539,106.768608,77.074394,36.719028,14.688447,11.429770,7.885137,9.549603,9.111586,9.903320,4.853727,1.036366,0.148761,0.297521,0.273555,0.217356,0.087604,0.471901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602010.355000,4612415.550000,6341,4855,92.177704,161.500031,171.466980,159.293427,143.128128,135.210770,133.334732,129.615723,128.665314,130.450424,131.805801,142.615738,158.929779,174.020691,187.045486,198.227295,198.723160,187.309937,164.095078,143.318207,133.640518,130.342987,126.227287,98.566139,82.549606,95.971100,104.590935,76.409119,34.508282,14.562826,11.475224,8.871087,8.819021,9.440511,9.065303,3.909097,0.982648,0.319836,0.244629,0.114877,0.014876,0.134711,0.419009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602013.755000,4612415.550000,6358,4855,100.066132,166.281006,170.297531,159.314072,144.173569,133.752075,133.181839,129.355392,129.148773,129.826462,131.066132,142.760361,159.958694,174.735550,186.652908,197.454559,198.975220,186.661179,163.099182,143.603333,133.264481,130.900848,126.000023,98.884315,81.942162,93.925636,105.289261,75.429771,34.214897,13.832249,11.454565,7.623979,11.506628,8.709932,9.156213,4.137198,0.902483,0.547109,0.390083,0.000000,0.000000,0.109092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.955000,4612415.550000,6384,4855,98.288452,168.181015,171.966141,161.098373,144.916550,135.759521,133.023972,131.759521,130.809097,132.643814,134.214066,144.528122,160.751266,176.007462,188.238861,199.106628,199.247131,186.263657,164.511597,144.197540,134.552902,131.048767,126.263649,98.503319,82.528107,96.371086,104.693398,76.709930,38.470268,14.394233,11.478532,8.479351,9.229769,10.132248,9.185966,3.176864,0.509919,0.584299,0.180166,0.294216,0.000000,0.076860,0.082645,0.000000,0.000000,2.176860,0.000000,0.000000,0.000000,0.000000 -602024.155000,4612415.550000,6410,4855,103.685966,173.619873,173.239700,162.562012,145.843002,136.727310,133.942169,132.041336,131.892578,132.834732,133.330597,144.983505,161.099213,176.074417,188.570282,200.603317,201.099213,188.578552,165.859543,144.809952,135.082657,131.958694,126.363655,99.454559,84.148773,95.909103,104.586792,75.421501,36.983486,15.697540,11.487623,9.108277,10.694231,9.906628,9.117369,3.524800,0.786780,0.231406,0.299174,0.300001,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.155000,4612415.550000,6460,4855,104.014076,171.906616,170.906616,160.369446,146.708298,135.815735,133.782669,130.228958,130.542999,133.055405,131.683502,143.237213,159.592590,176.840500,189.427277,201.088440,201.245468,187.377701,164.790939,144.080185,134.427292,132.319855,126.518211,98.476883,82.592590,95.402504,105.650436,75.385979,36.394234,13.988446,11.501671,10.027286,8.818197,9.788445,10.469435,3.998354,0.706616,0.228927,0.362811,0.125620,0.002479,0.000000,0.169422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.955000,4612415.550000,6474,4855,98.069443,168.664459,169.829758,160.168594,143.284317,133.400024,131.044647,128.829773,128.962006,131.069443,130.540512,141.457870,158.127274,175.391739,187.986771,199.375198,199.424774,186.176849,164.044632,144.350433,134.242996,131.738861,126.763657,97.259529,81.846306,95.383499,106.697548,76.548790,36.780186,13.589274,11.523986,9.400839,9.266958,8.016541,9.638857,3.501660,0.859507,0.145456,0.072727,0.076033,0.138017,0.000000,0.000000,0.457852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.355000,4612415.550000,6491,4855,119.309944,169.698364,171.979355,163.681839,147.607468,136.334732,134.516541,131.623978,131.326462,135.128113,133.938034,145.524811,161.334732,179.417374,192.541336,204.177689,202.053726,189.921509,167.648773,147.549606,137.475235,134.111588,129.954559,100.483490,84.136383,97.623985,108.822327,79.549614,38.632248,15.741340,11.814069,11.438857,10.709107,10.211585,9.246296,4.478518,0.361160,0.205787,0.633886,0.000000,0.000000,0.256199,0.035538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.155000,4612415.550000,6505,4855,110.855392,172.508270,171.623962,161.888443,144.466965,132.334732,131.119858,127.855385,127.756218,132.706635,130.814072,142.607468,158.805801,176.359497,190.111572,202.070251,201.384293,188.483475,166.458694,146.301666,135.607452,132.582657,126.227287,98.219025,81.483490,97.268608,107.971092,77.632248,35.838863,13.740513,11.475224,9.371088,8.030594,9.504146,9.297535,3.760337,1.098350,0.106613,0.300827,0.058678,0.000000,0.000000,0.000000,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.955000,4612415.550000,6519,4855,106.213249,174.436371,170.618195,161.064468,146.295883,133.576889,133.279358,130.965317,130.023163,133.593414,131.808289,144.279358,160.039673,178.147110,190.378525,203.609924,203.320663,189.386780,168.609924,147.973572,137.709106,135.114075,128.890930,99.915726,84.386803,98.733910,107.824814,78.502502,39.114067,16.708282,11.717375,11.153734,8.543817,10.167782,10.127286,4.863646,0.871077,0.161984,0.061157,0.183471,0.130579,0.086777,0.087603,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602049.955000,4612415.550000,6539,4855,117.114075,174.039688,171.047958,163.494232,144.444656,131.841339,131.923996,129.923996,129.510773,133.130600,131.097549,143.155396,159.039688,177.899200,191.014893,203.419861,203.709106,188.965317,167.081009,146.923996,137.105804,134.568619,128.436386,99.857872,83.114075,98.204979,108.295891,76.618202,36.403324,13.505804,11.676053,10.618197,10.021502,10.579355,8.415714,5.538025,1.224796,1.057853,0.817356,0.568595,0.198347,0.425620,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.955000,4612415.550000,6564,4855,117.715721,176.839676,169.434723,164.823151,147.178543,135.616562,133.203323,132.467789,131.980179,137.674408,134.294235,146.682693,162.881012,180.038025,193.963654,208.839676,207.467789,192.492569,172.393402,152.566971,141.112427,138.170273,131.690933,103.128944,86.608284,103.203323,111.104156,80.145477,37.971916,16.337208,11.971920,12.904147,11.442165,9.920676,10.825633,4.642158,1.470251,0.290911,0.336364,0.112397,0.526447,0.000000,0.000000,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602058.555000,4612415.550000,6582,4855,116.247948,174.975204,167.462814,163.504135,147.933884,136.966965,133.223160,131.834732,131.578522,136.429764,134.528946,144.157043,160.842972,180.322311,192.677689,206.694214,206.363632,191.421494,170.049591,150.280991,140.082657,137.495880,130.909103,101.330597,85.578529,102.677704,111.380180,77.818199,36.702499,14.918199,11.900845,11.314063,9.309106,10.949602,10.800841,6.941332,0.333887,0.242150,0.449588,0.328100,0.219008,0.077686,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602063.755000,4612415.550000,6608,4855,123.478523,177.742981,170.362808,163.866943,146.552917,135.883484,132.751266,129.660339,129.478531,134.528122,131.098358,143.304977,159.660339,176.131409,191.759506,203.528107,204.660339,188.470245,167.924789,148.941345,138.569443,135.428940,129.081833,98.511581,84.090096,100.486786,110.726456,78.040504,38.197540,15.255389,11.734729,10.270261,8.498362,10.764479,9.053732,5.071910,0.755374,0.313225,0.000000,0.390910,0.027273,0.034711,0.241323,0.000000,1.500000,0.000000,0.000000,0.000000,0.000000,0.000000 -602067.355000,4612415.550000,6626,4855,127.738029,184.184311,173.928101,165.291748,146.804138,135.647110,133.969421,131.614059,131.911575,137.407440,132.936371,144.688431,160.605789,178.514877,192.878525,206.060333,205.333069,190.564468,169.928101,149.680176,139.663635,136.060333,131.209091,100.308273,85.109932,103.812401,112.068604,80.333069,38.729771,16.251257,11.928118,14.174397,9.779355,9.869437,11.548777,6.253730,1.249590,0.124794,0.128926,0.025620,0.043802,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602072.555000,4612415.550000,6652,4855,124.690109,157.772766,160.855408,151.045471,136.177719,125.971092,121.847122,119.814064,119.235550,121.599190,122.888443,132.962830,152.070267,168.698380,181.161194,193.177719,194.020691,184.285156,161.318207,140.268616,130.822327,126.053734,120.954559,93.342995,74.665306,93.161171,107.690102,79.971092,38.119858,14.831422,10.995886,5.390921,10.875220,9.505799,9.089270,3.751247,0.891739,0.178513,0.025620,0.045455,0.053719,0.004133,0.158678,1.025621,0.000000,2.095042,0.000000,0.000000,0.000000,3.170248 -602081.155000,4612415.550000,6695,4855,141.183502,162.993393,162.191742,150.241333,134.249603,124.795052,121.646294,119.390091,117.588440,120.720673,121.365295,132.216537,149.795044,166.357040,179.183487,190.125626,191.836380,182.613235,159.786789,139.712402,129.398361,123.613235,117.836372,92.133904,73.968613,93.456207,107.819847,80.340508,38.092579,14.034728,10.712415,7.761996,8.966956,9.849600,10.326461,3.002488,1.180996,0.421489,0.490083,0.285125,0.000000,0.000000,0.233058,0.580166,4.355372,0.000000,0.000000,11.128926,0.000000,3.071901 -602095.555000,4612415.550000,6767,4855,187.224808,166.257858,156.406616,143.208267,127.629768,117.894234,112.943817,108.762001,108.514069,109.299194,111.638031,122.117371,139.580170,155.447937,166.414886,177.819839,177.869431,170.836380,152.761993,136.076050,126.497536,123.439690,120.109108,93.299194,74.819862,97.679352,120.604973,94.985130,44.191757,15.805804,10.919028,9.431417,9.576873,11.160345,15.781837,8.158690,1.161160,0.932233,0.961159,0.212397,0.171075,0.928926,0.010744,0.093389,4.312397,0.000000,0.000000,0.000000,0.000000,0.000000 -602194.355000,4612415.550000,7261,4855,105.392586,153.487610,161.247940,144.181824,128.107452,118.371918,116.157036,112.314064,112.231422,111.644646,113.305801,125.760338,144.570251,161.421494,175.570251,187.892563,187.735535,177.380173,155.314056,133.338852,121.735542,116.851250,110.909103,81.223167,64.123985,82.181839,100.173569,73.024818,34.082664,13.366960,10.082664,8.657866,8.071091,8.773569,8.380180,3.615708,0.606613,0.304959,0.103306,0.558678,2.543803,7.969429,9.357028,2.925622,5.296695,0.000000,1.280165,0.968595,1.243802,4.365290 -602197.355000,4612415.550000,7276,4855,101.066139,156.567780,157.063644,143.319839,127.509933,117.022331,115.658699,112.790924,111.931419,112.047127,113.981010,125.113243,145.435547,161.790924,175.625626,186.642151,188.542984,176.683487,153.823975,132.468597,121.270264,116.749603,109.972755,81.129776,62.757874,82.443825,98.336388,72.005806,34.270271,12.756216,9.997540,6.641334,7.429766,7.270263,9.669436,4.816536,0.335538,0.147934,0.061157,0.000000,1.515703,0.980167,0.611571,0.588430,0.000000,0.000000,0.000000,0.000000,0.000000,2.138017 -602201.755000,4612415.550000,7298,4855,98.494240,155.816528,158.477692,145.047943,129.320679,117.915710,116.609924,113.742157,114.081001,113.279343,115.328934,127.477699,145.932236,163.585129,176.568604,188.138855,189.361984,179.155380,154.676041,134.411591,122.667778,118.494225,112.527283,82.899185,66.138863,82.287621,100.089264,71.923988,32.874397,13.941340,10.229771,6.938031,8.401669,8.845469,8.652081,3.253725,0.560332,0.370249,0.152893,0.061157,0.127273,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.170248 -602207.955000,4612415.550000,7329,4855,103.164482,153.941345,160.809113,145.412415,131.081833,120.123161,118.247124,115.420677,115.222336,116.073570,117.495064,128.693405,148.073578,164.734726,178.742996,189.842163,191.635559,181.205811,156.321503,134.230591,124.065308,120.627289,115.081841,85.511589,67.189278,84.552910,98.346298,71.842171,32.453739,12.995059,10.462003,7.717369,8.114892,7.934726,9.105801,4.786785,0.748762,0.147108,0.218182,0.206612,0.152066,0.538844,0.337190,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602216.755000,4612415.550000,7373,4855,96.928123,160.060333,159.762817,147.217377,131.200836,120.671913,119.283485,116.200844,115.308281,116.333069,117.597534,128.357864,148.473572,164.795868,177.952896,188.647110,190.514877,179.440506,155.919861,133.423981,122.862000,117.903320,114.027290,84.291756,67.118195,83.721512,96.886803,68.622330,31.820681,12.288448,10.366136,7.382658,8.303322,9.110759,8.334726,3.377692,1.097523,0.116529,0.060331,0.053719,0.003306,0.103306,0.000000,0.056199,1.488430,2.976033,0.000000,1.102479,1.219008,0.000000 -602229.355000,4612415.550000,7436,4855,101.237198,154.595871,159.934708,146.083466,130.728119,120.967781,117.414062,114.728111,113.885139,116.141335,117.133072,127.794228,146.504959,163.546280,177.050415,188.728088,189.736359,179.124786,155.339661,133.389267,123.066956,118.447121,112.736374,84.430588,65.992584,82.513237,96.430588,68.703316,32.447128,13.349605,10.248780,7.438857,9.333900,6.985137,9.030593,3.678519,1.309919,0.442976,0.028099,0.128926,0.000000,0.102480,0.021488,0.010744,0.000000,1.394215,1.168595,1.122314,4.816529,0.000000 -602239.355000,4612415.550000,7486,4855,107.157051,166.925613,160.942154,148.297516,132.628113,120.181831,120.884315,119.000015,119.958694,123.363655,122.628113,137.355377,159.314056,179.586777,194.900833,207.942154,209.495865,197.586777,176.107437,155.173553,141.975204,141.066116,136.454559,102.561996,80.785149,100.851265,124.950432,92.198372,40.669441,14.116548,12.404978,11.961174,10.353735,10.976876,11.316544,5.180175,0.563639,0.470250,0.323141,0.038017,0.033058,0.000000,0.000000,0.000000,1.438843,0.000000,0.000000,0.000000,0.000000,0.000000 -602242.555000,4612415.550000,7502,4855,102.207451,167.662827,162.001663,147.720673,132.828110,120.034721,120.629761,118.051247,118.869431,122.332245,122.200012,136.671082,159.398361,179.150421,194.423157,207.910751,208.836380,198.869431,176.125626,154.919022,144.133896,142.447937,138.109100,105.224800,83.183479,101.919022,127.257858,92.133896,40.919029,14.552084,12.555390,9.042161,9.902495,12.383487,13.653736,5.187614,1.372731,0.081819,0.486778,0.002479,0.113223,0.000000,0.000000,0.000000,1.379339,2.737190,0.000000,2.049587,0.000000,0.000000 -602245.955000,4612415.550000,7519,4855,105.377701,168.755386,163.606628,148.143814,132.193405,118.829765,119.862823,118.523979,118.457863,121.267776,122.490921,137.152084,160.474396,180.474396,195.515717,208.937210,209.507462,199.904144,178.953735,157.391754,146.218201,143.821503,141.309113,106.119019,84.986794,103.862823,129.259521,96.937202,43.284317,14.149604,12.846300,10.618198,10.281008,11.505802,13.819025,8.043813,0.693392,0.132233,0.387604,0.028099,0.108265,0.219009,0.000000,0.000000,0.000000,1.354545,0.000000,0.000000,0.000000,0.000000 -602250.355000,4612415.550000,7541,4855,116.779358,163.755371,162.135544,147.441330,130.606628,119.433067,120.647942,117.771912,119.474396,122.804970,123.962006,138.209915,162.003311,182.259506,198.242981,210.433060,211.400009,200.391739,179.176865,157.730576,146.309097,145.614883,141.945465,108.110764,86.284317,105.127289,131.771927,99.234734,45.019859,15.881837,12.904151,11.833074,10.192577,12.363654,15.404148,6.938856,1.041326,0.195042,0.309918,0.046281,0.042975,0.132232,0.000000,0.000000,0.000000,0.000000,1.176860,1.013223,0.000000,0.000000 -602255.355000,4612415.550000,7566,4855,115.901672,164.312408,160.552078,146.849594,130.659515,119.676048,120.262825,119.386795,120.287621,123.552078,126.031418,141.890915,165.717361,187.411575,204.957031,218.080994,220.353729,212.047943,188.923981,166.676041,156.651245,154.304153,149.345474,113.725632,90.047951,112.122330,139.155380,104.750427,46.362003,16.588446,13.576880,11.168611,12.400015,13.368613,16.570267,8.442163,1.569425,0.366117,0.151240,0.176860,0.137190,0.166116,0.000000,0.000000,2.785124,0.000000,1.167769,0.000000,0.000000,2.203306 -602261.955000,4612415.550000,7599,4855,109.766136,156.840500,156.179352,143.716522,126.567780,117.485138,119.261993,117.865295,120.460342,122.972740,126.030594,142.303299,167.526459,189.270248,206.939667,221.253708,226.038834,215.857025,192.857025,170.402466,158.716537,157.460342,154.700012,118.733070,93.402489,114.576042,141.609085,106.749596,48.807457,16.957869,14.063655,11.551255,13.346298,15.833077,16.589273,9.514890,0.970250,0.420662,0.604960,0.161158,0.124794,0.009918,0.000000,0.000000,0.000000,0.000000,1.136364,0.000000,2.089257,0.000000 -602268.555000,4612415.550000,7632,4855,97.935562,161.038849,156.096710,140.138031,125.675224,117.038864,117.972748,117.063652,118.377701,122.146301,126.063652,142.807449,166.559509,188.823975,205.113235,220.071915,223.683487,214.981003,195.080170,172.939682,161.964478,160.245468,155.518188,120.344643,94.766136,117.675224,143.642151,108.865295,50.642166,17.281010,14.138035,10.381006,12.214067,15.412414,18.645472,8.289269,0.804960,0.115703,0.011570,0.181819,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602271.155000,4612415.550000,7645,4855,111.458694,155.671082,157.943817,142.323975,129.034729,118.538864,118.604973,116.943817,119.927292,121.712418,124.695885,140.778519,163.869431,185.439682,201.117371,213.786789,217.290924,207.274384,187.009933,165.629761,153.745468,151.307449,148.109100,112.588455,89.200020,111.770271,136.282654,103.307457,46.414894,17.819853,13.464481,12.371918,13.259521,15.043820,14.323985,8.000013,1.288433,0.116530,0.069422,0.150413,0.085124,0.071901,0.000000,0.000000,1.124794,1.190083,2.195042,0.934711,0.000000,0.000000 -602273.955000,4612415.550000,7659,4855,107.050423,156.438858,158.901672,141.976044,127.306625,117.562820,117.686790,115.802490,117.703316,120.430588,122.942986,138.281830,161.232239,182.670258,197.604141,209.802490,212.025635,203.827286,182.612411,161.091751,149.480179,146.372742,144.372742,110.430588,86.430603,107.405800,131.711578,98.521500,45.009113,16.104151,13.124812,10.842164,10.789270,13.166960,15.934728,7.355385,1.421492,0.350414,0.302480,0.155372,0.108265,0.263637,0.497521,0.000000,0.000000,0.000000,0.000000,0.000000,1.190909,0.000000 -602278.555000,4612415.550000,7682,4855,110.942162,155.468597,156.815720,142.394226,125.666962,116.972748,115.700020,113.171089,115.088448,116.410759,119.328117,133.063644,155.212402,173.873566,188.179337,199.774384,201.890091,192.716522,173.625626,152.319839,141.658691,139.542984,136.063644,103.047127,81.981010,102.658699,127.138023,95.807457,43.228943,14.782663,12.369440,9.561172,10.290098,11.581008,15.419850,8.790923,1.218185,0.479341,0.257026,0.033885,0.049587,0.000000,0.000000,0.000000,1.295041,0.000000,1.083471,0.000000,1.104959,4.063636 -602284.355000,4612415.550000,7711,4855,107.222336,156.266144,158.489273,142.654556,126.390091,114.902489,114.952072,111.828110,111.365295,113.290916,115.084305,127.795052,148.604965,166.125626,180.042969,188.497528,190.026443,180.811569,161.009933,141.373581,130.811584,128.596710,126.381828,95.662819,75.530586,95.299187,118.472740,90.927284,40.571922,13.518200,11.489276,9.469434,11.151255,11.262825,12.589271,8.417366,1.017358,0.484300,0.221488,0.064464,0.071075,0.065289,0.000000,0.000000,1.377686,0.000000,2.149587,2.102479,0.000000,3.912397 -602291.755000,4612415.550000,7748,4855,108.862831,158.598343,156.094223,142.168594,126.424805,114.573563,113.937202,111.416542,110.408279,112.523979,114.242989,126.259521,146.284302,163.201660,176.879349,187.119019,188.143799,179.970245,158.945465,139.259506,128.276047,125.937195,124.490921,92.267792,72.028122,92.747124,113.267776,83.780182,36.614899,14.028943,11.317373,9.919848,10.408280,10.798362,11.695883,6.355382,0.842152,0.475209,0.158678,0.128927,0.000000,0.157025,0.000000,0.013223,2.743802,0.000000,1.105785,3.024794,1.088430,0.000000 -602296.755000,4612415.550000,7773,4855,111.576042,150.708267,155.344635,138.691742,123.476868,113.204140,110.848770,109.162819,108.823975,110.865295,111.576042,124.460342,144.228943,162.691742,175.699997,186.138016,187.947922,178.253708,156.328110,136.278519,125.204140,122.220673,118.336372,87.270256,67.030594,86.286789,104.047119,74.989273,32.014072,12.594233,10.757871,8.486789,7.133072,7.887616,8.585964,3.746288,0.569423,0.226447,0.303306,0.071075,0.229753,0.000000,0.410744,0.013223,1.222314,0.000000,0.000000,1.813223,3.314876,0.000000 -602302.155000,4612415.550000,7800,4855,102.576050,152.412415,153.214066,139.023987,122.255386,112.519844,111.809105,109.354553,109.957863,110.594223,112.114891,125.156212,146.164490,163.329773,177.007462,187.974396,188.164490,179.164490,155.123154,134.007446,123.652077,120.147942,115.990921,84.495056,65.709938,83.445465,100.247116,72.387611,33.462006,14.242993,10.544647,8.482656,9.728115,9.594229,10.798362,5.547117,0.505787,0.638018,0.881820,0.272728,0.212397,0.514877,0.293389,0.000000,0.000000,1.346281,2.250413,2.117356,0.000000,4.028100 -602304.955000,4612415.550000,7814,4855,117.147957,151.609100,154.716537,139.493393,123.385963,113.567780,111.815712,109.584305,109.030586,110.633896,112.146294,124.576042,145.642151,163.377701,176.683472,186.947922,187.542969,177.493378,155.633896,134.741333,123.443810,120.964470,116.881828,85.534729,66.071922,85.947960,103.113235,74.956215,33.914898,12.474398,10.625638,8.319848,9.581834,9.465302,9.573568,6.048769,1.246284,0.404959,0.377687,0.191736,0.297521,0.057025,0.242975,0.015703,0.000000,4.011570,0.000000,0.991736,0.000000,0.000000 -602308.355000,4612415.550000,7831,4855,105.378525,157.194229,153.574402,139.690094,122.665306,112.648773,111.673569,108.772743,109.252083,109.805801,111.293404,124.202492,143.913239,162.053741,175.194229,185.326462,184.342987,175.607452,153.739685,134.343002,122.210762,120.442162,116.318199,87.681831,66.954559,85.557869,105.491753,77.252083,34.946297,13.038035,10.574400,9.828115,9.084312,9.971088,10.823982,6.281002,1.552896,0.402481,0.412398,0.193389,0.133885,0.273555,0.000000,0.000000,0.000000,1.374380,1.179339,0.901653,5.556199,0.000000 -602314.955000,4612415.550000,7864,4855,101.262001,150.761169,147.397537,133.438858,118.149597,106.579353,103.909927,102.182655,102.207451,102.719849,104.050423,115.199188,135.471909,151.934723,164.422333,168.934723,165.157867,153.761169,134.918198,116.860344,108.116539,106.100014,107.100014,81.901665,61.695057,81.529762,115.389267,95.885139,43.116547,11.559522,9.736382,7.879351,9.457038,11.004148,13.309109,7.082655,1.283474,0.426447,0.243803,0.128100,0.241323,0.306612,0.519009,0.000000,2.447108,3.586777,1.939670,0.951240,1.061984,0.000000 -602317.955000,4612415.550000,7879,4855,119.414902,148.333908,148.928940,130.928940,114.515709,105.565308,102.664482,101.449600,101.284317,102.185135,102.614899,112.920670,132.532257,149.829773,160.854568,166.656219,162.226471,150.466141,132.251266,114.441322,106.391754,105.044640,106.854568,83.077705,62.242996,82.986794,121.614876,101.557037,47.548779,14.223159,9.714069,8.191750,9.076874,11.860348,17.586796,8.569431,1.218186,0.933060,0.389258,0.138844,0.072728,0.327274,0.431405,0.000000,3.726447,2.700827,1.997521,0.000000,5.213223,0.000000 -602322.755000,4612415.550000,7903,4855,118.948776,149.660339,142.123138,126.594223,111.090096,100.701668,100.908279,97.718193,97.271912,100.833893,102.304970,113.990921,136.181015,152.693390,165.387604,175.040497,174.156204,165.999176,149.495041,132.271912,121.833893,121.685135,125.809105,97.924805,74.660339,98.718193,135.866959,113.883484,55.412418,14.685143,11.437208,9.914063,12.009107,18.023987,23.577705,16.066133,1.659508,0.618184,0.106612,0.123968,0.000000,0.003306,0.000000,0.406612,3.943802,3.595868,3.166943,8.093390,6.158679,0.000000 -602330.355000,4612415.550000,7941,4855,128.608276,152.725632,142.816528,128.320663,113.014885,102.477692,101.659508,100.097527,100.783478,103.857857,106.510750,118.188438,138.188431,155.585129,168.403290,177.700821,179.799988,173.965286,157.452896,140.576889,132.452896,131.287613,131.800018,103.395050,82.766945,103.833061,128.857864,105.502487,49.543823,15.945472,11.981835,12.641337,13.859521,19.419851,23.874399,18.781010,5.145463,1.214052,0.695043,0.868598,0.000000,0.679341,1.586778,2.427274,7.345456,9.342150,8.039670,4.944629,6.244629,0.000000 -601043.155000,4612405.550000,1505,4905,96.203316,105.031418,89.014885,77.047943,62.990101,51.568615,48.171921,42.733902,39.444645,38.320679,37.568615,49.849606,68.915718,83.742165,97.089264,109.221504,111.345467,109.378525,102.411583,90.014893,79.097534,79.609932,71.072739,32.773575,14.766956,42.182663,100.915710,103.527283,55.923985,11.324809,6.461176,13.953733,14.212412,24.329771,38.355392,28.339689,1.380168,0.000000,0.000000,0.000000,0.000000,0.004132,0.041322,0.000000,7.259505,3.876861,2.290084,2.128927,4.380992,2.924793 -601049.155000,4612405.550000,1535,4905,50.030598,63.530598,52.495056,42.476051,26.933075,15.789272,13.357865,8.533896,6.499183,5.427281,4.748769,9.524805,22.051258,32.600018,42.046299,50.624805,52.379353,49.112415,45.552914,36.401665,25.858696,25.525639,20.590925,2.066946,0.019008,5.352901,61.322330,80.454552,45.206627,6.795052,1.871917,11.368610,12.756214,26.041340,42.355389,34.862003,1.383474,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.722316,4.942151,1.487605,0.914051,5.030581,3.516529 -601053.755000,4612405.550000,1558,4905,39.950420,34.243816,26.101671,14.273569,4.196702,0.738019,0.163638,0.052066,0.020661,0.000000,0.000000,0.118182,0.831407,3.289262,7.533069,13.842989,15.176875,13.014063,10.912410,5.266951,1.871905,1.800004,1.154550,0.000000,0.000000,0.076033,34.814892,64.671089,39.532249,3.109925,0.104963,8.153731,11.886791,29.018202,47.669441,35.621510,2.679343,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.922316,1.105787,0.000000,0.032232,0.544629,1.109091 -601058.955000,4612405.550000,1584,4905,15.411576,12.071083,5.115709,1.302482,0.110744,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.083471,0.208265,0.421489,0.244629,0.173555,0.033884,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,10.176044,41.016544,25.413239,2.451245,0.000000,6.842158,14.833075,30.244642,50.102493,40.350430,2.766119,0.177686,0.045455,0.045455,0.000000,0.000000,0.000000,0.000000,0.269422,0.000000,0.025620,0.000000,0.000000,2.606612 -601066.355000,4612405.550000,1621,4905,21.114059,11.323151,6.181828,2.257028,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.056199,0.289257,0.247935,0.105785,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,8.777699,42.430595,27.595886,2.010749,0.000000,5.532241,15.256213,32.314896,53.339687,42.347950,3.636369,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.023967,0.117356,0.000000,0.000000,0.000000,1.835537 -601099.955000,4612405.550000,1789,4905,6.560334,10.164472,9.021497,4.010749,0.623968,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.075207,0.276034,0.978515,2.503311,2.836369,2.713228,1.554550,0.505787,0.068596,0.033885,0.009091,0.000000,0.000000,0.000000,14.152078,41.267792,26.290100,3.045460,0.000827,5.234719,15.085139,34.076050,52.457867,43.694237,5.895875,1.249589,0.818182,0.230579,0.112397,0.000000,0.000000,0.000000,0.106612,0.000000,0.031405,0.000000,0.395042,0.000000 -601103.755000,4612405.550000,1808,4905,14.066946,32.554565,32.190102,22.544645,11.101665,4.551249,2.339674,1.856202,1.071903,1.037193,0.749589,1.824796,5.628934,11.046293,17.401669,24.164480,26.178530,24.333075,20.181009,13.995055,6.778522,7.322324,6.981828,0.212398,0.000000,1.384300,44.014889,68.535553,43.304146,3.286785,0.634721,4.847117,13.957867,29.337208,49.196709,42.558693,2.428930,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.327273,0.687604,0.148761,0.000000,0.000000,0.000000 -601108.755000,4612405.550000,1833,4905,21.507450,43.156219,47.488449,37.103321,22.976877,14.047121,10.228111,6.290093,6.000837,4.952901,4.972736,8.319019,16.478527,24.395060,32.913242,40.281834,42.637207,39.628948,35.563656,26.485142,18.381006,18.932245,15.990924,2.079344,0.188431,5.339678,56.248775,74.785965,45.149609,5.314060,1.453734,4.067778,13.084312,25.923159,45.843815,39.651257,1.643804,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.504133,1.000000,0.396695,0.000000,0.253719,0.000000 -601116.155000,4612405.550000,1870,4905,32.319843,50.719025,49.938034,39.076050,24.345472,13.047950,8.511583,4.973563,3.323148,2.557857,1.745460,4.258686,10.638856,18.187618,25.850431,33.921509,34.508286,32.194233,28.307455,19.734726,11.754559,10.978526,9.290923,0.399175,0.004959,1.749591,47.756214,70.285141,42.243820,4.569430,0.844641,4.761165,13.698361,27.870266,42.971092,34.274399,1.424796,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.853719,0.280165,0.000000,0.296695,0.192562,0.000000 -601127.555000,4612405.550000,1927,4905,38.547943,74.995880,76.350433,66.358696,53.028114,40.251259,34.971096,28.821507,23.041340,20.556217,19.725639,29.699192,48.185143,61.152081,73.209938,81.838036,81.201675,75.333900,67.846298,54.862823,42.061176,36.500019,29.009109,3.209924,0.114877,10.548774,81.085968,100.284317,59.747124,8.528941,2.637208,5.308273,10.033897,19.557867,32.109936,21.802494,0.828927,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.792562,0.000000,0.401653,0.466116,0.774381,2.603306 -601137.355000,4612405.550000,1976,4905,19.514057,19.202492,15.857039,8.061169,1.928103,0.400827,0.198347,0.082645,0.000000,0.066116,0.000000,0.066116,0.066116,0.355373,1.086779,2.018186,2.839675,2.293394,1.519838,0.642150,0.153720,0.148761,0.181819,0.000000,0.000000,0.000000,14.655388,44.825634,27.590099,1.951246,0.016529,4.339676,14.904147,29.214067,48.255386,36.037205,2.952899,0.233058,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.024794,2.238843 -601143.355000,4612405.550000,2006,4905,3.703307,0.693390,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.239670,10.619846,7.692572,1.254548,0.000000,3.434717,15.993404,31.686794,45.413239,40.421505,14.454557,2.299178,1.171903,0.589258,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.050414 -601236.755000,4612405.550000,2473,4905,121.344643,128.981003,101.228943,91.171089,72.121506,58.691757,55.790928,52.146297,49.815723,55.823990,46.402500,55.865307,66.394234,78.394234,88.419029,96.162827,97.476875,90.947952,87.724808,78.071922,69.336380,68.815720,67.154564,40.352913,23.080185,48.501675,92.989273,92.741341,53.014069,9.995058,6.104978,19.347950,13.927291,27.701670,40.708282,33.501671,0.446282,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.884298,2.114050,0.581818,2.554546,0.675207,0.000000 -601242.555000,4612405.550000,2502,4905,110.712410,138.031418,127.857857,116.874390,101.353729,90.923973,88.866119,84.312408,83.816544,86.328941,83.543816,92.081001,107.006615,119.097527,129.014877,138.609940,139.130600,134.948761,125.122322,112.816536,104.585129,103.279343,101.072731,73.452904,54.395061,77.337204,114.287613,102.791740,53.766960,13.141339,9.188447,11.142991,12.773571,20.477705,29.498367,20.576052,0.662813,0.088430,0.000000,0.000000,0.000000,0.000000,0.020661,0.000000,0.889256,0.000000,0.000000,1.299174,0.000000,0.000000 -601252.355000,4612405.550000,2551,4905,94.475220,141.575241,147.624802,135.153732,121.980186,112.277702,111.864479,109.128937,107.517365,110.013237,111.608276,123.071098,140.269440,155.806625,168.228119,177.864471,179.203323,172.046295,154.938858,139.476044,129.401672,127.996712,124.054565,96.674400,77.071098,95.690933,121.583488,97.550438,46.021503,14.606630,11.277705,7.690096,10.384313,11.379354,15.333074,6.765299,0.785953,0.280166,0.307439,0.081818,0.167769,0.100827,0.000000,0.000000,0.000000,0.947934,1.725620,1.614876,0.000000,0.000000 -601260.755000,4612405.550000,2593,4905,94.085136,144.939682,151.121490,139.609100,126.419022,118.030586,115.154556,112.931412,112.542984,115.295052,116.914886,127.683479,145.030594,160.319839,172.642151,183.584305,184.096710,175.914886,158.468597,140.005798,130.129761,127.278519,123.063644,95.220673,75.047119,92.840508,112.179352,86.361168,39.881840,14.889275,11.187622,8.877699,9.076049,9.803320,11.373568,5.035545,0.590084,0.004959,0.080166,0.002479,0.000000,0.055372,0.000000,0.000000,1.110744,2.170248,0.000000,0.861157,0.000000,0.000000 -601270.155000,4612405.550000,2640,4905,103.472740,147.971893,152.591736,144.170242,128.963654,120.674393,118.277702,116.591751,117.087616,119.484314,122.310760,132.426453,150.765289,166.657852,181.616531,193.062805,195.368591,187.500824,167.996689,148.542145,139.599991,136.038025,131.327286,102.864479,81.195053,98.732246,115.385139,86.740509,40.013241,14.496712,11.938861,8.335551,9.562826,9.822329,10.298360,4.447942,0.861986,0.433886,0.084298,0.061984,0.247108,0.042149,0.000000,0.000000,0.000000,0.000000,0.985951,0.000000,0.000000,0.000000 -601283.555000,4612405.550000,2707,4905,99.985962,150.614899,152.490921,144.928940,131.242981,121.366951,118.978523,118.366951,117.945465,120.581833,123.309105,134.408279,153.251266,169.490921,183.515701,195.490921,198.383484,190.813248,170.350433,151.119034,141.358704,137.366959,133.127289,102.813232,83.028107,99.300835,115.928940,87.383484,38.763657,13.102497,12.102499,7.230592,9.045469,9.268611,10.677701,4.890091,0.990911,0.212398,0.245455,0.000000,0.136364,0.107438,0.000000,0.000000,1.100827,0.000000,0.000000,0.000000,0.000000,0.000000 -601289.555000,4612405.550000,2737,4905,88.998360,148.872742,153.269440,143.674393,131.707458,123.186790,120.467781,118.550423,119.319023,122.046295,124.442986,135.004974,152.988449,169.426453,183.608276,195.393402,196.112411,190.021500,169.823151,150.550430,139.947113,137.575226,132.872742,104.583481,84.004982,99.104156,117.285965,89.781837,39.509113,13.940515,12.079359,6.114061,9.997536,8.310757,9.608279,4.186784,0.672729,0.352067,0.242976,0.019008,0.000000,0.193389,0.000000,0.000000,0.000000,1.101653,1.065289,0.000000,1.038017,0.000000 -601293.955000,4612405.550000,2759,4905,103.365311,152.647934,153.309097,145.441330,131.747131,123.003319,122.218193,119.689270,119.904144,123.061165,126.218201,135.672729,153.862808,169.565292,183.730576,195.474380,196.623138,189.590088,170.160339,150.639679,140.928925,138.358688,133.672745,106.763649,85.788452,102.185135,121.515717,92.978523,43.540516,13.974400,12.152085,6.809930,9.352081,10.184312,11.173568,4.185133,0.740498,0.425621,0.010744,0.157025,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.820661,0.000000,0.000000 -601300.355000,4612405.550000,2791,4905,101.220688,154.385956,154.757858,146.981003,131.228943,125.410759,122.931419,121.385971,121.592583,125.237206,126.823982,137.584305,153.865295,170.419022,185.071915,195.047119,196.774384,189.195877,168.981003,151.452072,140.823975,138.286789,134.790924,107.468613,86.385979,103.022331,122.038864,94.005814,41.914894,15.490927,12.253737,6.870262,10.353733,12.123157,12.672743,6.823977,1.185127,0.122315,0.257026,0.000000,0.000000,0.051240,0.000000,0.000000,1.086777,1.128099,0.000000,0.000000,0.000000,2.035537 -601310.755000,4612405.550000,2843,4905,123.091751,158.695053,155.496704,151.876877,138.273560,128.951248,126.827286,124.571091,125.033897,128.513229,130.670258,141.422333,158.364471,175.529770,189.000839,201.232239,203.017365,196.149597,176.075226,158.323151,148.347946,147.042160,144.100006,115.397537,94.265305,110.364479,128.182663,101.108276,47.587624,18.314068,13.100020,9.760345,12.710761,12.024809,16.172745,7.968607,1.015706,0.541324,0.068595,0.041323,0.178513,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.921488,0.000000,4.168595 -601319.355000,4612405.550000,2886,4905,156.077698,194.986801,174.879364,163.366959,146.623154,134.953720,134.119019,133.862823,135.003311,141.623154,138.557037,150.995056,168.218201,186.044647,201.094238,213.928940,213.383484,200.904144,182.747131,164.193405,154.490921,153.350433,149.854568,120.052902,99.838028,118.912407,133.366959,99.747116,48.499191,17.714069,13.623159,14.766133,10.847952,12.574398,14.404150,8.834723,1.147110,0.202480,0.259505,0.022314,0.000000,0.000000,0.000000,0.096695,0.000000,0.000000,0.000000,1.140496,0.000000,0.000000 -601322.355000,4612405.550000,2901,4905,139.669418,196.140503,170.727280,162.066116,144.793396,132.892578,134.413239,132.842987,134.471085,141.900833,137.760330,151.561981,167.537186,187.190079,200.462814,215.099167,214.958679,201.099167,182.859497,164.471069,154.140503,152.727280,150.636368,119.834717,98.528931,115.553726,132.355392,99.190094,46.917374,15.811588,13.694234,14.299191,10.859521,13.446299,13.387620,8.109103,0.823142,0.143802,0.340496,0.294216,0.050414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601325.155000,4612405.550000,2915,4905,142.247131,189.833893,170.726471,164.296707,146.271927,134.916550,134.784317,133.544647,134.536377,142.032257,139.478531,151.437210,168.726471,186.949600,202.304962,215.511597,215.792587,203.610748,185.652084,166.519852,156.114899,154.619034,150.354568,120.528107,100.189278,116.726456,131.974396,98.701675,45.073574,16.711590,13.668613,14.943817,10.610761,12.379354,12.988445,8.378525,0.328100,0.000000,0.361985,0.000000,0.000000,0.000000,0.005785,0.185125,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601329.755000,4612405.550000,2938,4905,128.967789,194.744629,170.108292,162.124802,146.728119,134.984314,135.868607,135.166122,136.835556,143.554565,140.025635,153.339676,171.141342,189.033875,204.364456,217.951233,217.546280,205.951233,187.000824,167.108276,157.471909,155.124802,151.009109,119.868607,100.372742,116.488441,133.976044,97.711586,48.240513,18.081837,13.728117,15.840513,11.357041,13.053736,15.776876,9.046295,1.312400,0.361984,0.261984,0.014876,0.112397,0.000000,0.013223,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601333.155000,4612405.550000,2955,4905,135.301666,179.004135,174.053726,158.673553,145.830582,133.177689,135.276871,132.805786,133.822327,139.590912,137.541321,151.549591,168.764465,187.814056,203.987610,215.243805,215.450409,205.235535,184.549591,166.351242,156.814056,153.805786,150.227280,121.037201,99.433899,115.789261,131.219009,98.458694,44.929771,16.446301,13.657044,12.192577,10.138861,11.777704,12.515718,7.009102,0.833887,0.221488,0.004959,0.000000,0.000000,0.000000,0.169423,0.163637,0.000000,0.000000,0.000000,2.218182,0.000000,0.000000 -601337.355000,4612405.550000,2976,4905,120.095879,179.352066,168.137192,159.236359,145.178513,132.971909,133.079346,131.856216,132.633072,138.955368,138.302475,151.839661,169.641312,187.360321,202.376862,216.451233,216.765289,207.476028,185.947098,166.476028,157.079330,155.153717,150.509094,119.798363,97.839684,114.748772,131.095886,98.120674,43.137215,15.993407,13.682663,10.856213,10.197535,12.145471,14.045472,6.538027,0.728927,0.304133,0.162810,0.051240,0.033058,0.000000,0.012397,0.004959,1.296694,0.000000,0.000000,0.000000,0.000000,0.000000 -601344.155000,4612405.550000,3010,4905,125.253738,180.096710,169.485138,161.534714,147.088440,135.154556,135.402496,135.080185,135.460342,140.981003,140.237198,154.295044,171.972733,189.923157,204.716537,218.493393,220.154556,209.311584,188.228943,167.047119,157.931412,156.551254,150.427277,119.584312,98.923157,114.245476,129.914886,95.162827,43.501671,17.079357,13.675225,12.921504,12.300845,14.187622,14.063654,6.493398,0.831407,0.203306,0.065289,0.244629,0.033885,0.000000,0.015703,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601353.355000,4612405.550000,3056,4905,120.999191,171.296692,170.197525,157.346283,144.676865,133.511566,135.850418,135.164459,134.726456,139.247116,139.833893,154.015701,172.073563,188.941330,203.304962,217.734711,219.032242,208.759506,186.354553,164.767776,155.693390,153.065292,147.263641,117.833885,97.428940,111.065300,127.288429,93.147942,45.296719,17.894232,13.387622,10.025635,9.657867,11.003321,13.076050,5.951249,0.587606,0.501654,0.160331,0.289257,0.052067,0.000000,0.026447,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601362.155000,4612405.550000,3100,4905,127.461182,178.998352,172.204971,160.337204,148.469437,138.775208,138.155380,136.733887,138.519012,142.072739,143.890915,156.651245,175.833069,193.138855,208.221497,220.461166,223.047943,213.618195,191.279343,170.271088,159.552078,157.659515,152.981842,122.419861,99.882668,114.477707,130.725647,97.221512,46.031429,19.628944,13.907457,10.869437,11.328943,13.783488,16.581009,4.794224,1.247111,0.621489,0.167769,0.000000,0.179339,0.000000,0.038017,0.010744,1.373554,0.000000,0.000000,0.000000,0.000000,0.000000 -601366.155000,4612405.550000,3120,4905,117.278534,177.154572,167.476883,162.088455,146.385971,136.220688,137.642181,134.700012,135.857056,139.972748,142.377716,154.898376,173.509949,190.080185,205.435547,218.047119,219.981003,211.311584,187.981018,168.005814,157.063660,155.650436,151.790939,120.782661,100.055389,114.708282,128.749603,94.344643,44.658699,16.146299,13.799192,11.488444,10.312413,12.739686,13.381834,6.901663,0.437192,0.229753,0.624795,0.053719,0.019835,0.170248,0.071075,0.000000,0.000000,0.000000,1.051240,0.000000,0.000000,0.000000 -601370.755000,4612405.550000,3143,4905,118.638031,178.158691,174.414886,160.869431,148.274384,137.067780,139.166946,136.885956,138.514053,141.588440,143.662827,156.852905,174.919022,193.191742,207.092575,219.563644,223.175217,214.373566,190.406616,168.935547,160.200012,157.852905,151.381821,122.299194,102.051254,114.439690,129.290924,95.695885,45.142170,18.442995,13.762003,11.120677,11.748778,13.867787,13.400018,7.726457,0.719838,0.440497,0.395869,0.176034,0.039670,0.000000,0.114051,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601374.155000,4612405.550000,3160,4905,119.477699,171.014877,171.072739,161.783493,146.171921,138.990082,137.866135,137.229782,138.229752,142.312408,144.023148,157.444656,176.130585,193.287598,207.957016,221.857849,224.816513,214.262802,192.056183,171.750427,160.775223,158.791763,152.890930,122.932243,100.849594,116.535553,129.171921,94.750420,44.287621,17.451258,13.899193,13.152907,10.508282,14.523158,14.123984,4.829762,1.244632,0.074381,1.109919,0.034711,0.000000,0.000000,0.054546,0.105786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.555000,4612405.550000,3177,4905,112.655396,169.804138,169.151245,160.068619,144.630600,137.225632,137.952911,135.043823,136.597549,140.481842,143.159531,155.547958,174.928101,191.308273,205.688431,219.068604,224.506622,213.779343,190.977692,168.729752,157.680191,157.159531,150.118210,119.481842,98.258698,112.523163,125.423988,92.928123,41.043819,15.839688,13.647126,8.686790,9.570264,11.217372,11.557866,4.931413,0.668598,0.091737,0.333059,0.005785,0.046281,0.000000,0.000000,0.177687,2.596694,0.000000,0.000000,0.000000,0.000000,0.000000 -601381.155000,4612405.550000,3195,4905,106.363655,172.942154,173.512390,163.264465,148.231400,140.074417,138.363663,137.462845,139.404984,142.570282,144.834747,157.859497,177.181824,194.198349,208.512390,222.016525,226.446274,216.231400,193.264465,170.619827,161.049591,157.487610,153.090912,122.280998,100.528938,115.818199,126.991745,93.289261,44.380180,18.877707,13.917374,10.969437,12.206628,11.578528,12.485140,6.466126,1.223144,0.232232,0.390085,0.250414,0.122315,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601384.155000,4612405.550000,3210,4905,130.147125,165.700836,171.155380,161.485962,146.833084,137.295868,138.874405,136.981842,138.758682,141.494232,144.147125,157.229782,176.940506,193.370255,208.378540,221.494232,225.626465,216.229782,192.890915,169.800003,159.535538,157.973557,153.163666,122.808281,99.998360,115.494232,125.114067,92.543816,42.882660,17.968615,13.923985,9.568609,11.293406,11.879356,12.125635,7.047119,0.947110,0.005785,0.008265,0.021488,0.000000,0.000000,0.000000,0.068595,0.000000,0.000000,1.155372,0.000000,0.000000,0.000000 -601388.155000,4612405.550000,3230,4905,125.272743,171.314072,170.421509,162.446304,147.487610,140.256195,138.537186,138.049591,139.595047,142.760330,145.074387,158.057861,177.561996,193.834732,209.553726,222.280991,226.090912,217.280991,192.099182,171.289276,160.842987,159.214890,153.454559,123.140503,101.223152,116.719025,127.471077,94.462814,45.165310,19.312416,13.950433,12.499187,11.290098,13.318199,13.804973,7.073566,1.452069,0.419836,0.319010,0.009091,0.055372,0.105785,0.000000,0.094215,0.000000,0.000000,1.084298,0.000000,0.000000,0.000000 -601391.955000,4612405.550000,3249,4905,118.206627,169.991745,171.090927,159.834732,147.165298,138.190094,138.157043,136.785141,138.785141,141.537201,145.454559,158.669434,177.471085,194.355392,209.652908,223.165298,226.661179,218.190094,193.570267,172.256210,162.206635,159.760345,153.818192,123.148773,101.842995,116.818199,127.644646,94.223160,44.074402,17.675224,13.983490,10.119024,11.294231,14.947951,13.747950,5.891745,0.973557,0.176861,0.350414,0.247108,0.000000,0.190909,0.016529,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601396.155000,4612405.550000,3270,4905,129.229767,168.940521,168.477722,159.428116,145.395065,135.502502,136.006638,136.064484,138.138870,140.221512,143.378540,157.014893,175.477722,193.147125,208.783478,220.428101,225.403305,214.031418,191.973572,170.262848,159.196716,157.386795,151.618210,120.957039,100.039680,115.609932,124.758690,90.287621,42.196709,15.064482,13.783489,9.513238,9.661173,12.364480,8.484312,4.592570,1.528102,0.103307,0.328101,0.000000,0.000000,0.000000,0.001653,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601402.755000,4612405.550000,3303,4905,119.868607,161.017380,169.033920,159.785980,147.504974,139.000839,138.116547,136.356216,137.810760,141.372742,145.033890,157.422333,176.810760,194.356216,209.281815,222.860321,224.876862,215.430573,192.414062,170.976059,160.356232,159.199188,153.554565,122.414062,101.149597,116.207451,127.546295,90.802490,43.571095,16.582663,13.959523,9.491750,11.993405,11.387620,12.322330,6.204969,0.912400,0.347109,0.008265,0.066942,0.035538,0.000000,0.017356,0.105786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.555000,4612405.550000,3337,4905,118.452072,165.906601,169.096695,159.195862,147.394211,137.518188,137.898361,136.840515,138.774384,142.138031,144.956207,159.055359,178.766129,193.592590,209.559525,222.617386,225.617386,216.385971,193.146301,172.121490,161.344620,159.080154,153.699997,123.584312,102.005806,118.262001,127.906624,93.650429,43.981010,15.518201,13.972746,9.115716,10.368611,12.808282,12.158694,5.602489,1.366945,0.227274,0.007438,0.060331,0.041323,0.218182,0.000000,0.000000,0.000000,0.000000,1.090909,0.000000,0.000000,0.000000 -601416.155000,4612405.550000,3370,4905,103.713226,159.374390,169.151245,156.944656,144.531418,137.994217,137.423981,136.762817,139.415710,142.547943,145.498367,157.919861,177.696716,195.068619,210.465317,223.052094,227.589279,218.192581,194.159531,172.853745,162.118210,159.878540,154.027298,122.729767,102.944633,118.002495,129.638855,94.109932,43.638866,16.820679,14.002498,8.019849,9.687619,10.552908,13.832248,6.495878,1.131407,0.123968,0.015703,0.281819,0.000000,0.000000,0.007438,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601420.555000,4612405.550000,3392,4905,111.413239,162.223160,168.041336,159.074402,146.677704,139.033081,139.694229,138.181839,139.661179,143.008286,147.157043,160.900848,178.330597,196.471085,212.438034,224.991745,229.570267,220.413239,195.834732,175.148773,163.652908,161.595062,157.454559,125.685966,103.760345,120.198364,129.272736,96.768608,45.181839,17.995886,14.314069,9.980179,10.947950,11.623157,13.604148,5.568604,1.278516,0.245456,0.190911,0.000000,0.000000,0.180165,0.083471,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601424.955000,4612405.550000,3414,4905,121.106621,167.230576,171.809097,158.999191,148.338013,140.544632,140.329758,139.296692,141.866943,145.387604,148.486801,161.891739,181.338013,198.990906,214.569427,227.412384,231.627258,222.437195,199.255371,176.759506,164.792572,163.478516,158.354568,127.990921,105.329765,120.850426,130.916534,96.511589,44.495060,19.116549,14.395887,9.378527,11.748778,13.149604,13.457869,6.260340,0.681821,0.280167,0.296695,0.157851,0.000000,0.114050,0.000000,0.071075,2.659504,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.755000,4612405.550000,3453,4905,118.601662,167.519012,166.973557,160.766953,148.403305,141.981827,141.130585,141.874390,142.196701,146.998352,150.436371,162.709091,182.047943,199.709091,215.833069,229.097534,232.601654,222.576859,200.262817,176.791748,166.626450,163.047943,157.800003,128.312408,106.370255,120.601669,131.651245,97.337204,46.105804,19.147125,14.345473,7.600838,11.341340,12.677703,13.288447,6.791747,1.464467,0.242976,0.009918,0.117356,0.000000,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.755000,4612405.550000,3473,4905,120.942169,165.809921,167.099167,159.735535,146.148758,139.702499,138.793411,138.165298,139.834732,145.049606,147.917374,161.611572,181.429749,198.694214,214.314056,228.371902,232.074387,223.280991,198.520660,177.024796,164.942154,162.884293,157.454544,126.909119,105.132256,119.752090,131.148788,94.586800,43.710770,17.459522,14.314069,7.287616,9.142991,11.314067,12.348777,4.804141,0.705788,0.114877,0.309093,0.136364,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.755000,4612405.550000,3488,4905,110.184311,165.795868,169.523148,161.837204,148.663635,140.597534,141.019012,140.655380,144.060333,147.068604,150.721497,164.605789,183.316528,200.870270,216.771118,230.457047,234.035553,226.027313,200.919861,179.225632,168.200836,164.622314,159.027283,127.853729,107.002495,122.423981,132.093399,95.952904,47.134735,18.788448,14.457044,10.819849,13.739686,13.633900,14.661173,6.767780,1.811575,0.151241,0.019009,0.023141,0.000000,0.000000,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601442.955000,4612405.550000,3504,4905,129.043823,165.440521,169.043823,160.101669,150.167786,142.919861,140.680191,141.093414,142.886795,145.597549,150.506638,162.936386,182.729797,201.366135,217.258682,232.308273,235.448761,226.630585,201.539688,179.721527,167.605804,165.258698,160.390930,128.663651,107.316544,122.630592,130.845474,96.903320,46.151257,19.039688,14.581012,10.155389,10.785140,11.343819,14.195886,6.061995,1.108269,0.079340,0.183472,0.025620,0.028099,0.000000,0.000000,0.333885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.755000,4612405.550000,3523,4905,106.246307,158.361984,167.262817,159.866119,146.469421,140.064468,138.353729,139.477692,140.990082,146.717361,149.841324,161.800003,181.824799,199.535538,216.089264,228.560333,233.006622,224.527283,201.361984,177.502487,167.750427,164.857864,158.800003,127.196709,105.800018,119.824806,129.494232,93.676048,44.180187,16.770267,14.436383,7.211585,9.447124,11.607455,12.839686,6.282654,0.628928,0.219836,0.138844,0.110744,0.019008,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.155000,4612405.550000,3545,4905,124.697533,169.763657,171.102493,161.780182,150.482666,143.672745,143.251266,142.540512,144.771927,149.127289,152.251266,165.548782,185.069443,202.433044,218.771881,233.416519,237.019821,227.490891,202.399994,178.945480,170.218201,165.284317,160.581833,128.813248,107.763649,123.102493,131.342178,96.623161,46.647953,19.183489,14.598368,9.166959,11.513241,13.537208,12.172744,5.228109,1.676864,0.194216,0.039670,0.000000,0.017356,0.000000,0.014050,0.000000,0.000000,1.274380,0.000000,0.000000,0.000000,0.000000 -601453.955000,4612405.550000,3559,4905,121.789276,169.111588,167.260345,160.607452,148.086792,140.392578,140.384308,139.367783,141.516541,145.301666,149.739685,162.276871,181.367783,199.822327,215.714890,229.739685,234.252060,225.673569,199.847122,176.995880,166.607452,162.995880,156.772751,127.004150,106.152908,119.946289,131.053741,94.814049,43.838863,17.637209,14.252085,9.187618,9.823982,13.343818,12.109934,5.360338,1.348764,0.037191,0.187604,0.000000,0.022314,0.181818,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,1.249587,0.000000 -601459.555000,4612405.550000,3587,4905,110.580185,168.274368,170.332230,163.406601,149.704147,143.795029,141.199997,142.497513,145.067764,149.076050,152.497528,164.728912,184.480988,202.737198,218.530594,232.728943,236.894226,228.431412,203.464478,180.340485,168.522308,166.588425,160.199997,129.390106,107.481010,119.960350,131.530594,97.472748,45.183498,18.307457,14.563655,8.900017,11.789273,13.430596,12.566133,5.327284,0.784301,0.294217,0.109918,0.031405,0.057852,0.000000,0.024794,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.955000,4612405.550000,3604,4905,135.323990,163.580185,169.852921,161.109116,148.423172,140.960358,140.290939,142.398376,142.819855,147.547134,151.299194,163.654572,183.200027,201.018204,217.679352,231.489273,234.571915,227.423157,202.662842,180.076065,167.976883,164.728958,159.836395,127.910759,107.142166,120.638031,130.613235,93.762001,45.158699,18.902498,14.530598,7.647121,12.048777,9.921502,14.752912,8.268606,1.744631,0.498350,0.158678,0.000000,0.000000,0.000000,0.000000,0.016529,1.176033,0.000000,0.000000,0.000000,1.353719,0.000000 -601466.355000,4612405.550000,3621,4905,127.280182,172.197540,169.015717,161.552917,149.437210,141.916550,141.825638,142.032257,143.594238,148.420685,151.379364,164.462006,183.833908,202.709930,218.850433,232.693405,236.387619,228.346298,202.900024,179.478531,168.759521,165.255386,158.809113,128.420685,106.412415,120.470268,129.263657,95.057045,45.205803,17.495888,14.437209,8.875221,11.793405,11.626463,13.700016,5.138852,1.230582,0.209092,0.052893,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.155000,4612405.550000,3640,4905,126.796700,175.995056,171.995056,165.160339,151.408279,143.094223,143.780167,143.581818,144.829758,150.209930,153.135559,165.681000,185.838013,204.077682,221.193405,233.523972,239.135544,230.557022,203.573578,181.912415,171.722336,166.515701,161.490906,128.705795,107.342163,123.350418,132.730576,98.061165,47.441341,19.805803,14.681010,7.948775,12.027290,14.590099,14.215719,5.691745,0.930582,0.624795,0.185125,0.186777,0.047108,0.000000,0.038843,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.355000,4612405.550000,3656,4905,133.785965,169.232239,170.091751,164.265305,151.645462,143.273560,142.414062,142.546295,144.794235,149.678528,153.025635,164.868607,184.405792,203.199188,218.918198,233.265305,237.521500,229.835556,203.976044,180.876877,169.876877,166.075226,159.918198,129.463654,107.100014,121.645470,130.761169,95.546303,43.934731,18.415722,14.538034,9.708281,11.912414,11.692578,13.436380,7.017365,1.503311,0.037191,0.274381,0.052893,0.216529,0.000000,0.000000,0.040496,0.000000,1.307438,0.000000,0.000000,0.000000,0.000000 -601477.555000,4612405.550000,3677,4905,118.180191,169.634720,173.841324,162.874390,151.618210,144.213242,142.973572,142.907455,145.452911,149.973572,151.601669,165.758682,183.923981,201.841324,218.800003,232.543808,237.932236,228.353729,203.163635,180.287613,168.874390,165.560333,160.072739,127.667786,106.907455,121.519012,130.461166,96.345467,46.147125,18.286797,14.552086,7.756211,11.491751,12.036380,12.137206,5.088439,0.929756,0.814052,0.220662,0.000000,0.218182,0.000000,0.038843,0.017356,0.000000,1.256199,0.000000,0.000000,0.000000,0.000000 -601481.155000,4612405.550000,3695,4905,127.039696,169.345474,171.932251,165.188446,153.965317,144.890930,143.766968,144.213242,144.684326,151.171921,153.618210,167.436386,184.246307,203.981842,219.833084,233.494217,237.411575,229.114059,204.155396,180.395065,168.659531,164.684326,159.163666,128.841339,107.105804,120.965302,130.709106,96.700851,44.791756,18.690926,14.469441,8.456212,14.237206,11.348775,13.662827,5.614886,1.357029,0.336366,0.193390,0.092562,0.000000,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.155000,4612405.550000,3710,4905,128.757034,172.533875,171.120667,165.856216,150.914047,143.029755,142.492554,142.707428,143.765289,149.376862,151.765289,163.955383,183.211563,202.285965,218.195053,231.715714,236.715714,228.203323,202.740509,179.517349,166.988449,163.839676,158.509094,126.988441,104.690926,120.814888,129.327286,94.963646,45.591759,18.446301,14.409935,7.467782,12.050428,11.142991,12.340511,7.447118,1.062813,0.000000,0.088431,0.020661,0.023141,0.000000,0.000000,0.000000,1.241322,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.155000,4612405.550000,3725,4905,129.708282,174.030579,169.997528,165.369431,151.931412,143.014069,140.774399,142.394241,144.344650,148.964478,151.212402,164.724808,182.757843,201.542969,217.592560,231.766113,235.881805,226.576019,201.774368,178.989243,166.592575,163.195877,157.609100,125.906631,105.113243,118.385971,126.600845,94.815720,44.501675,17.435555,14.328118,5.600839,11.729769,10.042990,11.608280,5.235546,1.280995,0.206612,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.897521,0.000000,0.000000,0.000000,0.000000 -601492.155000,4612405.550000,3750,4905,130.004150,176.516525,171.830597,164.962830,153.004150,143.714890,143.814056,144.582642,145.177689,150.623978,153.285141,165.037201,184.293396,203.235550,218.599167,233.516525,237.904953,229.483475,202.888443,180.590912,167.615723,164.979355,159.500015,128.037201,105.466949,121.285133,128.475220,95.772736,45.681843,19.146299,14.500018,7.529767,12.029769,10.985139,13.414890,5.090918,0.700002,0.151241,0.267770,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.755000,4612405.550000,3768,4905,149.220688,176.419022,173.914871,166.377701,153.700012,145.220688,143.567795,145.080170,145.700027,152.832245,153.749603,166.245468,183.096710,203.542984,218.633896,232.493393,237.551254,229.063644,203.832245,179.187607,167.245468,163.171082,159.245468,126.782661,105.476875,119.832253,129.675232,96.906631,46.154568,18.396713,14.476878,7.994228,10.605801,10.164477,11.505802,3.770255,0.521490,0.222315,0.338844,0.000000,0.199174,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.755000,4612405.550000,3783,4905,137.633911,182.700027,174.848785,166.807465,156.790939,145.509949,144.237213,145.369446,147.071930,151.799194,154.088455,166.939697,185.179367,205.063660,219.807465,234.311600,238.947952,229.609116,203.369446,180.220688,168.154572,165.278534,159.427292,128.278519,108.187614,120.270256,130.179352,95.666954,45.542992,18.158697,14.493407,8.183486,11.633075,12.136382,11.195885,4.770257,1.128104,0.292563,0.152893,0.016529,0.093389,0.000000,0.000000,0.049587,2.614876,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.155000,4612405.550000,3810,4905,140.677704,186.884293,176.991730,169.272720,156.066116,143.272751,146.049606,145.281006,146.495880,153.024811,153.950424,166.206604,183.909088,204.066116,220.074387,234.586777,237.900833,229.462814,203.636368,181.165283,168.355377,165.586777,160.272720,128.685974,107.727287,120.165306,129.132248,96.049606,46.471100,18.473572,14.570266,7.686792,11.203322,11.870263,11.781008,5.004141,1.435542,0.545457,0.335538,0.094215,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601507.355000,4612405.550000,3826,4905,130.639694,188.152084,175.251266,168.656219,156.598373,145.185150,145.391754,147.449600,146.804977,155.044647,154.085968,166.912415,184.821503,204.879364,221.218201,235.962006,240.350433,231.433075,205.590103,182.391754,170.995056,166.449600,160.945480,129.267776,107.780174,120.697533,130.193405,96.226456,45.309109,17.725639,14.631423,7.207452,11.655390,10.744645,14.604150,4.701664,1.456202,0.408266,0.218182,0.000000,0.084298,0.000000,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,2.672728,0.000000 -601512.955000,4612405.550000,3854,4905,123.838844,177.987610,177.301651,166.657028,151.070267,142.252075,142.574402,142.747955,144.020676,146.896713,150.086792,163.483475,182.128098,201.847107,215.061981,229.425613,233.268600,223.590912,197.384293,175.202484,163.747940,161.409103,155.136383,125.004143,104.615700,116.425629,125.590912,90.979340,43.376053,19.554567,14.103325,11.669437,12.033902,12.657043,12.787620,6.324803,1.730582,0.328100,0.064463,0.028099,0.008265,0.000000,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,1.264463,0.000000 -601516.555000,4612405.550000,3872,4905,134.504974,182.149612,173.984329,164.116562,151.166138,142.232254,143.091766,142.595901,143.430603,147.356232,150.017380,163.909943,182.025650,199.827301,215.157883,229.967804,234.281845,222.604156,196.033920,173.670273,163.521515,161.455399,155.736389,124.546295,104.298363,116.166130,124.992577,90.579353,43.926464,17.966135,14.157870,10.719851,10.870264,12.452909,12.961174,5.979349,0.777689,0.152893,0.269422,0.093389,0.023141,0.000000,0.036364,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.355000,4612405.550000,3896,4905,118.453735,182.040512,175.858704,165.420670,152.833908,142.090103,144.941345,142.222336,144.371094,148.338043,150.676880,163.990906,183.338043,200.362808,215.420670,229.610748,233.379349,222.354553,197.742981,175.214066,164.379349,161.891739,155.627289,124.222328,105.453728,116.751259,124.594223,91.090103,44.966137,19.667788,14.147952,12.730593,12.110761,13.300016,13.255388,7.474390,1.108269,0.591738,0.311571,0.166116,0.021488,0.000000,0.000000,0.128926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.155000,4612405.550000,3930,4905,120.720688,182.704147,171.629761,163.687607,151.456223,140.018188,142.538849,140.761993,142.952072,146.439697,148.398376,161.952072,180.968597,198.737198,212.299179,227.299179,230.514053,219.687607,193.555374,171.241333,161.373566,159.191757,152.200027,122.406639,102.092590,114.076057,122.423164,88.464478,42.076050,15.635555,13.836383,8.987618,10.143818,12.045472,13.340511,5.976042,0.750416,0.123967,0.000000,0.148761,0.000000,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.955000,4612405.550000,3944,4905,121.839684,181.434723,175.806641,166.418213,152.310760,141.542175,143.277695,143.335571,144.153748,148.905792,151.038025,163.401688,182.087616,200.294205,215.186768,229.244629,232.062805,221.261154,195.715698,173.707474,163.707474,160.831436,154.781815,124.310760,103.459526,116.385139,123.476044,89.814896,42.608280,17.769438,14.071095,10.460347,11.528116,13.313240,13.111588,4.804967,0.128100,0.652894,0.435539,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601534.155000,4612405.550000,3960,4905,127.552910,183.511597,175.131424,166.040512,151.660355,142.362823,144.114899,143.362823,144.635559,148.982666,150.858704,163.883484,182.701675,200.536377,216.081833,230.536377,232.238861,221.957870,195.990921,174.238861,162.999191,160.635559,155.445480,124.503319,104.271912,115.676872,123.941330,89.569435,43.181011,17.875225,14.131424,12.664478,12.263655,11.619025,12.985967,6.409929,0.966944,0.149587,0.069422,0.266943,0.015703,0.000000,0.009918,0.014876,0.000000,1.314050,1.054546,1.132231,0.000000,0.000000 -601538.155000,4612405.550000,3980,4905,131.996704,185.922333,174.170258,166.335541,152.980179,141.558685,143.682663,143.633072,144.955383,148.814896,149.600006,162.434708,181.285965,199.467789,213.682648,228.310745,230.806610,220.062805,193.889267,172.715714,162.038010,160.095871,151.872742,122.178528,103.781837,114.616539,123.137199,88.666138,42.500847,15.362828,13.806631,12.269438,10.477702,10.389273,11.064478,4.864473,0.780167,0.128926,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.220661,0.000000,0.000000,0.000000 -601547.355000,4612405.550000,4026,4905,142.923157,195.080170,178.286789,168.452072,155.047119,142.179352,145.237198,144.014053,146.195877,152.063644,151.270264,164.857040,181.468597,200.509933,215.666946,230.931412,232.096710,219.807449,194.650421,173.691742,163.394226,160.435547,154.427277,123.171089,104.237206,116.923157,124.832253,89.633911,43.162830,18.557045,14.038861,13.134728,9.666959,11.922331,12.627289,7.002490,0.959507,0.289257,0.003306,0.000000,0.113223,0.108265,0.000000,0.068596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.555000,4612405.550000,4047,4905,135.066116,195.627274,181.090088,171.776031,156.825623,144.247116,146.164459,145.346283,146.701660,153.610748,150.528107,163.495041,181.974380,201.156204,216.362808,231.147934,233.040497,219.395874,195.751236,174.437195,163.015701,160.106613,154.536362,123.362831,104.577705,117.685143,125.784317,89.866959,43.569443,18.933077,14.048779,12.593405,10.520678,12.621505,15.280183,7.011580,1.514054,0.137191,0.302480,0.114050,0.013223,0.000000,0.024794,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,2.178512 -601556.955000,4612405.550000,4074,4905,147.327301,199.476059,181.418213,172.682663,156.186813,143.864487,145.327301,145.451263,146.740524,154.781845,152.252914,165.252914,182.740524,202.542175,217.806625,232.773544,233.476028,220.203323,196.996719,175.153732,164.170273,161.575241,156.054581,123.360352,104.823158,117.112419,125.930603,89.798370,44.484314,17.699190,14.186797,13.123157,10.050430,12.185143,13.320679,7.111580,0.533059,0.355373,0.006612,0.084298,0.118182,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,1.127273,0.000000,0.000000 -601559.555000,4612405.550000,4087,4905,156.807449,202.328110,181.642151,172.848770,156.460342,145.542999,146.162827,146.584305,147.617371,155.724808,152.840500,165.047119,182.121490,201.534714,216.972733,232.261993,232.989273,219.336380,196.352905,174.113235,162.576050,159.906616,155.063644,121.733070,104.187622,117.964478,124.625633,89.369438,42.666965,18.928944,14.096713,14.755388,10.897536,12.527290,12.569437,7.668606,0.733886,0.218182,0.294216,0.034711,0.000000,0.000000,0.106612,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.355000,4612405.550000,4116,4905,168.025635,203.967789,186.017365,175.628937,157.628937,147.835556,147.381012,146.108276,148.901672,157.645462,153.678528,165.992569,183.926453,201.587601,218.033875,233.364471,234.620667,219.438843,195.984299,174.066956,162.471909,160.199188,154.281830,121.190926,103.496696,118.653732,122.959518,85.695061,44.058701,18.849604,14.025638,16.303324,11.453737,14.584314,14.722330,8.609929,1.433060,1.084298,0.205786,0.045455,0.030579,0.000000,0.131406,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.355000,4612405.550000,4131,4905,126.169449,176.119858,174.566132,162.425629,150.425629,140.483505,140.739700,140.070282,141.425659,144.855408,148.566132,160.136383,178.524811,194.508286,210.409088,224.706635,228.946304,216.780991,191.425629,170.541336,159.921509,156.326462,150.590927,120.400841,101.524818,114.268608,123.557877,88.243820,43.971092,17.903322,13.690103,9.742989,11.866960,12.591754,13.282662,8.132244,0.707440,0.312398,0.000000,0.064463,0.132232,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.755000,4612405.550000,4153,4905,122.159508,166.961182,174.076889,160.465317,150.225647,141.266968,140.729752,139.266968,140.771103,143.225647,147.283493,159.134735,177.176056,194.820679,209.738037,222.820679,226.506622,216.862000,191.828949,169.382660,158.176056,155.581009,150.300018,118.985954,99.820671,114.647118,123.233894,87.242165,41.952915,16.383490,13.663655,9.452908,9.619851,11.643818,11.833900,4.923976,0.926449,0.143802,0.371076,0.000000,0.061158,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.155000,4612405.550000,4170,4905,112.723991,166.443008,171.443008,161.616562,149.319031,140.847961,139.178543,138.542175,141.013245,142.971924,147.385147,158.955399,176.955399,194.079346,209.600006,222.773560,226.029770,216.120667,190.889267,168.839691,158.104156,154.385147,148.781845,118.905807,98.881012,113.302498,121.831429,88.079361,42.087624,18.604151,13.525640,8.580180,12.547124,11.889273,10.987618,6.137200,0.781820,0.013223,0.029753,0.000000,0.006612,0.240496,0.006612,0.076860,1.253719,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.355000,4612405.550000,4186,4905,119.242165,165.076859,172.473557,163.845459,149.820663,142.093399,141.589264,139.853729,142.283478,143.919846,146.878525,159.300003,178.159515,195.473557,209.928101,223.473557,226.217361,216.870255,190.473557,167.853729,158.390915,154.531418,150.118195,118.754562,100.432243,115.316544,121.291748,89.176048,44.052090,17.589277,13.647126,9.245469,11.393406,12.768612,12.815720,6.554557,0.985126,0.441324,0.466943,0.000000,0.058678,0.000000,0.000000,0.200827,0.000000,1.200827,0.000000,0.000000,0.000000,0.000000 -601583.555000,4612405.550000,4207,4905,124.201675,168.424820,173.540512,163.697540,149.400024,141.507462,141.416550,139.714066,141.507462,143.904144,146.598373,158.846298,177.573578,194.036377,209.019852,221.457870,225.457870,214.887619,189.614899,168.052917,157.747131,153.780182,148.218201,118.490921,98.879349,112.904144,119.887611,86.920677,42.482662,17.718199,13.474399,9.719851,10.767786,13.378529,12.294230,5.423150,1.592564,0.175207,0.142149,0.000000,0.098348,0.000000,0.052894,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.155000,4612405.550000,4230,4905,116.632248,170.227295,169.871918,163.061996,148.004150,139.747955,139.896713,139.648773,140.342987,142.938034,146.053741,158.144638,176.260345,192.491730,207.871902,219.995865,224.698349,213.623962,188.475204,165.838852,154.690094,151.623978,146.409103,116.640511,96.714890,112.070267,119.103325,86.004143,41.252083,16.941341,13.309936,8.584311,9.963654,10.076050,11.304146,4.114058,0.557852,0.338844,0.236364,0.013223,0.012397,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.755000,4612405.550000,4253,4905,103.197540,170.916550,172.875229,163.395889,149.329773,143.412399,141.941330,141.395874,141.519836,144.395889,146.701675,159.726471,176.941345,193.974396,209.123154,220.486801,223.982666,213.453735,188.676880,166.842163,155.800842,152.908279,146.718201,116.354553,96.594231,111.916542,118.511581,87.982666,42.032249,18.171093,13.338034,9.687617,11.437207,12.185140,12.555387,5.237199,1.134713,0.355373,0.000000,0.000000,0.018182,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.155000,4612405.550000,4280,4905,109.505806,166.332245,173.671082,161.761993,149.547119,142.059509,140.018188,139.563644,140.753723,143.811584,146.563644,157.505798,175.654556,192.621490,206.398361,219.373566,222.332245,211.464478,186.398361,164.629761,153.183487,151.166946,144.563644,115.340515,96.695892,110.109108,118.051254,86.522339,42.290928,17.160351,13.142167,7.668608,9.298364,11.613239,9.979354,6.161167,0.920663,0.173554,0.000000,0.000000,0.076861,0.000000,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.355000,4612405.550000,4301,4905,120.270256,167.832260,170.435562,164.576065,149.625641,142.361176,139.823990,140.063660,140.617386,144.419022,147.286789,157.394241,175.295074,191.898376,206.799194,218.228958,220.328125,210.956223,185.394241,163.452087,153.096725,149.303329,143.972748,114.848778,95.253738,108.981010,117.278534,86.476868,41.700016,17.291754,13.088448,9.700840,9.880181,9.200016,12.486794,6.426455,0.551241,0.693389,0.070248,0.000000,0.019009,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.555000,4612405.550000,4317,4905,123.982666,168.065292,172.933060,161.842163,149.486801,140.759521,140.685150,139.329773,139.792587,143.585968,145.428940,157.015717,173.883469,191.238846,204.941330,215.718185,218.321487,208.106613,183.247116,161.164490,151.296707,147.338043,141.445480,113.098366,93.833900,107.784317,115.222336,84.585968,41.073574,16.671919,12.858696,8.441334,10.218199,11.932247,11.423982,7.438854,0.358679,0.630580,0.000000,0.033058,0.000000,0.000000,0.038017,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.155000,4612405.550000,4330,4905,110.982666,166.701675,170.478531,162.197540,149.619034,142.023987,141.032257,139.214066,140.329773,143.486801,146.676880,156.379364,173.817368,190.668610,204.916550,216.412415,218.156219,208.371094,183.503326,160.850433,150.809113,147.825638,141.900024,112.462006,93.238861,107.139687,115.891754,83.676880,40.032249,16.958696,12.900019,8.321500,9.324810,10.549603,10.257865,4.861991,0.384299,0.284298,0.005785,0.157025,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.330579,0.000000 -601611.555000,4612405.550000,4347,4905,110.893402,163.058685,169.009109,157.827286,146.017365,138.728119,136.711578,135.149597,136.083481,138.736374,141.521500,152.141342,169.223984,185.926453,200.000839,211.744644,213.223984,203.438858,179.728119,157.529770,147.100006,143.009109,137.645462,109.612411,91.389267,105.298363,112.802490,82.695053,40.637215,16.073570,12.513242,5.709102,10.010759,10.830596,12.638859,3.985131,0.611572,0.166943,0.427274,0.213223,0.086777,0.360331,0.000000,0.192562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.155000,4612405.550000,4375,4905,122.469444,171.097549,174.535553,165.477707,151.138870,142.965317,142.659531,141.808289,142.328949,143.519028,147.403336,159.047958,175.651260,192.337219,206.477692,217.866119,220.775208,210.312408,184.626465,162.295883,152.593414,147.097549,142.436386,113.618202,96.543823,107.428123,114.857872,85.618202,40.849606,16.815722,12.948780,9.187616,11.742993,11.881010,12.289273,5.365299,0.371075,0.052066,0.309918,0.081818,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.155000,4612405.550000,4390,4905,125.490089,169.151245,172.308273,161.415710,149.366119,141.564468,139.870255,138.704971,140.101654,143.275208,145.316528,156.382645,173.622314,190.432236,204.746292,216.415710,219.109924,208.349594,182.647110,160.382645,150.176041,146.399185,140.118195,111.928108,93.250420,107.539673,113.944633,84.126457,39.374401,15.654563,12.738035,6.774390,9.909934,8.645472,9.292576,2.966121,0.617357,0.123968,0.217356,0.147108,0.000000,0.175207,0.098347,0.069422,0.000000,0.000000,1.079339,0.000000,0.000000,0.000000 -601625.755000,4612405.550000,4418,4905,115.633080,176.566956,172.616547,165.046295,151.294235,142.616562,141.393402,141.509109,141.600006,144.856232,147.186783,157.773560,174.385132,191.723969,204.393387,217.798340,219.476028,208.707428,183.310760,162.186783,150.765305,147.310776,141.963654,113.806625,94.211586,107.798363,115.566956,84.806633,41.897537,16.630594,12.905803,7.014887,9.884315,9.534727,9.604975,5.329761,0.823142,0.119835,0.070248,0.000000,0.030579,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.955000,4612405.550000,4434,4905,123.574394,170.119827,174.227280,165.590927,151.871902,143.706604,141.838837,140.103302,142.946274,146.483475,147.681824,157.855392,174.995865,192.442154,205.243805,217.466965,218.896713,209.020676,183.772720,161.243820,150.855377,147.623962,142.045456,112.533066,94.533073,107.640503,115.318192,85.243820,42.177711,17.807453,12.913242,7.857038,9.351258,9.440514,10.690925,6.001662,1.019011,0.202480,0.292563,0.012397,0.016529,0.000000,0.044628,0.076860,0.000000,0.000000,0.000000,0.000000,1.309917,0.000000 -601635.955000,4612405.550000,4469,4905,116.326454,176.599182,175.822327,166.483505,154.632263,143.913254,142.541351,141.152924,140.731430,144.384323,146.152924,157.681854,173.764481,189.797531,203.590927,215.202499,216.904968,206.549622,181.516541,158.847137,148.698380,144.128128,138.409103,110.268600,91.921494,105.268600,113.392570,83.450432,40.425636,15.785970,12.582664,6.471911,7.644646,9.507456,9.329765,3.993397,1.133887,0.596695,0.206612,0.028100,0.000000,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.155000,4612405.550000,4485,4905,113.175224,182.051254,177.588440,167.695877,155.001663,144.315720,142.323975,141.695877,141.299179,145.679352,147.431412,158.299179,174.530594,191.084305,204.778519,216.737198,218.092575,208.489273,183.109100,160.001663,150.001663,144.563644,140.381821,111.381836,93.175224,106.398361,114.646301,85.290924,40.877708,17.469442,12.762002,7.029764,10.155390,10.219850,11.655388,5.352902,1.138019,0.557852,0.263637,0.017356,0.074380,0.172727,0.000000,0.000000,0.000000,0.000000,2.423141,0.000000,0.000000,0.000000 -601642.755000,4612405.550000,4503,4905,120.355377,171.909088,169.975204,165.115707,151.685944,140.859497,140.041321,139.239685,139.520660,143.735535,145.561981,155.719009,172.909088,188.322311,202.983475,214.330582,217.165283,206.000000,180.008270,158.900833,146.975204,142.537186,137.363632,109.661163,90.487610,104.834717,112.280998,82.206627,40.909111,15.938035,12.487622,6.947945,9.079355,8.557041,9.134725,5.219842,0.478514,0.058678,0.131405,0.206612,0.024794,0.000000,0.017356,0.199174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.955000,4612405.550000,4519,4905,131.589264,176.886795,174.878540,166.804153,152.093414,143.002502,142.671921,141.035553,141.043823,144.853745,146.390930,156.994232,173.828949,189.614075,203.374390,214.647110,217.333069,206.159515,180.647125,158.837219,146.655396,142.985977,138.300018,109.771095,90.771095,103.357872,112.746307,84.870270,40.671921,17.731422,12.572747,6.034720,10.634728,11.414065,9.659517,4.525629,0.824795,0.361158,0.486778,0.148761,0.023141,0.000000,0.204133,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.755000,4612405.550000,4533,4905,123.785965,170.123962,170.173553,162.438019,149.793396,139.859497,139.884293,139.074387,138.462814,142.033051,144.165283,153.776855,170.446274,187.669418,200.578506,212.272720,213.958679,202.495865,178.214874,155.256195,144.388428,140.776855,135.000015,107.446297,89.082664,102.305801,109.735550,80.388443,39.157040,16.663654,12.272745,5.957861,7.971091,7.826461,7.147946,4.095875,0.485952,0.390910,0.089257,0.086777,0.016529,0.020661,0.012397,0.180992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.555000,4612405.550000,4547,4905,124.614891,174.705795,171.895874,166.251236,152.069427,141.846283,140.895874,139.160339,139.366943,143.829758,144.598343,155.408264,170.771912,188.375214,201.647934,213.738846,215.325623,204.697525,179.152069,156.003311,145.342148,141.565292,135.581818,107.482658,89.143814,103.052902,112.986786,82.722328,37.962002,15.545473,12.325641,5.188440,9.401670,8.285965,8.190094,3.699180,0.684299,0.185125,0.061984,0.000000,0.010744,0.106612,0.162810,0.000000,1.342149,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.955000,4612405.550000,4569,4905,118.504150,175.857864,174.229752,166.890915,155.663635,143.903305,142.250427,142.176041,141.655380,146.043808,147.928101,157.349594,174.192566,192.382645,204.932236,217.080994,218.345459,207.700836,182.180176,159.634720,148.428101,144.725632,140.800003,111.452904,92.271088,105.882660,114.428116,86.221504,42.006634,19.356215,12.800019,6.768606,10.288446,11.003323,10.412411,5.450422,1.971077,1.438018,1.605787,0.723968,0.743803,0.122314,0.363637,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601661.355000,4612405.550000,4596,4905,135.281830,182.476852,177.609085,166.047119,154.146271,141.749573,140.352890,139.757843,139.642136,143.790909,143.890076,154.253708,171.088425,189.047119,201.683472,213.890091,215.658691,204.997528,178.501648,156.295029,145.980988,140.964462,136.699997,106.989265,88.576042,102.485130,110.981003,82.509933,39.394238,16.499191,12.427293,5.428109,8.800017,7.179354,8.068608,4.814058,0.442977,0.164463,0.311571,0.019008,0.000000,0.000000,0.389257,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.755000,4612405.550000,4618,4905,144.188446,187.097534,176.948761,168.998352,153.957031,142.138870,141.039688,140.295883,139.733902,144.089279,143.667786,154.386795,172.138855,189.601654,201.766953,214.469421,214.692566,205.271088,179.312408,157.676041,145.105804,142.014893,137.618210,107.973579,88.758698,102.180191,112.006638,83.047958,40.585144,16.951256,12.510762,6.757037,9.744645,9.238031,10.363651,4.946289,1.076035,0.227274,0.303307,0.010744,0.348761,0.000000,0.044629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.755000,4612405.550000,4673,4905,124.433075,175.276031,174.755371,162.523972,147.044632,136.821487,138.152069,134.267776,134.036377,135.639679,137.482651,147.953705,164.763657,180.490906,191.342148,202.515686,203.705765,191.003311,166.548782,146.581818,136.722321,133.978531,128.218201,100.515717,84.333900,95.127281,105.193398,76.168617,37.507458,16.589273,11.656217,9.676047,8.990924,9.548775,10.926461,4.338025,0.857854,0.766944,0.449588,0.114050,0.000000,0.000000,0.075207,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.355000,4612405.550000,4691,4905,122.845474,176.101654,173.366119,160.680191,144.184311,134.233902,135.068619,132.308289,132.275223,133.506638,134.068619,145.415710,162.002487,177.357864,189.614059,200.192566,200.547943,189.109924,164.027283,143.209091,134.134735,130.357880,124.754570,97.762833,81.556221,94.630600,102.903328,75.043823,33.828949,14.819026,11.341341,10.033899,7.521501,9.668610,9.104148,4.090091,0.626448,0.229753,0.000000,0.189256,0.000000,0.000000,0.049587,0.465290,0.000000,0.000000,0.000000,2.203306,0.000000,0.000000 -601686.355000,4612405.550000,4721,4905,143.352097,181.765320,173.269455,163.195068,148.732254,136.938858,136.955399,133.922318,134.442978,135.533890,135.434723,147.352097,163.558701,179.575241,191.310776,201.996719,201.748795,189.385147,166.095901,145.509125,135.385132,132.211578,126.872734,99.004982,82.558693,94.864487,103.996704,75.583488,36.748775,15.538034,11.533903,8.212410,9.418197,9.317370,10.252082,2.657858,0.563638,0.585952,0.180992,0.062810,0.000000,0.000000,0.042149,0.239670,0.000000,0.000000,0.000000,0.820661,0.000000,0.000000 -601689.155000,4612405.550000,4735,4905,121.855385,179.946304,172.309937,162.152893,147.268600,134.863647,134.623978,132.681839,132.417374,134.152908,134.227295,145.342972,161.219009,177.293411,189.516541,200.111588,199.954559,186.871918,164.400833,143.227280,132.838852,129.871918,123.772743,96.847122,80.367783,92.409103,101.194229,72.268608,33.582664,12.957869,11.252085,8.135550,8.020675,8.071913,8.223154,2.777693,0.901655,0.111571,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.171901,0.000000,0.000000,0.000000 -601695.555000,4612405.550000,4767,4905,125.400009,180.185120,172.276031,163.110748,147.267776,137.259506,135.400009,132.019852,132.317368,135.317368,134.664474,145.532242,162.681000,177.953720,190.317352,200.325623,200.532242,186.656204,163.218185,143.532242,133.424820,129.738861,124.309113,96.548775,80.523987,92.474388,101.375221,73.681007,34.201672,13.090927,11.300845,7.715716,8.534723,7.835550,6.993402,3.047941,0.413224,0.033058,0.000000,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.755000,4612405.550000,4788,4905,130.519012,188.915710,177.213226,164.064468,149.188431,136.758682,135.634720,134.560333,133.973557,136.320663,134.742157,145.957031,162.510757,178.899185,190.742157,202.097534,200.279343,187.494217,164.543808,143.775208,133.386780,130.742157,125.436371,97.783478,80.824799,94.461166,103.890915,74.841331,35.262833,14.597538,11.403324,9.452908,8.506625,8.571087,9.343818,3.242982,0.665291,0.250414,0.010744,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601705.355000,4612405.550000,4816,4905,129.234726,184.424789,173.052902,163.705795,149.424789,135.796692,136.110748,133.094223,133.077698,135.482651,134.606628,145.548767,162.623138,177.879349,190.656204,201.747116,199.565292,186.846283,162.102478,142.887604,132.796707,129.135544,123.581833,95.738853,79.606636,92.383484,101.705795,73.061188,33.681007,13.881837,11.234730,9.916545,7.766129,8.632244,9.559519,3.067775,0.452067,0.306613,0.118182,0.002479,0.000000,0.000000,0.128926,0.148761,0.000000,0.000000,0.000000,1.214050,0.000000,0.000000 -601709.755000,4612405.550000,4838,4905,134.224808,190.695862,175.935532,167.100815,151.844620,137.687592,137.481003,136.142151,135.588440,138.728912,136.431412,147.018173,163.266113,180.844620,192.406601,203.985123,201.745453,187.844620,164.447922,144.629745,134.571915,131.654556,126.200020,97.216545,81.538864,95.208282,102.456215,75.076050,36.009933,13.928944,11.472746,10.332248,8.309104,9.248775,10.547951,5.173563,0.865292,0.295869,0.076861,0.004959,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.355000,4612405.550000,4861,4905,141.951248,189.290100,177.777695,166.959518,151.372742,137.934723,136.802490,133.893402,135.323151,139.686783,135.290100,146.819016,162.686783,180.190918,192.157867,203.083481,200.728119,186.769440,163.777695,144.339676,133.347946,130.645462,125.281837,97.496704,79.562828,94.703323,103.166130,74.422333,34.066963,14.858696,11.389277,9.704971,7.723154,8.709105,9.588446,3.928933,0.689258,0.147108,0.117356,0.014876,0.077686,0.000000,0.071075,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.555000,4612405.550000,4897,4905,151.260361,200.781006,180.194229,170.764481,150.252106,138.615723,137.896713,135.309937,135.847122,141.549606,136.913239,147.483505,163.690109,180.566132,193.185974,204.747955,202.301666,188.185974,165.111588,145.549606,133.904968,130.781006,127.045471,96.053734,81.095055,96.425636,103.657043,74.582664,34.921509,15.638035,11.549606,12.234727,8.293402,8.747949,8.156214,5.662819,0.452895,0.216530,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.355000,4612405.550000,4956,4905,120.369431,168.410751,171.675217,160.576050,145.435547,136.609100,134.666946,132.286789,132.476868,134.179352,136.171082,146.113235,163.807449,180.220673,192.204147,202.336380,202.708267,191.435547,166.625626,144.328110,133.733063,130.129761,125.063644,98.055382,80.138031,93.890099,103.799187,76.262001,36.212418,15.300844,11.369440,7.508276,6.847122,10.037204,9.375221,4.915710,1.170250,0.232232,0.134711,0.000000,0.061157,0.000000,0.103306,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.355000,4612405.550000,5051,4905,112.328110,164.328110,171.633896,161.162827,146.989273,137.476868,135.121490,133.675217,133.865295,136.270264,136.501663,147.997528,165.452072,180.972733,194.096710,204.600830,204.559509,193.080170,168.369431,147.377701,135.757858,131.708267,126.063644,97.253731,81.022324,95.633896,106.171082,78.113235,36.576054,15.305802,11.460349,7.335550,7.508279,8.614063,9.273567,3.930586,0.690911,0.085951,0.180992,0.504959,0.000000,0.000000,0.105785,0.084298,0.000000,2.684298,0.000000,1.016529,0.000000,0.000000 -601781.755000,4612405.550000,5198,4905,107.257866,168.646286,172.084305,159.654556,147.447937,137.406616,136.117371,133.604965,133.828110,136.274384,136.993393,148.604965,165.629761,181.398361,195.009933,204.861160,206.530594,195.034714,171.092575,147.638031,137.001663,133.902496,129.018188,98.604973,80.282661,96.505806,108.307457,77.381836,36.588448,14.366960,11.728944,7.414061,7.856215,9.107454,7.737202,2.771080,0.473555,0.442977,0.066116,0.004959,0.013223,0.000000,0.000000,0.138843,1.361157,0.000000,0.000000,0.000000,0.000000,0.000000 -601814.755000,4612405.550000,5363,4905,116.191750,171.299179,170.249603,162.299179,149.034729,137.026459,135.348785,134.357040,132.671097,136.803329,137.481018,148.695892,166.431412,182.968597,195.423157,206.778519,207.695877,197.828110,172.613235,150.340515,138.745483,135.290939,128.745468,99.249596,81.638031,97.166954,109.770264,80.505806,38.150433,14.886794,11.704151,4.745463,7.057867,7.710760,6.978525,2.890090,0.384298,0.319009,0.267769,0.000000,0.013223,0.000000,0.000000,0.074381,1.342149,0.000000,0.000000,0.000000,0.000000,0.000000 -601829.955000,4612405.550000,5439,4905,131.542160,185.327286,171.930588,166.591751,151.285965,137.633072,137.823151,136.624802,135.368607,139.980179,139.814896,151.029770,168.566956,185.889267,199.327286,209.889267,210.798355,200.955383,177.418198,154.591751,142.773560,138.162003,132.600006,103.715714,83.980179,100.178528,112.897537,84.649597,39.087624,16.031424,12.054564,6.192572,7.393405,8.624808,8.965302,4.066950,0.461985,0.406613,0.071075,0.016529,0.000000,0.018182,0.014876,0.006612,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000 -601838.155000,4612405.550000,5480,4905,117.526466,175.997513,176.691727,162.576019,147.592560,137.410736,138.104950,134.708282,134.675232,136.509933,138.501648,150.699997,169.774368,185.931396,200.600815,212.385941,215.385941,202.600815,177.063629,155.774368,143.790909,140.691727,136.699997,105.501671,88.113243,103.766136,115.724808,83.551254,41.187630,17.874399,12.427292,11.078527,10.486794,10.388447,12.748776,5.923977,0.561159,0.233058,0.195868,0.000000,0.012397,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601842.355000,4612405.550000,5501,4905,104.077698,178.717361,181.940506,167.634735,150.039688,138.783478,138.229752,135.601654,135.609924,137.080994,139.585129,152.213242,170.700851,188.659515,201.552078,213.626450,215.238022,202.204971,178.180176,155.403336,143.180191,142.072739,135.800003,104.758690,86.552078,102.923981,114.676041,82.361992,41.733902,17.189276,12.345473,11.547950,10.038860,10.194232,11.576874,6.021496,1.483474,0.666943,0.725621,0.165290,0.046282,0.056199,0.271076,0.239670,4.720662,0.000000,1.339670,0.000000,1.319008,0.000000 -601845.955000,4612405.550000,5519,4905,134.500015,183.648758,180.466949,163.822311,148.946274,138.830582,139.028931,136.855377,136.227295,139.458679,140.847107,153.004135,170.971069,189.475204,202.673553,214.524796,216.103302,202.995865,179.483475,156.665283,144.657028,142.797516,137.045456,106.657043,89.061996,103.599190,115.607452,84.252083,43.095066,18.197538,12.458697,10.799189,10.444647,10.958694,13.139686,6.443811,1.233060,0.509092,0.355373,0.057852,0.136364,0.000000,0.113224,0.165290,0.000000,0.000000,0.000000,0.000000,1.386777,0.000000 -601848.755000,4612405.550000,5533,4905,116.916550,178.437210,176.073578,162.784317,148.941345,136.916550,136.883484,134.660339,133.470261,136.990921,138.147949,149.875229,168.957855,186.800842,200.528122,211.065308,212.023987,200.189270,176.015717,153.462006,141.999191,139.619034,134.445465,104.255386,85.891754,100.214058,114.255386,82.090103,39.048779,15.632249,12.222333,9.845467,9.134727,9.290923,10.096709,5.918190,0.870250,0.309918,0.058678,0.006612,0.155372,0.000000,0.065290,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.755000,4612405.550000,5548,4905,115.100845,184.501678,180.030609,168.848785,149.981018,139.344650,140.104980,137.939697,140.576065,141.815735,142.385971,154.352921,172.997543,189.948776,203.097549,215.196716,217.328949,203.965317,181.006638,159.254562,147.147125,144.196716,139.254562,107.535553,90.990097,105.816544,116.725632,86.676048,43.973572,18.031425,12.659524,10.565305,9.132250,11.944645,12.567784,7.114886,2.053722,1.019010,0.816530,0.652894,0.606612,0.056199,0.145455,0.250414,0.000000,0.000000,1.144628,2.361157,0.000000,0.000000 -601856.555000,4612405.550000,5572,4905,98.480179,182.290085,179.653717,166.323151,151.554565,137.248779,139.058685,137.273560,137.976044,139.240509,139.587616,152.182663,171.843796,188.976028,202.736359,214.918182,216.761154,202.819000,179.199173,157.876877,145.314896,144.653732,138.100006,107.455376,90.835541,104.199181,117.521492,84.430588,41.430599,17.022331,12.554564,12.165303,10.098362,10.989271,12.904974,6.789266,0.827275,0.026447,0.274381,0.026447,0.000000,0.000000,0.004132,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.355000,4612405.550000,5596,4905,113.059532,189.590927,181.235550,167.152908,150.609940,137.070267,139.739685,136.665298,136.557861,140.161179,138.913254,151.888443,171.012405,188.475220,201.450424,215.590927,215.797531,202.202499,178.235550,156.070267,144.028946,141.756210,136.227295,105.061996,88.648773,104.037209,115.838860,84.599190,42.491753,17.205803,12.384316,12.389275,10.639687,11.379355,12.067783,5.407446,1.828929,0.495868,0.707439,0.542976,0.245455,0.000000,0.128927,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.955000,4612405.550000,5614,4905,132.641342,188.830597,180.392563,166.417374,149.549606,137.409103,138.880188,135.615723,136.896713,140.144638,140.227295,151.409088,170.599182,188.095047,200.789261,213.227280,213.971069,200.020660,176.466949,154.880188,143.095047,140.392578,134.863647,103.747948,87.483490,102.152908,115.202492,81.789276,41.111588,16.517374,12.260348,10.972743,10.596710,9.600842,10.786793,5.618190,1.107440,0.618183,0.195042,0.075207,0.019835,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.155000,4612405.550000,5630,4905,119.322342,194.487610,180.826447,168.123962,150.289261,138.140503,139.652893,136.495880,136.834717,141.752060,139.033051,152.438019,170.842972,188.603287,202.859482,215.016525,215.719009,201.561966,178.280991,156.322311,145.033051,141.801651,137.181824,105.768608,88.528938,103.247948,115.826462,83.636391,42.909115,17.328119,12.471093,12.519024,9.647949,10.953735,11.976049,6.352076,0.897523,0.214877,0.121488,0.032232,0.057851,0.042976,0.128100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.755000,4612405.550000,5643,4905,118.289276,182.099182,178.958694,168.884293,151.595062,139.132248,138.462830,137.495880,136.330597,140.719025,139.743820,151.628113,167.438034,185.933899,198.785141,211.595032,211.545441,200.553741,176.561996,154.958694,144.834732,140.793411,136.272751,106.537209,90.652908,105.123985,114.090927,82.942162,39.760349,15.645473,12.388449,10.954560,9.985140,10.449605,11.472743,4.009925,1.257853,0.714878,0.796695,0.267769,0.000000,0.128099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.555000,4612405.550000,5657,4905,119.726471,179.842163,174.181000,166.197525,151.362823,140.329773,138.395889,138.362823,136.561172,141.866959,141.585968,151.503326,165.445465,183.015717,196.172745,208.966125,210.445465,199.445480,175.610748,153.809097,145.255386,140.528122,137.354568,109.585968,92.015724,106.362831,112.420677,83.850433,39.825638,17.217371,12.486796,8.026458,9.971089,9.787619,10.904973,5.490091,1.423970,0.392564,0.130579,0.370249,0.304959,0.000000,0.616530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.555000,4612405.550000,5677,4905,118.476875,167.584290,171.195862,163.906601,148.790924,137.782639,136.947922,135.509933,135.204147,137.857025,139.708252,149.832245,164.576019,181.964462,194.733047,206.121475,208.154541,197.898346,173.113220,153.030594,143.261978,139.675201,135.518188,108.361183,91.832253,105.633911,112.981010,82.063652,40.427299,15.688447,12.319854,7.157863,11.768610,9.914890,10.363649,5.547116,0.281820,0.610746,0.426447,0.320662,0.071075,0.000000,0.000000,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.955000,4612405.550000,5709,4905,117.221512,176.444641,171.907440,164.411591,148.064484,138.609940,136.576889,136.072754,133.163666,137.733902,139.601669,149.089279,163.915726,180.725632,193.725632,206.328918,207.899170,198.180176,173.692566,152.709106,144.543823,139.890930,137.527298,106.998367,91.436386,104.642998,113.337212,82.899193,38.667786,17.335556,12.502499,6.161993,10.264478,8.755386,12.048776,3.461992,0.803308,0.636366,0.180166,0.000000,0.025621,0.000000,0.271901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.755000,4612405.550000,5743,4905,122.456215,169.241333,172.142151,162.613235,149.340500,139.662827,138.034714,135.712402,134.034729,139.943817,138.753723,151.191742,164.745468,181.514053,194.142151,205.720657,207.489243,197.770264,174.960342,153.142151,143.712402,139.357040,136.836380,109.481010,91.786797,105.852913,111.720680,83.976875,41.233078,18.135555,12.439688,10.449601,11.884315,11.107453,10.930593,5.926456,1.120665,1.333888,0.335538,0.134711,0.112397,0.252893,0.261984,1.201654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.555000,4612405.550000,5772,4905,107.841331,168.023163,173.105804,164.196716,149.246307,138.271088,135.899185,136.039673,133.824799,138.304138,138.866119,148.717377,164.494232,180.758698,192.659531,205.337219,207.386795,197.014893,172.031433,152.527298,142.395065,140.072754,134.436371,108.254555,90.279343,104.957031,111.014885,83.973557,39.857872,16.753736,12.221506,8.401665,10.289271,10.886792,9.874393,4.051247,1.136366,0.215704,0.258678,0.084298,0.000000,0.361158,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.355000,4612405.550000,5806,4905,100.113251,155.848770,170.063644,160.179352,146.576050,136.997528,134.815720,134.270264,132.790924,135.501663,136.956207,147.493393,162.551254,179.683487,190.493393,202.997528,204.774384,194.823975,172.790924,150.377701,140.807449,136.047119,133.609116,107.047127,90.237206,103.584312,111.518196,81.410759,40.129772,16.401672,12.146300,7.205799,9.366131,10.881008,8.817368,5.205795,0.348762,0.090910,0.000000,0.176860,0.000000,0.010745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601908.155000,4612405.550000,5830,4905,91.747124,161.681015,165.523987,157.962006,144.515717,135.714050,133.763641,131.441330,132.036377,134.119019,135.714050,145.995056,160.160355,177.011597,190.152084,200.904144,203.714066,192.928940,169.722336,148.631424,138.920685,135.581818,131.400009,104.424805,88.581841,101.085968,109.350426,79.218201,36.557045,13.362001,11.945474,5.771086,9.042990,8.972742,7.366955,3.409924,0.566118,0.275208,0.136364,0.167769,0.000000,0.075207,0.216529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.755000,4612405.550000,5858,4905,100.524811,163.260345,169.607452,160.185974,146.252106,136.524811,135.004135,132.814056,133.466949,135.070251,136.359528,146.714905,162.500015,178.268616,190.789291,202.723175,204.723175,194.450439,172.169434,150.020691,140.111603,137.326462,132.409103,105.681824,87.739677,102.698357,108.929764,80.590927,39.433899,14.902499,12.037210,5.968607,8.699188,8.547951,8.004972,3.842155,0.530581,0.666117,0.000000,0.000000,0.055372,0.009918,0.382645,0.790910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601917.955000,4612405.550000,5879,4905,102.674408,154.616562,167.170258,159.277710,145.575241,136.608292,135.038025,132.566956,132.137207,134.517365,137.252914,147.641357,162.566971,179.319000,191.500854,202.839676,204.657852,195.145477,171.153717,151.162018,139.566971,137.095901,132.054565,106.575226,89.773575,101.641335,109.905800,80.277702,38.046299,14.495059,12.004978,5.598357,8.988442,8.573567,8.709929,3.522321,0.558679,0.040497,0.047108,0.132232,0.000000,0.003306,0.611571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.155000,4612405.550000,5910,4905,96.000008,156.338852,164.190094,158.694229,143.933899,136.479355,135.636383,131.537201,131.123978,133.206619,135.223145,146.735550,162.462830,176.041351,190.057877,202.107468,203.504166,192.562012,169.586792,148.388443,138.223160,136.471085,130.818192,104.611580,87.074387,101.008270,108.066124,79.793396,36.752083,13.514894,11.892581,4.466954,8.609931,9.781833,7.481828,3.823148,0.602481,0.177687,0.078513,0.000000,0.087604,0.000000,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.755000,4612405.550000,5948,4905,89.413246,162.851257,166.743820,158.198364,148.876053,136.330597,136.165298,133.950424,134.504150,135.586792,137.041336,147.842987,163.809937,179.297531,191.958694,203.330597,206.380188,194.123978,170.735550,150.413239,140.148773,136.743820,131.818192,105.851265,89.553734,103.925644,108.776886,79.950439,39.446301,16.435555,11.983490,7.376872,9.770265,8.776051,10.776049,4.100008,0.600829,0.099174,0.213224,0.087604,0.016529,0.004133,0.757025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.155000,4612405.550000,5985,4905,95.367783,157.392578,167.698364,158.202499,144.690094,136.169434,133.351242,132.119843,130.615707,132.880173,134.938019,144.962830,161.442169,176.888443,188.690094,201.252075,201.781021,192.243820,168.020676,147.673569,138.020676,135.078522,130.045456,103.756218,86.219025,100.789276,109.615715,77.177704,38.078533,13.585967,11.822333,7.112410,8.893404,9.934727,9.334723,2.312402,0.658680,0.371902,0.000000,0.088430,0.000000,0.000000,0.380992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.355000,4612405.550000,6021,4905,97.815712,154.617371,164.187592,157.460342,143.278519,134.377701,132.675217,129.063644,128.956207,130.823975,132.286789,142.319839,158.501648,175.212387,187.088440,197.195877,199.518188,188.567780,166.047104,145.551254,135.030579,131.931412,126.972740,100.071907,82.997536,98.815712,105.733070,76.865311,37.030602,15.219026,11.542993,6.590096,6.973568,7.960346,8.081004,3.176039,0.929754,0.467770,0.438017,0.052066,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.555000,4612405.550000,6057,4905,96.085136,161.200836,172.349594,159.671906,147.680176,137.341339,135.109924,131.969437,132.233902,132.804153,134.721497,145.333069,160.729752,177.068604,188.812408,199.952896,201.465302,189.911575,167.440506,147.043823,137.671921,133.440506,128.118195,102.134727,84.903328,101.300018,109.052078,78.390923,39.266960,16.371092,11.647127,7.531418,9.472741,10.059520,10.498362,3.867777,1.066118,0.302481,0.270248,0.044628,0.128099,0.083472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.355000,4612405.550000,6111,4905,86.809113,151.734711,167.751236,156.461990,141.685120,132.263641,129.594223,126.726456,126.255386,128.098358,129.486786,139.817352,155.916534,171.594223,184.966125,195.263657,197.238861,185.098373,162.379349,142.354553,131.404144,129.470261,123.990921,97.792572,80.908287,95.503319,105.247116,77.197533,37.792580,13.414065,11.271919,7.417367,8.585137,9.071088,7.990920,3.490090,0.550415,0.072728,0.345455,0.142976,0.001653,0.000827,0.171901,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.755000,4612405.550000,6133,4905,108.404976,151.785141,169.586792,159.851257,146.198364,136.239685,134.024796,130.950424,130.181824,131.702484,134.123978,143.760345,159.438034,174.685974,186.148773,197.462845,199.231430,187.512436,165.314072,144.611588,135.479355,131.396698,126.181824,100.768600,83.247948,98.000008,106.537201,77.801666,38.165306,16.090927,11.471092,9.642162,9.429769,11.500016,9.469434,3.161990,1.275210,0.347109,0.609092,0.092562,0.000000,0.078513,0.455372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.955000,4612405.550000,6149,4905,106.417374,158.152924,170.111603,155.582672,144.367798,133.954559,131.665298,128.698364,128.896713,130.301666,132.185974,141.227310,158.830612,173.235565,185.830612,197.549622,197.698380,186.549622,162.690109,144.400864,134.731415,131.524811,125.227287,98.185966,83.028938,95.293404,107.376053,76.318199,38.136379,14.471918,11.384315,8.334724,7.587618,10.410760,7.102489,4.392570,0.450415,0.282646,0.060331,0.000000,0.000000,0.000000,0.205786,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.555000,4612405.550000,6172,4905,96.875229,159.214066,169.114899,158.982666,144.313248,134.181015,133.602493,129.619034,129.602493,129.726471,133.106628,142.503326,159.536377,174.247131,185.701675,197.247131,197.891754,187.428940,164.057037,144.420685,133.577698,129.453735,124.263657,98.379356,82.495064,95.379356,106.098366,77.412415,37.437206,15.064481,11.296713,8.251252,8.523155,9.860347,9.865302,4.660340,0.547109,0.480993,0.165290,0.081818,0.198347,0.000000,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.155000,4612405.550000,6205,4905,104.219856,154.715714,166.583481,156.839676,144.153732,134.748779,133.550430,130.104141,128.566956,130.170258,131.228119,141.451248,158.781830,173.021500,186.319016,197.781830,196.864471,186.426453,162.376877,143.310760,132.831421,130.285965,126.327286,99.046295,82.004982,95.847946,106.054558,75.905807,35.963657,13.522329,11.484317,7.146293,8.705800,9.109108,10.312411,3.111578,0.833061,0.390910,0.000000,0.495868,0.073554,0.260331,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.755000,4612405.550000,6233,4905,97.028107,160.821503,169.276047,158.986801,145.309113,135.986801,134.565308,130.846298,130.069427,131.961990,133.085968,143.523987,160.499191,174.647949,187.689270,199.358704,199.623154,187.771927,165.416550,144.573578,135.209930,133.135544,127.763649,99.813232,84.862823,98.276047,106.590096,77.995056,37.763657,15.306628,11.614896,8.725634,9.676875,10.447951,10.446295,3.821495,1.459507,0.152067,0.179339,0.000000,0.014050,0.085124,0.368595,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.955000,4612405.550000,6254,4905,104.451256,163.195068,169.831436,159.980194,147.550430,135.757034,134.211578,130.790100,131.004974,131.162003,133.145462,144.633072,160.013245,176.153732,187.633087,198.666168,200.542191,188.211609,164.988464,144.831421,135.401672,131.285965,125.690926,99.062813,83.583481,97.476036,105.938858,77.219849,37.922337,15.438862,11.426465,9.915717,8.474398,10.722331,8.438857,4.757035,0.990086,0.223969,0.248761,0.038017,0.112397,0.000000,0.000000,0.293389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601997.955000,4612405.550000,6279,4905,100.662819,170.241333,169.323975,158.042984,144.952072,135.051270,133.084305,130.117371,130.431412,130.481003,133.001663,143.398361,159.497528,174.935547,186.547119,196.687607,198.571915,187.530594,164.720673,142.968597,133.720673,130.208282,126.018188,99.745476,82.836388,95.629768,104.274399,77.762009,36.770271,14.354564,11.456217,8.420675,9.100842,9.888447,10.996708,4.622323,0.832234,0.200828,0.028099,0.240497,0.000000,0.001653,0.608265,0.002479,2.271075,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.155000,4612405.550000,6305,4905,114.462013,166.850433,169.189270,158.809113,145.759521,136.065308,135.032257,132.023987,130.734726,132.346298,133.181015,144.321503,159.982666,175.784317,187.495056,199.395889,199.833908,187.660355,164.941345,144.751266,135.222336,133.354568,125.900017,100.404152,84.511597,98.280182,105.866959,78.131424,35.767788,15.062828,11.445474,9.715715,9.510760,8.856215,9.937204,4.677694,1.033888,0.079340,0.306612,0.000000,0.012397,0.059504,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602007.155000,4612405.550000,6325,4905,102.950439,163.446274,173.768600,161.677689,146.438019,136.702499,136.305801,132.892593,133.330597,133.272751,134.752090,145.834717,162.371902,177.528931,188.842972,200.983475,202.264465,189.826447,166.099167,145.099167,136.157043,132.330597,128.272751,100.190109,85.404984,97.462837,105.636391,76.834732,35.942173,15.257043,11.661176,9.421501,9.601668,10.437206,8.065303,5.115709,1.061161,0.041323,0.068595,0.284298,0.000000,0.000000,0.000827,0.580166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.955000,4612405.550000,6349,4905,117.285973,167.013229,170.608276,160.062820,146.732254,136.583496,135.484329,132.409943,130.847961,132.790100,133.434738,144.980194,161.294235,176.459518,188.294235,200.690918,200.914062,188.236374,166.203323,145.748795,135.368622,132.905807,127.690933,100.591759,85.310768,97.600021,104.707458,76.186798,36.757046,15.051256,11.608283,8.023152,8.771089,9.500014,10.136376,4.223146,1.323972,0.311573,0.181819,0.707439,0.000000,0.315703,0.000000,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.355000,4612405.550000,6381,4905,116.854568,169.995056,171.738861,161.507462,147.796707,133.796707,134.201660,130.920670,129.871078,131.647949,132.127289,143.416550,159.375229,175.424820,187.044647,199.606628,198.871094,187.358704,163.862823,142.242996,133.284302,129.995056,125.672737,98.862823,83.887611,95.003319,103.895882,74.284317,33.804977,14.843819,11.424812,9.095056,8.533898,9.714065,8.700013,4.866951,0.635539,0.215704,0.133885,0.032232,0.000000,0.000000,0.589257,0.357852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.955000,4612405.550000,6399,4905,97.520676,169.322327,171.338852,161.768616,145.834732,132.256226,132.909119,129.809937,128.950439,131.049606,131.057877,141.917374,157.553741,173.628113,186.330597,198.520676,198.694229,185.413239,162.355392,141.148773,132.198364,130.710754,124.636383,96.760345,81.264481,94.842995,100.909103,73.371918,34.049606,13.915720,11.330597,9.310755,9.283486,8.601667,9.252078,3.254551,0.236365,0.146283,0.128926,0.036364,0.124794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.355000,4612405.550000,6436,4905,107.690102,174.458679,170.648758,160.144623,144.210739,132.822327,131.574402,129.384308,127.483490,131.326462,129.144638,142.152893,158.202484,174.723145,187.739670,199.772720,201.061981,186.103302,165.227280,145.871902,135.516541,130.665298,125.045471,98.293404,80.516548,93.797539,104.971092,77.640511,36.276882,13.981009,11.367787,9.059517,8.280179,9.314892,9.912411,2.698353,0.182647,0.587605,0.061157,0.000000,0.000000,0.140496,0.502480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602032.155000,4612405.550000,6450,4905,105.391754,171.416534,168.408279,158.912399,142.928940,131.325638,130.143814,128.325638,128.317368,130.945480,130.276047,141.085968,158.160339,175.804962,187.912399,199.895874,200.242981,187.267776,164.829758,144.962006,136.135559,132.705811,125.400017,97.515724,81.912415,95.763657,107.631424,75.821510,36.168613,13.739686,11.400020,7.966126,7.877701,8.922327,8.146292,3.442155,1.647112,0.113225,0.330579,0.347108,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.955000,4612405.550000,6474,4905,100.771095,176.911575,171.903305,163.184311,147.837219,136.531433,134.903336,132.738037,132.200851,135.316559,133.399200,146.093414,162.142975,179.886780,191.928101,205.316528,205.605789,190.713226,168.994217,148.423996,138.622330,136.614075,128.845474,102.506638,84.407463,100.209114,109.969444,80.349609,38.820679,16.506630,11.713243,9.784309,10.140513,10.978527,10.115717,4.721497,0.845457,0.183473,0.173554,0.000000,0.000000,0.748761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602041.755000,4612405.550000,6498,4905,105.947136,177.459518,168.352081,162.128937,145.616562,133.765320,133.732254,131.509109,130.905807,135.195068,133.674408,144.922348,161.657867,179.533890,192.145462,204.699188,205.178528,190.823151,170.054565,148.872757,139.228134,135.186798,130.600037,101.418213,84.831436,100.723999,109.269447,79.252922,39.682663,16.100018,11.872746,11.571915,10.652908,11.024808,10.988443,4.089263,0.886781,0.266117,0.376034,0.588431,0.000000,0.000000,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602046.555000,4612405.550000,6522,4905,114.952087,177.332245,175.224808,166.340500,149.175217,138.133896,136.935547,132.943832,133.844650,137.836380,135.447937,146.084305,163.811584,181.282654,194.745468,208.042984,205.952072,192.935547,172.654556,152.431412,140.497528,137.844635,133.745468,103.952095,88.836388,103.009941,113.175224,78.960358,37.613243,16.626467,12.158696,11.858694,10.048776,12.588447,10.216542,5.842157,0.421490,0.197523,0.496695,0.000000,0.032232,0.000000,0.000000,0.952067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602051.555000,4612405.550000,6547,4905,126.299187,183.704147,171.233063,164.332245,148.001663,136.712402,133.902496,132.332245,133.390106,138.076050,133.588440,145.902496,161.646286,179.109100,194.357025,207.018173,206.745453,192.150406,171.233063,151.067780,141.076050,137.522324,132.836380,102.456215,85.910759,103.679359,110.142166,79.514076,38.472744,16.438034,12.076052,12.776873,8.823982,11.077703,10.261997,3.909925,1.433061,0.849588,0.433885,0.109918,0.215703,0.166943,0.247108,0.367769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602056.555000,4612405.550000,6572,4905,115.719025,189.256195,173.553726,164.776871,146.603333,136.281006,134.330597,132.148773,132.099182,136.595062,132.677704,145.033081,161.281006,178.958679,193.586777,206.256195,206.909088,191.578506,170.677704,150.851257,141.561996,138.595062,132.636383,102.256218,86.281006,103.801666,113.148773,79.958694,39.355392,17.004976,12.057872,11.609932,9.409106,10.248775,11.833074,4.760339,0.219010,0.124794,0.163637,0.112397,0.041323,0.282645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602061.555000,4612405.550000,6597,4905,115.650421,164.633896,158.873566,149.361160,137.055374,125.336372,122.080177,120.195877,119.898354,122.609100,122.493401,134.435547,152.014053,168.063644,181.733063,194.071915,195.518188,183.559509,163.427277,142.981003,131.402496,126.766129,120.518188,92.609100,75.807449,93.146294,107.270256,79.865295,37.749607,12.995883,10.956217,6.098357,6.561995,9.291749,7.930591,3.834718,0.378515,0.238845,0.049587,0.119835,0.098347,0.000000,0.193389,0.328926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602069.155000,4612405.550000,6635,4905,126.421494,154.190109,156.504166,147.206650,134.264465,122.859512,119.561989,118.190094,116.652901,119.520668,119.851250,131.595047,148.272766,165.595078,177.801682,190.016556,191.818207,181.628128,159.454575,139.099213,128.727280,123.545464,118.000008,90.702484,72.966957,92.165298,108.371910,80.917366,37.785145,14.505803,10.727293,5.784308,8.404144,8.166128,7.771915,4.483479,1.240498,0.087604,0.291736,0.110744,0.079339,0.000827,0.334711,0.686778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.555000,4612405.550000,6692,4905,138.034729,164.472748,154.365311,143.266144,129.348785,119.481018,116.778542,114.183495,112.133911,114.183495,116.588455,126.423164,144.514069,159.985153,173.332260,185.877716,185.390106,175.803329,153.712418,134.142181,123.497543,119.737213,112.836388,87.836388,70.662827,89.133911,101.456223,76.778534,36.224812,13.866960,10.257871,5.418192,7.733069,8.033895,11.405800,4.357860,1.110748,0.438019,0.099174,0.067769,0.193389,0.000000,0.592563,0.000000,0.000000,2.114050,0.000000,6.211571,0.000000,0.000000 -602092.355000,4612405.550000,6751,4905,191.356201,174.628937,154.075180,138.100006,124.463638,114.306618,111.199181,106.761169,105.265305,106.736374,106.777702,119.372734,136.571091,153.389236,166.248734,176.174377,177.223969,168.430557,148.604126,130.678513,120.463638,118.521492,113.554550,87.901672,69.736382,93.852081,121.323143,97.711586,46.744648,14.022333,10.323160,8.358689,9.564475,11.311584,14.465305,7.121500,2.609095,0.200000,0.281818,0.098347,0.000000,0.126446,0.081820,0.645456,6.510744,3.893389,0.000000,0.000000,1.696694,0.000000 -602210.355000,4612405.550000,7341,4905,99.609924,150.709930,156.098373,144.990921,128.156204,118.610756,115.767776,112.883484,112.164474,111.933067,112.767776,125.090096,145.189270,160.610764,174.321503,186.420685,187.453735,176.288452,154.147949,131.685135,121.081833,116.866951,110.718193,81.164474,64.263649,82.230591,98.288445,71.139679,31.726465,11.795884,10.065309,8.914063,8.272742,7.057864,9.522327,4.356205,0.795044,0.210744,0.261984,0.152067,3.297522,7.466122,8.491739,6.535541,1.415703,0.000000,2.710744,4.514050,0.000000,0.000000 -602214.755000,4612405.550000,7363,4905,106.219025,157.808289,158.229782,145.981842,129.775223,118.915718,118.378525,115.395058,113.733902,115.585136,116.543816,127.461174,145.775223,163.328949,176.304153,186.907455,188.998367,178.196716,153.312424,132.246292,121.642990,118.444641,111.527290,82.948776,65.857872,82.758690,95.047951,67.328941,31.295889,11.669437,10.138862,7.543815,8.171916,7.470262,8.087617,2.677691,0.820663,0.447109,0.185951,0.167769,0.057025,0.219009,0.016529,0.044629,3.167769,0.000000,1.284298,0.000000,0.000000,0.000000 -602221.155000,4612405.550000,7395,4905,99.748772,159.082642,158.181824,145.966949,131.322327,119.826462,118.355385,115.611588,115.041336,115.297539,117.363655,128.049606,146.983475,163.198349,176.446274,187.669418,188.223145,178.000000,154.371902,132.826462,122.041336,118.760345,113.000023,84.297546,66.074394,82.917381,95.743828,68.785149,32.165306,12.828943,10.272746,6.247120,6.801669,7.518196,6.929766,3.563642,0.411571,0.209092,0.147934,0.109091,0.000000,0.657026,0.314876,0.584298,4.536364,1.390909,1.154546,1.163637,1.318182,0.000000 -602230.355000,4612405.550000,7441,4905,104.448776,156.257034,159.281830,143.769440,128.901672,118.942993,115.761177,113.843826,111.868614,113.504982,113.802498,124.719856,144.265305,161.116547,174.042145,185.339645,186.356201,176.802475,153.364471,131.719849,121.141342,116.372749,111.100021,82.141342,63.967789,81.438866,99.157875,70.736382,30.810762,12.278531,10.100020,6.723980,8.704149,9.939684,7.948776,3.164468,0.621489,0.183472,0.233058,0.072728,0.080166,0.438844,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602238.555000,4612405.550000,7482,4905,124.162010,174.798370,161.649612,151.889282,132.170273,119.748772,121.186790,118.236374,117.732246,121.476044,120.319023,135.145477,156.723999,175.153748,188.930603,201.682678,200.674408,189.046310,168.947144,149.236389,138.170258,136.715714,135.054565,101.434723,81.261169,99.682655,126.236374,94.963646,44.153736,15.693407,12.277706,11.852908,10.753735,11.909933,15.014067,9.109931,1.717360,0.266117,0.223141,0.105787,0.000000,0.000000,0.333058,0.015703,0.000000,0.000000,0.000000,0.000000,1.217355,0.000000 -602241.555000,4612405.550000,7497,4905,114.879356,175.185120,161.350418,149.061157,131.970245,118.763641,119.366943,117.474380,117.912399,121.350418,120.928932,135.135544,155.714050,174.945465,188.656204,199.912399,199.904129,188.945465,169.011566,148.466125,137.970245,136.085953,135.218185,102.920662,81.747124,100.945465,127.763641,98.532249,44.689281,15.339686,12.292581,11.663651,10.359520,12.328940,14.885139,7.068605,1.657856,0.375208,0.271902,0.000000,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602246.555000,4612405.550000,7522,4905,103.592575,168.899185,159.824799,146.444656,129.527283,116.824799,118.725624,117.081001,116.180168,120.378517,120.469429,134.758698,156.337204,176.973557,190.717361,202.725632,201.395050,189.948761,170.882645,150.072739,138.477707,138.271103,136.709106,106.353729,84.700836,104.601662,135.163666,105.122322,46.469444,14.578529,12.428118,11.147123,11.912411,12.202496,14.360346,6.538029,0.843805,0.018182,0.134711,0.029753,0.100000,0.000000,0.000000,0.000000,1.242149,0.000000,0.000000,1.999174,0.000000,2.059504 -602250.155000,4612405.550000,7540,4905,104.694229,164.469421,160.386780,146.609924,130.552078,117.114067,118.105797,116.601669,117.229767,120.626457,119.659515,135.271088,156.452896,176.510757,191.576859,202.072739,201.709091,189.080994,169.105789,149.452896,136.890915,137.254547,137.254547,107.519020,84.304146,103.766960,136.634720,108.882660,49.585148,14.919026,12.477704,11.403322,12.640512,15.064480,16.698364,8.268611,0.495870,0.166943,0.095042,0.000000,0.000000,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,1.110744,1.118182,0.000000 -602254.755000,4612405.550000,7563,4905,122.634727,169.561172,159.569443,144.734726,128.205795,117.123154,118.627281,117.321503,118.081833,121.048775,122.065300,138.023987,159.247131,180.139694,195.982666,206.908279,205.776047,195.073578,173.966141,153.280182,142.767792,141.271927,141.990921,111.594223,87.214058,107.900009,142.718201,114.924805,53.974396,16.129770,12.908284,11.777702,11.797537,16.392580,20.095060,10.547949,0.657027,0.323141,0.376034,0.000000,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602262.155000,4612405.550000,7600,4905,107.911591,158.954559,158.516541,142.888428,127.508286,116.351257,117.557869,115.648773,116.648773,119.731422,122.326462,137.119858,161.103302,181.136368,197.483475,208.177689,208.442154,198.714874,177.293396,156.342987,146.987625,145.376053,144.954559,112.450432,89.731422,109.400841,142.111588,109.450432,51.169441,16.356215,13.177704,12.481009,12.046296,13.262827,20.158695,10.264477,1.029755,0.551241,0.174380,0.000000,0.061984,0.156199,0.000000,0.000000,1.378513,1.290909,1.023141,0.938017,1.139670,0.000000 -602268.555000,4612405.550000,7632,4905,100.999191,166.344635,160.245468,144.080170,126.427284,116.766129,117.410751,116.790916,117.419022,120.171082,123.625633,138.931412,162.766129,184.724808,201.468597,214.146286,216.104965,204.625626,183.138031,161.947937,151.427277,150.278519,148.972733,116.443810,90.228935,113.419022,144.873566,111.452087,49.964478,16.450432,13.542994,11.563651,12.178529,14.471091,19.112413,11.714891,0.990912,0.466943,0.114876,0.093389,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,2.127273,2.009917,0.000000,0.000000 -602273.555000,4612405.550000,7657,4905,111.352905,156.473557,153.242157,139.961166,124.266945,114.250420,114.448769,115.357857,116.944633,121.035545,124.142982,140.614059,166.233887,187.283478,205.019012,218.845474,221.952911,212.333084,191.597534,170.308273,160.142975,158.068604,156.936371,121.952896,96.614059,118.283478,149.126450,114.853729,53.969444,15.717373,14.266962,11.146296,13.009107,16.911585,20.679358,10.835550,0.830581,0.722316,0.097521,0.033884,0.000000,0.038844,0.000000,0.252066,0.000000,2.374381,0.000000,0.000000,0.000000,0.000000 -602278.755000,4612405.550000,7683,4905,101.992577,150.266129,153.530594,138.224808,123.431412,114.390091,115.290916,114.282654,116.051247,119.943810,123.431412,140.580170,164.299179,184.761993,201.836380,214.993393,218.166946,209.604965,190.084305,169.803314,159.042984,157.761993,154.745468,121.348770,96.001663,117.902489,147.629761,114.712410,51.778534,16.342993,14.067787,8.711584,10.867785,14.500016,19.419853,9.971087,1.047937,0.152893,0.203307,0.131406,0.000000,0.016529,0.000000,0.000000,1.208265,0.000000,1.010744,0.875207,0.000000,1.803306 -602284.155000,4612405.550000,7710,4905,102.019020,155.524811,155.822327,141.789276,126.599182,116.673569,117.037209,117.301666,118.004150,122.276871,124.979355,140.607452,164.549591,185.293396,202.004135,215.466949,217.541321,209.987610,190.797516,169.805786,160.095047,157.615707,156.045471,121.342995,96.185966,118.020676,142.929764,109.557869,51.913242,16.691753,14.185970,11.504149,12.938860,15.896712,20.389275,12.101668,1.465293,0.410745,0.160331,0.199174,0.000000,0.043802,0.275207,0.000000,0.000000,0.000000,2.142975,1.978513,0.978513,0.000000 -602287.555000,4612405.550000,7727,4905,126.138855,155.714066,156.052917,143.259521,126.986786,116.193398,116.557037,114.201668,116.094223,119.019844,121.912407,137.937210,160.441345,179.771927,193.647949,207.119034,210.433075,202.523987,182.590103,163.267792,154.028122,151.218201,149.036377,114.681000,92.300835,113.168610,137.697540,105.284309,49.788448,16.747126,13.548779,10.754561,12.558695,15.277704,18.181009,11.408278,2.271079,0.738018,0.435538,0.095042,0.061157,0.070248,0.000000,0.000000,1.255372,2.354546,1.138017,1.888430,0.000000,0.000000 -602290.555000,4612405.550000,7742,4905,96.871094,157.735550,151.859528,139.355392,125.099190,115.371918,113.322327,111.404976,112.925636,115.082664,118.099190,131.347122,153.000015,171.438034,184.561996,196.595062,198.983490,192.206635,172.975220,153.776871,144.975220,141.347122,139.000015,106.446297,84.694229,105.322327,128.818192,97.752083,45.826466,13.705804,12.636383,9.570264,9.185966,10.823157,13.953736,9.270263,1.722318,0.548762,0.165290,0.000000,0.203306,0.063637,0.533885,0.000000,0.000000,2.720661,0.977686,1.798347,1.162810,0.000000 -602293.755000,4612405.550000,7758,4905,112.332253,155.289276,156.966965,141.438034,127.099190,114.950432,114.099190,111.991753,112.785141,114.743820,115.727287,129.454559,149.991745,166.595062,180.305801,191.727295,192.892578,185.694229,166.016541,147.537201,137.669434,135.404968,133.272736,104.330597,82.611595,102.735550,124.421501,94.520676,42.809933,13.926463,12.115722,10.490097,10.153734,12.910761,14.950429,7.192573,1.225626,0.552895,0.039670,0.080166,0.099174,0.061157,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,1.104959,2.066942 -602297.955000,4612405.550000,7779,4905,118.846291,157.033081,153.454559,140.495880,125.330597,112.867783,111.247948,109.669441,109.727287,112.305801,113.512413,125.991753,146.768616,164.735535,176.752060,186.438019,187.338837,180.685944,161.487610,141.528946,132.553741,130.066132,127.818199,97.140511,77.330597,98.619850,120.264481,89.281006,39.396713,12.795058,11.619854,8.348775,9.024809,9.748774,11.776875,6.967781,0.838845,0.413224,0.371076,0.064463,0.076033,0.266116,0.000000,0.000000,1.367769,1.281818,0.000000,1.900000,0.000000,1.992562 -602301.755000,4612405.550000,7798,4905,124.319847,155.168594,153.424789,142.218185,124.664482,115.672745,112.573570,110.052910,109.978531,111.714066,113.945473,126.209938,146.738846,165.069427,178.152069,188.912415,190.342163,179.904129,158.242981,136.763641,126.085968,121.623161,118.672745,87.598366,68.466133,86.804977,100.747124,72.598366,34.193409,13.356216,10.788448,8.905800,9.995057,9.487617,10.614064,6.320669,0.519010,0.787605,0.612398,0.211571,0.231406,0.136364,0.301653,0.000000,3.970248,1.301653,1.186777,2.766116,1.242149,0.000000 -602307.555000,4612405.550000,7827,4905,107.742996,153.940521,149.353745,137.609940,122.403328,112.023163,109.287628,108.320686,107.304153,108.494240,109.502502,121.651260,143.849609,161.213242,173.304138,183.642975,184.097534,174.857864,154.436386,132.576889,123.642998,118.742172,116.618202,85.709114,65.056213,85.609932,105.923988,76.874405,34.345474,12.690928,10.601672,7.264477,8.825635,9.633071,9.236377,4.983480,0.455374,0.252067,0.238844,0.349587,0.476035,0.045455,0.000000,0.000000,0.000000,0.000000,2.327273,3.952067,1.160331,0.000000 -602316.355000,4612405.550000,7871,4905,114.161163,150.667786,149.204987,134.485962,118.783485,107.758690,105.477699,103.783485,103.469437,105.229767,106.312408,118.973572,138.824799,157.147125,167.907455,176.089279,173.312424,163.039688,143.477707,124.791748,116.395058,114.758690,117.345467,90.609932,67.626457,90.213249,126.957039,105.576874,49.618202,14.294232,10.667788,10.852907,11.125635,12.811586,17.179358,9.668609,1.677691,0.361159,0.194216,0.135537,0.212397,0.056199,0.000000,0.000000,0.000000,1.159504,1.050413,0.000000,3.029752,0.000000 -602324.555000,4612405.550000,7912,4905,117.396713,150.680176,146.713226,129.895050,115.060333,104.564468,102.010757,100.663643,100.382652,102.283478,104.738022,117.465294,137.845459,154.870255,168.101654,175.977692,174.357864,167.176041,148.828934,131.944641,121.928116,121.134720,123.481827,96.027290,73.936378,96.779350,132.473572,109.399178,51.002499,13.995059,11.225638,10.166957,10.651253,13.578530,20.512415,12.260346,1.527277,0.295043,0.330579,0.315703,0.038017,0.125620,0.556199,0.219835,6.458678,4.876034,0.000000,6.107439,6.019835,1.898347 -602336.155000,4612405.550000,7970,4905,136.774384,149.270248,138.592560,123.716545,108.542992,97.890099,96.890099,94.716545,95.336380,98.724808,101.509933,113.435555,132.394226,149.419006,161.600815,171.071899,172.055359,166.121475,150.005783,132.782669,124.460350,123.799194,125.063652,98.096710,77.402496,100.162827,130.394226,108.857040,55.162827,14.673571,11.369440,11.451254,11.945471,19.468613,24.074398,20.667786,2.507443,0.995043,0.555373,0.334712,0.096695,0.247934,1.017357,0.764463,16.604959,9.957026,2.682645,3.856199,8.862811,1.809091 -602343.155000,4612405.550000,8005,4905,40.008274,30.328932,25.095873,19.583475,15.713229,12.919841,12.498354,13.309096,13.176040,14.465296,15.985955,19.886784,26.254549,31.725624,36.824799,40.619843,42.753723,42.107445,40.727280,36.970253,34.350418,33.917362,35.636372,27.692566,21.519014,30.350420,45.166946,44.378517,23.785959,3.517361,3.239676,6.530586,24.314888,42.946297,69.063652,64.567787,68.185959,79.876038,82.372742,91.307457,100.138031,108.404144,112.943810,133.868607,122.466125,183.752060,196.758682,196.212387,201.114868,238.180176 -601033.155000,4612395.550000,1455,4955,126.518196,122.815720,107.162827,94.385971,80.460350,68.708282,65.212418,58.658699,56.584320,56.435558,55.162830,67.881836,86.964478,103.319855,118.237206,131.435562,134.666962,134.154556,126.584312,113.278534,103.617371,102.757866,94.063652,56.526466,34.204151,60.757870,112.559525,103.997536,53.311592,12.733901,8.551259,12.019851,10.171091,17.505802,29.782665,19.406630,0.730580,0.045455,0.000000,0.000000,0.038017,0.027273,0.000000,0.010744,10.139671,5.098348,4.182646,4.963638,2.184298,10.733060 -601038.755000,4612395.550000,1483,4955,62.672737,64.242996,55.190102,41.603325,26.206629,14.953735,10.485965,7.054556,5.274389,3.895875,3.238023,7.913234,18.978527,29.754564,40.016548,48.694237,50.900848,46.724812,44.254562,32.941341,22.852911,23.146299,17.609106,0.322316,0.000000,3.251247,58.743820,76.586792,43.677708,3.904143,1.600842,9.397532,11.998361,23.823158,43.727291,33.397541,1.733061,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.932233,2.622316,1.023142,0.313224,2.173555,4.525620 -601058.955000,4612395.550000,1584,4955,0.669422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.173554,0.776862,0.150414,0.000000,6.861165,15.719850,34.439686,59.491756,49.906631,18.099188,3.561989,2.544632,1.557853,0.981819,0.000827,0.062810,0.000000,0.000000,0.000000,0.021488,0.000000,0.366942,0.000000 -601061.755000,4612395.550000,1598,4955,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.428100,1.495044,0.381819,0.000000,6.146291,19.909933,35.604980,59.293407,51.743816,16.168610,5.064469,2.515707,0.888431,0.648762,0.079339,0.000000,0.031405,1.517356,0.000000,0.036364,0.140496,0.000000,0.000000 -601066.155000,4612395.550000,1620,4955,1.080993,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.352067,1.521490,0.267769,0.000000,7.686787,15.450427,33.276875,57.867786,48.476879,18.279354,5.371080,4.015707,2.042152,1.743803,0.138017,0.015703,0.000000,1.525620,0.000000,0.455372,0.000000,0.000000,0.030579 -601115.155000,4612395.550000,1865,4955,1.290083,0.276035,0.096694,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.014050,0.207439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.609095,41.133076,27.996714,2.175211,0.000000,2.782650,9.035550,23.655390,41.049603,29.707453,1.285952,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.919835 -601122.955000,4612395.550000,1904,4955,10.040503,7.197528,4.746288,1.782649,0.402480,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.309918,2.207442,6.092571,9.916540,9.587614,6.690092,4.447115,1.008266,0.139670,0.036364,0.000000,0.000000,0.000000,0.000000,21.445471,67.411583,43.560349,3.199181,0.000000,2.820667,8.936375,22.002497,40.923981,26.984314,0.743803,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601132.355000,4612395.550000,1951,4955,4.277690,5.252070,1.275209,0.609919,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.010744,0.086777,0.125620,0.136364,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.234717,22.762001,14.307454,1.113227,0.000000,2.990915,15.720676,27.861176,44.741344,36.454567,6.237198,0.233059,0.102480,0.190910,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.715704 -601235.155000,4612395.550000,2465,4955,59.299191,72.509933,53.164482,39.964481,24.626465,11.545466,10.366126,7.709099,6.357859,8.503314,5.174387,8.583479,13.783482,21.263651,30.395058,39.702496,39.975224,36.203320,35.525631,28.070267,21.111584,21.979353,20.072741,7.828105,2.769425,12.093397,59.486797,72.741341,45.528118,6.296707,1.824806,25.927290,17.176876,33.811588,55.237209,43.989273,3.269426,0.000000,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,3.486778,0.633059,0.017356,0.000000,0.000000,0.000000 -601238.355000,4612395.550000,2481,4955,30.997530,65.909935,59.385967,48.369438,32.002495,21.272743,17.713238,13.840509,10.763648,9.748773,8.945466,12.709104,20.532248,28.542994,35.915722,45.171093,46.187622,44.651257,40.395061,32.459522,24.428942,22.936378,22.227289,6.328107,1.226449,10.071913,59.815720,77.220673,43.832245,5.355381,2.020678,6.420671,13.211584,29.989273,45.286789,34.350430,1.871078,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.138018,0.727273,0.310744,0.113223,0.000000,0.000000 -601242.155000,4612395.550000,2500,4955,41.442165,71.274399,73.257858,62.704147,47.357048,37.616547,32.852085,27.797539,24.162828,22.532249,22.393406,26.413240,37.046299,44.927296,52.142170,59.869442,61.406628,59.762005,55.604980,47.224815,39.542164,38.186794,35.600018,15.230594,4.062817,19.171093,70.985138,82.406624,48.844650,5.700010,3.236382,6.195879,15.194231,25.883490,44.762005,34.503330,1.073556,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.053720,1.700827,0.323967,0.095868,0.000000,0.000000 -601246.155000,4612395.550000,2520,4955,73.652084,99.099190,103.950432,93.190102,80.710762,69.644646,66.801666,63.776871,61.008278,61.363647,60.809929,67.702492,79.710762,89.396713,98.537209,106.760345,109.000015,106.223160,99.074394,88.438034,80.355385,78.578529,76.818199,51.272747,34.256218,55.553738,99.719025,98.801666,56.173569,9.928113,6.983490,8.119846,12.086794,21.695059,36.202499,24.953733,1.485954,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.665289,0.778512,0.000000,0.517356,0.000000,0.000000 -601251.755000,4612395.550000,2548,4955,93.371918,133.903336,134.738037,125.754562,110.027290,102.448776,100.589272,97.349609,95.027298,97.250435,98.366135,107.432243,123.415718,137.043823,146.126465,154.903336,156.994232,152.002502,140.862000,126.853737,118.961174,116.283485,114.027290,88.035561,67.721512,86.729774,121.052078,107.895058,54.366135,14.011589,10.366136,9.165304,10.042165,16.673573,23.794231,14.542992,0.642152,0.024794,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,1.035537,0.000000,0.000000,0.000000,0.000000,0.000000 -601260.555000,4612395.550000,2592,4955,96.228111,141.198364,144.661179,136.066132,122.710762,113.743820,113.504150,109.719025,110.413239,112.231422,113.925636,125.966957,143.347122,161.586792,174.404968,185.793411,187.322327,182.082657,165.909103,147.983490,138.355392,137.123978,131.545471,101.396713,79.900841,99.487617,123.867783,98.421501,44.876053,14.798365,11.958697,7.702492,9.403318,11.776050,13.804975,5.425629,0.376035,0.540497,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,1.108265,1.022314,0.000000,0.000000,0.000000,0.000000 -601274.755000,4612395.550000,2663,4955,112.553741,148.272751,150.239685,142.074402,129.719025,120.024811,119.859520,117.404976,118.140511,121.247948,122.925636,135.545471,154.049606,171.330597,185.809937,197.694229,201.123978,194.033081,175.049606,156.413239,146.024811,144.371918,138.181839,108.008278,86.107452,103.900841,124.281006,96.479355,42.917374,16.334728,12.562002,7.508278,10.802494,11.627289,13.528943,7.466953,1.314053,0.047934,0.152067,0.037190,0.046281,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.041322 -601289.755000,4612395.550000,2738,4955,113.661171,149.561996,152.008286,144.487625,129.983490,124.173569,119.760345,120.090927,118.900841,122.611588,123.842995,135.958694,152.644638,169.735550,183.305786,194.859497,196.272720,189.752060,170.685974,151.785141,142.082657,140.140518,134.636368,106.892578,85.041336,100.033073,122.041336,95.793404,43.338863,15.977703,12.239689,5.676044,10.319849,10.811585,12.056212,5.537199,0.443804,0.119009,0.185124,0.030579,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601299.355000,4612395.550000,2786,4955,103.323158,150.607452,153.574402,145.781006,133.227295,123.508278,122.623985,120.012413,120.723160,123.615715,125.285141,137.318192,153.822327,170.318192,185.152908,196.227295,198.392563,191.442169,171.747955,155.004150,145.334732,141.169434,139.863647,111.731422,90.706627,107.219025,130.045471,103.194229,47.342991,15.562001,12.714894,7.694228,12.063650,12.051255,16.202496,8.758688,1.112399,0.471902,0.056199,0.019835,0.000000,0.057851,0.000000,0.042976,0.000000,0.000000,1.826447,0.000000,0.000000,0.000000 -601309.155000,4612395.550000,2835,4955,103.794228,154.017365,154.769455,146.290115,134.075226,124.356209,122.496704,121.546295,120.562820,124.281830,125.959518,137.744644,154.926468,170.695053,184.951248,196.314896,197.190918,189.686783,171.711578,153.166138,143.207474,142.042160,139.372742,112.521500,90.042160,107.488441,131.579346,105.637199,48.562828,16.114895,12.670267,6.024806,10.290924,12.828115,15.341340,6.679350,1.225622,0.057852,0.125620,0.046281,0.000000,0.000000,0.000000,0.000000,1.228099,0.000000,0.000000,0.000000,0.000000,2.043802 -601313.155000,4612395.550000,2855,4955,128.695877,172.823990,163.675232,153.270279,139.518204,129.724808,127.485130,127.675217,126.931412,133.295044,132.650421,143.923172,161.485153,178.336380,193.394226,205.675217,206.741333,197.385956,179.857040,162.476883,152.815735,150.857056,149.790939,120.617363,97.278534,118.212410,139.675232,111.526459,53.757870,18.402496,13.617374,12.485140,12.721503,15.379356,17.363655,9.380177,1.137193,0.736365,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.879339,0.000000,0.000000,0.000000 -601317.555000,4612395.550000,2877,4955,129.549606,189.458679,167.698349,162.433884,144.838837,132.078522,133.409103,132.524796,133.161163,141.549591,138.086777,150.640503,168.045456,185.938019,201.938019,214.053726,214.954544,203.194214,185.838837,168.070251,158.582642,158.640503,157.318176,125.723160,103.995880,123.103325,145.442154,113.706627,53.185970,18.643822,14.301672,18.287622,13.788447,16.719027,20.275225,10.759518,1.035540,0.138018,0.175207,0.018182,0.000000,0.000000,0.003306,0.000000,1.419835,0.000000,0.000000,0.000000,0.000000,0.000000 -601320.755000,4612395.550000,2893,4955,124.071091,182.352081,168.186783,159.624802,143.418198,132.492569,131.806625,131.327286,134.162003,140.360336,137.434723,149.963654,167.451248,187.277695,201.583481,214.649597,215.748779,203.029770,186.798355,168.980179,159.211578,157.608276,156.600006,125.484314,104.145470,123.798363,143.211578,109.484314,52.219856,16.430597,14.236382,13.533074,10.595883,15.952909,17.864479,9.024808,1.351244,0.172728,0.021488,0.145455,0.000000,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,1.203306,0.000000,0.000000 -601325.355000,4612395.550000,2916,4955,137.587616,188.876862,169.339661,161.356201,144.909912,134.347946,134.149597,133.430588,134.207458,141.463638,139.480164,152.116547,170.083466,188.942978,202.579330,217.000824,217.810745,206.852066,188.744629,170.587601,159.992554,158.662003,156.463654,127.546295,105.951256,122.860336,144.314880,111.207451,54.347958,18.032251,14.223986,14.579356,13.295060,14.949604,19.205805,10.312408,0.210745,0.017356,0.271076,0.000000,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601332.155000,4612395.550000,2950,4955,120.228111,184.261154,168.575211,161.120667,145.864471,134.922333,135.781830,134.575226,135.641342,140.905792,141.029770,154.236374,172.244629,191.186768,205.550415,219.459503,220.393387,210.880981,191.186768,171.360321,161.409927,161.087616,157.418198,127.269432,105.021500,121.228111,143.575226,110.707451,51.971920,20.070269,14.310762,14.710761,12.590099,16.859524,16.294233,9.533070,1.059507,0.141322,0.175208,0.000000,0.061158,0.000000,0.021488,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601337.155000,4612395.550000,2975,4955,122.424805,181.284302,169.804977,160.681000,146.011566,135.276047,136.218185,134.862823,136.681000,140.887604,141.714050,154.036362,173.788452,192.209915,207.276016,218.887589,221.118988,211.474365,190.366943,171.110764,162.490906,160.862808,156.854553,126.077698,104.705795,119.623154,139.408264,106.961998,49.705814,18.051260,14.259524,14.215720,11.766134,14.360349,17.461176,9.980177,0.864465,0.224794,0.008265,0.028926,0.013223,0.190083,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601339.755000,4612395.550000,2988,4955,122.170258,184.558670,168.335541,157.897537,144.046295,133.492584,135.905792,134.757034,135.153748,140.327286,140.261169,153.897537,172.376862,191.492554,206.880981,219.682648,221.591736,210.880981,189.790085,172.161987,160.600006,160.517365,156.054565,124.128937,103.905800,118.178535,138.682663,106.071091,48.881012,17.933077,14.186796,12.595058,10.643819,14.044644,17.377707,8.248774,0.659505,0.000000,0.043803,0.000000,0.000000,0.000000,0.000000,0.071075,0.000000,3.962811,0.000000,0.000000,0.000000,0.000000 -601343.955000,4612395.550000,3009,4955,133.933075,176.164459,167.536362,160.081818,146.040512,135.189270,135.577698,134.792587,135.776047,140.346298,141.569443,155.511597,173.098343,192.040497,205.982651,220.271912,220.734711,212.511566,191.619019,171.536362,161.486786,159.652069,155.627289,124.313240,103.602501,117.833900,137.404129,102.825638,47.371098,18.027290,14.147952,13.943818,12.452910,15.433902,15.351258,6.995878,1.600004,0.011571,0.128100,0.000000,0.024794,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601350.955000,4612395.550000,3044,4955,111.788445,176.375229,168.350433,159.366959,144.375229,135.796707,135.342163,135.110764,135.862823,140.904144,141.862823,154.309113,173.920685,193.094238,206.838013,220.102478,222.408264,212.532242,192.499191,171.424820,162.152084,159.400024,155.763657,124.036385,102.441330,117.317375,135.763657,101.400009,47.482662,16.335556,14.160349,11.613239,10.909934,13.021504,14.735554,6.713233,1.105788,0.200828,0.104959,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601361.155000,4612395.550000,3095,4955,126.190094,172.471069,171.553696,158.190063,145.198364,136.537186,138.082657,136.710754,137.801666,141.190094,143.314072,156.247955,175.561981,193.520676,208.214890,222.115723,224.446304,214.338852,192.710754,171.661148,161.132233,159.578506,154.545471,123.867775,102.223152,117.223152,135.371902,101.041328,47.305805,17.953739,14.049605,10.656213,12.494230,13.163653,13.503323,6.234720,1.124797,0.219010,0.544630,0.163637,0.185125,0.000000,0.009918,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601368.755000,4612395.550000,3133,4955,121.474388,172.317368,171.747131,160.771927,147.019852,137.267792,138.565308,137.011597,138.490952,142.094238,144.871094,157.945480,177.639694,195.251266,210.325638,223.590103,227.771927,218.796707,196.705811,175.052917,163.722336,161.515717,156.672745,125.920670,103.895882,117.639679,133.689270,98.623154,46.714069,18.862829,14.242994,11.829767,11.933903,13.028117,14.321505,6.997530,0.513227,0.353721,0.215704,0.077686,0.057025,0.000000,0.066116,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601372.355000,4612395.550000,3151,4955,117.257027,166.513245,169.562820,160.174408,144.306641,136.455383,136.521500,135.810776,137.033890,140.389282,144.141357,156.430603,176.463654,193.967789,208.876877,222.314896,225.695053,216.653732,193.240509,173.149597,163.149597,158.620697,154.100037,122.562828,101.810768,116.802498,129.562836,95.447128,43.149609,17.912415,14.009109,10.647951,10.481009,11.896711,12.476050,6.423976,0.334712,0.409918,0.026447,0.156199,0.025620,0.265289,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601376.355000,4612395.550000,3171,4955,126.576874,175.221512,169.163666,162.188446,147.923996,138.122330,137.717377,137.742172,138.849609,142.824814,146.180191,159.312424,179.081024,195.808304,210.932266,225.039703,229.138885,219.659546,196.709137,175.981857,163.452911,162.576889,156.800018,125.064476,103.940514,120.419846,132.395050,97.403320,45.461174,18.902494,14.254565,10.657867,12.202497,14.242167,16.991753,6.003315,1.201656,0.533060,0.391737,0.175207,0.017356,0.000000,0.000000,0.093389,0.000000,0.000000,2.418182,0.000000,0.000000,0.000000 -601379.955000,4612395.550000,3189,4955,132.577682,174.156204,173.519836,160.040497,148.015701,139.329758,139.205795,137.734711,139.486786,142.957855,147.247116,159.602478,178.957855,197.032242,212.362808,226.296692,230.329758,221.023972,196.924789,174.602478,165.023972,163.949585,157.718185,126.007439,103.660332,119.536369,133.263641,97.685127,46.362835,18.773573,14.338035,11.190923,11.847951,13.671916,14.606627,8.438030,1.020665,0.380993,0.123141,0.115703,0.071075,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601385.155000,4612395.550000,3215,4955,112.215721,170.232239,170.653732,159.852081,147.769440,138.761169,138.083481,137.976044,139.562820,142.992569,146.422333,159.397537,180.058685,197.281830,212.306625,226.157867,231.323151,221.471909,197.240509,175.686783,165.058685,163.628937,159.190918,126.901672,105.257050,120.711594,133.430603,97.075226,45.752914,18.144646,14.471921,12.741338,11.153735,13.945473,14.076877,7.309928,0.696698,0.207440,0.124794,0.046281,0.113224,0.000000,0.183472,0.375208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601390.355000,4612395.550000,3241,4955,114.702492,167.264481,169.181839,159.851257,146.057861,138.024811,138.297531,137.404968,139.429764,142.314072,146.586792,159.396713,178.115723,195.669434,211.115723,224.595062,227.677704,219.033081,194.586792,174.363647,163.578522,161.033081,154.727295,124.933899,102.892578,118.628113,130.677704,95.892578,44.768616,17.657867,14.066133,10.438033,10.760346,13.865305,14.565307,5.215712,0.571902,0.110745,0.176034,0.000000,0.000000,0.000000,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601394.355000,4612395.550000,3261,4955,119.635551,166.519836,169.296692,159.379349,146.982651,139.172729,138.594223,137.652069,139.304962,142.048767,145.734711,158.999176,178.263657,196.966141,211.321487,225.883469,229.156204,221.486786,197.875229,175.495056,164.222321,162.701660,156.990906,124.891747,104.065300,119.015717,130.023972,94.990921,45.362831,17.369440,14.271919,11.233074,11.420677,11.969437,13.518200,6.004970,1.451243,0.023141,0.217356,0.088430,0.000000,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,1.012397,0.000000,0.000000 -601399.355000,4612395.550000,3286,4955,124.923149,161.146286,169.526459,159.700012,145.700012,137.435547,138.237198,137.815720,138.576050,141.972733,145.336380,158.898361,178.666946,196.253723,211.890091,224.452072,228.352905,218.890091,195.220673,173.212402,164.179352,160.790924,156.063644,124.733070,102.708275,119.419022,130.336380,95.617363,45.080189,16.643820,14.187622,10.385964,12.083487,12.259521,13.039685,4.808272,0.742978,0.100827,0.295043,0.142149,0.000000,0.000000,0.026446,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601403.955000,4612395.550000,3309,4955,117.575218,167.285980,166.476059,159.550446,146.699188,137.781830,138.310760,137.914062,139.971909,143.616547,146.980179,160.252914,179.790100,196.947144,212.467804,226.170273,228.889282,220.178543,197.376892,175.145462,164.814911,163.385147,157.418198,126.186783,105.467781,119.277687,133.591736,96.566956,45.723988,18.284317,14.310762,9.669436,11.042167,12.705803,12.650431,5.482656,0.840500,0.207439,0.180167,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601407.355000,4612395.550000,3326,4955,124.024811,162.562012,169.619873,159.702515,145.859543,139.066147,139.008301,139.933914,141.289291,145.099213,148.991760,162.702515,181.495880,199.256210,215.586792,228.173569,233.024811,223.578522,201.512405,178.206635,168.487625,166.173584,161.090942,130.206635,107.652908,122.958694,135.528946,99.785133,48.925640,20.545473,14.644648,11.654561,13.347951,12.749602,13.301669,6.435547,1.596699,0.028100,0.181819,0.000000,0.019835,0.000000,0.000000,0.020661,1.254546,0.000000,0.000000,0.000000,0.000000,0.000000 -601411.755000,4612395.550000,3348,4955,109.237213,159.038864,169.881851,159.352921,146.584320,138.427292,140.146301,138.823990,141.443832,143.989288,147.939697,161.377716,180.212402,200.576050,216.443817,230.410751,233.989273,225.542984,202.460342,181.187607,169.716553,167.080185,162.881851,130.840515,107.204155,122.485153,135.361176,98.410767,46.666965,16.617374,14.807457,10.590924,10.294230,10.169436,13.266960,6.315712,1.334715,0.246282,0.113224,0.060331,0.000000,0.000000,0.019008,0.013223,1.237190,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.555000,4612395.550000,3387,4955,114.657043,167.698364,170.764481,160.764481,151.194229,141.276871,141.103317,141.541336,142.979355,147.665298,150.929764,164.095062,184.400848,202.309937,218.822327,231.880188,236.144638,226.309937,202.946304,180.714890,170.433899,167.739685,161.772751,129.838852,109.053734,124.797539,135.838852,98.243820,48.855392,19.488447,14.706630,10.547124,13.823985,14.878530,16.203323,7.249599,0.819011,0.386778,0.195869,0.000000,0.000000,0.000000,0.000000,0.072728,1.327273,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.755000,4612395.550000,3403,4955,126.352905,165.270248,168.857025,158.063644,145.394226,138.708267,139.443817,139.220673,140.526459,144.931412,148.286789,161.675201,181.005783,199.914871,215.038818,228.923111,233.303284,224.468567,200.245453,178.501648,167.385941,164.699997,159.063644,127.815712,107.377693,121.766129,131.303314,95.807449,44.518204,17.744644,14.460348,8.700839,9.502494,11.561999,11.753736,5.294223,0.751242,0.514051,0.078513,0.000000,0.000000,0.266942,0.000000,0.004959,1.185124,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.755000,4612395.550000,3443,4955,106.879349,163.433075,169.755386,160.928940,147.920685,141.358704,139.804977,140.003326,142.242996,146.127289,149.259521,163.061172,182.474396,202.077698,218.656219,232.185150,236.796707,227.871094,202.168610,179.135559,168.722336,165.912415,160.490921,127.317368,107.259514,120.887611,129.871078,94.292572,45.557045,19.408281,14.590101,8.776873,11.659519,12.220678,12.703322,6.319022,1.355375,0.297522,0.140497,0.066116,0.033058,0.000000,0.049587,0.041323,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000 -601433.955000,4612395.550000,3459,4955,121.013229,162.633057,170.178513,161.459503,148.963638,143.120667,142.393402,141.360336,143.963638,147.732224,151.980164,165.451233,185.079330,204.236359,221.343796,235.434723,241.186783,230.996704,205.186768,181.451233,170.583466,168.236359,161.690903,130.385132,109.319023,124.269424,130.847946,96.657867,48.137211,19.804977,14.699191,10.663651,13.666132,13.066130,13.670265,9.458689,1.957856,0.081819,0.100828,0.085951,0.046281,0.000000,0.000000,0.018182,1.176033,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.155000,4612395.550000,3485,4955,115.932243,167.915710,171.080994,161.411575,150.130585,141.361984,141.576859,141.742157,142.800003,148.097534,152.114059,165.238022,185.543808,203.750427,220.576859,235.320663,240.874390,231.791748,206.105789,181.874390,170.684311,166.428101,160.890915,129.700836,107.816544,122.180168,129.783493,95.271088,44.775230,19.691753,14.626465,9.189272,11.481834,11.906628,13.786793,7.583482,0.904134,0.068596,0.304133,0.209091,0.012397,0.000000,0.000000,0.047935,2.631405,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.955000,4612395.550000,3524,4955,117.965309,162.221497,170.411575,161.246307,148.618195,141.816559,140.833084,141.204987,144.204987,147.725632,151.676041,164.543823,184.923996,204.403305,219.742157,235.328934,240.171906,230.535538,205.667770,181.568619,170.783478,167.295883,162.436386,129.791763,107.725639,122.163658,130.981842,94.957047,46.841339,18.183489,14.766961,10.757867,10.471089,12.754563,11.985967,5.088439,0.989261,0.331407,0.024794,0.023967,0.077686,0.000000,0.000000,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.755000,4612395.550000,3553,4955,118.171097,166.402496,167.749603,160.047119,149.410751,140.526459,139.741333,140.138031,141.683487,146.286789,150.146286,163.063644,183.914886,202.295044,219.476868,234.113235,238.534714,229.700012,204.055374,181.063644,167.997528,165.253723,160.609100,128.956223,106.691750,120.906631,129.088440,94.617378,45.683495,16.450432,14.600845,7.615714,10.466957,9.547122,13.611588,5.000836,1.425624,0.291737,0.067769,0.000000,0.079339,0.000000,0.000000,0.032232,1.247934,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.955000,4612395.550000,3584,4955,106.321510,169.817368,170.313248,163.205811,151.147949,141.974396,142.652084,142.156219,144.751266,148.933075,152.792587,165.767792,185.536377,204.214050,221.627274,236.081818,241.015701,232.197525,206.057037,184.106628,171.313248,168.181015,162.263657,130.189270,108.090103,123.090103,131.685150,96.701675,45.676880,18.709936,14.751258,8.381833,11.281833,12.093403,13.614893,5.702490,0.609919,0.299175,0.423969,0.000000,0.000000,0.000000,0.049587,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.155000,4612395.550000,3605,4955,117.164474,165.288452,167.379364,160.420685,148.933075,142.131424,140.866959,140.503326,142.271927,147.858704,151.585968,163.395889,184.280182,202.197540,219.164490,232.999191,237.412415,228.602493,204.379364,180.437210,171.065308,165.486801,159.900024,129.602493,106.709930,121.701668,130.858688,95.114891,44.114895,17.887623,14.536382,8.323981,9.536381,13.879358,11.023158,4.113231,0.414051,0.153720,0.073554,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,8.608265,0.000000 -601467.555000,4612395.550000,3627,4955,123.338036,171.007462,169.660355,162.123154,149.726471,142.404144,141.561172,140.866959,142.751266,148.057037,150.924820,164.280182,183.172745,202.850433,219.114899,232.536362,238.015717,229.668594,204.536377,179.090103,168.990921,164.809113,160.718201,128.164490,106.833900,120.114891,130.205811,95.247116,46.065308,17.812416,14.610764,7.539682,10.821503,11.303322,12.649603,5.014889,1.127277,0.845457,0.084298,0.141323,0.000000,0.000000,0.025620,0.053720,0.000000,0.000000,0.000000,0.000000,1.250413,0.000000 -601472.355000,4612395.550000,3651,4955,118.559532,170.270264,172.823975,163.567780,151.551254,141.625641,141.468628,141.328125,142.923172,149.022324,151.931412,164.683487,183.385956,201.956207,218.947937,232.741333,236.476868,228.195877,202.195877,179.179352,167.931412,165.443817,158.609100,127.733086,107.237213,118.592590,129.022339,95.939697,46.171097,16.882664,14.419027,6.735550,11.395885,10.803322,12.269438,5.737201,1.196698,0.082645,0.087604,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.155000,4612395.550000,3670,4955,127.314896,171.579346,170.157867,163.769440,152.546295,141.984314,142.678528,141.992569,143.686783,148.885132,153.042160,165.521500,184.100006,203.166122,218.430588,233.645462,237.785965,230.232239,204.695053,180.653732,169.116547,165.364471,160.009109,128.637207,107.100021,120.033905,128.711594,96.686790,46.298367,17.870266,14.546300,7.045466,12.277703,12.003321,12.804976,5.775216,1.142979,0.221489,0.131406,0.093389,0.000000,0.000000,0.229752,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.355000,4612395.550000,3696,4955,134.495041,174.181015,171.181015,162.693390,152.313248,142.875229,143.172745,143.131424,144.693405,149.776047,153.362823,165.734726,185.090103,203.288437,220.685120,232.875229,237.652084,229.643814,204.437195,180.230591,169.032257,165.635544,160.081818,128.296707,106.668602,120.577698,130.833893,95.809097,46.164482,17.783489,14.552911,7.959518,10.766131,10.294229,11.858693,5.028933,1.595046,0.296696,0.129753,0.089256,0.000000,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.755000,4612395.550000,3723,4955,127.133072,178.033890,171.810760,165.852081,154.513229,144.901672,145.000839,145.595886,146.637207,152.686783,154.942993,167.182663,186.199188,204.521500,220.496704,235.488434,239.661987,231.091736,205.695053,181.703323,171.876877,166.695053,161.645462,129.513229,107.909927,122.926460,131.199188,97.372742,47.976055,18.302498,14.695059,7.091750,12.243817,11.837206,15.328942,4.660339,1.453723,0.504960,0.152068,0.094215,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.555000,4612395.550000,3742,4955,117.926460,182.852081,176.124802,167.662003,154.967789,146.901672,146.372742,146.868607,148.513229,154.521500,155.926453,169.223984,188.290100,207.562820,223.281830,237.785965,241.802490,232.736374,207.414062,184.405792,171.885132,168.686783,163.281830,130.876877,109.670258,122.967781,132.157867,97.455383,47.017372,20.188448,14.843821,8.941337,12.621506,11.931420,15.778529,6.800836,1.492566,0.327274,0.133058,0.438017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.555000,4612395.550000,3767,4955,140.335556,181.128952,172.162003,167.352081,155.178543,144.269455,145.046310,145.038040,146.476059,152.740524,153.170273,166.649612,184.699188,205.162003,220.823151,234.385117,238.236359,230.161987,204.666122,181.476044,168.674408,166.236389,160.509125,129.509094,107.988434,121.633064,128.178513,95.186783,46.971920,17.802498,14.591754,8.234725,10.849602,9.874393,13.623982,4.709926,1.323144,0.203307,0.319836,0.000000,0.090909,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.555000,4612395.550000,3787,4955,147.371933,185.190109,176.297546,170.586792,155.636383,145.206635,146.884323,146.314087,146.685974,153.355392,154.851257,169.107468,187.239700,205.735550,221.735550,236.917358,241.528931,231.743805,206.256210,183.586807,171.396729,168.264496,161.909119,129.694229,108.842987,122.801659,130.909103,95.859520,45.876049,18.768614,14.719027,6.138029,11.633075,11.904975,13.509934,4.661165,1.625624,0.285125,0.244629,0.101654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.555000,4612395.550000,3817,4955,130.545456,174.851242,174.925613,164.512405,150.363647,142.867798,142.281006,141.900833,143.603302,146.264481,150.033081,162.743820,183.438019,199.752060,215.504135,228.024796,232.553726,222.471069,195.661163,174.223145,163.619858,160.669434,154.727295,124.198364,104.735550,115.553726,124.628113,90.016548,43.636383,16.877705,14.066133,11.002495,10.451257,11.755389,11.842991,5.107447,0.432234,0.377687,0.023141,0.000000,0.028099,0.000000,0.090909,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.555000,4612395.550000,3832,4955,136.959534,178.414047,177.141312,167.133057,152.389252,143.521500,145.000839,145.108276,145.876877,149.116547,153.058670,165.728088,185.728088,202.488434,217.372726,231.380981,235.017349,224.273544,199.099991,177.116531,165.785950,163.108261,156.736359,125.661995,106.389267,118.587616,127.405800,91.678528,46.033909,20.519854,14.248778,14.399190,12.985968,13.502497,13.490926,6.742986,2.089262,0.156199,0.437191,0.022314,0.000000,0.000000,0.000000,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.155000,4612395.550000,3855,4955,143.828110,178.266129,178.125626,169.530594,156.728943,144.522324,145.009933,143.613235,145.274384,148.613235,151.993393,164.960342,183.885956,201.175217,216.737198,230.621490,234.852905,222.861160,197.745468,176.596710,164.522324,161.629761,156.018188,125.282654,105.142159,116.943810,125.919022,90.704147,44.720684,17.844646,14.183490,11.403320,11.009935,11.784315,13.667784,7.370259,1.059509,0.549589,0.288431,0.152894,0.017356,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.755000,4612395.550000,3883,4955,143.338852,182.438034,180.057861,167.619858,153.297531,144.049606,145.041336,144.190094,145.305801,150.281006,151.719025,164.884308,183.710754,200.603317,216.173569,230.702499,233.570267,222.876053,197.000015,174.801666,162.578522,161.322327,154.727295,124.099190,104.628113,117.347115,124.710762,89.826454,44.834732,18.036381,14.066134,9.919024,11.183488,13.857042,13.070262,5.601662,0.747937,0.124795,0.188430,0.013223,0.076034,0.178513,0.000000,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,2.122314 -601521.755000,4612395.550000,3898,4955,121.590103,178.457870,178.738861,166.598373,153.796707,143.639694,143.945480,143.771927,144.738861,149.251266,151.069443,163.292587,182.309113,200.408279,215.135559,228.474396,232.383484,221.185150,195.871094,173.242996,163.408279,159.747131,154.036377,122.424812,103.102501,115.606628,124.714066,88.623161,43.391758,17.806629,14.003325,13.994232,10.442166,13.244646,14.366959,6.181002,0.655374,0.018183,0.217356,0.001653,0.012397,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.355000,4612395.550000,3911,4955,126.550423,184.566956,177.360336,168.856216,153.823151,143.988449,146.087616,145.558685,145.938858,149.269440,151.550430,164.690918,184.219849,202.442993,217.087616,231.633072,233.996704,222.856216,198.195053,175.781830,165.203323,161.600006,156.600006,123.922325,105.203316,118.368607,125.806625,91.872749,45.319031,18.665310,14.236382,13.302496,12.462828,13.990099,13.655389,5.975217,0.260333,0.078514,0.175207,0.022314,0.012397,0.000000,0.108265,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.755000,4612395.550000,3928,4955,129.087601,187.162003,174.930588,167.715714,154.666122,142.566956,144.748779,143.533890,144.649597,149.343811,150.087616,164.765305,184.302490,201.054565,215.814896,231.649597,233.418198,221.608276,197.013229,174.963654,162.740509,160.897537,156.327286,124.583473,104.732246,116.352074,125.641327,91.062820,44.831425,17.528118,14.211589,11.884315,11.286795,10.954561,13.283488,5.960341,1.447936,0.309918,0.298348,0.152066,0.042976,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.755000,4612395.550000,3948,4955,119.188438,188.899170,176.676041,166.783478,152.866135,142.097549,144.081009,143.312424,144.238037,149.915726,150.180191,164.147110,182.494217,201.866104,215.651230,231.461166,232.395050,221.965286,196.411560,175.923981,164.568604,162.543808,154.254562,125.700836,105.436371,117.378517,126.452896,92.147125,44.279362,18.372746,14.023158,15.381835,11.433074,12.739687,12.922329,6.261168,1.486779,0.238017,0.323142,0.028926,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.155000,4612395.550000,3965,4955,122.403328,186.312424,174.932251,167.593414,153.337219,142.775208,145.147125,144.758698,145.601669,151.014893,151.428116,164.527298,182.800018,200.783493,216.378540,230.651260,232.700851,221.039688,196.775223,174.452911,163.973572,161.444656,155.800018,124.560356,104.477699,116.477707,124.932251,91.097542,42.890930,16.690928,14.163655,12.938034,11.850430,13.414894,13.883488,5.447116,1.130581,0.000000,0.000000,0.000000,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.955000,4612395.550000,3999,4955,137.467758,186.319016,174.864471,169.054535,156.641342,143.385117,146.385117,146.335556,147.451233,152.980179,153.062820,165.277695,184.790100,202.368607,218.319016,232.484299,234.781815,222.922333,196.591751,176.442993,164.889267,161.467789,156.054565,123.219849,105.161995,117.170258,124.971916,89.955383,43.790108,17.137211,14.186796,12.694234,11.690926,12.785968,15.565308,7.152903,0.500828,0.304960,0.156199,0.449587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.755000,4612395.550000,4013,4955,139.249603,189.381805,179.629761,170.257858,157.042984,143.233063,144.968597,144.233063,145.679352,152.894226,151.051254,163.547119,181.753723,200.646271,216.199997,231.423141,232.968582,219.514038,196.447922,173.985138,164.390091,162.819839,154.745468,124.059525,103.894234,118.208282,125.960350,90.125641,44.109112,17.285969,14.067788,13.546298,11.911587,13.752083,15.171092,5.585960,0.648763,0.180167,0.152893,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.555000,4612395.550000,4037,4955,147.062820,201.806625,181.120667,173.409927,156.137207,146.004974,147.038025,146.145462,148.219849,155.856216,152.327286,166.244644,183.591751,202.608276,218.509094,232.922318,234.161987,218.343796,196.145462,175.790100,163.748779,161.897537,156.418198,123.550423,105.376862,118.674393,126.104149,89.666130,46.071091,18.747952,14.219852,14.004148,13.290927,11.186795,14.786794,8.872739,0.755374,0.037191,0.060331,0.054546,0.031405,0.000000,0.212397,0.000000,0.000000,0.000000,2.416529,0.000000,0.000000,0.000000 -601553.755000,4612395.550000,4058,4955,150.505798,203.728912,179.910736,173.935532,156.885956,144.737183,146.852890,146.001663,147.778503,155.786789,151.852905,165.365280,181.489243,201.109085,217.224792,231.125610,232.175201,219.042969,194.885941,174.117355,162.778503,160.332230,154.927277,121.704140,103.340515,118.547119,125.150421,90.092583,43.927292,17.635557,14.084315,15.933075,12.352909,12.330595,12.720676,6.894226,0.966117,0.374381,0.218183,0.049587,0.014876,0.000000,0.011570,0.014050,0.000000,0.000000,0.000000,0.000000,1.282645,0.000000 -601556.755000,4612395.550000,4073,4955,147.424820,203.515701,181.160355,173.557037,156.672745,145.945480,146.400024,144.639694,146.730591,154.366959,150.920685,164.185150,181.218201,199.862808,216.523987,230.672745,232.490921,217.887619,195.350418,174.325638,161.962006,159.771927,154.218201,122.143814,102.788445,117.986786,122.887611,87.945465,43.490929,17.242165,14.019853,13.982661,9.937206,12.518199,12.301669,7.900838,1.720664,0.095868,0.221489,0.196695,0.026447,0.000000,0.128100,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.955000,4612395.550000,4089,4955,126.158699,174.753723,175.737198,164.910751,152.166946,142.894226,142.555374,141.340500,143.943817,146.919022,148.877701,161.133896,179.803314,195.547119,211.456207,224.960327,228.753723,217.489273,193.282654,170.348770,160.588440,157.274384,149.745468,120.646301,100.125641,114.885971,123.621506,90.158699,42.348785,17.557043,13.613243,11.203321,10.470264,11.778530,12.365306,6.059515,1.330581,0.151241,0.083471,0.024794,0.046281,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.555000,4612395.550000,4107,4955,130.092575,169.158707,173.621521,161.456223,148.861176,141.373566,140.894226,139.323975,141.472733,144.596710,146.811600,159.092590,177.786789,195.001663,209.373550,222.596695,225.745453,215.026443,189.679352,169.728958,158.447952,155.216553,148.563660,119.381836,100.514069,114.985138,120.646301,88.811584,42.505802,17.296713,13.505804,9.384312,11.324812,11.438034,10.991752,7.232243,0.611572,0.122315,0.245455,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.555000,4612395.550000,4137,4955,115.685959,167.595047,172.876038,162.256195,148.628098,140.768600,139.256195,139.190079,140.652893,143.834717,146.487610,158.314056,176.049591,193.578506,207.619827,221.157028,224.991730,214.760330,189.371902,166.842972,157.000000,152.661163,146.909088,117.181824,98.314064,111.247948,119.520668,86.710762,41.644653,17.260349,13.355392,9.790096,10.790927,11.936381,11.769437,6.331415,0.541324,0.250414,0.071901,0.033058,0.000000,0.000000,0.013223,0.000000,2.490083,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.755000,4612395.550000,4158,4955,110.474396,162.548782,170.292587,163.143814,149.532257,141.722336,141.028122,140.970261,140.193405,144.176880,147.416550,159.557037,177.400009,195.127274,209.986786,221.226456,225.623138,215.160339,190.358688,167.333908,157.416550,155.276047,149.400024,119.259521,99.854568,113.499191,122.342171,87.466125,43.986797,16.592583,13.581838,10.191750,11.275226,11.566133,14.703322,5.161166,1.252069,0.068596,0.595042,0.019008,0.000000,0.000000,0.122315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.093389 -601578.755000,4612395.550000,4183,4955,112.777702,170.042145,174.306610,163.232224,149.455383,142.562836,141.504990,140.232254,142.215729,144.199203,147.918198,159.149582,176.885117,195.141312,209.298355,222.430588,225.728119,213.504974,190.232224,168.141312,156.951248,154.909927,148.463654,119.190926,97.942986,113.405800,121.281830,86.133072,42.686794,16.817373,13.496712,9.508281,10.476876,10.847125,12.008280,5.912406,0.636366,0.065289,0.004959,0.003306,0.009091,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.555000,4612395.550000,4202,4955,117.471916,168.058670,171.273544,163.587601,150.141312,140.372742,141.405792,139.496704,141.934723,144.521500,146.380981,158.612396,176.637192,194.108261,207.521484,221.538010,224.777679,213.521484,189.042145,166.124786,156.323135,152.785950,147.009109,117.207443,97.455383,112.695045,120.637192,87.488434,42.455395,17.081835,13.364482,9.415717,10.607454,10.884314,12.128942,5.351249,0.952894,0.307439,0.342150,0.000000,0.022314,0.323967,0.000000,0.185951,0.000000,1.149587,0.000000,0.000000,0.000000,0.000000 -601586.755000,4612395.550000,4223,4955,115.052902,164.598373,169.705811,161.928940,147.672745,141.846298,140.193405,139.226471,140.209930,142.937210,146.292587,156.986801,176.846298,192.862823,206.763657,219.788452,223.813248,211.962006,188.375229,165.788452,155.937210,151.176880,145.581833,116.623154,96.094223,111.342163,117.557037,86.193398,41.656219,16.763657,13.234730,9.751253,10.140514,12.277700,11.871917,4.066949,1.561986,0.107438,0.002479,0.024794,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601589.955000,4612395.550000,4239,4955,122.966957,167.710739,175.074387,162.388428,149.900848,142.363647,141.363647,140.958694,141.859528,144.305801,147.190094,159.082642,176.768600,193.570251,208.619858,220.776871,222.272751,213.785141,189.471069,165.991730,156.413223,152.280991,147.454559,115.991745,96.950424,111.586784,119.471085,86.818199,42.669441,18.219854,13.404977,10.025632,10.819024,10.665304,10.981007,4.609925,1.098349,0.071901,0.156199,0.018182,0.039670,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.155000,4612395.550000,4255,4955,117.366951,165.862808,170.234711,163.408264,149.110748,140.168594,140.160339,138.945465,139.631409,142.664459,146.457855,157.763641,173.557022,190.143814,205.457870,218.606628,221.400024,210.978531,185.912415,163.019836,153.457855,149.557022,144.854553,115.664467,96.722321,109.482651,118.028099,85.457863,41.358696,16.810762,13.168613,6.922326,10.949603,12.031423,11.584312,4.331414,0.671903,0.184299,0.076033,0.016529,0.001653,0.000000,0.000000,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.555000,4612395.550000,4272,4955,113.317368,170.300842,171.317368,164.738861,149.499191,141.796707,140.003326,138.540512,139.780182,143.284317,146.209930,157.300842,175.672745,190.234726,205.259521,217.375229,220.325638,210.656219,186.482666,163.276047,152.176880,148.573578,142.945480,114.127281,94.515717,110.623154,116.069435,84.738853,43.474400,17.639687,12.995061,7.411582,9.286794,10.416546,12.019850,5.333067,0.675209,0.123141,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601601.955000,4612395.550000,4299,4955,135.119858,169.086777,169.400833,159.020660,148.442154,139.243820,140.260345,138.954559,139.252075,142.533081,144.491730,156.904953,173.020660,189.574402,204.409103,216.871918,218.954559,209.202499,184.491730,161.673553,151.582642,147.177689,142.045471,113.657036,93.243820,106.491745,114.475212,83.061989,39.475227,15.145473,12.913242,6.313236,8.273570,8.884314,11.737206,5.425629,0.591737,0.269422,0.000827,0.000000,0.018182,0.000000,0.000000,0.152067,2.581818,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.155000,4612395.550000,4320,4955,118.850418,172.296692,172.428925,165.461990,150.453720,144.023972,140.792572,140.181000,140.652069,144.982651,147.428925,159.065292,176.536362,191.800827,206.850418,217.924789,221.304962,209.949585,185.751236,163.495041,151.866943,148.255371,143.172729,114.652069,95.544632,107.908264,115.817360,83.825630,40.668617,16.600843,13.015720,9.701666,9.823982,11.577703,9.313237,4.710755,0.400828,0.051240,0.000827,0.067769,0.009918,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.155000,4612395.550000,4340,4955,124.517365,169.376877,174.905792,162.732239,150.781830,141.038025,140.319016,139.409927,140.451248,144.938858,146.616547,157.839676,174.806625,192.062820,205.914062,218.195053,219.773560,209.558685,184.484314,163.451248,151.930588,148.228119,142.690918,112.905800,94.550423,107.806625,115.773567,85.600014,40.633076,16.519852,12.971920,6.522324,8.890925,9.852909,8.859517,4.381001,0.594216,0.361159,0.006612,0.000000,0.000000,0.000000,0.000000,0.275207,0.000000,0.000000,2.320661,0.000000,1.180992,0.000000 -601612.955000,4612395.550000,4354,4955,110.890099,167.749573,173.534714,165.733047,150.633911,141.708252,141.675201,141.212387,140.956192,144.518173,147.890106,158.526443,175.666931,192.129745,205.815689,217.328094,220.402466,209.980988,185.096695,164.047104,152.113251,148.328125,142.245453,114.212418,94.311584,109.162827,116.923157,86.683487,40.964481,17.745470,12.931424,6.943812,10.530595,9.894233,11.037204,5.612407,0.831407,0.714051,0.000000,0.057852,0.023141,0.000000,0.004959,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.955000,4612395.550000,4369,4955,115.798370,172.682663,171.971909,164.914062,152.914062,144.558701,141.988464,140.930603,142.715729,145.583496,146.980194,158.930588,175.947113,192.558685,206.674393,218.996704,220.947113,211.484314,186.839676,164.434723,153.476044,147.657867,144.236389,115.211594,96.376877,110.467789,118.343826,85.393402,43.996712,18.167789,13.112415,7.607450,11.490927,11.639687,11.753735,5.990092,0.675208,0.208265,0.307439,0.016529,0.075207,0.000000,0.130579,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601619.355000,4612395.550000,4386,4955,122.088440,166.567780,173.832245,165.336380,151.452072,144.295044,140.997528,141.286789,142.245468,144.377701,147.162827,158.286789,176.774384,191.956207,206.253723,218.542984,220.914886,210.757858,185.708267,163.352905,152.724808,149.121490,141.609100,113.088440,94.617363,107.328110,117.104965,86.071907,41.766136,16.165306,12.873572,6.583482,10.039686,10.514892,10.013236,4.209098,0.540498,0.413224,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.155000,4612395.550000,4400,4955,126.613235,166.026474,172.472733,162.547134,150.365311,143.059525,140.076065,139.687622,141.390106,143.960358,146.001678,157.489288,174.927277,190.919006,205.249603,216.885941,219.042969,209.712387,183.894226,161.762009,151.299194,146.621521,142.018204,112.786789,93.084305,107.158684,115.142159,84.728935,41.654564,17.004978,12.910764,7.452905,9.276051,11.397536,12.242991,5.520670,0.526448,0.000000,0.000000,0.000000,0.006612,0.000000,0.127274,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.355000,4612395.550000,4431,4955,135.295883,167.271088,171.477692,163.808273,151.097534,142.824799,139.907440,139.783478,140.477692,143.733887,146.667770,156.791748,173.485962,189.758682,203.229752,216.345459,217.576859,207.056198,181.791748,158.320663,147.766953,144.080994,140.072739,110.477699,92.328941,105.238029,113.717369,82.081009,39.469444,17.014894,12.733904,5.855382,8.904977,9.753735,9.687618,5.668604,0.802481,0.581819,0.066942,0.068595,0.004132,0.000000,0.010744,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.555000,4612395.550000,4447,4955,122.781830,172.368591,173.988434,164.649582,151.872726,142.442978,140.509094,139.294205,139.806610,144.186768,145.186768,156.013214,173.806610,189.757019,203.533875,214.781815,217.054535,205.996689,181.104126,158.633057,147.542145,143.137192,137.963638,110.004974,91.236374,105.856209,113.765305,84.087616,40.533905,16.179358,12.542167,6.898358,10.137207,8.875222,10.276048,5.582654,0.556200,0.305786,0.138017,0.000000,0.018182,0.000000,0.000000,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.155000,4612395.550000,4460,4955,138.827286,174.042160,175.157852,163.860336,150.323151,140.835556,139.794235,139.364471,139.843811,142.967789,144.843811,156.182663,172.794205,189.083466,202.678513,213.819000,215.893387,206.182648,180.223969,158.670258,147.777695,144.538025,137.372742,109.141342,90.066963,103.381012,112.827293,82.232254,40.405807,17.309935,12.488450,5.911580,9.343820,9.547951,8.695882,4.609925,0.580167,0.388430,0.565290,0.033885,0.024794,0.000000,0.000000,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.355000,4612395.550000,4476,4955,120.743820,172.289276,172.330597,165.231415,152.082672,140.710754,139.867798,138.917389,139.776871,143.223160,144.562012,155.752075,171.256210,187.454559,201.570267,213.768616,215.528946,205.619858,179.727295,156.760345,145.305801,141.900848,138.090942,109.347115,89.024811,104.239677,111.859512,83.363655,41.281010,15.678531,12.553738,6.654557,9.770266,9.970263,9.805799,5.143809,0.628101,0.157025,0.369422,0.000000,0.021489,0.000000,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.555000,4612395.550000,4507,4955,122.812416,177.184326,175.531433,166.275223,153.126465,143.779358,140.754562,140.837219,140.622330,144.754562,145.283493,156.151260,173.572754,188.754547,202.473572,214.052094,215.787628,204.638870,179.961182,156.647125,146.729782,142.795883,136.663666,108.564484,89.448784,104.159523,114.060356,84.597542,40.374397,17.829769,12.423986,7.317367,10.945473,10.750431,9.718196,4.254553,1.084300,0.251241,0.057025,0.000000,0.017356,0.000000,0.228100,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.755000,4612395.550000,4548,4955,109.701668,181.057022,174.850418,166.181000,153.941330,143.098343,142.023972,141.048767,140.271912,145.222321,145.230576,156.304962,172.197525,190.751236,203.627274,216.015701,217.280167,205.635544,180.296692,158.643799,146.288437,143.222321,138.354553,109.602493,90.288445,102.817368,114.114891,85.205795,42.007462,17.586796,12.577704,7.361170,9.279356,8.542991,9.030593,5.218192,0.663637,0.127273,0.074380,0.012397,0.178513,0.000000,0.000000,0.000000,1.422314,0.000000,0.000000,1.117355,0.000000,0.000000 -601657.555000,4612395.550000,4577,4955,122.782661,173.873566,169.162827,164.038849,151.468597,138.394226,137.716537,137.741333,138.212402,142.319839,142.518188,152.790924,170.071915,188.237198,200.427277,211.691742,213.675217,204.352905,177.534714,155.609100,144.328110,139.989273,135.700012,106.493401,88.658684,100.939682,112.113235,83.749596,38.972748,17.106630,12.336383,5.530587,10.495059,9.854561,10.543814,5.025629,0.574382,1.120662,0.126447,0.304133,0.171901,0.000000,0.030579,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.555000,4612395.550000,4617,4955,123.084312,173.745468,171.042984,162.505798,147.712402,136.728943,135.398361,132.323990,132.340515,134.241333,134.935562,145.505798,162.786789,177.398361,190.051254,201.241333,200.439682,189.406616,165.431412,145.001663,135.142166,131.737213,126.290924,99.059525,81.877701,94.497536,103.596710,76.290932,36.414898,15.620679,11.481010,9.597535,9.050428,10.267783,9.372743,3.557033,0.410745,0.319010,0.189257,0.000000,0.000000,0.010744,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.755000,4612395.550000,4633,4955,115.734734,174.205795,172.263657,163.362823,147.404129,138.238861,136.900024,134.230591,134.866959,136.189270,136.296707,148.354568,163.982666,179.585968,191.610764,201.346298,202.164490,191.263657,165.900024,145.718201,135.552917,133.453735,128.263641,100.346298,84.263657,96.123161,105.395889,76.503326,36.676884,16.004150,11.660350,11.267784,9.766958,10.017370,9.129766,3.114057,0.662812,0.228926,0.193389,0.048760,0.162810,0.000000,0.045455,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.955000,4612395.550000,4654,4955,135.047943,174.271088,173.014893,160.436371,147.634720,135.502487,136.089264,133.428101,132.527267,134.560333,135.345459,145.923981,161.742157,178.328949,190.023163,200.081009,200.940521,189.155396,164.642975,143.957031,134.229752,132.006607,126.618187,97.808281,82.081009,93.510757,102.411583,75.436378,34.940514,14.177704,11.510763,9.236379,8.769437,9.539686,8.811584,3.142155,0.543803,0.438018,0.221488,0.000000,0.000000,0.000000,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.355000,4612395.550000,4676,4955,123.178528,177.905777,173.773544,162.740509,147.674393,136.244644,135.963654,134.178528,132.740509,136.186783,134.790100,146.219849,162.252899,178.955368,190.360336,200.145462,201.219849,189.492569,165.046295,145.062820,133.757034,131.021500,125.509102,98.442986,81.715721,93.881004,102.955383,75.533905,36.261173,14.733073,11.409936,9.838858,9.160344,10.134726,10.606626,3.776041,1.436367,0.132232,0.166116,0.000000,0.105785,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,2.471901,0.000000,0.000000 -601680.155000,4612395.550000,4690,4955,118.392578,173.194229,172.871918,162.136383,147.863647,135.739685,136.425629,133.541336,131.367783,136.863647,134.582657,146.045471,162.103317,178.252075,189.929733,199.466919,200.615692,188.524780,165.475220,144.028946,133.367783,131.855392,125.500015,97.367775,81.764481,93.557861,103.632248,75.838860,35.301674,15.417373,11.409109,10.419850,7.599187,7.293400,7.173566,3.291742,0.372729,0.204959,0.385951,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.292562,0.000000 -601684.155000,4612395.550000,4710,4955,109.705803,176.135544,171.309097,161.937195,146.771912,134.879349,135.573578,132.763641,132.325638,134.647949,133.085968,145.127274,161.631409,177.631409,189.400009,200.490906,200.507446,187.813232,163.333893,143.276031,133.226456,130.540512,125.854553,96.838036,80.242996,91.978531,103.681007,73.970268,34.838036,14.927292,11.441340,8.383485,5.768608,6.202492,7.725633,2.466121,0.403307,0.075207,0.019008,0.000000,0.000000,0.000000,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.555000,4612395.550000,4737,4955,132.657043,180.351257,173.772751,164.177704,148.541336,136.433899,135.070267,134.318192,133.342987,135.979355,135.318192,146.260345,162.615723,178.384308,190.566132,201.409103,201.376053,188.103317,163.673569,145.417374,133.665298,130.425629,125.590927,97.995872,80.772743,94.086792,103.392578,74.566132,34.252087,14.701672,11.417375,8.500840,7.625633,9.626460,8.898360,3.276869,0.931408,0.231406,0.152066,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.755000,4612395.550000,4753,4955,121.509933,183.633911,172.790924,163.898361,148.799179,136.014069,137.410751,133.617386,134.419037,136.947937,135.014069,146.005798,163.030594,178.509949,191.724808,201.171082,199.584305,187.790939,164.939682,144.055374,134.088455,131.419022,125.700020,98.212410,80.113243,94.295052,101.981003,74.179359,35.303322,14.156217,11.427293,9.852082,8.229766,9.466956,8.264479,3.133065,0.833060,0.067769,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.061157,0.000000,0.000000,0.000000 -601697.355000,4612395.550000,4776,4955,122.260338,186.690079,173.301651,165.020676,147.252075,135.103317,135.500015,132.797531,132.442154,135.500015,132.921494,145.053741,161.590927,177.557846,189.929749,200.880173,200.342972,186.657028,163.880188,143.557877,133.020676,129.772736,123.590919,96.359512,80.119850,93.070267,103.004143,73.400848,34.276878,14.291754,11.235558,9.902494,7.041335,9.419849,8.616545,1.921493,0.419836,0.095042,0.254546,0.000000,0.062810,0.000000,0.007438,0.148761,3.632232,0.000000,1.116529,0.000000,0.000000,0.000000 -601702.555000,4612395.550000,4802,4955,124.147133,183.990112,176.444656,165.725647,150.576889,135.535553,135.312424,134.485977,133.700851,138.601669,135.262833,145.634735,162.014893,179.560349,191.593414,202.312408,201.089279,187.312424,163.618210,144.196716,133.882660,130.923996,124.890930,97.370270,81.816551,93.229774,102.692581,74.006638,34.056217,15.009936,11.353739,11.185967,8.376873,9.517370,8.588446,3.979347,0.668597,0.063637,0.114876,0.004959,0.041322,0.000000,0.137190,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.755000,4612395.550000,4843,4955,136.378540,193.485962,175.742157,167.395050,147.395050,134.345474,135.403320,131.766953,131.948776,137.973557,133.138855,144.361984,160.866119,176.932236,189.915710,200.114059,198.031418,183.808273,162.196701,142.618195,131.304153,128.081009,123.163651,94.138863,79.403328,91.948784,100.998367,71.874405,33.014896,12.444644,11.196713,11.259521,7.844640,5.604143,8.351254,4.300008,0.600829,0.043802,0.090083,0.000000,0.000000,0.000000,0.171901,0.284298,0.000000,0.000000,0.000000,0.000000,1.442149,0.000000 -601722.155000,4612395.550000,4900,4955,150.922333,201.071091,184.649597,172.021500,152.128937,139.013229,139.327286,136.343811,136.112411,142.517365,136.087616,147.732239,162.542160,180.054565,192.938858,204.641342,202.905792,187.525635,165.104141,144.930588,133.914062,131.525635,126.418198,97.566956,80.442986,95.881004,104.335548,74.732246,36.128948,16.597540,11.492581,14.875224,8.944640,9.598361,8.142164,3.937199,0.447935,0.126447,0.038843,0.065289,0.059504,0.000000,0.182645,0.335538,2.742149,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.755000,4612395.550000,4978,4955,117.644646,167.330597,171.157043,159.892578,147.628113,137.917374,135.371918,134.239700,134.264481,134.619858,137.429764,147.809937,165.851257,181.611588,194.512405,203.818192,204.024811,192.347122,167.859528,146.223160,134.644653,132.917374,126.545479,99.479355,81.190109,97.008278,106.281013,76.727295,37.644646,16.147125,11.504150,7.946294,7.312412,8.120674,9.805800,3.038850,0.741324,0.000000,0.015703,0.000000,0.183472,0.103306,0.050414,0.047108,0.000000,1.278512,0.000000,0.000000,0.000000,0.000000 -601762.555000,4612395.550000,5102,4955,121.473572,162.176041,169.605789,161.027283,146.729752,137.176041,134.911591,133.060349,133.754562,135.184311,136.242157,147.176041,165.167770,181.085129,194.390915,204.895050,204.704971,193.787613,168.754547,147.341324,135.738022,132.002502,127.572746,98.423988,80.490105,95.333084,107.142998,78.225639,37.738041,15.156216,11.597540,6.647945,7.628113,8.412412,9.638030,2.904965,0.974382,0.530580,0.000000,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601801.955000,4612395.550000,5299,4955,128.863647,169.921494,172.557846,162.111572,148.219009,139.706604,136.665283,135.458694,135.541336,138.400833,139.309921,149.995865,167.814056,184.458679,197.342972,208.078506,208.805786,199.070251,175.681824,152.739670,140.541321,136.524796,131.318192,102.524803,82.367783,96.871910,112.780998,83.888443,39.855396,17.227291,11.938036,6.032242,9.162827,8.620678,8.421501,5.830589,0.566117,0.158678,0.058678,0.000000,0.000827,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601819.355000,4612395.550000,5386,4955,121.692574,183.188431,173.626450,164.039673,150.089264,139.039673,136.700836,136.717361,134.609924,139.353729,139.105789,150.502487,168.618195,186.304138,198.816528,210.014877,209.940506,200.733887,176.444641,153.915710,141.833069,137.262817,131.436371,101.262817,83.345459,99.188446,112.477699,85.428108,39.444653,15.700017,11.948779,7.248771,9.093404,8.791750,7.765303,2.261163,0.923142,0.217356,0.299174,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.955000,4612395.550000,5424,4955,130.235550,177.367783,173.367783,164.491745,149.971085,139.392578,136.615723,135.400848,132.954559,139.235550,138.450424,150.268616,167.458694,185.690094,198.533081,209.053741,211.409103,200.698364,176.524811,155.252075,142.714890,138.285141,131.863647,101.219025,83.582664,98.739685,111.599190,85.698364,39.086796,14.519853,11.987622,4.326453,6.753735,5.990097,7.033897,4.104966,0.580167,0.000827,0.179339,0.000000,0.000000,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.155000,4612395.550000,5460,4955,119.633072,179.071075,179.740509,166.368591,149.955383,139.839676,139.269440,135.914062,135.161987,138.054565,140.723984,152.492569,170.748764,189.162003,203.145462,214.740509,216.269440,204.740509,179.831421,156.839676,146.426453,143.236374,138.054565,107.707443,90.881004,103.682648,117.624802,84.633080,43.649609,17.795061,12.550433,13.515719,11.599192,12.128942,13.671091,6.890091,1.672730,0.449588,0.552067,0.439670,0.178513,0.027273,0.041323,0.000000,3.143802,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.355000,4612395.550000,5476,4955,108.711594,172.476044,175.467789,164.955383,149.426453,137.955383,139.112411,134.889267,135.228119,136.657867,138.467789,152.021500,170.905792,188.509109,201.533890,213.566956,216.426453,202.203323,178.352081,155.170258,144.004974,140.988449,136.418198,104.748779,87.566956,102.823158,114.881012,84.104149,39.831421,15.284316,12.401671,11.773569,8.857041,9.395058,11.899190,5.742158,1.623143,0.434712,0.481819,0.268596,0.351240,0.000000,0.214877,0.078513,0.000000,0.000000,0.000000,1.094215,0.000000,0.000000 -601844.555000,4612395.550000,5512,4955,130.593399,186.077698,183.433075,168.953735,152.507462,143.044647,141.606628,139.788452,139.540512,142.234726,142.623154,155.011597,173.854568,192.226471,203.540512,215.755386,218.309113,203.895889,179.829773,157.697540,145.193405,141.573578,137.581833,106.300842,88.788452,103.705803,114.763649,85.077705,41.681015,16.085142,12.507458,12.023156,10.371092,11.777703,11.912412,8.627284,1.370251,0.814877,0.501654,0.602480,0.171075,0.000000,0.037191,0.454546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601847.755000,4612395.550000,5528,4955,122.114891,182.726456,182.908279,168.875214,151.040497,140.453720,139.461990,136.866943,136.809097,139.833893,139.577682,152.428925,171.346283,189.214050,202.032242,215.371078,216.304962,203.511566,179.660355,157.197525,146.561157,143.329758,138.263641,106.833893,89.057045,104.519844,115.974388,84.982666,42.676884,17.550434,12.569440,12.548777,10.509934,11.626461,12.950430,6.299184,1.336367,0.576035,0.260331,0.955373,0.474381,0.337190,1.010745,0.336364,0.000000,0.000000,0.000000,1.856199,0.000000,0.000000 -601854.155000,4612395.550000,5560,4955,110.538033,185.259521,178.798355,164.228119,147.723984,133.517380,135.343811,131.889267,133.168610,137.046295,136.195053,149.548782,167.838043,186.350433,200.069443,213.201675,213.879364,200.375229,177.937210,154.788437,143.945465,141.433060,137.672729,104.664474,87.143814,102.052902,115.185135,82.796707,40.838039,15.262001,12.515722,13.514067,11.383488,13.242167,12.378528,8.504144,2.478517,0.822316,0.872729,0.374381,0.132232,0.240496,0.145455,0.230579,0.000000,1.559504,0.000000,1.371901,0.000000,0.000000 -601857.155000,4612395.550000,5575,4955,119.292564,186.460342,177.085953,163.832245,148.303314,137.658691,138.873566,135.328110,136.228943,139.576050,139.171082,151.138031,169.352905,187.633896,200.923157,214.683487,214.419022,200.766129,177.576050,154.807449,143.956207,142.600830,137.518188,107.121498,88.857033,104.369431,115.394226,83.923149,41.914898,17.367786,12.501672,10.598361,10.044644,9.829767,12.643817,6.202488,1.661160,0.899175,0.190910,0.161984,0.074380,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.755000,4612395.550000,5593,4955,109.537209,188.922318,179.889252,165.806610,149.955368,136.509109,138.947113,136.038025,135.533890,138.509109,138.343811,151.219833,169.261154,188.046280,201.657852,214.211563,214.971893,199.608261,178.095871,154.599991,143.459518,140.476044,134.781845,104.674400,86.881012,102.657875,114.145477,83.517380,41.509113,14.951259,12.252912,11.137205,8.675222,10.390924,9.585964,5.113232,1.423144,0.566117,0.401654,0.543802,0.114050,0.000000,0.026446,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.755000,4612395.550000,5608,4955,114.165306,181.685150,177.344635,170.534714,156.989273,142.551254,142.452072,139.493393,138.981003,143.014053,142.650421,154.394226,169.121490,187.096710,201.295044,212.972733,214.319839,203.485138,179.981003,157.700012,147.096710,143.766129,138.609100,109.476875,92.030586,105.435547,113.113243,83.162819,39.534733,14.630595,12.600845,8.766953,9.507451,8.627286,11.649600,4.861163,3.050416,2.343803,2.312398,1.854546,2.200827,1.374380,1.043802,0.895868,0.000000,0.000000,0.000000,0.773554,0.930579,0.000000 -601868.155000,4612395.550000,5630,4955,110.076057,168.852905,168.828110,165.233063,150.662827,137.505798,138.076050,134.935562,133.976883,139.456207,139.464478,149.456207,164.514053,182.704147,194.935547,207.753723,208.654556,199.051254,175.894226,154.728943,145.530594,139.910751,136.109116,109.241348,91.481018,105.076057,112.100853,83.175232,38.563660,16.361176,12.373572,5.968607,8.635552,8.479355,10.045468,3.934719,0.535538,0.058678,0.148761,0.527274,0.147108,0.000000,0.085951,0.590083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.155000,4612395.550000,5660,4955,106.490097,173.564468,172.886780,164.283478,150.242157,140.316528,138.142975,136.556198,135.448761,139.423981,139.820663,150.283463,164.655380,182.580994,195.085129,207.845444,210.266937,199.754547,176.341324,155.415710,143.977692,141.060333,135.663635,108.928116,93.159515,105.027290,114.027290,83.481834,40.209118,17.311588,12.333076,5.854558,10.321503,11.285966,9.215715,2.995049,1.380995,0.395869,0.135538,0.709092,0.000000,0.084298,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.355000,4612395.550000,5676,4955,104.546295,169.752884,173.397522,163.521500,150.901688,138.488464,138.273590,136.595901,135.719849,139.918213,139.405807,150.298370,166.108276,182.009125,195.918198,208.133057,209.868591,199.042160,175.124817,154.058701,145.215729,141.794250,135.827301,107.645477,91.670258,106.273575,114.488449,82.347946,41.711594,16.306631,12.347954,9.688442,9.974397,9.859519,8.366128,3.872735,1.448764,0.601654,0.068595,0.147108,0.026447,0.086777,0.420662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.555000,4612395.550000,5697,4955,109.036385,164.953720,172.499176,163.904129,148.127289,138.011597,137.019852,135.209930,134.143814,137.292587,138.019852,148.887619,164.515701,180.821487,193.961990,205.565292,208.292572,198.507446,173.714050,152.887604,143.242996,140.226471,135.218201,108.028122,89.887619,102.854568,110.697540,82.780182,38.565308,15.021504,12.292581,5.766127,9.244643,8.667783,8.642987,3.476866,0.267770,0.268596,0.330579,0.430579,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.955000,4612395.550000,5719,4955,112.279350,166.023178,173.733917,163.295914,149.188446,138.262833,136.609940,134.833069,134.395050,138.362000,139.485977,149.262833,165.130615,182.519043,194.849625,207.667786,209.279373,198.576904,174.783508,153.676056,143.601669,141.304153,135.254562,108.709114,91.585136,104.882668,112.849609,82.213234,40.907452,16.438862,12.295886,7.204970,10.954562,8.044643,9.407452,3.524801,0.874383,0.734713,0.210744,0.371075,0.152066,0.000000,0.699174,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.155000,4612395.550000,5745,4955,112.226463,162.416565,169.350449,160.804993,147.780167,137.358688,135.424789,133.507446,133.540512,136.085953,138.342148,147.895874,164.606644,180.457886,193.490952,205.449615,207.342178,196.995071,172.771942,151.887604,143.358688,139.028107,134.309097,107.276054,91.523987,104.672745,109.763657,80.821510,37.829777,14.956217,12.209937,7.267781,9.270263,7.662825,9.174394,3.424802,1.120663,0.186778,0.000000,0.387604,0.000000,0.057853,0.185124,0.472728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.355000,4612395.550000,5766,4955,105.394234,162.609116,170.030609,161.022324,145.691742,138.981003,134.848785,133.262009,133.460342,135.989273,137.964478,147.815720,164.138031,179.427292,192.518204,204.766129,206.658691,196.733078,172.633911,151.749603,142.154556,138.261993,133.790924,106.906631,89.402496,104.113243,110.989273,81.782661,39.361179,15.049606,12.162828,7.481830,9.807452,10.487618,8.988442,4.862819,0.758680,0.523969,0.219009,0.179339,0.128099,0.098348,0.000000,0.461984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.955000,4612395.550000,5794,4955,105.917374,160.223160,168.429764,159.239700,146.363663,137.371933,135.330597,132.834732,133.000015,135.363647,137.735565,148.396729,163.545471,179.165329,192.404968,203.090927,205.578522,196.619858,172.900864,152.033096,142.983505,138.148788,134.363647,106.818199,91.355385,102.842995,109.942162,80.438034,37.884315,14.979356,12.214896,6.237203,8.985965,8.602494,7.786788,3.766124,1.471078,0.229754,0.140496,0.166116,0.000000,0.011570,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.955000,4612395.550000,5839,4955,95.009109,160.058685,168.166122,159.976028,145.976044,137.190918,135.810760,134.711594,134.157867,136.182663,137.785965,148.620667,164.835541,180.331421,192.736374,204.909927,206.108276,195.959518,172.637207,152.149597,142.653732,138.752899,134.918198,106.926460,89.835548,103.678528,110.124809,81.645477,38.248783,16.752087,12.265308,5.963647,9.108278,10.037208,9.063650,3.080172,0.466118,0.293390,0.073554,0.223141,0.277686,0.036364,0.333885,0.558678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.555000,4612395.550000,5872,4955,100.021500,159.112411,171.195053,162.947113,146.889267,136.963654,135.690918,134.178528,133.798355,136.699188,137.881012,148.558685,164.236374,180.236374,193.277695,203.864471,207.145462,196.608276,172.930588,149.781830,142.600006,138.674393,133.963654,107.500839,90.376869,103.881004,110.203316,80.285965,39.558701,17.612413,12.178532,7.779352,10.690925,10.528942,9.147946,6.691746,0.723970,0.314052,0.159504,0.267769,0.000000,0.000000,0.371075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601923.755000,4612395.550000,5908,4955,102.538040,155.785965,166.843811,159.744644,146.017365,136.290100,133.133072,131.653748,131.992584,133.438858,135.744644,147.182663,161.794235,177.381012,190.083481,201.868607,203.992569,192.471909,169.909927,149.976044,140.091751,135.719849,130.736389,104.058701,86.149605,103.653740,109.331429,78.347954,37.827293,14.142166,11.885144,6.715714,9.178527,10.242992,8.203318,4.065297,0.923142,0.362811,0.069422,0.289257,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601930.755000,4612395.550000,5943,4955,104.936386,158.432251,168.341339,158.919861,143.779358,134.432251,133.176041,131.762817,129.969437,132.101669,133.895050,144.118210,160.713242,175.407455,187.845474,198.878540,199.721512,191.159531,167.754562,146.134735,137.027298,134.878525,128.754562,101.704979,85.886803,98.795891,108.754570,77.804153,37.572746,14.171918,11.704978,7.268607,10.339684,9.743816,9.451254,4.691744,0.680169,0.289257,0.065289,0.038017,0.118182,0.000827,0.000000,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601936.355000,4612395.550000,5971,4955,92.010765,154.333069,168.795868,157.523148,143.101654,134.531418,131.490097,128.994232,129.423981,130.266953,132.060349,141.878525,158.019012,173.523148,186.052078,197.713226,198.630585,188.308273,164.944641,144.663635,134.258698,131.696716,125.390930,99.622337,84.919861,96.729774,107.531425,76.473579,36.126465,13.573571,11.399192,5.197531,7.916544,8.070263,9.386789,3.281826,0.743804,0.146282,0.000000,0.147935,0.069422,0.330579,0.709918,0.137190,0.000000,0.000000,0.000000,0.000000,1.800000,0.000000 -601944.355000,4612395.550000,6011,4955,84.066963,155.992569,168.389267,158.000839,144.992569,136.166122,133.637207,130.604141,130.273560,132.918198,132.885132,144.116547,159.612411,175.777695,187.562820,198.546295,200.381012,189.347946,167.579346,145.951248,136.785965,134.116547,128.372742,100.951256,84.290092,100.298363,108.381004,80.752907,40.695061,17.703325,11.670267,7.955385,9.968612,9.642163,9.442990,4.311578,1.804962,0.297523,0.328926,0.166943,0.247934,0.268596,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601952.755000,4612395.550000,6053,4955,86.377708,155.088440,167.493393,158.286789,144.666946,134.303314,131.881821,129.708267,129.261993,130.228943,131.642151,142.501663,157.625626,172.964478,185.873566,197.419022,199.047119,186.666946,165.237198,144.162827,134.766129,130.815720,125.063644,98.220673,82.485138,98.071907,106.485138,78.336380,36.823986,15.590925,11.369440,7.065301,9.167784,9.813239,8.535550,3.978519,0.510746,0.059505,0.099174,0.035537,0.114050,0.079339,0.000000,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601957.155000,4612395.550000,6075,4955,81.986794,157.335571,167.740524,156.137222,142.335571,133.145477,131.310760,128.525635,128.368622,129.707458,132.219849,142.657883,158.360367,172.740524,184.905792,197.128952,197.732254,186.831421,164.881027,144.409943,134.203323,131.459518,124.600021,97.682663,82.360352,97.765312,105.889275,77.153740,37.938858,12.604149,11.327291,6.038856,7.831420,7.874396,7.702491,2.851246,0.849589,0.054546,0.200000,0.087604,0.112397,0.004132,0.000000,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.755000,4612395.550000,6103,4955,105.802490,159.033890,169.108276,158.422333,143.901672,134.909927,133.116547,130.166122,129.290100,130.934723,132.587616,142.992569,159.207458,174.744644,186.604141,197.447113,198.777695,187.314896,164.620667,144.984314,134.662003,132.430588,126.190926,99.207451,82.414062,98.885139,106.942986,77.314888,36.009113,16.380184,11.471920,8.856213,8.725636,9.832246,9.941335,3.570256,0.453722,0.752895,0.308265,0.169422,0.000827,0.086777,0.384298,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.155000,4612395.550000,6125,4955,93.701675,157.296692,166.957855,158.652069,142.123138,134.280182,132.470261,128.891754,129.106628,130.032242,132.032242,142.313232,157.933060,173.999176,185.247116,196.966125,197.701660,185.569427,164.214050,143.966125,133.544632,130.519852,124.900017,99.660339,84.098358,95.875221,105.346291,78.057037,38.098370,14.290926,11.354564,7.650426,9.583487,9.297536,8.146294,3.687613,0.441324,0.739671,0.000000,0.262811,0.273554,0.242976,0.138843,0.386777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.355000,4612395.550000,6146,4955,109.195885,167.080185,170.262009,159.055405,146.410767,137.419037,133.675217,132.319839,130.476868,132.303314,133.790924,144.592590,161.022339,175.063660,188.038864,198.865311,200.047134,187.766144,165.716553,145.890106,136.468597,132.187607,127.245461,100.336372,84.947945,99.352905,107.733070,78.691750,36.452084,15.806629,11.567788,8.347949,10.449602,10.348776,9.753732,5.542984,1.171905,0.253720,0.055372,0.300828,0.068595,0.165290,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.355000,4612395.550000,6176,4955,107.375229,162.193405,170.548782,159.804977,145.309113,133.796707,134.168610,130.102493,130.152084,131.598373,131.771927,142.862823,158.366959,174.523987,187.358704,197.466141,198.722336,188.366959,165.590103,143.986801,135.284317,131.482666,126.218201,99.193405,82.052910,97.193405,105.738861,76.995064,36.755390,13.350430,11.474400,7.614887,10.231421,10.721503,8.995880,4.368603,0.965292,0.676035,0.186777,0.045455,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.555000,4612395.550000,6207,4955,101.038872,159.840500,170.881821,159.394226,145.063644,133.361176,133.344635,129.435547,128.485138,130.377701,131.733063,143.063644,157.815720,173.617371,186.592575,197.071915,197.749603,186.295044,163.956207,142.956207,132.848770,130.410751,125.609100,98.741333,82.633896,95.576042,105.121498,76.815720,35.832249,14.567785,11.419027,6.221500,8.823981,10.914065,9.638856,3.515708,0.309092,0.201655,0.314050,0.168596,0.179339,0.157025,0.689257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601986.955000,4612395.550000,6224,4955,96.249596,158.497528,168.224808,158.538849,142.216537,133.307449,131.795059,129.993408,128.381821,130.018204,131.299194,141.555374,157.861160,174.629761,185.885956,197.224808,198.489273,186.530594,164.274384,143.373566,134.158691,129.704147,124.290916,97.679352,81.993401,95.869431,103.770256,76.439682,35.720684,12.213239,11.299192,8.786790,6.685137,8.560346,7.091746,3.281824,1.175210,0.390911,0.000000,0.076033,0.000000,0.002480,0.157025,0.454546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601991.755000,4612395.550000,6248,4955,106.445465,160.296692,170.338013,161.800827,147.280167,135.503326,134.734726,131.751266,131.528122,132.809113,134.156219,144.635544,161.098343,176.189270,187.759521,199.718185,200.866943,188.495041,165.594223,144.214050,135.627289,133.189270,126.354553,100.759514,84.858688,98.635551,106.784309,77.660339,36.569447,15.190928,11.486795,7.996707,9.909931,9.635551,9.454558,3.766950,0.381820,0.131407,0.107438,0.420662,0.100000,0.000827,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.355000,4612395.550000,6281,4955,112.509941,164.212418,169.890091,161.724823,146.071930,134.931427,132.427292,130.377716,130.286804,131.815735,133.551270,145.625641,160.344650,176.567780,188.204147,199.245468,200.171082,189.526459,165.625641,145.055405,135.460358,132.096725,126.609116,100.964485,84.435562,95.576057,102.914902,75.815727,35.592583,13.978531,11.509936,7.290920,8.964478,9.032247,9.217371,4.407445,0.463638,0.396696,0.195042,0.235538,0.249587,0.117356,0.322314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.155000,4612395.550000,6300,4955,92.762833,165.911606,169.547974,159.936401,145.630615,134.283493,133.101669,130.853729,130.052078,132.233902,132.729767,143.448776,160.514908,175.828964,186.473587,197.275238,198.985992,186.911606,163.969467,142.597549,132.746292,130.936371,126.209106,98.862007,82.473572,95.465309,103.952911,74.225632,35.994232,13.597537,11.473573,8.482656,9.143817,7.889271,7.606624,3.012403,1.042151,0.270249,0.409918,0.071901,0.005785,0.079339,0.142975,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602006.955000,4612395.550000,6324,4955,112.130592,165.759521,171.809113,161.164490,147.486801,135.635559,134.974396,131.544632,131.255386,132.511581,133.594223,144.792587,160.850433,175.933075,188.866959,199.453735,201.585968,187.585968,164.883484,144.519852,134.428940,132.057037,127.536377,100.693398,85.081833,96.635551,104.164474,77.354553,36.552914,14.465307,11.594234,7.880177,9.278528,9.734726,11.130594,4.292569,1.183474,0.244630,0.678514,0.000000,0.216530,0.000000,0.686778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612395.550000,6353,4955,109.487625,174.214905,172.710754,162.223160,147.140518,134.413254,133.975235,130.727295,129.537216,132.338867,131.239700,142.942169,159.355392,175.256226,187.900864,199.074417,198.702515,186.322342,163.652908,143.223160,133.281021,130.545471,124.909119,97.537216,82.553741,95.925644,103.768616,75.743828,36.363651,16.201672,11.355392,7.295879,8.552083,9.447122,9.271088,3.889261,0.247109,0.133885,0.114876,0.094215,0.000000,0.000000,0.178513,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.155000,4612395.550000,6370,4955,106.183495,166.993393,169.662827,159.051254,142.390106,132.571930,130.646301,128.431427,128.034729,130.051270,129.464478,140.778534,156.555374,172.662827,185.761993,197.092575,195.233063,183.737198,161.208267,140.844650,129.952087,128.712418,122.472748,95.224823,80.489281,91.952095,101.390106,73.778542,35.274399,14.214066,11.133904,7.670260,8.851254,7.309104,7.090095,3.746287,0.112398,0.680994,0.097521,0.117356,0.000000,0.076860,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602019.755000,4612395.550000,6388,4955,105.660347,167.281845,169.281845,160.347961,142.017380,131.620682,131.281845,128.207458,127.785973,130.265305,129.331421,140.447144,157.653748,174.331436,185.571106,198.430603,198.124817,186.290115,163.587631,143.438873,133.215729,130.116547,125.009109,96.066971,81.025650,94.604164,105.612427,77.050446,34.934727,15.912413,11.364482,9.166954,9.668610,10.386790,10.747947,3.255379,0.539672,0.212398,0.193389,0.261984,0.000000,0.085124,0.133885,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602023.355000,4612395.550000,6406,4955,106.163651,174.262817,170.345459,161.857864,145.378525,134.097534,133.436371,129.833069,129.626465,132.262817,131.890930,143.370255,159.180176,178.097534,188.609924,202.345459,201.238022,188.221497,167.188431,147.031418,136.576859,133.105804,127.800018,98.552078,83.064476,96.254562,108.328949,78.866127,36.684319,15.595059,11.618200,8.297534,8.666131,9.647122,9.881832,4.870257,0.719011,0.349589,0.182645,0.311572,0.000000,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602025.955000,4612395.550000,6419,4955,104.179359,170.493408,168.815735,162.303329,144.278534,134.146301,133.493408,129.518204,129.220673,132.865311,130.394226,142.923172,159.419037,176.501678,189.237213,201.733078,201.576065,187.815735,165.815735,145.584320,135.138031,133.038864,126.972748,97.981010,82.675224,96.584312,108.559525,76.766136,36.220680,14.337208,11.542995,9.861171,8.645470,9.766131,10.361998,3.975213,0.584300,0.221489,0.125620,0.287604,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.555000,4612395.550000,6437,4955,114.390930,176.423996,170.010773,162.308289,148.002502,134.043823,134.151260,130.085144,129.547958,134.316559,132.126465,144.052094,159.870270,178.010773,190.638870,203.564484,203.448776,189.862000,167.746307,147.729782,137.316559,134.200851,128.845474,100.514900,82.994240,97.192581,108.713249,79.514900,37.713242,16.225639,11.713242,10.553734,9.395057,10.725636,10.848776,4.018189,0.971904,0.142150,0.061157,0.213224,0.000000,0.085951,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.555000,4612395.550000,6467,4955,108.267776,174.953735,171.317368,163.581833,147.011597,135.160355,133.003326,132.259521,131.069443,134.813248,132.730591,143.995056,160.350433,178.532257,191.242996,203.854553,204.953720,190.375229,168.044647,148.292587,138.234726,136.276047,128.763657,100.540504,85.391747,99.763649,109.028107,77.970268,38.532249,15.416545,11.705805,13.351254,9.006626,10.062825,10.587616,3.668603,0.685953,0.320663,0.129752,0.000000,0.088430,0.237190,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.555000,4612395.550000,6502,4955,116.292587,181.747116,172.978516,166.631409,148.730591,138.209915,135.689270,133.937210,133.135559,139.771912,135.251266,146.325623,162.490906,179.185120,195.590088,207.201660,208.259506,191.234711,171.871078,150.771927,140.755371,137.069427,132.490921,103.763657,85.639694,103.152092,113.061180,79.094231,39.309109,18.053738,12.044648,13.523156,10.781834,11.753736,10.738032,6.838028,0.816532,0.100828,0.334712,0.143802,0.000000,0.231406,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602045.555000,4612395.550000,6517,4955,116.839691,172.484314,172.327286,167.765320,147.847961,136.153748,134.732254,132.790100,134.476059,138.203323,134.013245,145.980194,162.079361,179.393402,193.484329,206.839676,206.624802,189.806641,171.120667,150.343826,141.484314,137.616562,132.236389,101.162003,86.310760,103.608284,112.228119,80.128937,36.492580,17.168615,12.021506,12.110757,9.890099,9.971917,10.366958,5.681002,0.782647,0.187604,0.114050,0.195868,0.002479,0.000000,0.140496,0.000000,0.000000,2.305785,0.000000,0.000000,0.000000,0.000000 -602048.955000,4612395.550000,6534,4955,121.423981,181.490082,171.027283,162.580994,146.266953,133.581009,132.167786,129.928116,129.903320,135.109924,131.762817,143.605789,158.895050,176.209091,189.837204,203.638855,203.283463,189.126450,168.333069,149.184311,137.994217,135.696701,129.390930,100.845467,84.043816,101.638855,110.729767,79.192581,39.457047,16.175226,11.762830,12.226461,8.196710,10.022328,10.187617,5.900009,0.890085,0.314877,0.200001,0.332232,0.041322,0.108265,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602054.555000,4612395.550000,6562,4955,110.313232,160.709930,159.387619,151.833908,138.023987,126.404144,124.519844,121.751251,121.073563,123.685135,124.181000,135.949600,152.495056,169.164490,181.809113,194.189270,194.957870,185.007462,162.767792,142.304977,132.057037,127.966125,120.809105,93.718193,76.552910,94.205795,107.949600,81.065300,38.230598,14.702497,10.982664,7.672740,10.695883,7.690096,8.724807,4.406623,0.812400,0.564465,0.000000,0.129752,0.171075,0.092562,0.460331,0.307438,0.000000,0.000000,0.000000,0.000000,1.839670,0.000000 -602060.555000,4612395.550000,6592,4955,121.509102,156.715714,160.947113,150.740509,136.302490,125.558693,122.071091,120.467781,118.525635,120.566956,121.426460,133.368607,150.228119,166.517365,178.153732,190.765305,192.641342,182.087616,159.533890,139.897537,129.682663,124.583481,118.236374,91.128937,75.806625,92.352081,107.740509,80.211594,38.228119,14.721505,10.748779,6.455383,9.286790,7.538856,8.861996,3.561992,0.639672,0.224794,0.052893,0.085951,0.152893,0.000000,0.349588,0.352893,0.000000,0.000000,5.848761,0.000000,0.000000,0.000000 -602067.755000,4612395.550000,6628,4955,124.274399,152.109116,157.406631,148.447952,132.390106,122.464478,120.778534,117.662827,117.588448,119.307457,119.001671,131.357040,148.076065,164.472748,178.489288,190.381851,190.481018,180.373581,158.910767,137.646301,126.588448,123.340515,116.745476,89.249603,74.580185,92.861176,105.481010,79.200020,36.728943,12.990927,10.613242,7.438854,9.254559,10.142162,9.638859,4.501663,1.035540,0.437192,0.623141,0.212397,0.000000,0.000827,0.153719,0.296695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602076.955000,4612395.550000,6674,4955,130.285965,162.500839,155.996704,146.343811,131.872726,122.128937,117.533897,114.757034,114.434723,115.145470,116.881004,127.806618,145.418198,161.492569,173.137207,183.839676,185.781830,175.294235,153.963654,133.781830,124.484314,120.203316,114.509102,87.600021,70.376869,89.004982,104.360352,77.368614,35.071091,12.723158,10.409937,6.323153,7.719020,10.611584,10.640511,3.814884,1.155376,0.583473,0.167769,0.044628,0.047108,0.003306,0.452894,0.672728,2.095868,0.000000,0.000000,1.595868,3.560331,0.000000 -602087.155000,4612395.550000,6725,4955,193.226456,173.523972,150.201660,138.523987,121.656204,109.193398,105.482658,101.201668,100.358681,102.011574,102.821503,112.862823,129.309097,144.871078,155.937195,167.267776,169.044632,161.185120,145.681000,128.019852,119.474380,115.871086,113.309105,86.226456,67.424812,92.854553,120.895874,99.490913,47.821507,14.638860,10.300845,10.811585,9.592576,11.984312,15.900844,13.379352,1.338020,0.532233,0.039670,0.344629,0.142149,0.669422,0.023141,0.092562,4.257851,3.747108,1.559504,1.416529,1.603306,0.000000 -602223.355000,4612395.550000,7406,4955,103.411583,153.529770,160.860336,146.356216,131.562820,121.587616,117.471916,115.951256,114.769432,115.661995,116.686790,127.719849,146.281830,164.356216,177.339676,188.042160,189.868607,179.290100,155.744644,134.257034,123.554558,119.033897,113.645470,85.571098,67.091751,82.000839,97.868607,69.422325,32.306629,12.835554,10.331424,6.542160,8.359519,8.202494,7.641336,3.822321,0.891738,0.567770,0.470248,0.180992,0.400001,0.363637,0.024794,0.304960,0.000000,0.000000,1.229752,0.000000,0.000000,2.171901 -602227.955000,4612395.550000,7429,4955,104.682663,156.142975,159.060333,145.911575,130.994217,120.052078,117.324806,115.109932,114.308281,115.498360,116.771088,127.713226,146.969421,165.142975,176.680176,188.440506,190.010757,179.126450,157.002487,135.035538,123.787621,119.473572,115.300018,85.415726,66.928116,83.233910,98.002495,69.663658,33.465309,13.579358,10.481838,8.747121,7.897537,8.515718,9.114065,3.678519,0.506613,0.228100,0.338017,0.042975,0.251240,1.081819,0.452893,0.119010,0.000000,4.462811,0.000000,4.389257,4.039670,0.000000 -602234.555000,4612395.550000,7462,4955,111.001671,156.695877,160.034729,146.109100,130.282669,120.067787,118.266136,114.795059,114.439690,116.555389,116.976875,127.390099,147.340500,164.009949,177.150421,188.621490,191.489273,179.786789,156.844650,134.142166,123.803322,119.299194,114.472748,84.960350,67.505806,84.142166,100.704147,72.166962,34.059525,14.469441,10.406631,8.356212,9.968612,10.492578,10.682660,5.600008,1.100002,0.552894,0.290083,0.240497,0.000000,0.571075,0.917356,0.098348,0.000000,1.409091,1.305785,3.170248,1.166116,0.000000 -602240.955000,4612395.550000,7494,4955,120.020676,181.010757,159.382645,147.597534,132.266953,117.961174,119.291748,116.498352,117.068611,121.333069,119.795883,134.357864,154.457031,175.382645,188.886780,201.622314,200.638855,189.514877,171.275208,152.134720,141.903305,139.614059,138.209091,107.729767,85.308281,106.514893,136.118210,106.184311,51.795891,16.185141,12.564482,13.601668,11.659518,14.587620,18.902496,10.617368,0.901655,0.610745,0.500001,0.143802,0.097521,0.245455,0.000000,0.000000,2.573554,0.000000,0.000000,0.867769,0.000000,0.000000 -602245.955000,4612395.550000,7519,4955,123.564476,173.652084,160.156219,144.809113,128.949600,116.792580,116.900017,115.090103,115.990929,120.734734,119.643822,133.676880,153.585968,174.230591,187.767776,199.809097,199.800827,188.362808,171.048782,151.759521,141.007462,141.776047,139.990921,108.503326,85.974396,107.164482,138.412415,109.718201,50.709938,14.893406,12.726464,12.800840,11.406628,15.140514,20.085142,10.576049,1.490913,0.606613,0.175207,0.080165,0.059504,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.404132,0.000000 -602251.555000,4612395.550000,7547,4955,119.390091,170.162842,160.179367,145.600845,127.890099,116.823982,118.146301,115.204147,116.063652,120.733078,120.129768,133.625641,154.278534,175.914902,190.187622,202.650436,203.782669,194.650436,174.898376,156.014069,146.460358,145.204163,144.700027,112.542992,89.873573,109.542992,142.914902,113.385971,53.030598,17.066133,13.154565,14.300845,13.238033,17.152086,19.727291,11.185140,0.599176,0.709092,0.124794,0.000000,0.062810,0.000000,0.302480,0.000000,0.000000,0.000000,0.000000,0.000000,1.230579,4.247108 -602255.755000,4612395.550000,7568,4955,119.674393,168.788437,160.152069,144.226456,128.441330,115.895889,117.821510,115.135559,116.730598,120.168617,121.259521,135.689255,157.639679,178.796692,192.904129,205.970245,206.970245,197.242981,179.044632,159.804962,147.912415,147.697540,147.945480,115.201675,91.119026,112.276054,147.771927,118.061180,55.317375,17.812414,13.449606,13.795883,13.079357,18.864479,22.183489,12.444644,1.758682,0.512398,0.061984,0.119009,0.058678,0.093389,0.000000,0.000000,0.000000,1.293389,1.098347,1.978513,1.009917,2.224793 -602262.355000,4612395.550000,7601,4955,128.657867,165.087616,159.773560,143.905792,126.897537,114.699188,116.219849,115.062820,116.360344,120.971916,122.690926,137.319016,159.715714,181.409927,195.674377,209.046280,210.914047,201.872726,182.038025,162.525635,151.236389,150.864487,152.509125,118.847946,94.583481,117.128937,149.509125,120.269432,54.707455,16.527290,13.864482,12.299190,13.024811,16.833075,22.261175,13.044641,1.089259,0.138843,0.094215,0.189257,0.128926,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.985124,0.000000,0.000000 -602266.155000,4612395.550000,7620,4955,119.478523,159.821487,155.879349,141.292572,126.069435,115.160339,116.532242,116.185135,116.482658,120.457863,123.697540,138.656204,160.507446,180.482651,196.499176,208.590088,211.689255,203.209915,183.871078,165.540497,155.722321,155.590088,153.581818,121.962006,96.771919,119.342163,149.557022,117.656212,56.895885,17.122330,13.962002,12.466132,13.957043,17.348776,22.068613,14.682659,1.462813,0.443803,0.070248,0.095868,0.078513,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.357025,0.000000 -602271.355000,4612395.550000,7646,4955,111.583481,157.636368,152.719009,139.066116,122.305794,112.685959,113.619843,112.917366,115.479347,118.487610,121.975212,138.471069,160.942154,181.578506,197.396698,211.049591,213.768600,205.652893,187.743805,168.735535,159.719009,159.148758,157.636368,126.049591,100.619843,123.528931,156.727280,126.768600,61.487625,17.223156,14.330598,14.172744,12.745471,19.683489,24.007456,15.457867,1.110746,0.285951,0.190910,0.027273,0.018182,0.023141,0.140496,0.000000,0.000000,3.521488,0.658678,0.000000,2.051240,0.000000 -602277.955000,4612395.550000,7679,4955,111.182655,163.213226,157.461166,141.378525,124.766960,111.543816,114.593407,114.866127,116.312408,120.188446,122.279350,139.560333,161.742172,182.378525,196.502487,207.725632,211.271088,202.180176,183.163635,163.519028,152.808273,151.709091,151.345459,122.684311,96.023155,117.196709,146.221497,116.866127,54.436382,17.362827,13.758697,12.185966,11.607454,18.050430,22.990101,14.182659,1.518186,0.447109,0.070248,0.008265,0.000827,0.000000,0.337190,0.000000,1.324794,0.000000,0.000000,0.000000,0.000000,0.000000 -602281.555000,4612395.550000,7697,4955,112.401665,155.308273,152.184311,137.027283,123.523148,112.316544,114.291748,113.754562,115.283485,120.109932,123.399178,139.547943,163.738022,184.423981,200.390915,212.060333,216.068604,207.638855,188.878525,170.250427,162.713226,159.944641,157.754547,125.349594,99.688438,123.961174,151.804138,120.217369,59.506634,16.919025,14.341341,13.847123,14.186794,19.878531,24.423161,14.858693,1.772730,0.242976,0.131406,0.141323,0.000000,0.174381,0.464463,0.000000,2.528926,1.206612,0.943802,0.000000,1.925620,0.000000 -602288.955000,4612395.550000,7734,4955,90.344643,142.732239,142.459518,130.294235,116.079353,106.748772,109.633072,109.814888,112.550423,116.137199,121.128937,138.616547,162.376892,183.219849,200.608276,213.980179,219.046295,212.319016,196.633072,178.046295,169.781845,169.831436,166.509125,132.393402,105.715714,131.509109,162.360367,128.542160,63.566959,17.320681,15.137209,11.922329,13.984313,21.788448,26.682665,18.206629,1.238020,0.300001,0.056199,0.117356,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.764463,0.936364,3.543802 -602292.555000,4612395.550000,7752,4955,109.873573,152.041336,149.314072,135.991745,121.438034,112.735550,114.000015,112.818199,114.909103,119.438034,123.512413,138.950409,160.834732,180.619858,195.892578,209.041336,212.801651,207.793411,192.404968,175.314072,166.785141,165.669434,163.636383,131.685974,108.107452,130.231415,160.231415,129.090927,64.198364,18.181839,14.876051,12.785968,18.276051,23.519028,29.950432,19.855391,1.987608,0.352893,0.015703,0.044628,0.077686,0.010744,0.316529,0.000000,0.000000,2.250413,0.000000,0.811570,2.103306,1.961157 -602295.955000,4612395.550000,7769,4955,109.622322,147.723984,145.847946,132.682648,118.054550,109.203308,110.294220,109.955376,111.360336,114.715706,117.616531,132.442978,153.137207,171.476044,185.368607,197.178513,201.476028,195.418182,181.591736,166.038025,157.393402,156.781830,155.054565,124.748764,103.880997,125.434723,154.608276,126.905792,63.211590,18.041342,14.095885,13.001670,14.904976,23.195887,29.401674,18.558695,1.296697,0.180992,0.055373,0.000000,0.000000,0.000000,0.000000,0.228099,1.190909,0.000000,1.753719,0.728099,3.676033,1.951240 -602301.555000,4612395.550000,7797,4955,112.779343,153.556213,152.184311,137.597549,123.002487,113.093391,111.952896,109.399178,109.068604,111.870255,113.382652,125.142982,143.870270,161.068619,171.944656,181.382645,182.019012,174.762817,157.366135,138.870270,129.572739,127.828934,123.754555,96.134720,76.225632,95.035545,114.225624,86.928108,41.085144,13.296712,11.250431,10.845469,10.704974,12.560346,13.874395,7.344638,1.696697,0.265290,0.266943,0.136364,0.076034,0.109091,0.000000,0.000000,1.215703,0.000000,1.080992,1.687603,5.685125,0.000000 -602304.355000,4612395.550000,7811,4955,116.667778,151.015701,156.189255,140.023972,123.718185,112.982651,112.610748,109.354546,108.941322,110.585953,111.643806,123.924797,145.139679,161.271927,174.610748,184.990906,185.569427,176.974380,154.858688,134.966125,123.850418,121.205788,117.172729,86.759514,68.015724,84.974388,103.461998,73.023987,33.933079,12.673571,10.652085,9.448773,9.056214,10.212412,10.377701,5.642984,0.919011,0.738018,0.254546,0.313225,0.342976,0.414050,0.298347,0.000000,4.175207,1.300827,0.000000,0.906612,1.136364,0.000000 -602309.155000,4612395.550000,7835,4955,119.216537,153.979355,154.318192,139.177704,123.574394,114.161171,110.607452,108.466957,107.995880,110.772743,111.599190,123.252083,145.367783,161.896713,173.690079,184.376038,185.500000,177.252060,156.309937,135.830597,125.045471,121.847122,118.590927,88.615715,68.681831,87.260345,104.714890,78.524811,33.615723,13.366134,10.781011,9.914063,9.282660,10.083485,9.678526,4.819016,0.351241,0.855374,0.406613,0.009091,0.106612,0.285951,0.290909,0.000000,0.000000,1.278512,0.000000,0.000000,0.000000,0.000000 -602317.355000,4612395.550000,7876,4955,110.457855,152.185120,154.804962,139.135544,123.366943,112.292564,111.342155,108.680992,108.358681,110.672729,111.441322,123.887604,146.565292,163.333893,176.656204,186.127274,187.457855,177.928925,158.821487,139.391739,128.548767,124.953720,124.400002,93.201668,71.069443,91.209938,115.449593,84.672745,41.209938,14.475224,11.309110,10.583485,10.044642,11.830594,12.249601,6.229763,2.170253,0.766118,0.899176,0.211571,0.401654,0.608266,0.540496,0.000000,2.739670,1.219835,2.261157,1.000827,3.304959,2.051240 -602325.555000,4612395.550000,7917,4955,117.862823,149.114899,146.222336,131.313232,116.073563,106.081833,103.891747,101.461998,102.304970,105.048775,106.139679,118.643814,138.709930,157.594238,170.842163,179.205811,179.197540,170.602493,153.561172,134.048767,124.602493,123.321503,124.809105,95.685135,75.668610,96.156212,129.164474,105.809105,48.189274,13.009934,11.346300,9.339684,10.295882,12.925636,17.061174,9.719021,1.872732,0.232233,0.261158,0.144628,0.048760,0.059504,0.312397,0.728099,3.921488,3.679339,1.044628,0.939670,1.076860,0.000000 -602334.155000,4612395.550000,7960,4955,106.914062,146.345459,140.642975,125.742157,110.783478,99.651245,98.717361,96.874390,97.337196,100.700836,102.064468,114.659508,134.271088,151.634720,164.948761,173.444641,173.833069,167.651245,152.039673,134.403305,125.560333,125.089264,128.527283,99.535545,78.287621,101.163643,141.659515,120.279343,59.006630,14.869440,11.684316,10.313235,13.541341,19.945475,26.409939,19.132250,2.283475,0.130579,0.068595,0.153720,0.000000,0.074380,1.359505,0.609091,7.507439,6.234712,6.003307,7.628100,3.837190,1.887603 -602338.155000,4612395.550000,7980,4955,126.957863,139.231415,136.793411,120.545464,106.966957,95.512413,95.198364,93.388443,95.388443,98.487617,100.000015,112.652908,132.206619,149.371918,161.462830,171.000015,172.975235,166.942169,153.371918,136.801666,128.132233,128.396713,130.636368,105.041336,82.140518,105.776878,142.942169,122.247940,61.462826,15.538861,11.876053,11.873569,15.262829,22.068615,30.157045,21.827291,2.233888,0.243802,0.152893,0.251240,0.107438,0.000000,0.819009,0.478513,5.714877,8.654547,6.573555,4.121488,8.895041,7.206612 -602342.955000,4612395.550000,8004,4955,135.036377,149.249619,132.968597,119.034721,103.976868,95.076042,94.290916,92.348770,94.034721,98.968605,101.200012,114.456207,134.447937,150.952087,164.365311,175.538864,177.390106,174.481018,159.018204,145.646301,137.786804,136.489288,136.381821,110.142159,90.753731,113.051247,139.894241,115.365295,58.737209,13.981009,12.398367,11.962824,14.983489,22.445473,31.042995,26.162003,4.559512,0.438018,0.353720,0.176860,0.216530,0.562811,0.619836,0.982645,19.987606,10.600000,7.976034,9.504960,5.423967,9.123967 -601023.155000,4612385.550000,1405,5005,135.952072,137.253723,113.650429,101.898361,87.237206,74.964478,72.369438,66.857048,64.212425,64.171097,64.823990,76.683487,96.088448,115.047127,129.906631,145.485138,151.336380,149.749603,142.245468,126.923149,117.617371,116.947952,108.700020,65.328117,42.542999,70.443817,123.452087,113.138031,55.931431,13.277702,9.881838,16.262001,13.191751,17.657043,26.033075,17.831419,1.304135,0.200000,0.277686,0.108265,0.114050,0.000000,0.000000,0.204133,17.473557,14.818184,9.899176,5.433887,8.369423,12.443803 -601028.555000,4612385.550000,1432,5005,73.033066,74.292572,60.122334,47.149605,34.758698,25.211588,22.609932,18.017368,16.705797,15.314888,15.523152,23.421503,38.378529,51.466137,64.507454,76.753731,80.523979,78.179352,72.855385,61.376877,51.157867,50.271915,42.181839,14.323977,3.652071,20.204147,74.968605,79.100014,35.454567,6.019019,3.834728,9.943813,9.890095,14.624808,27.355392,18.481007,2.103310,0.413224,0.208265,0.324794,0.518182,0.226447,1.112398,0.551240,8.181821,7.159506,4.127275,2.119009,4.971903,15.014051 -601033.155000,4612385.550000,1455,5005,73.020676,88.468605,75.370262,60.783485,46.907452,34.051258,29.538033,25.190926,21.282658,19.661173,18.480179,27.061172,43.137207,57.320675,69.510765,79.709106,82.998367,79.866127,75.047951,62.725636,52.825634,49.469437,42.354561,11.570259,2.066120,18.740509,82.790916,93.419029,50.377701,8.033070,3.850432,9.573567,9.728940,21.279354,37.385967,26.785141,0.674382,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.551241,1.785951,3.861159,2.740498,0.947934,11.871902 -601035.955000,4612385.550000,1469,5005,66.338036,67.322327,54.230598,43.516544,28.552910,17.866131,13.782659,8.711581,6.743811,5.293396,3.590916,7.819845,17.938858,26.901670,36.049603,43.395882,44.302494,41.077705,36.502495,27.528114,18.210760,17.534725,12.772739,0.374381,0.008265,2.285129,52.638859,71.610764,39.655392,5.217366,1.161169,7.855383,9.624808,20.610762,36.833904,29.166132,1.480168,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.359507,0.652893,1.048761,0.208265,1.000827,7.971075 -601039.355000,4612385.550000,1486,5005,35.180172,34.768612,26.067785,18.928940,9.078523,3.927278,2.832236,1.642978,0.872729,0.537191,0.413224,0.995043,3.347112,7.182652,11.383482,16.937202,17.061171,14.714063,11.435549,6.549594,3.071905,2.760335,1.354548,0.075207,0.000000,0.149587,26.005800,52.935555,31.346298,3.516537,0.123143,6.651250,10.114064,23.879356,38.942989,28.645473,0.746283,0.096695,0.124794,0.026446,0.000000,0.000000,0.000000,0.016529,1.927275,0.911572,1.464464,0.380992,0.250414,9.942151 -601044.155000,4612385.550000,1510,5005,34.823154,37.872742,28.229769,18.870264,9.887614,4.069429,2.822320,0.980168,0.274381,0.131406,0.083472,0.417356,1.102482,1.782648,2.894220,5.313231,5.276042,4.218189,3.024800,1.056201,0.549588,0.423142,0.154546,0.000000,0.000000,0.066116,14.393403,42.359524,25.413244,2.649592,0.014050,7.935549,14.750430,29.993406,49.136383,39.805805,4.238023,0.338017,0.049587,0.000000,0.022314,0.000000,0.000000,0.000000,0.361984,3.183471,0.000000,0.000000,0.071075,5.207439 -601068.555000,4612385.550000,1632,5005,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.004959,0.060331,0.000000,5.431411,15.083487,28.330597,50.083488,51.858688,41.188450,35.410763,38.663654,34.752083,34.059517,23.711580,17.128105,8.799177,6.876035,3.232233,0.961157,1.696694,0.098347,8.714051 -601111.555000,4612385.550000,1847,5005,2.919010,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.489262,3.831412,0.486778,0.000000,2.843807,12.006625,26.738033,40.594227,37.837204,12.102491,2.944633,0.912398,0.763637,0.138843,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.258678,0.000000,0.000000 -601116.555000,4612385.550000,1872,5005,1.711571,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.675208,25.421503,16.932243,1.544632,0.000000,2.942153,10.850425,22.457869,42.644650,32.839687,4.042980,0.172728,0.190909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.445455 -601124.755000,4612385.550000,1913,5005,1.698348,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.999182,8.676044,0.306612,0.000000,0.747109,7.140507,20.328115,42.720680,32.773571,2.466120,0.582645,0.023967,0.000000,0.431405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.097521 -601251.755000,4612385.550000,2548,5005,64.331429,97.507469,103.325638,90.474396,78.804985,68.920677,64.970268,63.036385,61.201672,60.978535,61.143822,68.309113,80.532257,90.127289,98.424812,106.242996,107.259521,104.358696,97.986801,86.928947,79.391762,77.077713,75.127296,50.780186,33.771919,55.309113,96.565308,99.193405,55.895885,10.958694,6.829771,6.041334,13.601670,24.070267,36.578533,22.910759,1.683475,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.531405,1.287604,0.535537,0.370248,0.667769,0.000000 -601256.955000,4612385.550000,2574,5005,86.652916,117.265312,121.579361,112.819031,97.951263,91.331429,89.149605,85.893410,85.075226,85.447128,86.604156,95.017380,108.604156,119.942993,129.496719,137.042175,137.463669,134.017380,124.967789,113.091759,103.265312,101.885147,99.190933,74.075226,55.612415,75.166138,111.620682,105.199196,56.033905,13.006629,9.017374,5.957863,11.901669,18.385965,27.870266,17.671093,0.821489,0.059504,0.000000,0.000000,0.000000,0.000000,0.101653,0.000000,0.000000,0.667769,0.000000,0.000000,1.509918,0.000000 -601264.555000,4612385.550000,2612,5005,94.891747,140.035538,139.266953,131.787613,119.159523,110.812408,110.118195,108.870262,109.184311,111.771088,114.779350,127.663651,147.671906,163.349594,177.415710,188.911575,191.523148,185.250427,171.101654,154.019012,144.952896,142.936371,139.300003,107.746292,85.209114,107.192574,135.671906,111.779350,53.564484,17.011589,12.663656,8.445468,11.421504,14.476877,18.235554,8.868610,1.028928,0.026446,0.085124,0.020661,0.000000,0.000000,0.237190,0.000000,2.082645,0.000000,0.000000,0.638017,0.000000,0.000000 -601275.155000,4612385.550000,2665,5005,108.756218,147.157867,151.075226,139.976044,128.000839,120.190926,118.471916,115.794228,116.942986,119.463646,122.695053,135.009109,154.405792,170.901672,185.843811,198.868607,201.488449,195.314896,177.645462,160.438858,150.455383,147.149597,142.554565,111.967781,88.860344,109.199188,134.554565,107.595879,50.934731,18.200846,12.959523,10.794229,12.796711,14.285968,16.928944,8.061996,0.762813,0.680168,0.119009,0.008265,0.002479,0.000000,0.000000,0.000000,1.104959,1.014876,0.000000,0.000000,0.000000,0.000000 -601288.755000,4612385.550000,2733,5005,104.194221,150.363647,151.528946,142.983490,130.057861,120.991745,120.239677,118.950424,120.157036,124.280998,127.074387,139.776871,158.586792,175.413239,190.206635,202.785141,205.702499,200.033081,182.685974,164.776871,153.768616,151.413239,148.272751,116.619843,94.173561,112.322319,137.016541,108.768600,50.438038,18.329769,13.479358,8.130593,11.419850,12.646298,17.133078,7.836377,0.996698,0.288430,0.124794,0.028099,0.000000,0.000000,0.000000,0.000000,1.036364,1.053719,0.937190,0.000000,1.072727,0.000000 -601295.955000,4612385.550000,2769,5005,112.023972,148.773560,149.897537,141.500839,129.616531,120.137199,118.120667,116.715706,116.633072,120.492569,121.814880,134.566956,151.872742,168.872742,183.071091,194.261185,197.021515,190.955399,172.575226,155.773560,145.476044,143.657867,141.327286,111.128937,88.707451,107.624809,135.633072,109.798363,50.757046,14.750431,12.847953,6.340508,9.937205,10.976049,15.881836,6.147120,1.204962,0.091736,0.054546,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,1.072727,0.000000,0.000000,0.000000,0.000000 -601299.355000,4612385.550000,2786,5005,108.101669,152.606613,150.796692,144.317368,131.474396,120.945473,119.631424,119.383492,119.110764,123.251259,124.160347,135.970261,153.226456,169.788452,183.490906,195.375214,197.565292,191.804962,173.457855,156.937195,146.441345,144.590103,141.854568,114.085968,91.689278,110.201675,138.804977,113.416550,52.730595,16.562828,12.895886,7.677699,11.881835,13.631422,17.981007,10.244641,0.846284,0.123968,0.003306,0.175207,0.000000,0.000000,0.304132,0.000000,0.000000,0.000000,0.000000,0.000000,1.092562,0.000000 -601304.955000,4612385.550000,2814,5005,134.242996,179.119019,167.383469,155.705795,140.292572,127.515709,126.548767,127.152069,127.714050,134.160339,131.573563,144.052902,160.647934,178.623138,195.309113,207.152084,207.838043,195.912415,179.284302,162.590088,153.168594,151.788437,150.854553,120.251244,98.738853,120.639671,146.276031,115.590088,55.482662,17.638861,13.714068,15.587619,11.991752,16.632250,19.068613,14.430593,0.758681,0.200827,0.070248,0.000000,0.000000,0.000000,0.000000,0.012397,0.000000,2.566942,0.000000,0.000000,0.000000,0.000000 -601307.955000,4612385.550000,2829,5005,133.876053,185.710754,167.338852,159.305801,141.272751,128.842987,130.041336,128.603317,130.256210,137.090927,133.074402,145.966965,163.950424,181.785141,198.512405,210.983490,210.231415,198.024811,181.851257,164.214890,154.090927,153.479355,154.363647,122.165306,101.322327,122.404976,150.157043,118.884315,57.900841,18.714067,14.033077,16.022331,12.333075,17.609936,21.266134,12.504146,1.182649,0.085951,0.029753,0.000000,0.000000,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,1.060331,0.000000,0.000000 -601311.955000,4612385.550000,2849,5005,147.231415,188.619827,165.950409,156.297516,142.198364,128.710754,128.520676,127.140503,128.355377,135.413239,131.603317,145.033081,161.917358,181.140503,196.008270,209.958679,208.140503,197.528931,179.446274,162.264465,152.256210,152.553741,151.545471,120.578529,100.289276,120.157043,148.173569,118.231422,56.884319,17.909111,13.776878,16.485968,12.792579,16.070265,20.899193,11.379353,0.392564,0.155373,0.020661,0.213224,0.000000,0.000000,0.042976,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601318.355000,4612385.550000,2881,5005,134.104980,187.485138,166.865295,158.468597,142.352905,130.700012,131.286789,131.534729,132.187622,137.576050,135.675217,148.857040,166.576050,184.675217,200.675217,213.766129,213.923157,202.014053,185.691742,168.435547,157.600830,156.881821,155.972733,127.088448,104.005806,122.774399,149.154556,119.666962,57.071922,17.752085,14.179358,15.476878,13.637208,18.852083,21.124813,11.357864,0.642153,0.090083,0.264463,0.000000,0.000000,0.000000,0.000000,0.305786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601329.755000,4612385.550000,2938,5005,128.068604,178.531433,166.589279,157.266968,141.771103,131.423981,132.184311,131.977707,133.176041,136.118195,136.506622,150.242172,168.696716,186.572739,201.820663,213.539658,213.357849,204.845444,185.440521,166.614075,157.961182,156.828949,155.118210,123.985962,102.349602,120.043816,144.523163,114.423981,52.779358,18.177704,14.101671,12.723983,11.621505,16.464481,18.612413,9.008278,1.266946,0.150414,0.168596,0.018182,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601333.355000,4612385.550000,2956,5005,126.220680,179.625626,165.832245,158.220673,142.567795,132.666962,133.724823,132.055389,134.179352,138.691757,139.038864,152.204147,171.104965,188.584305,202.460342,215.625626,218.956207,207.022324,188.419022,169.518188,158.881821,159.443817,157.336380,125.609108,104.749603,120.741341,143.947937,113.972748,53.080189,17.673573,14.303325,14.429770,13.690101,16.516546,18.962004,9.606624,0.654548,0.004132,0.195869,0.009918,0.037190,0.000000,0.039670,0.000000,0.000000,0.000000,3.364463,0.000000,0.000000,0.000000 -601339.355000,4612385.550000,2986,5005,121.828941,175.564484,163.589279,156.035553,143.027298,133.432251,134.291748,133.432251,134.217377,139.300018,139.556213,154.572754,172.109940,190.928116,205.366135,218.192566,220.539673,209.845459,191.093414,172.423996,161.688446,160.779358,157.481842,127.481834,105.581009,122.167786,145.043823,111.564476,51.597538,17.996714,14.316548,11.673571,13.384315,16.817373,18.007456,8.355383,1.305789,0.166943,0.183473,0.041323,0.017356,0.000000,0.031405,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601347.155000,4612385.550000,3025,5005,121.966957,173.107437,167.611572,161.165283,144.239670,135.545471,135.256210,135.000015,136.785126,139.793396,141.842972,156.867767,174.520660,192.719009,207.181824,220.314056,223.041321,214.322311,192.942154,173.413223,164.363632,161.933884,158.272720,127.917374,104.727295,121.446304,143.322311,111.165306,53.140514,19.234728,14.388449,12.684315,12.352909,15.438861,19.269440,9.655383,1.595046,0.683473,0.220662,0.102480,0.038017,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,2.171901 -601357.155000,4612385.550000,3075,5005,117.057037,171.933060,166.263641,155.957855,144.933060,133.974396,135.346298,134.552902,135.825623,139.313232,141.941330,155.652069,175.156204,192.015701,207.181000,219.734711,221.908264,213.445465,192.395874,173.205795,161.842148,161.040497,156.809097,126.280174,103.900017,120.073563,139.271912,105.181007,48.040512,17.138859,14.255390,10.633073,10.673571,14.119024,16.036383,5.947117,1.800005,0.309092,0.080166,0.087603,0.000000,0.000000,0.011570,0.001653,1.238017,0.000000,0.000000,0.000000,0.000000,0.000000 -601360.755000,4612385.550000,3093,5005,117.080177,169.666946,169.204147,158.997528,144.526459,135.270264,136.104965,135.253723,135.683487,139.716537,143.650421,155.947937,176.063644,193.576050,208.261993,220.542984,224.369431,215.452072,194.567780,174.286789,163.443817,162.989273,158.154556,126.559517,105.278519,121.815712,140.452072,107.774391,49.369442,18.666962,14.377705,10.152906,10.659519,14.554564,16.436380,8.902490,0.316532,0.141324,0.158679,0.310745,0.066116,0.000000,0.008265,0.095868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601363.555000,4612385.550000,3107,5005,118.641327,165.476028,167.765289,156.195038,144.459503,134.575211,135.591751,135.352066,136.409927,140.401657,142.806610,156.790085,176.558670,194.823135,209.476028,222.723969,225.781815,218.252884,196.319000,175.938843,165.393387,162.798340,159.236359,127.120667,105.509094,121.484299,139.153717,104.897537,47.914066,17.714897,14.476051,8.894230,12.188447,13.062826,14.565307,6.646291,0.805788,0.335539,0.288431,0.019835,0.111571,0.000000,0.090909,0.012397,0.000000,0.000000,0.000000,0.000000,1.238843,0.000000 -601367.955000,4612385.550000,3129,5005,128.738037,166.969437,166.994232,159.589279,145.432236,136.043823,136.779358,135.961182,136.862000,140.192581,144.225632,157.597549,177.068634,195.052109,210.432266,223.713257,227.448792,218.258713,196.895081,175.076904,165.564484,163.060349,158.118210,125.919846,103.704964,119.696709,136.547958,100.713226,46.415726,16.819855,14.374400,10.952909,11.600843,13.369439,13.918199,7.019847,0.942979,0.258679,0.141323,0.120662,0.042149,0.000000,0.022314,0.052893,0.000000,0.000000,1.122314,0.000000,0.000000,0.000000 -601376.555000,4612385.550000,3172,5005,113.782654,166.782654,170.559509,158.848770,145.700012,136.666946,137.683487,136.220673,138.295044,142.204147,144.914886,158.559509,178.881821,196.724808,212.724808,225.352905,229.939682,221.402496,198.790924,178.592575,167.245468,164.195877,159.154556,127.435547,104.666954,122.633896,134.749603,99.633896,48.162830,18.223160,14.468614,10.462001,11.132248,13.509108,14.614067,5.662817,1.323145,0.214877,0.033885,0.000000,0.000000,0.000000,0.000000,0.018182,0.000000,0.000000,3.287604,0.000000,0.000000,0.000000 -601379.555000,4612385.550000,3187,5005,123.760345,170.099182,169.876053,161.000015,146.330582,138.619858,138.785141,137.818192,139.545471,142.123978,146.396713,160.198349,179.975220,198.033081,213.396713,227.586792,230.942169,222.281006,198.504150,177.636383,167.132248,164.123978,159.363632,128.528931,106.735550,122.041328,136.165298,100.785141,47.933903,18.862829,14.487622,12.430594,12.013239,13.309109,14.514894,9.890096,0.808268,0.221489,0.145455,0.000000,0.200000,0.000000,0.033058,0.074380,1.238017,0.000000,0.000000,0.000000,0.000000,0.000000 -601384.355000,4612385.550000,3211,5005,116.877693,166.953720,169.292572,159.507446,144.705795,137.788437,137.755371,137.490906,138.598343,143.647934,146.490906,160.069427,180.209915,197.738846,213.441330,225.871078,229.871078,220.623138,198.094223,177.606613,166.424789,164.705795,158.763641,128.300842,105.482666,121.011581,136.044647,100.333900,47.507462,19.327293,14.433076,11.951256,12.447124,13.285966,13.938859,7.838855,1.322317,0.581820,0.053720,0.000000,0.108265,0.000000,0.000000,0.089257,0.000000,1.282645,0.000000,0.000000,0.000000,0.000000 -601387.155000,4612385.550000,3225,5005,120.851257,165.553741,168.628113,159.975220,148.702499,138.239685,138.661179,138.421509,139.140518,144.314072,148.140518,161.074402,180.876053,199.520676,214.611588,228.487625,231.462830,222.809937,200.140518,178.611588,167.851257,165.330597,159.727295,128.859528,107.297539,121.735550,136.057846,100.256218,45.644650,18.685966,14.520679,11.000841,11.516546,13.617373,15.087619,8.333899,1.508270,0.104959,0.030579,0.000000,0.031405,0.000000,0.011570,0.033058,0.000000,0.000000,0.000000,0.950413,0.000000,0.000000 -601390.155000,4612385.550000,3240,5005,112.556213,168.647110,167.837204,158.159515,144.531418,136.771103,136.820663,136.200851,137.498352,141.721497,146.027283,159.415710,179.787613,195.878525,211.828934,226.068604,229.928101,221.060333,198.225632,178.407440,166.671906,164.845459,159.027283,126.564476,104.952904,120.523155,134.200836,99.035553,45.944645,15.575226,14.457045,10.833899,9.058693,10.912412,11.261174,5.806623,0.379342,0.629753,0.021488,0.358678,0.071075,0.000000,0.714050,0.042149,0.000000,2.292562,0.000000,0.000000,0.000000,0.000000 -601393.155000,4612385.550000,3255,5005,113.097534,166.659515,170.651245,159.833069,147.287613,137.948761,138.981827,138.709091,140.527283,143.775208,148.618195,161.502487,181.444641,200.163635,214.981812,228.444626,234.155365,224.411560,201.882645,180.519012,169.998352,167.535538,162.981827,131.014893,108.279350,124.188446,139.138855,101.238029,48.552090,19.204977,14.816548,10.479356,12.437207,13.419027,14.190102,7.541335,1.652071,0.471903,0.160331,0.171075,0.066942,0.185124,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601396.155000,4612385.550000,3270,5005,111.879349,167.226471,169.705811,158.813248,147.532257,140.350433,140.309113,140.085968,142.614899,145.846298,150.176880,163.854568,184.747131,201.804977,219.366959,233.044647,236.681015,228.647949,205.639694,184.838043,172.937210,172.044647,167.763657,133.623154,112.094223,127.325630,141.085968,104.854553,50.185143,19.733902,15.251260,12.004975,13.268611,15.442992,17.144646,7.611586,1.125624,0.266117,0.066117,0.236364,0.060331,0.000000,0.050414,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601399.355000,4612385.550000,3286,5005,119.437195,161.073578,169.032257,158.776047,147.181015,138.304977,139.073578,138.866959,141.057037,145.329773,148.916550,162.883484,182.379364,201.048782,216.759521,230.280167,234.528107,227.271927,203.189270,182.412415,171.395889,168.974396,164.354568,131.966125,109.189270,124.412407,139.362823,103.842163,49.453743,18.769442,14.941341,9.953734,12.100843,13.716546,15.122332,7.864477,0.999177,0.604134,0.033885,0.185951,0.000000,0.121488,0.024794,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601402.555000,4612385.550000,3302,5005,121.813232,162.152084,168.738861,158.730591,146.366959,138.928940,138.565308,138.474396,139.829773,143.565308,147.986801,162.003326,181.085968,199.061172,216.085968,229.044647,233.234726,224.838043,200.738861,180.408279,168.887619,166.292587,160.581833,128.995056,107.474388,122.937202,136.838043,99.606621,48.912411,19.077705,14.598367,10.913238,11.347951,13.110761,14.299191,6.379351,0.614878,0.352895,0.214050,0.028099,0.035537,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,1.091736,0.000000 -601406.355000,4612385.550000,3321,5005,117.436378,162.890915,169.642975,159.221497,148.337204,138.609924,138.824799,139.138855,140.783478,143.808273,148.502487,161.725632,182.279343,200.965302,216.915710,231.965302,235.155380,226.907440,201.312408,180.452896,169.047943,166.204971,160.436371,128.593399,107.295883,122.684311,133.295883,96.733902,46.824818,18.291754,14.585142,9.898363,10.644644,11.076049,14.409934,5.046291,0.561160,0.428927,0.159505,0.089256,0.000000,0.124794,0.000000,0.028100,1.317355,0.000000,0.000000,0.000000,0.000000,0.000000 -601410.755000,4612385.550000,3343,5005,117.990105,166.890915,168.171906,159.262817,145.312424,139.031433,139.122330,138.056213,140.064484,144.229782,147.990082,162.039673,182.461166,200.957031,216.882645,231.783478,236.353729,226.849594,203.138855,179.857864,168.626450,166.138855,160.890915,128.014877,105.717369,122.370262,131.477692,96.204971,45.725636,18.546301,14.626466,9.339684,11.587620,10.976875,12.399190,5.530590,0.858680,0.366944,0.129753,0.535538,0.000000,0.000000,0.000000,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,2.066116 -601413.555000,4612385.550000,3357,5005,128.024811,163.347122,169.008286,160.247955,147.570267,140.760345,139.628113,139.652908,141.380188,144.958694,149.842987,163.148773,183.322327,202.181824,218.975204,233.330582,237.363632,227.859497,203.024796,181.892578,169.561981,166.710754,161.181839,128.512405,105.471092,121.677704,132.578522,96.041336,46.619854,18.925638,14.652912,11.071091,11.758696,13.059522,15.562001,4.857861,0.733060,0.383473,0.054546,0.024794,0.000000,0.110744,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601416.955000,4612385.550000,3374,5005,115.266136,163.199997,166.910736,156.894211,144.613235,137.538849,138.266129,137.538849,139.588440,143.323975,147.943802,161.786774,181.654541,201.199997,217.282639,232.233047,235.274368,226.935532,202.224792,179.175201,168.051239,164.133881,159.381805,127.654556,104.745476,121.803314,129.638031,96.398361,45.274403,17.817373,14.489276,9.500014,10.475224,11.021503,11.926463,5.641332,0.868598,0.119836,0.038844,0.000000,0.028926,0.189256,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.155000,4612385.550000,3395,5005,117.152908,166.466949,169.458679,160.020660,146.929749,138.599167,139.210739,138.904953,141.037186,145.359497,148.665283,162.847107,182.706604,201.764465,217.739670,233.409088,237.450409,228.078506,202.731400,180.491730,168.475204,165.037186,160.227280,127.384315,106.938034,120.400841,131.219025,94.904976,45.599194,18.051258,14.566133,9.773569,11.447124,12.228116,12.090926,5.835550,1.319839,0.081819,0.052893,0.095041,0.000000,0.000000,0.051240,0.033885,0.000000,0.000000,0.000000,0.000000,1.165289,0.000000 -601425.155000,4612385.550000,3415,5005,114.676872,168.387619,169.371094,159.759521,147.610764,139.619034,140.181015,139.602493,142.412415,145.635559,149.949600,164.032257,183.081833,202.412415,219.503326,232.908279,237.395889,228.619034,203.346298,180.536377,169.693405,166.784317,161.627289,129.635544,106.346291,122.875221,134.114883,97.247116,46.156219,18.587622,14.693408,8.960346,11.152909,12.033074,13.528115,6.216540,1.766121,0.140497,0.130580,0.214877,0.000000,0.000000,0.002480,0.036364,1.169422,0.000000,0.000000,0.000000,0.000000,2.186777 -601428.355000,4612385.550000,3431,5005,112.024811,165.809937,170.528961,161.123993,149.041351,141.033096,140.438049,140.768631,141.917389,146.347137,150.396729,164.512436,184.140533,202.677719,219.297531,233.702515,237.793427,229.562012,203.826477,181.446320,169.388458,166.520691,161.636398,129.710754,107.512421,122.512413,133.479355,98.247948,46.859524,18.514069,14.694233,8.802494,10.393405,12.784313,13.293405,6.206624,1.471078,0.566118,0.088431,0.109091,0.054546,0.134711,0.000000,0.018182,0.000000,0.000000,1.070248,0.000000,0.000000,0.000000 -601433.155000,4612385.550000,3455,5005,128.273560,164.860336,168.281830,160.976044,148.529770,140.546295,140.810760,141.430588,142.620667,148.157867,151.678528,164.810760,184.447113,203.587616,219.471909,233.339676,238.959518,229.050430,203.777695,180.645462,169.504974,165.951248,160.372742,129.670273,106.513245,121.860352,130.819016,97.133080,46.133080,18.718199,14.579358,10.039685,11.807455,13.838033,13.683488,5.711580,0.690911,0.052893,0.116530,0.031405,0.000000,0.000000,0.000000,0.196695,0.000000,1.279339,0.000000,0.000000,0.000000,0.000000 -601437.755000,4612385.550000,3478,5005,126.356209,165.868607,168.281830,162.447113,149.860336,140.604141,141.579346,141.257034,143.703323,148.215714,152.595886,165.075226,186.397537,204.587616,221.190918,235.587616,241.190918,232.703323,205.802490,182.628937,171.810760,167.290100,164.281830,130.620667,107.430588,123.389267,133.356216,97.050423,45.909939,18.919027,14.934730,9.621500,11.714891,12.129768,12.942991,4.849595,1.349592,0.458679,0.119009,0.193389,0.000000,0.000000,0.000000,0.133058,0.000000,1.223967,0.000000,1.042149,0.000000,0.000000 -601444.155000,4612385.550000,3510,5005,116.355385,164.975204,171.264465,162.520676,150.066116,140.909088,141.545456,141.223145,143.099167,147.818176,152.000000,164.785141,185.322311,204.115723,220.595062,234.595062,240.512405,231.909103,206.636383,183.082642,172.024796,167.892578,162.545471,129.471085,107.727280,122.462814,133.636368,96.471085,48.562008,19.429771,14.776878,8.283484,11.739686,13.279355,12.528116,6.282659,0.504961,0.561985,0.147109,0.061157,0.000000,0.141322,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.755000,4612385.550000,3538,5005,118.887619,162.499191,168.292572,160.251236,149.276047,141.127289,141.160355,141.515717,142.044647,147.358704,150.904144,163.912399,183.829758,202.317352,218.829773,233.945480,237.590103,228.342163,203.763657,180.267776,170.317352,166.730576,161.400009,128.598373,107.722336,122.342171,132.780182,98.085968,46.466141,18.949604,14.672747,8.701667,11.106627,10.955388,13.645471,6.295879,0.683474,0.082646,0.157852,0.000000,0.000000,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.155000,4612385.550000,3560,5005,133.695877,168.059509,171.381821,161.695877,151.018188,143.307449,141.943817,142.844635,144.092575,149.233063,152.241333,165.770264,185.414886,204.555374,221.142151,234.323975,239.481003,230.522324,205.332245,183.257858,172.613235,169.464478,163.200012,131.613235,110.481003,124.786789,135.530594,101.373566,48.728943,19.670269,14.836383,9.975220,13.182658,12.986794,15.702497,5.264472,1.172730,0.371902,0.109918,0.028926,0.107438,0.000000,0.000000,0.000000,1.242975,0.000000,0.000000,0.995041,0.000000,0.000000 -601459.555000,4612385.550000,3587,5005,122.461998,167.842163,170.800842,160.338043,148.338043,141.602493,140.222336,140.470261,142.858704,147.734726,151.172745,164.007462,184.048782,203.412415,217.800842,231.726471,236.313248,229.032257,204.445480,181.933075,168.718201,166.379364,162.081833,129.214050,107.486786,122.197525,133.379349,99.131409,46.470268,16.766962,14.734730,7.644641,10.742990,12.153734,11.551254,4.936374,0.604135,0.265290,0.171901,0.000000,0.021488,0.000000,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.955000,4612385.550000,3604,5005,132.917358,170.140518,170.000015,163.107452,151.611588,141.669434,141.305801,142.950424,144.000015,150.239685,153.214890,165.553741,183.966965,202.917374,219.553741,233.685974,238.363647,229.338852,205.438034,181.900848,170.809937,167.859528,162.454559,129.578522,108.280998,122.983482,133.528931,98.677696,48.000019,19.256216,14.768614,7.331417,11.774395,12.381008,12.508281,7.177698,0.623971,0.116530,0.077687,0.025620,0.056199,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.955000,4612385.550000,3619,5005,134.814056,170.152893,170.119827,164.202499,152.061996,142.078506,142.004135,142.913223,144.590912,150.070267,153.450424,166.028931,184.995865,203.739685,220.301651,234.549591,240.119827,231.028931,206.202484,182.772720,172.376038,167.351242,162.409103,130.690094,109.681824,122.995872,132.541336,99.549606,45.962830,19.142168,14.764482,7.431419,11.856215,13.344645,15.506628,5.992571,1.082649,0.128926,0.256199,0.000000,0.000000,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.955000,4612385.550000,3639,5005,126.037201,173.623962,171.260345,164.466949,151.938034,142.706635,141.880188,141.557861,143.863647,150.359528,152.747955,165.995865,185.400833,204.351257,220.433884,236.210739,240.574387,231.789261,207.541321,182.954544,172.144623,166.384293,161.409103,130.508270,109.615715,121.516541,132.384308,97.524811,46.144650,18.421505,14.673573,8.223152,9.295056,11.850430,12.025637,4.432240,1.300004,0.074381,0.020661,0.030579,0.000000,0.247934,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.355000,4612385.550000,3656,5005,124.444649,181.014893,171.337219,164.882660,153.824814,144.287628,145.271103,144.684326,145.907455,152.576889,154.634735,168.089279,187.841339,206.287628,223.047958,236.766968,240.874405,233.395065,206.626465,183.651260,172.353745,168.196716,163.163666,131.204987,109.105804,122.642998,132.791763,97.155396,46.271091,18.338860,14.833077,7.044641,11.420677,11.705800,13.094232,4.984306,1.205789,0.180993,0.089257,0.196695,0.030579,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.555000,4612385.550000,3672,5005,119.660339,180.701660,175.519836,168.189240,155.404114,145.660339,145.610748,147.255371,148.007446,154.883453,156.685104,169.635529,188.660339,208.271927,223.660355,237.635544,242.908264,233.627274,207.709930,184.916519,173.362793,170.337997,163.809082,133.957855,111.098358,125.106613,133.734711,98.445465,48.528118,19.116550,14.891754,7.319848,12.325637,12.306628,14.391753,5.025629,1.334715,0.408267,0.386778,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,1.978513,0.000000,0.000000,0.000000,0.000000 -601479.155000,4612385.550000,3685,5005,124.786797,181.811584,172.125626,165.819839,153.034714,144.266129,144.274384,144.828110,147.406616,153.588440,154.968597,167.795044,187.241333,205.885956,223.505798,237.009933,240.803314,232.571915,205.646286,182.604965,171.671082,168.712402,161.472733,132.332245,109.266129,122.621498,131.183487,97.638031,44.580189,17.649605,14.679358,6.667783,12.031421,11.361174,10.647124,4.731413,0.733060,0.100000,0.066943,0.000000,0.091736,0.000000,0.000000,0.000000,1.414876,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.755000,4612385.550000,3703,5005,140.751266,184.164444,174.924789,169.321487,156.329773,146.395889,146.288452,147.635559,148.040512,153.957870,156.610764,169.528107,189.230560,209.263626,224.048752,239.668579,242.908249,234.610733,207.453705,184.156204,173.040497,168.346298,163.900024,131.362823,111.304977,124.561180,131.428940,96.081833,45.833904,18.296713,14.900020,9.786792,12.050430,12.022331,12.906628,6.657861,1.228104,0.264465,0.266116,0.224794,0.042975,0.000000,0.041322,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.555000,4612385.550000,3737,5005,132.548782,178.408264,175.011566,169.284317,154.995056,145.813248,145.441345,146.135559,146.457870,153.705811,154.466141,167.829773,185.961990,206.143799,222.176865,237.185120,241.928925,231.391739,205.747131,181.639679,169.821487,166.168610,162.309113,128.879349,107.515717,120.862823,127.937202,95.309113,43.342171,18.425638,14.755391,7.386790,11.186795,11.362001,11.976876,4.568604,0.470250,0.270249,0.104133,0.220662,0.045455,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.555000,4612385.550000,3752,5005,134.201660,183.490906,176.945465,170.705795,156.152069,146.358688,146.714050,147.242981,147.251236,153.953720,156.928925,167.738846,186.540497,206.829773,222.623154,236.581833,239.647949,230.152084,205.697540,183.193390,171.846283,167.028107,162.854553,130.730591,108.904144,122.672737,132.160339,96.366951,45.722336,19.625635,14.804978,6.147122,9.516544,10.959520,11.463654,6.532244,1.204962,0.080993,0.252893,0.000000,0.027273,0.000000,0.027273,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.155000,4612385.550000,3765,5005,129.172745,190.585968,179.404144,170.511597,157.866943,146.866943,147.205795,147.081818,148.776031,155.156204,156.610748,169.255386,187.751266,206.693405,223.304977,235.676865,239.114883,230.561157,206.833908,184.833908,173.321503,170.181015,165.172745,132.346298,112.569435,126.652077,135.833893,100.172737,46.594234,19.048780,15.015720,8.585967,11.598365,12.087619,13.810761,4.781001,1.075210,0.338018,0.297521,0.087604,0.000000,0.000000,0.093389,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.955000,4612385.550000,3779,5005,126.459518,176.203323,175.038040,165.591766,152.128952,143.757050,144.319031,142.864487,144.319031,148.352097,150.666138,164.459534,183.079361,200.757050,215.120667,229.310760,232.566971,222.500839,199.095901,177.252914,166.335571,163.360367,159.236389,127.137199,107.029770,120.302490,131.947113,93.732246,44.285969,17.547127,14.476053,10.543819,11.454561,13.290927,13.651257,4.038850,0.683474,0.381820,0.514051,0.000000,0.025620,0.000000,0.041323,0.089257,0.000000,0.000000,0.801653,0.000000,0.000000,0.000000 -601500.755000,4612385.550000,3793,5005,139.315720,176.092560,177.398361,165.323959,152.348770,143.381821,144.439682,143.092575,144.414886,147.910751,150.026459,163.745468,182.646286,200.894226,214.514038,227.704147,231.885956,220.910736,195.456207,173.514038,163.621490,161.786789,154.654556,125.390091,104.233070,116.869431,125.175217,91.472748,43.770267,18.323984,14.059523,10.628115,9.933073,13.228117,12.966131,7.322325,0.980996,0.422315,0.161158,0.142976,0.019835,0.000000,0.040496,0.000001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.555000,4612385.550000,3807,5005,137.759491,184.114883,175.924789,165.585953,152.470230,143.098328,145.238831,143.569412,144.461975,148.610733,151.321472,164.106598,183.660339,200.577682,215.635544,229.147934,232.809097,222.040497,195.701660,173.495041,162.255356,160.652054,153.354538,123.453728,103.280174,116.131416,123.924805,89.924805,42.238861,18.314894,13.941340,10.842990,11.130596,12.803323,12.874394,5.830587,1.068599,0.376034,0.158678,0.090909,0.027273,0.000000,0.008265,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601506.955000,4612385.550000,3824,5005,132.511597,183.247131,178.404144,166.974396,153.809113,145.156219,145.395889,144.437210,145.544647,150.214066,152.189270,165.759521,184.652084,200.982666,216.362823,230.412415,234.379364,223.131424,197.718201,174.685150,164.015717,161.156219,154.809113,124.437202,104.594223,115.759514,122.949600,89.420670,42.718201,19.951258,14.073573,11.432247,10.823985,12.894233,13.031422,6.095876,1.409095,0.158679,0.091736,0.053720,0.088430,0.119835,0.037190,0.001653,1.372727,1.337190,0.000000,0.000000,0.000000,0.000000 -601510.555000,4612385.550000,3842,5005,132.319839,186.551254,178.724823,171.038864,154.799194,145.509933,147.452072,146.278534,148.055374,151.526474,153.369446,166.295074,185.121521,204.609100,218.708267,231.823959,235.138016,224.394226,198.055374,175.956223,164.435562,161.559525,155.881851,124.774399,104.270264,116.947952,125.104973,90.154564,41.790928,17.038036,14.171092,11.979355,11.747950,12.519025,12.587620,7.719018,1.322319,0.314051,0.282646,0.102480,0.092562,0.000000,0.000000,0.035538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.755000,4612385.550000,3858,5005,125.585960,182.428925,179.106613,169.048782,154.445480,143.404144,146.114899,144.924820,147.015717,150.503326,152.635559,165.726471,184.643799,203.362808,217.478516,231.908264,234.900009,222.668594,197.544632,175.825623,164.189270,161.660355,154.990921,124.486794,104.643822,116.726463,123.784317,89.833900,43.073574,18.206633,14.090101,10.923155,11.150430,12.271918,11.314065,6.114059,1.300829,0.354547,0.132233,0.000000,0.021488,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.555000,4612385.550000,3872,5005,124.238029,181.857880,180.485977,170.485977,154.733887,146.221497,147.328934,147.171906,147.981827,152.634720,154.849594,167.477692,186.907455,205.056198,218.593414,232.800003,236.899185,224.419861,200.204987,177.122330,166.014877,163.378525,157.436371,125.461174,106.428116,118.196709,124.940514,91.006622,46.320679,18.078531,14.312415,13.749604,11.098365,11.939687,13.735554,4.567776,0.576861,0.155373,0.119836,0.000000,0.023967,0.000000,0.081819,0.001653,0.000000,0.000000,0.000000,1.128926,0.000000,0.000000 -601520.155000,4612385.550000,3890,5005,132.346298,186.288452,178.718201,168.850433,154.362823,144.552917,147.635559,146.478531,147.040512,151.627289,152.933075,166.073563,185.338043,204.478516,218.528107,232.833893,236.792572,223.800827,198.999176,176.536377,165.346283,164.139679,156.718185,125.693405,105.519852,117.569443,124.825638,91.172745,43.982662,16.904152,14.247126,11.890924,11.496712,10.752083,12.203322,5.632242,1.225623,0.265290,0.146282,0.000000,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,1.201653,0.000000 -601525.755000,4612385.550000,3918,5005,144.542160,189.219849,180.649582,171.178528,156.533890,144.996704,145.542160,146.509109,147.393402,153.277695,153.343811,166.467758,185.550430,203.856201,218.657852,232.401657,235.616531,223.476028,198.872726,177.575211,166.699188,163.277695,157.690918,125.509102,106.368607,118.864479,126.996704,92.633072,44.864483,19.074400,14.335556,10.885138,11.485967,12.872744,13.149603,5.419844,0.542977,0.125620,0.019835,0.014050,0.220662,0.000000,0.039670,0.020661,0.000000,0.000000,1.079339,0.000000,0.000000,0.000000 -601529.555000,4612385.550000,3937,5005,132.931427,191.683472,179.104950,171.154556,155.790924,144.815720,146.394226,145.080170,146.237198,151.708267,151.724808,164.088440,183.584290,201.956192,217.286774,231.476852,233.088425,221.947922,196.683472,175.898346,165.328110,162.245468,156.063644,125.509933,105.799194,119.972748,126.171089,90.799194,45.402500,18.391754,14.187623,13.309109,11.271918,13.055389,14.407456,6.795879,0.649589,0.129753,0.159505,0.008265,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.355000,4612385.550000,3951,5005,146.567795,193.708298,176.609116,171.055405,155.600845,144.427292,146.493408,146.419037,146.939697,154.047134,151.460358,165.642181,184.220688,201.997543,216.716553,231.823990,233.129776,220.799194,196.923172,176.361176,164.666962,162.410767,155.790939,124.939682,105.452087,117.799187,126.633896,92.509926,45.559521,17.242168,14.162829,12.776049,11.675223,12.757867,14.309110,6.990920,1.084301,0.064463,0.080992,0.095868,0.010744,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.555000,4612385.550000,3972,5005,142.033081,193.132248,177.859528,168.752075,155.157043,143.322327,144.578522,144.123978,145.396713,152.380188,149.471085,162.677704,180.694229,200.512405,215.057861,229.305801,231.272720,219.231415,195.123978,173.512405,162.537201,159.983490,154.090927,122.289276,103.652908,115.917374,124.090927,89.140511,43.644650,16.309109,14.008284,12.669437,10.357867,11.734728,12.910761,6.562821,0.941325,0.119836,0.264464,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.155000,4612385.550000,3995,5005,157.234726,199.697525,179.945465,172.127274,157.614883,144.490906,145.788437,145.631409,146.722321,154.408264,150.871078,164.681000,181.482651,200.408264,216.565292,230.862808,232.267776,218.234711,194.590088,174.623138,161.499176,159.400009,154.763641,122.722328,104.325630,117.804970,126.838028,90.094231,45.738857,18.844648,14.069440,14.942990,12.158694,12.133901,13.119024,6.835546,0.776035,0.141323,0.231406,0.021488,0.023141,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.955000,4612385.550000,4009,5005,156.496689,200.718185,179.751236,172.023987,155.304977,143.486801,145.007462,143.817368,145.652084,153.866959,149.652069,162.445480,179.511566,199.106613,214.792572,229.222321,229.701660,216.139679,193.949585,171.420685,161.883484,158.742996,153.172745,120.726463,101.842171,116.362831,123.503326,88.181007,42.404152,18.104149,13.924810,15.320678,11.528114,12.657868,14.086793,6.711580,1.252069,0.118183,0.160331,0.166116,0.011570,0.316529,0.050414,0.000000,0.000000,0.000000,0.812397,0.000000,0.000000,0.000000 -601548.155000,4612385.550000,4030,5005,139.061172,204.358704,180.383484,173.226471,155.424789,144.375214,145.391739,144.218185,145.705795,154.267776,149.441330,162.168610,180.102493,198.681015,214.383484,229.185150,229.945480,215.540512,192.391754,170.251266,159.829773,157.499191,151.672729,119.895889,101.408287,116.193405,122.846298,87.995064,43.490929,17.212414,13.788448,14.337207,10.692578,11.125635,11.332247,5.727283,1.114052,0.304959,0.013224,0.029752,0.019008,0.000000,0.000000,0.123141,0.000000,1.347934,0.000000,0.000000,0.000000,0.000000 -601553.755000,4612385.550000,4058,5005,134.048767,181.619034,175.354568,166.668610,152.792587,142.040512,142.420685,142.842163,144.214066,147.643814,148.883484,162.346298,180.726471,196.776047,211.858704,224.916550,229.023987,217.941345,193.214066,171.495056,159.338043,157.131424,150.718201,119.916542,101.486786,113.833893,123.544640,90.371086,44.594234,18.258696,13.701673,13.566957,11.534728,12.294231,13.852083,6.897532,1.017358,0.060331,0.378514,0.082645,0.077686,0.000000,0.042976,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.755000,4612385.550000,4073,5005,120.128937,174.294235,174.368607,162.335556,148.236374,142.517365,140.566956,138.996704,141.013229,142.831421,147.773560,159.261169,177.938858,193.352081,210.145462,222.575226,226.657852,216.277695,191.509109,169.004974,159.219849,154.500839,149.600006,118.765305,99.980179,112.988441,121.980179,90.004974,42.550434,18.409937,13.600019,9.971916,11.598365,12.892578,13.975224,5.140505,0.935539,0.022315,0.314051,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.555000,4612385.550000,4097,5005,115.732246,166.732239,171.137207,160.426453,149.195053,140.633072,139.971909,139.616547,141.418198,142.996704,146.368607,158.244644,177.591751,193.814896,208.575226,222.261169,225.930588,215.600006,190.327286,168.195053,158.905792,154.418198,149.781830,118.748772,98.409927,113.583481,121.600014,87.980179,43.839691,18.090929,13.616547,9.161998,9.802495,12.852909,11.204974,5.089265,0.490910,0.059504,0.106612,0.000000,0.055373,0.000000,0.008265,0.086777,1.190083,0.000000,0.000000,0.000000,0.000000,0.000000 -601567.755000,4612385.550000,4128,5005,123.166138,167.876877,172.182663,164.058685,150.562820,143.546295,142.149597,141.017365,142.232239,145.240509,148.298355,159.579346,178.934723,194.695053,210.141342,223.480179,225.752899,217.240509,192.471909,168.695053,158.728119,156.058685,149.372742,120.794235,98.662003,115.215721,121.595886,89.546303,43.207458,19.917374,13.579359,10.442991,11.571093,11.512414,13.097536,7.839679,1.109920,0.390084,0.147934,0.042149,0.006612,0.000000,0.000000,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.155000,4612385.550000,4170,5005,124.561165,166.354568,173.304962,163.271912,152.090103,141.693390,141.404129,140.247116,141.362808,145.486801,147.288452,158.966125,177.602493,193.949600,208.470261,221.453735,224.057037,214.304977,189.800842,166.891754,156.304977,153.842163,146.445480,117.552902,99.238853,111.800835,122.065292,88.842163,42.809109,18.548779,13.313242,10.193404,11.568614,13.638861,13.004148,5.694224,1.352069,0.285125,0.533886,0.224794,0.000000,0.000000,0.019009,0.127273,1.013223,0.000000,0.000000,2.181818,0.000000,0.000000 -601581.755000,4612385.550000,4198,5005,122.092575,161.191757,172.828125,163.811600,150.257874,143.340500,142.373581,140.968628,141.323990,145.249603,147.166946,159.067795,176.836395,194.084305,209.406616,221.357040,224.910751,214.431412,189.390091,166.307465,156.142181,152.894241,148.018188,118.208282,99.323982,112.340515,119.993401,88.166962,43.580185,19.582663,13.456216,9.604145,11.475222,11.004975,11.500841,6.262819,0.348762,0.148762,0.398348,0.000000,0.014876,0.000000,0.021488,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.955000,4612385.550000,4219,5005,119.723167,166.318176,172.227280,161.946274,150.392563,141.731400,140.673553,140.896698,141.161163,143.111572,146.690079,158.706604,176.830582,194.243805,209.128098,221.780991,225.442154,214.830582,190.053726,167.243805,156.516525,151.780991,147.409088,117.640511,97.632240,111.128120,121.276878,87.136375,41.549610,18.701670,13.400846,7.836376,10.953736,10.467786,11.838858,5.733068,0.877687,0.274381,0.304133,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,2.540496,0.000000,0.000000,0.000000,0.000000 -601590.755000,4612385.550000,4243,5005,112.821510,170.036377,171.548782,163.606613,149.333893,142.408264,141.441330,139.978516,141.970245,145.011597,146.978531,158.788437,176.052902,192.119019,205.995041,219.457855,222.325623,212.350418,187.011566,165.251236,154.714050,148.681015,144.945465,115.424812,96.201668,109.441345,117.912415,87.623154,42.416553,16.265306,13.176879,7.603317,8.223158,10.076050,9.623981,6.269431,1.204962,0.281819,0.447109,0.013223,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.155000,4612385.550000,4280,5005,119.953728,162.788437,173.234711,165.317352,150.036362,143.441330,141.350418,141.110748,141.135544,145.482651,147.342148,158.325623,175.986786,193.813232,207.639679,218.218185,222.400009,210.796692,186.309097,164.391739,153.647934,148.482651,145.127274,115.061165,95.036377,109.251251,117.928940,87.904144,42.474400,16.647123,13.193408,7.067781,10.379355,11.776050,11.813238,5.856208,1.199176,0.409919,0.176034,0.271902,0.013223,0.000000,0.020661,0.334711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601601.155000,4612385.550000,4295,5005,119.358696,171.218185,174.201660,163.854553,150.623154,142.730591,141.176880,141.499191,141.598373,144.069443,146.011597,159.466125,176.069427,192.738846,207.077682,218.664459,220.887604,211.424789,185.986786,165.317352,153.763657,149.160355,144.127289,114.028122,95.763657,108.705803,116.656219,84.499191,40.581837,17.299191,13.102499,6.129763,8.937208,11.324811,9.487617,2.184304,0.892563,0.119009,0.368596,0.000000,0.010744,0.000000,0.064463,0.076860,1.366942,0.000000,0.000000,0.000000,1.317355,0.000000 -601607.355000,4612385.550000,4326,5005,119.239685,170.528931,174.140503,165.016525,152.611588,145.041336,143.983490,142.652908,144.000015,147.264481,148.925629,159.256195,177.008270,195.371918,208.628113,219.743820,223.123978,212.495880,187.454559,165.743805,154.702499,149.900848,145.454559,115.512413,97.446297,110.297539,117.743820,86.900833,43.214897,19.207457,13.223160,9.008278,12.782661,13.672746,13.681834,5.134719,1.090085,0.142976,0.086777,0.017356,0.027273,0.000000,0.001653,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.955000,4612385.550000,4344,5005,122.648773,166.640503,175.359497,165.590927,152.086777,143.152893,141.863632,141.698349,141.590912,145.012390,147.665283,158.483475,176.491730,192.342972,207.136383,218.442169,221.152908,210.409103,184.888428,162.665298,152.888428,147.136368,141.772720,113.938034,95.185966,107.119850,116.566132,86.169441,42.971100,16.200846,12.888448,6.871085,9.716545,11.820676,10.299188,4.549595,1.077688,0.317356,0.134711,0.027273,0.024794,0.000000,0.095042,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.155000,4612385.550000,4370,5005,120.298363,171.645462,174.620667,165.719849,151.951248,143.628937,141.009109,140.422333,141.595886,144.719849,146.488449,158.207458,174.992569,192.463654,205.678528,216.513229,219.372742,210.017365,184.364471,162.967789,150.777695,147.662003,141.736374,113.257034,93.488449,108.480179,115.695053,85.488449,42.794231,17.500845,12.885143,8.676873,10.214894,11.956216,11.206627,6.227283,1.056201,0.262811,0.072728,0.014050,0.297521,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.155000,4612385.550000,4400,5005,120.691750,171.691742,170.394226,162.807449,149.410751,140.666946,138.642151,137.898361,137.708267,141.402496,143.179352,154.104965,170.873566,186.799179,201.385956,213.559509,214.865295,205.328110,179.261993,156.675217,145.931412,142.088440,136.518188,108.311584,88.410759,102.468613,111.749603,83.476875,39.923157,15.466959,12.410763,6.765301,8.049602,8.681006,9.252080,4.409923,0.847109,0.192562,0.194215,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.955000,4612385.550000,4414,5005,113.705803,169.668594,168.387604,161.676865,150.437195,141.437195,139.643814,138.197540,137.999176,141.073578,141.528107,153.404129,169.883469,186.784302,201.023972,213.412399,213.982651,205.164459,180.742981,158.073563,147.131409,143.999176,136.900024,108.462006,89.908287,104.065308,112.685143,84.486794,40.277706,17.037209,12.445473,5.700836,8.953736,9.517370,10.262824,4.362818,0.607440,0.209092,0.197522,0.000000,0.014877,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601633.355000,4612385.550000,4456,5005,134.258698,168.704987,172.333084,165.399200,151.481842,140.886795,138.465317,137.994232,137.366135,142.390930,143.390930,154.713242,171.068619,188.093414,201.027298,211.771103,214.068619,203.539688,178.333084,156.465317,145.523163,140.134735,135.936371,107.126472,88.448784,101.638863,111.283493,82.052086,39.671921,15.372746,12.357869,7.367778,8.290099,9.340511,7.921501,4.932240,0.340497,0.269422,0.057025,0.010744,0.000000,0.000000,0.019835,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.555000,4612385.550000,4487,5005,127.203316,182.062820,174.203323,167.748779,152.707458,141.690903,139.451233,139.748764,138.889252,143.004959,143.442978,153.715714,171.930588,188.624802,201.938858,212.781815,214.302475,203.459518,179.748779,157.004974,145.880981,141.533875,136.054565,108.839676,89.533897,103.079346,112.847939,83.434723,39.682663,17.006632,12.368613,8.204144,9.549603,10.490098,10.638030,3.680172,1.771904,0.490910,0.171901,0.208265,0.305786,0.279339,0.533059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.555000,4612385.550000,4502,5005,122.076874,178.614059,174.457031,168.845459,154.159515,142.895050,141.258682,140.614059,140.151245,144.828934,145.366119,156.101654,172.647110,190.200836,203.961166,215.101654,216.151245,206.465302,182.671906,157.985962,147.176041,142.539673,137.663635,108.043816,90.093407,104.225632,114.357864,84.333069,41.027294,17.805803,12.514895,7.893399,9.758696,10.941339,9.827287,3.885959,0.398348,0.449588,0.148761,0.004959,0.000000,0.000000,0.023141,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.755000,4612385.550000,4523,5005,122.168610,178.813248,176.317368,169.309113,153.796707,141.036377,142.267792,139.953735,139.581833,144.540512,145.209930,155.176880,172.135559,189.656219,203.209930,214.366959,215.532257,205.995056,179.804977,156.681015,146.077698,142.747131,136.036377,107.218201,90.333900,102.441345,112.681007,83.383492,40.424812,16.528944,12.366961,6.655382,8.318198,9.016544,9.075219,5.015712,1.168598,0.261984,0.430579,0.085951,0.024794,0.000000,0.018182,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.355000,4612385.550000,4541,5005,120.762001,180.952087,174.117386,166.009949,152.067795,140.811600,139.720688,139.257874,138.671097,143.762009,142.514069,154.175232,171.398376,187.745483,201.117386,213.489288,215.067795,203.084320,178.323990,155.547134,145.216553,140.249619,134.836380,105.960350,87.332253,99.968613,111.100845,82.158699,39.323986,15.380182,12.257870,6.691745,8.579353,8.245470,7.564476,3.832238,0.276861,0.156199,0.142149,0.064463,0.008265,0.000000,0.078513,0.000000,1.272727,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.555000,4612385.550000,4557,5005,143.828934,183.159515,176.382645,167.266953,152.308273,140.622314,141.638855,140.333069,139.886780,143.812408,143.663635,154.142975,171.746292,188.217361,203.514877,213.911575,215.349594,204.068604,180.101654,157.399185,144.886780,141.738022,137.118195,106.043816,87.878525,101.804146,112.671913,83.184311,40.423988,15.785142,12.465308,6.952078,7.862826,7.868610,10.370262,4.405791,0.749588,0.387605,0.099174,0.000000,0.000000,0.000000,0.000000,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.755000,4612385.550000,4573,5005,124.874397,177.510757,173.973557,162.328934,149.378525,137.609924,135.667770,133.841324,132.899185,135.304138,136.428101,147.080994,163.948761,179.998352,192.642975,203.593399,203.948761,192.378525,169.097534,148.552078,137.295868,133.957031,127.527283,101.444641,84.089272,97.502495,107.295876,76.957039,36.411594,15.625639,11.593408,9.219023,8.948775,10.328114,9.670263,3.923975,0.969424,0.278514,0.695869,0.000000,0.068595,0.000000,0.000000,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.155000,4612385.550000,4590,5005,127.203323,173.327271,170.500824,158.219833,143.996689,133.872742,134.509109,131.004974,130.674408,131.773575,132.740524,143.071075,161.071075,175.434708,187.558670,198.451233,198.583466,186.823135,163.657852,143.302475,133.046295,129.955399,124.690933,97.104156,80.624817,92.550438,103.980186,74.583488,36.128948,13.708282,11.335556,9.017367,7.686790,8.914063,8.182659,3.587612,0.599175,0.152067,0.059504,0.129753,0.000000,0.000000,0.077686,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.355000,4612385.550000,4606,5005,115.990105,174.923981,174.006622,161.171906,147.957047,137.510757,135.742172,133.436386,133.485977,134.188446,135.692581,146.601669,163.353729,177.593399,189.973557,200.171906,201.155380,189.849594,166.262833,146.213242,136.279343,131.725647,127.254570,99.188454,83.444649,94.560356,104.700851,77.130600,36.758698,15.847952,11.568615,9.616543,9.974395,9.865302,9.506627,4.808274,0.793391,0.316530,0.177687,0.050413,0.053719,0.008265,0.045455,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.555000,4612385.550000,4637,5005,116.557869,181.607468,173.913239,162.392593,148.772766,135.913239,135.169434,132.863647,133.632248,134.326462,135.309937,145.830597,162.632263,178.376068,189.847137,201.202515,200.466980,188.822342,164.863663,145.028946,133.929764,132.384308,126.409096,98.483482,82.921494,95.491745,104.648766,77.202484,35.524815,16.016546,11.491754,8.850428,10.231419,9.480182,9.891752,4.519843,0.441324,0.277687,0.366943,0.000000,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.896694,0.000000,0.000000 -601672.155000,4612385.550000,4650,5005,117.974388,181.652084,172.817368,161.495056,147.792587,136.569443,136.858704,134.362823,132.445465,133.809097,134.495056,146.197540,162.825638,177.875229,190.106628,200.974396,201.280182,188.825638,165.395889,144.511597,134.767776,131.098358,126.172737,99.172737,81.511581,92.486786,103.660339,76.271912,35.420681,16.020679,11.470266,10.581006,8.977700,10.085966,10.666958,3.597528,1.135540,0.301654,0.170248,0.194215,0.058678,0.000000,0.031405,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.155000,4612385.550000,4685,5005,122.847946,172.566956,173.046295,161.847946,146.707458,135.484314,135.616547,132.492569,132.459503,135.914062,134.839676,146.219849,162.608276,178.600006,190.137207,201.153732,201.029770,188.633072,164.393402,145.236374,134.186783,131.682648,126.600014,98.575218,81.434723,94.707451,103.161995,74.938858,33.881012,14.654563,11.509110,10.128115,7.981833,9.397534,7.695883,2.763643,0.699176,0.281819,0.063637,0.000000,0.074380,0.000000,0.068595,0.280166,0.000000,0.000000,0.000000,1.111570,0.000000,0.000000 -601682.155000,4612385.550000,4700,5005,122.452904,183.370255,173.295868,163.097534,147.775208,136.138870,135.742172,133.874390,132.915710,136.568619,134.742157,146.436371,163.328934,178.436371,190.841324,202.221497,201.824799,188.733887,165.609924,145.965302,134.403320,132.527283,127.163651,99.006622,82.990097,94.634727,104.188446,75.204971,36.304146,14.687621,11.560349,10.895885,8.199188,8.406624,9.743816,3.577693,0.595870,0.383472,0.005785,0.000000,0.000000,0.007438,0.071901,0.197521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.755000,4612385.550000,4718,5005,129.928940,184.606613,177.540497,164.664459,149.540512,138.094238,138.325638,135.176880,135.069443,138.168610,136.003326,147.788452,164.466125,180.119019,192.201660,203.201660,202.474380,189.738846,166.317352,147.185150,135.598373,133.639694,128.854568,99.747124,83.333900,95.846298,105.052910,77.143822,37.061172,15.962827,11.714068,10.311587,9.663651,11.299190,9.804148,4.100008,1.359507,0.562811,0.357026,0.245455,0.000827,0.000000,0.000000,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.755000,4612385.550000,4733,5005,129.800842,184.908264,173.982666,163.734711,147.098373,135.329773,135.362823,133.304977,133.106628,136.437210,134.420685,145.916550,162.610748,178.271912,190.131409,201.585953,199.742981,187.098343,163.825623,144.619034,133.247131,129.635559,125.263657,97.288452,80.924812,94.106628,103.511589,75.842171,35.751263,13.486794,11.387622,9.828941,8.788443,8.737205,8.400842,2.982651,0.395043,0.323142,0.051240,0.011571,0.077686,0.000000,0.072728,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.155000,4612385.550000,4755,5005,140.453720,187.090088,173.585953,164.833893,147.205795,133.825638,135.379349,133.048767,132.057037,136.404144,133.759521,145.247131,161.809097,177.230576,188.916534,199.949585,199.189255,186.057022,162.594223,142.941345,132.197525,130.776047,125.263657,95.652084,79.271919,91.883492,103.164482,74.437210,34.114895,13.430596,11.387623,10.298363,7.801667,8.322328,8.099187,4.077694,0.652068,0.224794,0.051240,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.555000,4612385.550000,4772,5005,128.132248,188.000015,176.628098,162.876053,148.190109,135.876053,135.859528,133.347122,133.338852,136.950439,135.181839,144.685989,162.024811,178.314056,191.247955,201.000015,199.892578,186.363647,163.404968,143.314087,133.247955,130.735550,124.454552,96.727287,81.421501,93.190102,103.173569,73.760345,34.991753,14.405803,11.314070,9.802495,8.647947,8.227286,8.249602,2.850420,0.578514,0.220662,0.170249,0.066943,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.555000,4612385.550000,4797,5005,123.355392,194.553726,175.438019,168.140503,149.115707,138.694214,136.801651,135.264465,134.404968,139.570251,134.950424,145.438019,162.272720,179.801651,191.851242,201.884293,200.966949,186.595047,163.925613,145.173553,133.793396,130.404968,125.818192,97.355385,81.900841,95.206627,103.471085,74.190102,36.033081,15.686796,11.438036,11.266132,8.371088,7.857864,9.026462,3.778521,0.544630,0.230579,0.057852,0.070249,0.000000,0.000000,0.001653,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601709.555000,4612385.550000,4837,5005,151.527283,191.510757,177.593399,168.221497,150.105789,137.725632,136.709091,134.808273,133.709106,140.262817,134.626465,145.824799,161.229752,178.585129,191.180176,202.824799,200.890915,184.568604,163.808273,144.229752,133.138855,130.411591,124.254562,96.238029,80.609932,95.378525,102.353737,71.560349,34.684319,12.509108,11.295887,12.320680,8.342988,7.192575,7.433072,4.119017,0.510746,0.280993,0.111571,0.000000,0.000000,0.012397,0.000000,0.000000,1.448761,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.955000,4612385.550000,4899,5005,107.951256,172.480179,170.604141,160.347946,146.538025,136.100006,135.447113,133.761169,132.852081,134.785965,135.852081,146.141342,164.000839,179.397537,193.025635,202.538025,202.901672,190.397537,166.744644,145.852081,134.992569,131.033890,126.009102,97.661995,79.885139,95.356209,104.901665,75.893402,35.992584,14.719027,11.455391,8.920674,8.498362,8.778526,9.149602,3.854552,0.483472,0.119835,0.057851,0.000000,0.053719,0.000000,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.555000,4612385.550000,4997,5005,102.764473,168.111588,169.566132,159.549606,146.954559,138.185974,134.400833,132.946289,133.971085,134.946289,136.772751,146.938034,165.475220,181.557861,194.995880,203.814072,204.417374,193.028946,168.847122,146.318192,135.574402,132.615707,126.500008,98.309929,82.260338,96.260338,105.739677,78.235550,36.549606,15.463655,11.500019,7.385136,8.234727,9.098361,9.263651,3.827282,0.592563,0.133058,0.064463,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.155000,4612385.550000,5140,5005,109.451256,166.715698,169.335541,159.839661,146.327271,137.443008,136.071091,133.682663,133.368607,135.666122,136.401672,148.178513,165.409912,181.095871,194.996689,204.533890,205.442978,195.467758,170.566940,148.856201,137.682678,133.261169,128.781830,99.947121,81.955383,95.790100,108.376869,79.120682,37.170265,14.942166,11.707456,5.889266,8.645471,8.528115,8.666128,3.836372,0.742977,0.097521,0.000000,0.000000,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.955000,4612385.550000,5289,5005,117.882652,172.072739,169.692566,163.907440,148.461166,137.800003,135.866119,133.444641,133.957031,136.783478,137.138855,149.155380,166.576859,182.998367,196.948776,206.502502,207.370255,197.444656,172.932236,151.411575,140.411575,135.990082,129.981827,101.353729,81.502487,97.345459,111.023148,82.775215,39.907459,16.258698,11.816547,5.336373,8.929768,8.071091,7.950426,3.268602,0.804961,0.162810,0.261158,0.151240,0.067769,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.555000,4612385.550000,5367,5005,125.281006,175.082642,170.438034,164.900848,149.966965,139.115723,137.363647,135.801666,134.603317,137.859528,138.975220,149.652908,167.669434,185.735535,199.008270,208.983475,210.553726,201.132233,176.719009,154.537201,142.619858,138.578522,132.818192,101.429764,83.801659,100.008270,113.107445,84.876053,37.942169,15.819026,12.074399,6.211580,7.379354,8.047124,9.061172,5.275217,0.714051,0.166943,0.066116,0.157852,0.023141,0.000000,0.133058,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.355000,4612385.550000,5401,5005,126.743820,178.033081,177.644638,165.239685,148.363647,136.760345,137.363647,134.909103,134.975220,138.157043,138.198364,150.752075,169.793411,186.768616,199.619858,213.173569,213.735550,202.016541,178.338852,155.545471,144.743820,141.041336,133.818192,104.115715,86.165306,100.578529,113.867783,84.115715,39.892582,14.730596,12.165308,8.355384,8.474397,8.090099,9.978527,2.843807,0.609093,0.171075,0.066116,0.002479,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601825.955000,4612385.550000,5419,5005,116.927299,174.423172,180.489288,164.439682,148.018188,137.142181,136.414902,135.158707,134.828125,136.861160,138.390091,150.051254,169.323975,186.456223,201.497528,213.522324,214.224808,201.323975,178.481018,154.828110,143.811584,141.538849,135.654556,104.340515,86.861183,102.662827,115.158699,83.728951,41.869442,15.305802,12.332251,10.291748,9.019024,10.066958,12.104148,6.010753,1.269424,0.051240,0.342976,0.002479,0.000000,0.000000,0.192562,0.253719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601828.755000,4612385.550000,5433,5005,111.534721,179.776871,176.843002,163.942184,145.504166,134.330597,135.190094,132.479355,132.033081,134.710754,136.082657,149.190109,169.041351,186.851257,198.685974,211.330597,212.743820,199.297531,174.661179,150.446320,141.446320,136.818207,133.090927,102.115715,83.818192,100.586792,112.694229,81.950424,40.297535,14.528943,12.099193,9.749599,8.527287,8.785138,11.288445,6.180174,1.388433,1.009920,1.266944,0.176033,0.725621,0.000000,0.077686,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.555000,4612385.550000,5447,5005,117.271919,177.205795,180.205795,166.982666,149.156219,137.495056,139.164490,136.437210,135.933075,138.850433,140.106628,152.751266,170.718201,188.709915,202.734711,214.230576,217.023972,203.585953,180.197525,157.304977,145.503326,144.470261,139.081833,107.528122,89.891754,104.594231,119.222328,85.676880,44.238861,18.211590,12.643821,12.876877,10.894231,12.359520,12.798364,6.067777,1.039672,0.153719,0.215703,0.000000,0.000000,0.000000,0.549589,0.309918,0.000000,0.000000,0.000000,0.000000,0.000000,2.242975 -601834.955000,4612385.550000,5464,5005,117.021500,183.335556,178.938858,163.368622,147.839691,137.236359,135.955383,133.897537,133.641342,136.806625,137.285950,150.252914,168.327301,186.476044,198.905792,212.442978,212.723969,200.839676,177.285965,155.013245,143.426453,140.781830,134.963638,105.847946,87.476044,101.550423,113.393402,83.219849,42.261177,15.293406,12.269440,11.227285,9.556214,11.262824,11.738032,4.232239,0.929754,0.546282,0.257025,0.066942,0.000000,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.755000,4612385.550000,5478,5005,119.610764,181.470261,178.594238,167.205811,149.280182,139.015717,138.577698,137.701675,135.619034,138.643814,139.709930,151.594238,171.784317,189.726471,202.759521,214.106613,215.941330,203.495041,179.552917,157.123154,146.197540,142.891754,138.354568,107.420670,91.321487,104.288445,117.420677,85.974388,43.081837,17.047953,12.577705,14.286794,10.454562,12.842165,14.100842,6.312406,0.872729,0.192563,0.435538,0.004132,0.000000,0.000000,0.118184,0.032232,1.585950,0.000000,1.293389,0.000000,0.000000,0.000000 -601841.755000,4612385.550000,5498,5005,100.352081,181.122314,178.163666,166.130600,148.196716,136.105804,137.436386,133.204971,133.957047,137.477707,138.171921,149.957047,169.634720,187.593414,200.312424,213.436386,214.667786,202.419861,178.047958,155.725647,143.841339,143.147125,135.800003,106.733902,87.535553,102.857864,115.981834,82.287621,41.047951,15.826464,12.345472,13.372746,9.591751,11.881008,10.163653,4.386783,0.319009,0.240497,0.430579,0.014876,0.056199,0.000000,0.016529,0.509918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.755000,4612385.550000,5543,5005,115.686790,182.504974,177.529770,167.414062,152.017365,138.934723,140.149597,137.471909,136.885132,140.934723,140.066956,153.571091,171.000839,188.744644,201.860336,214.496689,216.303299,202.154541,179.691742,158.402496,147.551254,145.187607,140.063660,108.708282,92.633904,107.617371,117.335548,85.765312,43.319027,19.609108,12.733078,14.124808,10.745471,12.962000,13.549603,10.019846,3.159508,2.682647,2.525622,2.309092,1.536365,0.107438,0.426447,0.000000,0.463637,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.155000,4612385.550000,5560,5005,111.603325,185.586777,179.876053,168.404968,150.016541,140.801666,141.256210,137.628113,137.933899,141.173569,140.735550,152.909103,170.132248,186.768600,200.603302,214.057846,213.876038,202.694214,178.859528,157.305801,147.297531,143.685974,139.000015,109.570267,91.826462,105.743820,116.330597,83.661171,40.190102,15.367785,12.636383,10.260345,10.962827,10.532248,11.953732,6.178523,1.001655,0.190083,0.384299,0.000000,0.000000,0.000000,0.000000,0.549587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.355000,4612385.550000,5596,5005,120.273575,172.984314,171.868607,166.612411,152.066956,140.736374,139.075226,136.752914,137.959518,140.604141,141.587616,152.513229,168.323151,184.686783,198.314911,211.116547,212.447113,202.843826,178.761169,159.066956,147.207458,145.058685,140.100006,111.637215,94.678535,106.248779,115.984322,85.066963,39.670269,15.837208,12.736382,5.161994,9.574394,7.585139,9.629764,3.953727,1.157854,0.485125,0.016529,0.257026,0.000000,0.003306,0.442976,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.155000,4612385.550000,5610,5005,128.775223,171.932266,173.461197,164.138885,149.692596,139.659546,138.395081,136.089279,136.816574,141.618225,140.899216,151.485992,167.816574,185.783508,198.750458,211.981857,212.965332,202.229797,179.287643,157.833099,147.775238,142.494247,139.345490,111.857872,93.386795,107.618202,114.510765,83.452911,40.576874,17.186796,12.667789,7.450426,10.995883,8.196709,12.185965,3.575215,1.734714,0.408266,0.300001,0.776862,0.000000,0.085125,0.353719,0.350413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601867.955000,4612385.550000,5629,5005,119.847122,165.483490,170.946304,163.929764,149.508286,138.723160,137.698364,136.673569,135.913239,140.260345,141.425629,151.648773,167.863647,184.500015,196.913239,209.814072,213.309937,201.500015,176.921509,156.243820,145.847122,142.954559,137.227295,109.781006,91.582664,107.574394,114.061996,83.202492,39.648785,15.476050,12.475225,4.885962,8.438030,8.286792,9.963650,4.614886,0.936366,0.164463,0.432232,0.008265,0.078513,0.004132,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.555000,4612385.550000,5662,5005,105.621513,172.762009,172.538864,162.861176,147.323990,136.604980,137.381821,135.315720,134.828110,138.795074,139.538864,149.935562,165.381851,182.208298,195.993408,208.852921,210.472748,200.398376,176.497543,155.290939,146.679367,142.795074,138.745483,110.092575,92.414894,106.158684,113.538849,83.026466,41.241344,15.809936,12.613243,7.276871,9.981832,9.437204,8.475218,4.016537,1.295044,0.335538,0.000000,0.109091,0.133058,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.555000,4612385.550000,5677,5005,116.493408,172.647125,171.774399,165.452087,150.443832,140.113251,138.617386,136.080185,135.501678,140.352921,140.939697,151.286804,166.460358,183.228958,196.898376,210.138046,211.493408,201.030609,177.278534,156.443832,146.253738,144.204163,139.518204,112.352913,95.187622,107.873573,116.857040,83.956215,40.600845,17.308283,12.683490,7.179350,10.582659,10.363652,11.841337,4.699182,1.728929,0.564464,0.480166,0.328100,0.000000,0.091736,0.452066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601882.355000,4612385.550000,5701,5005,110.914886,166.964478,171.171082,163.443817,149.716537,139.700012,138.782654,136.526459,137.104965,140.964478,142.319839,152.509933,168.088440,184.204147,197.741333,209.724808,212.691742,202.691742,178.154556,157.427277,147.311584,143.080170,139.700012,110.997528,95.997528,108.675217,114.534721,84.063660,39.030598,17.769440,12.700019,7.009102,10.516545,11.774396,10.049599,6.230588,1.233061,0.567771,0.128926,0.281819,0.000000,0.128100,0.465290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.955000,4612385.550000,5729,5005,103.838867,162.483490,168.962830,162.177704,146.657043,137.863647,136.566132,134.309937,132.888458,138.409103,138.838852,149.822327,165.227295,182.417374,193.557861,207.128113,209.450424,198.946304,175.946304,154.797531,144.376053,140.648773,135.227295,109.351273,91.871925,105.747963,112.367798,80.838867,41.747955,15.783488,12.293407,6.838854,8.626462,11.522331,10.009933,3.987610,0.280994,0.357027,0.137190,0.000000,0.056199,0.000000,0.240496,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601894.755000,4612385.550000,5763,5005,105.810760,164.083481,169.339676,163.794235,148.662003,138.232224,136.232239,134.662003,135.116547,137.752884,139.471893,150.909927,165.116547,180.976044,195.182663,206.422333,208.876892,199.174393,175.612411,153.389267,144.496689,141.405777,135.463654,109.050415,93.529755,105.422318,111.306618,82.240509,41.769440,17.422333,12.314894,7.880177,11.184313,10.734727,8.659515,3.803314,0.962814,0.395043,0.509092,0.271075,0.075207,0.000827,0.540497,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.355000,4612385.550000,5801,5005,103.280182,152.304962,165.701660,158.875214,145.362823,136.379364,133.866974,133.346313,131.974396,134.230606,136.594238,145.800842,162.668594,177.718185,191.701660,202.197525,204.247116,194.404129,170.131409,150.057037,138.875229,136.792587,131.354568,105.230606,88.040512,102.577713,109.040520,80.313248,37.428944,14.026463,11.941341,4.636374,8.015716,7.977701,8.589267,2.860337,0.531407,0.131406,0.380166,0.128099,0.000000,0.011571,0.414050,0.457025,0.000000,0.000000,0.000000,1.659504,0.000000,0.000000 -601910.355000,4612385.550000,5841,5005,101.931419,155.419022,165.154556,156.526459,143.319855,136.724823,131.460342,130.179352,129.815720,132.104980,133.088440,144.972733,159.237198,174.352905,186.766129,198.700012,200.237198,190.551254,167.228943,145.096725,136.815735,133.410767,128.972748,102.005814,85.526466,99.666962,107.675232,78.443817,37.551262,12.214066,11.724813,6.057038,6.802493,8.712412,6.535547,3.109097,0.135538,0.058678,0.075207,0.167769,0.000000,0.097521,0.312397,0.320661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.555000,4612385.550000,5887,5005,106.288452,150.933060,164.846283,156.420670,143.263641,133.999191,131.643814,129.693405,128.701660,130.131409,133.528107,142.106613,158.350418,173.366943,187.400024,197.094238,199.400024,188.598373,166.383469,146.726456,136.610748,132.172729,127.854553,100.652069,84.862823,99.821487,107.342163,79.730591,36.920685,15.245472,11.623158,8.533073,10.246298,10.566132,10.000013,3.859512,1.080994,0.897524,0.061984,0.000000,0.073554,0.165290,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601927.955000,4612385.550000,5929,5005,88.331429,156.438843,170.257034,160.009109,143.785965,136.265305,132.637207,129.554565,129.248779,130.835556,132.414062,143.347946,160.389267,173.926453,187.579346,198.794235,199.215714,189.422333,166.149597,144.662003,135.819016,132.909943,127.736374,100.860352,85.852081,99.281837,108.504974,79.819031,38.100021,15.121507,11.612416,7.220675,8.574394,8.919850,11.101666,4.419016,0.361159,0.200828,0.209918,0.203306,0.000000,0.015703,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,1.874380,0.000000 -601932.755000,4612385.550000,5953,5005,88.245483,154.055405,168.063660,158.609116,144.493408,134.815720,132.129761,129.708267,130.171082,130.840500,131.931412,144.129776,159.253738,174.096710,188.220673,198.394226,199.261993,188.923157,166.542999,147.063660,135.733063,132.063644,127.245461,100.914886,84.873573,98.030586,107.344635,79.650429,38.600849,15.646297,11.567787,8.098359,9.482660,9.152081,10.890097,4.242157,1.071903,0.628927,0.266943,0.197521,0.000000,0.086777,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.355000,4612385.550000,5981,5005,88.987617,157.805801,165.871918,157.219025,142.086792,134.929764,132.078522,129.095062,129.243820,130.871918,131.400848,142.533081,158.764481,173.698364,186.392578,198.136383,198.880188,188.004150,164.698364,145.309937,135.285141,131.623978,127.590919,100.293388,83.805801,97.789276,107.632233,79.161171,37.227291,15.444646,11.599192,5.537201,8.462824,9.707452,8.704144,3.676042,1.438021,0.266944,0.132232,0.041322,0.000000,0.085951,0.231405,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601946.755000,4612385.550000,6023,5005,124.557869,154.557861,168.731415,157.747955,144.665329,133.516541,133.549606,129.797546,128.805817,129.367783,132.681839,143.202499,159.450424,174.268631,186.136398,198.243835,197.954575,187.665329,164.673569,145.731415,135.194229,131.326462,126.227287,99.252083,82.822327,98.136383,106.590927,77.566132,36.516544,16.105804,11.475226,6.721499,9.504974,8.218198,9.024807,2.924800,0.857854,0.037191,0.000000,0.000000,0.118182,0.002479,0.070248,0.552066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.155000,4612385.550000,6055,5005,96.133080,155.876877,170.538025,155.323151,141.025635,132.562820,129.810760,128.058685,127.852081,128.959518,129.819031,140.868607,157.769440,171.951248,185.091751,194.595886,197.298355,185.653732,162.876877,142.918198,134.141342,129.827286,123.918205,98.752914,81.190933,96.645477,106.248779,77.984322,35.017376,14.011587,11.265308,6.687618,7.888446,9.271916,7.895881,4.025627,0.488431,0.008265,0.058678,0.000000,0.000000,0.077686,0.000000,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.555000,4612385.550000,6072,5005,98.132248,158.322327,167.851257,157.801666,144.611588,135.851257,131.338852,130.776871,129.520676,130.264465,131.867783,142.818192,159.297531,173.603317,185.669434,199.239685,198.173569,188.520676,164.942169,143.628113,134.041336,132.305786,126.363647,99.214882,82.528938,96.851250,106.247940,76.314064,35.570267,13.790099,11.487622,7.883484,8.349602,10.163653,10.199185,3.912404,0.609919,0.309918,0.123967,0.033884,0.003306,0.000000,0.147108,0.355372,2.260331,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.955000,4612385.550000,6094,5005,80.391754,165.119034,167.475204,158.450409,147.466949,139.342972,135.169434,131.756210,131.632233,131.359512,133.111572,143.483475,159.334732,174.987625,188.128113,198.847122,199.772751,189.136383,166.789276,145.376038,136.938019,132.227280,128.681839,100.938034,84.326462,99.541336,106.673569,78.392578,36.648781,14.167787,11.698365,7.517367,10.124808,7.363651,9.195055,4.456206,0.904135,0.384298,0.215703,0.000000,0.000000,0.111571,0.142975,0.000000,0.000000,0.000000,0.000000,1.125620,0.000000,0.000000 -601968.355000,4612385.550000,6131,5005,91.609108,157.146286,169.080170,159.551254,144.063644,133.534714,130.352905,129.220673,128.295059,129.832245,130.385956,142.195877,157.790924,173.319839,185.691742,197.460342,198.038849,186.542984,163.633896,142.989273,132.567780,131.220673,124.518196,100.815720,82.220673,96.410759,106.683487,76.278519,36.212418,13.957042,11.319854,9.074394,8.232245,8.066132,8.096708,4.371084,0.453722,0.071902,0.068595,0.000000,0.000000,0.085124,0.364463,0.123967,0.000000,4.195042,0.000000,0.000000,0.000000,0.000000 -601971.955000,4612385.550000,6149,5005,94.989273,160.262009,165.493408,158.179367,145.154572,133.675232,132.914886,129.270264,129.071915,130.890106,131.394226,142.104980,158.683502,173.923172,187.245483,198.485153,198.923172,187.757874,165.493408,144.476883,133.914886,130.435562,124.609108,99.931419,83.700020,96.212418,105.509933,76.022331,36.195885,15.168614,11.328119,7.476871,8.608281,8.724809,8.249599,3.062816,0.901654,0.105786,0.173554,0.157852,0.122314,0.000000,0.076860,0.000000,0.000000,0.000000,1.442975,0.000000,0.000000,0.000000 -601976.755000,4612385.550000,6173,5005,100.716545,169.336395,172.708298,161.799194,147.691757,137.162842,136.071930,132.559525,131.443817,132.997543,134.584320,144.956223,161.410767,176.600845,189.071930,200.047134,202.526474,189.088455,166.782669,146.262009,135.501678,133.146301,127.518188,101.427292,84.782661,97.716545,105.766136,77.402496,37.014069,17.025639,11.592582,9.562825,8.908279,10.176049,9.713237,5.495877,2.350418,0.594217,0.061984,0.052893,0.000000,0.271902,0.000000,0.000000,0.000000,0.000000,3.795042,3.315703,0.000000,0.000000 -601981.155000,4612385.550000,6195,5005,102.776047,158.908264,170.412415,162.709930,145.676865,136.941330,134.734726,132.784302,131.404144,132.404144,134.131409,144.875214,161.304977,175.676880,187.495056,199.784317,201.420685,189.329773,164.668610,145.354553,135.875229,132.792572,127.627281,102.114891,84.842163,97.536377,105.437202,77.445465,38.048779,14.091751,11.602498,9.312411,9.129766,8.947948,10.031421,5.067778,1.528103,0.459507,0.352067,0.295042,0.000000,0.000000,0.000000,0.510744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.755000,4612385.550000,6228,5005,98.612419,166.860336,171.595886,160.678528,146.835556,135.372742,134.595886,132.207458,131.802505,133.934738,134.777710,146.025635,161.381012,176.546295,189.637207,201.116547,202.381012,187.860336,164.554565,145.199188,135.612427,132.116547,127.463646,101.389275,84.017365,97.909935,105.265312,75.785973,33.909939,14.539688,11.587624,7.762822,9.050429,10.303324,7.952907,4.456205,0.154548,0.763639,0.238844,0.288431,0.000000,0.010744,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601996.555000,4612385.550000,6272,5005,95.128120,166.252106,169.574417,157.681854,144.343002,132.756226,132.409119,128.863663,129.359528,129.673584,130.210770,141.723175,157.318207,173.367798,185.012436,196.037201,197.871918,184.855408,161.111603,140.863663,130.425644,129.012421,123.227295,95.574394,79.549606,91.706627,102.888443,74.632256,36.293404,13.750430,11.202497,7.657036,7.513239,8.717370,9.158691,3.056204,1.157027,0.118183,0.157025,0.068595,0.000000,0.242976,0.246281,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601999.355000,4612385.550000,6286,5005,124.372757,165.248795,174.190933,159.339691,146.628952,134.761185,133.422348,129.124817,128.604156,130.405807,129.769455,141.587631,157.083496,173.893417,186.306641,197.463669,197.645477,183.752914,161.612427,141.290115,130.769455,127.785980,124.190941,97.347961,80.703339,93.992592,103.372757,73.860359,35.215721,13.512413,11.290102,8.897533,9.331420,10.300841,7.971087,4.941329,0.461159,0.781820,0.347108,0.349588,0.000000,0.153719,0.168596,0.338843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.955000,4612385.550000,6309,5005,88.071930,174.625641,172.014069,161.014069,146.518204,135.799194,134.410767,130.526474,129.245483,132.567795,131.600845,141.840515,158.716553,175.600845,186.187622,198.171097,197.799194,186.030609,162.410767,143.460358,132.799194,129.038864,124.154572,96.964485,81.278534,94.121513,104.344650,76.162827,37.352913,15.197537,11.286796,9.060345,9.519850,11.723157,9.257040,3.480997,0.640499,0.498349,0.164463,0.035537,0.000000,0.384298,0.677687,0.157025,0.000000,0.000000,0.000000,1.310744,0.000000,0.000000 -602010.555000,4612385.550000,6342,5005,99.894234,172.795074,168.274399,161.819855,145.943832,132.332245,131.902496,128.332245,128.489273,129.902496,129.489273,140.919037,157.133911,174.505814,185.472748,196.952087,196.200027,184.902512,162.613251,141.398376,131.976883,129.695892,123.836380,94.985138,80.762001,93.357040,103.323982,74.662827,34.373573,14.466134,11.257871,10.230592,9.863651,8.322330,9.466955,4.550422,0.785126,0.072729,0.045455,0.203306,0.000000,0.000000,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.955000,4612385.550000,6374,5005,102.685966,173.062820,169.095886,158.773590,144.996719,135.112411,134.608276,129.352081,129.616547,132.666122,130.038025,141.914078,159.649612,175.847946,189.087601,201.839661,201.947098,187.583466,165.517365,145.814911,134.856216,132.624817,127.236382,97.740517,80.996712,97.252914,106.013245,79.368614,34.963654,13.089272,11.566960,10.271089,9.223983,10.027287,9.374393,3.885958,0.521489,0.204133,0.204133,0.000000,0.257025,0.158678,0.330579,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602022.755000,4612385.550000,6403,5005,98.240517,179.075211,170.124786,161.802475,146.290115,133.058701,132.934738,130.033905,131.389282,134.389282,131.678528,144.298370,160.042145,177.240494,190.504959,203.546280,201.703308,189.108261,167.447098,147.653732,137.752914,135.298370,127.645477,100.364487,83.529770,99.108284,110.108284,79.513245,38.992580,15.660349,11.604151,8.721501,9.882661,11.947124,9.418196,3.733065,0.651242,0.223142,0.000000,0.048760,0.000000,0.000000,0.000000,0.666943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602030.155000,4612385.550000,6440,5005,130.959518,183.050415,174.513214,162.025635,145.571091,132.852081,131.686783,129.538025,130.554565,134.422333,132.273560,143.290100,160.794235,179.058670,191.199173,204.463638,204.438843,189.422318,167.893402,149.389267,138.141342,134.207458,127.918198,99.215714,84.447121,100.645470,107.042160,77.645470,38.207455,14.637208,11.628944,8.961997,9.464478,9.347949,8.546293,6.136374,0.269424,0.181819,0.000000,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602034.555000,4612385.550000,6462,5005,113.519028,181.419861,172.204987,164.403336,146.709106,135.056213,134.147125,132.064484,132.229767,137.221527,133.791748,145.800018,160.957047,177.990112,193.436371,207.023148,206.452896,191.519012,170.899200,150.428116,139.196732,135.519028,131.163651,101.692574,85.287621,102.196709,109.064476,78.709106,38.031422,14.396712,11.923986,9.829765,9.357867,9.799189,9.860344,6.089266,1.404963,0.758680,0.204959,0.333885,0.005785,0.086777,0.584298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602038.555000,4612385.550000,6482,5005,134.949600,182.875229,173.098373,166.842163,147.990921,137.015717,134.800842,132.114883,132.635544,137.685150,134.181000,145.627289,161.577698,180.040512,193.205795,207.990921,207.214066,191.742981,170.528122,150.809113,140.602493,136.908279,131.718201,102.875229,86.428947,103.106628,110.924805,79.900017,38.577705,15.431423,11.974400,11.127286,9.162827,10.046298,10.781006,5.804968,0.862813,0.090084,0.125620,0.142976,0.000000,0.080992,0.168595,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.955000,4612385.550000,6509,5005,134.335556,173.442978,173.591751,166.624786,146.228088,136.228088,133.649597,131.071091,131.153732,136.343811,131.938858,144.484299,160.244629,177.162003,191.575211,203.723969,204.690903,189.831406,168.922318,149.385117,138.459503,134.806625,130.509109,99.633072,83.004974,102.128937,110.327286,78.484314,39.600021,15.558695,11.864481,9.913237,9.390925,9.793403,10.116543,4.904967,0.441324,0.142150,0.000000,0.139670,0.140496,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.955000,4612385.550000,6544,5005,104.572739,161.109924,159.448761,148.804138,135.870255,125.101669,121.465302,119.581009,118.060349,121.316544,121.928116,133.729767,150.903305,167.853729,180.638855,193.514877,193.771088,184.754547,161.448761,141.035538,130.407455,125.663651,119.845467,91.423981,75.531418,94.035553,107.597534,80.886795,38.291759,15.619026,10.895061,6.951252,9.782660,10.348775,7.601666,5.660341,0.800829,0.345456,0.056199,0.000000,0.120661,0.001653,0.484298,0.524794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602058.755000,4612385.550000,6583,5005,114.274399,153.257874,156.150436,146.819839,131.679352,122.621506,118.447952,115.919029,115.381836,117.241341,117.439690,130.216553,147.679367,164.142181,176.538864,188.695892,189.026474,179.133911,157.720688,137.604965,126.084312,121.679359,115.472748,88.084312,72.877701,90.547127,106.257866,80.059525,35.406628,14.082661,10.497540,6.773566,8.946294,9.076872,9.314063,3.548768,1.452897,0.133059,0.172728,0.000000,0.031405,0.000000,0.419009,0.071901,0.000000,7.894216,1.799174,0.000000,1.895041,0.000000 -602062.355000,4612385.550000,6601,5005,107.419029,155.104980,156.857056,145.873581,131.733078,123.724808,119.782661,117.038864,115.873573,117.518196,118.956215,130.972748,147.501663,163.468628,175.997528,189.476883,189.633911,178.518188,157.204163,136.328125,126.096710,121.286797,116.154564,88.790924,72.542999,91.129768,103.245476,78.559532,35.138035,12.581836,10.559523,5.881002,7.276871,7.202490,8.189270,4.045463,0.694217,0.457027,0.031405,0.000000,0.028099,0.004132,0.531406,0.131405,0.000000,0.000000,7.338843,1.606612,1.775207,0.000000 -602065.955000,4612385.550000,6619,5005,123.593414,154.403305,156.279343,143.874390,131.816544,122.378525,118.320679,113.659515,114.221504,115.601669,116.642990,127.750427,145.221497,161.717361,174.204971,185.932236,187.981827,177.783478,155.485962,134.576874,124.866127,120.353737,115.618195,87.428116,71.403328,90.130592,103.006622,77.618195,35.461178,13.576051,10.510763,5.444640,8.909104,8.087616,10.598361,4.414057,0.636366,0.163637,0.677687,0.164463,0.326447,0.000827,0.157852,0.571075,0.000000,4.061157,0.000000,0.000000,0.000000,0.000000 -602071.555000,4612385.550000,6647,5005,140.508270,161.086777,158.582657,143.095047,129.466965,119.764481,116.954559,113.004150,112.119850,113.400841,114.053734,125.475220,143.417358,160.409088,171.946274,182.681824,184.566116,174.574387,153.863647,132.268616,122.012413,117.913239,112.863655,85.789276,69.516548,88.037209,103.590927,78.962830,36.169441,12.038861,10.260349,7.062821,9.350428,9.595881,9.094229,6.331414,0.907442,0.154546,0.361158,0.033884,0.333059,0.004133,0.304133,0.237191,8.859505,0.000000,0.000000,0.000000,0.000000,0.000000 -602080.555000,4612385.550000,6692,5005,178.629761,170.836380,153.373566,139.233063,121.836372,111.877693,109.150421,104.117363,103.968605,104.538849,105.902489,117.836372,136.414886,153.563644,166.100830,178.869431,181.249603,172.290924,155.125626,134.571915,124.604965,121.555382,118.290916,89.481003,70.117378,96.629761,123.795052,99.051247,45.481014,13.816546,10.753737,12.142989,9.769434,12.610758,13.799189,9.812409,1.323969,0.920663,0.678514,0.219835,0.000000,0.686778,0.105787,0.242149,12.608264,0.000000,4.901653,5.732232,0.000000,6.076034 -602229.955000,4612385.550000,7439,5005,98.419029,155.606628,155.829773,144.523987,129.300842,118.962006,116.598366,113.152084,113.672745,114.598366,115.639687,127.061180,147.185150,164.003326,177.176865,188.441330,190.061157,180.532242,156.284317,135.681015,124.358696,121.565308,115.490929,86.515724,66.846298,85.656219,99.366959,70.309113,31.978531,12.540514,10.499192,8.280181,8.430594,8.875223,8.204147,4.468602,0.864464,0.053719,0.233058,0.121488,0.834712,10.233062,10.841325,9.403309,7.780993,4.591736,7.277687,5.857026,5.414876,9.654547 -602233.555000,4612385.550000,7457,5005,109.676880,153.382645,159.432220,145.291748,128.060349,119.407455,116.134727,112.663651,113.423981,114.647125,115.275223,126.266960,146.118195,163.291733,176.490082,188.242142,188.564453,180.291748,156.349594,133.985962,123.903320,120.704971,115.118195,86.076874,68.019020,84.820679,98.415718,71.440514,31.961178,12.090926,10.465309,7.512411,7.565306,9.466131,8.447948,4.600008,1.110746,0.301653,0.150414,0.286777,0.452067,3.476862,0.554546,1.695870,7.554546,1.435537,2.483471,0.000000,1.218182,0.000000 -602239.355000,4612385.550000,7486,5005,122.284309,183.668610,159.800842,146.437195,128.933075,112.338028,114.949600,113.205795,114.395882,120.296707,116.519844,131.437195,150.982651,171.511597,186.652084,197.619019,195.338013,182.147934,165.668610,147.627274,136.842163,136.569443,137.172745,106.800835,83.627289,106.428940,140.090103,113.842163,54.387623,14.631423,12.470268,17.000843,12.709108,16.546301,22.185141,12.017369,1.558681,0.174381,0.024794,0.218182,0.023141,0.000000,0.081818,0.000000,1.172727,0.000000,1.840496,0.000000,0.000000,1.942975 -602245.155000,4612385.550000,7515,5005,121.786797,178.183472,157.042984,143.398361,127.018196,113.720673,115.390099,114.390099,114.737206,120.596710,119.257866,134.472748,155.910751,177.009918,193.299164,207.348755,205.836365,195.654541,178.332230,160.968582,150.679352,149.968597,151.563644,117.547127,93.009926,116.753738,152.034714,121.390099,57.431431,16.543819,13.778531,16.653736,13.086794,17.326462,23.420679,15.146297,0.738019,0.223968,0.090909,0.033884,0.000000,0.000000,0.222314,0.000000,0.976033,0.000000,2.935538,0.979339,0.000000,2.009917 -602248.955000,4612385.550000,7534,5005,130.734726,171.257034,155.133072,139.744644,125.934715,111.695045,113.951248,111.389259,112.124802,117.380997,116.918190,131.571075,152.496704,173.108276,188.810760,202.174393,203.579346,193.455383,176.893402,159.190918,150.042160,150.058685,150.463654,116.860336,92.752907,117.232239,153.240509,123.306618,60.422337,14.510760,13.678532,14.517371,11.483487,18.494234,22.766960,15.611586,0.832234,0.055372,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.197521,0.000000,0.000000,0.000000,0.000000 -602255.155000,4612385.550000,7565,5005,114.544647,168.097549,151.395065,136.089279,118.948784,107.923988,108.452911,108.254570,108.998367,113.676056,114.105804,129.395065,150.378540,170.990112,186.907455,200.626465,201.452911,194.576889,178.130600,160.651260,152.130600,151.568619,152.527298,121.568619,96.609940,120.031425,162.783478,137.122330,68.171921,17.890928,13.866135,15.378529,14.814068,22.204151,31.971922,18.350428,1.109920,0.362811,0.000000,0.000000,0.000000,0.009091,0.000000,0.000000,1.229752,1.142975,0.000000,0.878513,1.049587,1.969422 -602263.955000,4612385.550000,7609,5005,110.905800,161.404968,148.702499,135.123978,118.685966,105.966957,108.495880,107.000015,107.917374,113.520676,113.834724,129.314072,150.082657,169.157043,183.859528,196.140518,199.570267,190.876053,176.842987,160.561981,151.388443,151.702499,151.636383,121.826462,99.000015,121.528938,156.223145,128.793411,65.347130,17.953739,13.785143,12.415719,13.779357,20.997538,31.776878,19.090925,1.416532,0.000000,0.181819,0.028926,0.000000,0.000000,0.215703,0.000000,0.000000,0.000000,3.128926,0.866116,1.020661,0.000000 -602269.155000,4612385.550000,7635,5005,116.390099,155.166122,148.265305,133.397537,116.612411,105.942986,109.347946,108.463646,110.951256,115.711586,118.587616,134.579346,156.868591,177.215698,192.025635,205.141342,209.141312,202.587616,188.240509,169.843796,161.273544,159.951233,160.372726,128.819016,105.918198,127.042160,159.091736,132.802490,65.612411,17.546297,14.579357,11.798363,14.843820,22.421505,31.942991,21.846296,0.996697,0.000000,0.020661,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,2.495042,0.000000,0.000000,0.000000,2.007438 -602275.355000,4612385.550000,7666,5005,95.523155,137.070251,130.640503,117.301666,104.657036,94.863655,98.516548,99.028938,102.070267,105.566124,110.458687,126.260345,150.177689,168.392563,183.855377,195.888428,199.318176,193.202484,178.946274,163.541321,153.896698,154.954544,153.500000,122.607452,99.979355,121.276871,160.855377,138.128098,72.268608,16.881010,13.954565,12.890099,16.905802,27.748777,38.268612,27.952084,1.029754,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.909091,0.000000,0.000000,0.764463,1.517356 -602284.955000,4612385.550000,7714,5005,92.668610,134.102493,135.515717,123.441330,109.366951,101.854553,106.127281,107.003319,109.342163,114.309105,119.259514,136.614883,159.449585,179.358688,194.383469,208.267776,211.846298,207.375229,193.532242,177.681000,169.862808,168.780167,166.581818,136.755371,113.474388,133.879349,165.342148,140.672729,72.829773,18.581011,15.143820,13.654562,18.016546,26.646301,38.540516,26.711590,1.228929,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.999174,0.957025,0.809091,0.000000,0.741322,0.000000 -602292.555000,4612385.550000,7752,5005,86.600021,137.264465,133.735550,122.123985,108.057869,99.768608,102.966957,104.107452,106.553734,111.413239,116.636383,132.826462,155.347107,173.074387,188.884293,200.983475,205.785126,201.859497,187.776855,173.528931,165.760330,162.884293,163.272720,134.181824,109.785141,132.206619,164.785126,137.173553,72.082664,20.010763,14.842995,15.110763,17.382662,29.089277,38.723988,24.169439,1.785129,0.128100,0.000000,0.104959,0.000000,0.000000,0.004132,0.000000,3.021488,0.000000,0.828099,1.871901,0.838843,1.654546 -602297.355000,4612385.550000,7776,5005,77.176048,126.749603,123.146301,112.394234,96.047127,89.551254,91.055389,91.542992,92.567787,95.476875,100.146301,113.840515,134.419022,149.914886,163.460342,173.947922,177.790909,172.402496,162.179352,147.270264,138.823975,138.807449,136.336380,110.096710,88.881836,112.443817,146.774384,128.071915,69.286797,15.322332,12.394234,10.500014,16.403324,25.304976,35.504978,26.310762,0.629754,0.018182,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,5.663637,0.904132,0.000000,2.482645,1.631405,1.549587 -602300.555000,4612385.550000,7792,5005,86.676880,127.633896,121.898354,108.840508,92.981003,85.485138,86.799194,85.319855,86.931412,89.857033,92.675217,105.204140,124.766129,140.733047,153.022324,163.228912,165.319824,158.592560,147.807449,134.080170,126.138023,126.394226,125.245461,100.047119,77.815727,100.848770,142.435547,127.848770,69.716537,16.100843,11.385968,11.899189,17.555389,26.811588,39.063656,29.040514,2.161161,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.664464,0.589256,0.000000,4.190910,0.000000 -602305.355000,4612385.550000,7816,5005,97.147125,131.577698,129.668610,115.395882,101.139679,91.371086,92.916542,89.577698,92.214058,94.883484,98.428940,111.255386,130.676865,147.825638,160.338043,170.495056,172.800842,167.966141,153.990921,139.833908,131.784302,130.222321,131.900009,106.817368,82.643814,108.321503,148.709930,131.181000,68.883484,16.394232,11.990929,12.455388,15.299191,24.330597,35.528118,27.846298,1.395045,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.608265,2.064463,2.490083,0.000000 -602312.955000,4612385.550000,7854,5005,123.915726,154.609924,153.990082,136.866119,120.667786,112.039680,110.758690,108.634727,108.328941,110.775223,112.659515,124.684311,145.965302,163.684311,176.609924,186.899185,188.783478,181.072739,160.899185,139.618195,128.899185,127.097534,123.800018,92.800018,71.122337,92.130592,114.204971,84.659515,38.642994,13.919852,11.254565,8.030592,9.204974,10.051254,12.203321,6.905794,1.265292,0.305787,0.380993,0.119009,0.199174,0.159505,0.000000,0.000000,6.258678,2.541322,4.238017,2.820662,0.000000,0.000000 -602319.555000,4612385.550000,7887,5005,106.696701,155.002487,148.795868,134.994232,119.804146,111.382660,109.217369,107.242165,108.126457,109.233902,110.779350,124.878525,145.895065,162.605789,176.630585,186.523148,188.275208,180.225632,160.564468,140.762833,130.473572,128.035538,125.936371,93.638855,73.738037,93.440521,117.671913,88.911591,41.473576,13.072743,11.448779,7.662824,10.112411,11.875222,13.821503,7.139680,1.143805,0.428927,0.318183,0.204133,0.088430,0.186777,0.469422,0.000000,2.461157,0.000000,3.348761,0.929752,0.902479,0.000000 -602323.155000,4612385.550000,7905,5005,108.516548,151.542984,152.559509,136.658691,119.956207,110.187614,108.088440,106.361168,106.369431,107.857033,109.823975,123.096703,143.419022,160.650421,173.749603,183.898361,184.584305,175.799179,156.609100,136.179352,125.766129,123.658684,121.427284,90.733070,69.865311,90.931412,113.881828,84.385963,36.642170,13.066959,11.038861,7.022329,7.631419,11.405801,13.173569,5.087615,0.642152,0.202481,0.039670,0.259505,0.000000,0.338844,0.178513,0.000000,1.298347,1.352066,1.153719,0.000000,1.091736,4.071901 -602326.355000,4612385.550000,7921,5005,109.905800,154.125641,148.704163,134.762009,117.390099,109.481010,108.770264,106.208282,106.233078,107.869438,110.728943,123.051254,144.290939,162.125641,175.530609,185.737213,187.646301,179.357056,159.935562,139.629776,129.142166,127.596710,124.745476,92.530594,72.414894,93.522331,116.109108,85.861176,37.910763,12.414066,11.340516,8.112411,9.822329,10.002494,13.014893,7.216542,1.723145,0.327275,0.282645,0.327273,0.182645,0.187604,0.000000,0.000000,6.585951,3.681819,2.164463,2.729753,1.033058,2.065289 -602329.555000,4612385.550000,7937,5005,114.582664,157.271103,150.742172,135.973557,121.378517,110.642982,107.915710,106.370255,106.122322,108.535545,110.444633,121.808273,141.800018,157.238037,170.948776,180.147125,181.585144,173.667786,155.981842,136.006622,125.948769,123.717361,121.436371,91.800003,70.766960,90.444633,112.213226,86.576866,38.824814,15.071094,11.039689,9.381834,10.835552,11.240512,14.362826,7.153731,1.374384,0.850416,0.523968,0.007438,0.292563,0.053719,0.000000,0.000000,1.172727,2.556199,1.119835,3.857025,1.152893,5.532232 -602334.555000,4612385.550000,7962,5005,127.065308,157.447144,148.620697,133.719849,118.521500,108.389267,106.661995,104.306625,105.314888,108.306625,108.827286,120.513237,140.819016,157.364487,170.298355,180.133072,183.521500,176.942993,158.587631,138.835556,130.926453,128.571091,128.827286,98.207451,76.662003,96.397537,122.017365,94.414062,44.314892,13.423159,11.711590,9.875222,11.715718,12.291752,14.925636,10.295054,2.626453,0.638846,0.419009,0.534712,0.293389,0.371075,0.463637,0.000000,1.305785,6.398348,2.086777,1.864463,6.601654,4.032232 -602338.555000,4612385.550000,7982,5005,120.329765,144.072739,143.527283,127.585136,113.246292,102.370262,101.023155,100.246292,100.857864,103.700844,106.138855,118.485962,138.163635,155.287613,167.957031,177.973557,180.328934,174.758682,157.940506,140.568604,133.676041,132.114059,132.436371,103.783485,82.750427,105.023155,134.899185,108.676048,50.800022,13.533902,12.039689,9.209106,10.955388,15.702497,22.660347,15.379354,2.193393,0.315704,0.452067,0.296695,0.238017,0.171075,0.914877,0.000000,14.002481,8.733060,3.845455,4.977686,2.114876,3.754546 -602343.555000,4612385.550000,8007,5005,121.387604,138.569443,132.338028,117.098358,103.850426,95.387619,94.957870,93.478531,94.635559,97.685135,100.528107,111.643814,131.379349,147.561157,158.197525,169.660339,173.486786,168.759506,156.577682,141.222321,133.007446,133.271912,133.536377,108.412407,88.470268,111.131416,143.023972,122.404144,63.776051,15.298365,12.139688,12.988446,15.599192,24.200846,35.676880,25.717375,1.889261,0.436365,0.033884,0.119835,0.000000,0.000000,0.220662,0.676034,11.575208,13.085125,8.805786,12.491737,4.960331,11.117356 -602351.155000,4612385.550000,8045,5005,113.885963,105.830597,90.300842,74.193405,61.309109,53.457870,52.449608,51.756222,52.515720,57.400021,60.433079,73.639687,91.623161,106.821503,119.681000,131.161163,134.714890,133.111572,124.450424,112.689270,106.937202,106.904976,108.036377,84.920677,67.614899,91.788452,135.152893,123.830589,70.301674,12.965307,9.821506,13.316544,20.062002,36.508286,51.045479,48.607460,6.478523,0.209918,0.123967,0.000827,0.000000,0.000000,0.000000,0.001653,9.338845,20.976038,9.107441,4.000002,4.459506,13.826447 -601003.155000,4612375.550000,1305,5055,148.398361,122.579361,92.761177,79.870270,65.030594,54.676052,50.437210,46.566959,44.581005,44.589272,43.359520,55.551258,71.385147,87.093414,100.595886,114.604973,118.985138,115.613243,111.373573,97.530594,87.947128,87.087624,80.327293,43.987621,24.890926,51.673569,103.803322,97.530594,48.439690,9.239682,7.302498,20.881836,13.552081,19.732248,29.347126,28.491755,6.000832,1.545457,0.705787,0.671902,0.401653,1.061158,1.184298,0.485124,30.359510,12.813227,13.913228,6.033061,6.309919,9.540497 -601006.155000,4612375.550000,1320,5055,163.125641,137.778534,112.274399,102.282661,87.505806,74.786797,72.795059,68.051254,65.026466,67.315720,65.687622,78.018196,96.935555,114.712418,129.282669,145.472748,151.373581,149.604980,142.233078,127.241341,117.596710,117.051254,109.200020,68.290924,45.621506,73.406631,123.629768,109.588448,55.381836,12.045470,9.927293,20.021507,11.833075,18.006630,27.087622,22.167788,2.393392,0.260331,0.065290,0.100000,0.000000,0.046281,0.367769,0.238844,18.214878,14.357855,8.000829,5.103308,3.397521,6.324794 -601010.155000,4612375.550000,1340,5055,162.452911,141.411591,114.733910,100.543816,87.155396,74.717377,72.452911,67.428116,65.436378,67.527290,65.775223,78.485970,97.841347,115.114075,130.262833,146.833084,153.436386,152.180191,143.684326,130.948776,119.089279,120.312416,109.527298,69.907463,46.312416,73.411591,125.419861,112.981842,57.031422,13.423983,9.957044,15.884314,12.141337,17.593407,26.331423,18.627291,2.734715,0.728926,0.132232,0.237191,0.000000,0.176860,0.000000,0.278514,20.378515,16.782648,10.164466,6.495870,9.935539,11.057852 -601015.755000,4612375.550000,1368,5055,143.205811,138.652084,114.181000,101.346291,88.619019,76.767776,75.098358,67.941345,65.486794,66.230598,65.189278,78.875221,97.437202,115.346291,130.734726,146.916550,154.081833,151.883484,144.594238,130.048767,118.809105,117.875221,108.718193,65.338036,41.519855,70.123161,125.528107,115.850426,59.412415,12.830593,9.883491,13.552083,12.102494,19.390099,26.105806,17.995884,1.455375,0.171075,0.147108,0.000000,0.009918,0.423141,0.018182,0.097522,17.258680,10.824796,9.574382,10.226450,9.364465,4.699174 -601023.555000,4612375.550000,1407,5055,106.607452,123.268600,104.698357,90.169441,77.045471,65.673576,60.632252,56.293407,54.070267,52.169441,52.177708,65.169441,85.095055,103.128105,118.128105,132.293411,138.351257,136.095062,128.929764,113.227280,102.954552,101.533066,91.500015,48.681839,25.826462,56.012417,118.731415,112.458687,56.888451,12.943817,8.318201,12.703321,10.627288,16.988447,26.812416,18.081011,1.984301,0.169422,0.018182,0.000000,0.000000,0.000000,0.000000,0.190910,11.882648,4.280993,6.538846,3.602480,7.679340,25.030581 -601040.955000,4612375.550000,1494,5055,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.095868,0.000000,0.000000,5.290090,11.993402,29.154564,46.391750,49.394230,40.134724,35.199188,34.585133,35.622326,33.377697,21.133066,21.223148,15.292567,15.248763,7.094217,2.180166,2.485951,3.202481,12.283472 -601043.955000,4612375.550000,1509,5055,7.885955,2.054548,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.149587,4.940506,5.128934,0.504960,0.000000,5.556207,10.761171,29.747950,48.590103,42.953735,10.723979,2.846285,1.454548,1.414052,0.157025,0.462810,0.438843,0.000000,2.392562,0.000000,1.414876,0.740496,0.000000,4.000002 -601048.555000,4612375.550000,1532,5055,15.281821,3.957856,0.983473,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.182647,16.549603,11.349602,2.047937,0.000000,6.987615,17.142164,32.423161,49.495060,49.714897,8.881828,1.247109,1.257853,0.668597,0.201653,0.009918,0.000000,0.000000,3.564463,0.000000,0.000000,0.000000,0.000000,1.984299 -601115.755000,4612375.550000,1868,5055,3.957852,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.853721,1.068597,0.666944,0.000000,3.022319,13.244641,25.492579,40.532249,38.520676,19.146296,12.143815,7.834720,6.446289,4.000004,1.211573,1.259505,0.023141,2.423967,0.000000,1.816529,0.626446,0.000000,3.436365 -601119.955000,4612375.550000,1889,5055,3.090084,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.157026,0.098348,0.202480,0.000000,3.100834,14.191751,25.201668,40.271919,38.655392,25.316545,15.639684,14.484309,9.859513,6.980998,1.880994,2.295043,0.441323,0.635537,2.223141,0.000000,0.000000,0.000000,0.102480 -601263.355000,4612375.550000,2606,5055,38.780186,77.954559,81.483490,70.574394,57.781010,48.185966,43.995888,39.053738,37.516548,36.129768,34.307457,39.514896,48.971092,57.880180,64.409103,71.508278,72.954559,71.037209,66.202492,56.533073,48.623981,46.301670,45.500015,23.537207,10.318194,27.465307,76.235550,85.252083,50.194229,7.939682,4.136383,5.706621,14.869437,26.487621,40.854565,31.378531,1.916532,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.747108,2.043802,0.402479,0.101653,1.367769,1.341322 -601267.955000,4612375.550000,2629,5055,56.292576,102.399178,101.250420,91.159515,77.787621,70.547951,67.341339,63.696709,61.688450,62.324806,62.233898,69.663651,80.952904,92.266945,99.886780,107.787613,110.043808,107.060333,100.688438,88.919846,81.242165,78.514893,77.936378,54.394234,35.285145,55.630596,100.242157,103.341331,58.514889,12.446297,7.085143,5.155381,15.057868,26.242167,41.415718,25.841341,0.811572,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.269422,3.542976,0.000000,0.786777,0.613223,0.000000 -601273.955000,4612375.550000,2659,5055,109.726456,138.871918,135.194229,127.690094,117.235550,107.599190,107.252083,107.623985,107.276878,111.690102,113.442162,126.590927,145.177704,160.574402,174.342987,185.185944,187.169434,182.367767,168.781006,152.805801,141.706635,140.500015,136.681839,108.954559,85.574394,106.665306,140.475220,120.409103,59.062004,17.339689,12.425637,6.507450,12.545470,17.176052,23.397541,12.188443,1.319838,0.282645,0.090083,0.026446,0.000000,0.000000,0.101653,0.000000,0.000000,0.000000,0.734711,0.000000,1.900000,0.000000 -601281.555000,4612375.550000,2697,5055,114.428108,146.271912,144.156204,135.949585,124.817360,116.858681,115.478516,115.081818,114.924797,118.470253,122.346283,134.106613,152.495041,171.495041,184.619019,196.594223,199.205795,194.147934,176.767776,160.164459,149.718185,147.057022,143.172729,112.809097,89.891754,109.660332,138.726456,113.759506,52.544651,16.881008,13.015720,8.944639,9.634727,13.342993,18.971922,6.996706,0.120662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.894215,0.000000,0.000000,0.000000,0.000000,0.000000 -601291.955000,4612375.550000,2749,5055,99.719025,151.323151,149.075226,140.835556,127.190926,119.538033,118.703316,117.810760,117.918198,122.207451,125.042160,137.414062,156.653732,174.488449,189.174393,200.653732,204.124802,199.372742,182.810760,164.959518,155.579346,152.951248,149.463654,116.678535,93.265312,115.042168,145.124802,118.653732,56.314896,17.695885,13.587623,7.993401,11.490927,15.417373,18.841339,8.750425,0.912399,0.039670,0.155372,0.059504,0.000000,0.004959,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601299.955000,4612375.550000,2789,5055,132.709106,183.171921,162.709106,153.659515,136.659515,125.287621,125.874397,126.105797,126.188446,134.940506,131.386795,146.667770,164.634735,183.692581,200.196716,214.229752,215.436371,204.353745,188.395065,171.386780,161.114075,159.866150,159.709106,123.519020,100.775223,124.915718,154.733902,122.320679,60.023163,19.419853,14.519027,14.196711,13.596710,17.594233,22.042994,15.327290,1.324798,0.100000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,1.340496,0.000000,1.074380,0.000000,0.000000,0.000000 -601303.955000,4612375.550000,2809,5055,128.993408,183.018188,160.563644,154.588440,137.629761,124.018196,125.365311,124.571922,126.249603,133.257874,129.778534,144.720673,162.828110,180.662827,197.257843,211.051239,211.778503,202.712387,186.919006,169.233063,160.191742,158.406616,155.381821,122.257866,99.728943,124.712418,153.059509,121.985138,60.472748,19.090927,14.125639,15.990926,13.318198,16.173571,23.576876,11.103321,0.828103,0.089256,0.000000,0.000000,0.000000,0.136364,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601308.155000,4612375.550000,2830,5055,137.809097,179.387604,161.883469,154.205795,137.891739,125.685135,125.941330,126.139679,126.718201,133.701660,131.156219,144.519836,163.329758,182.552902,197.354553,211.048767,212.941330,202.528107,187.519836,170.428925,161.585953,160.048767,158.809097,125.023979,102.875221,124.875221,155.263641,123.866951,60.561180,20.144648,14.437208,16.161173,13.414893,18.413240,22.981836,14.285966,0.685954,0.361985,0.016529,0.033058,0.051240,0.000000,0.000000,0.008265,0.000000,1.252893,0.000000,0.000000,0.000000,0.000000 -601311.955000,4612375.550000,2849,5055,126.136375,179.781006,163.409103,154.243820,139.805801,127.037201,128.739685,127.607445,128.103317,134.706619,132.698349,146.128113,164.045471,182.904968,198.185974,212.078522,212.971085,203.706635,188.665298,171.202499,160.541336,161.210754,158.409103,126.871910,104.161163,127.301659,155.061996,123.533066,60.318203,20.621506,14.400844,14.821504,14.504975,18.299191,24.457870,11.844642,1.305790,0.147108,0.033885,0.000000,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601315.355000,4612375.550000,2866,5055,134.725632,175.552094,163.667786,153.287628,139.601669,126.659515,128.725632,127.742157,128.238022,133.345459,132.072739,144.824814,162.791763,182.403336,197.709106,211.105804,212.180191,201.519028,184.254562,167.395065,157.254562,157.651260,156.618210,123.899185,102.023163,123.485962,154.601669,124.502487,58.973572,19.158695,14.238036,14.088447,13.601669,17.590925,24.025637,14.775221,0.747111,0.089256,0.009918,0.000000,0.000000,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601320.555000,4612375.550000,2892,5055,128.483490,177.929749,165.334717,156.012390,141.946274,129.582657,130.954559,129.847122,130.599182,134.921509,135.417374,148.541321,166.400833,185.409088,198.690079,213.144623,213.599167,203.433884,185.946274,168.533051,158.268600,157.351242,155.681824,125.475220,102.574394,121.913239,149.764465,119.301666,56.880180,19.049604,14.152912,14.862000,13.676049,18.127291,22.179358,12.865305,0.665292,0.247935,0.059505,0.080992,0.000000,0.000000,0.000000,0.000000,1.215703,1.303306,0.000000,0.000000,0.000000,0.000000 -601328.955000,4612375.550000,2934,5055,120.285973,173.492554,163.244629,154.773544,141.228119,129.583481,131.666122,130.352081,132.236374,135.938858,136.872742,150.814880,168.814880,186.591736,201.740494,214.128922,216.343796,208.558670,191.004959,172.963638,162.236359,162.203308,159.418182,126.723976,104.922325,124.236382,149.806610,118.566963,55.252914,17.367786,14.492582,14.223159,12.042166,16.133076,21.476051,11.197534,0.828928,0.188430,0.040497,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601337.155000,4612375.550000,2975,5055,123.381012,174.728119,169.397537,156.653717,142.794235,132.942993,134.653748,133.248779,134.538025,138.752899,139.009109,152.777695,172.653732,190.909927,204.240509,217.414062,219.612411,211.314896,192.662003,174.942993,163.414047,164.066940,160.190903,130.323151,107.504974,125.240517,149.992569,117.695053,57.736385,20.613243,14.562829,14.509935,14.837209,18.370266,21.476877,9.766130,1.345460,0.547936,0.122315,0.084298,0.000000,0.000000,0.000000,0.109091,0.000000,0.000000,2.108265,0.929752,0.000000,0.000000 -601348.155000,4612375.550000,3030,5055,109.626450,168.585129,166.361984,155.023148,142.659531,132.304138,133.485962,131.626450,133.742157,136.965302,139.816559,153.932236,173.510757,190.089264,204.180176,217.700836,219.948761,211.742157,191.287613,173.353729,163.585129,161.188431,158.436371,127.634720,104.395058,123.477692,147.271088,115.725624,54.461174,17.809111,14.403324,12.563650,12.533900,14.902496,19.656218,9.713236,0.976037,0.577687,0.342976,0.083471,0.028099,0.000000,0.038843,0.004132,0.000000,1.273554,0.000000,0.000000,0.000000,0.000000 -601360.555000,4612375.550000,3092,5055,112.571091,166.885132,167.546295,155.290100,140.496704,133.133072,134.719849,132.744644,134.637207,137.190918,140.852081,155.248779,175.389267,192.314896,207.488464,218.967804,221.893417,213.967804,195.381012,175.695053,164.744644,164.050430,160.281830,128.207458,106.331421,121.951256,146.628937,112.719849,51.281837,18.223158,14.571094,13.243817,11.905801,14.080181,17.369440,10.252080,0.607441,0.016529,0.095869,0.096694,0.000000,0.000000,0.000000,0.008265,0.000000,0.000000,1.101653,0.000000,0.000000,0.000000 -601369.155000,4612375.550000,3135,5055,120.519852,161.916534,165.999191,155.511597,141.693390,133.519852,135.478516,133.908279,134.883484,138.147934,142.073563,155.776047,176.032242,192.271912,207.247101,220.081802,224.528091,215.222305,194.949585,175.255371,163.933075,160.081833,156.809113,125.181000,103.610764,120.643814,136.627274,103.131424,49.304977,16.809937,14.255391,10.745470,11.060346,13.566133,15.504976,6.195878,0.898350,0.050414,0.017356,0.000000,0.000000,0.000000,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601374.555000,4612375.550000,3162,5055,123.566132,166.491745,166.772751,158.342987,144.863647,135.219025,135.673569,135.582657,137.466965,140.004150,144.954559,159.169434,178.822327,197.557846,211.690063,226.599152,230.351227,222.954529,200.681824,180.764481,171.053741,167.632248,162.863647,130.028946,106.954559,125.747948,141.921509,106.285141,49.582664,16.375225,14.805804,11.779355,11.252082,15.390925,16.559521,6.953731,0.712400,0.277687,0.123141,0.059504,0.030579,0.130579,0.015703,0.000000,1.259504,0.000000,1.108265,0.000000,0.000000,0.000000 -601378.555000,4612375.550000,3182,5055,112.247948,163.173569,164.190079,154.933884,143.264465,134.950409,135.355377,135.520676,137.338837,140.041321,144.958679,157.785126,178.272720,196.768600,212.363632,224.644623,229.099167,220.363632,198.991730,178.413223,166.495865,164.851242,160.090912,126.322311,105.479347,120.818184,138.958679,104.024811,48.396709,17.781008,14.553738,10.369435,10.017371,13.264478,13.902495,7.967781,1.061988,0.419010,0.020661,0.054546,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,1.997521 -601383.755000,4612375.550000,3208,5055,113.445465,160.974380,167.255371,156.346283,143.313232,134.800842,136.544632,134.627289,136.073563,140.420670,144.701660,158.536362,178.602478,195.990906,211.205795,224.197525,227.668594,220.057022,197.891739,177.577682,166.866943,163.610748,158.081818,126.726448,105.470261,120.552902,136.817352,101.470261,47.585968,16.638861,14.371093,10.226460,11.194230,11.081833,13.790926,8.370259,0.948763,0.529754,0.095042,0.047934,0.000000,0.377686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.355000,4612375.550000,3226,5055,120.576874,165.180191,168.411591,157.940521,145.808289,137.568604,137.114059,136.965317,139.849609,142.957047,146.882660,161.485977,181.998352,201.403336,217.105789,232.626450,236.395035,227.328934,205.477676,183.833069,173.114059,171.502487,165.981842,131.766953,109.461166,126.634720,142.221512,107.238022,51.204983,18.180185,15.089274,11.306625,11.963653,13.575223,16.144646,8.685964,1.294219,0.055373,0.107439,0.000000,0.038843,0.000000,0.000000,0.035538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.555000,4612375.550000,3247,5055,112.444641,164.641342,167.525635,154.955383,144.195053,136.029770,135.715714,135.252914,138.186783,142.261169,146.723969,159.095886,180.525635,198.633072,215.434723,229.641342,233.649597,224.839676,202.203323,181.013229,171.079346,168.740509,162.781830,130.550430,107.385139,123.823151,138.401672,101.839684,46.624813,18.226463,14.798367,8.652905,12.018199,13.233074,14.190100,6.955383,0.621490,0.288431,0.108265,0.280992,0.029752,0.000000,0.000000,0.117356,1.141322,1.235537,0.000000,0.000000,0.000000,0.000000 -601397.955000,4612375.550000,3279,5055,109.004150,160.293411,166.318176,156.227295,144.359528,136.219025,137.623978,135.904953,138.185974,141.756210,146.136368,160.210754,180.995865,199.756195,215.119827,229.756195,233.185944,224.351242,201.095047,178.342972,167.268600,164.177689,158.772751,127.615715,104.342995,120.673569,133.260345,98.954552,46.524815,17.884317,14.433904,9.880180,11.830596,11.769438,14.179356,6.332242,0.770251,0.147936,0.012397,0.019008,0.021488,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601405.155000,4612375.550000,3315,5055,119.170280,170.360321,167.633057,159.575211,146.393402,140.343811,139.186783,139.195053,140.046295,144.649597,148.988434,161.971893,182.360321,201.732224,217.170242,231.542145,236.633057,227.252884,202.294205,180.054535,169.319000,164.897522,161.327271,128.806625,106.723976,121.211586,133.418198,98.277702,46.434727,17.823984,14.666134,10.266130,11.217371,14.220678,15.216546,5.052902,1.095871,0.191736,0.117356,0.011570,0.000000,0.000000,0.000000,0.018182,0.000000,0.000000,1.077686,0.000000,0.000000,0.000000 -601408.555000,4612375.550000,3332,5055,109.742989,167.189255,167.247116,157.503311,146.181000,139.404129,138.577682,138.164459,140.999176,145.106613,148.412399,162.238846,182.635544,200.552902,217.230576,232.073563,235.610748,226.602478,201.263641,179.619019,167.924789,164.933060,158.718185,128.147949,106.404144,120.842163,131.866943,97.908279,46.222336,17.465307,14.428944,9.923981,10.588445,11.807454,12.257041,5.481828,0.980995,0.030579,0.016529,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.949587,0.000000,0.000000 -601411.955000,4612375.550000,3349,5055,99.810760,163.810760,170.430588,159.100006,149.571091,140.860336,139.984314,140.050430,142.752899,146.133072,150.182663,164.223984,184.571091,203.281830,219.819016,234.215698,237.025620,228.703323,204.290100,182.050430,170.843811,167.323151,162.736374,129.042160,108.141335,122.976044,134.885132,99.496704,48.133080,18.922333,14.794234,9.946296,11.656215,12.834727,14.995059,8.145466,1.046286,0.434713,0.039670,0.089257,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.100827,0.000000,0.000000 -601416.955000,4612375.550000,3374,5055,122.939690,161.865311,167.088440,160.551254,147.972748,141.311600,140.179367,140.666962,142.138046,146.427277,150.493408,164.394226,184.832245,203.815720,220.369431,234.766129,238.782654,229.344635,205.476868,181.609100,171.691742,167.551254,162.518188,130.576050,108.319855,123.047127,134.625641,98.939690,45.716545,18.981012,14.774399,9.719850,11.829769,13.489274,15.082663,7.401664,1.315707,0.622316,0.257026,0.000000,0.000000,0.000000,0.021488,0.024794,0.000000,1.289256,0.000000,0.000000,0.000000,0.000000 -601430.955000,4612375.550000,3444,5055,116.305801,164.181839,168.958694,160.239685,147.950424,139.826462,139.669434,139.380188,141.057861,144.917374,149.966965,163.917374,184.223160,202.479355,219.702499,234.066132,238.388443,229.462830,204.628113,180.958694,171.115723,166.041336,160.909103,128.661179,107.008278,121.000015,133.396713,95.776878,46.066135,18.218201,14.628119,9.652905,10.257867,11.714066,12.752081,5.206619,0.581822,0.304134,0.099174,0.000000,0.038017,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.155000,4612375.550000,3485,5055,123.312408,171.742172,170.477707,163.676056,149.436386,142.262833,141.676056,141.651260,144.651260,149.618210,152.510773,165.634735,187.221512,205.295883,221.766968,236.824814,240.601669,232.378540,207.262833,184.328949,171.990112,168.576889,162.163666,130.965317,108.957039,123.874405,134.700851,99.667786,47.221512,19.276052,14.742167,10.918196,12.812413,13.795058,14.189274,6.554559,1.257855,0.314877,0.023967,0.065290,0.000000,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601445.955000,4612375.550000,3519,5055,120.884315,167.842987,171.710754,163.413239,151.157043,143.545471,143.628113,143.479355,145.272751,150.322327,154.380188,167.842987,187.314072,206.165298,221.851257,236.206635,240.537201,232.371918,206.305801,184.826462,173.057861,169.958694,164.727295,132.462830,110.363655,125.537209,135.454559,100.107452,48.041344,19.315720,14.975225,8.904973,12.509108,13.165306,14.510761,5.944640,0.838847,0.394216,0.388431,0.057852,0.054546,0.133884,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.555000,4612375.550000,3537,5055,133.164490,171.486786,171.023972,163.073563,151.817352,142.792587,142.742996,143.007462,145.453735,149.519836,153.900009,167.255371,186.924789,205.453720,222.123138,235.131409,239.214050,232.172729,205.751236,183.784302,173.643799,168.296692,164.718185,132.395889,110.172745,124.585960,135.635559,99.957870,48.709938,18.445475,14.974399,8.971088,10.482660,11.475222,13.000017,6.085135,1.085955,0.277687,0.127274,0.017356,0.047934,0.000000,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.955000,4612375.550000,3564,5055,119.426468,175.360336,172.401672,163.327286,152.624802,146.980179,144.856216,145.674393,147.029770,152.079346,155.319016,169.038025,188.649597,206.633072,224.162003,237.409927,242.120667,232.781830,208.038025,184.162003,173.434723,170.128937,163.690918,132.302505,110.269440,124.790100,135.269440,99.476051,47.864483,19.114067,14.881012,9.100842,13.642165,12.568611,14.240512,5.831416,1.498352,0.661985,0.223141,0.000000,0.000000,0.000000,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.155000,4612375.550000,3580,5055,113.072746,179.361984,174.180176,166.428101,155.692566,144.386780,145.444641,146.039673,147.477692,153.849594,157.147110,169.824799,189.064468,208.659515,224.130585,238.262817,243.271088,234.221497,209.138855,184.651245,172.808273,169.337204,165.254547,132.923981,111.444649,125.320686,134.841339,98.585144,48.221512,19.714067,15.023160,9.234725,13.033901,12.809109,13.487621,6.966954,0.873556,0.138844,0.319009,0.000000,0.000000,0.197521,0.000000,0.132232,0.000000,1.145455,0.000000,0.000000,0.000000,0.000000 -601463.355000,4612375.550000,3606,5055,129.987610,172.814056,172.268600,166.640503,155.466949,146.309921,144.582642,145.913223,146.367767,153.119827,155.533051,169.020660,187.549591,207.822311,224.268600,237.913223,242.797516,233.888428,207.276855,184.037186,172.128098,168.979340,164.227280,131.376053,109.582664,122.648773,131.136383,95.904976,45.524818,18.739687,14.929771,8.042989,12.434727,11.544643,12.355388,5.117364,1.235541,0.257026,0.163638,0.032232,0.154546,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.155000,4612375.550000,3625,5055,134.016541,178.181839,176.619858,169.057861,156.380188,147.305801,146.099182,146.471085,147.438034,154.338852,156.809937,169.991745,188.347122,208.785141,224.033081,238.256195,243.033051,233.454544,208.239685,183.611588,172.066132,168.132248,162.818192,132.082657,109.371910,122.694221,131.776871,95.214890,45.049603,18.330599,14.801671,8.515717,10.826463,11.000841,11.692578,3.987610,1.289261,0.506613,0.161984,0.046281,0.029752,0.000000,0.004959,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.555000,4612375.550000,3642,5055,127.889267,180.426453,177.509109,167.211578,154.418198,145.856216,146.195053,146.814896,147.203323,153.996704,156.666122,169.219849,188.542160,208.137207,226.426453,237.988449,242.616547,233.566956,207.302490,184.137207,172.294235,167.814896,163.963654,130.137207,109.442986,123.352081,129.938858,94.897537,43.971920,19.363655,14.905804,6.839684,11.035553,11.667785,12.286794,5.952902,1.086780,0.224794,0.036364,0.392563,0.023967,0.000000,0.023141,0.180166,0.000000,1.358678,1.185124,0.000000,0.000000,0.000000 -601473.355000,4612375.550000,3656,5055,143.561996,180.421509,178.801666,170.479355,158.223160,146.578522,147.355392,148.008286,150.190094,154.793411,157.487625,170.900848,189.421509,209.570267,225.198364,240.165298,243.702499,235.239685,207.628113,184.537201,172.818192,169.528946,165.000015,131.826462,109.495880,123.809937,132.413239,95.917374,46.190102,19.788448,15.000019,7.252082,12.237206,11.720678,14.419852,4.460339,1.089261,0.504134,0.123141,0.000000,0.033884,0.000000,0.000000,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.155000,4612375.550000,3670,5055,135.526459,180.146301,175.873581,169.964493,158.071915,145.782654,146.063644,146.749603,147.410767,153.195877,155.931412,169.683502,187.592590,208.633911,224.865311,237.452072,241.534729,231.724823,206.452087,183.047134,171.774399,166.700027,161.972748,129.642151,108.691742,121.171082,128.609100,94.501663,43.592579,17.158695,14.724813,7.316544,10.379354,10.974396,11.611585,4.743811,1.004963,0.280167,0.129753,0.020661,0.044628,0.000000,0.000000,0.076033,0.000000,1.394215,0.000000,0.000000,0.000000,0.000000 -601479.955000,4612375.550000,3689,5055,149.052917,185.292572,177.391739,170.507446,157.606613,146.838013,148.424789,148.945465,149.259506,155.681000,157.201660,169.416534,189.061172,208.581818,222.383469,236.738846,240.928925,232.829758,207.400024,185.110748,172.920670,170.722321,165.945465,132.978531,112.647942,125.862823,134.846298,99.763649,47.143822,18.719027,15.085969,8.252081,10.328940,11.220676,14.098364,5.823150,0.912401,0.480168,0.137191,0.028099,0.000000,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.955000,4612375.550000,3704,5055,131.381012,190.108276,178.215714,169.645462,158.860336,146.934723,147.281830,147.744644,148.967789,155.926453,156.124802,170.000839,188.347946,208.099991,223.108261,236.372726,238.571075,230.356201,206.298340,185.190918,173.926453,170.438858,166.736374,134.141342,112.207458,126.455383,139.141342,104.108284,49.273575,18.624813,15.157870,6.252907,10.013240,11.280183,13.633076,6.393400,1.100003,0.561160,0.162811,0.079339,0.032232,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,2.612397 -601486.555000,4612375.550000,3722,5055,125.591759,185.137207,179.732239,169.484314,158.137207,148.715714,147.996704,148.459518,148.781830,154.666122,156.500839,169.178528,188.575226,208.120667,223.302490,236.104141,238.525635,230.162003,205.451248,183.178528,173.690918,169.748779,166.327286,133.608276,113.170265,126.261177,138.162003,103.963646,48.368614,18.858698,15.120680,8.952082,11.379355,13.128942,13.778530,6.884309,1.971079,0.305788,0.285125,0.019835,0.039670,0.000000,0.037191,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.755000,4612375.550000,3738,5055,118.681007,181.061172,179.755386,167.879364,154.499191,145.325638,145.904144,145.986801,146.747131,151.590103,153.631424,166.408279,186.457870,204.193405,219.532257,232.168594,233.606613,225.234726,200.813248,178.937210,169.490921,166.590103,161.127289,131.259521,109.962006,125.457870,134.895889,99.077705,46.085968,19.071091,14.647952,12.006627,13.160347,12.833076,13.863652,6.541331,1.048765,0.265291,0.390911,0.280992,0.067769,0.000000,0.036364,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.355000,4612375.550000,3751,5055,135.185150,177.581818,177.838013,167.895889,153.284317,146.788452,145.838043,144.920685,146.499191,149.490921,154.722336,165.970261,185.457855,203.466125,217.251236,231.242981,235.383469,222.474380,199.474380,177.300827,168.515717,164.672745,159.309113,129.656204,109.127281,123.606621,133.077698,97.945465,45.226467,17.490103,14.482664,12.476050,11.842167,12.890100,14.662001,7.545465,1.247112,0.171902,0.384299,0.314050,0.076860,0.000000,0.192563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.555000,4612375.550000,3772,5055,136.462830,182.429749,178.099182,168.776871,156.090912,146.785141,146.834732,146.413239,147.545471,150.677689,153.900833,167.826462,185.743790,204.454544,218.842972,232.256195,234.834717,222.942154,199.727249,177.900833,167.198364,165.537186,159.545471,129.181839,109.066132,120.809937,132.644638,96.561996,45.198368,18.330599,14.504150,12.564481,11.569439,12.828115,12.988445,6.142158,0.667772,0.127274,0.181819,0.000000,0.281818,0.000000,0.000000,0.176860,0.000000,0.000000,0.000000,2.226446,0.000000,0.000000 -601503.355000,4612375.550000,3806,5055,135.330582,182.809921,182.652893,168.842972,155.512390,145.198349,147.115707,145.305786,147.305786,151.570251,153.512390,167.082642,186.330582,204.578506,219.247940,232.925613,235.752060,225.446274,198.826447,176.842972,166.181824,162.462814,157.545456,125.173561,106.487610,117.793396,125.438026,89.975220,42.991760,17.619852,14.322333,11.210758,11.052910,12.251256,14.510759,6.252902,1.424797,0.642150,0.640498,0.205786,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601506.555000,4612375.550000,3822,5055,119.866959,184.843811,180.744629,169.488434,155.744644,145.422333,146.728119,147.116547,146.414062,151.290100,152.331421,166.480164,185.736374,203.546280,218.604126,232.281815,236.414047,223.463638,197.538025,176.513214,164.513214,162.876862,156.372742,124.976044,105.678528,115.785965,123.108276,87.653732,42.356220,17.153738,14.215720,10.352080,10.547122,11.021502,12.284314,4.361164,0.830582,0.250415,0.559506,0.382645,0.090909,0.000000,0.008265,0.009091,0.000000,0.000000,1.052066,0.000000,0.000000,0.000000 -601511.755000,4612375.550000,3848,5055,121.952896,185.136383,177.533081,169.359528,156.533081,145.309937,148.004150,146.252075,147.904968,152.756210,154.268616,168.152908,188.095062,205.400848,219.896713,234.028946,237.880188,224.698364,200.458694,177.929764,166.004150,163.690094,157.590927,126.400833,105.227280,118.483482,124.938026,89.483482,43.599194,17.043819,14.326464,12.517370,11.639686,13.153736,11.863651,4.982653,0.855375,0.325622,0.060332,0.078513,0.038017,0.061984,0.333058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.355000,4612375.550000,3866,5055,137.080170,192.419022,181.096710,171.427277,158.220673,147.088440,148.890091,147.898361,149.592575,155.220673,154.691742,168.708267,187.303314,206.038849,220.485138,234.832245,237.749603,225.559509,200.576050,178.691742,167.030594,164.708267,158.336380,127.534721,108.385971,118.402496,126.873566,91.857048,44.344646,18.817371,14.394234,12.930594,11.791752,13.405801,13.914065,7.378524,1.448764,0.430581,0.036364,0.261984,0.076860,0.053719,0.000000,0.007438,0.000000,1.263636,0.000000,0.000000,0.000000,0.000000 -601519.155000,4612375.550000,3885,5055,135.848770,193.187607,180.749603,170.757858,157.352905,145.452072,148.997528,147.154556,148.468597,153.782654,153.939682,166.642151,186.402496,204.460342,220.129761,234.022324,235.675217,223.220673,198.617371,177.700012,165.857040,163.005798,155.700012,125.460350,105.807457,117.435555,126.642166,90.782661,44.402496,18.384315,14.154565,13.563653,11.538033,13.952083,15.019026,7.760342,1.571904,0.495870,0.255373,0.182645,0.032232,0.000000,0.070248,0.000000,2.586777,0.000000,0.000000,0.000000,1.296694,0.000000 -601523.955000,4612375.550000,3909,5055,130.108276,188.116547,179.810760,170.397537,154.066956,143.265320,146.232254,145.083481,147.843811,152.959518,152.521500,164.942993,184.248779,202.124802,218.207458,231.984299,233.670242,220.381012,196.769440,175.133072,163.976044,161.595886,155.645462,123.042168,102.009117,115.529770,124.695061,88.909943,42.463654,15.785970,14.149606,12.104149,9.311585,11.748777,11.487618,7.776870,0.962813,0.201654,0.134711,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.755000,4612375.550000,3928,5055,139.950424,192.129761,178.154556,172.261993,155.352905,144.823975,146.220673,145.138031,147.022324,153.377701,151.807449,165.187607,182.790924,202.104965,217.518188,231.518188,233.443802,220.022324,196.493393,175.675217,165.559509,161.295044,155.881821,123.295052,103.947945,115.898354,125.212410,90.278519,44.179359,17.450432,14.171093,14.762825,11.114066,11.944645,13.985966,7.552078,0.860334,0.450415,0.434712,0.142149,0.000000,0.000000,0.151240,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.555000,4612375.550000,3952,5055,159.228119,203.509109,182.649597,174.319016,158.335556,144.509109,145.128937,145.914062,146.633072,154.409927,151.798355,164.302490,183.038025,201.343811,215.591751,230.881012,231.996704,217.897537,196.004974,174.277695,162.831421,159.385132,154.872742,122.401665,103.393402,117.071091,124.988441,89.203316,43.170269,17.575226,14.079358,14.219851,11.037208,10.371916,10.700841,7.370258,0.489258,0.330580,0.000000,0.000000,0.000000,0.000000,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.755000,4612375.550000,3988,5055,148.943832,205.741318,181.452072,174.328110,156.807449,144.576065,145.576065,144.551270,145.559525,153.328125,150.063660,163.129761,179.146286,198.782654,214.336365,228.823959,230.121475,215.187592,193.154556,172.154556,161.931412,157.319839,153.245483,120.270256,101.733070,115.981003,124.030586,88.311577,43.220680,17.491755,13.931423,14.317370,10.430594,11.928115,11.134726,7.497531,1.161159,0.300001,0.000000,0.024794,0.024794,0.000000,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.555000,4612375.550000,4012,5055,133.526474,195.708267,182.642151,171.493393,154.625626,144.212402,145.460342,143.609100,145.138031,153.369431,149.617371,162.113235,179.055374,197.278519,213.385956,228.113235,228.741333,213.741333,191.931412,171.022324,161.154556,157.146286,151.154556,120.154564,100.939697,115.939690,121.617371,86.964485,43.402496,18.086794,13.741340,13.295884,11.393405,11.525637,11.610758,6.572738,0.674382,0.076033,0.150413,0.000000,0.014876,0.000000,0.027273,0.052067,1.303306,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.155000,4612375.550000,4025,5055,117.868607,175.653732,171.736374,164.207458,150.199188,140.893402,141.100006,139.207458,141.397537,143.521500,148.058685,158.728119,177.909927,193.835556,208.422333,220.827286,224.810760,214.620667,190.670258,167.199188,157.381012,154.100006,147.918198,117.678520,97.579346,112.819016,121.810745,88.488441,41.521507,17.977705,13.447127,10.447122,10.149605,11.771918,12.885139,5.260340,0.988432,0.159505,0.149587,0.071901,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.755000,4612375.550000,4043,5055,117.115715,165.123978,173.396713,162.148773,149.057861,141.710754,140.917374,139.776871,140.479355,144.578522,147.619858,160.123978,177.636383,193.768616,210.628113,222.628113,224.966965,216.479355,191.413239,168.719025,158.487625,155.479355,148.000015,119.438034,98.958694,114.173569,123.066132,88.842995,42.892582,18.187620,13.454563,9.700841,10.929769,11.574397,13.223983,5.767779,0.907439,0.009918,0.203306,0.000000,0.079339,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.155000,4612375.550000,4060,5055,120.923988,168.238022,171.469421,162.014877,149.436371,141.353729,141.841324,141.196701,142.295868,144.766953,148.204971,159.295868,178.345459,195.519012,210.519012,222.609924,226.461166,216.271088,193.130585,169.114059,159.279343,155.833069,148.800003,119.874397,99.238029,112.948776,123.618195,88.452904,43.378532,18.224812,13.527291,10.083485,10.704976,11.435553,12.338860,5.457034,0.530580,0.255373,0.064463,0.023141,0.009091,0.000000,0.021488,0.071075,0.000000,1.267769,0.000000,0.000000,0.000000,0.000000 -601559.555000,4612375.550000,4087,5055,120.734734,169.875229,173.470261,164.437210,151.428940,142.321503,140.701675,140.536377,141.660355,144.048782,147.850433,159.329773,177.709930,194.503326,209.222336,222.371094,226.263657,216.842163,191.511597,168.817368,157.966141,154.751266,149.081833,118.924805,100.114891,113.825630,121.693398,87.693398,43.346302,17.157869,13.552912,9.974396,11.209107,11.331422,12.606627,6.397531,0.661985,0.394216,0.232232,0.029752,0.047108,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.155000,4612375.550000,4105,5055,106.289261,166.008301,170.074402,161.876068,150.413254,141.132263,140.900864,139.355408,140.892593,144.264496,146.537216,158.123993,176.578522,193.330597,208.396713,220.892563,224.933884,214.917358,188.446304,167.066147,156.157059,153.371933,146.909119,116.942154,97.206627,112.685959,119.322319,86.388435,42.801670,16.312416,13.355390,8.123981,7.290097,10.152908,10.616544,4.628107,0.728100,0.082645,0.148761,0.000000,0.016529,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.155000,4612375.550000,4135,5055,113.842987,164.818176,170.380173,162.256195,149.446274,141.446274,140.892563,139.173553,141.396698,143.851242,146.917358,158.743805,176.264465,194.272720,208.917358,221.140503,225.305786,215.793396,190.330582,166.611572,156.148758,152.595047,146.909088,117.578522,98.016541,111.578522,120.355377,84.983490,42.198368,14.939687,13.355392,7.829764,9.960345,10.361174,11.597536,4.592570,0.420662,0.002479,0.066116,0.129753,0.016529,0.000000,0.019009,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.555000,4612375.550000,4162,5055,133.014069,169.749603,174.394226,164.981003,150.352905,144.989273,144.584305,143.121490,143.245468,146.658691,149.790924,162.071915,179.336380,195.914886,211.063644,224.716537,227.129761,216.790924,191.757858,169.691742,158.873566,155.369431,149.790924,119.666954,100.733070,114.063644,121.559517,88.881828,43.171097,20.099194,13.617374,9.810756,10.948776,12.450430,12.372744,8.047118,1.061159,0.220663,0.251240,0.000000,0.109918,0.000000,0.056199,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.555000,4612375.550000,4177,5055,122.357864,164.985962,175.663635,166.109924,151.266953,144.556198,142.738022,142.878525,143.200836,146.787613,150.151245,161.390915,179.357864,195.985962,211.605789,223.638855,228.192566,216.895050,191.713226,169.481827,158.167770,155.911575,148.936371,119.919846,99.936378,113.176048,122.531418,89.052078,43.200848,18.039688,13.539689,9.128940,9.869438,10.082662,11.575224,6.495050,1.093391,0.261158,0.157852,0.027273,0.000000,0.000000,0.006612,0.087604,0.000000,0.000000,0.000000,1.980166,0.000000,0.000000 -601581.555000,4612375.550000,4197,5055,117.467781,162.558685,170.029770,161.781815,149.781815,141.442978,141.872726,141.930573,142.872726,145.922318,148.814880,160.178513,178.335556,194.517365,208.881012,222.252899,225.211578,214.112411,189.839676,166.525620,156.046280,151.715698,146.145447,117.071091,98.310760,110.426460,119.013237,85.914062,42.715725,17.004150,13.285969,7.567782,9.714066,10.485966,10.576873,5.280174,0.973555,0.561158,0.450414,0.246281,0.022315,0.104132,0.076033,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.555000,4612375.550000,4222,5055,119.779350,168.341324,173.721497,163.812408,150.440506,143.704971,141.746292,141.457031,141.647110,145.589264,148.399185,159.242157,177.184311,193.473557,208.713226,220.308273,222.919846,211.944641,188.200836,165.630585,154.341324,151.738022,144.390915,115.837204,96.721504,111.572739,117.564476,87.506622,41.820683,17.215719,13.126466,10.280182,10.493405,9.954562,12.872745,6.603315,0.573556,0.561985,0.152893,0.038843,0.028926,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.555000,4612375.550000,4242,5055,119.076050,171.439697,174.224792,165.076050,152.067780,144.018188,141.985138,141.795044,142.538849,145.811584,148.481003,160.158691,177.761993,194.704147,209.621475,220.439667,224.208252,212.505783,186.414886,164.241333,154.522324,150.522324,145.109100,116.142166,96.076050,109.200020,118.233078,84.423157,41.249611,17.501671,13.191754,7.796708,10.162001,10.052908,9.594228,4.990918,1.055374,0.156199,0.161158,0.000000,0.000000,0.000000,0.024794,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.155000,4612375.550000,4275,5055,117.385139,168.599991,174.252884,163.798340,152.071075,142.963638,142.285950,141.285950,142.914047,145.823135,147.195038,158.566940,176.550415,193.434708,207.261154,219.195038,221.889252,211.575211,185.823135,163.889252,153.004959,147.517349,143.781815,114.426460,95.682655,107.996704,116.228111,84.575218,41.352081,16.553738,13.071093,6.997533,9.703322,10.031423,10.048775,4.319015,0.726448,0.220661,0.372728,0.000000,0.080992,0.000000,0.000000,0.013223,0.000000,0.000000,0.000000,1.109091,0.000000,0.000000 -601601.155000,4612375.550000,4295,5055,118.025635,176.174377,175.488434,165.695038,152.141312,144.562805,143.513214,142.232224,143.248764,146.430573,149.604126,159.843796,178.207428,194.430573,209.017349,221.455368,222.703308,212.372726,187.058670,163.992554,153.992554,150.215698,142.827271,115.166130,96.414062,108.876869,117.042160,86.009102,42.356220,19.153738,12.984316,8.495880,12.325636,10.023156,11.889270,5.140506,1.091738,0.403307,0.297521,0.050414,0.084298,0.000000,0.009091,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.355000,4612375.550000,4311,5055,121.142159,171.340500,171.266129,163.993393,150.158691,141.489273,141.042984,139.299179,140.051254,143.753723,145.968597,156.117371,174.530594,190.084305,205.547119,216.894226,218.852905,208.943817,183.580170,160.704147,150.497528,145.563644,140.109100,113.505798,92.274391,107.414886,113.861168,82.761993,39.414898,15.946299,12.737209,6.759515,8.922330,10.719025,9.866955,3.771081,0.283472,0.271075,0.211571,0.012397,0.071075,0.000000,0.000000,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.955000,4612375.550000,4334,5055,121.451256,165.298355,170.752899,160.091751,149.438858,140.488449,138.761169,139.124802,139.058685,142.637207,144.827286,155.992569,172.810760,189.827286,203.860336,215.992569,218.298355,208.265305,182.686783,161.496704,150.257034,145.909927,139.372742,111.133072,92.579353,105.571091,114.752907,84.414070,39.984318,15.814895,12.670268,5.506622,9.464479,8.999190,9.530592,5.258687,0.577687,0.249588,0.358678,0.074381,0.004959,0.000000,0.030579,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.755000,4612375.550000,4348,5055,124.972740,167.584305,172.113235,164.435547,150.749603,141.047119,139.898361,139.286789,140.047119,143.385956,144.947937,156.766129,172.476868,190.600830,205.063644,215.700012,218.857040,207.559509,183.344635,159.609100,149.600830,144.261993,140.154556,110.815712,92.452072,106.253731,114.295052,84.204140,41.262005,16.621506,12.741341,7.789268,9.400017,11.014893,10.678526,4.090090,0.603308,0.300001,0.411571,0.009918,0.000000,0.000000,0.029752,0.129752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.955000,4612375.550000,4364,5055,122.566132,172.243820,173.260345,164.789276,150.483490,140.929764,139.665298,139.433899,139.260345,142.814072,144.500015,155.756210,172.549606,189.351257,204.516541,216.219025,217.665298,206.450424,182.028946,159.979355,148.442169,144.260345,138.863647,109.384315,90.913239,105.781006,115.045464,85.318199,41.599194,15.473571,12.623985,6.542160,9.037205,10.359519,9.044642,3.986785,1.546284,0.047108,0.061157,0.142975,0.003306,0.000000,0.046281,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.155000,4612375.550000,4390,5055,116.399185,170.250443,172.407455,164.382645,150.779358,140.688431,140.200836,140.167770,140.762833,144.333069,146.200836,157.275208,173.878540,190.985962,205.324799,216.787613,218.845459,209.258682,183.795883,161.250427,150.167786,146.002487,140.663635,111.688446,92.572739,106.928116,115.936378,85.729767,41.655388,17.395887,12.787622,7.040507,10.011587,10.831422,10.748775,4.184306,1.287606,0.524794,0.673554,0.077686,0.021488,0.297521,0.000000,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.955000,4612375.550000,4414,5055,124.862007,176.184326,175.870270,164.944641,152.919846,142.192566,140.704971,139.638855,140.159515,144.564468,145.928101,156.440506,173.407455,190.143005,203.481842,215.671921,218.399200,206.961182,181.126465,158.853729,147.771088,143.002487,137.936371,109.605804,89.415718,105.076881,114.440521,83.762833,40.977703,17.782661,12.539689,5.842986,9.000016,11.036380,9.915716,5.251248,1.272730,0.128099,0.092563,0.000000,0.021488,0.000000,0.057025,0.000000,2.689256,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.155000,4612375.550000,4445,5055,125.008293,170.057861,169.157043,163.157043,150.966965,141.223160,140.553741,140.752075,141.752075,145.776871,147.281006,158.107452,174.735550,191.644638,204.834732,215.553741,218.247955,206.628113,181.793411,158.363647,146.289276,141.900848,137.272751,108.834732,89.289276,102.900841,113.933907,83.950432,41.107460,14.761174,12.479358,4.878521,8.480182,7.884312,9.235551,3.113230,0.684299,0.068595,0.047934,0.374381,0.099174,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.755000,4612375.550000,4463,5055,127.380180,177.571091,172.314896,164.678543,155.604156,142.000854,141.571106,141.381027,139.372757,144.529785,144.695068,155.901688,172.314896,189.645462,203.347946,214.389267,216.769440,206.009109,181.480179,158.066971,147.918213,143.314911,138.554581,109.852081,89.909927,103.926460,112.529762,84.314888,40.736382,16.847952,12.595887,7.000011,9.170265,9.089272,10.624807,4.500834,0.411571,0.018183,0.366943,0.028099,0.098348,0.000000,0.128926,0.000000,1.491736,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.155000,4612375.550000,4480,5055,114.723160,178.839676,175.715714,167.814896,154.261169,142.459518,141.120667,141.145462,141.310760,145.980179,144.980179,156.798355,173.996704,191.442993,205.112411,217.294205,219.442978,207.938858,182.666122,160.038025,149.649597,145.054565,139.872742,109.203316,92.095879,105.054558,113.343811,84.269432,40.690929,16.407457,12.715721,6.800010,9.724811,10.585139,12.510759,4.944636,1.236366,0.920663,0.783472,0.337191,0.123141,0.080992,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.755000,4612375.550000,4493,5055,123.575218,182.360336,175.128937,165.839676,152.029770,141.360336,140.376877,139.889267,139.327286,144.434723,144.649597,154.881012,171.699188,190.277695,203.814896,215.004959,216.418182,205.219849,180.600006,158.806625,146.401672,142.558685,137.418198,109.467781,89.847946,103.112411,113.401665,83.277702,40.839691,16.576054,12.492581,5.992571,9.584313,8.753734,9.577700,3.415709,0.320662,0.124794,0.278513,0.000000,0.081819,0.000000,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601650.555000,4612375.550000,4542,5055,124.787621,176.721512,173.895065,160.242157,144.655396,136.068604,135.010742,131.572723,131.399170,131.961151,132.903305,144.019012,161.250427,175.035553,187.647125,197.911591,198.870270,187.316559,164.696701,143.903336,134.333054,132.109909,126.663643,98.944633,82.647125,94.134720,103.713234,74.291748,36.721508,14.996714,11.514895,10.086791,9.223155,8.659517,10.848776,5.133892,0.647109,0.028926,0.212397,0.054546,0.000000,0.028926,0.157852,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.555000,4612375.550000,4572,5055,117.931419,171.832260,171.262009,159.799194,144.914902,133.881836,132.757874,131.600845,130.551254,131.683487,132.245468,143.476883,160.559525,174.708298,187.104980,197.658707,197.989288,186.881851,163.658707,144.295074,133.906631,132.063660,126.063652,98.278534,81.509933,94.394234,102.460350,74.377701,34.700016,14.035554,11.460350,8.869435,8.318196,8.245468,8.905800,3.952901,0.570250,0.147935,0.278513,0.000000,0.150414,0.000000,0.071075,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612375.550000,4587,5055,121.247948,174.859528,169.446304,161.049606,145.727280,134.719025,134.247955,132.115723,130.281006,132.661179,133.545471,143.793396,160.917374,175.000015,186.892578,197.809921,198.760330,187.892563,163.297531,143.859497,133.487625,131.057861,124.909103,98.561996,81.669441,95.016548,102.272743,76.132248,34.785149,15.640515,11.355392,9.695055,8.519848,10.519849,9.975223,2.969429,0.805788,0.223968,0.229752,0.000000,0.000000,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612375.550000,4605,5055,126.463646,174.620651,173.661987,161.133072,145.785980,135.703323,134.579346,132.223984,131.422333,133.513229,132.876877,143.777710,160.306625,175.050415,187.670242,197.455383,198.116547,186.290085,162.529770,142.438873,132.959518,130.215714,125.190926,98.009102,81.083504,91.976044,101.926460,75.298378,34.538033,15.166134,11.381012,9.201667,8.172741,7.965302,10.501668,2.867776,0.886779,0.511572,0.171901,0.199174,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.823967,1.316529,0.000000 -601665.755000,4612375.550000,4618,5055,112.228951,178.476868,173.402496,161.146286,146.873566,135.427277,134.344650,132.749603,131.452087,132.840515,133.278534,144.609100,160.815720,176.228943,187.195877,197.551254,198.873566,186.799179,162.989273,143.237198,133.542999,130.361160,124.700012,96.997543,81.385971,93.303322,103.038872,74.807465,36.071918,14.376050,11.336383,9.140509,9.015717,8.871088,8.913238,2.400832,0.632233,0.131405,0.063637,0.000000,0.000000,0.000000,0.047108,0.172728,0.000000,0.000000,0.000000,0.887603,0.000000,0.000000 -601668.355000,4612375.550000,4631,5055,124.875221,176.354553,171.933060,161.139694,148.784302,134.139679,134.949600,132.296707,131.850418,133.338028,133.329758,143.652069,160.288437,175.189255,188.247116,198.627274,197.007446,186.123138,163.114883,143.181015,132.585968,130.189270,125.263649,97.197533,81.544647,92.891747,101.445465,74.610764,34.792580,16.098366,11.387622,8.984311,8.070262,9.326462,8.148774,2.852074,0.697523,0.288431,0.403307,0.062810,0.000000,0.008265,0.115703,0.000000,0.000000,0.000000,0.000000,1.650413,0.000000,0.000000 -601677.355000,4612375.550000,4676,5055,120.733070,182.923157,173.038849,161.187607,146.278519,134.741333,134.906616,131.890091,131.832245,134.997528,132.799179,144.435547,160.427277,175.898361,188.245483,199.476852,198.799164,185.311584,162.286789,143.625626,132.187607,130.162827,123.518188,96.402496,80.642166,92.609100,102.278519,74.369438,35.063656,13.933903,11.228945,9.371915,7.415715,7.904971,9.422329,3.078519,0.573556,0.154546,0.182645,0.002480,0.061157,0.003306,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601683.155000,4612375.550000,4705,5055,126.828117,182.819839,173.158691,165.985138,149.687607,135.919022,137.489273,134.762009,134.530594,137.125626,135.166962,146.472733,162.067780,178.439682,191.158691,201.439682,202.042984,186.076050,163.357040,143.894226,132.770264,130.332245,125.472748,97.439690,81.076050,94.274399,102.406631,73.555389,34.423161,14.599193,11.406631,7.741336,9.042165,8.030592,8.748775,2.638023,0.555374,0.150414,0.052893,0.005785,0.000000,0.000000,0.262811,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.955000,4612375.550000,4719,5055,128.604980,184.373566,174.282669,166.621521,149.200027,136.348770,136.770279,133.943817,133.514069,138.191757,134.761993,145.224823,162.067795,178.332260,190.109116,200.431427,200.084320,186.629761,164.695892,143.621521,134.224808,131.836380,125.563652,97.927292,81.282661,94.852913,103.629768,75.257866,35.762001,16.154564,11.414895,14.032248,9.790925,10.110758,9.845471,4.490093,0.949589,0.499175,0.002479,0.009091,0.026447,0.000000,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.555000,4612375.550000,4742,5055,145.645477,188.356232,177.265320,166.852097,150.182663,136.571091,136.223984,134.232239,133.579346,137.612411,135.100006,145.728134,161.620697,178.422348,190.058701,200.860367,200.009125,185.133087,163.166138,144.290115,134.009109,129.819016,125.190933,96.240517,79.918205,95.777710,103.017365,73.819031,34.752914,14.368612,11.381011,9.702496,7.647120,8.511584,9.395884,3.541331,1.072731,0.152067,0.057025,0.023141,0.186777,0.000000,0.000000,0.000000,0.000000,0.000000,2.297521,0.000000,0.000000,0.000000 -601698.155000,4612375.550000,4780,5055,138.180176,188.262802,175.204971,170.428101,149.279343,137.593399,136.899185,134.824814,133.229767,139.684311,135.428116,145.733887,161.766953,177.973557,191.659500,202.246277,200.229736,185.188416,164.204971,144.667770,132.775223,130.014893,126.163651,97.130592,79.800018,94.593407,103.328941,73.973572,34.254566,14.476051,11.469441,10.576877,9.076048,7.962823,8.290096,5.215712,0.366117,0.203307,0.277686,0.023141,0.063637,0.000000,0.060331,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.755000,4612375.550000,4833,5055,119.443817,166.270248,171.964462,161.195862,148.799164,138.096695,136.625610,133.923157,135.361160,135.716537,137.253708,148.311569,165.832230,181.749573,194.121475,204.757843,205.014038,192.906601,168.857025,147.286774,135.708267,133.220673,128.245453,98.881836,82.022331,96.609108,106.865311,77.443817,37.576050,15.624811,11.658696,9.647121,9.994230,10.277702,9.346297,4.133066,1.276035,0.120662,0.109918,0.119835,0.186778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.166943,0.000000,0.000000 -601723.955000,4612375.550000,4909,5055,109.376869,168.335556,172.757034,161.558685,147.575226,138.203339,135.128937,134.765305,133.533890,136.707474,137.294250,148.095886,166.228119,181.418198,194.864487,204.285980,205.071091,193.087631,168.418198,148.376877,135.748779,133.161987,127.690910,98.509102,82.261169,96.153732,106.633064,78.137215,37.930595,16.823986,11.608283,9.023154,9.250429,10.117372,9.598361,4.239678,0.369423,0.137191,0.180992,0.000000,0.065289,0.000000,0.031405,0.000000,2.641323,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.555000,4612375.550000,5027,5055,117.041336,168.404968,172.669434,161.305801,147.776871,139.082642,136.008286,134.504150,134.132248,137.049606,137.727280,148.487625,166.685974,182.214890,195.586792,206.132248,206.206635,194.826462,170.586792,149.330597,137.338852,134.628113,129.272751,101.231415,82.586792,97.578522,107.900841,80.371918,37.636383,16.762829,11.752086,6.900011,9.004973,9.713239,8.018196,4.055379,0.347935,0.357852,0.183472,0.000000,0.004132,0.000000,0.019835,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601783.155000,4612375.550000,5205,5055,125.250435,170.523148,169.407455,160.944656,145.911591,136.283478,134.283493,133.688446,133.324814,136.399200,136.093399,147.870270,166.143005,182.787613,194.638855,205.738022,206.423981,196.200836,172.068604,149.151260,137.969437,134.366135,129.209106,99.895065,80.994240,96.622337,108.506638,80.944649,37.374397,14.922333,11.746300,5.912407,8.246297,7.552083,7.995055,3.982654,0.714877,0.000000,0.000000,0.000000,0.026447,0.000000,0.000000,0.257025,0.000000,0.000000,1.104132,0.000000,0.000000,0.000000 -601802.355000,4612375.550000,5301,5055,125.018196,174.877716,172.687622,165.671097,150.828110,138.547134,138.555405,136.373566,135.852905,139.266144,139.596725,151.894226,168.431427,186.117386,197.786804,209.555374,209.968597,201.059525,176.216553,153.761993,142.150436,137.960342,132.381836,101.811584,84.365311,98.456223,113.431419,84.175224,39.877705,16.330597,12.034730,7.018192,9.325636,7.823984,7.559517,3.230586,0.575208,0.068596,0.389257,0.079339,0.085125,0.000000,0.014876,0.020662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601813.355000,4612375.550000,5356,5055,124.638855,182.911575,173.812393,166.622299,152.523132,139.440506,138.919846,137.936371,137.159515,141.200836,140.738022,152.159500,169.804123,188.176041,200.704971,211.638855,213.473557,203.415710,179.721481,157.258667,144.919846,140.506622,134.481827,104.184311,85.812408,101.812408,115.870262,87.176048,39.696712,16.923986,12.225638,5.917366,7.890926,9.815720,9.564477,3.466122,0.382645,0.265290,0.000827,0.284298,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,1.258678,0.000000,0.000000,0.000000 -601818.355000,4612375.550000,5381,5055,122.227287,183.987625,179.582657,165.194229,147.574402,138.557861,138.574402,135.805801,135.524811,139.020676,140.318192,153.053741,170.475220,188.359497,202.045456,215.144638,216.376053,203.739670,179.871918,156.400848,146.169434,143.136383,137.227295,106.665298,89.037209,104.855377,117.772743,83.772743,42.070267,16.866961,12.475225,10.142990,11.352083,12.048778,12.347951,6.125629,1.423971,0.279340,0.466117,0.000000,0.244629,0.000000,0.141323,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.955000,4612375.550000,5409,5055,108.074409,179.256210,179.123978,163.685974,148.975220,137.578522,137.628113,134.454559,136.256210,137.652908,138.793411,150.165298,170.735550,188.528915,202.545456,213.743805,216.256195,203.297516,177.702499,154.966965,144.694229,142.404968,137.181839,106.677704,89.900841,103.669441,116.628113,84.115715,42.049606,16.299192,12.471093,11.374395,11.029768,11.127289,11.304973,4.757033,0.847936,0.295869,0.433885,0.000000,0.057851,0.000000,0.057852,0.083471,0.000000,1.563636,1.271075,0.000000,0.000000,0.000000 -601827.355000,4612375.550000,5426,5055,118.364479,178.990921,178.147949,166.327286,150.657867,141.699188,141.269440,138.360336,138.186783,140.707458,141.186783,154.583481,172.624802,191.062820,203.418198,216.095871,219.195038,205.533890,180.955383,157.707458,146.624802,143.856216,138.145462,106.426460,89.707451,103.517365,115.591751,84.988441,40.996716,17.386795,12.558697,11.370260,9.084314,11.295885,13.056215,6.225631,1.209920,0.352894,0.447935,0.079339,0.000000,0.000000,0.000000,0.180166,1.552893,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.555000,4612375.550000,5447,5055,108.867790,186.338837,178.900833,165.628098,147.768600,136.165298,137.809921,135.157043,134.066132,137.917358,137.950409,150.000000,170.148758,187.289261,199.933884,214.603302,215.842972,203.049591,178.710739,154.859497,145.512390,142.735535,138.272720,107.041344,90.090935,105.562004,116.958702,85.826469,44.413246,16.718201,12.570267,13.801668,10.114892,13.188446,14.971090,6.846291,1.934713,0.840497,0.375208,0.387605,0.193389,0.024794,0.290910,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.755000,4612375.550000,5483,5055,112.121506,180.850418,177.619019,165.329758,151.850433,138.247131,139.676880,135.759521,135.842163,138.891769,138.635574,153.470245,170.850418,189.379349,202.478516,216.313232,217.263641,204.536362,179.552902,157.982651,147.602493,143.585968,140.172729,108.759521,91.842171,105.073570,117.693405,86.205803,41.817375,17.587622,12.742993,12.050430,10.233075,11.838861,12.848776,6.908273,1.969425,1.501655,1.204134,0.684299,0.252067,0.000000,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.555000,4612375.550000,5497,5055,114.614891,181.876053,181.553726,164.900848,149.429764,137.677704,138.652908,136.454559,136.966965,139.537201,138.917374,152.247955,170.801666,188.842972,201.975204,215.719009,216.842972,202.289261,178.842987,158.793411,145.487625,141.297531,137.545471,105.809937,88.314064,104.925629,116.214882,83.082664,42.421513,17.051258,12.504151,11.319022,7.887619,11.966132,9.169435,5.819017,1.517359,0.512398,0.180166,0.173554,0.095868,0.000000,0.023967,0.013223,0.000000,3.186777,0.000000,0.000000,0.000000,0.000000 -601845.155000,4612375.550000,5515,5055,122.596703,187.185944,176.698364,166.557861,147.136383,135.152908,136.665329,134.210754,135.219025,137.987640,137.690109,149.466965,169.508286,186.962830,200.797516,213.648773,214.574402,200.904953,178.061996,155.590927,144.062012,141.665329,137.772766,105.756203,88.665306,103.376038,115.086784,84.028938,42.086792,15.413239,12.524812,11.029765,9.442165,10.591750,12.618197,5.549597,0.957853,0.193389,0.196695,0.090083,0.013223,0.000000,0.200000,0.073554,0.000000,0.000000,0.000000,0.000000,2.677686,0.000000 -601847.755000,4612375.550000,5528,5055,116.002487,187.423950,181.118179,169.771057,154.060333,140.828949,143.043823,139.333084,139.795883,144.258698,144.143005,155.498352,172.663620,192.209076,203.928085,218.308258,218.556183,204.663620,182.018997,159.415695,148.192581,145.415726,138.481842,108.795876,91.300003,107.415710,118.043808,86.109924,43.134727,17.151258,12.589273,13.591751,10.971091,12.166131,14.798362,7.371085,1.281821,0.518183,0.580166,0.057851,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601850.355000,4612375.550000,5541,5055,110.947128,179.368607,178.038025,165.302490,149.442993,137.872742,137.996704,136.525635,134.558701,140.484314,139.641342,151.228119,167.542160,184.046295,197.046295,209.798355,211.798355,200.823151,176.633072,156.302490,146.352081,143.112411,141.036377,114.019852,98.094231,113.201675,119.036385,88.920677,42.300846,16.069437,12.821506,8.528935,8.333897,10.265306,10.536377,3.919015,1.100829,0.607439,0.020662,0.188430,0.309091,0.000000,0.097521,0.254546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601854.555000,4612375.550000,5562,5055,119.187614,175.146286,177.237198,167.212402,155.071915,140.476868,141.377701,140.567780,140.261993,144.171082,144.113235,155.947937,171.666946,189.121490,202.476868,214.650421,217.675217,206.187607,183.228943,160.361160,151.815720,148.501663,143.245468,115.261993,97.683479,110.964470,117.369431,87.501663,42.724812,17.485970,13.022333,8.284311,11.367784,10.709932,10.465302,4.547117,0.786779,0.285125,0.090084,0.423968,0.029752,0.019009,0.272728,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.555000,4612375.550000,5597,5055,105.409935,169.914078,173.376892,164.839691,150.360336,140.046310,139.112427,138.641357,137.732269,143.426453,143.732239,154.385132,169.459534,186.558701,199.558701,212.137207,215.616547,203.806625,179.145477,158.087616,148.624802,144.492584,140.054581,112.633080,95.013245,107.633080,114.004982,84.087624,39.319027,14.654563,12.732250,5.862822,9.058693,9.637206,9.644641,2.290915,0.357026,0.127274,0.061984,0.055372,0.007438,0.097521,0.199174,0.073554,1.635537,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.555000,4612375.550000,5632,5055,118.893402,173.777695,174.422333,166.678528,154.108276,145.207458,143.736374,140.976044,141.314896,145.645462,145.736374,155.711578,171.802490,188.612411,201.546295,215.711578,216.571091,205.571091,181.984314,160.174393,152.199188,147.083481,142.009109,115.091751,96.777702,111.579353,116.339684,83.447121,42.174400,18.908281,12.909936,8.281829,12.723156,10.083486,11.199187,6.650423,3.257856,0.470250,0.009092,0.680993,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.155000,4612375.550000,5660,5055,94.200851,165.043808,170.415710,161.704971,148.589264,138.275208,137.043808,135.242157,135.382645,139.423981,141.266953,151.134720,166.779343,184.423981,196.911575,209.448761,212.233887,201.209091,176.713226,155.324799,145.630585,142.316528,136.936371,110.316536,92.969437,105.704964,110.895050,82.523155,38.300022,15.445472,12.448779,6.089269,8.574394,7.794229,7.876043,4.819016,1.109094,0.074380,0.146281,0.088430,0.000000,0.102480,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.955000,4612375.550000,5694,5055,114.100014,163.777679,172.414047,164.083466,149.661987,140.703323,137.546295,136.719849,137.166122,139.438858,141.695053,152.670242,167.430573,183.083466,196.207428,208.438858,209.976044,201.174377,177.050415,154.752884,146.124802,142.670258,136.281830,109.785965,92.504974,106.769432,113.529762,83.356209,39.843822,17.009109,12.389276,7.296708,10.374395,9.742990,11.093403,4.958687,0.722318,1.000002,0.195868,0.042149,0.000000,0.043803,0.619009,0.418182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.955000,4612375.550000,5739,5055,100.652916,161.843002,172.049622,161.000031,145.595078,138.785141,135.066132,132.942169,133.066132,134.727295,136.396713,146.991760,162.975235,179.231430,192.504166,203.669449,205.942184,195.256226,171.909119,150.834747,141.371918,138.247955,132.545471,105.677704,89.041336,102.446297,110.768608,80.958694,39.710758,16.222334,12.049607,7.596706,10.831421,9.371090,9.182657,4.144636,0.886780,0.279340,0.198348,0.079339,0.000000,0.247934,0.000000,0.471075,0.000000,0.000000,0.000000,0.000000,0.000000,3.190909 -601898.155000,4612375.550000,5780,5055,95.131416,162.412415,165.652084,158.106628,144.941345,136.486801,135.065308,132.214066,131.495056,133.800842,135.271912,145.643814,160.982666,176.718201,189.693405,201.263657,203.453720,192.784317,170.214066,148.280182,139.065308,135.131409,130.627289,102.247116,85.693398,101.461998,110.701668,80.866959,37.453739,16.224812,11.875226,6.952078,7.804146,9.255389,8.251251,3.680173,0.714052,0.371902,0.138017,0.000000,0.000000,0.099174,0.071901,0.398347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601901.355000,4612375.550000,5796,5055,100.594231,155.949600,167.833908,158.495056,142.668610,136.288452,133.222321,130.205795,129.809097,131.428940,133.528107,143.214066,159.098373,175.891754,187.676880,198.718201,199.437210,190.800842,168.792587,146.313248,137.106628,134.445465,129.809097,101.214058,85.825638,98.461998,110.015717,78.933075,39.519855,15.263654,11.800846,6.808276,8.534724,10.441339,8.209103,2.657031,0.642151,0.257852,0.195868,0.000000,0.015703,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601907.355000,4612375.550000,5826,5055,100.988449,157.674393,168.715714,157.674393,143.864471,136.335556,133.079346,130.426453,129.715714,130.963638,133.046280,143.550430,160.418198,174.707458,187.186783,199.236374,200.426453,188.971909,166.897537,147.128937,137.798355,133.715714,128.418182,101.335548,84.451263,99.591751,108.732246,78.682663,38.814896,16.338034,11.674399,6.533069,8.893403,9.239686,9.203320,2.537197,0.816531,0.069422,0.072727,0.093389,0.000000,0.233059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601911.155000,4612375.550000,5845,5055,103.805809,155.847137,167.235565,159.607468,145.136383,136.665298,134.623978,132.417374,131.061996,132.847122,133.797531,145.012405,160.541351,177.243835,187.847137,198.739700,201.417389,190.863663,168.632263,148.078522,138.309937,134.533081,130.318192,103.516541,86.185966,100.599182,109.177696,81.318199,38.921505,16.426464,11.847127,8.341335,10.338860,7.914065,9.853733,4.019842,0.352068,0.029753,0.066116,0.070248,0.000000,0.203306,0.228099,0.305785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601914.555000,4612375.550000,5862,5055,92.725632,154.700836,168.014877,158.932236,145.609924,136.039673,133.006622,131.560349,130.882660,131.469437,133.733902,144.667770,160.568604,175.626450,189.279343,200.006622,200.990082,190.899185,167.056198,147.295868,137.849594,134.047943,128.618195,102.634727,85.841339,99.915718,108.395058,79.700844,38.866138,15.866135,11.692581,7.456212,10.095883,10.406629,9.684312,5.044637,0.634713,0.235538,0.127273,0.000000,0.000000,0.343802,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,1.283471,0.000000 -601919.555000,4612375.550000,5887,5055,89.644653,155.272720,165.636368,156.933884,143.181824,135.438034,131.628128,130.206635,130.223160,130.438034,132.421509,142.884293,159.033051,175.099182,187.264481,198.785126,200.280991,189.314056,167.074387,146.793396,136.760345,133.338867,127.818207,101.760345,85.074394,99.843002,109.834732,80.347122,38.314072,14.020679,11.619854,8.177698,8.561997,8.884313,7.368607,4.219842,1.155375,0.239670,0.224794,0.123141,0.009918,0.012397,0.219835,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.155000,4612375.550000,5915,5055,86.293404,156.929749,170.177704,158.243805,143.756195,135.483490,132.185959,130.078522,129.913239,131.723160,132.805786,143.756195,159.648758,175.219025,187.731400,199.152893,199.913223,189.202484,166.301651,146.913223,135.764465,132.243805,128.136383,100.128105,85.028938,98.334717,108.830597,79.913239,37.847130,13.347951,11.648780,6.485961,9.510759,10.647123,10.014062,3.712404,0.689260,0.181820,0.000000,0.108265,0.438017,0.090083,0.000000,0.447108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.155000,4612375.550000,5935,5055,98.836380,158.307449,169.109100,159.357040,144.481003,135.621521,132.786789,128.902496,128.935547,130.720673,132.431412,143.745468,158.828110,175.340515,187.166946,197.943832,201.034729,188.679367,167.200012,145.811584,135.629761,132.059509,128.018188,100.249596,84.233070,99.456207,109.009926,79.481003,37.034729,14.454562,11.638035,7.019845,8.346296,10.466131,9.710757,3.893397,0.526448,0.404962,0.194215,0.276034,0.000000,0.003306,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.555000,4612375.550000,5967,5055,83.569435,158.379364,167.858704,158.536377,146.247131,137.164490,133.329758,132.379349,130.643814,131.420670,133.577698,143.990921,159.594238,174.833908,187.462006,197.957870,199.189270,188.503326,165.652084,146.462006,136.214066,132.536377,128.536377,101.478523,84.461998,101.362823,107.602493,77.288452,39.503326,15.899192,11.685143,7.845467,9.474396,10.204148,9.122327,3.061164,0.390085,0.108266,0.053719,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.155000,4612375.550000,6005,5055,92.047958,162.552094,171.064484,158.733902,146.362000,137.370270,134.981842,131.882660,130.428116,132.510773,133.469437,145.138870,161.659531,175.337219,188.833084,199.857880,201.089279,191.056213,167.576889,146.692581,136.948776,133.651260,128.072754,102.122337,85.378532,99.965309,108.742172,79.428123,37.742168,16.188446,11.642995,7.113236,10.371089,9.662000,9.605798,3.486784,0.797524,0.617357,0.000000,0.089257,0.000000,0.000000,0.148760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.755000,4612375.550000,6028,5055,96.808281,158.064468,165.899185,157.345459,143.866119,134.783493,132.510757,130.436371,129.841339,130.775223,132.833069,143.386780,161.204971,175.047958,187.866119,198.287613,199.973557,189.411575,166.039673,145.618210,135.601669,132.171921,127.890923,101.072739,83.676048,97.866127,107.163651,77.246292,37.907455,15.117373,11.626465,7.753733,8.526462,9.673569,9.124806,5.211579,0.740498,0.609093,0.279339,0.200827,0.000000,0.096695,0.316529,0.169422,0.000000,0.000000,1.905785,0.000000,0.000000,0.000000 -601952.755000,4612375.550000,6053,5055,91.109108,163.233078,170.902512,160.299194,146.084320,135.745468,134.249588,132.357025,131.646286,132.638016,134.588425,146.042999,160.828125,177.026474,188.472748,200.150436,201.200027,189.927292,166.695892,146.431427,137.042999,132.613220,128.018188,101.720680,86.034729,100.406624,108.001671,79.910759,38.960350,17.469440,11.638037,6.360342,11.327290,10.507456,11.045469,5.412405,0.642151,0.314051,0.257025,0.199174,0.355372,0.000000,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601957.355000,4612375.550000,6076,5055,96.836380,158.952057,169.720657,156.976852,144.803299,135.447937,134.208282,130.894226,131.365295,132.125641,133.596710,143.844620,159.588425,175.604950,187.811569,198.952057,200.290909,189.009918,166.927261,146.836365,136.497528,133.183487,127.745461,100.323982,85.109108,98.687622,106.505806,76.381836,36.348782,14.776876,11.613242,8.557038,8.852908,8.461171,8.198359,4.560340,0.976036,0.416531,0.000000,0.123141,0.114050,0.257852,0.104133,0.000000,0.000000,2.051240,0.000000,0.000000,0.000000,0.000000 -601963.955000,4612375.550000,6109,5055,98.220688,157.857040,169.030594,162.782654,145.865295,136.361160,133.187622,131.435562,131.468628,131.402512,133.419037,145.344635,160.468597,176.187607,188.534714,200.063644,201.187607,189.509933,166.476868,145.253723,136.873566,134.088455,127.972755,101.104988,86.352921,98.419037,106.270271,77.195892,37.807461,15.505802,11.633904,7.885962,9.583486,10.904147,9.355386,5.463645,0.841326,0.527276,0.659506,0.035537,0.017356,0.000000,0.000000,0.472728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.955000,4612375.550000,6144,5055,101.257858,162.662827,171.365295,160.728943,147.968597,137.241333,133.993393,131.133896,130.241333,132.555374,134.596710,144.034714,160.985138,175.613251,188.514053,200.373581,200.332260,189.753723,164.687607,144.894226,135.621490,132.679352,127.563644,100.034729,84.042992,96.786789,103.282661,74.687622,34.249599,15.950430,11.596714,7.750426,8.141339,9.518196,8.355385,3.957858,1.296697,0.593390,0.110744,0.272728,0.000000,0.157852,0.288430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.955000,4612375.550000,6184,5055,100.252090,164.673569,169.442169,160.690094,143.714890,135.764481,132.929779,129.871918,129.607468,130.913254,131.640518,141.615723,158.557861,174.673569,186.293411,197.706635,197.541336,185.690094,162.648773,142.227295,132.566147,129.450439,125.409119,97.053734,82.194237,94.714890,104.863663,76.690109,37.904980,16.401672,11.400846,8.777699,9.880181,10.415716,9.851254,4.074386,0.537193,0.224795,0.512398,0.000000,0.000000,0.080165,0.424794,0.000000,0.000000,0.000000,0.000000,0.000000,1.296694,0.000000 -601982.755000,4612375.550000,6203,5055,96.670265,161.529770,170.306625,161.480179,146.438858,135.868622,132.480179,128.918198,129.083496,129.207458,130.546295,141.554581,158.248779,173.852081,185.149597,197.009109,196.819016,185.422333,162.033890,142.314911,132.447128,130.480179,123.372749,97.678535,80.934731,94.686798,104.124817,75.414070,35.686798,15.552912,11.215721,8.670260,9.047951,8.504147,8.730593,3.948767,1.350416,0.314878,0.060331,0.083471,0.000000,0.069422,0.560331,0.676860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601989.155000,4612375.550000,6235,5055,95.427292,158.220688,172.468597,159.617371,143.435547,133.823990,131.171097,128.691757,126.328117,128.584320,127.518196,140.063644,156.369446,171.295044,184.344635,194.675217,195.501663,183.757858,161.733063,140.609100,131.336380,128.146301,121.972755,94.997536,79.138031,92.022331,102.551254,73.890099,34.501675,13.416544,11.088449,7.650425,9.102494,9.062824,9.176045,2.783477,0.572729,0.077687,0.364464,0.080992,0.000000,0.080992,0.000000,0.357852,2.423967,2.090083,0.000000,0.000000,0.000000,0.000000 -601992.755000,4612375.550000,6253,5055,105.969444,167.233902,170.143005,161.275223,144.407455,132.853745,131.944656,129.465317,128.068619,129.812424,129.638870,140.870270,157.316559,173.200851,184.680191,196.663666,195.862000,183.820679,160.622330,140.308289,131.382660,127.630600,123.663658,96.333084,80.076881,92.928123,102.597542,75.655396,36.068615,15.127290,11.242168,9.507451,8.302494,9.454559,8.971914,3.432237,0.838846,0.413225,0.267769,0.396695,0.000000,0.000000,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601995.955000,4612375.550000,6269,5055,104.242165,170.382660,171.399185,159.911591,145.060349,133.572739,133.167786,129.539688,128.928116,130.671921,130.085144,141.704987,157.159531,174.052078,185.035538,197.052078,196.614059,185.366119,160.928116,141.605804,131.390930,127.903320,123.390923,97.200844,80.985962,94.952904,102.324806,75.795883,36.266960,14.336381,11.217376,7.497533,9.514891,8.989270,9.856212,2.839674,0.519837,0.210745,0.240496,0.146281,0.214050,0.240496,0.242975,0.452066,0.000000,0.000000,0.000000,1.304132,0.000000,0.000000 -602000.955000,4612375.550000,6294,5055,91.835556,169.108276,167.455383,160.207458,142.430588,130.438858,130.100021,127.397545,126.835556,128.513245,127.083488,139.546295,155.620667,172.562820,184.752914,195.744659,196.100037,182.843826,160.215714,141.504974,130.430588,128.364487,122.100021,93.703323,78.116547,92.356216,103.273575,75.372749,35.314896,14.148777,11.100019,9.150426,8.669436,8.564476,8.360344,3.759511,1.002482,0.228927,0.284298,0.000000,0.009918,0.164463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602008.755000,4612375.550000,6333,5055,97.419846,175.337204,170.097534,159.659531,145.097549,132.419846,132.089264,129.056213,128.304153,130.923981,129.601669,142.320679,158.461182,174.973557,187.552078,199.543808,199.907440,186.510757,165.163666,144.097549,134.378525,131.163651,126.436378,97.188446,80.725639,95.585136,106.750435,76.841347,36.081013,14.233902,11.494233,10.361998,9.484312,9.221502,8.981831,4.404140,0.583473,0.309092,0.126447,0.041322,0.134711,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.155000,4612375.550000,6350,5055,101.347946,171.128922,168.195038,158.054535,142.492554,130.641342,131.153732,127.666130,127.641335,130.963654,129.707458,140.591736,157.038010,173.550415,185.533875,197.434708,196.442978,184.261154,162.467758,143.897522,133.352081,131.376877,124.781830,97.195053,81.864479,94.980179,106.583481,76.699188,36.723988,12.409107,11.343821,8.571086,8.490098,8.887615,8.715714,2.752898,0.572729,0.120662,0.542976,0.315703,0.000000,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.955000,4612375.550000,6369,5055,116.515724,171.862808,169.317352,161.846298,145.201675,132.267792,132.507462,129.672745,130.127289,131.821503,131.028122,141.970261,159.738861,176.383469,189.416534,201.540497,201.300827,187.548767,167.077698,146.408279,136.408279,133.119034,127.309113,97.573570,82.342171,97.581841,107.573570,78.904152,37.226471,14.242993,11.573572,10.177699,7.815717,8.359519,7.938854,4.222324,0.259505,0.217356,0.068595,0.034711,0.262810,0.000000,0.074380,0.000000,0.000000,0.000000,1.998347,0.000000,0.000000,0.000000 -602021.555000,4612375.550000,6397,5055,110.478539,178.660355,169.701675,162.387619,146.445480,133.346298,133.511581,131.015717,130.032242,134.470261,132.437195,143.428940,160.114899,177.875229,190.247131,203.181015,203.304977,189.528122,167.288452,147.999191,137.503326,134.718201,128.627289,100.230598,82.957870,99.486794,108.371086,77.594231,37.990929,15.140514,11.693408,12.249604,10.357041,10.193404,10.191750,3.877695,0.899177,0.011570,0.133058,0.092562,0.057025,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602024.555000,4612375.550000,6412,5055,118.878532,177.928116,171.514893,167.167801,148.101669,135.589279,134.481842,133.523163,132.969437,137.506653,134.423996,145.572754,161.936386,179.754562,193.415741,206.614090,206.539688,191.663681,170.010788,150.655396,140.143021,137.556244,131.572754,102.936378,85.961182,100.911583,110.184311,78.283485,38.523159,15.809109,11.961177,12.527287,10.538032,11.858694,11.476873,6.504969,1.853722,0.270250,0.186777,0.152067,0.026447,0.011571,0.589257,0.452893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.355000,4612375.550000,6431,5055,120.953735,177.771927,171.044647,167.333908,148.457870,135.681015,133.350433,132.862823,131.895889,138.168610,134.019852,146.259521,162.209930,181.085968,193.573578,207.011566,207.127274,192.689270,170.259521,152.110764,139.573578,137.780182,131.945480,102.242996,85.722336,101.474396,110.424812,79.242996,39.267788,16.723984,11.995061,11.633072,9.023156,10.066957,10.850428,5.493399,0.707440,0.534713,0.068595,0.000000,0.045455,0.000000,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602031.755000,4612375.550000,6448,5055,119.413239,180.636368,176.016525,170.107437,150.330582,137.008270,135.198364,133.140518,132.504150,139.545456,134.371918,146.322311,162.033051,181.380173,193.942154,207.611572,206.148758,192.314056,172.553726,151.685944,141.264465,136.942154,132.272751,101.776878,86.454559,103.049606,110.818199,79.752083,38.900848,16.043819,12.024812,11.358692,9.882659,10.328115,11.017369,5.790091,0.851241,0.423142,0.152067,0.000000,0.136364,0.079339,1.986778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602036.955000,4612375.550000,6474,5055,123.937195,182.449585,175.978516,162.986786,147.697525,135.350418,134.846283,131.796692,131.879349,138.052902,132.623138,143.788437,160.614883,178.284302,191.003311,205.548767,205.300827,190.085953,170.449585,150.862808,138.639679,135.532242,130.127274,101.044632,83.904144,101.986778,110.722321,78.780174,38.672752,16.423159,11.829770,11.001666,8.315717,10.203319,10.065304,5.068605,0.769423,0.328100,0.286778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602040.355000,4612375.550000,6491,5055,116.862831,174.168610,167.647919,157.482635,139.928940,129.408279,127.937210,124.771912,124.854553,129.110764,126.085960,137.829773,154.912399,172.309082,185.606628,198.705795,198.920670,185.928940,164.391724,145.036377,133.656204,129.457870,124.490921,94.904152,78.920677,96.697540,109.143822,77.821510,37.647953,13.730596,11.317375,10.874394,9.364478,8.285136,10.328114,4.944637,0.291738,0.300002,0.295868,0.000000,0.000000,0.092562,0.104959,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602043.155000,4612375.550000,6505,5055,111.896721,156.880188,157.202499,148.185974,133.177704,122.731430,121.152916,118.822342,117.334732,120.095062,120.863663,131.764481,149.822327,165.723160,180.095062,191.789276,192.714890,182.384308,160.714890,140.731415,129.062012,124.045479,117.681839,90.425636,73.855392,92.260345,105.938034,81.078537,38.929771,14.553736,10.698366,6.930591,8.274394,9.521502,8.809103,4.950422,1.053722,0.634713,0.240496,0.000000,0.124794,0.110744,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602047.555000,4612375.550000,6527,5055,114.093414,155.233902,153.423996,146.010773,132.531433,122.176056,119.622337,117.407463,116.845474,118.300026,120.903328,131.423996,148.415726,165.771103,177.795883,189.209106,191.771103,180.531433,159.308289,137.961182,127.936386,122.870270,117.754570,89.390930,73.316551,90.804153,107.027298,79.357872,37.142994,13.562827,10.704977,4.747943,8.732244,8.500014,8.809105,3.190917,0.861160,0.387605,0.027273,0.264463,0.249587,0.000000,0.578513,0.066942,0.000000,0.000000,0.000000,1.472727,0.000000,0.000000 -602053.355000,4612375.550000,6556,5055,103.809937,151.619858,155.826462,143.504150,130.000015,120.057869,117.454559,115.446297,114.421501,116.818199,117.760345,129.801666,146.537201,163.727295,176.958694,188.760345,189.760345,178.867783,158.090927,136.834732,125.834724,121.727287,115.363655,88.016548,71.694229,88.760345,104.892578,78.785141,36.636383,12.992578,10.487622,5.070259,8.172741,7.159516,8.310757,2.676867,1.458681,0.559506,0.000000,0.085124,0.208265,0.444628,0.139670,0.171075,0.000000,0.000000,0.000000,0.000000,1.890909,0.000000 -602057.555000,4612375.550000,6577,5055,109.181023,150.280182,154.222336,142.007462,130.255402,119.908287,117.552910,114.701675,113.701675,115.280190,116.891754,128.238861,144.354568,161.271927,173.090103,185.916550,186.842163,176.081833,154.181015,133.941345,124.338043,119.387619,114.900017,85.313240,70.817375,87.238861,103.462013,77.205795,34.949608,11.859521,10.445474,4.182653,7.389267,8.230593,7.308274,2.622319,0.529754,0.479340,0.025620,0.038017,0.200827,0.002479,0.417356,0.066116,2.342149,0.000000,1.885951,0.000000,3.715703,0.000000 -602061.155000,4612375.550000,6595,5055,108.023163,151.973572,153.717377,144.204987,130.023148,120.593407,116.816544,114.213226,113.618187,116.081001,117.039680,128.601654,145.882660,161.783478,175.122314,186.750397,186.527267,177.899170,155.320663,135.758682,124.667778,120.370262,115.345459,88.039680,71.601677,90.527298,104.287621,77.601677,36.713242,14.875225,10.485969,6.591748,9.677700,9.728113,11.396710,6.195878,1.181822,0.477688,0.167769,0.101653,0.196695,0.000000,0.366943,0.454546,2.192562,0.000000,0.000000,0.000000,1.757851,0.000000 -602066.355000,4612375.550000,6621,5055,114.184311,147.473572,152.523148,141.382660,127.043816,116.961174,113.093407,110.581009,109.688446,109.969437,111.762825,123.473572,140.738037,157.085129,169.572739,180.936386,181.771103,172.176056,149.936371,129.903320,120.109932,116.225632,110.390923,83.093407,66.233910,84.952904,101.622330,76.258690,33.982662,13.053738,10.035556,7.689268,8.301666,8.952906,9.832247,4.588438,1.525623,0.473555,0.163637,0.000000,0.131405,0.000000,0.723968,0.238844,2.094215,0.000000,1.668595,1.509917,3.357025,0.000000 -602074.555000,4612375.550000,6662,5055,161.179352,160.328110,141.898361,128.782654,113.237198,102.410751,99.452072,96.501663,94.204140,95.104965,95.964470,107.600838,123.733078,137.898361,150.377701,161.261993,164.733063,157.063644,143.559509,126.972748,119.584305,116.906624,114.427284,86.633896,67.956215,92.972740,124.923149,104.972740,52.055389,14.823156,10.402498,13.271915,14.419850,17.466961,23.130594,16.405800,2.108269,0.552068,0.064463,0.252893,0.295868,0.281819,0.247935,0.247108,5.650414,1.961984,4.928100,1.415703,1.809917,0.000000 -602240.555000,4612375.550000,7492,5055,142.364471,178.285126,158.169434,149.061996,128.690094,113.334724,113.888443,112.599190,114.409103,122.929771,119.615715,134.929764,155.822327,178.657028,196.756195,212.012390,214.078506,201.508270,188.615707,171.376038,160.888428,163.136368,164.500000,129.855392,104.962830,132.012405,167.004135,133.830597,66.243820,19.728117,14.954565,24.437208,17.318199,24.697540,31.149605,23.838860,2.757029,1.886780,0.589258,0.921488,0.855373,0.222314,0.000000,0.004959,3.821488,1.931405,2.558678,1.447934,1.962810,0.000000 -602246.555000,4612375.550000,7522,5055,122.884315,178.388458,149.669449,139.702499,122.074387,107.330589,109.719017,109.752083,110.115715,117.917366,114.975212,130.842987,152.041351,172.942184,190.669449,202.809952,204.545486,192.958710,177.892593,162.570282,151.843002,152.694244,155.818207,124.578522,99.338852,125.355377,164.173584,135.603317,68.396721,17.342167,14.165308,22.264481,14.763654,24.678532,32.226467,19.613239,1.988434,0.279340,0.000000,0.092562,0.175207,0.115703,0.004959,0.123967,1.740496,1.093389,0.000000,2.212397,4.880167,4.023967 -602253.755000,4612375.550000,7558,5055,110.785965,156.783478,135.403305,124.262817,106.923981,92.882668,95.733910,93.568619,95.510765,99.733910,97.766968,110.733894,128.833069,146.882645,159.304138,169.089264,167.560333,156.700836,144.452896,128.750427,120.213226,119.552071,122.527283,97.791756,75.692581,98.031418,140.304138,127.915710,68.816551,16.245474,11.138862,17.167788,15.876051,26.079357,38.395065,27.134729,1.575209,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,1.088430,2.115703,0.852066,0.000000,0.551240,0.000000 -602261.555000,4612375.550000,7597,5055,85.292580,137.006622,121.122322,107.461166,89.940521,78.775223,80.717369,77.841339,77.593407,82.089279,79.808281,92.651260,109.965294,126.692566,137.444641,146.634720,145.014877,135.940506,122.866119,110.081001,100.560349,100.171913,105.527290,80.403320,59.791756,82.552086,132.345459,125.990089,71.320686,14.719851,9.593407,15.041340,17.263653,29.255390,42.709110,32.602497,1.246283,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.080165,0.922314,0.734711,0.000000,2.366942,0.000000 -602266.755000,4612375.550000,7623,5055,86.128944,137.052902,124.532242,110.945465,93.978531,82.234734,84.937210,82.267792,82.350433,86.449608,85.904152,97.846298,116.383484,131.738861,143.069443,153.193390,154.986786,147.548782,136.829758,123.838028,115.094223,116.152077,115.854553,92.292580,71.548782,93.962006,137.019836,125.424805,67.565308,15.041341,10.532249,16.208282,16.619024,28.416548,40.804977,29.955389,1.239672,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.561157,0.561984,0.710744,0.000000 -602273.555000,4612375.550000,7657,5055,115.113243,156.959503,147.273544,133.174393,118.174393,108.356209,111.430588,112.513237,113.480179,119.058693,122.405800,139.488449,163.653717,183.686768,199.422318,212.075211,216.810745,208.942978,194.166107,178.124786,168.091736,167.438843,164.918182,131.810760,108.562820,130.347946,160.595871,132.331421,65.405807,19.541342,14.992580,15.230594,14.686792,21.736383,31.504980,22.740513,1.781823,0.101654,0.404959,0.165290,0.049587,0.139670,0.463637,0.000000,1.077686,0.000000,0.000000,2.419009,0.966942,3.679339 -602284.155000,4612375.550000,7710,5055,99.785965,136.449600,133.821503,119.523979,105.871086,98.077698,101.928940,102.565300,106.433067,109.581833,115.540504,132.532242,156.143814,174.598343,191.292572,205.209915,210.292572,205.838013,192.804962,177.763641,169.383484,168.904144,165.763657,136.656219,113.160339,133.895874,169.441330,144.639694,76.284317,20.609110,15.069440,16.176876,20.856216,28.977705,42.755394,30.321507,1.747938,0.107439,0.000000,0.000000,0.000000,0.000000,0.019835,0.000000,1.860331,1.981818,3.357026,0.543802,0.000000,1.538843 -602295.355000,4612375.550000,7766,5055,81.389267,121.707443,120.550415,105.600014,92.434723,84.087616,88.029762,86.839684,87.666130,90.699188,95.186790,108.798363,128.922318,145.062805,158.418198,170.839676,174.029770,169.980164,160.409927,148.071075,138.599991,137.790085,137.145447,111.385139,89.773567,112.798363,150.484299,133.360336,72.476044,15.546299,12.467787,13.476049,18.004978,28.517376,42.963654,30.027290,0.783475,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.846281,1.526446,1.205785,0.398347,0.000000,3.009917 -602302.155000,4612375.550000,7800,5055,63.333076,101.616547,101.426468,87.715714,73.302505,62.616547,63.930595,61.608280,62.575222,66.285965,66.971916,79.211594,97.600021,113.186790,124.922325,133.608292,135.500839,130.294235,120.542160,106.277710,98.459526,98.211594,99.690933,75.600029,54.889275,77.649605,127.930588,124.509102,70.368614,11.722329,9.062829,11.821502,16.888447,30.643822,45.360348,33.242168,0.838846,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.751240,1.070248,0.667769,1.562810,0.000000 -602310.155000,4612375.550000,7840,5055,87.952087,126.584312,133.014069,116.038864,102.435555,92.328117,95.427292,94.509933,94.956215,97.757866,101.509933,115.179359,135.609100,151.939682,165.121490,177.121521,179.352921,175.113251,162.981003,147.997528,139.228943,139.914886,138.427277,111.972748,89.179359,112.179359,149.452072,129.906631,70.113243,17.363655,12.584317,13.643818,16.819851,26.807457,37.435558,26.964483,1.137194,0.068595,0.000000,0.000000,0.000000,0.189256,0.061157,0.049587,1.130579,0.000000,0.880165,0.000000,1.744628,0.000000 -602316.155000,4612375.550000,7870,5055,110.581833,156.110764,148.945480,135.325638,120.813232,111.928940,110.523979,109.714058,110.069435,112.763649,116.185135,129.557037,151.416550,170.590103,185.119034,197.821503,201.738861,196.325638,177.490921,159.044647,149.557037,147.400024,145.945480,111.697533,88.978523,112.879349,141.209930,109.003319,51.945473,15.562001,13.267788,10.473570,13.141339,16.935555,20.069439,12.233901,1.871080,0.436365,0.124794,0.211571,0.150414,0.009091,0.428100,0.000000,2.650414,0.000000,2.033885,5.676033,0.000000,3.780165 -602322.155000,4612375.550000,7900,5055,113.341339,150.494232,146.899200,133.014893,118.353729,108.990097,107.337204,106.188446,106.510765,109.676048,112.196709,125.370262,146.419861,165.568619,180.899200,191.386780,192.469421,185.833084,167.130600,148.031433,136.957047,136.221497,134.436371,103.601677,80.419861,103.833084,137.254562,106.560356,49.519028,15.600844,12.221506,9.719849,11.309107,15.085141,19.852911,9.654559,1.390913,0.476861,0.263637,0.164463,0.284298,0.378513,0.000000,0.373554,0.000000,1.156198,1.052893,0.785951,1.853719,0.000000 -602326.555000,4612375.550000,7922,5055,115.797539,149.852081,148.405792,133.273560,119.860344,108.389267,108.661995,106.397537,105.661995,108.546295,110.075218,122.885139,143.257034,161.190918,173.571091,183.959518,184.752899,175.529770,156.662003,137.397537,126.876877,124.860344,124.918198,94.257034,73.843826,94.959518,122.620674,96.290092,45.827293,14.318200,11.356217,10.094231,10.860347,14.186794,18.784317,8.071086,1.403310,0.285125,0.319009,0.023967,0.042975,0.184298,0.290909,0.000000,1.241322,6.090909,2.065289,1.761157,3.031405,1.961984 -602330.955000,4612375.550000,7944,5055,110.757858,147.040497,146.966125,132.933060,117.073555,106.610756,105.214058,104.057030,105.007446,106.817368,109.040504,122.362816,143.949585,162.205795,176.346283,187.263641,186.238846,179.693390,159.999176,139.585953,130.908264,129.214050,129.809097,98.990913,75.974396,98.767769,131.238846,101.486778,44.792587,13.764482,11.800845,8.539684,10.404973,13.377704,15.981010,9.487617,1.281822,0.471076,0.047108,0.670249,0.000000,0.140496,0.000000,0.000000,1.318182,0.000000,3.124794,1.813223,6.413224,1.984298 -602337.355000,4612375.550000,7976,5055,116.532249,146.830582,146.566116,130.723160,116.690102,107.285141,105.491753,103.615715,104.549606,106.772743,108.929771,121.111588,141.466949,159.053726,172.293396,184.880173,186.747940,180.764465,162.425613,143.938019,134.962830,133.962830,132.227295,101.830597,80.913239,101.706627,128.706635,101.152908,45.665310,12.445471,12.020680,8.790924,11.040509,14.345471,15.816545,8.528112,1.085128,0.700828,0.258679,0.182645,0.204959,0.000000,0.000000,0.000000,2.487604,4.678513,6.284298,1.656199,1.014050,7.796694 -602343.755000,4612375.550000,8008,5055,148.008286,152.852905,147.761993,133.646301,118.976875,109.208282,107.646301,104.472748,105.307457,108.092583,110.671089,122.877701,142.009933,159.522324,171.761993,183.629761,186.059509,178.737198,158.348770,139.034714,128.943817,127.852913,124.563652,95.059525,75.687622,94.233078,113.852913,84.439690,35.927296,12.257043,11.323987,9.317370,9.732247,10.124809,11.496710,8.013234,1.605791,1.051243,0.458679,0.408266,0.369422,1.040497,0.852067,1.258678,10.383472,7.495042,7.252067,5.362811,8.680993,3.980992 -602352.555000,4612375.550000,8052,5055,97.737213,114.813240,106.730598,90.201675,78.036392,68.623169,69.920685,68.581841,70.259521,74.986801,77.937218,90.152084,107.986794,124.457870,135.854568,148.226456,153.152069,151.904129,142.011566,129.681000,124.656219,124.350433,126.218193,103.259521,83.887619,108.515724,144.226456,131.631424,73.598373,15.028116,11.474400,15.035553,19.585142,34.019855,49.490932,41.898365,4.774388,0.249587,0.185951,0.036364,0.000000,0.062810,0.000000,0.000000,9.171076,9.089256,5.413225,3.191737,5.178513,6.129753 -600993.155000,4612365.550000,1255,5105,139.190918,134.900833,104.438026,95.867783,78.429771,67.380188,64.975227,59.454567,58.421509,60.562004,58.884319,71.851257,88.603325,106.694221,121.528931,137.115723,143.520676,140.859528,134.363647,122.537201,113.000008,112.140503,104.181831,66.636383,44.305805,72.016548,120.371910,110.388435,53.900848,11.034726,9.471093,17.019852,11.638031,21.798367,30.298368,24.005802,1.026448,0.185951,0.134711,0.000000,0.000000,0.000000,0.353719,0.230579,11.863638,10.228928,8.059506,3.908266,8.709919,10.794216 -600997.955000,4612365.550000,1279,5105,149.751266,139.503311,111.362831,101.858696,86.891754,74.552910,73.742996,69.528122,66.354561,68.313240,67.131424,80.949608,98.685143,116.404152,132.098373,148.040497,155.660339,154.065292,147.519836,134.742996,123.247124,122.321510,115.445473,73.594231,49.701672,77.536385,130.255386,119.420677,61.428940,13.409935,10.495061,18.639687,12.086792,20.254564,29.891754,22.923159,1.058680,0.048760,0.066116,0.022314,0.000000,0.066116,0.000000,0.331406,19.883474,7.061985,6.181820,4.287605,4.735538,11.817356 -601004.355000,4612365.550000,1311,5105,122.787613,129.923981,109.742157,98.684303,83.221504,72.312408,69.973572,65.238037,63.155392,62.543819,61.948780,75.709106,96.163643,114.510750,130.833069,147.337173,154.824799,151.626450,145.147095,132.080994,120.626450,119.064468,108.890915,64.609940,41.642994,70.378525,129.419846,119.725624,58.444645,14.089271,9.899191,15.890926,10.614890,16.003323,26.949606,16.452082,0.738018,0.000000,0.079339,0.000000,0.000000,0.016529,0.000000,0.017356,15.019835,5.776861,1.781819,4.273556,4.548761,3.135537 -601013.155000,4612365.550000,1355,5105,139.743805,123.026466,107.662827,92.414894,78.819855,67.059525,64.282661,58.753742,56.431427,56.662830,55.828121,68.993408,88.662827,106.960350,122.844643,137.662827,145.671082,142.885956,136.200012,120.927292,110.216545,107.497536,97.109108,54.390106,29.517374,61.026463,124.522331,116.910759,60.538864,13.007456,8.828119,12.796710,10.649602,18.768614,26.990931,18.219025,0.522316,0.000000,0.000000,0.000000,0.019008,0.000000,0.010744,0.000000,8.179340,6.437191,2.712398,3.762811,10.685953,10.954547 -601019.955000,4612365.550000,1389,5105,82.647118,80.946297,68.680191,56.809933,43.632248,32.585140,29.121504,24.821503,22.829767,21.262825,20.964476,29.817371,46.528114,61.809933,75.380180,89.820686,94.035561,91.415726,86.068619,73.804153,61.460350,59.925636,52.545471,16.426458,4.453727,23.298361,91.977699,99.779350,52.192581,8.939682,4.776877,11.571914,10.968609,19.371918,29.268612,19.559521,1.457029,0.178513,0.218182,0.000000,0.042976,0.000000,0.000000,0.000000,9.395044,8.065293,3.565291,3.928102,2.972729,9.400002 -601025.755000,4612365.550000,1418,5105,91.904976,58.742996,46.952908,32.267784,20.028111,11.028110,9.138026,6.242156,4.294219,3.385128,3.076863,5.479346,13.533068,20.899185,29.736376,38.957039,41.902496,38.676048,35.604145,25.008278,17.681829,14.923152,12.400011,0.923969,0.000000,3.142153,51.755390,71.918198,43.088448,5.500010,1.127283,10.676045,13.852906,25.419025,42.898369,35.395885,3.951245,0.268596,0.228926,0.004959,0.000000,0.000000,0.000000,0.036364,9.105790,4.207440,1.261159,1.209919,2.087605,16.440498 -601048.355000,4612365.550000,1531,5105,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.045455,0.000000,5.481000,15.887616,33.307457,49.834728,55.331417,42.239685,35.387623,39.380180,36.872742,38.172737,25.015715,13.626455,8.410748,9.827276,2.825621,3.700001,0.995868,1.198348,23.926447 -601051.555000,4612365.550000,1547,5105,0.762810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.696700,13.891747,29.938032,48.956211,50.228939,45.555386,45.264477,42.938854,51.182663,43.394230,38.820675,30.787613,19.542158,13.552070,4.720662,2.888430,0.865289,7.085125,14.090084 -601275.555000,4612365.550000,2667,5105,36.701668,71.473572,71.589272,61.316544,48.614063,37.917370,34.431423,30.100842,27.349604,26.836380,25.575222,29.525635,37.090103,45.630592,52.828941,60.167782,61.093403,60.159519,55.233898,46.432247,39.259525,37.329773,35.300014,16.614063,6.332241,20.128113,68.382660,82.316544,48.985966,7.753732,3.209109,4.152900,13.982660,26.762829,42.514896,31.881010,1.822317,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.691736,0.383471,0.333058,1.099174,0.000000 -601278.555000,4612365.550000,2682,5105,78.270271,110.631424,109.490929,100.953735,87.003326,76.168617,74.747124,71.631424,70.490929,70.424812,70.160347,77.862831,90.085968,99.573570,108.565308,116.548782,119.152084,116.879356,108.507454,96.705803,89.796715,86.895889,86.036385,60.573574,41.697536,62.391754,104.978531,105.383492,57.119022,12.208282,7.821506,5.221498,13.565308,23.837208,36.061176,21.487619,0.698349,0.035537,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,1.447934,0.580165,0.000000,0.800827,0.000000 -601282.555000,4612365.550000,2702,5105,84.350426,128.738037,130.738022,122.572739,109.671913,100.729759,98.209099,96.225624,95.432243,98.258682,97.291740,106.746292,121.349602,133.324799,143.919846,152.167770,153.928101,151.151245,139.076859,127.630585,115.862000,115.027290,111.572739,86.845467,66.862000,86.258698,121.572739,114.300018,58.738033,14.958694,10.142994,7.952078,14.459520,21.013243,29.275225,15.933902,1.549590,0.319835,0.000000,0.000000,0.000000,0.000000,0.032232,0.000000,2.066116,2.526447,1.501653,0.000000,0.790909,0.000000 -601288.355000,4612365.550000,2731,5105,110.847115,146.042160,142.149597,130.926468,117.951263,108.438866,106.314896,104.075226,105.017380,108.529770,108.438866,118.347954,135.025635,149.562820,161.546295,172.000839,173.050430,167.017365,154.893402,141.215714,130.794235,128.876877,127.827293,99.207451,79.033905,97.901665,133.719849,119.984322,60.992580,16.424812,11.620680,8.513235,13.161175,19.284317,26.856216,16.068611,0.387604,0.035537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.963637,0.000000,0.000000,0.000000,0.000000 -601296.555000,4612365.550000,2772,5105,127.590927,181.557861,157.078552,150.665298,134.466949,122.690094,123.830589,123.747940,124.103317,131.541336,130.070251,143.962830,161.367798,181.028946,196.235550,211.095078,211.838882,202.219040,189.706635,172.516541,164.020691,161.524826,158.590942,124.938026,103.987610,126.706619,158.458710,128.921494,64.475220,19.893408,14.417374,17.661173,15.697537,21.078531,25.811590,15.829769,0.748763,0.073554,0.130579,0.091736,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601301.155000,4612365.550000,2795,5105,118.603325,177.297531,157.338852,151.429764,133.950424,124.033073,124.041336,122.942162,124.958694,131.082657,129.561996,143.239685,161.851257,181.132248,196.479355,210.066132,211.619858,203.123978,190.297531,173.074402,164.033081,162.066132,160.454559,126.727287,103.446304,127.247948,161.132248,131.471085,66.950424,20.857868,14.586796,16.454563,15.227290,21.297539,28.146299,18.218197,1.006614,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.446281,0.000000,0.000000,0.000000,0.000000,0.000000 -601304.155000,4612365.550000,2810,5105,128.623993,171.268600,156.929749,150.871902,134.814072,123.690109,125.177711,124.557877,125.938042,130.533081,128.921509,142.301651,161.574387,180.508270,197.210739,210.268600,211.847107,202.714874,189.946274,175.053726,163.896698,164.417358,161.681824,127.599190,103.871925,128.739700,160.276855,128.632263,66.376060,20.998365,14.698366,15.233902,15.109109,19.494232,26.574400,15.166959,0.774383,0.133885,0.000000,0.024794,0.000000,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.264463,0.000000 -601307.155000,4612365.550000,2825,5105,126.611580,166.347137,157.123978,150.347122,136.380188,123.272736,124.247940,123.247940,123.760338,130.256210,128.438019,142.438034,161.719040,180.991745,195.107452,209.586792,211.900848,203.727295,190.000015,171.785141,162.561996,161.338882,159.363663,127.074387,103.859512,126.347115,157.123993,129.305786,61.900848,17.995058,14.487622,15.461174,15.231422,17.890102,26.123985,14.400017,0.619838,0.091736,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.041322,0.000000,0.000000,0.000000,0.000000 -601309.755000,4612365.550000,2838,5105,122.412415,171.544647,160.156219,151.776047,135.445480,124.875221,125.346291,125.883492,125.734734,131.395874,130.015717,145.081833,163.437210,182.990921,197.255371,210.453735,213.412415,205.883484,189.718185,174.478531,164.379364,163.123154,162.536377,129.718201,105.404152,126.990929,160.627289,130.057037,64.304977,18.949606,14.776052,16.942991,15.676052,20.576052,28.283489,18.420677,1.843807,0.295869,0.147935,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601313.355000,4612365.550000,2856,5105,112.703316,167.967789,158.554565,149.042160,134.207443,123.108269,124.661987,123.942978,124.075211,129.538025,129.538025,144.347961,162.992569,181.480179,196.587631,210.430588,212.463654,205.290115,189.538040,172.785965,162.942993,161.645462,159.372742,127.124802,105.628929,127.257027,157.190918,128.480164,62.339687,18.972748,14.488449,13.486794,13.424810,18.818201,23.565310,15.809935,1.138846,0.088430,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601319.155000,4612365.550000,2885,5105,105.901672,170.415710,161.862000,149.184326,135.630600,124.308281,125.870262,125.060349,125.779350,130.192581,130.804153,145.713242,164.209091,182.531418,198.390915,212.093399,213.713226,206.126450,190.308273,171.382645,162.457031,160.837204,160.118195,126.647125,105.349602,124.266960,155.151260,124.498360,62.002495,19.720680,14.556218,14.382661,14.059521,19.413240,24.824812,10.530590,0.538847,0.280167,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,3.627273,0.000000,0.000000,0.000000,0.000000,0.000000 -601325.355000,4612365.550000,2916,5105,107.985962,162.911575,158.936371,148.721497,136.663635,126.771088,127.126457,125.969437,127.035553,130.704971,131.316544,145.572739,165.647110,183.845459,198.547943,210.738022,214.390915,205.564468,188.374390,170.754547,160.671906,160.523148,158.572739,127.209106,101.341339,123.581009,154.291748,125.514893,60.985973,19.346298,14.415722,15.571918,12.816545,17.525637,22.167788,12.147950,1.133062,0.597522,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601329.355000,4612365.550000,2936,5105,124.571091,165.174393,163.190918,150.653732,137.215714,126.281830,127.769432,126.513237,127.042160,129.645462,131.951248,146.075226,167.389267,183.810760,198.223984,212.124802,215.025635,207.678528,190.893402,173.868607,161.662003,162.091751,158.009109,126.653732,102.273567,122.331421,154.612411,125.149597,58.124813,17.333076,14.364482,11.375222,12.058695,19.404980,23.248779,12.288445,0.559508,0.185952,0.244628,0.000000,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.165289 -601335.955000,4612365.550000,2969,5105,122.666954,167.625626,161.369431,151.419022,137.997528,127.402489,129.121490,127.683479,128.162827,131.931412,133.509933,148.096710,168.460342,185.559509,200.352905,212.956207,216.675217,208.361160,191.567780,174.344635,163.617371,161.832245,160.063644,126.700012,103.146294,123.493401,153.881821,123.592575,56.997543,19.803326,14.551257,12.312412,13.368610,17.217375,21.265310,11.728113,0.650417,0.182646,0.096694,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601346.755000,4612365.550000,3023,5105,120.666122,161.831421,163.757034,153.947113,139.228119,130.079346,131.228104,130.236374,130.971909,134.905792,137.699188,151.856216,172.178528,189.120667,203.641342,216.558685,220.236374,212.442993,196.021500,176.790100,166.153732,165.608276,162.145462,129.633057,106.451248,126.897522,154.170258,122.426453,58.550430,19.167788,14.740515,12.323980,12.502497,17.580183,19.776051,11.923982,1.171079,0.315705,0.101654,0.092562,0.373554,0.000000,0.000000,0.000000,0.000000,2.566942,0.000000,0.000000,0.000000,0.000000 -601359.155000,4612365.550000,3085,5105,116.785141,159.669434,164.834732,152.429779,140.595062,130.603317,132.776871,129.710754,131.338852,134.528946,138.173569,151.347137,172.553726,188.925613,203.090912,215.314056,219.735535,213.082642,194.454544,175.950409,165.851257,165.644638,161.000015,128.851257,105.305801,125.983490,150.892593,119.495880,57.107460,17.920679,14.636382,9.755387,12.491752,14.930595,20.392578,11.676875,1.014054,0.396696,0.104959,0.036364,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,1.024794,0.000000,0.000000,0.000000 -601363.755000,4612365.550000,3108,5105,116.816544,161.543808,161.642960,154.345444,139.568619,131.915710,132.221497,131.436371,133.180176,137.122330,140.023163,153.808258,173.725616,192.221481,207.047928,219.485947,223.461151,215.271057,196.799988,177.816513,167.692551,164.907425,160.436356,128.932251,104.419846,124.519028,146.709091,115.279350,54.320679,18.064484,14.585142,10.596709,12.144644,14.789272,18.113243,8.739681,0.663640,0.020661,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601366.555000,4612365.550000,3122,5105,109.041336,165.570251,166.206604,155.082642,140.619827,132.330597,133.429764,132.289276,133.851257,137.173569,141.702484,156.297516,175.652893,194.561981,210.173553,221.818176,226.776855,218.024796,198.710739,178.933884,168.289261,166.413223,163.363632,127.297539,104.760345,124.148773,148.421494,113.462830,53.264488,17.705803,14.851259,9.457866,11.860346,15.176049,17.452911,8.068607,0.776863,0.604961,0.067769,0.077686,0.000000,0.000000,0.000000,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,2.005785 -601370.755000,4612365.550000,3143,5105,109.553741,164.454559,160.834732,153.371918,141.487625,132.702499,134.380188,133.140518,134.644653,138.214890,142.024811,156.404968,177.809921,195.611572,210.900833,224.727280,227.181824,220.413223,200.471069,180.115707,170.661179,167.338852,164.181839,129.479355,106.636383,125.809937,146.892578,113.041336,52.925640,17.356216,14.925639,11.182658,11.461172,14.664481,16.537209,7.442162,0.838845,0.260332,0.029752,0.025620,0.227273,0.000000,0.019008,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601380.155000,4612365.550000,3190,5105,124.559525,161.592590,166.939682,155.195892,144.609116,136.485138,136.534714,135.642151,138.154572,142.212418,145.113251,160.319839,181.005798,198.972717,215.071899,229.468582,233.832230,224.898346,203.328094,183.832245,173.402496,171.526459,166.518188,132.228943,109.972748,128.319855,144.757874,109.890099,53.278530,20.279360,15.138034,11.374395,12.747949,16.926464,16.154562,8.907452,1.042151,0.321489,0.605786,0.000000,0.000000,0.119008,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,1.176860,0.000000 -601382.955000,4612365.550000,3204,5105,124.762817,154.093414,165.969421,155.928116,140.655396,133.407440,133.837204,133.118195,135.192581,139.671921,143.531433,157.225647,178.349594,196.985962,210.886780,224.498352,229.762817,222.043808,199.853729,179.713226,170.357880,167.027298,161.845474,129.721497,106.713234,125.167793,142.010773,104.275215,51.126469,17.078533,14.713242,8.844639,11.638859,11.784314,14.481835,7.106625,0.616531,0.242150,0.099174,0.138017,0.035537,0.249587,0.000000,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.155000,4612365.550000,3225,5105,118.262001,160.989273,162.857040,153.906616,142.154572,136.014069,134.542999,133.460342,136.319839,140.534729,144.873581,158.691742,179.666946,199.278519,214.890091,228.518188,233.253723,226.212402,203.113235,181.047119,169.518188,166.278519,160.609100,128.559525,105.443817,123.295059,138.270279,103.749603,48.923153,16.823986,14.600846,9.014891,10.300014,12.502496,15.045473,5.348772,1.780169,0.064464,0.128100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.039670 -601391.355000,4612365.550000,3246,5105,120.804138,162.688431,165.870255,157.762817,146.291763,136.349609,137.473572,136.614075,138.556213,142.498367,145.944656,160.713226,181.242172,200.300003,216.754547,229.696701,234.283478,225.572739,202.333069,180.944656,169.300003,165.200836,159.845459,128.225632,105.746292,122.605804,136.225632,102.390915,48.233902,19.672747,14.531424,11.633072,12.416545,14.036380,14.887621,6.891747,1.422318,0.051240,0.038017,0.028099,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601397.555000,4612365.550000,3277,5105,103.907455,164.477707,170.138870,158.915710,145.758682,137.601654,138.882645,137.361984,139.097534,143.659515,148.593399,161.634735,182.411591,201.990112,217.345459,231.866119,236.510757,227.337204,202.659531,181.072754,169.766968,166.436386,160.800018,128.890915,106.907448,121.866119,137.196701,100.816536,48.122337,19.772747,14.618200,9.165302,11.978529,13.114066,14.519851,5.838854,1.402485,0.442976,0.061158,0.132232,0.000000,0.000000,0.000000,0.000000,1.248760,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.355000,4612365.550000,3296,5105,116.146294,163.576050,166.559509,158.237198,145.452072,138.460342,137.154556,137.823975,139.063644,143.567780,148.493393,162.303314,183.096710,201.063644,218.295044,231.939682,235.600830,227.485138,202.848770,180.757858,168.956207,166.154556,161.427277,127.749596,105.923149,121.377693,134.187607,99.642159,47.592583,17.532249,14.675225,9.061172,10.934725,12.295058,15.749603,5.585958,1.322318,0.246282,0.478514,0.030579,0.000000,0.000000,0.000000,0.025620,0.000000,0.000000,0.000000,0.000000,1.176860,0.000000 -601404.355000,4612365.550000,3311,5105,119.742165,165.940506,168.676041,157.609924,145.279343,137.370255,138.593414,138.973572,140.816559,144.634735,147.940506,160.601654,182.700836,201.114059,217.469421,231.800003,235.642975,226.535538,202.403305,180.717361,169.552078,165.279343,159.890915,128.907440,106.072731,121.659508,135.031418,99.791740,48.064480,17.695885,14.535555,9.744642,11.856214,11.609107,12.181009,5.848772,1.188434,0.310745,0.119009,0.139670,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601408.155000,4612365.550000,3330,5105,113.905800,156.897537,164.847946,157.145462,144.360336,138.137207,137.798355,136.996704,139.294235,142.955383,147.897537,162.310760,183.492569,200.715714,217.839676,231.600006,235.401672,227.343811,202.203323,179.608276,168.889267,166.178528,160.327286,128.649597,106.145470,120.021500,134.517365,99.484314,48.054565,16.127291,14.575226,7.376873,11.670263,12.002494,14.313238,7.069433,1.388434,0.114877,0.050414,0.095041,0.000000,0.000000,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.555000,4612365.550000,3357,5105,124.898361,161.790924,168.245483,159.452087,147.435547,139.840500,138.352905,138.410751,141.038849,145.617371,149.617371,162.476883,183.171082,202.394226,218.766129,232.369431,237.832245,227.956207,203.848770,181.666946,169.914902,166.228958,159.700027,129.501663,106.642159,122.939690,135.278534,99.584305,47.361179,17.005802,14.518201,11.015717,11.404974,12.759521,12.783486,7.883482,0.520664,0.147108,0.147108,0.000000,0.049587,0.000000,0.033058,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.355000,4612365.550000,3386,5105,122.150429,170.679352,168.282639,161.489273,147.439697,139.828125,139.472748,138.332260,142.315735,145.646301,149.042999,162.803314,183.390076,203.166931,218.745453,232.687592,236.993378,228.596695,203.084305,181.960327,168.836365,165.803314,160.745468,128.142166,106.753738,120.712418,133.629776,99.365311,48.464481,19.699192,14.613241,9.537204,12.457042,12.452909,13.134727,6.257035,1.212402,0.471902,0.415704,0.000000,0.056199,0.000000,0.000000,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601428.355000,4612365.550000,3431,5105,113.369438,168.138031,170.270264,162.080170,150.195877,142.005798,141.245468,142.923157,144.402496,148.352905,152.344635,165.766129,186.972733,204.749603,222.419022,235.741333,240.121490,230.939682,205.691742,182.691742,172.295044,167.154556,162.063644,130.509933,108.138031,121.642166,134.666946,97.989273,45.319851,18.527290,14.733078,8.647947,9.632247,11.102494,13.978530,6.533895,0.629755,0.052067,0.080166,0.000000,0.020661,0.000000,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.155000,4612365.550000,3445,5105,117.446297,164.388428,170.735550,161.495880,151.264465,143.892578,142.892578,143.727295,145.446304,150.297516,154.876038,168.115723,188.652893,207.578522,224.479340,236.785126,241.892563,234.280991,208.404953,185.793411,174.090927,169.892578,164.454559,132.404968,109.520676,124.702484,135.743820,99.082664,46.834732,18.628946,14.950433,8.629766,12.333075,13.035553,15.282661,6.190095,0.606615,0.747109,0.102480,0.276034,0.035537,0.000000,0.098348,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.755000,4612365.550000,3468,5105,117.680183,165.357864,171.895050,163.655380,151.151245,142.333069,143.928101,143.184311,145.622314,149.448761,153.423981,166.837204,186.853729,206.308273,221.845459,235.787613,239.126450,230.969421,206.142975,182.721497,170.771088,168.861984,162.936371,130.837204,106.795883,122.895058,132.614059,99.415718,45.969440,17.345472,14.812415,7.314888,9.673569,11.602493,13.375224,5.121495,0.768598,0.288430,0.085125,0.113223,0.028926,0.000000,0.066943,0.095041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.755000,4612365.550000,3493,5105,130.454575,172.702484,172.685974,164.917374,153.289276,145.099167,144.677689,145.462830,146.586792,150.528946,154.785141,167.330582,187.826462,205.148758,221.669418,235.148758,239.041321,230.314056,205.157028,181.057846,171.537201,166.438034,162.181839,130.157043,108.776886,121.801674,132.140518,95.826462,45.884323,17.234730,14.743821,8.715718,12.308281,11.201670,13.035555,5.853730,0.950417,0.414878,0.123968,0.021488,0.000000,0.000000,0.081819,0.198348,0.000000,0.000000,0.000000,1.090083,0.000000,0.000000 -601443.955000,4612365.550000,3509,5105,137.123138,170.172729,174.470245,165.081818,153.767776,145.767776,144.114883,145.817352,147.205795,152.263641,155.891739,169.486786,188.197525,207.139679,223.131393,235.057007,241.552887,232.040482,205.032242,182.552902,171.404129,167.329758,161.718185,129.585968,108.544640,122.709930,130.172745,95.461998,45.445473,19.158693,14.701673,9.260345,11.729770,11.971091,13.266957,5.408274,1.328103,0.779342,0.036364,0.029752,0.049587,0.000000,0.177686,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.755000,4612365.550000,3528,5105,123.997528,171.931427,172.204163,165.328125,153.518204,145.286804,144.328125,144.790939,146.823990,151.989288,154.857056,167.617386,187.658707,207.485138,221.923157,236.179352,240.262009,231.997543,205.840500,181.501678,169.972748,166.361176,161.700027,128.435547,107.716545,121.129768,129.700012,92.245476,44.749603,19.142168,14.700019,7.956213,11.314893,11.477702,10.227288,5.261993,1.081822,0.460333,0.206612,0.070248,0.129752,0.000000,0.152893,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601453.355000,4612365.550000,3556,5105,143.167770,172.746307,175.597549,168.746307,155.572754,146.316528,146.754547,146.680176,148.977692,153.721497,157.019012,170.167786,189.101669,208.605804,224.052094,239.324814,242.961182,234.647125,206.589279,183.704987,171.746307,169.291763,162.027298,131.151245,109.308273,122.258682,131.126450,95.324799,47.423985,18.952911,14.729771,9.157041,12.033901,11.707454,11.737206,4.571083,1.375211,0.126448,0.156199,0.000000,0.000000,0.000000,0.038843,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.955000,4612365.550000,3569,5105,139.831421,173.790100,174.831421,166.054565,153.798355,145.426453,145.393402,144.806625,146.624802,152.137207,154.467789,166.847946,187.095886,206.492569,221.765305,234.302490,239.566956,230.385132,203.955383,180.385132,169.046295,165.600006,159.236374,127.484322,106.649605,120.674400,128.335556,93.128944,43.261177,16.267790,14.476053,5.967781,9.693405,10.576050,10.702496,5.243810,0.449589,0.271075,0.113224,0.180166,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612365.550000,3587,5105,145.060349,177.151245,176.870270,169.614059,156.779358,146.366135,146.952911,146.919861,148.895065,154.225647,156.853745,169.324799,187.564484,206.324814,223.043823,234.713226,240.109924,230.969421,204.333084,181.647125,171.109924,167.382645,161.936371,130.374390,107.903320,122.374397,132.266953,96.415718,46.423985,18.127293,14.721506,9.220675,11.143818,12.505803,13.819025,5.223976,1.048765,0.409094,0.163638,0.012397,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.355000,4612365.550000,3601,5105,133.044647,179.871078,177.681000,169.218185,157.598343,146.755371,147.019836,146.069427,148.532242,155.094223,157.375214,169.714050,188.028107,207.242981,221.242981,235.185120,237.424789,228.350418,206.598343,183.226456,172.912399,168.705795,165.127274,133.978531,111.019852,127.061180,138.085953,103.887619,46.590103,18.268614,15.011590,6.842989,11.604149,12.965304,11.263652,6.115713,1.663642,0.258680,0.250414,0.126447,0.277686,0.000000,0.095868,0.127273,0.000000,0.000000,0.000000,0.000000,1.317355,0.000000 -601464.955000,4612365.550000,3614,5105,135.794235,177.802490,174.909927,168.471909,156.876877,146.000839,148.356216,149.133072,149.182663,155.265305,157.860336,170.257034,189.017365,207.843811,221.645462,235.009109,238.414062,230.083481,205.810760,184.934723,174.364471,169.984314,166.827286,137.356216,114.133072,127.959518,141.620667,106.075218,50.678532,19.182663,15.166135,9.828940,11.279355,13.089272,14.330597,4.655382,0.794218,0.240497,0.308265,0.359505,0.144629,0.000000,0.113224,0.099174,1.387603,0.000000,1.094215,0.000000,0.000000,0.000000 -601468.755000,4612365.550000,3633,5105,146.132248,183.991745,177.223160,174.628113,159.644638,149.479355,150.702499,149.892578,151.090927,157.917374,160.776871,172.107452,192.586792,209.371918,226.884308,237.958694,241.049606,233.314072,209.975220,188.363647,176.082657,172.479355,169.727295,138.223160,115.611588,131.578522,143.487625,108.132248,51.983490,21.289272,15.429771,8.607453,12.923158,13.100018,15.608282,9.977699,1.413226,0.479340,0.069422,0.000000,0.000000,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.555000,4612365.550000,3657,5105,127.660347,183.230576,179.511566,171.900009,158.123154,147.974396,148.982666,149.081833,150.164490,157.139694,158.552917,172.676865,189.701660,209.238861,224.974396,237.338043,241.048782,231.569443,208.445480,186.552902,175.280167,172.891739,168.172745,137.883484,116.776047,129.048767,142.734726,107.329773,49.809113,19.321507,15.288447,8.152081,11.600842,12.261999,13.997538,6.796707,0.971904,0.361158,0.416530,0.000000,0.086777,0.000000,0.085124,0.090910,1.505785,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.355000,4612365.550000,3671,5105,143.171921,187.031418,177.866119,171.304138,158.246292,149.196701,149.378525,149.700836,152.006622,157.642975,159.138855,172.866119,192.576859,211.080994,226.006622,238.750427,240.965302,234.229752,209.940506,187.147110,176.254547,173.386780,170.436371,138.072739,115.866127,129.709106,143.618195,107.386795,52.081013,20.485144,15.494232,6.921502,14.424809,13.801670,16.170265,7.147944,0.518185,0.456201,0.555373,0.000000,0.000000,0.211570,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.155000,4612365.550000,3685,5105,125.418205,184.310776,180.980179,171.649612,158.856232,147.723984,148.335556,149.757034,149.839676,156.897552,158.071106,170.905792,190.335571,209.525650,225.707474,237.170273,240.963669,233.038040,208.310776,186.352097,173.980179,172.971909,167.327301,136.856216,114.277702,128.434723,139.715714,106.955383,48.566959,17.877705,15.211589,8.002493,11.375223,11.929768,13.176050,6.628936,0.978516,0.292564,0.023141,0.074380,0.043802,0.000827,0.027273,0.018182,0.000000,0.000000,1.100827,0.000000,1.324794,0.000000 -601482.755000,4612365.550000,3703,5105,125.709938,180.131424,179.255386,169.338043,154.313248,144.652084,146.933075,145.933075,148.676880,151.106628,154.123154,167.296707,187.643814,204.247131,219.181015,232.321503,234.478531,225.908279,202.007462,180.404144,169.073578,168.023987,164.900024,132.933075,112.321510,124.800842,136.585968,100.346298,47.420685,17.781010,14.990929,11.112412,11.684315,14.612414,15.800845,5.566124,0.789262,0.516531,0.292563,0.000000,0.180992,0.000000,0.119009,0.102480,0.000000,0.000000,0.000000,0.000000,2.226446,0.000000 -601485.555000,4612365.550000,3717,5105,116.236374,184.285950,180.897522,168.740494,155.021500,146.657867,147.393402,146.806625,148.310760,151.038025,154.500839,168.674377,188.062805,206.178513,220.004959,233.335541,234.839661,225.294205,201.319000,180.277679,169.195038,167.509094,162.781815,132.054550,111.996704,124.128937,136.476044,100.021500,47.186794,18.685143,14.798368,11.929770,13.723985,11.733900,15.214066,7.649597,0.941327,0.205787,0.423969,0.044629,0.036364,0.000000,0.070248,0.209091,3.533058,0.000000,2.252893,0.000000,0.000000,0.000000 -601489.755000,4612365.550000,3738,5105,135.116547,184.661987,177.306625,168.909912,155.645462,145.868591,147.157852,145.951233,147.240494,151.389252,154.116531,168.331406,186.736359,204.645447,219.546280,233.257019,234.240494,223.695038,199.835541,178.314880,168.009094,167.529755,161.372726,130.281830,110.042160,120.819023,135.463654,98.595879,46.017372,17.562830,14.670266,11.333900,9.651256,13.913240,15.186794,6.630589,1.062815,0.162811,0.385951,0.023967,0.183472,0.000000,0.080165,0.000000,1.357025,0.000000,0.000000,2.128926,0.000000,0.000000 -601495.955000,4612365.550000,3769,5105,136.738861,182.127258,179.003296,169.218185,155.400024,144.854568,146.350433,144.895889,146.689270,150.995056,154.400024,166.160339,186.961975,203.854538,218.763641,231.614883,234.796692,224.879349,200.259491,178.267761,167.862808,165.044647,160.309113,129.416534,107.937202,120.325630,129.614883,94.796722,44.557045,16.403324,14.573573,11.276876,10.528115,11.102497,11.482662,6.052903,0.503309,0.269423,0.468596,0.047934,0.000000,0.000000,0.000000,0.037191,0.000000,0.000000,0.000000,2.285124,0.000000,2.179339 -601502.955000,4612365.550000,3804,5105,125.261169,186.211594,178.831436,170.616562,154.633072,143.748779,146.128937,144.500839,145.790100,150.674393,152.368607,167.004974,185.533920,204.310760,218.757034,233.591751,236.467789,225.740509,199.988449,176.112427,166.831421,163.533890,157.781830,127.137199,105.798363,117.897537,125.046295,89.881004,41.013245,16.412415,14.343821,11.569438,11.733900,12.246298,12.769438,5.940505,1.558682,0.490084,0.127274,0.087603,0.045455,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.507439 -601509.155000,4612365.550000,3835,5105,148.632248,194.417358,180.714890,172.028946,156.227295,146.152908,146.706635,147.326462,147.830597,153.921509,153.590927,167.756210,185.566116,203.987610,218.681824,233.152893,235.838837,225.194214,199.838837,176.475220,166.078522,162.921509,156.863647,125.698364,105.747948,117.838860,124.863655,90.781006,44.037209,18.471094,14.260348,15.104148,10.961175,14.463653,14.323985,8.145466,0.812399,0.395869,0.171075,0.012397,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.155000,4612365.550000,3860,5105,137.384293,190.871902,179.318176,170.070251,156.169418,144.268600,145.731400,145.929749,146.830582,152.822311,151.516525,165.252075,184.161163,202.433884,218.194214,231.623962,233.549591,222.004135,197.136368,174.929749,164.475220,160.417374,155.227280,123.764473,104.805801,116.376038,125.640503,89.210770,42.632252,17.686796,14.111589,12.528942,10.805802,12.442993,12.109933,6.007448,0.776035,0.019835,0.176860,0.000000,0.081819,0.000000,0.006612,0.004959,0.000000,0.000000,0.000000,1.061984,0.000000,0.000000 -601516.755000,4612365.550000,3873,5105,131.436371,195.014893,178.444656,171.899200,156.006638,145.890930,147.155396,146.709106,146.552094,153.800018,152.014893,165.568619,183.700851,203.328949,217.742172,232.519028,234.692581,221.940521,196.882660,177.130600,164.981842,161.882660,156.072754,124.742165,104.081009,116.130592,125.899178,91.171921,42.469440,18.528116,14.188449,13.646297,11.186795,11.982661,13.729769,8.213235,1.513226,0.485951,0.279341,0.109918,0.017356,0.376860,0.000000,0.000000,0.000000,0.000000,2.418182,0.000000,0.000000,0.000000 -601520.355000,4612365.550000,3891,5105,145.256210,192.462830,179.297531,171.975220,155.264481,145.173584,146.851273,146.446320,147.396729,155.347122,152.495880,164.933899,184.710754,202.785141,217.735535,231.925629,231.950424,220.272720,196.512405,175.909103,163.338852,160.966965,154.727295,122.933899,103.008278,117.247948,124.925636,89.611588,42.826466,18.081837,14.066135,13.069438,9.615719,12.652082,12.767786,7.123151,1.132234,0.036364,0.219836,0.077686,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.955000,4612365.550000,3914,5105,143.558685,192.985138,180.571930,172.852921,156.373566,145.282654,147.018188,146.142151,147.059509,154.125626,149.803314,163.191742,182.406631,200.166946,215.026474,229.117371,231.728943,218.042999,195.538849,174.431427,162.307449,158.497528,153.745468,121.274391,102.836372,116.100838,123.786789,88.175217,43.332253,17.431425,13.976878,14.251257,10.454561,11.679355,13.204150,6.141331,0.366117,0.087604,0.044629,0.447934,0.019835,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.555000,4612365.550000,3937,5105,157.883484,199.924789,181.999176,171.792572,156.214066,144.247131,145.362823,145.040512,147.387619,155.313232,151.594238,163.486786,180.916534,200.495041,216.569427,230.387604,230.181000,218.156204,193.850418,174.519836,162.404129,160.495041,153.445465,121.247116,102.561165,118.924805,125.032242,90.643814,43.280186,18.871920,13.949606,13.299191,11.571918,12.541341,12.242992,8.971087,1.247937,0.133885,0.131406,0.000000,0.014876,0.095041,0.003306,0.142149,1.399174,0.000000,0.000000,0.000000,0.000000,0.000000 -601534.355000,4612365.550000,3961,5105,159.400848,201.086792,183.681839,173.764481,156.946304,145.136383,145.590927,145.185974,146.747955,155.053741,150.962830,165.095062,180.805801,199.384308,216.136383,229.268616,230.516556,216.574402,192.500015,173.781006,162.582657,157.946304,153.227295,120.276878,101.648773,117.723160,123.483490,86.681831,42.144650,18.038038,13.929771,13.482660,10.822330,12.009933,14.110760,7.912407,0.997524,0.340497,0.196696,0.152893,0.000000,0.558678,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.755000,4612365.550000,3993,5105,121.418205,174.236374,170.591751,162.624802,149.542160,142.633072,141.666122,140.360336,141.368607,143.757034,147.566956,161.657867,178.046295,195.484314,209.641342,223.847946,224.872742,216.748779,190.500839,170.434723,158.459518,154.831421,149.236374,119.112411,100.988441,113.996704,121.517365,87.748772,43.947128,17.204977,13.566960,8.470260,10.219851,11.649604,12.534727,5.332241,0.700002,0.245455,0.144629,0.000000,0.000000,0.528100,0.074381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.955000,4612365.550000,4009,5105,131.815720,174.022339,174.584320,166.857056,153.509949,145.823990,144.939697,143.410767,146.080185,147.402512,150.551270,163.096725,179.972748,198.204163,212.542999,225.361176,228.633911,219.377716,194.947952,171.427292,161.906631,156.989288,151.972748,122.493408,103.501671,115.757866,124.914894,91.832253,45.774399,19.898367,13.815722,11.985967,12.490101,13.903323,14.350430,8.094226,1.500830,0.046282,0.094215,0.000000,0.000000,0.000000,0.009091,0.464464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.155000,4612365.550000,4035,5105,115.060349,171.349609,172.994232,164.176056,150.514893,141.795883,142.366135,141.118210,142.333084,145.523163,149.151260,161.027298,178.605804,195.118210,209.531433,223.035553,225.233902,216.952911,191.209106,169.283493,158.647125,155.291763,149.118210,119.341339,100.324806,115.068611,122.630592,88.572739,43.564476,15.781010,13.556217,8.731421,9.865307,13.063654,12.569437,6.330589,0.680993,0.019836,0.230580,0.021488,0.018182,0.000000,0.019835,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.355000,4612365.550000,4071,5105,120.480186,170.199188,176.736374,167.223984,154.628937,145.463654,143.810760,142.802490,144.447113,147.430588,150.554565,163.752899,181.976044,198.562820,212.587616,226.174393,228.976044,219.587616,194.265305,170.951248,162.100006,157.265305,151.736374,121.480179,102.182663,116.438858,124.661995,90.141335,44.992584,18.500845,13.794234,10.990099,12.042993,12.345473,15.155389,6.657861,2.057855,1.471903,0.877687,1.039671,1.534712,0.984298,0.000000,0.000000,1.164463,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.555000,4612365.550000,4102,5105,125.737213,166.018188,175.009933,163.472733,149.390106,141.497543,141.737213,140.828125,142.381851,144.604980,148.191742,160.266129,179.084305,195.761978,212.836380,224.257858,228.233063,219.679352,192.034698,170.654556,158.803314,154.323975,151.563644,120.720688,100.307465,113.067795,120.638039,87.952087,42.357044,17.236383,13.778531,7.273565,9.474396,11.383487,10.521502,7.349597,0.393390,0.247109,0.195042,0.109091,0.046281,0.000000,0.000000,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.555000,4612365.550000,4122,5105,119.459518,167.699188,173.343811,160.880981,151.748764,143.674377,140.889252,141.385117,142.319000,146.310745,149.360321,160.757019,178.327286,196.095886,212.112396,225.649582,228.418182,217.335541,193.633072,170.178513,158.831406,154.128922,148.599991,119.442986,100.038033,113.327286,119.624809,86.839684,42.963654,16.029770,13.509109,7.481002,10.813239,11.181007,11.550428,4.402488,0.890912,0.173555,0.177687,0.036364,0.035538,0.000000,0.000000,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.555000,4612365.550000,4152,5105,118.047127,166.129776,174.427292,163.022339,148.658707,142.509949,141.419037,140.443832,141.914902,145.071930,148.071930,160.493408,176.427292,193.981018,209.022339,221.162842,224.625641,214.427292,188.600845,165.956223,156.295074,151.799194,145.972748,117.129768,98.708282,110.369438,119.245476,84.716545,41.369438,16.060349,13.270267,6.383484,9.765306,10.278529,10.341337,4.951250,1.019837,0.195869,0.184299,0.152066,0.021488,0.106612,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.755000,4612365.550000,4168,5105,111.276871,168.314056,173.206604,168.472717,157.514069,148.530609,144.671097,143.960358,144.596725,146.563660,150.158707,160.571915,177.480988,194.753723,210.200012,221.497528,225.588440,214.571915,190.175217,168.861160,159.844650,155.406631,151.836395,123.357040,103.629761,116.200020,122.704147,88.952072,45.084316,18.946299,13.803326,8.754561,11.263654,11.827290,12.249602,7.382656,2.217360,0.915704,0.191737,0.519836,0.770249,0.000000,0.007438,0.089257,0.000000,1.341322,0.000000,0.000000,0.000000,0.000000 -601580.955000,4612365.550000,4194,5105,119.947952,170.179367,169.187622,163.385971,151.708298,143.328125,143.055405,141.253738,143.319855,146.253738,147.799194,160.518204,178.204163,194.534714,208.642151,220.270264,224.815720,213.757858,188.914886,166.857056,154.377716,151.336395,146.700027,116.253738,97.361176,110.113243,118.253738,86.559525,42.063656,17.272745,13.336384,9.358691,9.429770,10.787621,11.215717,5.574390,0.803308,0.439671,0.242150,0.000000,0.044629,0.064463,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.155000,4612365.550000,4225,5105,110.433891,176.301666,178.210754,165.938034,153.566132,145.929764,143.004150,143.731415,144.309937,146.838852,150.764481,162.045471,178.921509,195.706635,210.202499,222.061996,223.995880,213.781006,188.194229,165.491745,155.657043,150.781006,144.863647,115.268600,97.524811,110.574387,117.037201,86.822327,43.020676,18.755392,13.169440,9.495880,10.418200,11.797538,11.567783,5.843810,0.598348,0.454546,0.014050,0.013223,0.000000,0.000000,0.004959,0.482646,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.955000,4612365.550000,4244,5105,118.115707,165.495865,173.123962,162.685944,150.925629,141.636368,141.991730,140.289261,141.586777,145.190079,147.099182,159.132233,177.297516,193.760330,208.173553,219.446274,223.322311,211.619827,186.404953,164.148758,154.024811,148.942169,144.818176,114.264473,94.768600,108.809929,116.595047,85.264481,39.917370,15.962002,13.165307,6.552903,8.417373,9.323157,11.357038,4.734718,0.047934,0.207439,0.010744,0.022314,0.008265,0.000000,0.070248,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.155000,4612365.550000,4270,5105,122.291748,172.134720,174.250427,165.572723,152.952896,142.481842,142.258698,141.671921,142.109940,145.440521,146.878540,158.663620,176.440506,193.663620,207.845444,220.415710,221.523148,211.828934,185.804138,163.787598,152.605789,148.266968,143.118210,114.481834,94.605797,109.432243,116.787621,86.812408,41.151257,17.732248,13.010762,6.818193,10.108282,10.132247,10.114889,4.759513,0.719010,0.241323,0.101653,0.004959,0.109918,0.000000,0.028099,0.212397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.355000,4612365.550000,4291,5105,118.380173,167.016541,172.297531,164.826462,151.388443,142.520676,140.958694,140.652908,141.008286,144.206635,145.966965,158.322327,174.983490,192.570267,205.933884,218.239670,219.743805,209.966949,184.619858,161.330597,151.504150,147.371918,141.454559,111.553726,92.710762,107.520668,115.429764,85.314072,41.628117,15.912414,12.859524,7.046292,9.064480,9.224811,10.534726,5.006620,1.609920,0.465290,0.133885,0.023141,0.003306,0.000000,0.186777,0.355372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.155000,4612365.550000,4315,5105,120.741348,161.361160,173.749603,166.534714,152.113235,142.104965,141.683487,140.088440,140.551254,143.848770,146.790924,158.311584,174.873566,190.220673,204.567780,217.435547,219.394226,209.063644,183.625626,161.972733,150.658691,146.286789,141.700012,112.262009,94.245476,108.650436,115.113251,85.303322,42.427296,16.936382,12.881837,6.661169,10.386793,9.430595,10.076873,3.579347,0.667771,0.626448,0.133885,0.089257,0.214050,0.000000,0.036364,0.394216,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.955000,4612365.550000,4344,5105,114.911591,169.969437,172.225647,163.415726,151.349609,141.795883,140.225647,139.804153,139.547958,144.688446,145.787628,156.481842,174.068619,191.176056,204.448776,215.787628,219.093414,208.713242,183.795883,162.019028,150.696716,144.622330,140.027298,111.985962,93.514893,106.027290,115.531418,85.762833,40.316547,17.542994,12.729772,7.696707,10.099191,8.367785,9.144642,3.457859,1.139672,0.057025,0.000000,0.037191,0.000000,0.000000,0.025620,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612365.550000,4360,5105,138.147125,174.395065,169.527298,165.833084,151.866135,142.138870,140.882660,139.750443,140.452911,144.519028,146.353745,156.824814,175.014893,191.543808,206.180176,218.411591,219.229782,209.031433,183.461166,161.312424,150.006638,146.337219,139.800018,110.626457,92.593407,107.370262,116.436378,85.238029,41.452911,16.760349,12.709110,6.638854,9.639687,9.708282,9.972742,4.591746,0.803308,0.215703,0.153720,0.071075,0.000000,0.179339,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612365.550000,4379,5105,119.088440,172.005783,173.204132,165.228912,149.923157,142.675217,141.873566,141.129761,140.823975,144.319839,145.228943,156.220673,173.526459,190.501663,205.047119,216.733063,218.038849,207.195877,182.815720,159.237183,148.848770,145.633896,139.063644,110.542984,91.600845,105.377693,114.675217,84.633911,40.642166,16.274399,12.642166,6.428110,9.492580,8.600016,8.142162,4.319015,0.647110,0.329753,0.067769,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.355000,4612365.550000,4411,5105,133.715714,181.038025,172.814896,164.773560,152.682663,142.971909,140.781830,139.310760,139.773560,143.905792,145.542160,156.360336,172.368607,190.401672,204.608276,216.467789,216.641342,206.938858,181.905792,160.426453,148.757034,143.211578,138.781830,110.385139,91.294228,106.591751,115.575218,84.484314,41.798367,17.559523,12.616547,5.941334,9.808281,10.939686,9.563649,4.371083,0.936366,1.147936,0.265290,0.133885,0.351240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601627.355000,4612365.550000,4426,5105,127.666130,175.046280,174.228088,167.302475,154.657867,143.533890,141.418198,141.343811,140.517365,144.600006,145.699188,156.492569,173.790085,190.244629,204.178513,215.418182,218.500824,206.252884,181.038010,159.120667,149.277695,144.409927,139.781830,110.418198,91.633072,104.343811,114.484314,85.385139,42.368614,17.664482,12.707456,7.038854,10.008282,9.785141,9.490924,4.942984,0.452894,0.192563,0.000000,0.070249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601630.555000,4612365.550000,4442,5105,130.781006,177.782654,172.914886,166.972733,152.559509,141.245468,141.121490,139.295044,140.956207,144.989273,145.592575,157.609100,173.675217,191.121490,204.898361,217.443817,218.666946,207.328110,181.468597,160.261993,148.567780,143.931412,138.972733,108.666954,91.328110,104.096703,113.972740,83.898354,39.724815,17.022331,12.633904,6.181829,8.339685,8.555387,8.192575,3.196702,1.008267,0.110744,0.480993,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.155000,4612365.550000,4475,5105,121.014893,184.643005,174.981842,166.791748,151.866119,143.287613,141.593414,140.593414,140.436386,145.320679,144.907440,155.246292,173.469421,191.287628,204.527283,214.833069,215.824799,205.700836,180.907455,157.998352,146.742157,142.047943,137.345474,108.105797,88.775223,103.469437,111.634727,84.006622,39.601673,17.340515,12.485969,6.419846,7.598362,9.443817,9.767784,3.332239,0.885953,0.085951,0.000000,0.016529,0.019008,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.355000,4612365.550000,4491,5105,121.010757,180.589264,176.233887,167.308273,154.547943,142.366119,140.671906,140.052078,139.738022,143.994217,144.275208,155.266953,170.944641,189.407440,203.473557,214.242157,216.184311,204.266953,178.903305,156.060333,146.151245,141.019012,136.572739,107.481834,89.779350,101.101669,112.010757,83.638863,39.349606,15.528117,12.415721,5.086787,7.790925,8.609107,9.424808,2.934716,0.429753,0.585952,0.233885,0.269422,0.017356,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.365290 -601643.155000,4612365.550000,4505,5105,125.370255,169.345459,176.593399,161.750427,146.700836,134.510757,136.031418,131.932236,132.328934,133.047943,133.552078,144.287613,160.568604,173.659515,186.766953,196.114059,196.155380,185.502487,163.386780,143.014877,134.957031,130.626450,124.981827,99.229759,82.998352,93.758682,103.750420,76.039696,36.568619,17.214069,11.362002,9.044641,9.916542,10.136376,10.717370,4.794224,1.563641,0.334712,0.204133,0.115703,0.045455,0.000000,0.000000,0.000000,5.659504,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.355000,4612365.550000,4526,5105,125.207451,177.290100,171.992584,160.620697,145.852081,136.033920,134.232254,131.017380,130.438858,131.843826,132.852081,143.174393,159.215714,173.794250,186.364471,196.447113,196.496704,184.901672,161.546310,142.207458,132.645477,130.174408,124.100014,98.331421,81.504974,92.810760,101.703316,75.347946,36.182667,15.420681,11.281837,10.279354,9.197535,10.223155,9.899190,3.130586,0.750415,0.177687,0.085951,0.000000,0.000000,0.000000,0.000000,0.048760,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.755000,4612365.550000,4553,5105,112.724808,177.245483,170.799194,158.427292,144.501678,133.328110,131.898361,129.700012,129.799194,132.981003,131.121506,142.121521,158.551270,173.295074,185.361176,196.195892,197.187622,184.823990,161.815735,142.154572,131.154556,129.154556,123.609100,96.162827,80.947952,91.716545,101.212418,74.815720,34.278530,13.966958,11.237210,7.749600,8.330592,8.676046,10.195883,4.578524,0.542151,0.248761,0.286778,0.003306,0.051240,0.000000,0.213224,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.755000,4612365.550000,4578,5105,125.096710,177.741348,170.774384,160.757874,146.766129,135.427277,134.848785,131.047119,130.609116,132.799194,133.592575,143.947937,160.228958,174.923172,188.311600,197.361176,198.352921,186.584320,163.096725,143.774384,133.766129,130.617371,125.427292,98.526459,81.691750,93.964470,103.633896,74.890099,36.501671,16.781836,11.402498,9.310758,8.868609,8.504972,9.541337,3.013230,0.429753,0.185125,0.121488,0.000000,0.108265,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,1.571901,0.000000,0.000000 -601660.555000,4612365.550000,4592,5105,115.947952,175.766144,170.394241,161.617386,145.063660,134.782654,134.195877,131.352905,129.857040,131.427277,132.055374,142.848785,159.237213,176.162842,186.237213,196.956223,197.914902,185.509949,163.080185,143.220688,131.914886,129.890091,124.245461,97.443817,79.733078,92.385971,101.303322,73.319847,35.361176,15.586796,11.295061,8.695056,9.047949,8.714063,8.660346,2.769428,0.418183,0.067769,0.018182,0.000000,0.000000,0.000000,0.000000,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,2.161157 -601666.355000,4612365.550000,4621,5105,123.760345,173.991745,173.611588,161.925659,146.231400,135.247955,136.247955,132.933899,131.578522,135.661179,133.876053,144.008270,160.553741,177.016541,188.272751,199.165298,198.661179,185.595062,162.677704,143.636368,133.330597,130.719025,123.727287,97.190102,82.033073,92.644646,103.272743,74.909103,35.925640,15.373571,11.247952,9.844643,8.628940,9.712412,9.183487,2.553727,1.147110,0.171902,0.071075,0.000000,0.000000,0.000000,0.068595,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.955000,4612365.550000,4649,5105,119.858696,182.718201,171.875229,160.833908,147.114899,134.057037,134.891754,131.577698,131.329773,134.387619,132.552917,143.214066,159.519852,174.585968,186.247131,196.974396,195.833908,183.511597,161.511597,141.561172,131.172745,129.718201,123.445473,97.007454,79.561180,92.057045,101.296715,72.123161,33.767788,13.724811,11.222333,8.708281,7.292574,8.276047,8.285140,3.110751,0.449589,0.091736,0.003306,0.105786,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.955000,4612365.550000,4664,5105,128.942169,182.024826,171.090942,162.520676,146.520691,135.281006,133.975220,131.223160,131.586792,133.983490,132.214890,142.338882,158.826462,174.669449,185.322342,196.487640,196.173584,183.363663,160.842987,140.603333,131.140518,129.140518,123.000015,95.157043,78.685966,92.016548,100.537209,73.173569,33.652912,13.048778,11.181837,8.533900,6.815714,8.788443,9.028114,2.466124,0.568597,0.236365,0.273555,0.210744,0.000000,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.955000,4612365.550000,4679,5105,114.477699,189.519012,173.229752,166.114059,149.923981,136.361984,136.742157,133.204971,133.204971,136.824799,135.047943,144.221497,160.543808,176.543808,189.254547,198.783478,197.899185,185.775208,162.585129,142.998352,133.543823,129.890930,125.345467,97.436378,81.758690,93.915718,102.543816,74.469437,36.304153,15.422332,11.395061,11.064481,8.937203,10.374395,11.392579,4.806622,0.560331,0.357853,0.313224,0.005785,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.155000,4612365.550000,4700,5105,135.047943,186.758682,173.700836,163.295868,145.915710,134.568604,134.816544,133.188446,132.692581,135.634720,132.585144,144.089264,159.791748,176.180176,187.899185,198.642975,197.725632,184.122314,161.990082,142.312408,131.287613,129.171921,123.709106,95.998360,79.634727,92.585136,100.469437,71.998367,34.601677,13.995060,11.246301,10.993404,7.711584,8.447948,7.591749,2.833892,0.526448,0.157852,0.008265,0.068595,0.047108,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,2.253719 -601688.755000,4612365.550000,4733,5105,144.683487,192.658691,178.162827,169.385956,152.171082,137.402496,137.749603,136.063644,136.319839,140.295044,135.493393,147.104965,162.501663,179.476868,191.559509,202.096710,199.766129,185.361160,164.823975,145.352905,133.865311,131.138031,125.790924,96.204147,81.857048,96.047127,104.815720,74.757874,35.914894,16.374397,11.435556,11.482662,10.246296,10.783486,10.274395,5.132242,0.861160,0.388431,0.127273,0.000000,0.054546,0.000000,0.190083,0.171075,0.000000,0.000000,0.000000,0.000000,2.887604,0.000000 -601698.155000,4612365.550000,4780,5105,152.680176,194.779343,179.167770,169.589264,151.457031,140.333069,138.547943,136.630585,135.093399,142.159515,136.399185,147.242157,162.225632,178.985962,191.547943,202.523148,200.969421,185.696701,163.820663,144.200836,133.614059,131.068619,126.663658,96.630592,82.275223,95.721504,104.176056,73.738029,35.936386,14.842994,11.514894,13.223157,9.987617,9.091747,8.532247,5.028108,0.801656,0.619010,0.120661,0.000000,0.075207,0.007438,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.355000,4612365.550000,4851,5105,107.022324,163.419022,171.757858,159.964478,146.220673,137.468597,134.212402,133.179352,133.278519,134.848770,136.419022,147.369431,163.939682,181.369431,193.832245,202.237198,202.600830,191.923157,167.857040,146.666946,135.361160,131.633896,126.700012,98.658684,81.146294,94.104965,106.038849,76.584312,36.171097,14.833076,11.518202,7.561996,7.463652,6.646295,8.343816,3.852901,1.031407,0.136364,0.284298,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.555000,4612365.550000,4957,5105,110.054550,164.021500,172.228119,161.765305,147.583481,137.484329,135.451263,133.674393,134.104141,136.178543,138.426468,149.228119,166.054565,181.963654,195.401672,205.823151,205.327286,195.087616,170.542160,147.459518,138.319031,133.327286,129.145462,99.128937,82.798370,96.294228,107.285965,77.881004,38.046299,16.463655,11.740515,8.346293,8.338860,8.777702,9.761999,3.673561,0.436365,0.480993,0.150414,0.064463,0.074381,0.000000,0.135538,0.000000,0.000000,0.000000,0.000000,0.990909,0.000000,0.000000 -601765.755000,4612365.550000,5118,5105,123.383484,172.193405,169.722336,163.185150,147.185150,137.953735,135.391754,133.871078,132.928940,136.548782,137.044647,149.276047,166.945480,182.714066,195.383484,206.474396,206.986801,196.242996,172.143814,150.317368,138.639694,134.135544,129.854553,100.548782,81.160339,97.540504,109.309113,81.631416,39.143822,16.224812,11.804978,5.761168,7.899192,10.341340,8.232245,4.471083,0.862812,0.000000,0.458679,0.000000,0.000000,0.000000,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.955000,4612365.550000,5249,5105,125.128120,174.450424,171.830612,163.557877,149.202515,136.797546,136.731430,134.880188,134.491760,138.243835,137.904984,149.227310,167.541351,183.309937,197.053741,207.946274,209.648758,198.830597,174.863663,153.070282,142.805817,137.830597,132.590927,101.500023,83.062004,98.789284,112.119858,84.417374,39.648781,15.942994,12.053740,5.964472,7.197537,7.686793,8.768609,3.005792,0.431406,0.000000,0.000000,0.066942,0.000000,0.000000,0.013223,0.009918,1.339670,0.000000,0.000000,0.000000,0.000000,2.309918 -601803.355000,4612365.550000,5306,5105,131.452087,183.419022,173.344635,163.757858,151.840500,139.014053,137.352905,136.295044,135.344635,139.088440,138.485138,150.228943,168.559509,186.121490,199.361160,210.104965,211.766129,201.782654,178.171082,155.857040,143.022324,138.014053,132.336380,101.964478,82.518211,98.650421,114.361176,86.609108,39.311588,15.416547,12.030597,5.804143,8.604149,6.747949,7.997533,2.413230,1.000828,0.193390,0.148761,0.009091,0.042976,0.000000,0.004959,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.155000,4612365.550000,5330,5105,114.717369,184.535538,174.667770,165.428116,151.312408,137.981827,137.188431,135.940506,134.824814,140.312408,139.130585,151.039673,168.684326,186.948761,200.279343,211.733917,212.502518,202.023163,178.634720,156.717361,144.403305,139.353729,133.618195,102.890923,83.882660,100.981834,114.081009,86.651253,39.808285,15.859522,12.147127,4.450421,6.856214,7.367784,8.258692,3.165296,0.615704,0.000000,0.001653,0.011571,0.047934,0.181818,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.355000,4612365.550000,5351,5105,116.819847,177.563644,178.571915,164.365295,147.406616,137.340500,137.439682,135.679367,136.175217,138.241333,139.456207,152.786789,171.357040,187.613235,202.753723,214.315720,215.902496,203.406616,179.919022,156.100830,144.580170,143.514053,138.018188,106.571907,89.307457,104.216545,116.026459,84.836380,41.952087,17.975227,12.547126,11.274395,10.135553,11.708281,13.324809,6.760341,0.842978,0.558679,0.319836,0.124794,0.247108,0.000000,0.065290,0.453720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601814.955000,4612365.550000,5364,5105,130.215714,186.252060,188.177689,173.004135,156.400833,146.657028,147.648758,145.805786,145.599167,148.194214,148.913223,160.995865,179.194214,196.276855,209.086777,221.194214,220.533051,207.400833,181.119827,158.814056,147.384293,143.698349,138.318176,108.053726,90.053726,104.342987,117.491745,83.599190,40.888451,15.947125,12.574399,12.285965,10.538860,11.442991,12.052909,5.300009,1.466119,0.609919,0.420662,0.623141,0.190910,0.000000,0.033058,0.000000,4.628926,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.755000,4612365.550000,5378,5105,117.196701,176.543823,180.535538,164.725647,149.452911,138.758698,139.328949,137.618210,136.857880,139.378540,141.097549,153.560349,171.866135,189.899185,202.940506,216.494217,217.998352,203.981827,179.742172,157.370270,145.056213,143.188446,138.163666,106.874397,90.361992,104.204971,118.601669,84.783485,43.659523,17.190104,12.560349,12.366958,9.923155,11.330593,13.290925,5.705794,1.042977,0.757852,0.455373,0.499174,0.432232,0.227273,0.108265,0.212397,1.695868,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.355000,4612365.550000,5401,5105,118.309937,181.665283,181.028931,165.500015,150.425629,138.409103,138.045471,136.128113,136.326462,138.871918,139.723160,152.714890,171.128113,189.293396,201.847107,215.309921,216.665283,202.888428,180.351242,156.210754,145.888443,143.954559,137.681839,106.409103,89.971085,103.409103,115.929771,84.731422,42.475227,16.923985,12.516547,13.419850,10.184313,12.893404,13.554562,7.042159,1.187607,0.385952,0.473555,0.008265,0.066942,0.000000,0.095042,0.468596,1.492562,0.000000,0.000000,1.241322,0.000000,0.000000 -601826.155000,4612365.550000,5420,5105,128.317368,185.804993,181.218216,166.300842,149.639709,138.375229,138.375229,136.730591,135.441345,139.581833,140.003326,152.771942,170.978531,188.383484,203.085968,215.970245,216.838013,203.102493,179.234741,158.738876,146.507477,142.449600,139.218201,107.342171,90.119026,104.879356,117.391754,84.722336,42.094234,17.935555,12.656218,10.915719,11.185968,11.713240,11.279354,6.190919,1.322317,0.361984,0.207439,0.000000,0.000000,0.000000,0.000000,0.069422,0.000000,0.000000,0.000000,0.931405,0.000000,0.000000 -601831.155000,4612365.550000,5445,5105,129.588440,185.290924,179.877701,167.968597,152.728943,142.563644,142.547119,138.993393,138.935547,141.497528,142.059509,154.431412,173.059509,191.340500,204.505798,217.778519,219.274384,205.621490,180.919022,158.530594,147.307449,144.629761,138.563644,108.018188,90.613235,105.489265,118.332245,85.067780,43.340519,16.876051,12.596713,11.669436,10.033075,11.461998,10.827287,6.905796,1.276036,0.182645,0.650414,0.191736,0.390083,0.000000,0.031405,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.355000,4612365.550000,5481,5105,122.846283,189.912399,179.119019,166.780167,148.763641,135.763641,137.052902,134.788437,134.457855,139.143799,138.069427,151.019836,169.325623,187.375214,201.499176,213.986786,215.135544,201.218185,177.176865,154.978516,144.276031,140.590088,135.490906,104.474380,86.656212,103.069427,114.565292,82.532242,40.193413,14.622333,12.317373,11.305799,10.000016,10.351254,12.593404,3.023147,0.915704,0.639671,0.124794,0.025620,0.000000,0.000000,0.042976,0.207438,0.000000,0.000000,0.000000,1.257851,0.000000,0.000000 -601841.155000,4612365.550000,5495,5105,108.471092,182.813232,178.961975,166.763657,152.838043,140.557037,139.300842,138.119034,137.879364,142.788452,141.119034,152.986801,169.920685,187.284286,202.019821,213.276016,216.127258,204.928909,180.185104,159.912415,147.656219,145.276047,139.945480,111.110756,93.383484,108.631416,116.523987,84.408279,39.978531,17.676052,12.722333,6.633895,8.611584,9.614891,11.846296,4.534719,0.833887,0.204133,0.274381,0.138017,0.008265,0.105785,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.755000,4612365.550000,5508,5105,114.020683,170.524826,173.549622,166.731430,152.979370,141.202515,141.169449,139.450439,138.177719,142.863663,144.004166,154.623993,170.979370,187.789291,200.781006,213.962845,215.987640,205.706635,180.623993,160.541351,149.731430,146.037216,141.863663,114.880188,96.095062,110.673576,116.062004,85.450439,39.409107,15.909110,12.896713,4.807447,7.505798,10.180180,10.579350,2.942157,1.202482,0.630580,0.600001,0.142149,0.047934,0.212397,0.296695,0.000000,0.000000,0.000000,0.000000,1.767769,0.000000,0.000000 -601847.955000,4612365.550000,5529,5105,127.690102,174.152908,174.938034,169.392578,152.557861,143.243820,141.342987,141.392578,141.516541,146.334732,146.252075,157.301666,172.632248,189.789276,203.243820,216.400848,217.814072,206.789276,183.764481,161.657043,150.847122,148.012405,144.045471,115.805801,96.929771,109.508278,116.789276,87.326462,42.822334,17.538033,13.095060,8.042987,10.676049,11.985141,10.191750,5.919843,1.266118,0.560332,0.295042,0.000000,0.160331,0.143802,0.398348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601852.555000,4612365.550000,5552,5105,99.047958,174.047943,172.990082,166.428101,153.122314,144.271103,141.304153,140.287628,140.279358,143.295883,144.246307,155.064468,170.659515,186.923981,200.808273,213.080994,214.981827,205.031418,180.221497,159.147110,148.676056,145.571091,142.009109,115.703316,99.984314,110.752907,117.794228,85.901672,42.025642,17.804976,12.909936,7.655385,10.041336,9.374395,9.218195,5.141333,0.746283,0.334712,0.003306,0.163637,0.280166,0.009091,0.085124,0.334711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.155000,4612365.550000,5585,5105,108.011597,172.457855,173.077682,167.342163,152.342163,142.127304,139.895905,138.838058,138.350449,142.821518,142.614914,153.838043,168.705795,185.656219,198.540512,211.962006,212.523987,202.433075,177.482651,156.995056,146.771927,143.317368,138.945496,112.110771,94.218201,108.094246,115.276062,84.251259,39.970268,15.562000,12.631424,7.743814,9.525634,8.175220,8.591748,4.115710,0.947937,0.580168,0.145455,0.325620,0.134711,0.113224,0.028926,0.323967,0.000000,0.000000,0.000000,0.000000,1.914050,0.000000 -601865.955000,4612365.550000,5619,5105,105.652908,163.685944,171.438034,162.214890,148.966965,138.884308,136.933899,135.876053,135.537201,137.272751,138.132248,148.338852,165.099182,181.958694,194.528946,206.272751,208.024811,197.661179,174.396713,153.570267,143.322342,139.314087,135.090927,108.347115,89.876053,104.512405,111.495872,81.628113,39.057869,16.500845,12.281012,5.330590,8.872743,8.868610,8.326458,4.315711,0.574382,0.147108,0.123141,0.085124,0.122314,0.023141,0.000000,0.320661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.955000,4612365.550000,5634,5105,106.516548,162.954575,172.045486,161.863663,148.144653,136.954575,136.078522,133.706635,133.111588,135.789276,137.293427,148.417389,164.161194,179.987640,192.764496,205.219040,206.400864,196.690109,172.772766,152.425659,140.896713,139.500031,134.045456,105.566132,88.665306,104.219025,111.475220,82.764481,39.268612,16.214067,12.185969,8.477698,10.659521,10.189273,8.092575,3.800835,1.154548,0.274381,0.000000,0.046281,0.000000,0.009091,0.180992,0.000000,0.000000,2.096694,0.000000,0.000000,0.000000,0.000000 -601873.755000,4612365.550000,5658,5105,107.773575,165.137207,168.285965,158.252899,145.095886,134.740524,133.905807,131.360352,128.963654,132.195068,134.418198,144.434723,161.360336,176.963654,189.120667,201.137207,203.484299,193.087616,170.864471,148.261169,138.757034,135.517365,131.145477,103.608284,85.798363,100.963654,109.566963,79.757034,37.847954,15.905803,11.922333,5.903316,8.701667,7.343817,9.990921,3.638023,1.079342,0.427274,0.214877,0.045455,0.120661,0.002479,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.755000,4612365.550000,5693,5105,97.079353,162.145447,172.029755,160.079330,146.781815,137.947113,133.748779,132.922333,131.674393,133.765305,134.715714,145.476028,161.814880,178.269424,190.013229,202.707428,203.178528,194.054565,171.145447,150.319000,138.558670,137.211563,131.690918,106.484314,87.608276,101.773567,111.360344,82.079361,40.624809,16.885967,11.971919,7.573567,10.745469,10.121503,10.715716,2.987610,0.398349,0.640498,0.137190,0.342149,0.010744,0.005786,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.755000,4612365.550000,5728,5105,100.819023,160.100006,167.942993,156.860336,144.447113,134.496704,133.653732,131.257034,130.290100,132.571091,134.587616,144.827286,160.744644,176.058670,188.951248,200.893402,202.290100,191.571091,167.984314,147.843811,138.009109,135.314896,130.281830,102.587616,84.736374,101.116539,109.736374,81.339684,39.141338,15.040513,11.843821,6.133895,9.823982,9.640512,8.089269,4.417363,0.612399,0.326448,0.070248,0.210744,0.000000,0.009092,0.076033,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.755000,4612365.550000,5743,5105,105.925621,159.305801,166.991745,158.239685,145.586792,135.909088,132.553726,130.504135,131.024796,133.272720,134.355377,145.371918,160.884308,176.487625,188.528946,200.520676,202.214890,193.066132,168.909103,147.933899,138.429764,134.429749,130.727280,103.016541,86.322327,99.933891,109.793388,80.347122,38.396713,15.048777,11.884316,5.882656,10.627287,7.557868,8.633896,3.913231,0.400828,0.325622,0.077686,0.123967,0.128926,0.000000,0.472728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.755000,4612365.550000,5768,5105,98.205803,154.585953,165.379349,158.858688,143.842148,135.850418,133.519836,130.577682,131.238846,133.123138,133.610748,145.090088,159.809097,175.866943,189.023972,200.015701,201.139679,191.486786,167.858688,147.734711,138.255371,134.610748,129.445480,102.842171,85.676865,100.404144,109.627289,80.015724,37.205807,16.016546,11.767787,7.180176,8.561171,9.772742,10.047119,4.043809,0.808268,0.243803,0.219835,0.045455,0.000000,0.172728,0.475207,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.955000,4612365.550000,5809,5105,93.095886,155.732239,166.633072,157.145462,143.128937,135.393402,133.013245,129.269440,130.186798,131.352081,133.872742,144.285965,160.352081,176.046295,188.608276,200.467789,201.046295,191.046295,167.996704,146.897537,137.657867,133.814896,129.054565,101.922325,84.360352,101.409927,109.029762,79.550438,37.980186,14.171092,11.732251,7.750425,10.072744,10.090925,11.000014,4.739677,0.766945,0.032232,0.000000,0.080166,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601912.155000,4612365.550000,5850,5105,93.209938,150.317368,168.548782,159.185150,145.391754,136.028122,134.391754,131.590088,131.028107,131.631409,135.234726,145.523987,161.135559,177.697540,189.953735,200.846298,202.722336,191.309113,169.284317,147.953735,138.854568,135.391754,130.672729,102.416542,86.557045,100.664474,109.887611,80.920670,39.400021,16.796711,11.879358,6.666954,9.220675,9.243817,9.278524,4.890092,0.823970,0.295044,0.341323,0.147108,0.035538,0.000000,0.489257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601918.955000,4612365.550000,5884,5105,99.409096,151.789261,165.871902,159.210739,142.425613,135.169434,133.533066,128.483475,127.772736,129.855377,131.979340,143.648758,158.384293,174.111572,186.202484,198.855377,198.640503,189.400833,165.185944,146.904953,135.119843,132.615707,126.227280,99.119843,84.103317,98.706619,107.574387,78.764473,38.260353,13.636381,11.475225,6.167780,7.792575,9.913239,7.986787,4.317366,0.738019,0.109092,0.704134,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601922.955000,4612365.550000,5904,5105,87.673569,161.409103,171.004150,157.747955,144.929779,135.814072,133.285126,131.615707,130.260345,132.466965,134.119858,144.359543,160.987625,176.847122,189.152893,200.326447,202.425613,192.012390,168.285141,148.855392,137.210754,134.268600,129.318192,102.657043,83.921494,100.351257,109.690102,79.326462,37.731422,14.813240,11.756218,7.200839,8.049601,9.596710,8.472739,4.009926,0.912399,0.270249,0.475207,0.243802,0.004132,0.003306,0.000000,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.755000,4612365.550000,5918,5105,92.855385,157.359528,169.632248,160.061996,146.376053,136.681839,135.450424,132.376053,131.904968,133.227295,135.954559,145.648773,161.524811,177.599182,189.566132,200.904968,202.293411,191.136383,168.805801,147.128113,137.938034,134.268616,129.681839,102.607452,86.615715,99.797539,108.433899,78.582672,37.929771,15.943818,11.789275,7.024807,8.730592,10.609108,8.765301,3.443809,1.257027,0.404134,0.000000,0.223968,0.000000,0.102480,0.609918,0.000000,2.269422,0.000000,0.000000,0.000000,0.000000,0.000000 -601929.755000,4612365.550000,5938,5105,80.829773,150.920685,168.937210,160.267792,143.912415,135.433075,134.342163,131.366959,130.804977,131.019852,134.127289,144.871094,162.647949,176.953735,189.003326,199.234726,201.044647,190.565308,167.689270,147.738861,137.300842,134.325638,128.854553,103.788445,84.829765,99.821503,107.433067,76.854568,37.846302,14.226464,11.714069,6.393400,10.093403,8.881009,8.375219,4.558687,0.527275,0.071075,0.109091,0.000000,0.127273,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601933.555000,4612365.550000,5957,5105,98.428116,155.097549,168.469467,160.295883,145.444672,135.841324,134.023148,130.576859,130.642975,132.585129,133.485962,145.196732,161.254562,177.287643,188.775238,200.262848,201.981857,189.618225,168.676071,147.543839,136.642975,132.990082,129.254547,102.188438,85.097534,100.428116,108.262817,76.717369,37.700840,13.715719,11.750432,7.404974,9.602497,8.711586,10.752908,4.427280,0.545457,0.158679,0.207439,0.000000,0.058678,0.000000,0.400000,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.555000,4612365.550000,5982,5105,90.566963,156.195068,168.302505,158.996719,144.120697,135.781830,133.525635,131.186798,132.219849,132.360352,134.393402,144.864487,160.376892,176.211578,188.401672,200.104141,201.591751,189.790100,166.922348,146.575241,136.335556,134.219849,128.054565,101.211586,84.600021,99.385139,106.798363,76.963654,36.525639,14.379355,11.641340,7.750427,8.988444,10.511584,9.740508,3.904139,0.812399,0.128927,0.374381,0.432232,0.000000,0.096695,0.025620,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.755000,4612365.550000,6028,5105,102.659515,160.395065,167.709106,160.262833,145.039688,136.362000,133.651260,130.791748,131.089264,133.105804,134.568604,145.808289,160.973572,175.676056,188.585144,200.461182,201.180191,190.155396,166.816559,146.238037,137.031433,132.932251,129.436371,102.180183,85.981834,99.477699,106.238022,76.428116,36.105804,13.758696,11.766962,8.378525,9.942163,10.809933,8.231417,3.901661,1.022317,0.501654,0.630580,0.094215,0.009918,0.010744,0.724794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.355000,4612365.550000,6041,5105,100.133896,158.836395,170.952087,159.042999,144.323975,136.249603,132.877701,131.357040,130.811584,132.315720,134.059509,144.381821,159.935562,175.943832,187.497543,200.414902,200.976883,189.662842,165.861176,146.249603,135.803314,131.687607,127.290916,102.018188,85.282654,98.505798,104.249596,75.456207,37.059521,14.381010,11.571919,8.274394,8.176874,9.586793,9.090096,4.620669,0.548762,0.419010,0.705787,0.083471,0.138843,0.152066,1.410745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.755000,4612365.550000,6063,5105,89.702492,162.925659,168.719009,158.206604,146.272766,135.677704,133.429764,130.809937,130.495880,131.834732,132.603317,143.809952,159.950409,175.471085,187.553741,198.652908,198.256210,187.702499,164.586777,143.454575,135.636383,131.710754,126.272743,99.768608,84.181831,97.669441,105.685966,76.289276,37.347122,13.941339,11.479358,9.009931,9.259521,9.509108,10.277700,2.698353,0.352894,0.562811,0.181819,0.072728,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601961.955000,4612365.550000,6099,5105,94.635567,165.751266,168.610764,158.065308,145.445480,134.470261,132.346298,131.090103,129.470261,129.561172,131.635559,142.114899,157.974396,172.866959,185.569443,195.685150,196.147949,184.875229,162.371094,142.536377,132.090103,129.792572,124.081841,98.296707,80.858696,94.891747,105.164474,76.139679,36.428944,15.638034,11.280185,9.555387,10.159518,9.461998,9.633898,3.395875,0.845458,0.082647,0.200827,0.027273,0.019835,0.000000,0.232232,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601970.755000,4612365.550000,6143,5105,103.284317,161.978531,168.433075,159.309113,145.251282,133.350433,132.697540,128.862823,128.714066,130.003326,130.036377,140.656235,158.036377,173.300842,184.077698,195.375244,196.234741,183.416550,161.185150,141.656235,132.119034,128.333908,123.127296,96.722336,80.251259,93.218201,105.226471,75.474396,35.854565,14.595887,11.193408,8.501663,10.231421,9.350429,7.962822,4.076867,1.121491,0.484300,0.495869,0.075207,0.000000,0.000000,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.355000,4612365.550000,6181,5105,99.142174,164.084320,172.952072,158.406616,145.861176,133.811600,132.943832,130.175232,129.224823,130.241348,130.836395,141.613251,157.001663,173.332245,185.034698,196.497513,197.555359,184.976868,161.166946,141.059525,130.472748,128.481018,124.472755,96.472755,81.018211,93.844650,103.315727,74.216553,35.299191,15.697538,11.315722,8.588442,9.557865,8.275220,7.404145,3.046287,0.870250,0.424795,0.379340,0.256199,0.010744,0.002480,0.269422,0.000000,1.552066,0.000000,0.000000,0.000000,0.000000,0.000000 -601981.755000,4612365.550000,6198,5105,112.222336,162.428940,171.048767,159.156219,142.767807,132.602493,131.503326,128.734726,127.569443,129.668610,130.048782,141.585983,157.147949,172.883469,183.833893,194.908264,196.511566,183.387604,160.668610,141.230621,131.420685,128.544647,122.627289,95.800842,81.057045,92.850433,102.387619,73.007454,34.214069,13.982663,11.147952,8.500839,8.768611,8.797535,8.882658,3.560336,0.375209,0.002479,0.128926,0.123968,0.000000,0.000000,0.131405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.955000,4612365.550000,6229,5105,98.985962,170.762833,171.622330,159.828964,144.688461,134.134720,132.010757,128.936371,127.415718,129.407455,129.985962,141.316574,157.928131,173.209137,184.795883,196.952911,195.911591,183.696716,161.837234,143.151276,131.754562,128.423981,123.481834,96.581009,80.845467,93.655388,103.977699,77.134727,36.498363,15.533901,11.225638,9.890097,10.404975,7.847951,8.992577,4.016536,0.618185,0.090084,0.000000,0.333885,0.121488,0.000000,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.155000,4612365.550000,6250,5105,96.139687,169.792572,171.073563,159.238846,142.900009,132.271927,131.594238,127.338036,126.172745,129.205811,128.486801,138.734711,156.718185,171.073563,183.139679,195.693390,195.271912,182.098343,160.346283,140.933060,130.883484,127.321510,121.718201,94.759514,78.412415,92.362823,102.734734,73.470268,33.402500,13.792579,11.065308,8.326458,7.757864,6.028938,9.042163,3.410750,0.244629,0.222314,0.000000,0.076033,0.000000,0.000000,0.348761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.955000,4612365.550000,6284,5105,104.306633,163.976028,168.017365,159.595886,143.240509,128.496719,129.785965,127.116547,125.199196,129.728119,127.769440,139.240509,155.835556,172.761154,186.091736,197.166107,197.637192,185.347931,164.083481,143.860336,132.604156,129.571091,124.190933,95.347954,79.728119,94.215721,104.050438,76.091759,36.083492,14.415721,11.290103,8.855383,8.707452,8.576048,8.417368,3.182651,1.167771,0.135538,0.068595,0.031405,0.152066,0.073554,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602005.955000,4612365.550000,6319,5105,106.085144,175.184311,170.324799,162.167770,146.027298,133.704987,132.506638,129.473572,128.919861,132.704987,130.622330,143.035553,159.506622,177.002487,189.919846,201.457031,200.952896,188.374390,166.837204,145.275223,136.399200,132.597549,126.936386,97.961182,82.523163,96.341347,108.713249,78.366135,35.985973,14.037209,11.539688,10.124807,9.084313,10.051254,10.533072,4.785958,0.519837,0.160332,0.048760,0.206612,0.000000,0.000000,0.407439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602008.555000,4612365.550000,6332,5105,109.549606,174.979340,169.508270,162.607437,144.772720,133.623978,131.888443,129.111588,129.417374,132.979355,130.706635,142.797531,159.210739,177.161163,189.318176,202.838837,202.714874,187.524796,167.004135,147.136368,136.896713,133.252075,127.409119,98.582664,82.574402,96.756226,108.921509,78.946304,36.995888,15.623984,11.582664,8.916540,9.996710,10.931421,10.657866,4.771082,0.969424,0.295869,0.284298,0.000000,0.027273,0.081818,0.000000,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.155000,4612365.550000,6345,5105,114.725632,177.386780,172.965317,164.684326,146.039688,133.733902,133.188446,130.824814,129.353745,134.204987,130.593414,143.692581,159.469437,176.742172,190.204987,203.981842,202.014893,189.742172,166.444656,146.874405,137.428116,133.560349,127.436386,99.279358,82.238037,98.428123,108.072746,79.254570,38.676056,14.570267,11.585143,11.258692,10.092579,10.265304,12.234725,4.623977,1.771079,0.362811,0.189257,0.100827,0.006612,0.077686,0.000000,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602015.555000,4612365.550000,6367,5105,110.538040,175.984314,170.108292,162.653732,146.422333,134.471909,132.331421,130.083481,129.372742,133.761169,130.562820,143.513229,159.141342,176.662003,190.017365,202.777695,202.538025,188.058685,167.331421,147.653732,137.075241,134.290100,127.281830,99.281830,83.207458,99.686790,107.695053,76.852089,37.281837,14.354563,11.571093,10.140508,9.819021,9.880178,9.865302,4.954555,0.371903,0.057026,0.111570,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602020.955000,4612365.550000,6394,5105,113.363655,181.214874,170.190079,165.719009,148.578506,137.132263,134.793411,132.752090,131.958694,136.553757,133.793411,146.049606,161.380173,179.289261,194.049591,207.264465,206.892563,191.355377,170.991730,150.785126,140.694244,137.322342,131.454575,101.917374,85.917374,103.636383,110.966957,79.479355,37.743820,16.141342,11.950434,10.867783,10.484313,10.595057,9.966955,5.473564,1.379342,0.304134,0.213224,0.047934,0.000000,0.090909,0.000000,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602024.355000,4612365.550000,6411,5105,125.895889,179.838013,172.970245,166.945465,148.127274,135.755386,134.862823,133.209930,132.234726,137.953735,134.862823,146.821487,162.482651,180.961990,194.829758,207.705765,207.689240,191.995041,171.681000,150.722321,140.449600,137.267792,132.309113,103.350433,86.623161,103.747124,112.011589,79.614899,38.763657,18.149609,12.028118,13.857038,10.371090,10.823156,9.816542,6.729764,1.018184,0.618184,0.280993,0.175207,0.023967,0.110744,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602028.755000,4612365.550000,6433,5105,120.139679,180.271881,175.313217,166.610733,146.875214,137.139694,135.428940,133.131409,132.842163,137.585968,133.817368,145.048767,160.999161,179.618988,192.866928,205.718170,205.941315,190.048767,170.528091,150.065292,139.123154,137.040497,131.809097,102.288452,86.478523,103.900017,112.602493,77.139679,39.214069,16.331423,11.982663,15.159521,10.711585,12.855389,12.141337,5.003316,0.575210,0.812399,0.253720,0.037190,0.133885,0.143802,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602035.755000,4612365.550000,6468,5105,107.999191,149.230576,153.883469,145.610764,133.718201,123.106621,120.123154,118.123154,117.437202,119.189270,120.552902,132.933075,149.594223,166.528107,178.833893,191.387604,193.619019,183.313232,160.544632,139.627274,129.784302,123.767776,117.536377,89.734734,72.668610,91.040512,106.544640,80.792580,38.098366,13.840512,10.685143,6.100838,8.491749,8.747121,9.001668,2.523974,0.483473,0.649589,0.050413,0.095868,0.157025,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.134711 -602043.755000,4612365.550000,6508,5105,125.088448,154.121521,153.633911,144.733063,130.303329,121.088455,116.807465,115.187630,113.757874,115.369446,116.741348,128.906631,146.600845,162.518219,175.964508,186.848770,188.394226,178.270279,156.443832,135.914902,125.683495,121.171097,114.518211,86.898376,71.352921,89.047134,104.377708,77.501671,37.014072,14.128943,10.410763,8.114060,9.104144,9.534723,8.546294,4.568604,1.105788,0.187604,0.020661,0.547108,0.122314,0.000000,1.285953,0.295868,2.095868,0.000000,3.168595,0.000000,0.000000,0.000000 -602052.155000,4612365.550000,6550,5105,99.487625,149.330612,150.231430,141.719040,128.958694,118.388451,114.809944,112.776886,111.454567,114.545479,115.619858,126.719032,144.363663,159.371933,172.801682,184.851273,185.000031,175.925659,152.727310,132.727295,123.338867,118.082672,112.181839,85.586800,68.586792,87.157051,101.760353,75.743820,34.380180,13.281010,10.198367,6.553731,7.504144,8.614889,8.954560,5.301661,0.546284,0.346283,0.700828,0.000000,0.170248,0.000000,0.299174,0.584298,0.000000,0.000000,3.510744,3.039670,0.000000,0.000000 -602059.555000,4612365.550000,6587,5105,115.892578,146.487625,149.595062,138.975220,123.132248,115.760345,111.330597,108.281006,107.818199,109.049606,109.958694,121.371918,139.438034,154.702499,168.049606,179.611588,179.669434,169.438034,147.694229,127.586792,117.148773,114.198364,107.000015,80.743820,65.099197,83.239685,99.074394,72.545471,35.942169,12.618198,9.727291,6.904142,6.700011,8.311583,8.335551,3.523975,0.443803,0.661986,0.086777,0.000000,0.370248,0.000000,0.000000,0.194215,2.192562,0.000000,1.804132,1.585124,0.000000,0.000000 -602066.755000,4612365.550000,6623,5105,123.560333,149.758682,147.262817,135.667786,121.543808,111.287613,108.122322,104.081009,103.667786,105.047943,104.229759,116.717361,133.543823,149.320663,161.593399,173.833069,173.138855,162.386780,142.816528,122.543808,112.981827,107.436378,100.709106,74.733894,59.833076,78.998360,96.081009,73.833069,35.742168,11.630596,9.155391,10.144640,9.537202,9.978526,10.022328,5.473564,1.708268,0.326447,0.071901,0.036364,0.262810,0.422314,0.279340,0.617356,2.244628,3.973554,1.868595,2.997521,3.328926,0.000000 -602243.155000,4612365.550000,7505,5105,126.390923,163.671066,135.555374,125.067780,104.530586,89.423164,91.472740,88.456215,89.935547,98.704147,93.613243,107.472740,124.373566,143.340500,157.257843,169.638031,170.076050,160.084290,151.348770,137.993393,129.282654,128.935547,129.745468,102.745461,81.943825,107.671082,147.464462,127.960342,70.836388,15.410761,11.795060,23.732248,17.196712,31.434729,43.588448,36.776051,1.581820,0.433885,0.249587,0.000000,0.000000,0.000000,0.038017,0.031405,1.019835,0.607438,0.384298,3.071075,1.619009,3.757852 -602247.155000,4612365.550000,7525,5105,117.418205,157.978516,130.755386,117.011589,97.548782,84.705803,86.366959,86.160347,87.259521,93.011589,89.276054,101.656219,118.135559,134.813248,147.317368,159.457855,160.102478,150.424820,142.821487,130.788452,123.821510,124.515724,124.672745,99.094231,82.160347,105.515724,140.639679,124.887619,70.300842,15.465307,11.333903,23.867785,18.752083,32.044647,45.424809,40.062828,2.536368,0.289257,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.929752,1.547934,0.738017,2.339670,1.400000,0.000000 -602253.355000,4612365.550000,7556,5105,76.556221,122.966125,102.123154,91.271919,73.635559,60.023987,60.544647,58.123165,58.015720,62.957870,59.156219,70.420677,85.792580,102.338028,112.784309,123.594223,123.900009,116.420670,111.602493,100.528107,93.040504,93.461998,93.900017,70.106621,52.073574,76.875229,120.404144,116.850426,67.139687,12.523982,8.536384,21.801672,16.185141,30.164484,48.561180,38.222332,2.008268,0.277687,0.069422,0.223967,0.000000,0.000000,0.000000,0.000000,2.061984,2.647108,0.369422,0.413223,0.000000,1.523967 -602260.355000,4612365.550000,7591,5105,34.252907,79.721512,61.107449,47.975224,31.921503,19.719852,18.415716,15.448773,14.038857,16.925634,13.954558,22.548775,36.729767,50.611584,61.966953,73.033073,76.355385,71.330597,67.404976,58.123978,49.867786,49.942169,50.909107,24.268612,8.628937,30.514894,93.867783,105.702492,63.528938,8.225633,4.628119,16.685966,17.779356,36.398365,56.347122,50.747952,1.930583,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.239671,0.547934,0.000000,0.048760,0.000000,1.474380 -602265.155000,4612365.550000,7615,5105,16.904135,34.502495,20.837208,9.466953,1.358682,0.407439,0.102480,0.036364,0.075207,0.104959,0.171901,0.225621,3.904967,13.302495,23.852085,35.535557,40.213242,39.328945,37.034733,27.465307,19.738863,21.720678,23.690928,3.282652,0.023141,7.518194,76.006622,94.882652,58.304150,5.360342,2.153738,16.819851,20.687620,43.419853,63.725639,55.779358,2.747938,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.572728,0.000000,0.002479,0.000000,0.063637,1.894215 -602270.955000,4612365.550000,7644,5105,31.877693,53.594234,40.121506,28.110758,15.944640,8.956207,8.785959,7.431413,6.934718,7.355380,7.047941,12.309929,21.857864,33.200844,44.292580,56.809109,60.189274,57.982662,54.040516,44.562828,37.064480,38.162827,40.036385,17.761997,6.743809,22.235554,87.478523,100.445465,61.263657,7.628112,3.639688,14.433901,19.527288,38.313244,58.858696,46.825638,1.888434,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.079339,0.186777,0.196694,0.000000,0.000000 -602279.555000,4612365.550000,7687,5105,128.871078,158.112411,145.930588,133.071091,117.104156,106.376877,109.261177,109.203323,112.095886,117.186798,120.261177,136.046295,158.517349,177.690918,193.095886,206.095886,210.277695,203.955383,189.401672,172.773560,162.996689,161.690903,159.963638,127.368614,104.699196,126.723991,156.748779,129.038040,63.930595,18.039686,14.542168,13.596711,15.453737,22.507456,32.379356,20.047951,1.730582,0.210745,0.155372,0.061157,0.000000,0.000000,0.377686,0.000000,2.546281,4.759504,4.409918,2.135538,0.000000,0.000000 -602286.555000,4612365.550000,7722,5105,106.097534,144.851257,137.570267,124.396713,110.537209,103.380180,105.619850,106.206627,108.429771,113.545471,117.735550,133.421509,155.388443,174.066132,187.677704,199.239685,203.661179,197.677704,183.900848,169.669434,161.438034,160.413239,156.181839,128.289276,106.173569,126.776878,155.198364,128.487625,65.545471,17.367785,14.198366,15.750431,16.557869,25.060349,34.429771,20.601671,1.236367,0.215703,0.112397,0.000000,0.130579,0.000000,0.253720,0.000000,5.600827,1.107438,1.061984,4.899175,0.000000,0.000000 -602295.155000,4612365.550000,7765,5105,29.423151,55.697536,53.880184,40.018196,27.070263,20.233072,21.144642,19.698359,19.153732,20.686790,22.567781,30.131420,45.887623,59.713242,70.605804,82.589279,86.118202,83.622337,77.837212,67.597542,60.630596,60.415722,62.209110,39.323158,22.033070,44.462002,100.721504,109.787628,65.680191,8.672741,5.655392,10.844643,19.036381,37.638859,58.085144,49.101673,2.422319,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.740496,1.291736,0.000000,0.069422,0.858678,2.760331 -602300.955000,4612365.550000,7794,5105,51.773571,83.843811,82.678528,66.628944,51.014896,41.309937,41.403324,38.946301,38.442169,40.229774,40.833076,52.510761,67.876869,82.405800,94.769432,105.571091,109.661995,106.372742,100.290092,88.066956,79.595879,80.976044,81.736374,57.909935,35.866135,61.149609,118.199188,120.430588,68.546295,11.428115,7.430598,10.414888,17.852085,32.495888,53.835560,41.963654,1.756202,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.117356,0.000000,0.452066,0.266942,0.376033,2.288430 -602306.155000,4612365.550000,7820,5105,31.274391,73.709938,70.561180,56.594234,40.123993,30.743820,29.493406,26.440514,25.940514,26.370266,28.190928,37.536385,53.949608,66.081841,77.949608,88.172737,92.387611,89.255386,84.222328,72.668617,64.883492,64.354568,65.900017,41.230598,21.252085,46.437214,103.503319,112.321503,66.933075,9.423155,5.990928,10.084311,17.897537,35.511589,55.123161,41.846302,1.907443,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.628099,1.045455,1.717356,0.000000,1.309918,2.463637 -602311.155000,4612365.550000,7845,5105,15.814054,26.045467,19.907450,9.351250,3.963642,1.233060,1.508268,1.220664,0.737192,0.978515,0.917357,2.847938,8.712405,15.500010,22.795055,32.212414,36.102497,35.322330,32.675224,24.351255,18.050426,17.444641,20.400013,7.113231,0.888432,9.811580,70.038872,88.204155,54.055393,4.661168,1.854558,8.498358,18.608282,39.531422,58.344650,45.352909,1.944633,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.562810,0.970249,0.078513,0.000000,0.000827,1.024794 -602316.955000,4612365.550000,7874,5105,30.471087,58.926468,54.338036,41.960350,27.462000,19.285135,19.071915,17.210756,16.842159,17.133896,17.474392,26.290922,39.961998,54.070267,64.878525,74.977699,75.820671,72.680168,64.589272,55.599194,46.545475,46.527290,50.809109,30.328117,13.795877,33.504978,97.357857,106.638847,62.680183,8.490096,4.619027,9.788442,16.050428,32.850433,52.167786,39.448784,1.612400,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.424794,0.921488,0.090909,0.000000,1.031405,0.000000 -602320.755000,4612365.550000,7893,5105,89.789276,115.879356,118.300842,101.127289,86.160347,77.099190,76.217377,72.695053,74.265305,76.339684,77.357872,88.689278,106.515724,120.656219,133.218201,143.631424,146.201675,140.647949,128.771912,113.962006,107.201675,106.986794,108.036385,80.640511,61.122330,83.408287,122.482666,109.714066,56.457870,11.323984,9.821507,12.648774,12.457868,22.189274,31.703327,23.876049,1.793392,0.153720,0.000000,0.042149,0.000000,0.000000,0.353719,0.519009,0.899174,0.000000,3.980166,0.000000,1.036364,5.556199 -602325.155000,4612365.550000,7915,5105,110.133080,149.604965,149.968597,133.464493,117.646301,109.034729,108.679359,107.968613,108.018196,112.720680,115.109108,128.613251,150.456207,169.770248,184.894211,196.745453,198.249573,190.142136,171.679337,151.555374,141.885956,140.943817,140.381821,107.976875,84.390099,107.902496,139.869431,111.638031,53.158695,18.007456,12.762004,14.600016,14.162002,16.985968,21.171917,14.195885,1.432235,0.440498,0.914877,0.133059,0.276033,0.071075,0.358678,0.315703,4.635538,1.042975,0.910744,3.486777,2.071074,0.000000 -602331.555000,4612365.550000,7947,5105,113.647934,147.643799,144.453720,126.247108,113.354546,103.172737,101.974388,100.941330,102.007446,104.453728,106.065300,119.304962,138.271912,157.809097,170.495056,180.718201,178.495056,170.594238,154.313232,136.189255,125.693390,124.908264,126.354546,97.445465,75.081841,97.379349,136.536362,112.875221,53.924816,13.788446,11.486795,9.756213,10.778527,15.008282,21.155390,11.590924,1.141325,0.395868,0.000000,0.041323,0.000000,0.000000,0.500827,0.882645,2.466942,1.243802,6.558679,5.458679,1.011570,0.000000 -602340.555000,4612365.550000,7992,5105,112.211586,152.538025,146.174393,130.662003,115.620674,105.521500,105.017365,102.273567,102.628937,105.752907,107.306625,119.860344,139.868607,158.438858,173.116547,183.628937,183.719849,174.612411,155.471909,135.182663,124.678528,122.860344,124.281830,93.265305,73.075226,94.273567,124.215714,97.290092,43.133080,12.629768,11.298367,8.492576,9.560344,13.677702,15.976875,8.044641,1.628930,0.503308,0.545456,0.416530,0.000000,0.616530,0.000000,0.358678,6.290083,1.281818,2.131405,2.671075,7.793389,5.682645 -602348.155000,4612365.550000,8030,5105,131.300018,155.589264,147.746292,132.680176,119.109932,108.738029,107.506622,105.514893,106.118195,110.176048,110.704971,122.523155,142.209091,158.043808,171.035538,181.547943,185.589264,180.457031,165.366119,147.498352,137.828934,136.341324,136.754547,105.415718,83.275223,104.605797,136.291748,107.390923,50.316547,15.096712,12.432250,12.047123,12.747125,13.752083,20.080183,16.782661,1.696700,0.800003,0.476034,0.315704,0.133058,0.141323,0.611571,0.828100,7.657025,3.650414,6.186778,1.985951,5.402481,11.876861 -602358.355000,4612365.550000,8081,5105,147.681015,141.812424,125.928108,112.704971,97.795883,90.002502,89.333084,88.283485,90.837212,94.101677,98.242172,109.911575,129.283478,144.853745,159.341339,170.506638,174.614075,170.490112,156.556213,142.572754,133.771088,134.308273,132.845459,106.572739,88.795891,108.952904,132.771088,109.638855,56.184311,14.781010,12.076878,13.638859,15.617373,23.712416,34.352909,27.464479,3.724801,0.726448,0.624795,0.354547,0.171901,0.200827,1.842977,2.167770,22.295046,12.156199,9.650414,10.164465,7.809093,10.233059 -600983.155000,4612355.550000,1205,5155,135.085144,138.349594,109.531425,98.316551,82.655396,69.663658,68.862007,64.762825,62.828945,65.291756,64.085144,77.308289,96.390930,114.382660,129.655380,146.432251,151.366135,149.845474,143.490082,133.118195,125.382660,124.076874,118.027290,79.804153,55.828945,84.176056,125.688446,116.126457,58.985970,12.215720,10.729771,20.977705,12.746297,24.454563,38.403324,27.830595,1.786780,0.186777,0.005785,0.000000,0.000000,0.000000,0.150413,0.097521,8.924794,11.470250,8.576035,5.914052,2.752067,1.480992 -600987.355000,4612355.550000,1226,5155,123.785141,132.057861,111.933899,100.305801,86.925644,75.198364,72.652908,68.066132,67.264481,68.826462,67.297539,80.462830,99.454559,117.793404,133.719009,149.157043,156.049606,154.553741,147.495880,136.520676,125.206619,125.462814,117.000015,77.066132,53.685970,81.661171,130.016541,117.553734,60.685974,13.385968,10.636383,16.727291,13.926463,22.266136,30.884317,21.969440,0.847109,0.138017,0.063637,0.000000,0.000000,0.166942,0.038843,0.259505,8.076035,3.761984,4.363637,2.086777,2.935538,6.777687 -600992.355000,4612355.550000,1251,5155,110.378525,123.799194,104.361168,94.435547,79.799187,67.782661,67.873573,62.468613,60.873573,61.443821,60.790928,74.278519,94.642159,111.947945,128.204147,143.807465,150.881821,149.501663,142.683502,129.419022,118.799187,117.526459,107.972740,66.675224,42.452084,72.336372,126.956215,118.658684,58.534729,12.093404,9.815722,14.030594,9.877700,18.145472,26.646301,16.804976,0.452894,0.008265,0.001653,0.000000,0.000000,0.000000,0.000000,0.079339,4.869422,4.719009,2.109918,2.073555,2.780166,4.762810 -600999.955000,4612355.550000,1289,5155,111.969437,114.171082,99.419029,88.303322,73.104973,62.675224,59.030598,54.584316,52.609108,52.559521,52.319851,65.303322,84.848778,102.981003,119.443810,136.782669,144.559525,142.485153,135.080170,121.551247,110.509926,106.584305,97.154564,52.014069,28.848780,59.104977,125.336365,119.931412,62.956215,11.834727,8.832252,9.839684,9.418196,18.748779,27.190102,16.210760,0.376860,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,3.685125,2.290910,5.717358,2.735539,1.715703,3.133058 -601009.555000,4612355.550000,1337,5155,103.259521,106.128113,89.640511,79.144646,64.607452,53.227287,50.995884,44.847126,41.223988,40.091755,39.673573,51.599194,70.789276,86.491753,101.971092,117.326462,122.913239,119.557869,113.938034,99.838860,86.219025,84.351257,75.136383,31.269440,11.140510,39.144650,111.450432,114.549606,58.929771,12.581834,6.830598,13.828941,11.987617,20.052910,29.855392,23.160345,1.261159,0.000000,0.000000,0.000000,0.000000,0.348760,0.000000,0.000000,8.041325,5.001655,2.957852,2.918183,2.065290,6.819836 -601286.355000,4612355.550000,2721,5155,53.457039,93.195053,74.153732,63.748775,45.785145,34.008282,31.883488,27.573568,25.689272,28.361176,22.860346,29.290100,36.671093,46.184315,54.790100,64.905800,65.492577,60.186794,57.506630,48.846302,40.161179,40.329773,40.254562,17.521500,7.673563,25.155388,77.095879,84.699188,52.864479,7.771087,3.659521,19.131422,15.962826,31.845472,50.302498,44.368610,1.869426,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.248761,0.000000,0.274380,0.000000,0.000000 -601289.155000,4612355.550000,2735,5155,89.457031,132.115707,112.669418,104.942146,87.181824,74.975220,73.454559,70.289276,69.371918,74.355385,67.041344,75.743820,87.314064,99.677696,108.454544,119.595039,120.644630,113.495865,108.528923,98.041328,89.314056,87.545464,86.909096,60.495888,44.190102,65.694237,110.851242,109.884300,63.148781,13.869438,7.900846,17.816547,14.759521,30.378531,44.876053,34.217373,1.366946,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.247934,0.000000,0.000000 -601293.355000,4612355.550000,2756,5155,115.270264,158.473572,139.316559,130.903320,114.638855,102.556213,102.936378,99.994232,100.142990,104.911583,100.242165,110.597534,123.572739,138.134735,147.837219,158.192581,158.523163,151.341339,142.862000,129.539688,121.109932,119.225632,117.209106,88.721504,70.655388,91.415718,127.142990,114.498360,62.176052,15.065309,10.655392,15.341340,14.419025,23.080185,32.399193,22.543819,0.600830,0.038017,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601299.555000,4612355.550000,2787,5155,121.133904,168.510757,149.403305,140.196701,125.940514,114.254555,114.452904,113.039680,114.188438,119.485962,118.138855,130.642990,148.204971,165.006622,176.419876,189.328964,190.171936,182.833099,170.601669,156.254547,145.915710,144.039673,141.890915,111.923981,91.097534,110.990097,148.114059,127.866127,65.006622,18.222332,12.899192,16.184315,13.791752,22.494234,30.834728,18.090927,1.217358,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601303.355000,4612355.550000,2806,5155,111.462006,161.619034,150.668610,140.181015,127.230598,115.164482,116.842171,116.156219,116.701675,121.999191,120.090103,133.924820,152.205811,171.371094,185.255386,199.255371,199.784302,193.156204,179.767792,163.850433,153.329773,153.057037,151.718201,119.238861,94.643814,117.709938,155.462006,130.941345,64.263657,14.231421,13.792582,13.381835,10.719024,19.122334,25.214069,16.790100,0.376035,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601308.155000,4612355.550000,2830,5155,122.397545,162.992569,153.893402,145.389267,132.042175,120.686798,121.116547,121.066963,120.513245,125.314896,124.149605,138.331421,157.430588,174.513229,187.868607,200.273560,202.091751,194.356216,180.471909,163.951248,154.166122,153.934723,151.463654,121.215721,98.050438,119.752914,155.042160,130.761185,64.719856,16.808285,13.769442,16.283489,13.654563,20.784317,27.837208,20.128117,0.831408,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601315.555000,4612355.550000,2867,5155,99.109108,167.927277,158.439682,149.795044,134.398361,124.563644,126.241333,125.348770,125.472740,130.390091,131.588440,144.976868,164.456207,182.943817,196.927277,209.505798,212.175217,206.084305,189.117371,172.233063,161.530594,162.233063,159.836380,127.712410,105.538849,125.067780,156.001663,126.522324,60.315723,17.993406,14.530598,12.561172,12.153736,18.995886,25.033903,10.270260,0.620665,0.090084,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601324.355000,4612355.550000,2911,5155,117.503326,163.784317,159.428940,152.379364,136.817368,126.354568,128.238861,126.214066,128.007462,132.032257,132.825638,146.933075,168.379349,185.247116,199.461990,212.668594,217.230576,211.866943,194.015701,178.676865,168.875229,166.652084,166.263657,134.420685,108.685143,130.090103,162.123154,129.040512,61.866962,19.237207,15.114896,11.309105,13.487620,19.560349,26.374399,17.114891,0.500828,0.166117,0.000000,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601331.755000,4612355.550000,2948,5155,112.646294,164.332260,158.803329,149.795074,135.919022,126.571907,127.671082,126.290916,126.018188,130.679352,133.249603,146.935562,167.447952,184.762009,199.538864,212.216553,216.150436,211.100845,194.332260,177.481018,167.257874,167.935562,162.745483,129.257858,105.439682,126.547119,156.340515,125.985130,61.414898,19.301672,14.795061,13.360346,12.942165,18.204149,23.315720,12.099189,0.829756,0.253720,0.034711,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.989256,0.000000,0.000000 -601336.355000,4612355.550000,2971,5155,116.842163,161.123154,160.470261,149.247131,136.974396,127.784317,128.990921,127.908287,128.395889,132.296707,135.602493,148.999191,170.280182,187.891754,202.114899,214.949600,218.519852,213.379364,197.594238,179.338043,169.222336,168.825638,165.172745,130.693405,106.759514,128.106628,157.784317,126.362831,63.057041,18.990929,15.015722,13.015718,13.187621,19.375223,23.255392,13.427288,1.012400,0.465290,0.095868,0.136364,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.916529,0.000000,0.000000 -601342.155000,4612355.550000,3000,5155,116.727280,161.256195,161.950409,150.727280,137.743805,128.669434,129.495880,127.991753,128.479355,132.223160,134.851257,149.107437,169.735535,187.272720,201.785126,214.793396,218.512390,212.404953,194.694214,176.892563,168.537186,166.322311,163.000000,130.809937,107.223160,127.553734,159.595047,129.214890,63.165306,20.242994,14.818200,11.800840,14.819853,20.827293,24.628117,16.995886,0.906615,0.166943,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.215703,1.900827,0.000000,0.000000,0.000000 -601351.155000,4612355.550000,3045,5155,118.541328,158.803314,159.481003,147.720673,134.307449,126.943810,127.208275,124.580177,127.183479,128.464478,131.406616,144.398361,164.084290,178.439682,192.976868,203.290924,206.026459,200.447937,184.390091,166.869415,158.373566,156.034714,154.927277,124.439682,101.910751,122.365295,154.233063,126.786789,63.836380,18.996714,14.084315,11.788445,14.203322,17.638861,24.923986,14.768610,1.361987,0.039670,0.016529,0.030579,0.000000,0.000000,0.017356,0.000000,1.133884,0.000000,0.000000,0.000000,0.000000,0.000000 -601362.355000,4612355.550000,3101,5155,108.055389,161.584320,161.385971,152.212418,139.501678,131.080170,130.633896,129.542984,131.782669,136.253738,138.939697,154.038864,174.071930,190.344650,205.501678,216.212418,220.328125,213.410767,195.633911,177.237213,168.038864,165.055405,163.063660,130.782654,106.700012,126.675217,154.592590,123.997528,60.650433,17.536383,14.823986,11.314892,12.504973,18.452084,20.669437,13.735554,0.868599,0.268596,0.067769,0.050414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.136364,0.000000,0.000000 -601369.555000,4612355.550000,3137,5155,112.147942,159.643799,161.742981,151.875214,138.048782,130.776047,130.900009,130.288437,133.255386,136.412415,139.428940,153.354553,173.478516,190.214050,206.420670,216.536362,219.296692,212.643799,196.428925,177.701660,166.032242,164.742981,161.172729,130.139679,106.181000,125.734718,152.023972,120.098358,57.792587,17.830597,14.652084,11.549600,11.450428,16.661175,20.726463,11.153733,1.177690,0.133058,0.048761,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.955000,4612355.550000,3179,5155,110.923973,165.213226,163.857864,155.213226,143.287613,134.990082,134.618195,134.395050,135.593399,139.899185,142.824799,158.667770,178.874390,197.907440,213.130585,225.345459,229.849594,220.684311,201.155380,180.461166,168.833069,166.304138,161.436371,127.510750,104.295876,123.882652,142.543808,107.651245,52.114067,19.415722,14.676050,10.869436,11.200015,13.539686,15.485967,9.122327,0.785128,0.130580,0.020661,0.075207,0.000000,0.000000,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601382.755000,4612355.550000,3203,5155,111.113243,158.609100,164.476883,154.617386,143.162842,135.840515,135.146286,133.931427,135.038864,139.319855,142.534729,157.443832,178.195892,196.485138,213.113251,226.369446,229.774399,222.212418,199.336380,178.344650,166.658707,163.609116,158.336395,124.600838,102.228943,118.964470,137.584320,103.584312,48.642166,17.476879,14.394235,10.585966,12.002497,12.078527,14.979357,5.875217,1.087607,0.160331,0.226447,0.117356,0.000000,0.000000,0.000000,0.000000,1.253719,2.409918,0.000000,0.000000,0.000000,0.000000 -601387.355000,4612355.550000,3226,5155,114.880188,160.615738,163.450439,157.045486,142.657059,134.995880,135.004150,134.946304,136.500031,140.896729,143.822342,158.020691,179.714905,197.888458,213.731430,227.194244,230.599213,222.409119,199.929779,178.409119,166.309952,163.648788,158.954575,125.095055,103.615707,120.582672,137.128128,101.533066,49.301670,17.958696,14.450433,10.213239,11.537208,11.601668,14.635555,6.474392,1.138020,0.195869,0.133059,0.000000,0.060331,0.000000,0.000000,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.955000,4612355.550000,3249,5155,107.603325,165.564468,165.837204,158.647110,144.985962,138.333069,137.300003,137.316528,139.663635,143.399185,147.209091,161.928101,181.845459,199.415710,216.630585,229.928101,232.977692,225.002487,201.349594,179.300003,168.506622,163.820663,160.390915,126.746292,105.878525,121.862000,137.597534,101.895058,50.093403,17.947126,14.581010,10.537205,12.150430,13.171917,16.088448,6.814061,1.303309,0.307439,0.095868,0.003306,0.000000,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601399.955000,4612355.550000,3289,5155,114.151260,165.151230,166.547928,156.729782,145.638870,138.010773,138.233902,137.762833,138.862000,143.870270,147.969437,161.167770,183.184280,201.341324,217.192551,231.539658,235.564453,228.200821,202.605789,180.068588,169.936356,165.399170,159.845444,127.878532,104.952911,120.498367,134.390930,100.167793,47.919853,17.473572,14.531423,9.049600,11.386792,12.491753,12.762000,6.357864,1.553723,0.697522,0.135538,0.082645,0.277686,0.000000,0.000000,0.009918,0.000000,0.000000,1.022314,0.000000,0.000000,0.000000 -601403.155000,4612355.550000,3305,5155,121.063652,164.683502,166.914886,156.361160,145.071930,137.121521,137.336395,136.435562,139.237213,142.865311,147.253723,160.526459,181.460327,200.427261,217.650406,230.766113,234.848755,225.369415,201.733047,179.699997,168.410767,164.154556,158.700012,126.038864,104.129768,120.501663,134.138031,99.237198,48.096710,17.220680,14.427291,9.128941,11.596709,11.852081,12.144644,7.304144,0.792565,0.119835,0.409920,0.086777,0.000000,0.119008,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,1.160331,0.000000 -601407.355000,4612355.550000,3326,5155,120.010757,166.804153,168.291763,159.225647,145.704987,138.539688,137.928116,137.845474,140.019028,143.895065,146.870270,161.390930,182.068619,200.952911,217.738037,230.944656,234.928116,226.357880,201.465317,179.630600,167.812424,164.663666,158.300018,126.217369,103.886803,120.167786,133.250427,99.457039,47.390926,18.754562,14.390928,8.742989,10.684313,12.911586,13.812414,6.857863,1.098350,0.272728,0.141323,0.016529,0.045455,0.000000,0.000000,0.020661,1.314876,0.000000,1.098347,0.000000,0.000000,0.000000 -601411.955000,4612355.550000,3349,5155,103.433899,164.342972,169.268600,160.516525,147.946274,139.756195,140.004135,139.962814,141.334717,146.161163,149.665283,163.409088,184.425629,203.128098,219.219009,232.888428,236.648758,228.061981,203.483490,180.747940,168.780991,165.566116,159.681824,128.450424,105.028938,121.037209,132.028931,98.194229,47.516548,17.728117,14.516547,9.586792,10.476875,12.346297,14.471092,6.219845,0.723970,0.206612,0.047934,0.162811,0.000000,0.000000,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601414.755000,4612355.550000,3363,5155,118.627281,166.999191,169.577698,160.974396,148.561172,140.238861,139.627289,140.776047,142.304977,146.900024,150.767792,164.164490,185.395889,204.395889,219.676880,233.288452,238.230591,227.536377,202.800842,180.552917,169.338043,165.445480,159.627289,126.181007,104.990921,119.709938,131.594238,94.726456,44.652084,15.717374,14.511590,8.330593,10.009107,11.232248,12.511587,5.291745,0.759507,0.182646,0.086778,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.355000,4612355.550000,3381,5155,117.128937,169.360336,170.831421,161.699188,150.649597,143.715714,142.757034,143.137207,144.897537,149.476044,153.013229,166.864471,187.418198,206.071091,222.294235,235.211578,239.079346,230.343811,204.327286,181.062820,170.500839,165.285965,161.145462,128.600006,107.864479,121.145470,130.393402,94.922325,45.385143,17.894232,14.649606,9.262824,10.931420,12.803322,12.195884,5.704142,1.482648,0.316531,0.128100,0.029752,0.000000,0.000000,0.033058,0.058678,1.261157,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.755000,4612355.550000,3408,5155,114.113235,171.633911,174.195892,165.526474,153.493408,144.947952,145.956223,146.154572,146.757874,152.534729,156.220688,169.385971,188.228958,207.534714,223.005798,236.195877,239.675217,230.460342,204.642151,180.493408,169.931427,166.642181,160.881851,130.939682,107.319847,123.741333,131.642166,95.997536,45.782665,19.673573,14.625639,8.456211,11.482661,11.960347,12.456215,5.560341,1.243806,0.662812,0.242150,0.038017,0.000000,0.175207,0.022314,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601426.955000,4612355.550000,3424,5155,130.938019,169.012390,174.078506,164.177689,152.276871,143.830597,143.979355,144.293411,145.268616,150.144638,153.863647,167.078506,186.252060,204.169418,220.078506,232.698349,235.723145,228.342972,202.417358,178.541321,167.152893,163.169418,158.863632,127.590919,105.814064,120.797523,129.500015,95.384308,43.450432,16.775225,14.442167,8.175221,11.096710,10.800841,11.770264,6.964472,0.806615,0.202481,0.461158,0.000000,0.113223,0.000000,0.000000,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.755000,4612355.550000,3448,5155,128.257874,179.489288,175.117386,165.290939,154.712418,146.695892,145.753738,145.795074,147.910767,153.224823,155.993408,169.208298,188.993408,206.745483,222.340515,236.671097,240.687622,231.357056,205.993408,181.654572,171.051270,167.538864,160.472748,130.125641,108.555389,122.505806,131.745468,97.456215,46.348778,18.551260,14.588449,9.793405,10.603322,12.287620,12.216545,7.487615,0.718184,0.918185,0.034711,0.319009,0.050414,0.000000,0.179339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.755000,4612355.550000,3468,5155,130.998367,175.204987,173.932251,167.907471,155.965317,147.006622,146.775223,146.766953,149.031418,153.742157,157.345490,171.014908,190.196716,208.758682,225.072739,238.089264,241.808273,232.238022,206.023148,183.006638,170.915741,166.601685,161.890945,131.783493,109.138855,122.609932,129.948776,96.750427,45.196712,18.846300,14.717374,8.799189,12.432249,12.871091,13.014893,6.342158,1.080169,0.335539,0.216530,0.162810,0.063637,0.000000,0.000000,0.125620,1.310744,0.000000,0.000000,0.000000,0.000000,0.000000 -601441.555000,4612355.550000,3497,5155,117.366127,172.035583,176.357895,167.705002,156.969467,147.184311,147.614075,147.010773,149.581009,155.225647,158.614090,171.266983,190.539703,209.010788,224.366150,238.944672,240.705002,233.200867,206.622360,183.035583,171.870285,168.382690,162.209137,130.457047,110.076874,123.052078,132.200836,96.142990,45.969440,19.348780,14.746300,9.816544,12.873570,13.432248,13.211586,7.988441,1.784303,0.556200,0.164464,0.019008,0.064463,0.000000,0.100827,0.122315,1.185124,0.000000,0.000000,0.000000,0.000000,0.000000 -601445.555000,4612355.550000,3517,5155,128.115707,177.008286,175.925629,168.801666,156.768616,147.851257,147.702499,147.735550,149.371918,155.090927,159.024811,171.107452,189.322327,208.165298,224.123962,236.528946,239.900848,231.851257,205.595062,181.727295,171.165298,166.157043,160.272751,130.760345,108.884315,120.818199,130.867767,96.157043,46.289276,18.322332,14.570266,8.443815,11.669437,12.288445,14.324810,6.603316,1.224797,0.365291,0.304134,0.028099,0.041323,0.145455,0.038843,0.022314,0.000000,0.000000,1.167769,0.000000,0.000000,0.000000 -601448.955000,4612355.550000,3534,5155,129.152084,175.614899,173.614899,169.515717,157.259521,148.871094,149.094238,149.003326,149.854568,155.523987,158.466141,172.201675,190.523987,208.408279,223.052917,235.631424,238.862823,230.573578,206.540512,184.309113,173.970261,170.350433,164.672745,134.953735,112.895882,126.201675,136.383484,102.978523,47.953739,18.950432,14.970267,8.145470,11.681834,11.060348,13.752910,7.161994,1.438846,0.771902,0.285126,0.000000,0.128100,0.000000,0.000000,0.033058,1.444628,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.755000,4612355.550000,3548,5155,118.876877,173.269440,174.955383,168.525635,156.459518,148.071075,147.195053,148.418198,150.674393,156.988449,159.558685,171.715714,191.310760,209.690918,224.839676,236.459518,240.376877,232.550430,208.740509,187.244644,175.740509,174.525635,169.054565,138.591751,115.583481,129.071091,140.823151,106.682655,48.864483,19.947126,15.368615,8.411584,12.057040,12.623157,15.129768,6.907447,1.672731,0.677688,0.669423,0.123141,0.180992,0.280992,0.628100,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.355000,4612355.550000,3561,5155,127.107445,179.041336,176.892578,168.826462,156.735550,146.917374,148.140518,148.818192,148.752075,155.223160,158.429764,171.148773,189.950424,209.363647,224.355392,236.256210,239.404968,232.644638,207.661179,186.512405,175.909103,172.033081,169.272751,137.966965,115.595047,130.388443,142.148773,107.363647,49.297543,18.790930,15.388449,8.996709,13.301671,11.267785,12.426463,6.281003,1.385127,0.061984,0.285125,0.033058,0.000000,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.555000,4612355.550000,3582,5155,128.850433,179.838852,174.995880,167.004150,155.938034,146.814072,147.764481,148.095062,149.623978,155.392578,158.053741,171.136383,189.070267,208.309937,222.260345,235.458694,237.433899,230.177704,205.789276,184.450424,174.789276,171.500015,167.681839,137.714890,114.128113,129.260345,142.136383,108.491753,50.524815,20.296713,15.243821,8.242165,11.285140,13.074396,13.028943,6.647946,1.425623,0.161158,0.171902,0.000000,0.109918,0.000000,0.040496,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.555000,4612355.550000,3597,5155,139.605804,179.853760,178.076904,171.415726,159.622330,147.936386,148.853745,148.787628,150.729782,156.762833,159.167786,171.812439,189.944672,209.283508,223.498383,235.283508,238.424011,230.870285,206.878555,185.547974,173.936401,171.085159,167.118210,137.828934,115.002495,128.820663,143.101669,109.052078,49.985973,19.106630,15.192581,7.293402,11.923158,12.403321,14.578530,6.335548,1.390087,0.297522,0.061158,0.036364,0.209091,0.000000,0.041322,0.077686,0.000000,0.000000,1.193388,0.000000,0.000000,0.000000 -601464.955000,4612355.550000,3614,5155,135.110748,184.747116,175.003311,169.606613,156.507446,147.292572,148.218185,147.970245,149.019836,155.953720,157.871078,169.937195,188.854553,207.317352,222.160339,233.920670,237.110748,229.168594,205.003311,184.499176,173.590088,169.209915,166.945465,136.705795,113.557037,128.127289,144.804962,109.400009,50.358692,19.523159,15.176878,8.134725,11.385966,13.461174,14.511586,7.481004,1.237194,0.129753,0.042149,0.000000,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.755000,4612355.550000,3633,5155,140.600845,184.981018,180.435562,169.914902,159.154572,147.766144,147.766144,149.443832,150.741348,157.311600,157.311600,171.526474,188.997543,209.261978,223.427261,236.253708,238.749573,231.278503,206.873566,185.485153,173.385971,170.047134,167.518204,136.931427,115.336380,128.080170,142.171097,110.055389,51.485142,19.230598,15.228945,8.457866,12.375223,13.453736,14.702497,6.103316,1.507441,0.164464,0.136365,0.000000,0.040496,0.000000,0.000000,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.955000,4612355.550000,3649,5155,140.338013,187.271912,178.329758,172.147934,157.949585,147.114899,147.090103,148.065292,149.338013,156.098343,157.916534,170.453720,188.627258,207.751221,221.833878,235.280151,237.652054,230.362808,206.296677,184.866928,173.503311,170.577682,168.172729,136.528122,114.073563,129.354553,141.842163,109.156212,50.908283,19.152084,15.288449,7.238030,11.860347,11.090925,13.297538,7.195881,1.018185,0.072728,0.147935,0.000000,0.062810,0.000000,0.071075,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.155000,4612355.550000,3665,5155,114.761169,179.728119,177.141342,167.719849,152.819016,143.843811,145.686783,145.769440,147.124802,151.265305,153.628937,166.215714,186.058685,202.397537,217.504974,230.372742,232.645462,223.025635,198.331421,178.951248,168.364471,166.009109,162.100006,131.785965,111.984314,124.381012,137.752899,101.645462,47.265308,19.059525,14.736382,11.228116,11.666959,13.931423,14.716546,7.904969,0.841326,0.444630,0.379340,0.308265,0.071901,0.000000,0.090910,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.355000,4612355.550000,3681,5155,135.366135,181.035538,179.060333,166.729752,154.258682,145.556198,145.919846,144.928101,146.473557,149.812408,153.861984,166.506622,185.812408,203.027283,216.539673,228.961166,232.126450,221.440506,197.787613,176.804138,166.804138,165.134720,160.845459,131.101654,109.581009,122.498352,138.771088,101.952896,47.820679,18.878531,14.622333,12.428116,11.646297,13.453736,13.826464,8.798358,1.672733,0.311572,0.124794,0.025620,0.161158,0.000000,0.262811,0.113224,0.000000,0.000000,0.874380,0.000000,0.000000,0.000000 -601481.355000,4612355.550000,3696,5155,134.027283,180.071091,178.071091,165.542160,154.409927,144.732239,145.145462,144.211578,145.071091,149.393402,152.864471,166.666122,185.310760,202.162003,216.360336,229.120667,230.550430,219.723984,197.434723,176.269440,164.682663,164.864471,159.781830,128.203323,109.740501,123.459511,135.294235,100.889267,46.517376,18.540514,14.525639,12.705803,12.131422,13.073571,12.574395,8.077696,1.040500,0.341324,0.368596,0.211571,0.000000,0.183471,0.288431,0.007438,0.000000,1.280165,0.000000,0.000000,1.342149,0.000000 -601485.755000,4612355.550000,3718,5155,128.009933,182.509933,173.030594,166.047119,151.501663,143.204147,144.865295,143.890091,145.270264,147.642151,150.840500,164.890091,183.823975,201.526443,215.038849,228.542984,231.427277,220.947937,197.212387,176.906616,166.303314,163.328110,159.427277,128.881821,108.981003,121.005798,133.336380,98.576042,44.452087,17.938864,14.493407,11.530593,10.534726,13.863652,13.888447,8.492573,1.054550,0.739672,0.019009,0.122315,0.110744,0.125620,0.002479,0.012397,1.241322,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.755000,4612355.550000,3733,5155,131.460342,186.939682,180.154556,168.675217,154.890091,145.749603,147.749603,146.187607,146.377701,150.947937,153.038849,167.096710,185.832245,204.419022,218.369431,230.724823,233.212418,222.212402,198.245468,177.187607,166.857040,164.840500,159.881821,129.584305,108.576042,120.708275,133.311584,98.005798,45.972748,18.390100,14.534728,11.253736,11.116546,13.149604,15.742992,5.547117,1.329755,0.545456,0.265290,0.180166,0.071901,0.000000,0.029752,0.086777,0.000000,0.000000,0.000000,0.773554,0.000000,0.000000 -601491.955000,4612355.550000,3749,5155,135.871094,184.788437,181.466125,168.102493,154.821487,144.333893,146.152069,145.548767,146.697525,150.928925,153.730576,166.821487,185.507446,202.747147,218.614899,231.110764,233.193405,222.234726,198.226471,177.185120,166.804962,163.871078,158.763641,129.085953,107.912399,119.953720,132.813232,95.895874,44.912415,17.534731,14.433076,10.187620,11.942166,12.157869,13.962000,5.948770,0.682648,0.409092,0.152894,0.007438,0.033885,0.000000,0.068595,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.555000,4612355.550000,3762,5155,132.466965,182.400833,177.797516,170.549591,154.334732,144.814072,145.433899,145.500015,147.012405,151.458694,153.161179,167.020660,185.012390,203.425629,217.500015,231.185974,234.020676,221.888443,197.351257,177.938019,165.871902,163.995865,158.045456,127.657036,107.516541,120.648758,130.458679,95.061996,44.053738,18.978531,14.367787,10.578527,10.509107,13.374396,13.958694,6.412405,1.794219,0.174381,0.133885,0.017356,0.017356,0.000000,0.141323,0.342150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.155000,4612355.550000,3785,5155,128.961166,188.791748,180.535538,166.965302,154.808273,144.882645,146.312408,145.031418,147.072739,151.428101,153.072739,166.155380,185.775208,203.923981,217.742157,231.824799,233.998352,222.411575,198.188431,177.436371,165.981827,163.568604,157.890915,126.246284,106.940506,119.056206,128.907440,93.452904,44.023163,17.949606,14.353739,12.200017,11.409108,12.030597,11.825634,6.763647,0.948763,0.509092,0.585952,0.047934,0.015703,0.000000,0.026447,0.141322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.155000,4612355.550000,3800,5155,138.872742,187.839676,182.021500,169.442993,156.773560,145.228119,147.484314,146.492569,146.781830,151.790100,153.401672,166.666122,184.542160,203.889267,218.517365,232.343811,234.277695,223.608276,197.971909,176.806625,166.905792,163.600006,155.872742,125.831421,106.335548,118.104149,126.029762,90.079353,43.781837,17.185141,14.170267,13.257041,12.508283,11.457042,13.638032,6.281829,0.957027,0.454547,0.471076,0.275207,0.000827,0.000000,0.000000,0.006612,0.000000,1.307438,0.000000,0.000000,0.000000,0.000000 -601507.155000,4612355.550000,3825,5155,142.437195,193.536362,177.197525,169.792572,156.131409,144.007446,146.668594,145.197525,146.437195,151.660339,151.222321,164.461990,182.428925,202.288437,217.676880,231.023972,232.966125,221.495056,197.065292,174.924789,164.404144,161.098373,153.809097,122.999191,104.974396,115.875221,122.999191,88.825638,42.139694,15.329770,13.982663,13.303322,9.956214,10.447123,13.033074,7.043811,0.859506,0.004132,0.151240,0.014050,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.555000,4612355.550000,3847,5155,147.694229,195.148773,180.520676,173.181839,155.826462,143.652908,145.966965,145.421509,147.041336,152.752075,152.214890,164.363647,182.603317,201.512405,217.628113,231.181839,232.752075,220.793411,196.776871,175.619858,164.281006,161.809937,156.272751,123.495880,104.016548,115.793404,123.793404,87.413239,42.462830,16.259523,14.206632,13.690928,10.991752,11.999191,12.204149,6.629762,0.766117,0.294216,0.242976,0.147934,0.052067,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.955000,4612355.550000,3869,5155,146.691727,198.138016,182.559494,173.633881,157.278503,145.427261,147.774368,146.708252,149.295029,155.716522,153.220657,167.055359,184.237183,204.270248,219.526443,232.997513,234.857025,222.113220,198.452057,176.650406,165.666931,162.195862,157.063629,125.385963,104.650429,117.650421,123.766129,87.675224,43.096722,17.402498,14.278532,13.457868,11.580183,12.933903,12.569438,6.412407,1.011573,0.356199,0.220662,0.300000,0.138017,0.000000,0.045455,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.555000,4612355.550000,3887,5155,142.282669,199.381821,184.332245,174.290924,158.704147,146.836380,147.423157,147.968597,148.208267,155.175217,153.125626,166.282654,184.522324,203.836380,219.497528,232.051254,233.894226,220.282654,196.505798,175.522324,164.720673,161.737198,155.290924,123.216537,105.323975,116.447945,122.646294,86.282661,42.522331,16.521507,14.117374,12.531422,9.171917,11.809106,10.650429,6.412406,0.979341,0.556200,0.436365,0.171901,0.197522,0.000000,0.055373,0.060331,0.000000,1.307438,0.000000,0.000000,0.000000,0.000000 -601523.355000,4612355.550000,3906,5155,160.242996,202.201675,183.540512,175.548782,161.259521,148.945480,149.449600,148.523987,150.970261,159.705811,155.515717,168.705811,184.730591,204.119034,219.400009,234.309113,235.920685,221.400009,197.829773,176.036377,165.482666,162.366959,156.581833,123.614899,105.986786,117.788452,125.871094,88.490929,43.474400,17.829771,14.234728,14.656214,11.861173,12.773571,10.675220,9.319020,1.200829,0.557852,0.000000,0.000000,0.044629,0.000000,0.094215,0.000000,1.286777,0.000000,0.000000,1.128099,0.000000,0.000000 -601527.155000,4612355.550000,3925,5155,162.564468,205.200836,182.895050,176.432236,160.333084,148.457047,147.944656,148.043823,149.862000,157.415726,153.787628,165.771088,183.275208,202.291748,217.217361,231.895050,232.605789,217.060333,194.448761,173.828934,161.349609,159.027298,153.754562,122.101669,103.134727,118.614067,120.754562,84.399193,41.771091,16.737209,13.977706,13.402496,8.996709,11.400844,10.225634,4.968604,0.629754,0.229753,0.211571,0.017356,0.034711,0.000000,0.068596,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601534.355000,4612355.550000,3961,5155,112.787621,176.366119,174.498352,165.771088,152.630585,145.126450,143.994217,144.225632,146.159515,148.382645,151.333069,163.547943,182.068604,198.523148,213.547943,224.688431,228.291748,217.878525,192.969421,170.746292,160.531418,156.217361,149.754547,119.779350,102.134727,115.283485,121.035553,87.498360,42.481842,16.890104,13.614069,8.768609,10.525638,12.732249,11.929770,4.331413,0.995870,0.356199,0.341324,0.112397,0.080165,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.355000,4612355.550000,3976,5155,123.227287,171.210754,173.582657,164.690094,151.615723,145.276871,144.086792,142.623978,144.475220,146.632248,150.921509,162.723160,181.334732,197.475220,212.185974,224.053741,227.400848,217.830597,192.243820,170.285141,158.731415,156.657043,150.863647,119.342987,100.747940,113.409096,120.442154,85.756218,41.888451,17.896715,13.714895,9.080178,8.957868,11.425636,11.438858,6.534721,1.060332,0.182645,0.105786,0.251240,0.014876,0.000000,0.242976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.955000,4612355.550000,3994,5155,135.200012,170.142151,174.993393,164.604965,153.985138,144.109100,143.712402,144.712402,144.067780,147.365295,151.753723,163.390091,181.861160,197.654556,212.588440,224.233063,227.472733,218.018188,192.778519,169.580170,159.059509,156.315720,150.018188,119.604965,101.067780,114.439682,121.059517,87.290916,41.439690,17.760349,13.638035,9.144642,11.660347,11.786793,12.400840,7.990093,1.435539,0.136364,0.074380,0.030579,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.755000,4612355.550000,4023,5155,123.331421,167.100006,174.314896,164.934723,154.513229,145.785965,144.504974,143.852081,144.769440,147.670258,150.959518,162.992569,180.612411,197.546295,212.430588,225.000839,228.207458,217.447113,192.397537,170.133072,158.967789,156.471909,148.736374,119.381004,100.645470,113.488441,120.802490,86.595879,41.166138,17.409111,13.521505,10.904147,10.749602,11.994231,12.842991,4.985132,0.823143,0.066943,0.083471,0.066116,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.555000,4612355.550000,4037,5155,131.507462,166.135544,174.937195,165.656204,154.838013,145.573563,145.590088,144.400009,146.581818,149.945465,152.904129,164.507446,183.077682,199.433060,213.449585,226.557022,229.590088,220.052902,193.193390,170.995041,160.490906,157.003311,150.400009,120.697540,102.829773,114.110764,121.094231,87.515732,43.119026,19.337206,13.672746,9.486790,11.731422,11.728942,13.145471,5.598355,0.966118,0.185124,0.006612,0.000000,0.019835,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.555000,4612355.550000,4052,5155,127.205803,172.486786,173.908264,164.544632,152.718185,144.528107,144.668594,144.387604,145.718185,148.404129,151.577682,163.139679,181.610748,198.999176,213.420670,226.478516,230.544632,219.776031,193.858688,171.751236,160.247116,157.412399,150.718185,120.511589,101.098351,114.784309,122.371086,88.321487,42.883495,17.891754,13.701672,8.623982,10.561172,9.979356,13.967786,6.341332,0.939671,0.380993,0.080166,0.072728,0.357852,0.000000,0.089257,0.152066,0.000000,1.262810,0.000000,0.000000,0.000000,0.000000 -601556.555000,4612355.550000,4072,5155,131.640518,171.706635,172.904968,164.004150,152.285126,147.318192,145.822327,142.938034,144.962830,146.772720,150.409088,162.896713,180.673569,198.392563,212.392563,224.665283,227.904953,218.896698,193.086777,169.086792,160.723160,156.285126,150.772720,119.508278,100.814064,113.070267,118.847122,86.111588,41.566139,17.038862,13.706630,9.321499,9.071092,12.263654,10.830595,4.172737,1.313225,0.362812,0.493390,0.272728,0.204133,0.000000,0.000000,0.159505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.755000,4612355.550000,4093,5155,128.629776,167.629745,173.629745,164.266113,153.530579,145.323959,143.894211,143.852890,145.935532,148.514038,151.158676,162.795029,181.323959,198.414871,213.819824,225.795029,228.869415,219.290909,192.761978,170.001648,159.067764,155.927261,150.018173,119.406631,101.125641,113.307457,118.447952,87.034729,42.365314,18.373571,13.638035,9.131418,11.415720,11.004149,11.303321,5.250421,1.214053,0.266117,0.344629,0.019835,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.555000,4612355.550000,4112,5155,127.279350,167.254562,174.717377,166.188446,153.362000,145.552094,143.147125,142.676056,143.312424,146.370270,150.031433,161.163666,177.634735,194.998367,209.676056,222.196716,224.899200,214.940521,188.395065,166.064484,154.965317,150.824814,145.709106,116.709106,97.370270,112.395065,118.502495,86.006622,41.519028,16.425636,13.246299,7.264475,11.404150,12.389272,9.488443,4.684305,0.666117,0.331406,0.435538,0.023967,0.159505,0.000000,0.012397,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.555000,4612355.550000,4137,5155,124.134727,171.638840,174.729736,165.837173,154.291733,145.333069,143.977692,143.316528,144.580994,147.795868,150.316513,161.151230,179.382629,195.043793,209.994202,221.977676,224.795868,213.589249,188.531403,165.638840,155.514862,150.457016,143.936371,116.225632,96.655396,109.746292,117.308281,85.060349,41.919857,15.844646,13.085143,7.882658,10.618199,10.119852,12.542165,3.678519,0.470249,0.068595,0.279339,0.009918,0.009918,0.000000,0.000000,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.555000,4612355.550000,4162,5155,115.373573,172.042999,171.728958,163.497543,153.795074,143.547134,140.489288,141.514069,142.481018,145.109116,147.051270,159.208298,177.481003,193.216537,207.662796,219.522308,220.894211,212.009918,185.885956,162.067795,152.828125,149.323990,141.654572,113.315720,95.133904,108.447952,114.795052,82.894234,40.712418,15.912416,12.877705,6.704145,8.457867,9.490926,9.084311,3.955379,0.473555,0.476034,0.135538,0.000000,0.009091,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.155000,4612355.550000,4180,5155,129.480179,168.918213,175.215714,164.422348,151.918213,145.281845,143.025650,141.860367,142.662018,146.463669,148.752914,160.645477,178.207458,193.033920,210.066956,220.538025,222.100006,212.719849,187.066971,163.504990,154.050446,148.827301,144.372757,115.414070,95.628944,108.794228,115.785973,84.447128,39.785973,17.125637,13.124812,8.109104,10.038033,10.375224,9.613236,3.084303,1.013225,0.071901,0.166943,0.149587,0.037191,0.000000,0.000000,0.084298,1.234711,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.755000,4612355.550000,4213,5155,109.587616,173.323151,171.066956,164.091751,151.959518,143.017365,141.314896,142.480179,142.777695,145.827286,148.149597,159.075226,177.257034,193.752899,207.587616,220.364471,222.480179,212.025635,186.199188,163.248779,153.116547,148.587616,142.009109,113.397545,94.538040,107.736382,115.323158,82.942993,41.000847,16.606628,12.909936,5.444638,10.109935,11.422332,8.693401,4.224802,0.736366,0.142976,0.083471,0.078513,0.006612,0.308265,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.155000,4612355.550000,4240,5155,128.319855,173.022339,173.931427,164.741348,151.790939,144.807465,142.352921,142.551270,143.088455,146.336395,149.204163,159.187622,177.452087,193.542999,207.898376,220.005814,222.295074,212.666962,187.063660,164.129776,152.369446,148.691757,144.245483,115.071907,96.567787,108.989265,114.600838,84.179359,41.022331,16.567787,13.113242,6.957038,9.829769,9.222330,11.172741,4.414884,0.895043,0.109918,0.240497,0.028926,0.180993,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.355000,4612355.550000,4256,5155,120.941345,176.627274,172.875214,166.032242,152.486786,144.966125,143.354553,140.701675,142.726456,146.172729,148.214050,159.850418,177.726456,193.288437,207.263641,219.594223,221.131409,211.321487,185.205795,163.990906,153.561157,147.519836,141.990921,114.139687,94.181007,108.561180,114.933075,84.470268,40.982662,16.956217,12.908284,8.227285,8.706629,8.404975,10.198361,5.761167,0.583472,0.000000,0.150414,0.025620,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.555000,4612355.550000,4277,5155,134.569427,172.569443,172.643799,163.817368,151.313232,141.635559,140.371094,140.833908,140.503326,144.338043,145.817368,157.296692,174.321487,192.189270,205.073578,217.800827,220.139679,208.974380,183.395874,161.247131,151.197525,145.924820,140.809113,111.511574,93.511581,104.957855,114.271904,83.280182,40.511589,15.573571,12.800844,7.040507,9.398365,9.337206,9.904146,5.465298,1.047110,0.000000,0.074380,0.005785,0.000000,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.955000,4612355.550000,4314,5155,138.163635,172.676041,172.204971,165.717361,153.114059,143.056198,142.122314,141.138855,141.824799,145.519012,147.147110,158.097534,175.370255,192.535538,205.808289,218.411575,220.254547,210.642975,184.899185,162.411575,152.163635,147.568604,142.072739,112.841339,94.006622,106.213234,114.923981,84.196709,40.791759,17.464481,12.915723,9.068608,8.871093,9.655389,10.328940,5.525630,1.014879,0.007438,0.000000,0.000000,0.000000,0.000000,0.076860,0.000000,0.000000,1.186777,0.000000,0.000000,0.000000,2.228100 -601612.955000,4612355.550000,4354,5155,127.095047,175.557846,174.334732,166.136383,151.855392,140.657043,140.128113,139.880188,140.128113,144.219009,144.690079,156.929764,174.326462,191.458694,205.458694,216.954559,218.946304,208.500015,184.020676,161.632248,150.235550,145.590912,141.045471,111.012413,92.698364,106.342995,115.888443,85.359520,41.417374,16.831423,12.822333,5.969432,7.633074,8.623156,9.823982,2.937196,0.637192,0.139670,0.000000,0.015703,0.039670,0.000000,0.016529,0.067769,0.000000,0.000000,0.000000,0.000000,1.167769,0.000000 -601615.555000,4612355.550000,4367,5155,129.699188,174.856216,171.038025,163.831421,153.517365,142.153732,140.418198,140.814896,139.856216,144.765305,145.690918,157.385132,174.509109,192.087616,205.996704,216.765305,219.219849,208.757034,183.641342,161.616547,150.120667,146.112411,139.690918,111.500847,91.690933,106.542168,114.104156,85.071098,42.575226,17.689274,12.699194,6.481001,9.798364,8.981834,9.073567,3.026452,0.311571,0.000000,0.081818,0.000000,0.010744,0.000000,0.061984,0.000000,0.000000,2.069422,0.000000,0.000000,0.000000,0.000000 -601618.355000,4612355.550000,4381,5155,121.303322,173.559509,177.658691,166.261978,153.840485,143.195862,142.749573,142.435532,141.939667,146.295029,147.757843,158.923141,175.584305,193.047104,206.749603,218.625626,219.923157,208.683487,185.080170,162.542969,151.633881,146.443802,140.790909,112.286797,93.154564,105.956215,116.609108,87.997536,42.592579,17.758694,12.799192,6.433070,9.678531,10.530595,11.909933,6.259514,1.019011,0.331406,0.009091,0.065290,0.121488,0.000000,0.053719,0.071901,0.000000,0.000000,0.000000,0.000000,2.581818,0.000000 -601622.955000,4612355.550000,4404,5155,121.400017,179.214066,178.197540,170.313248,155.073578,143.090103,142.552917,142.949600,143.817368,148.776047,150.023987,162.412415,180.371094,197.404144,210.552917,223.189270,222.486801,212.453735,187.453735,164.114899,153.503326,147.445480,142.354568,111.445473,93.321510,105.957870,115.205803,88.172737,42.470268,17.423159,12.941341,5.346290,12.313240,11.114064,9.901669,5.506621,0.779342,0.691737,0.098348,0.888432,0.505786,0.489257,0.109918,0.056199,0.000000,1.340496,0.000000,0.000000,0.000000,0.000000 -601627.155000,4612355.550000,4425,5155,138.214890,179.876038,171.793396,167.826447,153.371902,140.859497,139.826447,140.181824,139.950409,143.991730,144.280991,155.677689,172.884293,190.487610,203.471069,215.396698,216.305786,205.479340,180.925613,158.611572,147.264465,142.933884,137.363632,107.834724,90.595055,103.619850,112.355385,85.264488,40.371925,17.304976,12.487623,5.450423,9.987620,9.081008,11.545469,4.680173,0.844630,0.352893,0.114050,0.000000,0.126447,0.000000,0.000000,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.155000,4612355.550000,4450,5155,125.915718,187.271088,178.320663,167.626450,153.932236,142.039673,140.444641,140.849594,139.576859,144.965302,144.436371,155.775208,172.535538,189.527283,203.923981,214.386780,216.180176,206.056198,180.535538,158.436371,146.907440,141.808273,136.163635,108.428116,88.238029,103.477699,112.957039,83.775223,41.213245,15.328118,12.378532,6.096704,8.398362,8.749602,7.548772,5.752076,0.881820,0.200828,0.205785,0.034711,0.014050,0.000000,0.103306,0.073554,0.000000,0.000000,0.000000,1.203306,0.000000,0.000000 -601637.355000,4612355.550000,4476,5155,120.098358,172.528107,169.321487,160.726456,144.809097,133.850418,131.858688,129.338028,128.519852,130.346298,131.511581,141.296692,157.296692,172.321487,183.098343,193.313232,194.842163,183.098343,161.338013,142.172729,131.048767,128.114883,122.627281,96.445465,79.792580,91.478523,101.594223,73.933067,34.594234,15.041341,11.147953,8.702493,8.227285,7.010757,8.023982,3.759512,0.613225,0.254547,0.214050,0.000000,0.052066,0.000000,0.000000,0.110744,0.000000,0.000000,1.170248,0.000000,0.000000,0.000000 -601640.555000,4612355.550000,4492,5155,129.037201,168.971069,171.285126,160.442154,144.152908,134.260345,133.318192,129.425629,128.838852,130.012405,132.070251,142.012405,157.814056,171.814056,183.037186,194.004135,194.202484,183.772720,160.194214,140.359528,130.698349,128.657028,122.590919,95.458694,80.780998,93.921494,100.557869,75.260338,35.838860,15.258697,11.144648,8.647949,8.292575,9.654559,9.022327,3.071082,0.957028,0.548762,0.105785,0.043802,0.066116,0.000000,0.046281,0.050413,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.555000,4612355.550000,4507,5155,121.935555,173.976868,170.712402,159.323990,144.481018,134.547119,132.158691,129.976868,129.571915,130.712418,130.538849,141.282669,157.985138,172.431412,183.084290,193.332230,194.720657,182.175201,158.530594,140.505814,129.811584,129.076050,122.654564,95.323982,80.447952,91.117363,100.803322,74.927292,35.175224,15.497539,11.150433,8.312410,8.129766,8.384312,8.783485,4.578521,1.125623,0.032232,0.134711,0.000000,0.166942,0.000000,0.058678,0.120662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.355000,4612355.550000,4521,5155,110.752914,173.323151,170.199188,158.695053,144.703323,134.190918,133.190933,129.860352,129.488449,130.058701,130.967789,141.728119,156.802490,171.587616,183.463654,193.471909,195.331421,182.290100,159.513229,139.463654,129.976059,128.852081,121.645477,95.587616,80.091759,91.190933,100.281830,73.893410,34.265308,14.907456,11.058697,9.178526,8.317369,8.469435,8.758692,3.247941,0.328927,0.293390,0.213224,0.000000,0.101653,0.215703,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.555000,4612355.550000,4552,5155,120.840515,178.774368,172.815689,162.138016,145.840485,135.435547,133.947937,130.865295,130.171082,131.757858,131.509933,141.906601,159.261978,173.220657,185.121475,194.766113,195.749573,182.865280,159.873550,141.154541,130.832245,128.435547,123.790916,95.468613,81.129768,92.245476,100.361176,72.947952,35.146297,14.739688,11.253737,9.170261,7.450425,7.528112,8.511585,4.041329,0.928928,0.401654,0.059504,0.052066,0.100000,0.000000,0.013223,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.355000,4612355.550000,4566,5155,109.362000,178.238022,171.444641,160.692566,145.800003,134.039688,133.089264,130.229767,129.915710,131.138855,131.271088,141.618195,157.452896,172.709091,184.295868,195.097534,195.428101,182.684311,159.114059,141.353729,131.006622,127.676048,122.254562,94.957039,79.609932,90.750427,100.114067,72.866127,34.752087,15.189274,11.114068,7.471087,7.203319,8.842162,9.619851,3.483479,0.927275,0.341324,0.000000,0.000000,0.000000,0.000000,0.183472,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612355.550000,4584,5155,119.385139,174.600006,172.335556,161.269440,147.195053,134.963654,135.236389,131.988449,131.517380,133.038025,132.476059,142.748779,159.798355,174.046295,186.732239,197.922333,197.335556,184.542160,161.228119,141.864471,132.542175,129.302505,123.600021,96.558693,81.219849,92.765312,103.509102,73.814888,34.740513,15.394233,11.236382,9.052907,9.890095,9.680180,8.438858,1.942156,0.882648,1.044630,0.000000,0.000000,0.042149,0.000000,0.085951,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.555000,4612355.550000,4607,5155,129.426453,178.583481,172.533890,161.170258,146.087631,133.533890,133.054565,130.393402,130.451248,132.971909,131.583481,142.252914,158.385132,173.401672,186.376877,196.104141,197.236374,184.608276,160.310760,141.178543,131.476044,128.566956,122.872742,96.120674,78.872749,91.897537,100.319023,72.740517,34.087624,14.008283,11.170267,8.690098,7.695054,8.945470,9.501669,3.696702,0.743804,0.137191,0.247108,0.069422,0.000000,0.000000,0.129752,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.955000,4612355.550000,4634,5155,120.980179,181.137207,171.550430,162.575226,145.525635,134.038025,133.864471,131.120667,130.426453,132.690918,131.484314,143.451248,158.071091,173.922333,186.029770,196.310745,194.608261,182.095886,161.277695,140.633072,131.401672,128.856216,123.236374,95.203316,79.244644,92.054558,99.864479,71.368607,33.558701,13.919850,11.203323,8.208279,9.077701,10.418196,9.670263,2.628934,0.615705,0.525622,0.171075,0.062810,0.126447,0.000000,0.057851,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.555000,4612355.550000,4647,5155,129.072739,184.634735,173.378540,164.932251,148.965317,137.262833,136.676056,133.204971,132.998352,136.469437,133.998352,144.428116,160.676056,176.246307,187.808289,198.254562,197.576889,184.717377,161.618210,142.965317,133.023148,130.775208,125.527283,97.039673,81.552078,93.171906,102.510750,75.188446,34.866135,16.714067,11.411590,11.708281,9.507450,10.418198,9.311586,4.409927,1.150416,0.293390,0.367769,0.003306,0.000000,0.000000,0.375208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.155000,4612355.550000,4665,5155,134.906616,185.443817,173.171082,164.468597,147.807449,135.237198,134.609100,132.790924,131.658691,135.757858,132.716537,144.030594,158.708267,175.815720,187.162827,197.642151,196.509933,182.666946,161.402496,141.485138,131.104965,128.344635,123.700012,96.171082,80.493401,93.683479,100.270256,72.311584,34.968616,14.955390,11.245473,12.127289,10.347948,9.294229,8.900842,3.168604,1.092565,0.327274,0.011571,0.000000,0.000000,0.003306,0.204133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.755000,4612355.550000,4693,5155,140.285141,195.855377,174.723160,166.425629,151.409103,137.210754,135.781006,133.235550,133.904968,138.797531,134.342987,145.070267,160.095062,176.491745,189.177689,198.747955,197.731415,183.706635,161.152908,142.880188,132.590927,130.376038,124.590919,97.128105,80.442162,94.202484,103.128105,73.417374,35.888451,15.557869,11.326464,10.894230,8.876047,9.069435,7.981008,5.039679,0.482646,0.157025,0.123967,0.000000,0.120661,0.000000,0.068595,0.230579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.755000,4612355.550000,4738,5155,146.323166,194.802490,178.835556,169.248779,151.116547,138.628937,137.000839,134.124802,134.083481,139.777695,134.612411,145.909943,160.422333,176.447113,189.381012,199.347946,198.372742,183.827286,162.496704,142.967804,132.645462,129.430588,125.281830,96.009102,81.397537,96.265305,101.909927,72.017380,34.157871,14.784316,11.389276,13.121505,8.642987,9.555387,8.835552,4.590918,0.671077,0.847936,0.163637,0.000000,0.056199,0.000000,0.132232,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.955000,4612355.550000,4809,5155,108.049591,165.006638,169.957047,161.155396,146.981842,137.436386,135.981827,134.147110,134.097534,134.634720,136.676041,147.932251,165.428116,180.932236,195.345474,203.824814,204.411591,193.180191,168.634735,146.824814,136.105789,132.857864,127.981827,99.114059,82.072739,96.948769,106.122322,76.833084,37.378532,15.609936,11.634728,7.224806,8.294230,8.526461,9.397535,4.129760,0.461984,0.185951,0.264464,0.002480,0.000000,0.000000,0.000000,0.000000,1.349587,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.955000,4612355.550000,4914,5155,110.496712,167.124802,172.075226,159.529770,148.190918,138.810760,135.819016,134.695053,134.480164,136.852081,137.909927,148.571091,166.587616,183.083481,195.290100,206.075226,205.761169,194.083481,169.827286,148.091751,137.066956,133.562820,128.736374,100.066956,83.133072,98.025642,107.719849,78.066963,37.414066,16.741341,11.703326,7.478525,10.215719,9.050429,10.397535,4.790918,1.128927,0.303307,0.333058,0.017356,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.555000,4612355.550000,5072,5155,114.597542,165.382645,169.853729,160.771088,148.399200,138.440521,136.721497,133.217377,134.019028,137.233902,137.556213,148.771103,167.035538,183.547943,195.564468,206.597534,206.068604,196.895050,172.663635,150.076889,138.531433,134.771103,129.572754,100.134727,82.357857,97.423981,109.382652,82.101669,38.589275,15.709936,11.779357,6.245464,8.425636,8.150429,7.304145,3.902487,0.547109,0.099174,0.058678,0.136364,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.955000,4612355.550000,5219,5155,123.210770,172.301651,172.103302,163.814056,150.152893,137.838837,136.946274,135.929749,136.805786,139.747940,139.219009,151.392563,169.648758,186.599167,199.508270,209.508270,210.731400,200.706604,177.177689,156.119827,143.301651,139.177689,133.772736,102.557869,84.698372,99.566132,114.541344,86.045479,40.359528,15.738861,12.161176,5.718191,9.208282,8.605802,8.034724,2.745461,0.446282,0.070249,0.280992,0.033058,0.020661,0.000000,0.029752,0.181819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.755000,4612355.550000,5278,5155,122.507454,178.565292,175.259506,164.986786,150.928925,138.755371,137.747116,135.961990,134.804962,139.433060,138.995041,149.986786,168.581818,187.185120,199.441330,210.614883,210.714050,201.672729,177.829758,156.300827,144.937195,140.036362,133.945465,103.912407,83.681007,100.176872,114.482651,86.366943,38.722336,15.060349,12.176878,5.300835,7.922331,8.071090,8.232245,3.177694,0.195042,0.086778,0.228100,0.000000,0.025620,0.000000,0.033885,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.155000,4612355.550000,5320,5155,124.259521,176.986786,180.143799,165.664459,147.581818,137.846298,137.209930,136.986801,135.449600,138.449600,139.565292,151.631409,171.482651,189.466125,201.854553,214.829758,217.044632,204.697525,179.862808,157.424789,145.705795,142.796692,137.309097,106.466133,89.036385,104.375229,115.499191,84.127289,40.862835,16.456217,12.482663,10.683487,10.423158,9.993404,12.655388,5.767778,1.427276,0.361984,0.000000,0.036364,0.000000,0.000000,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.955000,4612355.550000,5334,5155,126.585960,174.379364,178.776047,162.420685,147.057037,138.280182,137.900024,135.114883,137.123154,136.561172,138.726471,151.784317,169.792587,187.916550,202.676865,214.445465,215.445465,203.222321,177.833908,156.957870,145.610764,143.222336,137.900024,106.214058,88.685135,103.990921,115.776047,84.668610,41.453739,16.687622,12.536383,10.890924,9.628942,9.398363,11.457039,5.833894,1.157854,0.152067,0.414051,0.000000,0.016530,0.027273,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.955000,4612355.550000,5354,5155,123.185143,179.160339,178.904129,166.366959,148.201660,138.565308,137.722336,135.631424,135.557037,138.028122,139.350433,151.821487,170.879364,188.317352,201.300827,213.771912,216.193390,202.714050,178.614883,155.102478,144.904144,142.317368,137.309113,105.747124,89.813240,103.242996,115.920677,83.904152,41.821507,17.824812,12.482664,11.699188,9.061172,13.213240,11.744644,6.288438,1.138019,0.160331,0.268596,0.082645,0.241323,0.000000,0.082645,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.355000,4612355.550000,5371,5155,120.500847,184.766129,176.857040,164.311584,148.460342,136.352905,139.377701,134.683487,135.799179,136.658691,138.493393,151.154556,169.989273,187.600830,201.923157,214.823975,215.733063,202.278519,179.055374,156.047119,144.005798,143.361160,137.245468,106.898361,89.311584,104.253738,116.038864,85.336380,42.576054,14.884315,12.476878,12.223157,8.094231,8.361997,10.150427,4.088438,1.280995,0.446282,0.051240,0.019835,0.000000,0.000000,0.005785,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,4.328926 -601819.555000,4612355.550000,5387,5155,110.714066,189.347946,178.711578,163.794235,149.480179,137.133087,138.645477,136.190918,135.686783,139.323166,139.000854,152.108276,171.488449,188.976044,201.992569,215.182663,215.827286,202.909927,178.554565,156.314880,144.810760,142.306641,136.918213,106.075226,87.604149,102.785965,115.637199,83.777710,40.405804,14.843820,12.447126,11.100842,9.647950,12.162826,10.867784,5.942983,1.304960,0.947109,0.421488,0.399174,0.004132,0.085124,0.185124,0.000000,0.000000,0.000000,0.000000,0.000000,1.958678,0.000000 -601822.355000,4612355.550000,5401,5155,121.157043,181.462814,179.942154,164.347107,149.471069,136.933899,136.809937,135.214890,133.925629,139.132248,138.057861,152.140503,169.991730,188.752060,201.859528,214.843002,216.049622,202.710754,178.983475,157.099167,145.909103,143.000015,137.636383,106.206627,89.024811,104.768608,116.148773,84.933899,41.165306,17.370266,12.512415,10.728944,9.716546,9.923156,12.518198,5.451249,1.427276,0.142976,0.242976,0.068595,0.000000,0.123967,0.012397,0.175207,3.026447,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.555000,4612355.550000,5442,5155,117.458702,189.319839,182.030594,166.683487,150.832245,136.931412,140.485138,136.476868,136.295044,140.113235,139.865295,152.303329,170.741333,189.898361,203.171082,215.848770,215.981003,203.187607,178.162827,156.270264,145.857040,142.609085,138.609100,106.410759,88.336380,104.014069,116.336380,84.385971,43.204159,17.784317,12.600846,12.942163,9.438859,11.026462,11.517371,6.907447,1.061159,0.466117,0.014876,0.385952,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.355000,4612355.550000,5461,5155,119.454559,179.446304,175.239685,166.148773,151.553741,139.785141,139.570267,137.876053,137.677704,142.181839,142.363647,153.173569,168.925629,187.504150,200.421509,213.454559,215.462830,204.677704,181.735550,159.173569,148.727295,144.504150,140.272751,111.157043,93.917374,106.884315,114.487617,83.818199,40.677708,15.767787,12.752086,7.490921,9.352908,10.214065,9.566129,4.073561,1.057853,0.616530,0.127273,0.000000,0.076034,0.020661,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.555000,4612355.550000,5482,5155,126.137215,172.302505,175.682678,169.252914,152.881027,141.062836,141.352097,139.773590,138.401688,142.947144,143.905807,153.633087,169.707474,186.856216,200.600006,213.170258,215.393402,204.641342,180.013245,159.847961,149.376892,145.285980,141.327301,113.211594,96.864487,110.087624,116.137215,86.401672,40.600018,17.114893,12.847953,8.408278,9.914063,12.267785,11.207452,5.352075,1.337194,1.467772,0.273554,0.126447,0.007438,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.955000,4612355.550000,5509,5155,105.818199,170.033081,171.214890,164.239685,150.471085,138.462830,137.371918,135.347122,134.636383,139.586792,139.776871,151.347122,166.396713,184.776871,197.132248,209.801666,211.768616,200.851257,177.363647,156.190094,144.446304,142.776871,136.636383,109.438042,92.462830,106.586792,113.793411,82.818207,39.925640,14.249605,12.421508,7.228110,9.648774,7.972742,8.988441,2.427278,1.342151,0.154546,0.210744,0.000000,0.230579,0.166943,0.173554,0.242975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601852.155000,4612355.550000,5550,5155,114.330597,170.041321,174.132233,163.884293,150.892563,139.380173,137.239670,135.595062,134.768616,138.801651,139.438019,150.495865,165.801651,181.743805,196.140503,207.545456,207.909088,198.462814,175.314056,153.925613,144.041321,141.694214,135.181839,107.504150,91.198364,105.644646,113.942162,84.876060,41.330597,16.612415,12.289275,8.234722,8.653734,9.692578,11.132247,4.296702,0.866118,0.060331,0.343802,0.249588,0.000000,0.107439,0.358678,0.461158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601863.755000,4612355.550000,5608,5155,102.876869,164.513229,165.372742,162.232239,146.893402,136.389267,135.645462,132.025635,132.414062,135.992569,135.108276,146.876877,163.703323,179.050430,192.381012,203.496704,204.843811,194.711578,170.571091,149.769440,140.893402,136.984314,132.190918,104.017365,87.529770,101.976044,111.736374,82.314888,38.595890,16.916548,12.017374,7.996707,9.448776,10.011585,10.454557,4.127280,1.144630,0.356200,0.271901,0.123967,0.000000,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.755000,4612355.550000,5648,5155,100.862831,155.813248,165.457870,160.028122,146.152084,136.019852,132.747131,131.978531,131.515717,133.482666,135.176880,145.879349,161.366959,177.052902,189.366943,202.143799,203.342148,192.912399,169.887604,148.342163,139.044632,135.515717,130.763657,104.796707,87.259521,100.474388,111.937202,81.317375,39.499187,15.103323,11.887622,7.593401,9.601668,9.960346,8.325634,4.455381,0.525622,0.176034,0.000000,0.135538,0.110744,0.014050,0.105785,0.166942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.155000,4612355.550000,5675,5155,88.169449,150.351257,165.871933,157.723175,144.772751,135.252075,133.334717,131.417358,131.119843,132.301666,133.252075,144.549606,160.524826,176.210770,189.177719,201.136398,201.508301,190.623993,169.384323,148.979355,138.136383,134.400833,129.590912,103.359512,85.235542,99.557861,109.814056,80.136375,38.657040,15.547126,11.781011,7.266954,6.902492,7.647948,7.080176,4.125629,0.772730,0.089257,0.070248,0.129753,0.000000,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601881.155000,4612355.550000,5695,5155,86.804977,157.557022,169.036377,156.540497,143.052902,134.267776,131.119019,129.515717,129.383484,132.152084,133.557037,143.623138,160.333893,175.152084,189.292587,199.011597,201.300842,190.631424,168.639679,148.168610,138.565292,133.722321,129.127289,102.300842,84.490929,98.325638,108.267792,79.102501,37.383492,15.011587,11.738862,5.385134,7.987617,8.522331,6.422326,3.117363,0.629754,0.037191,0.000000,0.131405,0.000000,0.002479,0.000000,0.290909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601885.755000,4612355.550000,5718,5155,97.038033,158.484299,170.591736,158.715698,145.550415,136.806610,133.368607,131.790100,131.872742,133.393402,135.509109,145.533875,161.723969,177.029770,189.616547,200.426453,203.145462,193.302490,168.781815,149.186768,138.897522,135.211578,130.054565,103.128937,86.186790,102.178528,109.889267,80.823151,38.781837,15.871919,11.823158,6.455385,9.571915,9.327287,7.815714,4.532241,0.829754,0.732233,0.232232,0.044628,0.019008,0.003306,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.755000,4612355.550000,5738,5155,90.395889,151.346283,167.181000,157.238846,145.536362,135.015717,132.842163,130.255386,131.222321,132.164474,133.957855,142.660339,160.172729,174.718185,187.503311,198.990906,201.271912,191.767776,167.371078,147.635544,137.999176,133.908279,128.627289,101.172737,84.470268,100.081833,109.288445,77.585968,37.445473,15.298365,11.693408,5.511580,8.756212,7.757866,10.628939,3.827281,0.440498,0.743804,0.362811,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601895.555000,4612355.550000,5767,5155,89.406631,156.166962,168.142181,158.679367,146.034729,135.571930,134.100845,131.332245,130.877701,132.861176,134.489273,144.390106,160.861176,177.266144,190.505814,200.762009,202.290939,191.166962,168.505814,147.588455,138.133911,135.067780,130.018204,102.414894,85.555389,100.009933,107.745476,79.571922,37.555389,14.419851,11.819855,6.491747,8.814065,9.519025,8.547120,2.424799,0.448762,0.268597,0.160331,0.263637,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.755000,4612355.550000,5813,5155,92.500015,158.640518,168.971069,157.979340,145.004150,136.309937,132.995880,131.541336,132.053726,132.136368,133.632233,146.194229,161.500000,176.913223,190.673569,201.392578,202.648773,192.285141,168.194214,149.128113,138.979355,135.805801,129.772720,102.417374,87.797539,100.764481,108.623978,79.367783,38.938038,15.587622,11.797539,6.576045,9.722329,9.435553,8.993401,3.882652,0.715706,0.336365,0.000000,0.000000,0.000000,0.080166,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.355000,4612355.550000,5856,5155,93.585968,156.048782,167.949600,158.982666,145.114899,136.594238,134.536377,132.767792,132.197525,133.057037,134.982666,145.610764,162.800842,177.883484,190.569443,201.453735,202.842163,192.718201,169.304977,149.057037,139.585968,134.866959,130.172745,104.189278,86.304977,102.164482,110.602501,79.040512,38.470272,16.771917,11.833903,6.023152,9.121502,11.122331,9.594228,4.742984,0.934713,0.471077,0.220662,0.000000,0.054546,0.000000,0.379339,0.308265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.755000,4612355.550000,5873,5155,90.250435,156.680176,167.655396,158.605804,144.068604,135.787613,134.324799,130.919846,129.870255,132.432236,133.349594,143.704971,160.721497,176.043808,188.547943,201.366135,202.671906,191.572739,167.085144,147.415710,137.076859,134.853729,129.481827,102.514885,85.366119,99.142982,106.200836,78.060349,37.944645,14.602497,11.771093,5.466953,8.159518,10.021503,7.658689,3.245462,1.021490,0.104134,0.198348,0.044628,0.214050,0.181819,1.259505,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.155000,4612355.550000,5890,5155,75.132248,157.785141,167.760345,158.504150,143.677704,136.471085,133.636368,132.396713,131.066132,133.504135,135.867783,145.487625,160.942169,177.578522,188.884308,201.834732,201.520676,191.181839,167.537201,145.801666,137.652908,134.991745,129.545456,103.578522,86.223152,99.140511,107.785133,77.462830,37.900852,14.451256,11.776878,6.608277,10.033899,8.870263,8.981830,3.503313,0.625622,0.516531,0.279339,0.218182,0.000000,0.000827,0.000000,0.235537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.755000,4612355.550000,5913,5155,94.602493,153.982666,169.015717,157.214066,145.395889,134.990921,133.602493,131.255386,131.858688,133.428940,134.528107,146.528122,161.842163,177.883484,189.462006,201.734726,202.800842,191.569443,168.222336,147.619034,138.346283,135.643814,129.627289,102.883484,87.495056,100.511581,108.346291,76.908287,38.271923,15.513239,11.784316,7.404144,9.904974,9.774395,8.611584,3.062817,0.741325,0.184298,0.000000,0.160331,0.000000,0.277687,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601927.755000,4612355.550000,5928,5155,94.728119,159.223984,165.397537,156.083481,142.901672,133.662003,131.827286,129.860336,129.719849,130.802490,132.232239,142.926453,159.504974,175.166122,187.843811,199.686783,200.967789,189.926453,166.331421,145.248779,136.414062,132.802490,129.281830,102.381004,85.579361,99.281830,105.794228,76.248779,37.199196,14.570267,11.752913,6.134722,9.123982,8.430593,7.569433,4.584306,0.404134,0.242150,0.066116,0.049587,0.166116,0.004959,0.365290,0.226446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.555000,4612355.550000,5947,5155,95.494232,159.948776,166.089279,159.824814,145.833084,136.262833,134.089264,132.287613,132.362000,133.337204,134.543823,145.089279,159.899200,175.254547,189.370270,200.014893,201.155396,190.659531,166.923996,146.246307,136.907455,133.395050,129.163651,103.138847,85.775223,99.469437,106.089264,77.775223,36.502499,15.268613,11.742168,8.985138,10.121503,10.774396,8.585136,3.300008,0.561987,0.129753,0.384298,0.332232,0.000000,0.091736,0.385124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601936.155000,4612355.550000,5970,5155,88.427284,158.154556,167.311584,157.914886,142.972733,135.328094,131.328110,130.063644,128.898361,131.369431,133.138016,143.385956,160.493393,175.088440,187.352905,198.757858,201.063644,187.840500,165.311584,145.245468,135.162811,132.493393,127.518188,101.319847,85.939682,98.468605,104.063644,74.840508,36.369442,14.793406,11.592581,7.301664,9.692575,10.439685,7.925632,3.090089,0.711574,0.530581,0.000000,0.190083,0.505786,0.157025,0.423967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601942.955000,4612355.550000,6004,5155,95.073570,161.181000,167.313232,157.569427,144.015701,133.247116,131.544632,130.577698,128.594223,128.833893,131.891754,140.875214,157.519836,173.222321,185.519836,196.321487,197.461990,186.536362,162.511566,142.321487,131.825638,129.850418,124.081833,98.784309,80.858696,95.247116,102.660339,74.280182,36.486797,15.023984,11.280184,6.656211,8.623156,7.757866,7.357037,5.286786,0.418184,0.452894,0.123967,0.120662,0.000000,0.000000,0.448761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.955000,4612355.550000,6029,5155,103.592583,159.542999,168.295074,159.245483,143.650436,134.253738,131.435562,129.749603,129.923157,131.402496,132.262009,141.708298,158.038864,174.352921,185.997543,197.237213,197.576065,186.352921,162.766144,142.204163,132.038864,130.509933,123.427292,98.840515,80.509933,94.567787,103.799194,76.452087,36.898365,13.838861,11.220681,7.110756,7.071089,9.600842,9.277699,4.195876,0.354547,0.047108,0.304133,0.066942,0.000000,0.072727,0.135537,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601950.755000,4612355.550000,6043,5155,96.246307,161.981827,168.915726,158.725647,144.816559,136.485977,134.725632,132.130600,130.163666,131.709106,132.659531,143.576889,159.353729,174.039688,187.676041,198.700836,199.353729,187.634720,165.163635,143.519028,134.857880,131.130600,126.527290,99.213234,82.122330,96.824806,105.725632,78.568611,37.519028,16.264481,11.502498,9.052077,11.061998,8.847121,10.824807,4.105792,0.990912,0.399175,0.120661,0.526447,0.004959,0.000000,0.238843,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601954.755000,4612355.550000,6063,5155,89.645470,158.918198,167.017365,158.083481,142.752899,134.248779,131.678528,128.595886,127.232254,127.686798,129.852081,139.463654,157.108276,171.604141,183.496704,194.100006,195.207458,183.405792,160.909927,139.819016,130.901672,127.447128,122.463654,95.604156,79.959526,94.976051,105.190926,76.579361,36.157871,14.308282,11.133078,7.260344,9.348777,8.230593,9.831418,2.577693,0.092564,0.098349,0.061984,0.000000,0.000000,0.080992,0.295868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601959.955000,4612355.550000,6089,5155,96.814064,159.475220,168.579346,159.934723,143.521500,131.463654,130.546295,127.728111,126.934723,129.149597,128.744644,140.876877,156.372742,172.174393,185.232239,195.290100,197.620667,184.058685,161.133072,141.695053,131.538025,127.083481,122.281830,97.248772,79.761177,94.157867,103.546295,76.240517,35.876881,13.401670,11.116548,8.021501,8.055387,7.997536,7.504144,2.627280,0.517358,0.146283,0.111571,0.119835,0.192562,0.076860,0.228926,0.442976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.755000,4612355.550000,6103,5155,102.168617,161.226471,168.681015,161.044647,145.416550,134.152084,132.887619,129.681000,129.978531,130.168610,132.309097,142.606628,158.945480,174.623154,186.284317,197.185150,198.623154,186.152084,162.639694,143.515717,132.540512,130.523972,125.127281,98.490921,82.342171,95.598358,104.226456,76.267776,36.962002,15.533903,11.375226,8.275220,9.806626,10.464478,8.904973,4.538026,0.889259,0.120663,0.625621,0.346281,0.043802,0.338844,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.155000,4612355.550000,6125,5155,97.209114,162.258698,170.308289,158.919861,144.027298,133.696716,132.804153,128.762833,127.291756,129.200851,130.126465,141.035553,155.961182,171.390930,184.539688,195.118210,195.143005,182.771103,158.928116,140.283493,131.423996,127.308289,122.390930,96.159523,79.721512,93.622337,101.539696,73.994240,34.357868,14.145473,11.126466,7.890094,8.247947,9.911587,7.192574,3.660337,0.486779,0.328927,0.111571,0.118182,0.123141,0.233885,0.439670,0.308265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601972.955000,4612355.550000,6154,5155,102.977699,167.473557,169.878525,159.035538,144.762817,135.052078,134.432251,131.729767,129.399185,131.795883,131.870270,142.704987,158.556198,173.589264,185.374390,196.903305,197.167770,184.200836,162.052078,142.242172,131.936371,130.366135,123.572739,96.754562,82.019020,94.647125,104.085136,76.233902,35.977703,15.738036,11.233903,8.219020,9.393404,9.077702,8.416542,3.747940,1.026450,0.419836,0.065289,0.358679,0.031405,0.010744,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601979.955000,4612355.550000,6189,5155,102.947121,161.385132,170.550430,158.393402,141.583481,132.459518,130.591751,126.707451,126.831421,128.195053,128.352081,139.748779,156.252899,172.079346,183.583481,194.922333,195.004974,183.095886,161.310760,141.856216,131.690918,127.492577,122.872742,94.649597,80.608276,92.856209,104.343811,76.434731,36.079357,14.862827,11.170267,10.023981,10.361173,9.484312,9.500013,3.657859,1.045458,0.219010,0.115703,0.116529,0.000000,0.079339,0.510744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.755000,4612355.550000,6208,5155,90.980186,166.533890,168.542160,159.938858,145.814896,132.128952,132.988449,129.343826,128.550430,131.261185,130.856216,141.872742,157.368607,173.707458,185.211578,197.492569,196.533890,184.938858,161.203323,141.542160,133.310760,129.236389,125.145477,96.600021,80.162003,93.261177,105.509109,75.335556,35.459526,15.847126,11.376879,8.082658,8.057040,9.678530,9.523980,4.238850,0.624796,0.206612,0.116529,0.100827,0.200000,0.002480,0.000000,0.000000,0.000000,0.000000,0.000000,5.408265,0.000000,0.000000 -601988.355000,4612355.550000,6231,5155,85.390099,168.398376,166.770279,158.737213,144.604980,131.084320,129.960342,127.340515,126.861176,128.679352,127.547127,139.406631,155.555405,173.629776,184.456223,197.175232,197.472748,184.026474,163.414902,142.910767,133.357040,129.538864,123.654564,95.456215,79.315720,94.406631,106.439690,76.786797,35.398365,14.387621,11.241343,8.135550,8.303318,7.708279,8.367781,3.569428,0.455373,0.133059,0.313224,0.209091,0.000000,0.000000,0.071075,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601994.355000,4612355.550000,6261,5155,106.849609,172.642975,170.775208,163.262817,145.609924,133.386795,133.180176,131.122330,129.940506,131.742172,131.733902,143.304138,159.642975,176.089264,189.122314,201.080994,200.519012,187.039673,165.370255,145.155380,135.072754,132.502487,126.527298,97.593414,82.816551,96.353745,107.485962,79.279358,37.957047,15.792581,11.502499,9.007451,10.309935,10.328941,11.493403,3.497527,1.356201,0.074382,0.061157,0.290083,0.000000,0.000000,0.319835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.555000,4612355.550000,6282,5155,107.660347,170.511566,167.933060,156.453735,141.412415,130.462006,129.635559,128.172745,127.395889,130.114899,128.147949,140.519852,155.924820,173.048767,186.247116,198.114883,198.081818,184.800827,163.461990,142.503326,133.974396,129.833908,123.263657,95.776054,79.519852,93.371094,104.949608,75.817375,34.519855,13.887621,11.205805,9.979353,7.898360,9.705798,8.617369,3.304138,0.453721,0.161985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602003.955000,4612355.550000,6309,5155,110.143814,176.333908,172.143814,163.573578,146.763657,134.416550,132.928940,130.937210,130.366959,134.829773,132.160355,143.218201,160.333908,177.383484,190.325638,204.474396,203.573578,189.548782,167.862823,147.838043,137.309113,134.747131,128.036377,98.722336,83.796707,98.375229,107.548782,78.532242,36.647953,15.724812,11.639688,11.629767,10.186794,10.376874,10.328939,5.595051,0.829755,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602011.555000,4612355.550000,6347,5155,104.998360,174.262833,171.271103,165.469437,147.676056,135.535553,131.519028,130.824814,130.742157,134.667786,132.502487,143.915726,159.428116,177.899200,191.866135,204.411591,203.114075,189.857880,169.147125,148.866135,138.271103,135.990112,129.072739,99.957039,83.246292,99.031418,108.328941,76.824806,37.948780,14.243817,11.733904,10.969435,8.769437,9.570262,9.063648,3.779346,0.852069,0.438844,0.261158,0.077686,0.233058,0.086777,0.270248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.755000,4612355.550000,6373,5155,138.015717,180.007446,174.420670,164.990906,146.057022,135.387634,133.619034,131.057053,131.387634,136.081833,132.131424,144.643814,159.610748,177.685120,191.627274,204.106613,204.280167,188.552902,170.619019,148.577682,138.561172,135.329773,130.536377,101.238861,84.627296,100.652092,108.379356,78.883499,38.181011,16.706631,11.866961,12.792575,10.274395,12.307455,9.799185,6.458689,1.333888,0.448762,0.144629,0.486778,0.000000,0.111571,0.275207,0.227273,0.000000,0.000000,0.000000,1.796694,0.000000,0.000000 -602021.955000,4612355.550000,6399,5155,130.162827,180.055374,174.617371,165.014053,147.576050,135.625626,133.014053,130.939667,130.576035,136.460342,132.055374,143.493393,158.823975,177.047119,190.923157,203.195877,203.617371,188.361160,168.997528,149.154556,139.071915,134.633881,129.336380,100.237190,84.947952,103.369423,110.468613,78.857040,38.567787,16.044645,11.757870,14.361174,10.185139,11.837207,11.594231,4.852076,1.128928,0.539672,0.225620,0.227273,0.029752,0.098347,0.063637,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602029.155000,4612355.550000,6435,5155,97.363655,152.702515,157.735550,147.388443,133.057861,124.016541,121.280998,119.247940,118.446289,120.330589,121.851250,134.305786,151.413254,167.264496,180.628113,192.272766,194.528961,184.677704,161.900848,140.404984,130.000015,126.107445,119.000008,92.380180,74.107452,93.165306,106.289261,79.727287,37.404976,13.814893,10.818201,4.691746,8.995054,7.323153,8.979353,2.859511,0.653721,0.438844,0.020661,0.099174,0.180992,0.166116,0.624795,0.294215,0.000000,0.000000,0.000000,1.166942,0.000000,6.611571 -602040.355000,4612355.550000,6491,5155,108.944649,149.027298,154.746307,145.862000,131.862000,122.118195,118.101669,115.870262,115.390923,117.300018,118.663651,130.671921,146.704987,163.895065,177.457031,188.506638,190.101669,179.523148,157.019028,136.316559,125.506638,121.506622,116.390923,89.233902,71.581017,90.564476,105.349602,78.457039,36.324814,13.944645,10.581010,3.938025,9.116543,8.295054,8.572741,2.820670,1.230583,0.315704,0.261984,0.000000,0.056199,0.000000,0.461984,0.071901,2.271075,4.054546,0.000000,0.000000,0.000000,0.000000 -602054.555000,4612355.550000,6562,5155,121.284309,149.110764,150.119034,140.267792,126.127281,115.548775,112.970261,109.441330,108.052902,109.532242,109.771912,121.482658,138.862823,155.557037,168.011597,179.226471,179.201675,169.507462,148.408279,128.325638,118.052902,113.804970,106.763649,80.143814,64.523979,82.887611,99.441330,74.747116,35.234730,12.769439,9.705805,7.589268,8.752081,9.627287,9.323155,5.676044,0.631407,0.278513,0.223141,0.125620,0.027273,0.274380,0.221488,0.471075,2.192562,0.000000,0.000000,0.000000,1.764463,0.000000 -602061.755000,4612355.550000,6598,5155,112.672745,146.492569,141.219849,128.723984,113.823151,102.699188,99.186790,94.409927,95.170258,95.195053,95.732246,106.847946,123.459518,136.914062,148.732239,158.079346,157.864471,150.649597,130.566956,112.566956,102.864479,100.104149,94.054558,69.699196,53.996716,72.798370,94.790092,73.682663,35.980183,13.101670,8.550433,8.975220,10.062825,13.655386,14.835554,11.485964,2.618187,1.678515,0.437192,0.653720,0.259505,0.971075,0.087604,0.838018,9.932232,3.774380,0.000000,4.112397,2.759504,0.000000 -602269.355000,4612355.550000,7636,5155,0.925620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.028099,7.052898,5.777692,0.146282,0.000000,18.613239,12.971088,30.894230,56.115719,51.602489,16.822329,9.010750,5.750418,3.209920,2.247936,0.241323,0.901654,0.547934,0.266942,0.000000,0.000000,0.000000,0.000000,0.000000 -602272.155000,4612355.550000,7650,5155,0.242150,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.025623,23.581831,16.278526,0.924796,0.000000,14.976048,16.119024,37.472744,57.583485,49.095882,7.262820,1.338019,0.296695,0.010744,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.580992 -602275.355000,4612355.550000,7666,5155,44.243813,81.524811,60.485142,47.695057,32.917366,23.556210,23.730589,22.042162,20.558691,22.238029,21.838028,28.455385,39.850430,51.182663,61.174397,74.657043,78.004150,74.979355,71.842163,63.528946,55.589275,56.734726,57.445469,34.716541,21.400011,40.113239,95.351250,104.004143,60.623985,7.994228,5.222332,15.228944,16.970264,34.338036,54.987625,44.012417,1.870252,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.266943,2.061158,0.563637,0.318182,0.672727,2.284298 -602278.955000,4612355.550000,7684,5155,92.324806,148.767776,136.742996,121.519852,105.478531,94.313240,99.131424,94.924812,96.528122,100.412415,101.114899,115.040512,132.445480,149.891754,162.139694,174.742996,178.338043,172.709930,160.742996,146.486801,138.519852,139.247131,135.900024,108.759521,88.883492,111.470268,142.147949,123.007454,63.304974,17.189274,12.354565,16.675222,15.044644,25.069441,32.536385,24.038860,2.271904,0.004959,0.000000,0.000000,0.000000,0.000000,0.206612,0.110744,2.226446,5.105785,0.907438,2.030579,0.960331,5.493389 -602282.155000,4612355.550000,7700,5155,107.317368,165.153717,148.715698,135.707428,120.302490,108.674393,111.765305,109.864479,110.839684,116.765305,118.856209,134.781830,157.401657,176.004974,191.252899,204.690918,207.285965,200.600006,184.319016,167.773560,158.955368,157.335541,154.418182,123.550423,102.285965,122.319023,151.269424,122.947121,59.352081,17.857042,14.038035,15.637206,14.771917,21.583488,28.433077,17.642990,2.333888,0.080992,0.242976,0.038843,0.000000,0.000000,0.152066,0.000000,6.304132,0.971901,1.955372,0.866942,0.000000,1.944628 -602286.755000,4612355.550000,7723,5155,55.966129,91.983490,84.267792,70.866959,56.994232,47.510761,49.386799,46.619026,45.924812,49.782661,49.883492,62.142166,77.437210,92.138863,103.527298,115.304153,119.180191,116.188454,110.023155,100.568619,93.436386,94.320686,93.800026,71.517380,52.373577,74.176056,122.130600,118.725639,66.527290,11.466957,8.527292,13.110760,20.750431,36.523987,57.180183,45.452911,2.377690,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.424794,0.000000,0.419008,1.003306,4.229753 -602324.355000,4612355.550000,7911,5155,113.706627,149.199188,146.405792,132.909943,120.248772,111.926460,114.909927,114.000839,117.496704,121.752907,127.909935,145.769440,172.199173,195.133057,212.414047,228.595871,232.868591,226.042145,206.042145,184.909912,174.248764,173.554535,170.009109,133.025635,106.248772,131.323166,164.207458,131.314896,61.802502,16.156218,15.455391,15.322331,15.552083,20.084314,28.069441,17.736378,1.736368,0.686779,0.096695,0.121488,0.000000,0.000000,0.217356,0.137190,1.222314,4.468596,0.890909,0.000000,1.851240,0.000000 -602329.355000,4612355.550000,7936,5155,29.619841,54.444641,51.321499,37.457870,21.435556,13.837206,13.231421,12.191751,11.542991,12.339686,13.520678,24.001673,41.800842,56.453732,67.999184,77.668610,78.065300,73.032242,64.412407,52.594227,44.040512,45.106628,48.990925,26.563656,6.900011,30.666962,99.428940,113.610756,68.197533,7.414062,4.453738,8.376872,16.685968,36.966137,55.090099,44.757870,1.760334,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.641323,0.488430,0.391736,0.057025,0.418182,0.000000 -602333.955000,4612355.550000,7959,5155,83.675217,116.495064,109.957863,95.329765,81.090096,72.685143,71.428940,70.470261,71.478523,73.668610,75.090096,88.106621,106.999184,122.990921,135.495056,145.280182,149.073578,144.296707,132.379349,117.536377,110.214066,110.594223,112.627281,87.619019,64.478531,90.280174,139.833908,125.569435,69.825638,14.873570,10.238862,7.996706,16.212414,25.028948,42.577705,32.312416,1.909095,0.000000,0.053719,0.000000,0.000000,0.000000,0.130579,0.000000,0.000000,2.307439,3.032232,2.152893,0.000000,3.153719 -602338.355000,4612355.550000,7981,5155,111.818199,138.823151,142.038025,126.013245,110.814896,101.847954,102.004982,99.104156,100.112419,102.575226,104.228119,116.905807,136.814896,153.823151,165.781830,175.682663,177.806625,170.657867,154.757034,137.228119,128.682663,128.162003,128.872742,99.170265,78.426468,101.310768,133.054565,109.153740,51.707458,12.922332,11.715721,9.476048,10.595057,15.753737,21.722332,14.014067,0.661986,0.092563,0.000000,0.027273,0.000000,0.000000,0.234711,0.224794,1.164463,2.400827,1.091736,0.873554,2.842976,3.627273 -602340.955000,4612355.550000,7994,5155,123.742165,149.959518,144.265305,129.562820,115.339684,104.876862,104.100006,102.546288,102.959511,105.752899,107.364471,119.661995,139.488449,157.223984,169.777710,179.719864,179.918213,173.009125,155.504974,138.174393,128.819016,127.504974,128.645462,100.612404,79.662003,100.298355,134.571091,109.372734,51.628948,14.670266,11.695061,10.994230,12.180182,16.961174,21.250429,11.460345,1.715707,0.368597,0.096695,0.287604,0.102480,0.000000,0.666943,1.042149,1.180165,2.387604,0.827273,3.352067,1.021488,1.835537 -602344.555000,4612355.550000,8012,5155,112.933075,141.460342,132.749603,120.361168,102.014061,93.212410,91.270264,89.666954,89.782654,91.658699,92.807449,103.997528,124.129761,142.939682,156.989273,165.807449,161.245468,150.989273,134.047119,115.733070,106.625633,107.427284,111.609100,86.154564,63.328117,86.526466,145.865295,131.270264,66.080185,14.105803,10.146299,9.853732,12.523983,19.957041,28.614069,18.207455,0.937193,0.125620,0.033885,0.070249,0.191736,0.434711,0.202480,0.530579,10.418182,2.241323,2.642149,2.538017,3.007438,7.379340 -602350.355000,4612355.550000,8041,5155,81.307457,106.376053,97.161171,84.095062,68.359520,60.822330,61.549603,62.524811,63.070263,67.268608,69.871918,83.351257,103.161171,123.004150,138.450424,149.805801,149.326462,144.971085,130.814072,114.954559,106.433899,109.384315,114.681831,89.607452,65.681831,93.169441,155.855392,148.599182,83.417374,14.011587,10.425639,10.295054,17.361176,34.351261,51.466957,40.706631,1.847938,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,3.800001,3.938844,1.252066,3.000828,2.233058,0.000000 -602359.755000,4612355.550000,8088,5155,161.585968,157.349594,149.671906,134.605804,119.961174,110.374397,108.630592,107.225632,109.068611,111.605797,113.853737,125.919846,143.952896,158.870255,173.250427,185.498352,189.159515,184.531418,165.382645,146.671906,137.911575,136.423981,133.572739,104.523155,84.465302,104.266960,124.754562,98.184311,44.052090,13.384315,12.142994,12.000841,12.261173,15.055389,20.374399,15.568610,3.199180,1.077689,1.441325,1.083474,0.377686,0.979340,2.957027,3.149588,15.874380,12.547935,16.042150,9.827273,7.219009,19.139673 -602365.755000,4612355.550000,8118,5155,42.585953,33.443806,24.530584,19.172731,16.814878,15.271904,15.436368,15.108269,15.700830,16.871078,17.974384,21.271904,26.195045,31.080994,35.687607,40.545460,43.304962,43.321495,40.635540,36.577690,35.611576,35.123142,35.090912,27.652897,22.590088,30.701656,41.633064,38.521492,21.419842,4.236370,3.190089,9.089265,24.518194,32.175220,45.182659,37.607449,32.052082,32.942989,24.387613,27.052076,25.038025,23.533890,19.379345,21.548765,21.717360,21.911573,58.060337,57.485954,79.842987,101.860336 -600973.155000,4612345.550000,1155,5205,104.000847,113.395058,90.304146,79.692574,65.766968,52.694237,50.776878,45.959526,44.041344,46.847126,44.177708,57.676056,75.006622,93.171913,106.998360,121.800018,127.990097,125.502495,121.105797,109.477699,101.395058,100.328941,92.163651,54.998371,32.962830,63.428123,116.072739,111.221504,58.766964,12.953735,8.378531,18.314894,13.902495,26.275227,39.362007,32.835556,2.177690,0.071075,0.000000,0.008265,0.047108,0.000000,0.000000,0.000000,5.530580,3.469422,3.259505,0.000000,2.108265,3.056199 -600977.755000,4612345.550000,1178,5205,118.695877,127.501663,105.724800,95.691742,79.807457,69.410759,66.741341,63.088448,60.576050,62.650433,60.881836,74.237206,94.815712,112.981003,128.625626,145.972733,151.518188,150.319839,144.658691,132.683487,122.989265,121.534721,113.336372,72.311584,49.038860,78.286797,133.253723,125.377693,66.700020,16.552082,10.303325,21.385141,13.909107,27.167788,39.402496,26.114893,1.535540,0.000000,0.000000,0.183472,0.000000,0.000000,0.000000,0.000000,7.751241,0.619835,2.123967,1.376034,1.442149,0.000000 -600984.755000,4612345.550000,1213,5205,101.558701,123.246307,106.428123,96.651260,80.659523,70.510765,69.304153,63.395061,62.833076,63.568615,63.014896,76.585144,96.328949,115.064484,129.841339,146.386795,152.601669,151.659531,145.659531,133.006622,123.039696,122.031425,112.709114,71.609940,46.320679,76.816551,133.775223,123.345474,63.122334,15.644647,10.246301,14.747124,12.782661,22.471918,33.562000,22.094233,0.907440,0.052066,0.000000,0.000000,0.000000,0.085124,0.000000,0.163637,9.410746,0.727273,0.000000,1.947108,0.667769,1.662810 -600995.155000,4612345.550000,1265,5205,84.761177,107.108284,91.645470,82.620682,67.777710,56.215714,55.546295,49.885139,46.091751,45.686794,45.893406,59.628937,80.860352,96.587616,113.703308,130.984314,138.422348,136.306641,130.025635,115.595871,102.513237,101.182655,90.009102,42.562828,18.823986,51.438854,123.405800,122.868599,63.695057,10.676047,8.182664,9.678527,10.917371,17.218199,31.233906,18.123158,0.311571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.683471,1.822314,3.796696,0.879339,2.169422,4.566943 -601004.555000,4612345.550000,1312,5205,85.738029,100.585136,86.188446,74.866127,61.180183,47.857868,44.304153,37.395061,34.444645,30.742168,29.981838,41.576878,59.081009,74.436378,89.287621,105.221504,109.676048,104.609932,99.948776,84.337204,70.676048,67.411591,60.072746,13.981008,2.034715,23.505804,102.147125,112.667786,62.824818,11.352907,5.461176,10.259520,11.291749,20.190926,32.733078,24.701670,0.290910,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,6.940498,2.144629,1.649588,0.728926,1.742149,7.033059 -601298.155000,4612345.550000,2780,5205,48.919018,94.826462,87.247948,77.335548,62.298359,49.416550,47.728115,44.425640,43.097534,43.671917,41.691753,48.671093,57.885136,68.267792,76.750427,86.256218,87.644646,84.008278,79.685966,68.907463,60.966957,60.984310,59.763653,34.743816,21.696707,40.728943,89.628113,99.314064,56.099190,9.715717,5.433076,13.368609,15.526463,30.223158,45.851261,36.454563,1.700004,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.630579,0.000000,0.000000,0.000000,0.000000,0.000000 -601301.355000,4612345.550000,2796,5205,67.262817,133.889267,120.533897,112.252907,97.839684,85.550423,84.707451,81.517365,79.335548,81.624809,78.467789,87.393402,99.616539,111.021500,120.872742,129.120667,131.418198,125.228111,118.517365,106.575218,97.608276,96.104149,93.963646,66.442993,49.500843,70.814888,113.591751,109.947121,61.145477,13.076051,8.542167,12.400015,13.547123,26.871094,38.881012,28.760351,1.134715,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.528926,0.000000,0.000000,0.000000,0.000000,0.000000 -601305.955000,4612345.550000,2819,5205,92.411583,150.587616,137.257034,126.141335,112.752914,102.951248,102.587616,100.248764,100.447113,102.554550,101.967773,113.471916,129.248764,143.257034,153.868607,163.166122,165.000839,160.174393,147.719849,134.571075,124.025635,123.761169,122.009102,92.777702,72.761177,93.628937,134.306610,121.852081,64.554565,13.651258,11.091755,13.763654,14.382661,24.843821,34.827290,22.857042,0.863640,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.193388,0.000000,0.000000,0.000000,0.000000,0.000000 -601312.155000,4612345.550000,2850,5205,86.870270,148.895050,145.134720,134.324814,119.465294,110.093391,110.754555,108.176041,108.366119,110.952896,110.787613,123.506615,141.308273,157.118195,167.969421,178.853729,181.448761,174.308273,162.638855,146.795868,136.192581,135.283493,133.390915,104.283478,81.977707,103.399185,146.266953,129.853729,67.721504,15.988446,12.126465,11.065305,14.596711,20.845472,31.820683,19.430595,0.657854,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601321.955000,4612345.550000,2899,5205,104.294228,154.705811,152.763657,140.631424,129.391754,118.986794,118.019852,115.581841,115.664482,119.085968,119.416550,132.532257,151.276047,166.325638,180.110764,190.391754,193.424820,187.664490,174.358704,156.970261,147.639694,147.606628,145.490921,113.705803,93.366959,113.912415,150.077698,129.366959,64.581841,16.128942,13.226464,11.861999,13.795884,20.041342,28.962004,17.233076,0.962812,0.166942,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601330.955000,4612345.550000,2944,5205,100.412415,150.465317,146.143005,137.159531,121.498367,111.126472,110.928123,108.944649,108.622337,109.746307,111.010765,122.423988,137.853745,151.085144,162.019028,171.572739,172.514877,165.977707,154.498367,139.291763,130.209106,127.837212,125.481842,98.895058,78.721512,97.886803,134.217377,118.936386,61.291756,13.591754,11.407457,7.992576,11.157867,18.524811,30.102497,14.579355,0.285125,0.014050,0.026446,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601336.355000,4612345.550000,2971,5205,94.300018,140.342987,142.384308,132.698349,118.400833,108.053734,108.235550,105.103325,104.194229,104.219025,104.599190,114.805794,128.797531,140.690094,149.739685,157.623978,158.607452,153.632248,141.706635,127.880173,119.028931,116.814056,114.500008,89.417366,70.260345,89.227287,125.863647,114.615715,59.392578,14.962829,10.409111,7.485137,11.903322,17.749605,29.103327,17.561174,0.697523,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601342.755000,4612345.550000,3003,5205,82.661163,137.557861,141.012436,131.524796,116.756203,109.367775,108.061989,106.293396,106.400833,107.086784,108.119843,118.119843,134.533066,147.268616,157.177689,166.318192,167.657043,161.169434,150.012405,135.731400,125.789261,125.582649,122.863647,96.747940,75.904976,96.946289,135.665298,124.004143,64.152908,16.157869,11.169440,9.049601,12.768612,20.466961,30.909937,19.190926,1.032234,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601352.555000,4612345.550000,3052,5205,103.759514,144.452896,144.833069,133.973572,122.279350,112.395058,111.816544,110.494232,110.907455,112.981834,114.824806,126.998360,144.378525,157.436371,171.750427,180.204971,181.684311,176.750427,163.890915,148.642975,139.370255,137.800003,136.254547,108.618195,87.155388,108.114067,147.328934,128.304153,67.155388,17.677704,12.386796,10.918197,13.605801,21.885143,30.047955,18.724810,0.991738,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.830579,0.000000,0.000000 -601364.955000,4612345.550000,3114,5205,111.423988,154.993393,156.348770,146.662827,134.076065,126.877708,125.877708,125.885979,126.638039,129.497543,132.654572,146.861176,168.175217,184.844635,198.621490,208.092575,209.919022,206.745468,191.778519,172.563644,162.381821,160.257858,158.745468,125.927299,102.778534,124.034737,156.373566,130.249619,65.596710,19.942167,14.431425,13.771919,14.276877,19.795887,24.567787,13.578529,0.702482,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601376.955000,4612345.550000,3174,5205,108.715721,156.046295,164.971909,153.095901,142.806641,132.996719,134.368622,133.914078,135.095886,138.674408,142.963669,155.971909,178.319016,197.137207,214.038025,227.566956,230.484314,225.095886,202.649597,180.624802,169.806625,165.236374,161.054565,126.723991,102.971916,121.542168,142.847961,109.376877,53.947124,19.514896,14.641340,12.815719,13.007454,14.276050,16.304150,6.018191,0.424796,0.061158,0.096694,0.185124,0.058678,0.000000,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.057851 -601382.555000,4612345.550000,3202,5205,123.208275,155.943802,162.596695,154.233047,143.216522,135.530594,135.894226,134.960342,136.100830,140.894211,144.034698,157.910736,179.968597,199.109100,215.018188,228.968597,232.381821,224.224808,201.464478,180.538849,168.009918,165.158676,158.563629,125.985138,102.762001,120.340515,139.117355,104.522331,51.613243,18.409937,14.414895,10.095883,12.807454,12.966958,17.196711,7.421500,0.989261,0.272729,0.238844,0.016529,0.014050,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601388.555000,4612345.550000,3232,5205,122.204971,157.279343,166.833069,157.568604,144.824799,137.130585,136.014893,136.742157,137.238022,142.328934,145.899185,158.353729,181.304138,200.031418,216.791748,229.783478,233.271088,225.114059,201.196701,179.287613,168.626450,164.783478,159.709091,126.196701,103.386795,121.510750,137.188431,102.171913,48.882664,18.258696,14.519027,11.577703,10.776875,11.566960,14.927289,6.782654,0.839672,0.277687,0.183472,0.061157,0.000000,0.000000,0.000000,0.085951,0.000000,1.176860,0.000000,0.000000,0.000000,0.000000 -601391.555000,4612345.550000,3247,5205,107.652908,161.102493,165.573578,153.449600,143.168610,136.457870,135.036377,135.300842,136.804977,141.639694,144.821503,158.540512,180.135559,199.408279,216.482666,229.804977,233.515717,225.061172,201.276047,178.747131,167.350433,163.730591,157.309113,124.499176,102.962006,120.069427,135.515717,100.160347,46.813244,17.409937,14.300846,9.509104,10.600014,11.496709,13.503324,5.038855,0.793391,0.295043,0.136365,0.000000,0.046281,0.000000,0.000000,0.062810,0.000000,0.000000,1.036364,0.000000,0.000000,0.000000 -601396.555000,4612345.550000,3272,5205,116.491745,159.979355,169.764481,158.442169,145.880188,138.425629,137.739685,137.913239,140.194229,144.384308,148.400848,162.797531,183.896713,202.830597,219.921509,233.342987,238.161179,228.152908,202.756210,180.657043,168.623978,166.020676,159.136383,127.549591,104.210754,121.128105,134.318192,99.698357,47.144646,18.471092,14.466961,7.676047,10.598364,11.653734,15.268611,9.123981,1.984303,0.428927,0.230579,0.086777,0.024794,0.000000,0.007438,0.000000,1.253719,0.000000,0.958678,0.000000,2.461157,0.000000 -601401.355000,4612345.550000,3296,5205,124.610756,168.544647,169.817368,160.181015,148.536377,140.866959,141.090103,140.412415,142.106628,146.395889,151.230591,165.354568,185.362823,204.470261,221.238861,235.238861,237.643814,228.404144,202.371094,180.205811,167.982666,164.751266,157.990921,126.742989,105.990921,119.726463,129.594223,95.238861,45.131424,19.189276,14.362829,8.005800,11.506628,10.625634,11.919851,6.327282,0.880169,0.767770,0.099175,0.080992,0.061158,0.000000,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.555000,4612345.550000,3312,5205,124.079353,168.062820,171.732239,161.558685,150.319016,143.128937,142.847946,143.228119,145.087616,148.806625,153.186783,166.955383,187.418198,206.575226,223.434723,236.079346,240.624802,230.409927,204.442993,179.715714,168.641342,164.162003,158.236374,128.079346,106.277702,119.682655,128.608276,94.211586,44.856220,19.474400,14.385143,10.133900,10.629767,11.818198,12.408279,8.111583,0.483474,0.081819,0.252894,0.000000,0.024794,0.000000,0.080992,0.012397,0.000000,1.193388,1.123967,1.037190,1.175207,0.000000 -601409.755000,4612345.550000,3338,5205,121.972740,175.038834,176.162796,166.509933,154.319839,146.385971,146.270279,145.642181,148.567795,152.080185,156.104965,169.509918,189.468582,207.931396,225.270248,237.542969,241.328094,231.096695,204.402466,181.526443,169.782639,166.022324,159.518188,129.749603,107.212418,121.840515,130.220673,93.493408,45.220680,18.724813,14.501671,10.913238,12.447124,12.454562,13.779356,5.291746,1.608268,0.628927,0.539671,0.300001,0.000000,0.000000,0.109091,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.155000,4612345.550000,3355,5205,118.152916,168.772720,171.475204,162.739670,151.227280,144.326447,144.475204,143.582642,146.698349,150.318176,153.805786,168.202484,188.425613,205.979340,222.004135,234.822311,238.946274,228.971069,203.152893,179.764465,168.590912,164.334717,158.590912,127.789276,106.119858,119.442162,128.954559,93.673576,43.962833,16.599194,14.417376,6.243814,10.439688,10.118198,12.151257,5.585134,0.956200,0.200003,0.690911,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.126446,0.000000,0.000000,2.151240 -601416.555000,4612345.550000,3372,5205,128.852905,173.373566,173.257858,166.133896,153.976868,146.216537,147.241333,145.935547,148.406616,153.472733,156.357040,170.323975,189.373566,208.191757,224.200027,237.042984,239.828110,230.985138,204.629776,182.844635,170.290924,166.026459,161.200012,129.745468,108.852921,122.976883,131.538849,96.001671,45.216549,19.183489,14.654564,8.985138,10.897537,12.587620,11.652082,5.257862,0.955375,0.376034,0.223141,0.000000,0.120662,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.155000,4612345.550000,3395,5205,114.835548,167.562820,175.141342,165.942993,153.546295,145.538025,146.009109,145.752899,147.438858,152.405792,156.166122,170.339676,189.323151,208.257034,223.703323,237.232239,240.662003,232.009109,204.769440,181.513229,169.794235,165.934723,161.190918,130.232239,108.215714,123.248772,130.579346,95.761169,45.174400,16.984316,14.653738,7.308280,11.071918,11.614891,10.995884,3.963645,0.828101,0.126447,0.208265,0.092562,0.019835,0.388430,0.014050,0.042976,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000 -601424.755000,4612345.550000,3413,5205,112.428116,169.717377,173.626465,165.229782,153.097549,145.940521,145.304153,146.089279,147.494232,152.609940,155.444656,169.006638,188.833084,207.056213,222.692581,234.973572,239.833084,230.147125,204.527298,181.527298,169.436386,164.328949,158.800018,129.527298,107.775230,119.676056,129.221512,93.543816,43.998371,17.581837,14.436383,8.159519,11.434727,10.738032,13.048778,5.157861,1.768598,0.146282,0.296695,0.217356,0.000000,0.000000,0.038843,0.087603,0.000000,0.000000,2.251240,0.000000,0.000000,0.000000 -601431.955000,4612345.550000,3449,5205,130.584320,172.328125,174.501678,170.658707,156.931427,149.286804,148.319855,149.245483,149.981018,155.576065,158.774399,171.592590,189.947952,207.757874,223.460358,235.038864,239.633911,229.592590,205.311600,182.121521,170.501678,168.700027,163.518204,132.394226,110.947952,124.195877,133.427292,98.336372,47.691753,18.766136,14.865307,9.321503,11.555389,13.823157,13.585140,6.728110,2.010749,0.252895,0.119009,0.105785,0.040496,0.000000,0.114877,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601434.955000,4612345.550000,3464,5205,129.728943,179.084305,175.125626,165.828110,155.208267,146.241333,146.398361,146.018188,148.233063,154.257858,156.323975,168.976868,186.869431,204.993393,219.613235,231.885956,234.348770,226.828110,202.943817,180.869431,170.869431,167.844635,164.200012,132.861160,112.315712,124.737198,137.431412,102.233078,48.042995,18.935556,14.927292,6.961171,10.132248,12.133901,12.867785,7.570260,1.037192,0.209918,0.104133,0.000000,0.000000,0.000000,0.000000,0.123141,0.000000,0.000000,1.128099,0.000000,0.000000,0.000000 -601440.955000,4612345.550000,3494,5205,130.273575,177.157867,173.843811,166.257034,153.852081,146.033890,146.215714,146.265305,148.496704,154.174393,157.604141,170.116547,188.281830,206.595886,222.843811,234.265305,236.571091,229.314896,205.752899,185.009109,173.926453,171.504974,166.554565,136.488449,114.802490,129.695053,142.554565,108.265305,49.273575,19.900021,15.141341,7.978526,10.795882,12.594233,13.738034,7.052078,0.961987,0.281820,0.338844,0.023967,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.242975,0.000000 -601443.755000,4612345.550000,3508,5205,127.645470,174.471893,174.901657,167.653717,154.860321,146.430588,146.488449,147.488449,148.785950,154.761154,156.695038,170.306610,188.397522,206.496704,221.926453,233.967789,236.976044,228.612411,206.571091,185.240494,174.099991,171.149582,166.554535,137.290100,113.042160,128.182663,143.157867,107.000839,51.273571,19.758696,15.141340,7.964477,10.845470,12.517371,13.518199,7.090921,1.235541,0.263638,0.150414,0.028926,0.000000,0.000000,0.300828,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601448.355000,4612345.550000,3531,5205,128.966125,182.354538,177.057007,170.156189,157.767776,146.205795,148.090088,148.486786,150.643799,157.007446,159.941330,172.304947,191.023956,208.800812,224.247101,236.081802,240.875198,231.280151,208.594208,186.966110,177.156189,174.073547,169.354538,138.271912,115.784309,130.371078,142.858688,108.652077,52.495060,20.220678,15.395888,10.026463,11.587619,13.812414,14.863653,7.055385,1.375211,0.233886,0.226447,0.000000,0.224794,0.615703,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.955000,4612345.550000,3544,5205,125.532234,176.433075,175.234726,167.879364,154.614899,144.995056,145.466141,146.722336,147.705811,153.887619,157.391754,169.457870,187.358704,207.590103,220.895889,233.590103,236.292587,228.656219,205.499191,184.829773,173.829773,170.383484,166.309113,136.887619,112.623146,128.515701,140.515717,107.201653,50.011585,18.330597,15.119028,9.193401,11.442165,12.114064,15.285968,6.380176,1.303311,0.174382,0.075207,0.723968,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,3.347108,0.000000,0.000000 -601456.955000,4612345.550000,3574,5205,130.075226,184.042175,176.794250,171.091751,158.215714,146.571091,148.199188,147.290100,150.108292,156.339691,157.827301,170.819016,189.182663,208.571091,223.843811,234.893402,239.414062,230.595886,206.538025,185.190933,174.182678,171.777710,166.918198,137.785965,113.868607,129.033890,143.265305,109.744644,51.116550,19.114893,15.174399,10.159521,11.162826,13.382661,14.062001,6.550424,1.142978,0.189257,0.027273,0.000000,0.181819,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612345.550000,3587,5205,140.232239,182.934708,174.562805,168.480164,157.496704,146.480179,146.513229,147.645462,149.199188,155.207458,157.686783,169.471893,188.521484,208.182648,222.736359,234.686768,237.579330,229.595871,205.711563,185.124786,174.488434,170.595871,166.918182,137.488449,115.207451,128.620667,141.223984,109.885139,50.480186,20.232252,15.174399,9.108278,11.311587,11.631420,15.225637,7.364475,0.914052,0.385951,0.534713,0.028926,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.155000,4612345.550000,3600,5205,151.934738,178.868607,178.042160,170.182663,156.141342,145.860367,148.281830,148.331421,148.678528,154.628937,157.595886,169.066956,187.496704,207.992569,222.306625,233.661987,237.141312,230.281815,205.141342,184.546295,172.521500,170.133072,166.827286,134.852081,113.042160,128.232239,142.397552,109.397545,50.182663,18.372744,15.166135,7.448773,10.761173,12.749602,14.241339,7.101665,1.302484,0.191737,0.269422,0.046281,0.092562,0.000000,0.000000,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.155000,4612345.550000,3630,5205,128.318192,177.962830,174.946304,166.376053,154.764481,144.376053,144.962830,144.871918,145.152908,149.210754,152.789276,165.938034,183.185974,201.929764,215.119858,226.946320,229.574417,219.020676,197.855408,176.037201,165.995880,164.103317,160.136383,131.855392,109.458694,124.566132,137.896713,103.698364,48.500019,17.748779,14.557871,11.224808,12.176878,12.376878,16.249605,7.890094,0.815705,0.071902,0.000000,0.476034,0.150414,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.955000,4612345.550000,3644,5205,133.442169,178.152908,176.789276,165.731415,152.615723,144.690094,144.161179,143.814072,145.152908,148.458694,151.210754,165.276871,183.814072,201.797516,214.037170,225.921478,229.392563,217.805771,195.342972,174.210754,165.037201,162.822327,157.681839,128.855392,107.938034,122.442162,139.590927,104.533073,49.590927,17.601671,14.334729,12.137205,10.286793,13.904148,12.451255,6.428936,0.771076,0.292563,0.230579,0.049587,0.000000,0.000000,0.187604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.355000,4612345.550000,3666,5205,130.238037,182.527283,177.560333,168.361984,152.915710,144.692566,145.254547,144.196701,145.246292,148.965302,153.337204,164.709091,184.626450,202.229752,215.527283,227.361984,228.725632,219.353729,195.312408,174.857864,165.047943,163.097534,158.436371,129.304153,108.659515,122.337204,136.923981,102.262825,48.254562,18.776878,14.403325,12.539685,11.538034,13.511587,15.177703,7.309927,1.016533,0.080166,0.328100,0.175207,0.000000,0.000000,0.142976,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.155000,4612345.550000,3700,5205,133.573578,182.226456,179.333893,168.408264,154.209946,145.441345,146.838043,145.226471,147.185165,151.152100,151.788467,165.953720,185.697525,202.400009,216.226456,229.482651,230.697525,221.069427,197.829758,176.242981,165.342148,163.598343,158.854553,129.309113,107.945473,122.168617,133.044647,97.697540,47.565311,18.225639,14.441342,11.401670,12.309936,12.870266,13.923158,6.128934,1.270252,0.408266,0.014876,0.037190,0.000000,0.000000,0.070249,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.755000,4612345.550000,3713,5205,143.757034,184.856216,177.889267,170.162003,153.914062,144.575226,145.600006,145.327286,147.195053,151.219849,152.905792,167.046295,185.004974,202.583481,217.624802,229.484314,231.302490,218.872742,197.087616,174.905792,165.310760,163.343811,157.418198,128.128952,108.674400,121.442978,133.021500,98.905807,46.492584,18.391752,14.310762,14.490927,12.345471,13.374399,16.211588,7.087613,1.851245,0.411572,0.447935,0.514877,0.176860,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.555000,4612345.550000,3732,5205,125.974396,183.478546,178.676895,168.800858,153.181015,144.329773,146.032257,145.296707,146.412415,150.412415,152.519852,166.329788,185.271942,203.552933,217.495071,230.255402,231.933090,221.024002,196.214081,175.536392,165.057068,163.271942,158.263657,127.660339,108.280174,120.652077,129.313232,95.685143,44.726463,17.313242,14.387623,10.099189,10.458693,12.742167,14.307455,4.947942,0.686780,0.309919,0.380166,0.000000,0.043802,0.000000,0.038017,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.555000,4612345.550000,3762,5205,128.981827,188.307449,182.456207,170.266129,157.828110,147.340500,149.828110,149.571915,151.786789,155.357040,156.687607,170.018188,188.299164,207.150406,220.852890,233.778503,236.092560,223.588425,198.943802,178.538849,168.604965,164.795044,161.109100,129.431427,108.315720,121.621498,130.266129,95.894234,44.472748,17.949604,14.646299,13.319852,11.481835,12.882662,12.438859,7.166955,1.661987,0.255373,0.375208,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.555000,4612345.550000,3787,5205,147.428940,193.123154,181.982666,173.693405,158.652069,147.164490,150.230591,149.519852,151.164490,155.924820,156.461990,169.404144,188.230591,206.288422,220.941315,234.693375,235.792542,224.164444,198.883484,178.519852,168.924789,164.833893,159.263641,127.833900,108.594231,120.742996,128.759521,92.057045,43.090103,18.931423,14.478532,13.424810,12.202497,13.886795,13.096711,7.202489,0.779341,0.166116,0.085951,0.012397,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.155000,4612345.550000,3800,5205,141.027298,193.969421,184.605804,172.622330,161.143005,148.423996,151.704987,150.795883,151.886795,157.655396,156.779358,170.729782,189.283493,208.027283,221.647110,236.547943,238.680176,226.432236,201.291763,180.126465,168.176056,166.266968,161.390930,128.787628,108.126472,120.581017,127.696716,92.581017,45.969440,20.490101,14.671921,15.623158,13.301671,13.643820,14.859520,9.270261,1.838019,1.194217,1.132234,0.319009,0.090083,0.036364,0.047108,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.155000,4612345.550000,3815,5205,159.166107,196.976028,182.893387,173.298340,158.951233,146.827271,149.876862,148.951233,150.124786,157.942978,156.000824,169.802475,188.339661,206.331406,220.612396,234.133057,237.298340,223.513214,200.281815,178.124786,166.901657,164.050415,158.099991,126.422325,106.066956,119.314888,124.480179,88.133072,42.513241,18.706629,14.372747,13.678531,12.922331,13.534730,14.430595,8.440507,0.534712,0.056199,0.028926,0.090909,0.000000,0.242149,0.026447,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.155000,4612345.550000,3835,5205,155.410767,192.881821,184.485138,172.906616,157.700012,147.666946,149.278519,148.526459,149.700012,157.096710,155.584305,168.435547,186.691742,206.096710,221.278519,234.691742,236.898361,222.749603,199.146286,177.460342,165.898361,162.022324,157.972733,127.005806,106.204155,119.468613,125.427292,87.749611,41.675228,17.815720,14.361176,13.142992,11.400017,11.962827,11.969438,7.166952,0.978515,0.162811,0.139670,0.024794,0.046281,0.000000,0.302480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601514.955000,4612345.550000,3864,5205,158.567780,202.609085,183.179337,176.443802,160.559494,148.228912,148.757843,148.947922,152.278503,157.931396,154.964462,169.228912,187.104950,206.080154,220.584290,235.204132,237.336365,223.038834,198.204132,176.501648,165.964462,163.724792,155.881805,124.518188,107.245461,119.906624,124.038849,87.286797,42.063660,16.981012,14.171093,14.579356,10.648777,11.760346,11.764478,6.365299,0.692563,0.019836,0.266116,0.161984,0.040496,0.000000,0.250415,0.085951,0.000000,1.371074,0.000000,0.000000,0.000000,0.000000 -601518.555000,4612345.550000,3882,5205,173.419846,203.642975,186.998352,176.849594,160.552078,149.122314,150.915710,149.601654,150.469421,159.948761,155.312408,168.337204,184.841324,205.262817,219.957031,233.304138,235.130585,220.510757,198.039673,175.585129,164.932236,161.543808,155.709091,124.510757,105.899185,119.081009,123.502495,86.981834,43.775227,17.881008,14.155391,14.809106,10.946300,11.659521,12.369437,6.636374,1.491738,0.438844,0.196695,0.212398,0.032232,0.000000,0.100000,0.133058,1.414876,0.000000,0.000000,0.000000,2.700827,4.804959 -601521.955000,4612345.550000,3899,5205,170.366959,206.143814,186.681015,176.003326,159.705811,148.647949,149.639694,148.251266,150.375229,159.639694,155.416550,168.052917,183.912415,203.044647,218.738861,232.028122,233.838043,219.011597,195.325638,173.854568,162.755386,160.548782,154.945480,123.069443,104.176880,118.730598,122.796715,86.623161,42.557045,18.578533,14.085970,16.381008,11.242992,11.122331,13.261172,8.784308,0.985952,0.700828,0.561984,0.359505,0.522315,0.105785,0.246282,0.234711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.155000,4612345.550000,3915,5205,140.347946,185.926453,183.050430,173.083481,156.389267,149.645462,147.463654,147.141342,150.554565,154.157867,155.124802,166.397537,185.546295,202.273560,215.934708,230.290085,232.306610,220.819000,196.133072,173.860336,163.438858,158.918198,153.100006,123.347946,103.728111,117.372742,122.356209,87.628944,43.744648,19.064482,13.918200,11.704146,11.652909,12.450430,14.673571,7.357864,0.847109,0.197521,0.525621,0.352067,0.070248,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.755000,4612345.550000,3933,5205,128.486801,173.742981,177.404129,168.189270,153.990921,146.329773,144.941345,145.495056,145.412415,148.619034,151.610764,164.329773,181.726456,198.214050,213.916534,225.164459,227.437195,217.486786,192.296692,170.313232,159.809113,155.635559,149.627289,120.718201,101.933075,114.338036,121.486794,87.561180,42.412415,18.539688,13.602499,10.312412,11.932248,13.127290,13.252909,6.356209,1.347111,0.445456,0.304133,0.090084,0.014876,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601534.555000,4612345.550000,3962,5205,115.039696,169.957031,174.403305,166.229752,154.023148,145.428116,144.469437,143.932236,144.709091,147.833069,150.642975,162.543808,181.114059,197.428101,211.155380,223.692566,226.535538,215.593399,191.857864,169.444641,159.353729,154.576859,148.981827,119.709106,99.667793,113.403320,119.808281,86.403320,41.171925,17.381838,13.543820,8.485137,10.833901,13.225637,13.039686,6.869431,1.257854,0.192563,0.050413,0.080166,0.128926,0.000000,0.149587,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.755000,4612345.550000,3978,5205,118.360344,168.459518,173.996689,164.633072,150.393402,143.302490,143.690918,142.566956,144.004974,145.922333,149.757034,161.781830,179.971893,196.459503,210.542145,222.178513,225.203308,215.054535,189.723969,168.195053,156.930588,153.203323,148.145462,117.996704,98.674393,113.120674,119.401665,85.616539,41.038033,17.043819,13.467788,8.292575,9.285969,10.955390,11.763651,5.816540,0.415704,0.188431,0.235538,0.009918,0.028926,0.000000,0.078513,0.290909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.555000,4612345.550000,3992,5205,116.399193,168.787628,173.134720,166.952911,152.647125,144.498367,144.225647,144.481842,145.101669,147.523163,151.564484,163.093414,181.275208,197.275223,212.167786,223.440521,226.704971,216.870270,190.143005,168.853745,158.969437,154.448776,149.390930,120.969444,101.043823,113.936386,119.506638,87.068619,42.118202,17.035555,13.581012,10.281007,10.076050,10.029769,9.570263,5.587611,0.707441,0.163637,0.103307,0.055373,0.038017,0.000000,0.061984,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.755000,4612345.550000,4013,5205,123.889267,164.451248,172.980179,165.930588,153.451233,144.839661,144.657852,143.426437,146.046280,147.467758,151.591736,163.591751,181.211578,197.847931,211.765289,223.938843,226.616531,217.484299,191.319000,169.368607,158.459503,154.517349,148.781815,120.244644,99.087616,113.938858,120.261169,87.211586,43.046303,16.788448,13.525639,9.530593,12.019853,11.879356,10.471917,6.433894,1.671077,0.278513,0.066116,0.013223,0.038017,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.155000,4612345.550000,4030,5205,119.373566,170.778534,173.976868,163.720673,152.406631,143.836395,143.100845,142.877716,143.530609,147.109116,149.753738,161.051270,179.563644,196.233078,210.786804,222.472748,224.869446,214.505814,188.919037,167.042984,156.381851,152.398376,147.381851,116.191742,98.307449,111.728935,118.200012,85.819847,41.464481,16.204977,13.398367,7.671913,9.520679,12.706630,12.028114,4.642984,0.989258,0.013224,0.150414,0.155372,0.014876,0.000000,0.058679,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.755000,4612345.550000,4053,5205,117.216545,171.563660,176.571930,165.712418,154.191742,145.695892,143.654572,143.183502,144.803329,147.125641,150.819855,162.067795,179.200027,196.274399,210.241333,220.943817,223.538849,213.935547,188.547134,166.381851,156.555374,150.960358,146.654572,116.547119,98.728943,110.778519,116.200012,85.571922,43.067787,18.920681,13.332251,8.974393,8.954563,10.420676,10.248775,6.057860,1.066118,0.166116,0.086777,0.042149,0.005785,0.000000,0.076034,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601557.555000,4612345.550000,4077,5205,122.110764,166.598373,174.970261,164.441345,152.747131,144.457870,142.251266,141.557037,143.036377,145.532257,147.284317,159.705811,177.755386,193.044647,208.846298,220.581833,222.259521,211.681015,185.937210,163.342163,154.788452,149.945480,143.945480,114.871094,96.647957,109.986794,118.044647,84.342171,42.540516,16.266134,13.085970,9.023153,12.123158,10.509108,9.645469,6.084307,1.259507,0.317356,0.232232,0.021488,0.163637,0.000000,0.137191,0.142975,1.361984,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.355000,4612345.550000,4096,5205,115.731422,170.351257,172.971085,164.086792,151.194229,142.425629,142.086792,141.599182,140.012405,144.119858,146.326462,157.863647,176.326462,192.128113,206.293411,217.830597,220.500015,209.838852,185.417374,162.210754,151.582657,146.607452,141.772751,112.962830,94.111588,107.086792,114.582664,82.566139,39.714897,14.571093,12.888449,7.928938,8.216545,8.320676,8.846293,3.767775,0.325621,0.200000,0.070248,0.661158,0.004132,0.000000,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.955000,4612345.550000,4124,5205,112.182655,164.835556,171.587616,163.637207,149.926453,142.017365,141.843811,141.372742,141.942993,144.662003,147.058685,158.918198,175.976044,191.571091,206.926453,218.430588,220.066956,210.422333,185.422333,162.017365,152.488449,147.356216,141.736374,112.876862,94.653740,107.761169,114.976036,82.455383,40.538036,16.408283,12.885143,8.189270,8.183488,8.919851,9.870262,4.353726,0.822316,0.002479,0.141323,0.106612,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601571.355000,4612345.550000,4146,5205,125.323990,171.431412,175.348770,163.580170,153.067780,144.059509,143.109100,141.373566,142.158691,145.018188,148.398361,159.299179,177.563644,194.133896,207.340500,219.249603,221.795044,211.836380,187.216537,163.009933,151.315720,149.133896,143.290924,114.770271,95.018211,108.720688,116.241348,83.795067,41.795063,16.480185,13.026465,6.786788,10.219851,10.334726,10.155386,3.931414,0.957026,0.113223,0.085951,0.015703,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.155000,4612345.550000,4165,5205,117.397537,164.671906,171.052078,163.531418,149.638855,143.043808,142.043808,140.043808,141.969421,144.151245,147.010757,159.787613,176.308273,193.151260,207.399200,220.523163,221.440521,211.514893,187.572739,165.572739,154.076859,150.614059,143.936371,115.944641,96.895065,109.176056,117.035553,85.985970,42.055389,16.299192,13.085142,7.941336,9.084314,10.064480,10.435550,5.763646,1.087605,0.067769,0.166943,0.033058,0.172727,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.355000,4612345.550000,4191,5205,126.181000,172.858704,175.701675,166.181015,154.023987,145.569443,142.478531,142.304977,143.462006,147.222336,149.900024,160.577698,178.437210,195.767792,209.040512,220.503326,222.982666,214.726471,187.957870,166.015717,154.767792,150.329773,145.536377,116.577698,97.461998,109.693398,116.404144,85.668610,42.685139,18.338034,13.230597,8.957865,11.221505,12.631422,11.863650,7.090093,0.883473,0.344629,0.011571,0.000000,0.077686,0.000000,0.073554,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.955000,4612345.550000,4204,5205,115.517380,166.153717,172.302490,164.897522,152.442993,143.360336,142.550430,141.302490,143.021500,145.988449,148.790100,160.310745,178.385117,193.476028,209.038010,220.161987,224.343796,212.401657,186.591736,164.360321,152.707458,150.062820,143.236374,114.690926,94.732254,109.666130,116.393410,84.418205,40.897541,16.021505,13.021507,7.442161,8.967785,10.438033,9.597535,3.271080,0.514051,0.053719,0.148761,0.005785,0.168596,0.000000,0.085951,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.555000,4612345.550000,4227,5205,129.753738,171.695877,172.249603,163.737198,152.381821,143.976868,141.323975,140.439682,142.092575,144.993393,148.216537,159.662827,176.745468,193.861160,208.439682,219.249603,221.158691,212.456207,186.332245,162.712402,152.761993,148.795044,143.654556,113.811577,94.828110,108.216545,115.522339,83.654564,42.067787,16.892578,13.059523,6.581002,9.487619,10.277700,10.498362,3.602486,0.893390,0.195042,0.277687,0.291736,0.053720,0.000000,0.000000,0.341323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.755000,4612345.550000,4243,5205,129.631424,173.193405,175.143814,168.317368,154.986801,145.003326,143.697540,143.581833,143.342163,146.424820,149.838043,161.127289,178.119034,195.209930,210.110748,222.457855,224.143799,213.523972,188.044647,165.573578,154.292587,149.912415,144.945480,115.606628,96.681007,108.788452,118.102501,87.722336,42.581841,17.317375,13.176878,8.903319,11.064481,10.463654,10.890098,7.085960,1.265292,0.126447,0.290083,0.005785,0.030579,0.000000,0.023967,0.000000,0.000000,1.303306,0.000000,0.000000,1.362810,0.000000 -601600.755000,4612345.550000,4293,5205,125.908279,172.379364,173.619034,164.949600,155.742996,144.346298,142.428940,142.379364,142.974396,145.974396,148.387619,160.057037,177.685150,193.850433,209.420685,221.387619,222.949600,213.387619,187.519852,164.528122,152.511597,148.809113,144.172745,115.073563,94.883484,109.230591,116.288445,86.776054,42.660351,17.655390,13.106631,7.258690,10.009935,8.859522,9.174393,5.201662,1.271903,0.287604,0.000827,0.031406,0.033885,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.555000,4612345.550000,4322,5205,132.502487,173.965302,172.014877,165.295868,153.238037,142.973572,142.684326,141.618210,141.419861,145.923996,146.866135,158.279343,175.758682,192.221497,205.998352,218.436371,220.031418,210.056198,185.882645,162.824799,151.676056,146.370270,141.709106,113.171913,94.560349,107.031418,115.568611,85.196709,39.238041,17.197540,12.882666,5.626457,8.548777,9.269438,9.862823,3.762817,1.000003,0.587604,0.000000,0.006612,0.052893,0.000000,0.000000,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.955000,4612345.550000,4339,5205,131.776047,174.321503,174.081833,165.445480,153.503326,143.544647,142.255386,141.445480,142.114899,146.594238,146.833908,158.635559,176.974396,193.982666,206.800842,218.040512,220.966141,210.528122,185.891754,162.544647,151.387619,147.610764,142.445480,112.709938,93.379356,107.139687,116.685143,86.379356,41.866962,16.443819,12.949606,6.112407,10.711587,10.084313,10.685138,5.012406,0.295043,0.413224,0.147108,0.000000,0.032232,0.000000,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.755000,4612345.550000,4358,5205,131.223999,177.298370,174.347961,166.405807,152.372757,141.430603,140.430603,140.066971,138.728134,143.810776,145.438873,157.083496,173.504990,190.909927,204.761169,216.645462,218.496704,208.273560,182.414078,160.306625,148.943008,144.637222,139.372757,111.364487,91.620682,104.810768,114.033905,85.290100,42.628948,16.426464,12.670266,6.804970,9.879356,11.838033,11.361173,4.676043,1.147936,0.435538,0.304959,0.023141,0.004959,0.000000,0.118182,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.955000,4612345.550000,4379,5205,128.736374,178.215714,176.075226,167.000839,154.455383,142.471909,140.149597,140.612411,140.405792,144.298355,145.703323,156.058685,173.257034,192.571091,204.827286,216.752899,217.546295,209.298355,182.909927,159.794235,148.876877,144.182663,139.645462,110.091751,90.471924,103.273567,114.215714,85.372749,40.017376,16.131424,12.695061,7.090919,9.485140,9.323155,9.641336,4.783479,1.202482,0.580993,0.002480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.955000,4612345.550000,4394,5205,132.508286,179.549606,174.045471,166.219025,152.516541,142.731415,141.367783,140.119858,140.549606,145.896713,145.756210,155.962830,172.657043,190.342987,205.119858,216.731415,217.921509,207.789276,182.648773,159.334732,149.392578,144.285141,139.045471,110.119843,90.417374,104.557861,112.913231,86.417374,41.880184,17.600019,12.640515,6.426457,8.379357,9.403322,12.263651,4.216537,0.647109,0.218182,0.257852,0.014876,0.019835,0.000000,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.355000,4612345.550000,4411,5205,144.621490,184.960327,176.109085,169.348755,154.555359,141.910751,140.538849,140.960342,139.472733,144.753723,143.902496,155.323959,171.704132,188.778503,204.084290,214.894211,216.522308,206.423141,181.431396,156.985123,146.629745,141.885956,137.836380,108.646301,88.629768,103.481010,113.885971,84.026466,39.340515,16.662003,12.530598,7.095053,8.131422,8.680181,8.778527,3.274386,0.652894,0.691738,0.284298,0.089257,0.031405,0.000000,0.014050,0.090083,0.000000,0.000000,0.000000,0.000000,1.491736,0.000000 -601629.755000,4612345.550000,4438,5205,129.576889,175.593399,170.742157,161.188431,146.791748,134.039673,134.056198,131.709091,132.114059,132.428101,134.014877,144.411575,160.700836,175.651245,187.419846,198.485962,199.899185,188.188431,165.560333,144.899185,133.031418,131.114059,126.163643,98.485954,82.386780,94.857857,103.436371,75.667793,35.428123,14.801671,11.469440,7.811584,9.143815,8.542990,8.311584,3.996701,0.549589,0.204959,0.056199,0.000000,0.042975,0.000000,0.000000,0.000000,3.981819,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.755000,4612345.550000,4453,5205,127.323151,171.802490,167.852081,156.984314,143.025635,132.670258,131.794235,127.703316,128.769440,128.182663,130.438858,140.199188,156.463654,170.736374,182.719849,192.802490,193.381012,182.157867,159.075226,139.612411,129.265305,128.339676,121.100021,95.711586,80.091759,91.893402,99.562820,73.860352,33.372746,13.259521,11.009109,9.939684,8.422326,8.614061,8.312410,2.861164,0.665291,0.161984,0.301654,0.124794,0.000000,0.000000,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.155000,4612345.550000,4555,5205,124.641335,174.343796,168.649582,161.649582,145.145447,133.170258,133.707458,130.426453,129.500839,132.128937,130.542160,140.426437,155.955368,171.930573,182.905777,193.137192,193.517349,180.426437,158.525620,138.748779,129.335556,126.723976,121.418198,94.566956,79.773567,91.319023,98.186790,71.575218,34.285976,13.852084,11.038035,10.090925,8.680180,7.285964,8.856214,4.082651,0.647936,0.373555,0.070249,0.087604,0.000000,0.000000,0.115703,0.000000,0.000000,4.026446,0.000000,0.000000,0.000000,0.000000 -601655.755000,4612345.550000,4568,5205,113.754570,179.531433,175.184326,163.895050,147.994232,136.506638,135.490112,132.696716,132.225632,134.614059,133.142990,144.233902,158.886780,174.349609,186.019028,196.167786,196.423996,183.390930,160.333069,141.837219,132.547943,130.333069,124.209106,96.399193,81.068619,94.291756,100.721512,73.217377,37.035557,15.978531,11.291754,8.636380,10.294230,9.798361,8.545470,2.748770,1.032235,0.391737,0.042149,0.003306,0.109091,0.000000,0.133058,0.033884,0.000000,1.166942,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612345.550000,4586,5205,132.308273,175.630600,167.143005,157.514893,143.366135,133.804153,130.663651,129.936371,129.341339,130.729767,129.440506,140.076889,154.961182,170.547958,183.052094,192.895050,192.671906,180.746307,157.663666,138.514893,128.357864,126.242165,120.663651,93.481827,77.192566,89.870255,98.283478,70.944633,31.862005,13.570266,10.969440,7.600841,6.309102,6.950425,7.691751,3.103314,0.959507,0.155372,0.011571,0.046281,0.132232,0.000000,0.130579,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.555000,4612345.550000,4607,5205,121.903328,194.746292,179.027298,169.390930,152.903336,141.870270,141.250443,139.804153,139.275223,144.217377,143.754562,156.035553,173.490112,191.928101,205.233887,218.754547,221.242157,208.754547,184.556213,161.481842,151.101669,146.952911,143.845474,111.853737,94.010757,109.209106,116.985962,86.812408,42.804150,18.489273,13.076880,8.960346,9.490101,10.606627,11.272742,3.428933,1.151243,0.564465,0.209918,0.048761,0.023967,0.000000,0.171901,0.028099,4.223141,0.000000,0.000000,0.000000,0.000000,4.544628 -601667.355000,4612345.550000,4626,5205,132.814896,180.509109,177.269440,168.038025,150.616547,139.649597,140.310760,139.715714,138.980179,144.418198,145.277695,156.269440,174.476044,194.170258,207.533890,221.401672,224.600006,213.112411,188.153732,164.335556,155.104141,149.765305,144.872742,113.947113,96.591743,109.682648,118.980171,87.451256,42.814896,14.530598,13.170267,7.892573,9.883488,9.757042,13.761173,4.524801,0.968598,0.288431,0.071901,0.010744,0.047934,0.000000,0.316530,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.155000,4612345.550000,4650,5205,109.444649,182.923981,176.047943,166.105789,152.800003,138.824814,139.750443,137.742172,137.643005,143.560349,145.196701,156.411575,173.816528,193.502487,207.585129,219.857864,221.965302,212.130585,187.064468,164.304138,152.766953,148.874390,144.709091,115.138855,94.411591,108.899193,120.717369,89.419861,43.056217,17.485970,13.155391,8.952080,9.494232,10.225633,11.293403,5.515711,1.269425,0.419836,0.247934,0.066116,0.000000,0.019008,0.329753,0.277686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.555000,4612345.550000,4687,5205,125.343002,172.210754,174.987625,163.962830,148.706635,138.929764,138.285141,136.698364,137.466965,141.557861,142.896713,154.376053,173.533081,190.805801,205.095047,217.582642,221.194214,209.863632,183.433899,162.466965,151.781006,147.020676,142.772751,111.871918,93.235550,109.293404,118.326462,87.590927,41.194237,15.833901,12.979358,7.751253,10.764480,11.256213,11.862000,4.575214,1.706615,0.333885,0.142976,0.444629,0.028099,0.011570,0.520663,0.084298,1.636364,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.155000,4612345.550000,4740,5205,105.802490,173.562820,174.942993,162.538025,149.050430,138.100006,137.042160,135.876892,136.909927,139.918198,142.199188,153.992569,171.992569,189.942993,204.199188,217.025635,220.885132,208.967789,183.653732,160.852081,148.628937,146.471909,142.009109,111.223976,93.290092,107.083481,118.381004,86.447121,44.893414,16.836382,12.909936,8.290923,10.780184,11.044643,12.952083,6.626456,1.403309,0.395869,0.269422,0.186778,0.149587,0.000000,0.445455,0.282645,0.000000,0.000000,0.000000,0.000000,1.372727,0.000000 -601706.755000,4612345.550000,4823,5205,107.626472,171.998367,174.494232,164.419846,149.775223,140.039673,139.510757,137.775208,137.403305,141.601654,143.940506,155.204987,173.692581,191.196701,206.072739,218.510757,221.428101,209.833069,184.188446,162.105789,149.882660,147.923981,143.072739,114.411583,93.568611,110.105797,117.626457,87.477699,44.196712,18.197538,13.006631,8.115717,11.204151,11.069439,12.356215,5.631413,0.842977,0.453720,0.006612,0.042976,0.004959,0.000000,0.069422,0.521488,0.000000,1.278512,0.000000,0.000000,0.000000,0.000000 -601733.555000,4612345.550000,4957,5205,103.121498,168.113235,173.617371,160.361160,145.964478,136.179352,136.741333,133.559509,134.956207,137.427277,139.129761,151.997528,169.989273,187.898361,202.419022,213.741333,217.171082,204.617371,180.542984,157.931412,146.328110,143.906616,139.245468,108.311577,89.691742,106.344635,116.509926,83.890091,41.708286,17.438860,12.658696,8.875222,9.887620,10.359518,9.644640,6.585135,0.807440,0.245455,0.118182,0.138018,0.000000,0.000000,0.413225,0.463638,0.000000,0.000000,2.366942,0.000000,0.000000,0.000000 -601770.155000,4612345.550000,5140,5205,113.621506,169.059525,174.241333,161.902496,145.613235,136.257858,136.704147,134.125626,135.381821,137.687607,139.695877,152.861176,171.158691,188.142151,202.761993,214.059509,218.175217,205.737198,181.761993,157.811584,146.704163,144.266144,138.109100,108.580177,90.216537,104.852905,117.042984,83.819847,43.018200,15.122331,12.555389,8.460343,8.752082,10.624808,10.885138,6.161994,0.438844,0.152067,0.256199,0.000000,0.109918,0.000000,0.149587,0.091736,6.023141,0.000000,0.000000,0.000000,0.000000,0.000000 -601789.955000,4612345.550000,5239,5205,120.819847,175.795868,179.531418,166.523148,148.630585,138.217361,138.176041,135.919861,136.721497,138.382645,140.762817,153.903305,172.985962,189.771103,203.771088,216.109924,218.506622,205.961166,182.060333,158.448761,147.448761,143.977692,139.845459,109.349602,90.771080,105.457039,117.605789,85.233894,42.019028,15.285968,12.713242,7.864476,9.820677,11.338033,10.908278,6.623150,0.678515,0.458679,0.790911,0.102481,0.123141,0.000000,0.042976,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601799.355000,4612345.550000,5286,5205,111.141342,179.728119,180.124802,166.042160,149.273560,138.422333,138.430588,135.728119,136.232239,138.496704,140.579346,153.455383,172.232239,189.025635,203.587616,216.752899,217.620667,205.876877,180.422333,157.604141,146.728119,143.744644,138.463654,107.306618,89.009102,104.604134,117.199181,84.703316,41.455395,16.477705,12.587623,11.382661,11.307456,11.660346,11.198363,5.409100,1.101656,0.226447,0.114050,0.000000,0.061984,0.000000,0.070248,0.338844,1.507438,0.000000,0.000000,0.000000,0.000000,0.000000 -601801.955000,4612345.550000,5299,5205,116.941345,174.980179,173.704147,162.067780,144.340515,135.985138,136.927277,133.885956,133.943817,135.952072,138.282654,151.348770,170.009933,187.638016,201.786774,213.803299,215.877686,203.894211,179.481003,158.216537,147.927277,145.315720,141.290924,109.960342,92.018188,107.390091,118.621498,85.315712,43.307461,17.947952,12.844646,11.776875,9.418197,10.361171,13.627288,7.158686,1.623970,0.420662,0.634712,0.217356,0.185952,0.030579,0.168596,1.175208,0.000000,0.000000,0.000000,2.613223,0.000000,0.000000 -601806.355000,4612345.550000,5321,5205,100.924805,182.895889,182.590103,166.838043,150.143814,135.433075,137.366959,134.804977,133.937195,137.119034,138.738861,151.201675,169.747131,187.218201,201.829773,213.507462,214.689270,202.532257,177.366959,154.499191,143.424820,142.350433,136.400024,104.598358,87.085960,101.631416,115.490921,81.581841,40.375225,15.305803,12.400020,10.430593,8.933074,8.210758,10.046296,6.171084,1.390085,0.616530,0.599174,0.361158,0.571075,0.263637,0.379340,0.407439,0.000000,3.121488,0.000000,0.000000,0.000000,0.000000 -601813.555000,4612345.550000,5357,5205,127.814056,191.815720,180.253723,165.336380,149.113235,136.914886,137.542984,136.096710,135.733063,138.774384,139.493393,152.840500,171.030594,188.807449,202.749603,214.757858,216.261993,203.146286,179.518188,156.443817,145.559509,142.509933,137.245468,105.823975,88.840508,103.295052,116.361160,85.055382,41.551262,17.747126,12.476878,12.942991,12.299191,10.704974,12.664477,6.605794,0.747109,0.755373,0.320662,0.061984,0.250414,0.000000,0.146282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601818.555000,4612345.550000,5382,5205,108.036385,183.623138,179.598343,166.342133,149.598343,137.515686,139.590073,135.912399,137.383453,139.837997,138.705795,152.656204,169.738831,189.325638,203.408279,214.829773,216.631424,202.672729,179.011566,157.317337,146.375214,143.796677,139.309082,106.747124,89.523987,103.499191,117.424805,85.788452,43.780186,17.245474,12.664483,11.989274,9.758696,10.242990,11.041339,5.693398,1.252895,0.095042,0.215703,0.135538,0.068595,0.000000,0.096695,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601823.955000,4612345.550000,5409,5205,125.166145,189.025635,178.058685,167.108276,152.066956,138.695068,140.124802,136.852097,136.538025,140.190918,138.976044,152.554565,170.670258,189.703323,203.033890,216.075226,216.918198,204.678528,179.562820,158.488449,146.017365,144.529770,138.645477,107.513245,89.240517,105.033905,117.157875,86.124817,43.025639,18.351257,12.604151,13.857869,10.705801,10.413239,13.139687,7.057861,0.898349,0.342150,0.203306,0.344629,0.079339,0.014050,0.265290,0.426447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.355000,4612345.550000,5426,5205,123.036377,188.131424,178.296707,166.090088,150.247116,138.503326,138.759521,135.709915,136.577682,140.643814,137.833908,151.784302,170.652069,189.462006,202.610764,215.676880,216.304977,203.462006,179.098373,157.238846,146.949585,143.693390,139.263641,107.164467,88.866943,105.784302,117.776039,86.065292,41.941341,18.315720,12.660349,11.133899,10.018199,13.647124,13.520677,5.560339,0.522315,0.350414,0.596696,0.066116,0.009918,0.090083,0.243803,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.955000,4612345.550000,5449,5205,118.844643,189.398346,180.481003,167.117371,152.166946,136.811584,138.266129,135.497528,136.505798,141.125626,139.076050,150.745468,169.786789,188.786774,201.728912,216.274368,215.753708,201.480988,178.530594,156.728943,145.241333,142.877701,137.836380,105.580185,89.464478,105.034729,116.563644,84.290924,42.654568,17.318199,12.530599,14.512414,10.071918,11.606627,11.915718,6.850423,1.349589,0.157025,0.549587,0.449587,0.002479,0.000000,0.351241,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.355000,4612345.550000,5476,5205,139.888428,195.516541,181.301666,167.260330,150.921494,137.863632,139.061981,136.417374,136.376038,141.723145,139.177689,151.632233,170.078506,189.425629,202.929764,216.293411,215.607452,200.425629,178.673569,155.384293,144.665283,143.309921,137.409088,105.855377,89.028938,106.822319,117.235542,86.243820,41.888454,17.278530,12.491755,14.596711,10.554562,12.012414,12.351255,6.369431,0.874382,0.523142,0.497521,0.148760,0.053720,0.000000,0.304134,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601845.155000,4612345.550000,5515,5205,132.372742,199.951248,180.438873,168.852097,149.405807,134.455383,135.587616,133.703323,135.769440,140.843826,136.678543,149.909943,167.066971,186.438873,202.240524,213.885132,214.546295,197.909943,176.967804,155.389282,142.182678,140.885147,137.009125,102.595879,86.620674,104.868607,116.157867,81.678528,41.455387,16.411587,12.455391,13.042990,8.868611,8.582658,10.789270,8.076044,1.214878,0.633885,0.539670,0.590910,0.619835,0.314877,0.161158,0.332232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601857.555000,4612345.550000,5577,5205,97.024811,166.115723,174.851257,160.008286,144.785141,133.644638,134.000015,131.016541,131.330597,132.586792,134.892578,146.495880,165.000015,181.256210,195.380188,207.314072,207.512405,195.256210,173.082657,151.694229,140.289276,138.363647,131.454559,101.884315,85.000015,98.942162,113.983490,83.380180,41.438042,14.778530,11.950433,7.812410,9.939687,8.590099,10.218197,3.817362,1.047109,0.219835,0.057851,0.119009,0.091736,0.000000,0.354547,0.380166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.555000,4612345.550000,5647,5205,105.291748,165.452087,175.005814,159.138046,144.766144,136.385956,133.435547,131.716537,131.542984,132.848770,134.898361,145.063660,165.237213,181.890106,195.014069,206.311600,208.096725,196.600845,173.989288,151.576065,141.096725,136.683502,132.063644,101.617371,84.187622,101.121506,114.071922,82.832253,40.981010,15.678530,12.005804,7.882659,9.676049,9.126463,11.327288,5.465298,0.680993,0.137190,0.000000,0.000000,0.000000,0.000000,0.149587,0.233059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.755000,4612345.550000,5688,5205,94.842995,167.752075,174.355377,158.512405,143.181839,133.471085,132.727280,130.735550,129.950424,131.231415,134.074387,145.578506,164.396713,181.115707,194.115707,206.413223,206.338837,196.231400,173.512390,151.330597,139.487610,136.991730,130.909103,101.115707,83.834724,99.991753,112.396706,83.140518,39.975231,16.485144,11.900846,8.232244,9.246299,11.243821,10.096709,4.514884,0.347935,0.095868,0.000000,0.010744,0.085124,0.000000,0.028099,0.280992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601888.955000,4612345.550000,5734,5205,97.600845,165.022324,168.592575,156.881821,142.708267,132.542999,131.369431,128.253723,128.997543,130.923157,132.113235,144.220673,162.435547,178.485138,192.997528,204.270264,205.584305,194.542984,171.989273,149.733063,139.443817,135.460342,129.700012,99.625633,83.080185,99.857033,111.997528,81.419022,39.377705,14.469440,11.790928,7.116544,7.770263,8.067783,8.750426,4.780174,0.500828,0.000000,0.240497,0.000000,0.093389,0.000000,0.056199,0.023967,0.000000,0.000000,0.000000,1.184298,0.000000,2.091736 -601899.755000,4612345.550000,5788,5205,106.533897,168.062820,171.575226,158.806625,144.740524,135.484314,133.831421,131.178528,130.649597,133.228119,134.707458,146.872757,164.897537,180.847946,194.550430,207.484314,208.575226,197.723984,174.591751,152.211594,141.079346,138.170258,131.236374,102.161995,83.889267,100.732246,114.699188,84.922325,41.831417,16.292580,11.930597,8.365301,8.749604,10.453735,9.612410,3.938024,0.972729,0.307439,0.208265,0.010744,0.000000,0.000000,0.204959,0.576860,0.000000,0.000000,1.800000,0.000000,0.000000,0.000000 -601912.755000,4612345.550000,5853,5205,101.575218,167.566956,171.104156,159.583481,142.732239,133.566956,132.376877,128.624802,129.095886,131.707458,133.823151,145.831421,163.947113,179.980179,193.790100,205.112396,207.343811,197.219849,174.996704,151.947113,141.285965,137.211578,131.054565,102.285973,84.757050,99.095886,114.996712,85.128944,40.624809,15.906631,11.914068,6.894231,8.552909,7.589271,8.766955,4.922322,0.452068,0.159505,0.066116,0.002479,0.204959,0.032232,0.460332,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.155000,4612345.550000,5890,5205,120.778542,170.481003,169.406616,155.877701,142.885956,132.679367,131.712418,127.943825,128.588455,131.390106,132.613251,144.398361,162.894226,179.894226,192.489273,205.067780,207.282654,197.431412,174.538849,151.745468,140.315720,136.092590,131.109116,100.555397,83.629768,99.621513,115.224823,84.638031,41.323986,15.495060,11.919027,6.719847,8.462001,7.872743,10.334724,3.976040,0.502481,0.162811,0.434712,0.018182,0.000000,0.158678,0.012397,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.155000,4612345.550000,5930,5205,121.018188,168.183487,168.952072,157.745468,143.191742,132.497528,131.712402,128.613235,128.323975,131.712402,132.249603,144.555374,161.489273,178.489273,192.646286,204.985138,207.290924,195.241333,172.976868,151.299179,139.514053,136.018188,130.836380,100.737198,82.315712,99.985130,116.100838,87.018188,42.224815,16.302496,11.894234,6.176872,9.833075,11.304150,9.569436,4.882654,0.495043,0.470249,0.092562,0.136364,0.141323,0.000000,0.161984,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.555000,4612345.550000,5967,5205,107.894241,173.191742,173.009933,160.084305,145.737198,133.117371,132.051254,130.695892,129.737213,133.125641,133.381836,145.596710,163.109100,181.497528,194.414886,206.943817,207.596710,197.547119,176.323975,152.869431,140.547134,137.076065,132.654556,102.960358,84.472755,101.109116,115.332253,85.555397,41.952084,15.919852,12.059522,8.009104,9.804974,10.294230,10.879355,4.792569,0.569423,0.102480,0.260331,0.007438,0.027273,0.000000,0.298348,0.368596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601945.955000,4612345.550000,6019,5205,108.909096,174.710754,171.619873,160.272751,145.735550,132.471085,131.603317,130.561996,129.545456,134.214890,132.702484,144.710754,163.330597,180.628113,195.198364,207.198364,208.000015,197.917374,173.338852,153.537186,141.504150,137.834732,131.090912,101.264473,83.884315,100.933891,114.214882,85.024811,42.338860,16.714893,11.917374,7.541336,9.331422,9.327290,9.833073,3.863643,0.223141,0.008265,0.256199,0.004959,0.082645,0.000000,0.408265,0.000000,0.000000,0.000000,0.000000,2.621488,0.000000,0.000000 -601955.355000,4612345.550000,6066,5205,96.028122,169.024811,171.429749,157.925629,141.281006,130.281006,130.057861,127.702492,126.123978,127.834717,129.057861,141.487625,160.008286,176.256195,188.619827,199.776855,202.297516,190.561981,167.900848,145.826462,135.652908,132.090927,126.818199,97.446297,81.206627,96.966957,109.107445,80.206627,38.611591,15.330595,11.528945,9.165301,9.342164,10.436378,10.638858,4.621496,0.817358,0.258678,0.129752,0.129752,0.000000,0.000000,0.461985,0.448761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.755000,4612345.550000,6103,5205,100.181023,161.552902,168.015701,159.288437,144.850433,133.742996,132.172760,129.635559,127.660355,129.734741,130.519867,140.866959,156.569427,174.718185,184.800827,197.238846,198.767776,185.833893,162.660339,143.652084,132.065323,130.048782,123.900024,97.511597,81.949615,95.776062,106.304985,76.718201,36.643822,13.875225,11.263655,8.896707,10.656215,8.806626,10.913239,3.009924,0.819837,0.393390,0.263637,0.000000,0.000000,0.000000,0.000000,0.435538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601967.755000,4612345.550000,6128,5205,101.575226,162.649597,169.004974,157.409927,143.004974,131.930603,131.021515,128.583496,126.790100,129.079361,129.137207,140.153732,156.236374,172.277695,184.823151,194.996704,196.319016,183.319016,162.087616,141.319016,131.608292,129.492584,122.872749,96.137215,79.013245,94.434731,105.690933,76.798370,35.856220,15.921506,11.170267,9.184310,10.133075,9.139684,9.616544,3.831412,0.944631,0.280993,0.561158,0.218182,0.065289,0.000000,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.755000,4612345.550000,6158,5205,101.303329,171.071930,168.146301,158.542999,143.865295,132.096725,130.377716,126.807465,125.964485,128.452087,128.956223,139.890091,155.204147,171.270279,183.435547,195.146286,195.881821,181.857040,160.228943,139.683487,130.865311,127.419037,122.063660,94.865318,77.757874,91.187630,100.419029,74.501678,36.658699,12.845470,11.096713,7.453732,8.106626,7.543815,6.781829,2.219841,0.356200,0.137191,0.056199,0.035537,0.000000,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601977.155000,4612345.550000,6175,5205,99.208282,169.960358,164.489288,160.885971,145.175232,133.646301,131.836380,128.522339,127.257866,128.968613,128.745468,140.257874,156.662842,173.257874,185.737198,196.323975,196.869431,183.786804,162.514069,141.687622,131.431427,128.687622,123.290924,96.224808,78.861176,93.051254,104.976875,74.960350,35.059521,15.924812,11.208284,8.400841,9.964478,8.494229,7.886790,4.672736,0.618184,0.216530,0.063637,0.032232,0.074380,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601981.355000,4612345.550000,6196,5205,97.380180,170.388443,166.586792,158.222336,143.304977,131.693420,129.833908,126.437210,126.172745,128.139694,126.784325,138.726471,155.040512,171.486801,184.718201,197.321503,197.908279,184.577698,164.090103,144.437210,134.519867,132.304977,125.990936,97.759521,80.726463,95.842171,108.181007,79.205811,37.809109,16.865307,11.453738,9.570261,9.285965,8.225635,8.652906,4.070255,0.563639,0.138018,0.180992,0.000000,0.000000,0.004959,0.167769,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601984.355000,4612345.550000,6211,5205,103.036392,169.829758,168.383484,157.780182,143.251282,131.953735,130.962006,128.251266,127.044655,128.548782,128.209930,140.028122,156.763657,173.689255,184.846283,197.705795,197.408264,185.862808,163.581833,144.061172,132.416550,130.499191,124.490936,95.317375,79.598373,94.457870,106.714081,79.019859,36.499195,15.763655,11.317375,13.153733,8.366956,8.703318,9.047946,2.436369,0.314052,1.043804,0.122314,0.058678,0.000000,0.000000,0.176033,0.856199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.555000,4612345.550000,6232,5205,111.668617,180.081818,171.238846,160.809113,144.643814,133.792572,131.999191,130.338028,129.519852,132.147949,130.933075,142.974396,159.643814,176.577682,188.445465,200.891739,201.090088,187.346283,166.569427,145.875229,134.858688,132.065308,126.809105,97.916542,82.296707,96.296707,106.652077,79.585960,39.957870,16.771919,11.528118,10.387616,9.633899,10.326461,10.173568,3.185957,0.664465,0.267771,0.358678,0.020661,0.010744,0.318182,0.366943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.955000,4612345.550000,6254,5205,117.871933,173.789276,170.425629,161.260345,146.657043,135.004150,133.433899,131.417374,130.938034,133.797531,132.004150,144.772751,160.830597,177.185974,190.177704,204.458694,203.888443,189.458694,167.004150,148.012405,137.351257,134.871918,128.863647,101.004150,83.855385,98.301666,109.566132,79.384315,38.632252,16.604151,11.714895,12.302494,10.499190,10.606626,11.027287,5.084306,1.043805,0.438844,0.279339,0.061984,0.000000,0.094215,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.555000,4612345.550000,6282,5205,114.881012,176.021500,170.583481,162.847946,145.723984,133.823166,133.591751,130.368622,129.963654,134.128952,131.905807,144.228119,159.517365,177.162003,190.467789,203.674393,203.360336,189.442993,168.542160,148.038025,136.616547,133.153748,128.963654,99.558701,83.128944,98.368614,108.996712,79.352089,35.690929,14.482662,11.723986,12.419849,8.082660,11.154561,10.254560,4.795051,0.764465,0.190084,0.186777,0.000000,0.000000,0.000000,0.248761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602001.755000,4612345.550000,6298,5205,112.157043,176.107452,171.752075,163.950424,147.669434,135.454559,133.165298,130.628128,129.991760,134.611588,132.107468,143.685974,159.991745,178.107437,190.669418,204.652893,203.892563,189.165283,168.925629,149.363647,138.793411,134.256210,129.181839,100.057877,84.148781,99.719032,109.562004,79.148781,38.884323,15.977704,11.743820,11.345469,10.598362,11.752082,11.157039,4.224801,1.171077,0.228101,0.208265,0.449588,0.006612,0.240496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602004.555000,4612345.550000,6312,5205,120.399193,181.242172,172.804153,162.853745,145.828949,135.068619,134.556213,130.738037,130.985977,135.523163,132.523163,144.060349,159.746307,178.407455,191.638870,205.159531,204.952911,190.779358,168.928116,148.614075,137.961182,134.911591,129.209106,99.985970,83.490105,100.771095,110.142998,78.333084,36.845474,14.483489,11.746301,11.498362,8.921502,8.905800,11.558691,5.118191,0.836366,0.276034,0.204133,0.170248,0.000000,0.241323,0.271075,0.219008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602013.555000,4612345.550000,6357,5205,111.573563,179.689270,170.995056,162.242996,145.573578,135.019852,132.986801,131.259521,129.085968,135.953735,130.879364,143.102493,158.970261,176.466141,191.466141,203.887604,203.433075,188.771927,169.094238,148.912415,138.094238,135.011597,129.218201,100.548782,84.259521,100.986794,109.705795,79.028122,36.904152,15.304976,11.747126,11.888444,8.920675,10.365304,9.785963,4.652074,0.580167,0.391737,0.201654,0.347935,0.215703,0.101653,0.074380,0.298347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.555000,4612345.550000,6372,5205,121.417374,172.830597,173.111588,163.723160,146.764481,133.235550,131.971085,129.095062,130.210754,135.871918,130.037201,142.152908,157.144638,175.061996,189.830597,202.557861,202.202499,187.202499,166.417374,146.194229,137.037201,134.566132,128.681839,97.929771,82.995880,100.962830,108.938034,76.442162,36.913242,14.574397,11.698366,13.867785,8.621501,9.972741,11.406626,4.646292,1.147111,0.582646,0.264463,0.000000,0.191736,0.100827,0.432232,0.325620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.555000,4612345.550000,6397,5205,103.890099,156.138046,157.981018,148.658707,134.460342,124.890091,122.352905,120.650421,119.675217,122.774391,123.972740,135.055374,152.774399,169.658707,183.129776,196.658707,197.253738,187.402512,164.485153,142.493408,132.733063,127.947945,121.427284,94.592583,77.179352,94.014069,108.757866,80.270264,37.551258,16.362001,11.038861,6.017365,9.196708,10.200016,8.592576,3.771084,1.301656,0.114050,0.235537,0.041322,0.105785,0.000000,0.109918,0.159504,0.000000,0.000000,0.000000,0.000000,1.797521,0.000000 -602028.555000,4612345.550000,6432,5205,117.127289,151.300842,155.540512,145.697540,132.209930,121.143814,119.804970,116.738853,115.829765,119.201668,120.540504,131.813248,149.375229,166.846298,179.457870,191.400024,192.614899,183.317368,160.143814,138.780182,128.085968,124.218193,117.945465,90.292580,74.135559,89.862831,106.061165,80.730598,37.168613,15.858695,10.722332,6.632243,11.168609,8.905798,9.759518,4.639678,0.557028,0.387605,0.419836,0.039670,0.000000,0.000000,0.564464,0.352893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602039.555000,4612345.550000,6487,5205,94.419868,150.965317,152.105804,142.601669,128.188446,118.568619,114.568619,112.535561,113.023163,113.833084,115.676056,126.320679,143.940521,160.849609,173.676041,185.890915,187.304138,177.196701,154.485977,132.519028,122.890930,118.700851,113.254570,85.618202,69.395065,86.973579,101.395065,76.395065,34.254562,13.676877,10.295886,4.693400,8.559516,8.414063,7.553733,4.086784,0.639672,0.160331,0.360331,0.000000,0.161158,0.000000,0.241323,0.358678,2.188430,0.000000,0.000000,0.000000,0.000000,0.000000 -602050.955000,4612345.550000,6544,5205,98.010757,141.895050,143.192581,133.266953,119.779343,109.465294,106.266945,102.109932,101.886780,102.837196,104.225624,114.696701,132.721497,149.374390,160.944641,171.465302,173.671906,163.134720,141.952911,121.795876,110.696701,107.101662,101.845467,74.283485,59.142990,77.862000,95.696709,71.804146,34.104149,10.745471,9.258697,7.954556,9.426459,8.584311,10.267784,6.129763,1.130581,0.360332,0.476861,0.036364,0.251240,0.000000,0.047935,0.198348,0.000000,0.000000,3.583471,1.409917,0.000000,5.715703 -602278.955000,4612345.550000,7684,5205,1.489257,0.712398,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,7.377694,7.938853,0.698349,0.000000,12.300838,13.904144,32.786793,51.973572,46.000015,10.300836,2.163639,1.333886,0.294216,0.379340,0.000000,0.000000,0.041322,0.000000,1.564463,0.000000,0.000000,0.000000,0.342975 -602281.755000,4612345.550000,7698,5205,34.122322,42.727287,36.413235,26.209099,17.732239,12.954553,12.783479,11.421494,11.204139,10.709097,11.122320,14.476866,19.600006,25.611580,31.328110,37.324802,38.919846,37.652901,36.490093,31.423975,28.074390,28.343811,27.427280,17.484304,10.614056,19.637197,54.564476,73.752914,43.409931,4.137198,2.493398,13.762825,16.585968,34.513245,56.868614,46.501671,2.644632,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.768595,1.332232,0.502480,0.000000,0.000000,0.000000 -602285.555000,4612345.550000,7717,5205,96.544640,133.515717,126.656212,111.366951,97.052902,85.267776,87.647942,87.284309,88.416542,93.309105,95.135551,110.358688,129.895874,148.375229,160.747131,173.110764,177.284317,171.664490,159.821503,146.499191,139.490921,137.523987,134.763641,107.127281,85.970261,109.400009,144.143814,125.259514,65.441338,16.035555,12.251259,16.374399,17.921505,25.638863,39.292580,30.928947,0.667771,0.447108,0.200827,0.018182,0.000000,0.000000,0.000000,0.127273,2.093389,3.357852,2.432232,3.466943,0.674380,5.417356 -602291.155000,4612345.550000,7745,5205,53.903316,82.917381,70.601677,56.601673,41.797535,33.403320,32.814888,30.490921,30.681829,31.709105,31.860344,41.342991,55.771088,68.985138,79.456223,89.669441,92.417374,90.351257,84.632256,74.658699,65.184311,66.338852,64.300018,42.208282,27.593401,45.817375,98.428123,106.965309,62.568615,9.822329,5.845473,14.116544,19.198362,34.617374,52.436382,41.362823,2.492567,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.355372,0.890083,0.000000,5.371076,0.960331,0.985124 -602314.555000,4612345.550000,7862,5205,42.029766,71.886795,73.903320,59.407459,44.440517,36.862007,39.275230,38.333080,38.903328,42.291759,47.200848,61.200844,83.076874,101.440514,115.423981,130.027283,134.919846,132.374390,123.754562,112.192574,102.407455,104.432243,103.481834,76.688446,52.291759,80.539680,140.118195,140.101654,80.465302,13.804150,9.407457,14.951258,23.644646,42.109940,61.721512,50.174400,2.637195,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.380992,1.063637,0.447108,0.238843,0.324794,1.290909 -602319.955000,4612345.550000,7889,5205,106.768608,139.485962,136.204971,123.659515,111.560349,106.758690,110.535553,114.171913,118.072739,124.576874,134.229767,155.849594,184.990082,211.361984,232.444641,252.279343,260.353729,256.593384,237.940506,218.370255,209.180176,206.915710,205.345459,166.320663,135.370270,162.800003,200.568604,162.023148,81.824814,22.190928,18.667789,19.741341,22.089275,32.835556,42.642998,32.018200,2.396700,0.293390,0.228100,0.000000,0.000000,0.000000,0.000000,0.192562,4.676860,2.166942,1.884298,1.309918,3.610744,0.000000 -602327.355000,4612345.550000,7926,5205,5.157030,1.954549,0.652068,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.044628,0.994217,4.177694,5.091744,4.156205,2.043807,0.585952,0.134711,0.120662,0.363638,0.000000,0.000000,0.000000,44.204151,76.043808,47.911591,3.847116,0.033059,7.233895,16.209934,40.093407,60.498367,52.407455,3.126452,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.461984 -602335.555000,4612345.550000,7967,5205,17.009098,20.123983,15.409107,4.519844,0.671077,0.015703,0.004132,0.000000,0.000000,0.000000,0.007438,0.138844,1.519838,6.738854,14.370264,22.319853,24.964483,23.391754,20.404152,11.747123,6.937201,8.019847,9.818194,1.902483,0.141322,4.234717,61.030598,82.419022,50.890106,4.848769,0.892574,8.822326,18.574398,38.022335,60.328117,49.179359,3.955378,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.467769,0.547108,0.000000,0.000000,0.000000,3.871075 -602338.555000,4612345.550000,7982,5205,27.895052,45.719852,47.262005,30.185143,17.865303,10.594226,10.566954,9.974392,9.695877,10.280176,11.361994,20.066132,35.485146,49.782665,61.129772,71.212418,73.121506,71.584312,66.625641,56.749607,50.220684,52.567791,57.063660,36.927292,19.652081,45.567791,101.328110,108.055389,63.014072,6.658690,5.187623,9.261170,18.830597,36.129772,59.121510,49.237213,3.686781,0.000000,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,1.640497,1.117356,0.528926,0.267769,0.151240,0.000000 -602343.355000,4612345.550000,8006,5205,121.012413,142.536377,140.652084,126.338028,110.296715,100.891754,99.536385,98.205803,98.338036,100.825638,102.643822,115.313232,135.214066,152.048782,164.751266,175.536377,176.247131,170.792587,154.668610,138.230591,129.123154,129.197525,128.172745,101.156219,78.230591,102.734734,131.825638,108.685143,52.462002,12.555388,11.652085,8.709105,11.642991,17.040514,23.473572,14.325635,1.529755,0.305787,0.410745,0.082645,0.210744,0.000000,0.102480,0.528099,2.493388,5.729753,6.549588,0.795041,2.920662,5.502480 -602351.155000,4612345.550000,8045,5205,101.048782,129.684311,120.717369,105.238029,89.287621,80.519020,79.849602,79.345467,79.667786,81.783485,84.171913,96.320679,116.056213,134.056213,148.428116,158.056198,158.370255,152.089264,137.998352,122.254562,113.775223,115.064476,119.981834,93.444633,69.444649,95.618195,150.899200,137.766953,74.940514,14.818199,10.907456,12.688445,16.762001,30.666964,43.947128,33.762005,1.765294,0.206612,0.000000,0.000827,0.149587,0.000000,0.300000,0.395868,12.333059,4.408265,6.851241,4.979341,2.353719,5.201653 -602362.755000,4612345.550000,8103,5205,142.830597,157.109924,144.845459,127.704971,114.225632,105.217369,104.895058,102.961174,104.473572,107.142990,109.283485,121.390923,139.068604,154.787613,168.895050,181.936371,187.167770,183.366119,168.341324,151.580994,143.713226,141.787613,141.300003,112.498360,91.614067,112.531418,141.043808,113.043816,55.151257,15.652911,12.845474,14.457042,13.453737,19.798365,27.381838,20.757868,3.282651,1.533888,1.276862,0.819836,0.590083,0.075207,0.904960,0.833058,17.910746,25.735538,14.152895,9.700828,11.657027,11.426447 -600965.155000,4612335.550000,1115,5255,77.654556,87.267769,59.581837,45.986801,30.397537,18.643818,15.099187,10.589268,8.307448,8.131415,6.672737,12.672740,24.881008,37.704147,51.565311,66.909111,70.958694,66.457870,65.110764,54.110764,41.740513,41.772747,34.200016,6.693397,0.703308,12.823978,82.342155,96.780167,54.953739,7.254558,3.109108,17.715719,12.009933,25.214069,43.128948,33.867790,1.316531,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.920663,1.414050,0.370249,0.385951,0.948761,2.525620 -600968.155000,4612335.550000,1130,5255,91.923164,95.525635,71.277710,59.897537,45.104149,32.566959,31.360350,25.766134,22.738035,25.584314,22.201672,35.682663,54.616547,73.748772,89.211586,107.558693,112.079353,110.426460,106.600014,96.616539,85.633072,84.228111,77.509102,33.310760,10.412412,42.120678,115.773567,119.327286,65.806625,9.623156,7.046300,17.090099,13.428941,28.270267,44.368610,33.500019,0.517357,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.885951,0.483471,0.782645,1.475208,0.816529,0.000000 -600972.955000,4612335.550000,1154,5255,82.965302,97.581009,83.539680,73.614067,59.200840,48.076874,45.630600,40.514896,38.275227,39.506634,39.068619,53.167782,74.878525,92.746292,110.118195,126.961174,134.291748,133.944641,129.118195,118.316544,107.010757,105.928116,98.300018,53.167782,27.539688,61.217369,133.564484,132.812408,70.754562,13.858693,8.936382,16.462826,14.950429,26.255390,44.630596,31.980186,0.705787,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.262810,5.704134,1.120662,0.275207,0.623141,2.871901 -600980.555000,4612335.550000,1192,5255,66.939690,97.451263,89.335556,78.633080,65.550430,53.186794,51.451256,46.467785,43.765305,44.608280,44.525639,58.533901,79.252914,97.062828,113.881004,131.616547,138.319031,138.666138,133.723984,121.550423,108.988441,108.616539,98.418213,52.971916,27.856216,61.277702,134.128952,132.211594,71.476051,14.861174,8.947127,13.233902,14.104975,25.421503,41.092579,25.900843,0.461985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.257851,0.445455,2.423968,1.962811,0.808265,0.000000 -600992.755000,4612335.550000,1253,5255,67.035553,93.079361,85.732254,74.327293,59.153736,48.649605,44.806629,38.988449,36.608284,35.203327,35.277706,47.137207,67.715721,84.757050,102.641342,122.533905,130.071091,127.773567,121.294235,107.004982,91.641335,88.608284,79.872749,29.178532,6.658690,38.244648,126.029770,133.922333,70.566963,13.952910,7.261177,10.519848,12.756215,22.281836,37.467789,22.003323,0.265290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.516529,0.700827,0.217356,0.885951,0.000000 -601002.755000,4612335.550000,1303,5255,49.825634,78.858704,67.048782,56.065308,41.981010,27.827290,25.042166,18.323982,14.460347,11.968610,10.822329,18.459518,33.290100,47.247128,61.404152,78.007446,82.817383,76.387611,72.552902,57.782661,41.780186,38.933899,32.154564,1.485955,0.000000,5.358687,83.346306,103.924805,58.263657,8.035551,2.923158,7.389267,9.528938,21.393408,36.666138,25.375223,0.663638,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.257026,2.948762,0.437190,0.576034,1.428926,3.367769 -601306.355000,4612335.550000,2821,5255,7.700830,15.168602,11.170255,7.762815,3.471078,1.233060,1.122316,0.698349,0.121488,0.123141,0.080992,0.357853,1.396696,2.440499,4.137194,6.437195,7.390914,6.634716,6.126451,4.113227,2.944631,3.042979,2.272731,0.000000,0.000000,0.344630,20.868607,44.314892,27.144646,2.986783,0.206615,10.572740,18.681009,37.319031,58.730598,50.219852,9.839680,0.281819,0.396695,0.617356,0.000000,0.000000,0.000000,0.000000,0.352893,0.000000,0.000000,0.000000,0.000000,0.000000 -601309.355000,4612335.550000,2836,5255,28.307447,59.722332,48.038036,37.738033,22.352911,12.137203,9.676870,7.350422,5.790917,5.238023,4.025626,5.951247,10.799185,15.757040,22.948778,32.438858,34.802502,33.249603,30.771915,22.400017,15.387619,14.974396,14.172742,2.687608,0.245456,4.183477,53.411591,76.857864,44.345474,5.033069,1.288444,9.247946,14.255387,31.620678,51.725643,40.982662,2.144633,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.582645,0.404959,0.175207,0.000000,0.790909,0.000000 -601313.955000,4612335.550000,2859,5255,77.001663,114.262825,112.081009,100.981834,86.254562,76.370262,73.667786,69.742165,68.039680,67.593407,66.808281,73.998360,87.196709,97.543816,105.626457,115.295883,117.510757,113.824806,105.519020,94.436378,85.328941,83.395058,83.072739,55.444645,37.213245,57.890926,107.725632,111.122330,62.494236,12.188445,7.552085,10.018195,13.841339,27.171089,42.800022,32.704979,1.126450,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.832232,0.847108,0.000000,0.274380,0.000000,0.000000 -601320.755000,4612335.550000,2893,5255,82.912407,131.219009,122.376038,113.392578,99.880180,88.351257,86.921501,83.367783,81.607452,81.400841,80.946297,89.359520,101.524811,111.772743,121.144638,129.657028,131.111572,126.814056,118.458687,105.880180,96.400841,95.557869,94.590927,67.673576,49.367790,70.698364,115.764473,113.739677,61.764484,12.747952,8.599193,10.590923,15.768612,26.609936,38.706631,26.302498,0.943804,0.001653,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.895041,0.000000,0.000000,0.000000,1.778512 -601326.955000,4612335.550000,2924,5255,52.000011,112.755379,111.077698,98.871078,84.408279,73.466125,70.276047,65.747131,62.879364,61.664486,59.995064,67.028114,78.127281,86.300835,95.276039,103.482658,105.193390,101.226448,95.358681,83.466125,74.961998,73.433067,71.218193,44.714073,27.984316,49.061180,100.284302,105.333885,59.705807,11.016544,6.474400,7.590096,13.593405,25.111586,41.499195,30.816547,0.926450,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.715703,0.000000,0.742149,0.000000,0.000000,0.000000 -601331.755000,4612335.550000,2948,5255,40.357864,86.312408,87.081009,75.552078,59.667786,48.957043,45.667786,41.320683,38.077705,36.565308,34.807461,40.557045,51.816551,60.601673,68.601669,77.684311,80.411583,78.766960,73.163651,62.552086,54.171921,52.519028,51.345474,25.653738,10.851254,32.082664,88.444641,98.957039,58.477703,8.338857,4.667788,6.591748,14.545470,28.684315,48.163654,39.163654,1.010746,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.107438,0.692562,0.000000,0.743802,0.000000,0.000000 -601336.355000,4612335.550000,2971,5255,49.332245,93.401665,92.649605,81.104156,67.004982,55.170265,52.963654,47.550430,44.624809,42.641338,41.633076,47.682667,59.170265,68.500847,75.947128,85.071091,88.889267,85.054558,80.765305,70.038040,59.566959,60.252911,59.054562,31.914068,15.085968,39.029770,92.517365,104.922333,60.409935,9.404147,5.368614,8.110756,15.272745,30.179358,47.352081,37.484314,1.400004,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.728926,0.000000,0.000000,0.000000,0.000000,0.000000 -601340.755000,4612335.550000,2993,5255,56.888447,106.495880,106.809937,95.801666,80.958694,71.603325,68.388443,62.958698,60.454567,58.586796,57.826466,64.206635,75.132248,83.834724,93.115715,101.429771,103.380180,100.371918,93.867783,82.884315,75.033073,71.628113,71.636383,45.190105,27.619854,49.495888,101.049606,108.206627,59.950432,11.035553,6.512416,7.797534,12.338032,26.204977,41.090931,30.117373,0.942153,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.519835,0.000000,0.000000 -601345.155000,4612335.550000,3015,5255,73.201675,118.723160,119.078529,108.714890,94.880180,83.946297,81.326462,77.582664,76.177704,75.466957,73.648773,81.285141,94.136383,103.772743,112.979355,121.549606,123.185966,120.078529,112.681831,100.392578,91.185966,89.243820,88.045471,61.466961,42.706631,66.847130,112.938034,113.508278,63.367790,12.760346,8.004151,8.054558,14.785141,23.923159,38.252087,26.464481,0.496697,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.938017,0.000000,0.000000,0.000000,0.947934,0.000000 -601349.755000,4612335.550000,3038,5255,73.751251,126.229767,128.105804,117.940514,105.254562,95.229767,94.262825,91.419846,90.816544,91.940514,92.833069,102.915718,118.568611,130.783493,142.527283,150.816528,152.370255,150.436371,140.725632,126.362000,118.320679,116.047951,115.254562,87.932243,65.585136,89.469437,135.419846,128.477707,69.138855,14.835556,10.477704,10.423154,13.635554,24.423983,38.147121,24.763653,0.969425,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.811570,0.000000,0.000000,0.000000 -601355.755000,4612335.550000,3068,5255,98.619858,144.589264,147.209091,137.019012,124.258690,115.432243,116.514893,115.704971,116.423981,119.101669,122.341339,135.837204,153.440506,168.266953,180.134720,190.415710,193.374390,189.671906,178.019012,162.366119,152.457031,152.192566,150.027283,121.490097,100.589279,121.407455,147.812408,124.556213,64.671921,18.132250,13.638863,10.147949,14.563653,21.592583,31.181837,20.165308,0.946284,0.185125,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.841322,1.100827,0.000000 -601364.555000,4612335.550000,3112,5255,102.821518,158.102493,164.309113,154.738861,141.160339,134.143814,133.672745,132.904144,135.449585,139.152069,143.309097,157.333908,179.176849,197.052887,211.763641,226.102463,229.904114,221.003311,197.763626,175.424774,164.532257,159.970261,154.854568,122.234734,99.788452,117.507454,132.714066,100.375229,48.978531,18.136381,14.077706,9.891751,11.942993,14.308282,15.681009,7.243813,0.957027,0.039670,0.051240,0.000000,0.000000,0.000000,0.000000,0.035538,0.000000,0.000000,0.000000,1.092562,0.000000,0.000000 -601378.555000,4612335.550000,3182,5255,112.019852,164.084305,165.067780,157.695877,145.935547,137.472733,137.076050,137.662827,138.315720,142.332245,146.844635,161.943817,184.026459,202.076050,219.257858,232.274384,237.646286,228.547119,204.745468,182.249603,171.026459,166.365295,161.472733,126.894234,104.150429,121.191750,137.481003,103.753731,49.175224,19.032249,14.679358,10.045468,12.028115,13.356215,14.992580,6.898357,1.364466,0.147935,0.128100,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.155000,4612335.550000,3225,5255,117.023148,159.213242,166.833084,159.295883,145.361984,139.221497,137.609924,137.180176,139.560333,143.337204,147.651260,161.932251,182.502502,201.543823,217.502502,231.023163,235.328949,224.915726,200.271103,175.973572,164.543823,161.527298,154.981842,123.279343,102.758690,117.378517,128.147110,93.196716,43.907455,16.552084,14.089274,7.233896,8.823155,10.871916,11.309106,5.561167,0.823143,0.224794,0.135538,0.000000,0.013223,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601391.955000,4612335.550000,3249,5255,120.755394,171.912399,171.829758,162.647934,151.474396,141.862823,142.168610,142.970261,145.647949,148.722336,153.879364,167.143799,187.920670,208.333893,224.019836,236.705795,240.945465,230.813232,203.416534,178.623138,168.276031,163.242981,157.036377,127.689270,105.523979,117.904152,127.829773,92.358696,45.904156,17.869440,14.276052,10.609932,13.171918,13.954562,11.267784,5.174388,0.925623,0.625621,0.196696,0.047934,0.214050,0.000000,0.016529,0.023967,1.382645,0.000000,0.000000,0.000000,1.320661,0.000000 -601395.755000,4612335.550000,3268,5255,132.574402,171.400848,176.301666,164.607437,153.243805,146.582642,145.053726,145.243805,147.623962,152.161163,156.260330,169.491730,190.590927,209.566132,225.632248,239.334732,241.838852,232.037201,204.111588,179.665298,168.508270,164.780991,158.954544,127.797531,106.376038,120.227280,127.409096,92.243828,44.508289,19.204977,14.450433,10.654562,9.471917,11.774397,11.373569,5.359513,1.090913,0.290084,0.036364,0.094216,0.000000,0.000000,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601403.755000,4612335.550000,3308,5255,122.512413,170.719025,175.743805,166.380188,154.223160,146.685974,146.512405,146.264481,148.859528,152.818192,156.958694,170.925629,190.404968,209.239685,224.520676,237.297531,240.057861,231.190094,203.991745,181.214890,170.173569,165.305801,159.545471,130.462814,108.016541,120.818192,130.818192,94.198357,44.545475,19.220680,14.504151,10.833899,11.317371,13.704976,13.293405,4.752075,1.968600,0.475209,0.307439,0.118182,0.061984,0.260331,0.000000,0.130579,0.000000,0.000000,0.000000,0.000000,1.192562,0.000000 -601406.755000,4612335.550000,3323,5255,122.985123,174.935547,175.580170,165.902496,154.976868,147.489273,147.216537,146.952072,150.051254,155.621490,157.993393,170.051254,189.538849,208.142151,223.406616,236.332245,237.745468,229.067780,203.224808,181.365295,169.638031,165.910751,161.018188,130.795059,110.340508,122.629768,132.943802,98.423149,47.018200,19.366137,14.638035,9.764478,12.466133,14.057869,13.994232,7.428938,0.554548,0.237192,0.604134,0.000000,0.000000,0.000000,0.039670,0.070248,1.307438,0.000000,0.000000,0.000000,1.345455,0.000000 -601410.355000,4612335.550000,3341,5255,130.022339,171.559525,175.559525,165.873581,153.766129,146.534714,147.113235,147.055374,147.559509,153.584305,157.518188,169.865311,188.807449,206.443817,222.642151,234.319839,237.774384,229.352905,203.129761,181.129776,169.253738,166.443832,162.972748,131.303314,109.104965,124.311577,135.633896,102.154564,47.658695,19.052084,14.815722,8.806626,10.406630,12.205800,14.312413,7.304145,1.013227,0.314878,0.186778,0.000000,0.028926,0.000000,0.006612,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.155000,4612335.550000,3355,5255,116.757034,172.608246,171.054535,164.219833,151.533890,145.897537,143.930588,145.195053,146.178528,151.633072,154.773560,166.740494,186.261154,204.029770,218.765305,231.583481,233.773560,225.947113,201.575211,178.418167,167.550415,164.748764,160.509094,129.856216,108.368614,122.128944,134.963654,99.236382,46.434731,17.265308,14.591756,7.670262,10.346298,10.188445,12.826463,5.860342,1.314053,0.218183,0.197522,0.110744,0.022314,0.000000,0.036364,0.033058,0.000000,0.000000,0.000000,0.000000,1.352893,0.000000 -601417.155000,4612335.550000,3375,5255,125.902496,171.588440,172.183487,166.481003,154.712402,145.315720,145.638031,145.604965,147.745468,153.307449,156.464478,169.274384,187.993393,205.530594,219.687607,232.489273,234.720673,227.811584,202.811584,181.175217,171.092575,168.109100,163.563644,134.009933,112.208282,124.952087,138.778519,104.348778,49.208286,18.381838,14.869440,9.094231,11.727289,11.119024,14.627291,8.402493,1.009095,0.165289,0.015703,0.085124,0.050414,0.000000,0.038843,0.061158,0.000000,0.000000,0.000000,0.000000,0.000000,2.109091 -601421.355000,4612335.550000,3396,5255,126.976044,172.810760,171.984299,164.347946,152.918198,145.058685,144.290100,145.984314,146.000839,152.207458,155.612411,168.562820,186.347946,204.356216,219.843811,231.984299,235.257019,227.554565,204.091751,183.232224,171.562805,168.711578,166.463654,135.860336,112.711586,127.356209,141.703323,106.009102,49.124813,18.499195,15.133077,8.407453,11.644643,12.414065,15.004976,8.544641,1.362814,0.185952,0.288431,0.061157,0.022314,0.000000,0.032232,0.223968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.555000,4612335.550000,3417,5255,131.120667,171.856232,177.715714,168.707458,154.905792,147.029770,146.434723,146.525635,147.500839,153.831421,157.269440,169.533920,188.071106,205.542160,219.484314,233.029770,235.657867,227.633072,205.533920,182.723984,172.847946,170.038025,165.509109,134.897537,112.186790,128.434723,142.087616,108.467781,50.004978,20.092583,15.046300,10.700014,12.440514,13.288448,15.061174,5.647945,1.993393,0.271076,0.116530,0.033058,0.048761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.755000,4612335.550000,3448,5255,126.209930,175.656204,172.895889,166.234711,154.168610,145.061172,145.218201,146.300842,147.366959,152.565308,155.821503,168.160339,186.887619,203.904144,218.218201,230.590103,233.110764,224.796707,201.581833,180.276047,169.152069,166.366943,162.763641,133.738861,110.201668,125.176872,138.573578,106.590096,49.375221,17.571093,14.796714,9.519850,11.491752,12.731421,15.453736,6.322325,1.411575,0.405786,0.217357,0.190083,0.000000,0.000000,0.000000,0.018182,2.474380,0.000000,2.180166,0.000000,0.000000,0.000000 -601435.355000,4612335.550000,3466,5255,131.158691,177.943817,176.406631,166.398376,155.158707,145.828125,145.745483,147.332260,147.943832,153.762009,156.522339,168.828125,188.431412,204.993393,220.514053,232.282654,235.497528,228.497528,205.051254,183.778534,172.001678,168.373581,165.381851,134.844650,111.398361,127.530594,140.257874,106.654564,50.481010,18.414896,15.034731,8.153733,11.367785,11.536379,14.386793,6.540507,1.008268,0.240497,0.187605,0.032232,0.000000,0.000000,0.049587,0.019835,0.000000,0.000000,1.019835,0.000000,0.000000,0.000000 -601440.955000,4612335.550000,3494,5255,128.166122,179.033890,177.785965,169.397537,156.281815,147.347931,148.265289,148.298355,150.323135,156.199173,159.058670,171.843811,189.744644,208.736359,224.050415,236.174377,239.447098,232.000824,209.380981,187.835556,177.166122,173.223984,169.009109,138.579346,115.364471,131.323151,143.645462,109.612404,52.190926,21.026466,15.364481,9.508279,12.561173,12.210760,15.039687,7.881004,1.075211,0.294216,0.138843,0.217356,0.097521,0.000000,0.114050,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.755000,4612335.550000,3508,5255,129.631409,178.350433,176.995056,168.928940,156.433075,147.234726,147.590103,148.400024,150.639694,156.325638,158.697540,170.953735,190.176880,209.292587,224.193405,235.722321,238.970245,232.267776,208.019852,187.647949,176.209930,173.102493,169.490921,138.639679,116.474388,131.664490,143.928925,108.234718,51.681011,18.938862,15.408284,8.399188,12.026464,14.266133,16.570267,9.328938,1.572731,0.447936,0.593390,0.000000,0.022314,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.555000,4612335.550000,3527,5255,135.796692,185.267792,178.267792,170.995041,159.581818,149.077682,149.119019,150.838013,151.300827,157.755371,160.747116,173.656219,192.441345,210.292587,225.218201,237.499191,242.193405,234.226471,210.085968,189.705811,178.185150,174.507462,170.763657,139.391739,118.276047,132.077698,144.821487,110.780182,51.895885,20.075226,15.523986,8.166130,13.260347,14.092580,15.845472,6.778523,1.671080,0.482646,0.352894,0.028099,0.085124,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.755000,4612335.550000,3543,5255,127.625641,178.989288,176.245483,167.113251,155.972748,145.262009,146.212418,147.542999,148.774399,155.757874,157.716553,170.658707,189.410767,208.237198,222.823975,234.361160,238.328110,229.708267,208.121490,186.716553,176.592590,172.419037,169.245483,137.427292,115.245476,129.270264,143.774399,110.766129,51.063656,18.989277,15.385970,6.152078,10.748775,12.818198,14.389273,6.721499,1.187606,0.201654,0.102479,0.000000,0.085951,0.000000,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601453.555000,4612335.550000,3557,5255,124.776062,187.495041,177.842148,170.238846,159.214050,149.222305,150.007431,150.015686,151.263626,157.718185,160.338013,173.172729,192.230576,210.974365,226.486771,238.734695,242.205765,235.032211,211.941315,190.990906,179.933060,175.511566,172.900009,141.718201,118.809113,133.354553,146.329758,111.090103,52.445477,19.488447,15.718200,8.676875,11.256214,13.906628,16.188448,7.990097,1.555376,0.465291,0.145456,0.150414,0.096695,0.000000,0.000000,0.121488,0.000000,0.000000,0.000000,2.451240,1.385951,0.000000 -601459.355000,4612335.550000,3586,5255,129.946289,183.417374,178.392578,170.152908,157.028961,146.020691,148.392593,147.913254,149.136398,155.433914,157.326477,170.169434,189.276871,208.020660,222.334717,234.764465,237.822311,228.797516,206.384293,185.012405,174.863647,171.384308,167.409103,137.078552,114.541336,128.847122,143.343002,107.764473,50.450428,18.955391,15.219028,9.176875,12.800017,11.609107,13.458694,7.411582,0.542978,0.225621,0.000000,0.039670,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.155000,4612335.550000,3605,5255,136.195053,175.732239,179.699188,167.575226,155.674393,145.054565,147.071091,145.029770,147.145462,151.343811,154.575226,167.740509,187.310760,204.244644,217.814896,229.971909,232.947113,223.905792,200.211578,180.285965,169.798355,168.310760,163.418198,133.071091,114.285965,125.120674,139.500839,104.071091,49.533905,19.936382,14.856217,10.671092,12.802496,14.847951,15.699190,8.648772,1.380997,0.248762,0.307439,0.157852,0.023141,0.000000,0.038843,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.155000,4612335.550000,3620,5255,138.612411,186.042160,177.984314,168.678528,155.174393,145.802490,147.273560,146.017365,148.124802,152.083481,154.554565,167.562820,187.182663,204.546295,218.298355,230.273560,233.190918,223.438858,199.909927,178.876877,169.281830,166.612411,163.100006,132.595886,112.926460,125.314888,140.149597,103.306625,48.389275,19.579357,14.827291,11.899190,12.537209,14.881837,16.802496,7.561995,1.137195,0.291737,0.181819,0.377687,0.109918,0.000000,0.127274,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.155000,4612335.550000,3635,5255,143.273560,181.471893,179.306625,167.785980,155.422333,147.397537,146.744644,145.934723,147.207458,153.124802,154.637207,168.240524,187.166107,204.372726,218.248764,230.414047,233.099991,223.347931,201.405777,179.984314,169.042175,167.240524,163.100037,133.339691,112.009109,124.306633,138.885132,104.794235,48.480186,19.662003,14.827291,15.076876,11.676878,15.548778,13.845471,7.040506,1.671080,0.240497,0.310745,0.142975,0.152893,0.000000,0.127273,0.265290,0.000000,1.265289,0.000000,0.000000,0.000000,0.000000 -601473.755000,4612335.550000,3658,5255,129.684311,178.403336,174.841339,167.147125,152.411575,142.593399,144.080994,144.163635,145.725632,149.469421,151.601654,164.998352,185.411591,201.089279,215.709106,226.295868,229.114059,219.122330,194.766968,174.436386,164.824799,162.667770,159.072739,130.494217,108.766945,121.923973,135.576859,100.527290,46.766964,17.097540,14.461176,10.590097,10.772744,12.914065,15.570263,6.524804,0.899177,0.100001,0.383472,0.047108,0.114050,0.000000,0.000000,0.154546,0.000000,0.000000,0.959504,0.000000,0.000000,1.611570 -601477.555000,4612335.550000,3677,5255,136.343826,184.261169,177.806625,166.980179,154.285965,144.137207,145.790100,145.525635,146.781830,150.360336,153.252899,166.203323,185.633072,203.352081,217.583481,229.186783,230.525635,220.624802,196.120667,175.814896,166.079346,163.451248,159.509109,130.128937,108.624809,121.930588,134.814896,99.566956,45.666142,17.605804,14.500845,12.205803,12.089272,13.033900,13.519850,5.886786,0.832234,0.285126,0.011571,0.036364,0.174380,0.000000,0.028926,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.755000,4612335.550000,3698,5255,133.343811,187.073563,177.453720,166.346283,154.057022,142.966125,145.304962,144.230576,145.379349,151.395874,152.660339,167.296692,185.866943,203.916534,217.214050,228.957855,230.974380,220.924789,197.379349,177.304962,165.933060,163.759506,159.263641,128.825638,108.536377,119.982658,133.495056,97.685143,45.404156,17.533905,14.478531,9.741339,10.171090,11.956215,15.251256,5.810754,1.267771,0.270249,0.664465,0.159504,0.015703,0.000000,0.015703,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.155000,4612335.550000,3715,5255,150.484314,188.930588,178.947113,172.162003,155.509109,145.236374,146.434723,146.963654,148.938858,152.591751,154.335556,168.484314,186.327286,205.236374,219.294235,230.219849,231.542160,221.385132,197.872742,177.252899,166.418198,163.947113,159.872742,129.426453,109.385139,121.467781,134.426453,98.013237,46.509113,18.121506,14.533903,11.262825,12.204151,12.237206,12.695058,8.714889,0.373555,0.276034,0.076034,0.012397,0.027273,0.000000,0.019835,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.755000,4612335.550000,3758,5255,131.816559,196.609924,179.866119,171.204971,156.882660,145.428116,147.072754,146.965317,148.014893,154.800018,154.180191,167.122314,186.750427,204.370255,220.213226,232.097534,233.552078,222.064468,198.469421,178.353729,167.196701,164.923981,162.163635,129.742172,108.684311,121.857872,132.081009,95.221512,45.700844,18.318197,14.742167,12.500017,11.485141,14.588447,16.251259,6.982654,1.354548,0.019835,0.241323,0.085951,0.280166,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.555000,4612335.550000,3772,5255,137.828934,194.027283,182.085129,174.242157,159.085129,147.052078,149.200836,147.845459,150.605789,157.109924,155.390915,169.109924,187.300003,205.961166,221.580994,234.704971,235.217361,222.853729,199.721497,179.440506,169.812408,165.415710,161.572739,129.779358,110.432243,122.680183,132.316544,97.010757,44.845478,18.225641,14.688449,12.842993,11.215720,15.480185,16.007456,9.004144,0.258679,0.459505,0.010744,0.078513,0.056199,0.000000,0.000000,0.000000,0.000000,1.368595,0.000000,0.000000,0.000000,0.000000 -601499.555000,4612335.550000,3787,5255,144.805817,199.946274,180.681839,173.260345,157.136383,145.640518,149.004150,146.657043,149.376053,155.524811,154.351257,168.061996,186.574387,206.086777,219.855377,233.508270,234.648758,221.780991,198.822311,177.425629,166.665298,164.508286,159.136383,128.359512,108.235542,120.822319,130.871902,94.491745,44.574398,17.687624,14.466962,15.014894,12.305802,12.906630,12.476050,7.910756,1.264467,0.242150,0.199174,0.000000,0.039670,0.000000,0.033058,0.178513,0.000000,0.000000,1.144628,0.000000,0.000000,0.000000 -601504.355000,4612335.550000,3811,5255,144.114899,203.172729,183.131409,176.395874,160.015701,147.652084,149.718185,148.999176,150.081818,157.428925,154.280167,167.247116,187.164459,205.437195,220.007446,233.759506,235.461990,221.073563,198.850418,177.751236,167.362808,163.825623,157.900009,126.470261,107.652077,120.123154,126.676872,91.015724,43.032249,17.307457,14.354565,11.487619,9.482660,11.493406,14.490099,7.044638,0.662813,0.278513,0.134711,0.087603,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,1.092562,0.000000,0.000000,0.000000 -601507.555000,4612335.550000,3827,5255,165.957870,202.660355,187.329773,177.561172,160.809113,147.338043,150.495056,149.569443,151.114899,158.544647,156.362823,168.875229,187.139694,206.404129,221.503311,235.693405,236.486801,223.999176,199.825638,178.866959,167.536377,165.164490,158.536377,125.362816,107.214058,121.602493,126.850426,89.833885,42.280186,19.625637,14.412416,14.806627,10.547953,11.546298,12.524810,4.983480,0.468596,0.213224,0.142149,0.020661,0.009918,0.000000,0.043802,0.000000,1.445455,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.355000,4612335.550000,3851,5255,160.322342,206.314087,185.785156,178.256226,162.033096,149.644638,151.355392,150.008286,151.710754,159.603333,156.520676,168.685989,185.743835,204.677719,220.735565,235.231430,235.140533,221.165329,198.289291,177.495895,166.173584,161.884323,157.090942,124.115715,105.619850,120.628113,125.214890,88.752083,43.495888,19.028944,14.281010,15.269439,11.281010,12.162001,13.147949,6.324802,0.825622,0.138844,0.153719,0.093389,0.009091,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.755000,4612335.550000,3868,5255,164.414902,211.282654,190.290924,178.985138,162.175217,150.266129,151.786789,151.373566,153.489273,161.613235,157.175217,170.861176,187.390091,206.175217,220.976868,234.505814,234.910767,221.299179,198.175217,176.803314,166.067780,163.852905,157.563644,124.704147,106.158684,120.158684,124.481010,88.687614,44.762005,20.150431,14.323985,15.166133,12.424810,15.235555,14.595883,9.131416,1.628102,0.085124,0.081818,0.067769,0.121488,0.000000,0.091736,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.555000,4612335.550000,3897,5255,134.585129,173.808273,176.436371,165.948761,155.395050,145.742157,146.378525,145.023148,146.064468,149.552078,152.519012,164.973557,183.684311,199.601654,213.444641,225.990082,228.634720,219.213226,194.147110,172.659515,161.122314,156.609924,152.072739,122.295876,102.279343,115.973557,123.353729,89.725632,43.684315,19.008282,13.824812,10.000841,13.985967,15.019853,13.517374,8.599184,1.409920,0.312398,0.252067,0.235538,0.088430,0.109091,0.064463,0.000000,0.000000,0.000000,1.088430,0.000000,0.000000,0.000000 -601525.555000,4612335.550000,3917,5255,119.814888,169.839661,175.980164,164.790085,154.409912,146.525620,145.385117,143.823135,145.872726,148.864456,151.682648,163.401657,183.269424,197.757019,212.814896,223.393402,226.905792,218.897537,192.880981,171.285950,160.252884,155.203308,150.690903,121.170258,100.385139,114.294228,123.137192,89.128937,42.120686,19.183491,13.699191,10.217369,11.376876,14.196712,13.628116,6.470258,0.875208,0.645457,0.446282,0.293390,0.029752,0.000000,0.078513,0.000000,0.000000,1.292562,0.000000,0.000000,0.000000,0.000000 -601529.955000,4612335.550000,3939,5255,121.393402,171.294235,175.732239,164.823151,153.690918,145.525635,145.666122,143.748779,145.608276,147.690918,151.252899,163.533890,181.120651,197.153732,211.872742,223.740509,226.426453,217.046295,191.004974,169.781830,159.533890,155.426453,149.509109,120.418198,101.038033,113.385139,120.649597,87.922325,43.550434,16.766960,13.591755,9.009931,11.530597,12.377704,10.115716,6.804142,1.106614,0.338843,0.452894,0.214877,0.019835,0.711571,0.001653,0.076860,0.000000,1.216529,0.000000,0.000000,0.000000,0.000000 -601536.755000,4612335.550000,3973,5255,109.731422,172.210754,176.466965,165.161179,152.210754,145.227295,144.516541,142.723160,143.698364,147.524811,150.756210,161.574402,180.384308,195.772751,209.623978,221.524811,224.904968,213.954559,188.731415,167.822327,155.814072,152.739685,146.681839,116.954559,98.847122,111.921501,118.433899,87.136383,43.838863,17.363653,13.334730,10.047949,9.631423,10.892579,12.469438,6.342986,2.011573,0.198348,0.330579,0.000000,0.013223,0.000000,0.000000,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.955000,4612335.550000,3994,5255,122.100845,175.894226,178.059509,167.034729,154.224823,146.406631,144.795074,142.323990,144.257874,147.638046,149.762009,160.869446,178.869431,195.786789,209.257858,220.538849,224.315720,212.216537,187.894226,166.150436,155.431427,150.638046,146.018204,116.671089,98.208282,113.001671,119.191750,86.191750,43.753738,18.177704,13.274399,8.570261,12.232249,13.659523,14.005801,8.806623,1.752895,1.200827,1.638844,1.176034,1.449588,0.531405,0.018182,0.271075,0.904132,1.353719,0.000000,0.000000,0.000000,0.000000 -601544.755000,4612335.550000,4013,5255,119.758690,172.758682,172.271088,161.147110,150.783478,143.469421,142.188431,140.907440,141.915710,145.552078,147.039673,157.758682,177.171906,192.279343,207.287613,218.370255,220.130585,210.618195,186.287613,163.188431,152.295868,148.775208,142.527283,113.494232,95.254562,108.642990,115.816544,83.626457,40.800018,15.600019,12.957045,8.222325,9.822330,10.367784,11.186792,6.000009,0.580167,0.312398,0.132232,0.017356,0.024794,0.000000,0.076034,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.355000,4612335.550000,4026,5255,117.981834,171.808273,174.221497,166.080994,151.444641,143.345459,142.436371,141.609924,142.725632,145.957031,148.395050,158.783478,176.692566,193.494217,206.890915,218.452896,220.841324,211.105789,185.552078,164.502487,154.494217,148.320663,142.618195,114.585136,94.527290,108.998360,116.890923,84.866127,41.527294,18.253736,12.965309,7.259515,10.447125,11.801670,10.988444,4.852075,0.512398,0.177686,0.000000,0.000000,0.040496,0.000000,0.000000,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.955000,4612335.550000,4044,5255,107.151253,164.093414,172.374405,162.233902,149.853745,142.605804,141.101669,140.266968,141.622330,143.936386,145.944656,157.250443,175.539688,191.878540,204.961182,217.324814,219.151260,208.994232,183.093414,162.184326,151.614075,147.415726,142.209106,112.961174,94.176048,106.556213,115.754562,82.101669,40.250431,16.757870,12.928119,7.013234,8.956214,11.499190,10.537204,5.959514,0.660332,0.111571,0.214877,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.955000,4612335.550000,4074,5255,116.569443,170.412415,173.205811,163.189270,149.759521,143.486801,142.329773,140.842163,142.139694,145.065308,146.776047,158.693405,175.875229,191.982666,206.420685,217.205811,220.247131,209.329773,185.238861,161.866959,151.197540,147.833908,143.718201,112.214058,94.288445,108.271912,114.924805,84.238853,40.652084,15.976051,13.065309,9.557038,9.109934,9.941338,10.085138,4.571909,0.729754,0.257852,0.000000,0.008265,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.755000,4612335.550000,4103,5255,119.756218,166.962830,174.169434,165.657043,151.342987,143.921509,142.615723,141.582657,142.483490,145.103317,147.772751,158.789276,176.111588,193.921509,207.756210,219.219025,220.714890,211.599182,186.037201,164.103317,153.557861,147.797531,144.590927,114.227287,95.706627,108.004150,115.979355,84.607452,39.781013,16.604975,13.144648,7.640507,9.871917,10.372743,9.817369,2.845461,0.830580,0.303306,0.000000,0.121488,0.164463,0.000000,0.000000,0.248761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.755000,4612335.550000,4123,5255,120.561996,168.958710,176.388443,163.504166,153.281021,143.876053,142.190094,142.041336,142.239685,146.429779,148.752106,159.851273,177.421524,193.504150,208.074387,218.966949,222.132233,211.710739,187.214890,163.537216,152.826477,149.595078,143.727295,115.438026,95.380173,108.528931,116.413231,84.256203,40.165306,17.415722,13.066134,7.042161,9.023983,10.294231,9.504147,3.243808,0.762811,0.068595,0.003306,0.015703,0.031405,0.000000,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601570.355000,4612335.550000,4141,5255,126.935555,172.241333,173.596710,166.051254,152.150421,145.695877,144.100830,143.158691,143.563644,147.604965,151.125626,162.241333,179.530594,196.191742,210.861160,222.348770,224.712402,214.166946,189.580170,165.472733,155.290924,151.828110,146.109100,117.009933,98.662827,109.323982,119.009933,88.018196,42.166965,18.621508,13.282663,7.631417,10.652083,11.717373,12.685141,4.964470,0.968597,0.351241,0.442150,0.000000,0.021488,0.000000,0.021488,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.755000,4612335.550000,4158,5255,124.853737,173.415710,174.142975,164.630585,153.490082,143.597534,142.052078,142.027283,143.010757,146.019012,148.804138,160.547943,177.142975,195.721497,208.820663,221.374390,222.366119,214.556198,188.870255,164.589264,154.068604,150.399185,145.754547,116.399193,97.151253,109.399185,117.754570,85.787621,41.895065,18.608282,13.250433,9.217370,10.815722,11.338861,11.870262,2.885955,0.954547,0.214050,0.326447,0.045455,0.000000,0.000000,0.160331,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.955000,4612335.550000,4179,5255,106.385147,170.839676,172.343811,164.757034,151.409927,143.319016,141.434723,141.277695,142.773560,146.509109,148.542160,159.095886,176.517365,193.905792,207.980179,219.905792,221.368607,212.533890,186.517365,163.740509,153.261169,148.996704,142.781830,115.211586,95.682655,108.674393,116.137199,84.897545,40.476051,15.470266,12.980185,6.847121,8.554563,9.866132,9.150427,3.503312,1.007440,0.209092,0.076860,0.243803,0.006612,0.000000,0.233884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601581.755000,4612335.550000,4198,5255,119.155388,169.758682,173.031418,165.766953,150.890915,144.130585,142.353729,141.915710,142.353729,146.262817,148.428101,160.180176,177.353729,193.932236,207.907440,220.213226,222.188431,213.849594,186.965302,164.890915,153.816528,149.155380,143.618195,114.411583,96.923981,108.923981,117.345467,85.072746,41.362007,17.585968,13.056218,7.998359,8.903323,9.981835,10.856215,4.143808,0.719837,0.200000,0.199174,0.287604,0.000000,0.000000,0.011570,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.155000,4612335.550000,4230,5255,139.566132,173.491730,176.177689,167.822311,154.376038,146.260330,144.524796,142.946274,143.285126,149.285126,149.152893,161.433884,178.037186,195.582642,209.632233,222.020660,224.367767,213.285126,189.095047,165.227280,155.772720,150.690079,145.863632,117.698364,96.020676,110.070267,117.838860,86.128113,42.847122,18.946301,13.260348,6.993400,10.227289,12.153736,10.373568,3.582652,0.871077,0.116529,0.091736,0.014876,0.079340,0.000000,0.000827,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.955000,4612335.550000,4249,5255,123.473572,167.631409,170.507446,164.681000,153.722321,142.780167,142.705795,141.829758,143.267776,145.689255,147.168594,158.085953,175.895874,193.375214,207.267776,219.317352,221.292572,212.408264,186.300827,163.251236,152.391739,148.507446,143.309097,114.383484,95.846291,109.135551,117.862831,86.400017,40.681011,18.074396,13.028117,6.222326,9.752910,8.245470,10.193402,5.129761,1.252895,0.353719,0.457026,0.618182,0.032232,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.555000,4612335.550000,4277,5255,115.349609,179.432251,171.357864,164.638870,152.341339,141.572739,141.291748,140.738022,140.828934,145.242157,146.308289,156.969437,175.209106,191.300018,205.928116,217.514893,220.300018,210.266968,183.225647,161.300018,150.605804,146.746307,140.845459,111.630592,93.316551,106.663658,114.605797,84.134727,40.060349,14.519026,12.804151,4.472738,8.937205,8.549603,8.303319,3.272735,0.700828,0.301654,0.243802,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.355000,4612335.550000,4291,5255,128.170273,177.013199,174.806610,166.401657,154.261169,144.451248,142.269440,142.029770,142.831421,147.757034,149.550430,159.831406,178.376862,194.566925,208.153717,219.153717,222.599991,212.500824,185.409912,163.980164,153.881012,150.162003,143.145462,114.368614,93.823158,109.476051,119.211586,86.294235,43.054565,17.388449,13.013243,6.776870,10.421505,10.399191,11.574396,3.918189,0.777689,0.221488,0.180166,0.000000,0.083472,0.000000,0.047108,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.155000,4612335.550000,4310,5255,129.699188,178.558685,175.963654,166.666122,154.814896,143.930588,142.558701,142.343826,141.996719,146.732239,147.682663,159.905792,176.352081,193.765305,207.302490,219.236374,221.657867,211.302490,185.980179,162.542160,151.996704,148.335556,142.781830,114.451256,94.690926,109.079361,116.426453,87.021500,42.575226,18.093407,12.980185,8.185962,11.104975,11.094233,10.307452,3.692569,0.820663,0.103306,0.000000,0.000000,0.000000,0.000000,0.025620,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.555000,4612335.550000,4332,5255,131.485138,179.542984,174.468597,165.799179,151.898361,143.402496,141.014053,141.261993,141.476868,146.336380,145.832245,157.394226,175.600830,191.691727,206.526459,218.014053,219.476868,209.675217,184.790924,162.187607,150.716537,145.518188,141.700012,112.014076,91.881836,106.220680,114.526474,85.509933,40.038864,16.173573,12.881837,7.063646,8.672743,9.218198,10.192575,4.801662,0.859507,0.209919,0.000000,0.000000,0.023141,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.555000,4612335.550000,4347,5255,133.264481,185.776855,175.710739,166.413223,153.454559,142.727295,142.239685,141.429764,140.760345,146.520676,146.504150,157.801651,174.247940,192.355377,207.247955,217.743820,219.438034,209.900848,183.545456,161.933884,150.190094,146.595062,141.000015,111.818199,92.181831,106.322327,114.223160,85.314064,39.727287,17.040516,12.818200,7.333896,9.496711,9.125635,9.700841,4.436371,0.552894,0.071901,0.006612,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.555000,4612335.550000,4367,5255,131.809921,183.066116,178.024811,169.264481,152.322327,142.281021,141.545486,140.495895,141.471100,145.347137,145.628113,156.793411,173.826462,192.239670,205.793411,217.165283,218.123962,208.330582,183.314056,160.900848,149.793411,144.669449,140.454575,109.512405,90.933891,104.818192,113.628105,85.413231,39.421505,16.516548,12.768613,6.763647,8.166959,9.102496,10.652907,4.136371,0.909919,0.408266,0.056199,0.039670,0.109091,0.000000,0.023967,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.555000,4612335.550000,4382,5255,130.446304,186.553741,173.867783,166.082657,152.380188,140.297531,140.603317,139.933899,138.884308,143.702499,143.446304,154.628113,170.917374,189.867783,203.115723,215.504150,216.198364,206.504150,181.041336,159.710754,147.876053,144.338852,139.545471,109.157043,90.082664,104.074394,114.388443,84.165306,40.983490,15.786795,12.685969,5.385134,7.692578,8.643817,8.893402,3.686784,0.797523,0.342150,0.252893,0.098348,0.282645,0.000000,0.000000,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.155000,4612335.550000,4395,5255,122.499199,179.647934,178.094223,167.540497,153.912415,142.755386,141.474396,139.424820,139.267792,143.234726,143.548782,154.259506,170.887604,188.416534,201.325623,211.523972,213.309097,202.036362,177.912399,156.540497,145.490921,141.251266,135.854553,107.730598,89.920670,103.333893,111.499184,81.904160,38.681011,17.664480,12.350431,7.484308,10.408278,10.766958,10.550427,4.092570,1.045457,0.303307,0.290910,0.098348,0.003306,0.000000,0.171075,0.338017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.555000,4612335.550000,4422,5255,122.376038,172.400833,170.954544,157.516525,142.541321,133.417374,132.508286,128.814072,129.359528,130.491745,132.128113,141.888443,158.780991,172.896698,183.078506,194.582657,195.326462,184.557846,161.053726,141.227295,131.268616,129.508286,122.772743,96.946297,82.483490,93.235550,100.896713,74.318199,33.491756,14.731423,11.161175,7.328111,9.333899,7.941335,9.720675,3.600008,0.247935,0.241323,0.126447,0.000000,0.104133,0.000000,0.010744,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.555000,4612335.550000,4437,5255,115.590096,173.209915,172.251236,157.846283,144.838043,133.515701,133.433060,129.557022,129.523972,130.193390,131.895874,142.317368,157.044632,171.978516,183.639679,193.581818,194.077682,183.697525,159.846283,140.507462,130.813232,129.119019,122.672729,96.515709,80.928947,92.515709,99.581818,73.259521,35.003326,14.493406,11.152084,8.381004,8.361997,8.066954,9.795884,3.747116,0.812399,0.094215,0.252067,0.052066,0.048760,0.000000,0.038017,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601632.355000,4612335.550000,4451,5255,125.920670,169.838043,169.747131,158.333908,143.970261,131.763641,131.474396,128.771912,127.747116,129.755386,129.945465,139.449600,155.441345,170.061172,181.300842,192.366959,192.614899,181.705811,158.102493,139.598373,129.094223,126.697525,121.672737,95.466125,79.143814,90.771912,99.325630,73.300835,32.879360,14.433074,11.061176,8.625633,9.600842,9.077700,8.676047,2.123147,0.425621,0.079339,0.019835,0.000000,0.237190,0.011570,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.555000,4612335.550000,4472,5255,117.428116,177.791748,175.039673,159.262817,144.056198,133.304138,133.990082,130.056198,130.395050,131.626450,132.436356,142.593399,157.750427,171.626450,182.750427,193.684311,194.163635,183.279343,159.750427,140.064468,130.312408,128.527283,122.709106,97.155388,81.477699,92.824806,100.576874,72.742165,36.006630,15.927291,11.155391,10.035553,9.318195,9.071915,9.164478,4.076041,1.073557,0.318183,0.835539,0.113223,0.117356,0.000000,0.044628,0.084298,0.000000,0.000000,0.000000,0.823967,0.000000,0.000000 -601640.555000,4612335.550000,4492,5255,112.023148,172.485962,170.039673,161.527283,144.981827,134.684311,133.014877,129.477692,129.014877,131.105789,130.147110,141.915710,157.238022,171.171906,182.940506,192.378525,193.461166,182.271088,159.461166,139.998352,129.833069,129.047943,120.890915,95.601662,79.626457,91.469429,100.312401,73.171921,33.593410,15.055389,10.990101,8.963650,8.149599,9.924809,9.862825,3.954555,0.654548,0.389257,0.128926,0.000000,0.047934,0.000000,0.000000,0.352067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.355000,4612335.550000,4511,5255,110.150421,174.671066,168.819839,158.894226,143.497543,130.819839,131.183487,129.142151,127.348770,130.100830,128.811584,139.307465,155.117371,169.580170,181.034698,192.266129,192.125626,179.257843,156.257858,137.514069,128.456207,125.315712,119.745461,93.224808,77.472748,90.076050,97.943810,71.563652,32.861176,12.360350,10.885969,8.296710,6.577698,7.438857,8.298362,3.357033,0.404960,0.266117,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.555000,4612335.550000,4527,5255,118.742996,175.296677,170.990891,161.131409,144.420670,132.635544,132.164474,129.875214,129.280182,131.156204,130.453735,141.619019,155.156204,171.023956,182.205765,192.585938,193.470230,180.321472,157.883469,138.205795,129.453735,127.057037,120.900009,95.676872,79.453728,90.139679,96.974388,72.569443,32.924812,15.804976,10.990930,9.459520,8.949601,8.292575,10.355387,3.159512,0.619010,0.247108,0.038843,0.038017,0.048760,0.000000,0.001653,0.121488,0.000000,0.000000,0.000000,1.189256,0.000000,0.000000 -601650.755000,4612335.550000,4543,5255,117.952072,177.290924,170.423157,160.224808,145.489273,133.249603,132.158691,130.142151,128.447937,130.761993,128.390091,140.208267,154.935547,169.761993,181.505798,191.985138,192.398361,180.216537,156.588440,137.976868,127.976868,125.894226,120.290916,94.241341,78.629768,89.695877,98.233078,70.638031,33.737209,13.028943,10.935556,9.363651,7.848774,9.395056,7.884312,2.900835,0.676862,0.385952,0.141323,0.000000,0.115703,0.000000,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.555000,4612335.550000,4557,5255,130.509109,181.649597,172.715714,162.327286,146.236374,134.641342,133.980179,131.467789,130.376877,132.269440,131.963654,142.104156,157.699188,172.352081,183.723984,194.385132,193.608276,181.401672,158.641342,139.971924,129.715729,127.715714,121.781837,95.112411,80.029762,92.748772,98.773567,72.500847,34.914066,14.719028,11.071095,10.028942,7.822326,9.498362,9.938031,4.423975,0.643804,0.292563,0.143803,0.106612,0.066116,0.000000,0.133885,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.155000,4612335.550000,4570,5255,120.398361,187.042984,178.786789,166.885971,150.960358,140.481018,140.200027,139.753738,138.588455,143.952087,143.456223,156.051270,173.497528,192.216537,207.224808,219.472733,223.067780,211.026459,187.175217,163.208298,151.662842,148.952087,145.290939,113.935547,95.695877,109.571907,118.067780,87.662827,42.927292,16.968613,13.208283,8.295055,9.842166,8.732244,10.432247,7.328936,0.869424,0.166943,0.075207,0.040496,0.127273,0.042976,0.117356,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.355000,4612335.550000,4591,5255,116.064484,183.254547,175.923981,163.890930,151.874405,140.890930,139.700851,138.758698,138.973572,143.428116,145.436386,156.328949,173.791748,193.229752,206.552078,220.957031,223.072739,212.576859,187.849594,163.874405,152.105804,148.824814,144.981842,113.386795,95.857864,110.105797,119.395050,85.998360,42.642994,17.251257,13.180183,7.114063,9.196712,9.248776,12.370262,5.513231,0.575208,0.326447,0.113224,0.211571,0.033058,0.031405,0.023967,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.355000,4612335.550000,4626,5255,118.995880,180.739685,175.359528,163.971069,151.136368,138.144623,139.772720,137.599167,138.417358,142.822311,144.185944,156.615707,174.276871,192.772751,206.764465,219.921494,223.417358,211.615707,187.764481,163.962814,151.500000,148.665283,144.772720,115.136375,96.450432,111.252075,119.954552,88.764481,42.814072,17.943821,13.161175,7.660345,9.608282,10.980182,11.549603,4.395050,0.884299,0.328100,0.071901,0.397521,0.000000,0.019835,0.176034,0.006612,1.419835,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.955000,4612335.550000,4679,5255,123.814064,179.516541,174.285141,163.756210,149.466965,139.276871,138.285141,138.285141,137.962830,142.169434,144.061996,155.061996,172.789276,190.177704,206.739685,218.450424,220.946304,210.119858,184.409103,161.979355,149.483490,147.318192,143.318192,112.293404,93.524811,108.665306,118.433899,85.607452,41.938038,16.029770,13.028944,7.640509,8.623158,9.672743,10.267785,5.571082,1.244631,0.242150,0.300827,0.056199,0.014050,0.076860,0.342976,0.249587,1.366116,1.543802,0.000000,0.000000,0.000000,0.000000 -601692.155000,4612335.550000,4750,5255,117.275223,169.581009,174.366135,160.738037,149.382660,138.167786,137.490112,137.085144,136.291763,139.440521,141.671921,154.448776,171.862000,188.390930,203.994232,216.597549,219.762833,208.572754,182.655396,159.638870,148.564484,145.068619,141.027298,110.448776,91.936378,106.961174,117.134727,86.878525,43.126465,16.381010,12.820681,7.833074,9.395885,8.814891,11.617372,4.312404,0.813225,0.311571,0.289257,0.172728,0.000827,0.000000,0.323141,0.281819,1.632231,0.000000,0.000000,0.000000,0.000000,0.000000 -601713.355000,4612335.550000,4856,5255,114.813240,170.548767,172.515701,161.895874,146.945465,138.168594,137.085953,135.862808,135.507446,138.672729,140.986786,153.647934,171.722321,190.135544,203.548767,216.937195,219.573563,208.052902,183.085953,160.160339,150.358688,145.424789,141.854553,110.738861,92.821510,106.598366,117.871094,86.077705,42.110764,15.868613,12.895886,7.180177,10.955389,10.936379,11.224811,4.493395,0.462811,0.176034,0.000000,0.009091,0.019009,0.114050,0.124794,0.279339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.355000,4612335.550000,5021,5255,116.835548,166.554565,175.761169,161.182648,146.033890,135.645462,135.934723,134.637207,135.033890,137.662003,139.480179,151.835541,171.736374,188.893402,202.463654,214.595886,216.934723,205.595886,180.480179,157.571075,146.166107,144.463654,139.100006,109.017365,90.761169,106.769432,117.488441,83.190926,42.885143,15.485142,12.645473,9.090924,9.514067,11.486794,12.744644,6.866952,1.420664,0.167769,0.170249,0.014050,0.520662,0.133058,0.609092,0.602481,0.000000,1.264463,0.000000,0.000000,0.000000,0.000000 -601772.555000,4612335.550000,5152,5255,107.681839,169.152893,176.185944,162.623978,147.161179,135.648788,136.657059,134.491745,133.442154,136.400864,138.623993,150.987610,170.904953,187.764465,203.012390,213.921494,215.929749,204.359497,179.235535,157.599182,145.640533,142.822342,138.590942,106.285133,89.458687,102.954552,114.533066,83.466957,41.466957,15.046300,12.599194,8.052906,9.183489,11.330596,9.122329,5.755382,0.827274,0.188430,0.063637,0.137191,0.203306,0.205785,0.029753,0.321489,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.155000,4612335.550000,5240,5255,114.595879,173.450424,177.119034,167.276047,151.110764,140.681015,141.656219,138.259521,138.052917,141.143814,142.168610,154.614899,173.945480,191.714066,205.515717,218.300842,220.400024,206.978531,184.176880,160.565308,149.069443,147.714066,141.218201,110.259514,92.094223,106.623154,119.829765,85.185135,43.433075,16.576878,12.838036,12.676047,11.608280,11.362000,13.691751,7.885960,2.695871,1.276862,1.567771,0.895043,0.866117,0.138017,0.473554,0.104132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.155000,4612335.550000,5290,5255,104.900024,175.769455,178.186813,164.401672,150.690918,140.335556,140.459518,138.666122,137.872742,140.137207,141.335556,154.277695,173.947113,191.500839,203.996704,216.459518,219.393402,205.748779,181.839691,160.137207,146.732239,144.162003,138.600006,105.624817,88.616547,103.616547,117.128944,84.641342,42.930599,16.315722,12.600019,10.285966,8.989275,10.998363,12.944642,7.482655,1.165293,0.186778,0.466116,0.006612,0.466116,0.198347,1.047109,0.104133,0.000000,0.741322,0.000000,0.000000,0.576033,0.000000 -601808.555000,4612335.550000,5332,5255,117.724800,189.485138,179.179352,165.923157,148.212402,135.352905,138.080170,134.939682,134.881821,138.113235,138.121490,150.460342,169.675217,188.253723,201.171082,213.675217,215.204147,201.394226,178.683487,156.187607,145.609100,141.228943,136.336380,104.981003,87.162819,102.823975,116.675224,83.815712,41.650436,16.420679,12.394234,10.802495,8.824810,11.200015,11.359519,3.495048,1.028101,0.614050,0.061157,0.073554,0.000000,0.021488,0.218183,0.785126,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.955000,4612335.550000,5349,5255,116.893402,184.662003,182.480179,168.959518,151.372742,139.604141,139.736374,136.761169,137.356216,140.480179,139.612411,153.480179,171.504974,190.133072,203.157867,215.868607,218.562820,203.546295,179.951248,157.190918,145.108276,143.100006,137.009109,104.893402,87.752907,104.934723,115.628929,83.934723,42.166138,15.856216,12.455391,13.255389,10.733901,11.588445,14.060349,7.772738,1.679342,0.250414,0.718183,0.187604,0.617356,0.396695,1.215704,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601815.155000,4612335.550000,5365,5255,123.136375,195.772720,189.293396,173.177689,152.500015,138.276871,139.442169,136.425629,136.524811,140.690094,140.202499,153.450424,172.549591,189.896698,205.103302,216.731400,218.045456,203.954544,181.028931,158.896698,146.995880,143.648773,137.863647,106.417366,89.607445,105.169426,117.938026,84.640511,43.119858,17.419024,12.533077,13.559521,11.109935,11.332248,13.112413,6.331415,2.452069,0.923142,0.803307,1.482646,1.108265,1.042149,1.021489,1.363638,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.155000,4612335.550000,5390,5255,121.368607,187.897522,176.674377,165.459503,148.740494,137.178513,137.757019,134.757034,135.038025,139.385117,137.145447,150.145447,169.971893,188.682648,201.451233,214.542145,214.244629,201.368591,178.451233,156.161987,144.856201,142.277679,137.418182,106.467781,87.715714,102.930588,116.393394,83.938858,41.748775,14.647125,12.492581,12.073568,8.815719,9.546296,10.868610,6.287613,0.819836,0.530580,0.014876,0.000000,0.138017,7.919008,7.832232,9.619009,8.585124,8.064463,9.915703,8.899174,7.469421,12.006612 -601824.155000,4612335.550000,5410,5255,121.843803,192.513229,180.976044,167.083481,151.281830,137.819016,138.166122,137.314896,136.000839,141.248779,139.050430,152.604141,170.538025,189.364471,203.000839,215.662003,218.033890,202.785965,179.802490,157.802490,145.662003,144.785965,138.190918,105.628929,90.174385,104.785957,119.876862,84.926453,41.992584,16.594233,12.562829,13.445470,9.826461,12.060346,13.016544,5.179348,0.742151,0.586779,0.020661,0.162812,0.013223,0.081818,0.472728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.755000,4612335.550000,5428,5255,133.161179,192.857056,180.559525,165.782669,150.509949,136.460342,139.683502,136.022324,136.047119,140.501678,138.865311,151.848785,170.278534,189.658707,202.427292,213.848785,215.501678,199.385971,177.534729,155.881851,145.981018,141.410767,136.245468,104.212410,86.766129,103.576042,115.005798,83.385971,41.749603,14.858696,12.385969,12.628942,8.935555,10.611587,11.660348,6.373564,0.818184,0.104959,0.394216,0.000000,0.016529,0.411570,0.358679,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.955000,4612335.550000,5454,5255,140.095062,202.490906,186.267776,172.259521,151.796692,136.400009,137.631409,136.333893,138.433060,144.573563,141.771912,155.176865,173.267776,190.804962,205.904129,218.077682,217.276031,201.143799,179.383469,157.209915,143.755371,140.532242,135.763641,104.019836,86.580177,104.912399,114.358688,82.267769,40.821507,15.534728,12.342168,16.032248,9.752907,11.406627,13.186791,11.304971,4.190087,1.845457,2.818184,0.904960,0.904133,1.190910,1.318183,0.773554,0.000000,0.000000,2.530579,0.000000,0.000000,0.000000 -601838.555000,4612335.550000,5482,5255,148.733887,202.255386,182.139694,170.643814,151.817368,137.999191,138.304977,134.701675,136.123154,141.412415,137.635559,150.561172,168.809113,188.090103,201.966141,214.875229,214.949600,200.280182,178.941345,156.734726,145.073578,141.999191,137.627289,105.511581,88.792572,106.404144,118.098366,83.313232,42.842167,18.214897,12.511590,15.795886,9.496711,13.329768,10.876049,6.442159,0.866118,0.562811,0.283472,0.013223,0.081819,0.109091,0.156199,0.075207,0.000000,0.000000,1.881818,0.000000,0.000000,0.000000 -601846.955000,4612335.550000,5524,5255,120.389275,198.542160,180.568604,170.700836,150.940506,138.626450,137.618195,135.171906,136.004974,142.798355,137.533890,150.221497,167.238022,186.047943,201.080994,214.766953,213.642975,198.386780,176.229752,155.213226,142.395050,140.147110,137.163635,103.791748,87.353737,106.386795,116.667786,82.560349,40.866131,15.581836,12.469440,15.599190,8.566957,9.858692,11.157040,7.409101,1.505787,0.714051,0.266943,0.437191,0.000000,0.015703,0.000000,0.058678,1.671901,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.955000,4612335.550000,5584,5255,102.725632,163.395065,173.552094,159.808289,143.915726,134.023148,132.766953,131.684311,131.527283,132.362000,134.485962,146.370270,164.163666,180.386795,195.229752,206.147110,207.138855,197.196701,172.990112,151.849609,139.783508,137.031448,132.527283,101.651245,84.882660,101.345459,113.395050,82.519020,42.064476,16.352083,12.047953,10.820678,10.919026,10.421504,12.644644,5.083479,0.650415,0.226447,0.188430,0.065290,0.000000,0.000000,0.531406,0.586777,0.000000,0.000000,0.000000,1.201653,0.000000,0.000000 -601871.755000,4612335.550000,5648,5255,105.569443,166.057007,172.337997,159.842133,143.734726,135.387619,133.900024,130.825638,131.387619,133.387619,135.404144,146.858704,164.602463,181.255356,193.916519,206.809097,207.519836,196.379333,174.131393,151.982651,139.966141,136.693405,132.081833,100.561180,85.842171,100.709938,113.461998,83.395889,42.561176,15.876052,12.007459,9.085965,10.828943,10.878528,10.787619,3.765295,0.271075,0.004959,0.000000,0.133058,0.043802,0.061157,0.252893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601879.555000,4612335.550000,5687,5255,102.457870,167.383469,170.383469,158.209915,142.598373,134.309113,132.457870,130.821503,130.333908,132.366959,133.829773,146.647949,164.226456,180.854553,194.366943,206.284302,206.953720,195.135544,173.400009,150.796692,140.581833,136.400024,132.309113,101.557045,83.647942,100.044647,112.780182,84.052910,41.317379,15.923160,12.028117,6.997535,9.240512,10.144646,9.941336,4.994223,0.412398,0.128099,0.042976,0.573554,0.004132,0.000000,0.000000,0.287604,0.000000,0.000000,0.000000,0.000000,2.596694,0.000000 -601888.355000,4612335.550000,5731,5255,102.698364,167.823975,172.724792,160.518173,144.020676,133.855392,131.855377,129.665298,129.433899,131.954559,134.295044,146.270264,164.782639,181.278503,194.997513,206.071899,207.493378,197.195862,173.708252,151.369431,140.071915,137.873566,132.336380,102.708282,84.633904,102.286797,117.923157,86.799194,43.617378,17.995888,12.030598,7.076046,10.846297,9.766958,10.520675,6.195051,1.100829,0.164463,0.670249,0.070248,0.242149,0.044628,0.091736,0.268596,0.000000,0.000000,0.000000,0.000000,3.769422,0.000000 -601901.355000,4612335.550000,5796,5255,108.235550,164.598343,168.449585,155.614883,142.300842,131.970261,130.862823,127.780182,127.647957,129.937210,131.821503,143.747131,161.771912,178.383469,192.185120,204.457855,205.350418,195.647934,173.168594,150.887619,139.333908,135.515717,130.400024,100.176880,83.689278,101.259521,114.185143,85.523987,40.474400,15.536381,11.854565,6.471087,7.828941,7.969436,8.944642,4.063644,1.184300,0.080992,0.310745,0.171901,0.157025,0.000000,0.040497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601917.955000,4612335.550000,5879,5255,109.090927,170.289276,170.314072,158.818192,143.388443,135.033081,134.214890,133.314072,132.347122,135.545471,136.322327,146.735550,166.206635,183.603317,196.966965,207.909103,210.223160,200.628113,176.776871,154.958694,143.239685,138.842987,133.000015,104.107452,85.512413,102.247948,117.404976,88.247948,42.776878,16.805801,12.090928,7.019024,10.717372,10.859519,10.216543,4.171908,0.485951,0.284298,0.234711,0.000000,0.114050,0.000000,0.101653,0.269422,0.000000,2.090909,0.000000,0.000000,0.000000,0.000000 -601931.755000,4612335.550000,5948,5255,115.742172,179.031418,173.047943,159.047943,143.155380,132.857864,131.370270,129.122330,130.031418,133.593399,133.312408,145.651245,163.981827,180.601654,193.568604,206.593384,207.667755,198.114059,175.097534,152.833069,140.593399,137.080994,131.254562,100.634727,83.370262,99.213234,113.717369,86.444641,40.312420,15.945473,11.932251,6.006621,7.819849,8.264477,10.227288,4.152074,0.932234,0.252893,0.000000,0.125620,0.026447,0.028099,0.059504,0.480166,0.000000,2.145455,0.000000,0.000000,0.000000,0.000000 -601946.155000,4612335.550000,6020,5255,115.595062,172.876038,170.495865,156.669418,142.206604,131.363647,130.603317,127.611580,126.776871,128.545456,129.719009,141.809921,160.702484,176.933884,190.859497,203.942154,205.157028,192.710739,171.851242,149.363632,138.454544,135.190094,128.000015,98.264488,80.537216,98.553741,112.471085,83.661179,39.603329,16.389277,11.636383,8.473564,7.334723,9.351254,11.336379,3.847942,0.487605,0.248761,0.244628,0.096695,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601961.155000,4612335.550000,6095,5255,103.237206,159.625626,168.683487,157.989273,141.708267,133.518188,130.576050,127.815720,126.666954,127.823975,128.501663,139.799179,155.774384,171.790924,183.352905,195.823975,196.435547,182.658691,161.749603,140.774384,130.782654,128.617371,121.881828,95.104973,78.675232,92.104988,102.220680,75.253746,34.956215,14.033902,11.080184,7.716541,7.861172,8.815717,8.372741,4.109098,0.752895,0.376034,0.159505,0.042975,0.000000,0.000000,0.076033,0.711571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601972.755000,4612335.550000,6153,5255,97.514893,165.490112,169.333084,158.638870,142.870270,131.258682,130.101669,127.523148,127.647125,129.324814,126.828934,139.498367,156.217361,172.985977,184.787628,196.688431,197.333069,184.779358,163.242172,142.448776,134.275223,129.787613,123.663643,95.870255,81.300003,94.506615,106.531410,78.671913,37.969440,16.442993,11.242167,9.829765,9.857038,9.261998,11.374394,3.868601,1.045458,0.300002,0.056199,0.309918,0.010744,0.252893,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.755000,4612335.550000,6183,5255,105.132248,161.280991,169.008286,159.057846,143.082657,132.925629,131.140518,128.619858,127.429771,129.314072,128.363647,140.404968,157.016525,173.752060,185.611572,198.000000,197.479340,185.082642,163.661179,143.859543,133.495880,129.958694,124.727287,96.818199,80.173569,93.991753,105.685966,78.024811,35.644646,14.723159,11.338862,9.972740,9.014065,10.740511,8.840509,4.194225,0.542151,0.261159,0.057025,0.071901,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601982.955000,4612335.550000,6204,5255,97.681000,174.342148,167.904144,158.804977,142.928940,130.846298,130.804977,128.077698,128.003311,130.449600,128.507446,140.581833,157.548782,174.209930,187.722321,199.763641,198.887604,185.912399,162.846298,143.871094,133.862823,131.259521,124.400009,97.631416,81.110756,95.507446,106.904144,75.548775,34.871094,14.233901,11.309111,9.948772,7.685965,8.905798,8.320674,3.744635,0.553721,0.597522,0.000000,0.295869,0.246281,0.000000,0.573554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601987.155000,4612335.550000,6225,5255,105.076050,171.092575,169.216537,161.919022,145.299194,132.836380,131.613251,129.737213,129.026474,132.042999,130.241348,141.588455,158.497528,176.084305,188.621490,200.902496,200.348770,186.737198,166.034714,146.092590,134.960342,132.679352,126.290932,96.910767,81.588448,97.034737,106.745483,77.671089,35.811592,14.028945,11.481010,9.302492,8.152080,9.495054,10.434725,3.967776,0.095042,0.100827,0.060331,0.138844,0.286778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601993.155000,4612335.550000,6255,5255,108.981003,173.947937,170.063644,162.154556,144.204147,132.972733,131.460342,129.865295,128.071915,133.352905,130.204147,142.030594,158.460342,177.295044,189.509933,202.749603,202.584305,188.542984,167.038849,146.708267,136.890091,134.361160,128.518188,98.865295,82.939682,97.576042,108.154556,78.038849,35.807461,14.254562,11.683490,10.346295,9.430594,10.933072,9.227284,4.362820,0.747109,0.175207,0.063637,0.032232,0.004959,0.000000,0.164463,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601997.355000,4612335.550000,6276,5255,114.595894,177.447113,170.488449,162.182663,145.620667,133.298370,132.711594,130.463654,129.695068,133.703323,130.984314,144.199188,158.777695,177.273560,190.835556,204.232239,203.397537,187.678528,167.761169,148.414062,137.232239,133.835556,128.281845,99.521507,82.711594,99.678535,108.860352,78.703323,37.934731,15.074398,11.662003,11.276048,9.066957,8.210758,10.726460,5.667778,1.120664,0.323969,0.403307,0.252893,0.000000,0.008265,0.002479,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602002.555000,4612335.550000,6302,5255,130.762009,186.844635,170.671082,165.290924,148.166946,133.621490,133.365295,131.084305,130.274399,136.282654,131.943817,143.720673,159.745468,178.026459,192.059509,205.555374,204.034714,189.117371,168.687607,148.869431,139.092575,135.861160,130.563644,99.307465,85.034737,100.191765,108.803329,78.439690,39.026466,14.955390,11.869440,10.845469,8.461998,8.583486,9.924806,4.963645,0.834713,0.316530,0.000000,0.257852,0.057852,0.165290,0.572728,0.526447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602008.755000,4612335.550000,6333,5255,128.916550,184.321487,176.073563,164.123154,147.858688,135.776047,135.007446,131.354553,132.577698,138.990921,133.602493,144.544647,160.933075,179.842148,192.891739,207.123154,207.197525,190.139679,170.585953,150.916534,140.139694,136.842163,132.536377,102.544640,86.751259,103.792572,111.379349,80.453735,39.073574,16.583488,12.048779,14.783485,12.065305,11.255387,11.288443,4.688439,1.511574,0.329753,0.540497,0.110744,0.218182,0.022314,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602012.755000,4612335.550000,6353,5255,105.301666,155.938034,162.392578,150.880188,136.847122,125.111580,123.442154,120.723152,120.028931,123.326454,124.351250,135.830597,152.756210,169.161179,182.781006,196.004150,196.450424,185.830597,162.863647,142.987625,132.227280,129.342987,123.772736,94.764473,77.004150,94.144638,106.309929,78.863655,36.673573,12.620677,11.252085,7.236376,7.739680,8.395881,8.028111,2.903312,0.557026,0.438018,0.000000,0.250414,0.066116,0.000000,0.402480,0.304133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602018.555000,4612335.550000,6382,5255,98.701683,157.519852,156.528122,147.313248,134.346313,125.486801,122.676888,119.759529,118.933083,120.974411,123.040520,134.156219,152.701675,168.709930,181.990921,194.685150,195.321503,185.098373,161.602493,141.172745,131.164490,125.842178,120.354576,93.081848,76.900009,93.503334,108.420677,81.181000,38.189274,14.058695,10.941340,6.085135,10.314891,10.747123,8.785138,5.560341,1.185954,0.135538,0.070248,0.310745,0.039670,0.082645,0.112397,0.614878,0.000000,0.000000,1.797521,0.000000,0.000000,0.000000 -602025.955000,4612335.550000,6419,5255,106.604988,146.803314,154.133911,145.381851,128.538864,121.406639,117.885979,116.233086,115.547134,117.704155,118.844650,130.646301,148.348785,165.175232,177.390106,190.538864,190.596725,180.803329,158.208298,137.613235,126.803329,123.414902,117.654572,89.530602,73.489281,90.704155,104.985153,79.067795,36.166962,14.557042,10.695887,6.478523,8.762823,9.939682,8.551253,3.796702,0.633060,0.510745,0.117356,0.049587,0.108265,0.008265,0.252893,0.004959,0.000000,2.027273,1.866116,0.000000,0.000000,0.000000 -602032.155000,4612335.550000,6450,5255,103.086800,146.234726,152.664490,142.953735,128.978531,117.953728,117.234718,114.276047,112.920670,115.309105,117.036377,128.507446,146.391754,162.358704,174.937210,186.920670,188.160339,177.259521,155.077698,134.714066,124.474388,120.408279,113.854553,85.747116,69.813232,88.681000,103.995056,78.656212,35.970268,14.473573,10.350432,6.770262,8.809104,10.819851,10.915720,6.774391,1.542153,0.668597,0.552893,0.035537,0.166116,0.000000,0.320662,0.640497,0.000000,1.956198,1.894215,3.079339,0.000000,0.000000 -602036.355000,4612335.550000,6471,5255,110.157051,144.280991,148.628098,140.322327,124.347130,115.991760,112.727295,109.950439,109.297546,111.479362,113.644653,123.685974,141.818192,157.892578,170.752075,182.768616,183.247940,173.214874,151.214874,130.710770,119.264488,114.933907,109.272751,83.991760,66.876060,84.545479,100.123993,73.727295,36.404984,12.007456,9.933904,5.711581,8.173568,8.704971,9.806625,5.401661,1.260334,0.357026,0.289257,0.200827,0.229753,0.000000,0.209918,0.332232,4.523141,0.000000,0.000000,0.000000,0.000000,0.000000 -602042.155000,4612335.550000,6500,5255,113.703323,147.405792,146.885132,135.314896,120.455391,110.116547,107.025642,103.331429,104.182663,104.281837,106.248779,116.447128,134.347961,150.033890,164.190918,175.232224,175.240494,166.488449,143.595886,123.620682,113.835556,108.562828,102.100021,76.430603,60.504978,80.166138,95.976051,73.199196,33.719852,11.122332,9.281837,9.047946,9.547122,9.968609,9.754560,6.863649,1.493393,0.662811,0.199174,0.145455,0.109918,0.589257,0.079339,0.444629,4.205785,0.000000,0.000000,4.237190,1.766942,2.858678 -602048.155000,4612335.550000,6530,5255,96.317375,126.887604,122.350426,110.447121,95.728111,87.181007,83.438858,79.445465,77.742989,77.718193,79.222328,87.223976,101.521500,114.843811,125.174393,132.808273,134.246292,125.695053,111.265305,93.934723,85.546295,82.405800,78.736374,56.040512,41.186798,61.744644,87.185135,72.788445,34.623985,10.684314,7.157869,12.697537,10.540509,16.196711,20.590927,20.857866,7.954555,4.261987,4.866120,4.186779,4.262812,3.382646,3.790910,6.204135,9.892563,7.032233,4.613224,9.718183,2.822315,19.185125 -602291.155000,4612335.550000,7745,5255,66.118202,104.913239,88.732246,77.116539,62.665306,51.047947,51.483486,48.319027,47.683487,51.134727,50.114063,61.445469,76.381004,89.161171,98.574394,108.872742,111.566956,108.616539,103.379356,94.264481,88.566132,88.446297,85.227287,64.604973,47.228111,68.802490,107.981834,106.047951,59.138866,10.770262,7.747952,17.376877,17.822332,30.352083,45.246300,34.092579,2.720667,0.061984,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,4.819009,0.772727,1.954546,2.085951,0.797521,6.610744 -602294.355000,4612335.550000,7761,5255,83.921509,123.667778,109.436371,95.353729,79.923988,70.527298,73.510765,70.948784,71.304153,74.882668,76.890930,89.882660,106.287613,121.535545,132.304138,144.171906,147.312408,143.072739,135.709091,125.312401,118.097527,118.998352,116.345459,91.791740,75.965309,95.816536,131.816528,120.130585,67.163658,13.157868,10.576878,16.405802,19.682661,34.957043,46.750435,35.260349,1.992567,0.076860,0.000000,0.013223,0.000000,0.000000,0.063637,0.053719,2.576860,3.820662,1.330579,2.174381,0.000000,0.000000 -602299.555000,4612335.550000,7787,5255,23.838024,41.982658,29.070259,19.314884,11.145465,6.004139,6.648767,5.122320,4.100832,4.309096,4.361989,7.568602,13.099183,18.244637,23.856207,29.604145,33.897533,32.648773,31.365303,25.341333,20.842157,20.895052,19.854555,9.029758,3.801658,12.017365,59.465309,83.328949,49.130596,5.589266,1.804969,9.906624,18.430595,33.994232,57.023159,46.973572,2.807443,0.085951,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.528926,0.904959,0.000000,0.000000,0.992562,4.961984 -602305.355000,4612335.550000,7816,5255,24.546286,40.133076,28.213240,16.127287,4.306621,1.214879,0.807441,0.332233,0.030579,0.171901,0.076034,0.735540,4.496704,11.361171,20.096712,31.257870,34.817371,33.806629,32.660347,24.092579,17.715719,17.466131,16.600018,2.013230,0.070248,6.350424,64.690926,84.385139,50.558693,4.969432,1.509108,13.294229,19.896709,36.591751,57.666134,48.238033,3.445462,0.404133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.775208,0.213223,0.174380,0.051240,0.061984,1.032232 -602311.555000,4612335.550000,7847,5255,6.604964,6.647113,0.818183,0.036364,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.071075,0.597523,1.108267,0.994217,0.909093,0.241323,0.069422,0.038017,0.018182,0.000000,0.000000,0.000000,18.128111,47.968613,30.382662,1.926450,0.001653,8.276871,13.399188,33.125641,52.728943,41.317375,3.480997,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602318.355000,4612335.550000,7881,5255,30.771908,46.705803,40.122334,26.594233,13.660346,6.599184,8.894225,6.723977,6.436374,7.241333,8.661994,17.348774,33.602497,48.144646,61.179352,74.303322,78.675232,77.923164,72.840523,63.104973,55.523155,55.104977,56.900017,32.154564,13.780179,38.610764,104.187622,112.625641,67.509933,8.390924,5.172746,12.779355,20.923983,43.369438,62.997540,49.406628,1.142152,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.205786,0.691736,0.247935,0.075207,0.135538,0.000000 -602324.155000,4612335.550000,7910,5255,106.736382,144.839676,134.980179,122.798363,107.095886,98.533905,100.029770,100.757050,101.955391,107.219856,111.600021,129.542160,154.798355,177.261154,193.955368,210.880981,216.889252,212.178513,197.591736,180.128922,171.426453,172.360336,168.690918,136.971909,110.186798,136.228119,173.426453,144.393402,71.145477,17.862000,15.335557,15.168613,19.726463,27.725641,39.327293,27.695061,1.551245,0.285125,0.029752,0.052066,0.234711,0.196694,0.102480,0.414050,1.159504,2.340496,2.676033,0.767769,0.000000,1.818182 -602329.355000,4612335.550000,7936,5255,73.638031,113.782654,110.369431,94.832253,81.683487,73.071930,73.890106,72.650436,74.014076,78.501678,81.171089,96.071922,120.410751,138.278519,155.154556,170.352905,176.931412,174.394226,164.344635,150.518188,141.551254,141.956207,143.336380,111.452072,84.468613,115.088440,169.600830,152.468597,83.063652,18.563654,13.030598,15.748777,23.484316,37.151257,51.584316,37.059521,1.400004,0.000000,0.022314,0.000000,0.000000,0.000000,0.232232,0.000000,0.920661,4.657852,4.956199,3.380166,2.742149,0.000000 -602336.355000,4612335.550000,7971,5255,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.032232,0.452068,0.261158,0.000000,4.412403,13.953732,31.100018,47.458694,48.731419,25.123980,17.956209,10.838027,9.206619,4.838848,1.438019,1.297522,0.017356,3.935539,0.240496,0.000000,0.000000,0.000000,0.000000 -602340.355000,4612335.550000,7991,5255,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.097521,0.000000,0.000000,2.835541,13.348773,25.070265,43.909931,42.871918,50.580177,50.739685,51.879353,55.722324,48.742161,34.030590,28.021496,18.467773,8.025621,8.754547,2.308265,0.000000,6.776861,3.354548 -602343.955000,4612335.550000,8009,5255,66.691750,89.514893,88.587616,75.393402,65.104149,57.961994,58.342159,56.585140,56.638027,60.279354,60.821499,70.259514,83.346291,95.961166,106.258682,115.647957,119.871918,117.863655,110.045471,101.284309,97.375221,96.920670,98.763649,78.779343,64.357864,84.095879,118.167786,107.407455,59.809933,12.005799,8.978528,14.243815,19.251257,31.693407,47.952911,38.357044,2.719838,0.222315,0.029752,0.000000,0.000000,0.000000,0.000000,0.118182,6.814877,4.658678,2.775207,3.027273,3.589257,6.357852 -602347.555000,4612335.550000,8027,5255,126.252083,145.706604,138.028931,124.673561,108.971092,100.185966,99.086792,97.194229,98.194229,100.475220,103.128113,114.954552,131.293396,147.450409,159.599167,169.301651,172.756195,168.301651,153.971069,138.252060,130.557861,130.772736,132.045456,105.814064,86.838860,108.599190,141.814056,116.764473,60.144650,14.785142,12.004151,10.713239,13.511586,22.448778,31.987623,22.815720,2.562815,0.305786,0.102480,0.015703,0.237190,0.000000,0.709092,0.705786,10.313225,4.407438,3.914050,6.900001,5.768596,3.528926 -602352.355000,4612335.550000,8051,5255,4.963639,2.919010,0.799175,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.777687,2.288433,6.369430,13.294229,20.427290,22.445475,22.967787,18.162828,16.204975,20.556217,25.072746,14.234726,4.519016,25.061176,77.700836,87.345459,50.700844,4.057034,2.279356,12.442987,25.342995,51.386795,77.758682,64.907455,12.146293,0.238843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.207438 -602359.555000,4612335.550000,8087,5255,25.033068,21.502491,12.902490,6.344636,2.103310,1.098349,1.228928,1.015704,1.095043,1.388432,2.208268,6.381001,17.330591,29.395884,44.076050,56.219025,65.400848,66.962830,65.675224,58.152912,53.328117,55.400841,60.227291,39.584316,21.312410,48.797546,105.078522,108.219017,65.136383,7.969432,5.475226,13.337205,24.565306,45.525642,70.524818,60.041340,6.795051,0.138844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.431406,0.665290,0.000827,0.000000,0.000000,5.552894 -602368.555000,4612335.550000,8132,5255,128.050430,127.061165,112.862823,97.201675,82.548782,77.185143,76.168617,74.515717,76.433067,79.325638,83.003326,95.168625,113.598358,130.862823,145.590088,160.433060,166.548767,167.986786,158.912399,146.259506,139.523972,139.441330,139.672729,112.689270,92.391747,118.069435,155.540497,137.763641,76.887611,15.472745,12.697539,15.716545,18.469439,33.656216,46.515720,42.234730,4.640503,0.208265,0.061157,0.038843,0.065289,0.200000,0.022314,1.029754,16.919010,26.752897,7.321490,9.123969,18.480995,6.689256 -600963.155000,4612325.550000,1105,5305,54.454563,72.252907,54.228115,40.748775,25.477707,11.907454,10.958694,7.218194,4.600837,4.799185,3.038850,10.900843,29.881012,46.715721,66.112411,87.740509,92.881004,90.319023,88.087616,73.401665,58.723984,56.203323,50.418198,3.662818,0.000000,12.027288,106.203316,125.806625,69.682655,9.409929,4.583490,16.270262,14.053734,29.348780,49.980183,36.528946,0.370249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.829753,0.472728,0.109918,0.373554,0.737191,5.357852 -600968.955000,4612325.550000,1134,5305,46.339687,74.536385,58.321507,46.114895,29.476051,17.016546,15.662827,9.895057,7.540510,8.320676,6.940510,18.957870,39.982662,58.172745,76.313240,98.172729,105.412399,103.776039,101.503311,87.007439,72.833900,71.189278,64.900017,13.704149,0.517358,26.426466,117.214050,130.280167,69.767792,11.062826,5.900020,14.346295,12.887620,27.647953,46.949608,33.973572,0.258679,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.113224,0.127273,0.217356,0.000000,1.479340,3.719009 -600977.555000,4612325.550000,1177,5305,50.170261,69.038048,60.681839,50.367790,32.971092,20.733902,17.200844,11.036380,9.368611,8.334725,7.799188,19.822332,40.359524,58.508286,77.971092,98.235550,106.921501,103.814064,100.392578,85.384315,69.450439,67.500023,59.318203,8.520676,0.037190,17.849606,116.243820,132.045471,70.541336,10.491751,5.392581,10.223981,10.731421,20.617373,39.021503,27.180182,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.243802,2.285951,0.442976,0.570249,1.073554,3.681819 -600987.355000,4612325.550000,1226,5305,41.066132,73.240517,66.604149,53.430599,36.044647,25.380184,21.476877,15.681835,12.050431,11.428115,10.348777,22.000843,41.686798,59.091755,77.703316,99.934731,107.843826,106.405807,101.496712,84.579361,66.637215,64.637215,56.372749,5.092572,0.012397,14.672746,118.108284,136.298340,72.976044,11.088446,5.124813,9.073566,10.779352,21.295057,38.986797,23.381008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.209091,0.266116,0.627273,0.000000,1.197521,2.498347 -600996.755000,4612325.550000,1273,5305,37.132244,67.189278,66.594231,58.412411,43.255386,32.057041,28.709934,23.098364,19.965305,18.575226,17.905804,30.255390,49.420677,65.015717,81.883484,102.652077,110.139679,106.949600,102.974388,87.255386,73.007446,69.453735,61.263653,11.482661,0.366117,21.077703,112.495056,129.131409,70.271912,10.080180,5.569441,8.147945,11.313237,23.417374,40.924809,23.588446,0.233059,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,1.157852,0.985124,0.212397,0.117356,0.355372,0.000000 -601000.155000,4612325.550000,1290,5305,47.609932,64.208282,65.993408,58.299191,43.481010,32.737209,30.646301,24.224813,21.632252,20.281012,20.057045,32.927292,52.737209,67.621498,83.233078,99.166962,104.497536,101.695885,97.571922,85.109108,72.166962,69.200020,60.018200,17.089273,1.234715,26.919853,103.728943,116.100845,67.042992,10.963652,5.456218,9.919847,12.697537,25.341343,39.382660,28.238035,0.560332,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.981819,0.309091,0.752067,0.254546,1.274381,0.000000 -601003.155000,4612325.550000,1305,5305,40.076042,71.457039,63.076874,54.704971,40.002495,31.250433,28.093407,22.101669,18.280182,16.662827,17.350431,26.614893,44.564476,56.217369,70.076874,82.060349,85.581009,82.250427,78.490097,67.746292,58.473568,55.217369,48.218197,14.900017,1.666948,21.574398,84.655388,96.506615,53.233898,7.954558,4.383491,9.318194,10.873568,24.910763,40.184311,30.053738,0.558679,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.171075,0.967769,0.199174,0.305786,1.265290,4.355372 -601356.955000,4612325.550000,3074,5305,111.095879,159.062836,164.120697,154.583496,142.145477,134.980179,135.467789,135.509109,138.443008,141.765320,147.484329,161.740524,182.732254,203.062836,218.162003,229.905792,232.013229,222.434723,195.104156,170.467804,159.211594,154.872757,147.872757,116.633072,96.773567,110.219849,122.740509,90.806625,43.352089,16.051258,13.442994,8.408278,8.878528,10.737206,12.241338,5.789265,1.094217,0.358679,0.265290,0.076033,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601365.155000,4612325.550000,3115,5305,109.587624,156.562820,162.703323,153.223984,142.166122,133.174377,134.066940,134.347946,136.190918,139.323151,143.827286,160.480179,181.579346,201.463654,218.290100,230.529770,233.976044,224.852081,199.083481,174.992569,162.381012,159.447113,152.827286,120.083473,98.562813,114.149597,127.438850,93.504967,43.455383,15.276052,13.893408,7.656210,9.495884,10.664478,11.778528,5.804142,0.484300,0.227273,0.202481,0.068595,0.000000,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601378.555000,4612325.550000,3182,5305,112.213234,167.684326,171.155396,160.370270,147.965302,140.361984,139.923981,140.775208,141.998352,147.849594,151.775208,165.833084,188.204987,207.742172,224.601654,237.998367,241.560333,231.890915,206.039688,181.576889,169.849609,165.014893,159.981842,127.014893,105.461174,120.196709,131.849594,96.188446,45.609936,17.260349,14.543820,7.804144,10.347950,11.606627,11.015718,5.985136,1.176038,0.236365,0.380993,0.142976,0.000000,0.000000,0.027273,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601384.355000,4612325.550000,3211,5305,129.320663,168.742157,175.039688,164.444641,152.180176,144.014877,144.857864,144.494217,146.494217,152.419846,157.089264,170.238022,190.006638,210.907455,226.213242,239.609940,243.998367,234.461182,204.717377,180.477707,168.618195,166.262817,160.890915,129.271088,107.907448,121.593391,128.279343,93.733902,44.948784,17.828119,14.626465,8.647949,11.014067,12.056215,12.867785,4.517363,0.309920,0.495869,0.219836,0.170248,0.094216,0.039670,0.163637,0.000000,0.000000,0.000000,1.206612,0.000000,1.247934,0.000000 -601387.155000,4612325.550000,3225,5305,130.745483,173.274384,175.315720,165.224808,152.919022,145.695877,145.282654,146.150421,148.241333,152.993393,157.745468,169.497528,191.538849,210.737213,227.340500,239.737198,243.580170,233.092575,206.266144,180.985138,168.414886,165.332245,160.109100,129.373566,107.737198,120.596710,128.877701,93.571922,43.712418,17.699190,14.555390,8.966957,11.717372,11.976876,13.000015,7.176044,0.616532,0.136366,0.292563,0.000000,0.095042,0.000000,0.021488,0.128100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601390.755000,4612325.550000,3243,5305,119.595879,172.637192,174.686783,165.232224,151.223969,146.819016,145.810760,145.959518,148.422318,153.141312,158.025620,171.976044,191.769440,211.513229,227.372742,240.166122,243.579346,232.777695,205.174393,181.480179,169.959503,164.909912,158.463638,128.223984,107.761169,120.273567,126.314888,91.083481,42.959526,17.593407,14.405804,9.847950,11.508281,11.051256,12.843817,7.363647,0.926449,0.144630,0.021488,0.022314,0.090083,0.000000,0.004132,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601394.755000,4612325.550000,3263,5305,129.061172,169.928940,177.689270,167.152084,153.771927,147.259521,148.466141,147.061172,149.449600,153.176880,157.862823,170.829773,191.185150,210.251266,225.193405,238.185150,240.490921,230.309113,204.995056,180.094238,169.780182,165.499191,162.218201,130.052902,108.945465,122.780174,130.309097,96.804970,45.019855,18.641342,14.747127,9.143815,11.812413,12.885139,11.790099,4.475216,1.119012,0.317357,0.052894,0.211571,0.045455,0.111570,0.109091,0.037190,1.312397,0.000000,0.000000,0.000000,0.000000,0.000000 -601398.955000,4612325.550000,3284,5305,128.476044,172.955383,174.426453,165.889267,154.790100,147.261169,147.988449,147.649597,149.600006,153.558685,156.509109,169.707458,189.261169,206.914062,222.467789,233.079346,236.938858,229.790100,204.847946,181.938858,170.839676,167.145462,162.327286,133.533890,111.649605,122.996704,138.120697,102.600021,47.971916,19.753736,14.757044,9.214891,10.634727,14.519852,12.637206,5.247119,0.580994,0.428928,0.071902,0.191736,0.023967,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.555000,4612325.550000,3312,5305,127.362000,167.899185,173.882645,166.386780,155.047958,147.692566,146.428101,147.841324,149.229752,154.254547,157.171906,169.361984,188.783478,206.378540,220.965317,232.254562,234.800018,227.874405,205.502502,182.733887,171.180176,169.568604,166.254547,136.213242,113.081009,128.436371,144.328934,110.171913,51.403324,19.990103,15.114070,9.305800,14.709936,13.877704,15.277703,8.435550,0.363639,0.422315,0.514878,0.031405,0.044628,0.000000,0.030579,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601412.155000,4612325.550000,3350,5305,124.619850,175.090927,172.809937,165.099182,152.363647,145.785141,145.371918,145.380188,146.082657,151.289276,154.239685,167.727295,185.867783,204.628113,218.851257,231.190094,235.371918,228.603317,206.925629,185.181839,174.859528,171.206635,167.090927,135.537201,112.743820,129.785141,146.925629,113.925636,55.198368,19.162830,15.190102,8.570263,10.831421,14.520679,16.372746,7.903320,0.942979,0.735539,0.089257,0.098347,0.000000,0.000000,0.000000,0.096694,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.155000,4612325.550000,3365,5305,137.944656,168.622330,173.217377,163.085144,152.647125,145.118210,144.134735,144.068619,146.101669,150.952911,153.481842,167.275223,185.233902,202.787628,219.572723,229.738022,234.209091,227.291748,205.531403,183.027298,172.200851,168.944656,164.936386,134.333084,111.465309,127.159523,146.366135,112.333084,51.804150,19.326464,14.994233,7.797535,12.251255,15.303325,15.816546,8.027286,2.305790,0.258679,0.096695,0.101653,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.955000,4612325.550000,3389,5305,132.621506,174.423157,174.555374,165.571915,154.489273,145.671082,145.778519,146.340500,146.952072,153.563644,155.687607,168.100830,186.976868,203.720673,218.547119,230.390091,232.828110,225.704147,203.588440,183.522324,171.943817,168.125626,164.654556,134.166946,111.745461,127.745461,145.067780,114.274391,53.786793,21.327291,14.968614,8.904972,12.854561,15.167785,17.789272,6.820673,1.369425,0.230579,0.176034,0.000000,0.077686,0.000000,0.061984,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,2.252066 -601426.955000,4612325.550000,3424,5305,124.181000,174.090088,173.032242,167.048767,155.338013,146.767776,145.660339,145.420670,147.321487,153.453720,155.875214,168.850418,187.486786,205.602478,219.478516,231.924789,234.181000,227.552902,205.015701,184.048767,172.437195,168.685104,164.900009,133.742981,112.453735,127.412407,142.883469,110.437210,50.610767,18.237207,14.990929,8.237205,11.538033,12.690098,15.210761,8.052076,1.105789,0.101654,0.052067,0.000000,0.000000,0.000000,0.041322,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.355000,4612325.550000,3441,5305,126.695053,178.356216,174.819016,168.728119,154.356216,146.538025,146.959518,146.752899,148.562820,153.604141,156.909943,169.959518,186.984329,206.223984,220.207458,232.455383,234.802490,227.207458,205.091766,184.926468,171.595886,168.885132,163.100037,134.488449,110.810760,127.546295,141.695053,108.513237,51.414070,17.840513,14.827291,7.777700,11.785966,12.658692,15.592579,7.483483,1.751244,0.466943,0.390911,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601433.755000,4612325.550000,3458,5305,132.314896,183.025635,175.190918,169.752899,157.860336,148.471909,148.819016,149.364471,150.827286,157.000839,158.678528,171.876877,190.190918,208.000839,222.554565,234.736374,237.372742,229.447113,207.843811,186.587616,174.728119,171.017365,167.100006,137.513229,115.984314,129.157852,143.546295,108.637199,51.984318,19.770267,15.190928,7.623981,11.766958,14.172743,13.852084,5.266127,1.258682,0.146283,0.529753,0.177686,0.161158,0.000000,0.000000,0.044628,1.245455,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.555000,4612325.550000,3472,5305,136.408264,182.631409,176.598373,171.028122,159.532257,149.474396,150.796707,151.152084,151.854568,157.995056,161.292587,174.276047,192.920685,211.160355,225.581818,238.077682,240.350433,234.292572,209.862808,188.821503,179.267792,173.548782,169.490921,140.119034,118.457870,133.102493,143.672745,109.672745,51.681011,20.398365,15.408284,9.564478,12.857042,13.417373,16.390100,6.533895,1.510749,0.148761,0.143802,0.242149,0.163637,0.000000,0.000000,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.955000,4612325.550000,3509,5305,130.071091,187.352081,178.608276,170.930588,157.029785,148.046310,149.509125,149.327301,150.881027,157.252914,158.905807,172.228119,191.492569,209.426453,224.385132,236.492554,239.980164,232.856201,209.533890,187.310760,177.872742,173.319016,170.690918,138.806641,116.633072,131.294235,142.781845,107.517365,49.219860,18.601671,15.517374,7.047948,11.261173,13.294230,13.533902,7.447946,0.545456,0.223141,0.266943,0.000000,0.000000,0.000000,0.000000,0.028099,0.000000,0.000000,2.266116,0.000000,0.000000,0.000000 -601447.355000,4612325.550000,3526,5305,149.153732,187.773560,180.484314,172.013229,160.690918,149.484314,150.558685,150.707458,152.120667,159.583481,160.872742,174.013229,192.682663,210.914062,225.707458,238.186783,241.517365,234.294235,210.426453,189.955383,179.517365,175.170258,172.781830,139.798355,118.525635,133.170258,143.781830,108.633072,50.757042,19.157869,15.707457,7.408279,13.248777,13.720678,15.459522,7.440509,1.432235,0.684300,0.328100,0.029752,0.152893,0.215703,0.049587,0.227273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.955000,4612325.550000,3549,5305,138.579346,173.992569,176.463669,164.033890,151.438858,142.075211,144.992554,143.339661,144.736359,149.587616,152.620667,165.909927,185.248795,201.769440,216.794250,228.438873,231.662018,223.389282,201.794235,180.612427,171.215729,169.133087,164.009125,135.579346,113.967781,127.042160,139.554535,102.381004,47.967785,19.992582,14.909935,10.938859,13.100842,16.009933,17.181835,8.037202,1.587608,0.337192,0.365290,0.033885,0.066116,0.000000,0.093389,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.355000,4612325.550000,3566,5305,114.550423,178.575226,178.434723,166.153732,151.013229,143.624802,143.195053,143.608276,144.071091,148.517365,152.732239,165.798355,185.616547,202.757034,216.914062,229.459518,232.839676,224.211578,201.616547,182.162003,172.046295,170.104141,164.327286,135.980179,114.971916,126.624809,139.418198,102.128937,47.591755,17.765306,14.938862,12.540512,12.393405,14.396712,16.381834,8.161170,1.986781,0.338018,0.012397,0.081818,0.400001,0.000000,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601458.955000,4612325.550000,3584,5305,135.064484,178.469437,177.428116,166.882660,153.155396,145.601669,146.271103,144.833084,146.345474,150.114075,153.923996,168.626465,187.824814,205.634735,219.328949,232.609940,235.477707,226.841339,204.899200,184.634735,173.452911,171.940521,168.345474,136.122330,115.320679,130.452911,143.543823,105.659515,49.684315,20.328943,15.304152,11.787621,12.326464,15.608282,17.428118,8.452904,1.647940,0.590912,0.256199,0.017356,0.150414,0.000000,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.555000,4612325.550000,3612,5305,136.703323,175.976044,174.604141,164.976044,149.620667,141.298355,142.752899,142.157867,143.810760,147.736374,151.480179,165.166122,185.381012,202.777695,217.471909,229.438858,232.496704,224.769440,203.207458,181.942993,171.901672,169.471909,165.827286,133.199188,111.471916,126.190926,142.083481,105.546295,49.471916,18.703325,15.075226,10.185140,10.846297,13.808281,16.377705,8.089268,1.663641,0.062811,0.422315,0.042149,0.025620,0.000000,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.355000,4612325.550000,3636,5305,131.057037,187.412430,176.362839,167.610764,153.098389,142.602493,143.858704,143.445480,145.528122,149.387634,150.999207,165.255386,185.569458,203.511612,216.776047,229.453735,232.321503,222.842163,199.643845,179.891769,168.701691,167.032257,163.445480,130.255386,108.718201,122.742996,139.073578,101.627289,48.065304,18.229771,14.858696,11.224811,10.970264,12.778529,14.504976,7.871912,0.500003,0.403308,0.318184,0.090083,0.057852,0.000000,0.106613,0.021488,2.624794,0.000000,0.000000,0.861984,0.000000,0.000000 -601474.355000,4612325.550000,3661,5305,125.514069,183.456223,177.175217,166.348770,152.919022,142.200012,145.191742,144.472733,146.117371,149.580170,152.076050,165.398361,184.555374,202.613251,216.142181,228.985153,230.555405,220.547134,197.414902,177.051254,165.952072,165.902496,159.927277,129.613251,109.852913,121.836380,134.133911,99.514069,44.530602,16.776878,14.538863,11.881009,10.641339,12.942991,13.669436,6.456208,0.516532,0.082645,0.233885,0.157025,0.000000,0.000000,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.555000,4612325.550000,3687,5305,127.883499,186.751236,178.933060,169.420670,155.048767,143.627274,146.718185,146.123138,147.999176,152.346283,154.023972,169.321487,186.900009,205.528107,218.709915,231.999176,234.478516,224.544632,200.222321,180.040497,170.114883,167.701660,163.536362,131.776047,111.552910,123.420670,135.999176,99.445473,46.420681,17.973570,14.866961,12.533076,12.112414,13.270265,17.523157,8.438854,1.544631,0.007438,0.185951,0.091736,0.184298,0.000000,0.031405,0.004132,0.000000,0.000000,1.175207,0.000000,0.000000,0.000000 -601482.755000,4612325.550000,3703,5305,143.085129,189.787613,177.539673,171.052078,156.283478,144.804138,147.572739,146.952896,149.233887,154.209091,153.729752,167.316528,186.895050,204.531418,218.605804,231.523163,232.556213,221.242172,198.580994,178.159515,167.903305,165.242157,160.390915,130.457031,109.961166,122.423973,134.010757,99.010750,45.663654,19.696714,14.581010,13.651258,13.204977,14.646297,15.342166,7.945467,0.981820,0.479340,0.334712,0.132232,0.013223,0.509091,0.104959,0.127273,1.347934,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.755000,4612325.550000,3718,5305,139.581833,190.019852,179.466141,170.780182,154.904144,143.565308,146.664459,146.085968,146.350433,153.416550,153.400024,167.920685,185.862823,203.887619,218.606613,231.887604,232.185120,220.193390,197.804977,176.738861,166.614899,164.490921,159.127289,129.044632,107.507446,120.995056,131.755386,96.598358,45.408283,18.077705,14.466134,12.787620,12.531424,12.965307,14.398363,6.535547,1.017357,0.196695,0.140496,0.031405,0.019835,0.000000,0.021488,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.755000,4612325.550000,3738,5305,150.890930,192.758682,180.254547,173.246292,157.262817,144.089279,146.469421,146.213242,148.345459,154.973557,153.791748,167.213226,186.345459,204.725632,219.304138,232.684280,234.138840,222.485962,199.171906,179.436371,167.849594,166.642975,161.436371,129.064484,108.609940,122.510765,132.775223,96.609940,44.436382,18.056217,14.676052,12.688446,10.576875,12.657042,13.338861,7.451251,1.011572,0.145455,0.168596,0.038843,0.000000,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.355000,4612325.550000,3761,5305,150.173569,199.454529,183.942169,174.338852,161.247955,147.661179,150.537201,149.380188,150.776871,157.000015,156.049606,169.611588,187.090927,205.735519,221.008255,234.793365,235.628082,222.760315,199.669418,179.950424,167.884308,165.454559,160.636383,129.528946,110.396721,123.561996,132.661179,94.512421,45.305805,17.955391,14.603326,14.809937,11.714068,14.104150,14.455390,6.597531,1.304962,0.670250,0.213224,0.050414,0.132232,0.033058,0.015703,0.169422,0.000000,1.392562,1.228926,0.000000,0.000000,0.000000 -601501.355000,4612325.550000,3796,5305,155.247131,205.900009,183.048767,177.404129,160.147934,149.032242,150.296692,148.800827,151.511566,158.999176,156.924789,169.660339,187.528107,206.387604,221.635529,234.544617,236.337997,222.916519,199.354553,177.792572,168.809097,164.569427,160.718185,128.701660,109.304970,123.941330,128.610748,91.214058,43.445473,18.734730,14.610764,13.709108,11.281009,12.375223,13.638033,6.788441,0.713224,0.168596,0.000000,0.120662,0.208265,0.000000,0.264464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.555000,4612325.550000,3812,5305,144.095062,202.009109,182.323151,174.604141,158.455383,146.091751,148.207458,146.653732,149.579346,157.686783,153.728119,167.397537,185.604141,203.942993,219.364471,232.042160,233.066956,219.521500,196.174393,174.959518,165.009109,162.463654,155.736374,125.083481,105.447121,119.422325,126.273567,87.620674,41.000843,15.656217,14.157870,14.337206,10.328943,11.192577,10.004973,6.219845,0.952068,0.484299,0.158678,0.076034,0.109918,0.000000,0.036364,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.355000,4612325.550000,3841,5305,133.061172,172.928940,177.548782,171.598373,156.383484,146.788452,146.879364,145.656219,147.383484,152.309113,153.251266,165.102493,181.763657,198.986786,215.284302,226.358688,229.366943,216.284302,193.391739,171.457870,162.705811,158.044647,152.945480,123.755386,103.747116,118.904144,124.614891,89.292572,43.085968,19.526466,13.904152,13.610758,11.669439,13.462003,13.738859,5.106621,1.539673,0.741324,0.695869,0.251240,0.221488,0.494215,0.009091,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.755000,4612325.550000,3858,5305,125.944649,172.415710,173.233887,163.514877,151.010757,143.349594,143.837204,143.225632,143.498352,145.779343,149.010757,160.704971,178.382645,195.465302,209.713226,221.432236,223.779343,213.002487,189.341324,167.490082,156.878525,153.589264,146.936371,119.002495,99.019028,113.151260,118.878525,85.952904,42.275230,16.857044,13.357871,8.714064,10.169438,11.859521,11.499190,6.530589,0.579340,0.241323,0.061157,0.031405,0.024794,0.000000,0.000827,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.155000,4612325.550000,3875,5305,118.190102,168.669418,174.446274,161.917374,151.991730,142.611588,142.041336,141.793411,143.132248,145.933899,148.446274,160.396713,178.322311,194.008270,208.471069,221.123962,223.256195,212.388428,188.388428,166.264481,155.966949,151.677689,145.727295,117.595055,97.595062,111.264481,117.719025,84.661171,41.099194,17.147125,13.247953,8.145468,10.314894,11.006629,10.404144,4.759513,1.139672,0.182645,0.414051,0.133058,0.095868,0.000000,0.000000,0.252067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.955000,4612325.550000,3889,5305,126.776878,169.090912,175.595047,165.834717,153.966949,146.561981,145.545456,144.446274,145.818176,147.371902,150.900833,163.867767,180.727280,195.950409,210.652893,222.280991,225.396698,214.942154,189.677689,167.801651,158.206604,154.834717,149.090912,120.281006,99.859520,114.347122,120.289276,88.206627,43.123993,18.886795,13.553739,11.507453,12.811587,12.467786,13.196710,6.618191,1.476862,0.360332,0.333059,0.018182,0.189257,0.000000,0.005785,0.242976,1.298347,0.000000,1.084298,0.000000,0.000000,0.000000 -601524.355000,4612325.550000,3911,5305,119.700844,171.502502,175.866135,163.089279,153.742172,142.808273,143.428101,142.923981,143.461166,146.808289,149.485977,161.337219,179.552094,195.485962,210.105804,220.849609,224.403336,214.155396,189.552078,167.585144,155.188446,152.700851,145.709091,118.461166,99.023163,112.535553,118.609924,87.510765,43.171921,17.288448,13.246300,10.696710,12.137207,11.601671,13.748777,5.425630,1.609920,0.294216,0.229753,0.075207,0.214051,0.000000,0.170248,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.955000,4612325.550000,3934,5305,110.623161,165.143845,174.085968,163.722336,150.375229,142.085953,142.276031,141.226456,142.449585,145.366943,148.995041,159.143799,176.350418,192.185120,206.945465,218.747116,221.433060,210.788437,186.416534,164.383484,154.135559,150.309097,144.127274,116.028122,96.722336,110.457870,116.838036,84.342171,41.317375,15.766132,13.102498,7.474393,9.663653,10.738859,11.821502,5.073563,1.209093,0.132232,0.236364,0.143803,0.000000,0.000000,0.004133,0.078513,0.000000,0.000000,0.000000,0.000000,1.307438,0.000000 -601532.555000,4612325.550000,3952,5305,126.985962,172.498352,173.349594,163.572739,150.928101,141.614059,142.779343,141.225632,141.531418,145.713226,148.539673,159.531418,176.423981,193.457031,206.903305,217.399185,220.928101,210.928101,186.142975,164.357864,154.614059,149.895050,143.663635,113.878517,97.440514,109.076866,117.283478,83.597534,40.787621,16.449606,13.060349,7.404971,9.594233,11.218197,11.735554,4.425629,1.619011,0.056199,0.242149,0.000000,0.084298,0.000000,0.009091,0.019009,0.000000,0.000000,0.000000,0.000000,2.462810,0.000000 -601537.755000,4612325.550000,3978,5305,111.292572,165.532257,171.862823,164.796707,149.879364,142.094238,141.515717,141.548782,141.672745,145.523987,146.689270,158.705811,175.705811,192.821503,206.193405,218.102493,220.300842,210.598373,185.482666,164.317368,153.631424,149.276047,143.490921,113.515717,96.061165,108.011581,115.061165,83.722328,41.193409,16.271917,13.044647,7.657864,10.434728,9.109934,9.314064,5.021496,0.888432,0.081818,0.261158,0.000000,0.034711,0.000000,0.014050,0.000000,0.000000,0.000000,2.459504,0.000000,0.000000,0.000000 -601542.955000,4612325.550000,4004,5305,116.793411,164.983475,169.520660,164.727280,150.917358,141.595062,140.495880,140.454559,140.826462,144.363647,147.710739,159.198349,175.975204,193.239670,206.462814,216.933884,221.223145,209.975204,185.727280,164.702484,152.900833,149.347107,143.454559,114.520683,96.760353,108.909119,114.719032,85.429779,42.066135,16.511589,13.041342,8.659516,10.066959,11.500016,10.281007,3.817362,0.819836,0.590911,0.329753,0.004132,0.000000,0.000000,0.004132,0.000000,1.367769,0.000000,0.000000,0.000000,1.356199,0.000000 -601545.955000,4612325.550000,4019,5305,124.281006,166.561981,174.157028,163.338852,150.057861,142.256210,142.578522,142.388443,142.809937,145.347122,148.371918,160.256210,175.776855,192.297531,206.677704,218.231415,221.057861,210.388443,185.388443,163.818192,152.528946,149.454559,143.818192,115.702492,95.958687,109.446297,117.347122,85.479355,40.462826,17.823984,13.074398,6.843813,9.926463,8.594232,11.271916,5.043809,1.086779,0.287604,0.225621,0.141322,0.019835,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.155000,4612325.550000,4040,5305,120.415726,163.523148,172.093384,162.977692,152.333069,142.399200,142.076889,140.159531,141.572754,144.969437,147.399185,159.052078,176.498352,192.754547,206.432236,218.903305,220.795868,210.250427,185.192566,163.432236,152.349594,147.870255,143.118210,115.134720,95.936378,111.068604,115.952904,83.440514,41.506634,15.789273,13.010761,7.854560,10.375223,11.055387,9.957866,4.727281,0.542977,0.580166,0.209918,0.000000,0.006612,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612325.550000,4056,5305,119.693398,166.718201,170.420685,162.619034,151.090103,141.371094,141.263657,139.842163,140.999191,144.619034,147.139694,158.040512,175.751266,191.057037,206.652084,217.652084,220.015717,210.602493,184.561172,163.090103,152.437210,147.966141,142.263657,113.585960,94.354553,107.619019,114.933067,83.676872,40.428940,14.670266,12.933076,7.202492,9.348778,8.293405,10.835552,3.672735,0.662811,0.255372,0.064463,0.074380,0.000000,0.000000,0.000000,0.140497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.955000,4612325.550000,4074,5305,109.093407,169.812408,173.589264,164.415710,151.837204,143.176041,143.035553,141.052094,142.506638,146.035538,148.440506,159.465302,178.052078,194.291748,208.580994,219.630585,223.085129,212.142975,188.052078,165.564468,154.828934,149.688431,145.390915,115.415710,96.985962,109.977699,118.052071,84.738029,41.126465,17.636383,13.217375,7.995881,10.745471,12.048777,12.579355,4.517365,1.182647,0.495870,0.181819,0.008265,0.071075,0.000000,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.355000,4612325.550000,4096,5305,114.003326,171.953735,173.011597,162.143814,152.606613,143.408264,143.540497,142.350418,143.391739,146.292572,149.317352,160.201675,177.705795,193.771912,208.697525,221.523972,223.201660,212.656204,187.284302,165.201675,156.036377,149.912399,144.854553,115.218193,97.408287,110.052902,118.606621,85.548782,42.061172,18.657042,13.168614,8.166954,9.501671,10.551258,11.056212,4.720670,1.156200,0.170249,0.338843,0.021488,0.017356,0.000000,0.023141,0.144629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.555000,4612325.550000,4117,5305,119.738861,165.251266,171.796707,165.623154,150.970261,141.664459,141.490906,140.829758,141.846283,145.143814,147.962006,158.474396,176.482666,193.069427,206.904129,218.424789,221.887604,211.292572,187.846283,164.218201,153.143814,149.474396,144.127274,114.094231,95.532249,109.730598,117.003326,85.606628,42.259525,15.481010,13.102499,6.837203,10.038034,11.580184,10.828115,5.879348,0.721489,0.192562,0.023141,0.000000,0.035538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.555000,4612325.550000,4137,5305,119.529755,168.612411,173.414062,163.876877,151.166122,142.876877,142.166122,140.967789,142.620667,145.761169,147.769440,159.331421,177.463654,193.579346,207.942993,219.885132,221.579346,211.909927,188.281830,165.430588,154.422333,150.595886,143.190918,115.513229,94.885139,110.066948,117.637192,85.347946,40.447128,15.408282,13.017374,5.911583,8.657868,9.444645,10.104146,4.385958,0.519010,0.072728,0.217356,0.009091,0.009918,0.000000,0.087604,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.355000,4612325.550000,4151,5305,128.657867,170.170258,173.748779,164.434723,150.996704,142.509109,142.236374,141.153732,142.021500,145.707458,148.294235,158.327286,176.533890,193.252899,207.666122,220.476044,221.649597,213.004974,186.666122,163.947113,154.062820,150.029770,143.781830,114.947121,94.773567,110.252907,117.839684,86.071091,40.525642,15.470265,13.071094,6.747119,8.907453,9.995059,10.533897,3.483479,0.867770,0.086777,0.167770,0.000000,0.111571,0.000000,0.000000,0.148761,0.000000,2.535537,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612325.550000,4166,5305,127.175224,165.414871,173.646286,165.059494,151.836365,142.200012,142.497528,142.728943,142.960342,147.282654,149.199997,160.885941,178.323975,194.390091,209.009918,220.266113,223.472717,213.935532,188.241333,165.985123,154.927261,149.613220,145.381821,116.720680,98.712418,110.927292,116.836380,87.406631,42.332256,16.281012,13.216549,6.537202,11.038034,9.500841,10.804973,5.225628,0.780167,0.264463,0.066942,0.069422,0.036364,0.000000,0.092563,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.155000,4612325.550000,4190,5305,116.930588,173.071091,171.831421,163.980179,151.517365,142.608276,140.740509,140.881012,140.930588,144.947113,147.269440,157.467789,175.798355,192.591751,205.757034,219.674393,221.757034,211.236374,185.707458,162.500839,152.641342,149.269440,141.054565,113.806625,94.038040,106.947121,115.699188,84.558693,40.294235,15.291753,12.823159,5.782655,9.208282,8.226462,9.028941,3.794225,0.542977,0.559506,0.001653,0.150413,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.155000,4612325.550000,4210,5305,123.815712,176.633896,174.468597,166.700012,152.989273,143.245468,143.005798,142.526459,143.468597,147.542984,149.766129,160.741333,177.766129,194.485138,208.650421,219.865295,222.228943,213.237198,188.088440,164.642151,154.270264,149.047119,144.881821,114.658684,95.741333,109.972740,118.104965,87.352905,42.113239,18.418201,13.171093,6.177698,11.611587,11.077703,10.682659,4.447115,1.500829,0.068595,0.081819,0.041323,0.009091,0.000000,0.071075,0.155373,0.000000,0.000000,0.000000,0.000000,2.719008,0.000000 -601586.955000,4612325.550000,4224,5305,133.113235,174.857040,173.121490,166.311584,153.204147,143.452072,141.774384,142.402496,141.600830,144.774384,149.972733,159.625626,176.600830,194.939682,208.220673,219.369431,222.443817,212.716537,186.559509,165.121490,153.981003,150.526459,144.154556,115.096703,95.724800,108.022324,117.617363,85.303314,40.452087,18.077703,13.104977,6.371088,8.908280,8.345470,11.070262,4.501661,0.513226,0.297521,0.000000,0.019835,0.000000,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.155000,4612325.550000,4240,5305,126.851265,177.545456,174.595047,166.991730,154.586777,144.190079,142.537186,141.677689,143.057846,146.933884,147.975204,159.876038,176.892563,193.636368,208.619827,219.793396,223.239670,211.768600,187.107437,163.000000,154.256195,150.082642,143.090912,114.925644,94.264488,108.033081,116.644653,86.123993,42.082664,17.310762,13.008284,7.629764,9.267785,8.999190,11.611588,3.556206,0.576035,0.184298,0.087604,0.100827,0.067769,0.000000,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.955000,4612325.550000,4254,5305,127.576874,176.279343,176.295868,168.461182,155.651260,145.585144,145.965317,145.940521,143.461182,148.766968,149.593414,160.659531,177.948761,196.601654,210.543808,221.254547,224.238022,214.948761,187.642975,165.626465,155.221512,147.841339,145.981842,117.147118,96.180183,109.469437,119.064468,87.973572,40.890926,18.980186,13.271093,9.273565,11.334728,10.543818,10.090922,5.042158,1.242154,0.138843,0.488431,0.020661,0.124794,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.955000,4612325.550000,4269,5305,131.604965,175.241333,175.604965,166.976868,154.092575,143.348770,141.828110,141.968597,141.571915,146.737198,147.588440,158.489273,175.786789,193.348770,206.671082,219.307449,221.365295,212.547119,186.398361,163.894226,151.662827,148.447937,142.290924,114.373566,95.340508,107.654556,117.241333,85.935547,42.819851,16.785969,12.935556,5.315711,10.203321,10.218198,9.850427,3.497526,0.066116,0.388431,0.082645,0.004132,0.000000,0.000000,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.755000,4612325.550000,4293,5305,125.405800,184.686783,176.240509,168.571091,155.364471,146.314896,144.959518,144.141342,144.678528,147.860336,150.257034,161.223984,177.314896,195.314896,210.075226,221.430588,223.934723,211.893402,186.909927,164.215714,155.422333,149.612411,143.827286,114.174393,96.174393,108.521500,118.306625,87.438858,42.653740,18.678530,13.075226,6.772738,11.461174,10.662001,12.089271,3.302487,0.292564,0.197522,0.240497,0.000000,0.284299,0.000000,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.755000,4612325.550000,4318,5305,139.228134,182.914078,174.360367,170.054581,154.575226,142.401688,142.004990,142.302505,142.443008,146.690933,146.872757,157.583481,175.633087,192.889282,207.550430,218.310760,220.558685,209.500839,185.715729,163.343826,150.624802,146.302505,140.781845,111.823151,93.773567,107.178528,115.310760,87.806625,42.550434,17.083488,12.798367,6.288439,9.234728,10.818198,10.719848,3.733892,0.133885,0.287605,0.231405,0.011570,0.028099,0.000000,0.035538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.561984 -601608.355000,4612325.550000,4331,5305,135.049606,183.206604,175.801651,169.743805,154.132233,143.413223,142.991730,142.520660,141.859497,147.214874,147.123962,157.966949,174.867767,192.743805,206.190079,218.677689,219.652893,210.082642,184.611572,161.570251,150.661163,145.396698,140.454544,111.553734,91.685966,105.123985,114.082664,84.404976,41.446301,16.047951,12.768614,6.203315,10.122332,10.337207,9.429765,4.853727,1.174382,0.590911,0.204959,0.252893,0.033885,0.000000,0.001653,0.100000,0.000000,0.000000,0.000000,1.058678,0.000000,0.000000 -601611.155000,4612325.550000,4345,5305,135.358688,194.482666,178.962006,170.937210,155.730591,143.581833,143.631424,143.209930,141.209930,147.730591,147.590103,158.565308,175.482666,193.457870,207.854568,218.763657,220.234726,210.441345,184.788452,161.829773,150.284317,146.821503,140.581833,110.623154,92.656212,106.011581,114.813232,84.961998,42.325638,18.785143,12.780184,6.633895,11.086793,8.969438,10.543817,4.404142,1.448763,0.570250,0.076033,0.008265,0.020661,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612325.550000,4360,5305,122.163651,175.031418,170.965302,160.485962,147.031418,134.948761,133.940506,133.419846,132.502487,135.188446,136.006638,146.180176,162.684311,178.882645,191.775208,202.353729,204.411575,192.857864,168.436371,148.824799,138.213226,134.651260,128.618195,102.469437,85.254555,98.262833,105.717369,76.709106,36.957043,14.276051,11.692580,9.316542,8.773569,8.193401,10.220676,4.314885,0.928929,0.199174,0.235538,0.000000,0.014876,0.000000,0.065290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.355000,4612325.550000,4376,5305,120.425636,172.491745,169.541336,161.086777,145.863647,136.004150,134.640503,131.491745,130.822327,133.235550,134.144638,144.466965,160.508286,175.475220,187.814072,198.086777,200.095047,188.070251,165.144638,146.574402,135.235550,131.243805,127.954552,100.359512,84.210762,94.830589,104.293396,75.376053,36.235558,15.639688,11.632251,9.347122,10.237206,10.952082,8.852908,3.157859,0.696697,0.355373,0.225620,0.000000,0.054546,0.000000,0.019835,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.955000,4612325.550000,4394,5305,109.617371,175.923157,170.898361,160.542984,145.567780,135.336380,133.055374,131.997528,130.410751,131.865295,134.071915,144.005798,160.154556,174.452072,186.394226,196.584305,198.319839,186.460342,163.848770,143.377701,133.873566,132.030594,127.245461,99.790916,83.923149,95.179352,102.113235,75.741341,35.435555,15.688448,11.567787,8.343815,9.671916,8.835551,9.557040,3.408272,0.936366,0.195869,0.057025,0.000000,0.055372,0.000000,0.075207,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601623.755000,4612325.550000,4408,5305,126.561996,173.933884,172.256195,160.371902,144.859497,134.685974,133.471085,130.677704,131.165298,131.991745,133.727295,143.363632,159.776855,174.520660,186.504135,197.214874,198.090912,186.305786,163.099167,144.165283,133.454559,132.140518,124.909103,97.925636,83.586792,94.479355,101.123985,74.157043,35.082664,16.583488,11.355392,9.038032,8.896708,10.628942,11.910760,3.926455,1.833887,0.300828,0.194216,0.008265,0.158678,0.000000,0.074381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601626.355000,4612325.550000,4421,5305,115.895065,168.828949,169.085144,158.291763,142.671921,133.399200,133.200851,129.457047,128.473572,130.771103,130.994232,142.076889,157.878540,172.729782,184.019028,194.159531,195.118210,183.961182,160.581009,141.804153,130.919861,129.738037,123.663658,97.457039,81.035561,92.423988,100.142990,72.985970,34.382664,12.947125,11.242168,8.079352,8.879354,9.643816,9.300015,3.638852,0.882647,0.424795,0.091736,0.136364,0.004132,0.000000,0.147108,0.052893,0.000000,0.000000,0.000000,0.000000,1.390083,0.000000 -601631.355000,4612325.550000,4446,5305,117.357040,174.340515,170.357056,158.720688,144.092590,132.340500,131.646286,130.514053,128.828110,130.133896,129.770264,141.100845,156.910767,170.406631,183.266144,193.381851,193.580185,182.778534,159.456223,140.332260,129.638031,127.695885,122.472748,95.390099,79.985138,91.183487,99.249603,70.514069,32.910767,13.528116,11.133902,7.300840,8.869435,6.865302,9.774396,3.378520,0.738845,0.105786,0.150414,0.000000,0.000000,0.000000,0.000000,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.755000,4612325.550000,4463,5305,113.439682,179.745468,170.373566,158.869431,143.869431,132.505798,131.695877,129.348770,129.505798,131.464478,129.654556,140.852905,155.885956,171.175217,182.613235,193.348770,192.704147,180.051254,158.059509,138.200012,129.795044,127.282654,123.200012,95.613235,78.869438,90.580177,98.869431,70.695877,32.200024,14.379356,11.200019,6.819847,6.861169,9.322328,7.638857,2.880173,0.973556,0.142976,0.289257,0.000000,0.157025,0.000000,0.004132,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.155000,4612325.550000,4485,5305,117.671089,171.935532,169.629745,158.133881,145.927261,132.125641,132.976883,130.282669,129.464478,131.795059,131.009933,141.398346,155.638016,171.935532,183.166931,193.761978,193.902466,181.241318,159.480988,139.836365,129.695892,125.885971,121.200020,94.960350,78.563652,89.481010,99.315720,72.935555,32.497540,14.613241,11.018201,8.989271,7.657037,9.016542,9.937206,2.666123,0.654548,0.249588,0.000000,0.000000,0.000000,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.955000,4612325.550000,4504,5305,126.055382,183.790924,171.063629,160.551239,145.675201,134.311584,132.666946,130.650421,130.220673,132.947937,132.063644,142.121490,157.228912,172.319824,183.385941,193.286789,194.121490,181.369415,160.030579,139.947937,129.931412,128.468597,122.336372,96.526459,79.220673,91.261993,99.501663,72.551254,34.228943,14.538860,11.121507,7.795054,7.730591,7.790921,10.631421,4.753729,0.495043,0.642976,0.008265,0.006612,0.048760,0.000000,0.269422,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.955000,4612325.550000,4519,5305,118.438042,183.008286,171.041336,162.388443,146.140518,133.727295,132.933899,130.322327,129.181839,132.595062,130.586792,140.462830,156.024811,170.884308,182.545471,193.404968,192.975220,180.628113,158.570267,139.165298,129.297531,126.603325,121.090927,95.157051,79.074394,91.471100,99.884323,72.165314,32.537209,14.755390,11.008284,9.107452,8.214890,8.257863,8.159519,3.974388,0.580167,0.082645,0.030579,0.000000,0.263637,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.555000,4612325.550000,4532,5305,121.738029,182.043808,172.010757,161.837204,146.481827,134.366119,135.176041,131.523148,131.994232,136.349594,135.614075,146.043808,161.423981,179.382645,191.200836,201.746292,203.167770,190.159515,168.481827,147.217361,136.390915,133.961166,129.754547,102.035561,83.465309,96.903328,104.225639,76.308281,35.746300,14.003324,11.795886,8.714064,7.936377,8.552078,9.356214,2.586784,0.922316,0.235538,0.127273,0.114050,0.066942,0.000000,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.355000,4612325.550000,4551,5305,126.584320,184.129761,178.840500,166.898361,151.881821,138.642151,139.997528,139.088440,138.848770,144.096710,144.138031,155.989273,174.427277,193.369431,208.162827,221.138031,223.228943,212.716537,187.567780,164.509933,152.584305,149.220673,146.154556,113.708290,95.997543,111.262009,120.344643,87.146309,43.567787,17.623985,13.286796,9.203321,10.935555,11.666132,12.336380,4.365297,0.852068,0.126447,0.313224,0.036364,0.147934,0.047934,0.261985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.155000,4612325.550000,4580,5305,105.965309,179.552078,177.229752,165.609924,148.775208,138.915710,139.403305,137.419846,137.229752,142.527283,144.320663,155.742157,173.089264,192.271088,206.775208,220.047943,223.130585,210.560333,186.568604,162.667770,151.642975,147.866119,143.981827,114.213226,95.609924,109.312401,117.238022,86.973572,43.221508,15.647950,13.089273,7.770261,9.108281,9.219024,10.595881,5.060339,1.503309,0.267769,0.000000,0.094216,0.000000,0.242975,0.341324,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.955000,4612325.550000,4624,5305,103.499184,179.730576,175.152084,164.209915,149.879349,139.838013,138.846283,138.457855,137.507446,142.714050,144.780167,155.995041,174.317368,192.011597,206.201675,219.218201,222.408279,211.424820,186.953720,163.276031,150.937195,148.490906,144.036362,114.755386,96.862823,109.763649,118.928940,88.102493,45.548782,17.056217,13.094234,8.115716,10.790101,9.245469,11.695056,5.285959,1.217358,0.704960,0.280992,0.149588,0.089257,0.110745,0.225621,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.155000,4612325.550000,4690,5305,106.493408,170.402512,174.096725,163.402512,147.749619,137.857056,137.650436,135.212418,135.518188,140.419037,142.749619,154.286804,171.857056,189.600845,203.022339,217.038864,220.352921,208.650436,183.931427,159.253738,149.633911,146.195892,141.427292,112.303322,93.972748,108.964478,117.964478,86.129768,42.352909,17.785969,12.857043,8.475221,10.068611,9.742164,11.351254,5.425628,0.806613,0.309092,0.204133,0.028100,0.000000,0.000000,0.204133,0.164463,0.000000,0.000000,0.000000,0.000000,5.646282,0.000000 -601700.355000,4612325.550000,4791,5305,105.738846,170.433060,172.804962,163.061172,147.044647,138.829758,137.457855,135.755371,136.251236,140.209915,142.970245,153.895889,172.763641,190.912399,205.838013,218.259506,220.548767,209.102478,185.259506,160.284317,148.714066,147.052902,141.400009,111.077690,94.838020,108.391739,119.523972,87.185143,44.325642,17.732252,12.854565,7.514063,10.588448,10.458693,10.997538,6.635547,0.938019,0.505786,0.100827,0.158678,0.263637,0.000000,0.186778,0.547109,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.755000,4612325.550000,4938,5305,114.467781,168.831421,172.476044,160.583481,146.831421,137.831421,136.864471,135.459518,134.971909,137.938858,140.872742,153.087616,171.261169,188.897537,203.178528,215.748779,218.484314,206.624802,181.938858,158.864471,148.219849,144.947113,141.781830,109.947121,91.459518,107.492577,119.418198,86.600014,42.004978,17.439690,12.889276,7.414062,10.491752,11.238861,10.623983,4.555379,0.496695,0.195869,0.080992,0.004133,0.143802,0.021488,0.288431,0.666117,0.000000,0.000000,1.189256,0.000000,1.309091,0.000000 -601760.555000,4612325.550000,5092,5305,111.457031,174.870255,177.167770,163.374390,147.465302,136.291748,137.060349,135.671906,135.275223,137.589264,139.771088,153.225632,171.944641,189.258682,203.729752,215.300003,217.366119,204.209091,179.539673,159.060333,146.647110,143.845459,138.663635,109.820671,90.142990,105.547943,117.390915,84.068611,44.027290,16.714069,12.605803,10.214893,9.636382,10.528114,12.167785,6.233068,0.428100,0.067769,0.201653,0.008265,0.004133,0.000000,0.035538,0.407439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.155000,4612325.550000,5170,5305,112.456207,172.029770,177.624802,162.327286,147.897522,136.856216,136.409927,136.368607,134.459518,137.814896,138.434723,152.285950,170.847946,189.649597,202.856216,216.376862,217.996689,205.509109,181.881012,157.963654,147.748779,145.145462,139.145462,108.723976,90.021500,105.120674,117.781830,85.823151,43.864483,17.795059,12.649605,10.467784,10.223157,10.284313,12.390924,5.841330,0.655374,0.395042,0.209919,0.228100,0.004959,0.314877,0.614878,0.462811,1.517356,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.155000,4612325.550000,5225,5305,118.296715,177.387619,176.519852,164.404144,149.668610,137.891754,138.751266,135.238861,135.362823,138.288452,139.916550,152.619034,172.817368,189.073578,202.470261,216.007462,217.784317,204.742996,180.552917,157.296707,146.412415,144.809113,138.354568,106.139679,89.437210,103.519852,117.875221,84.585968,41.420681,16.884315,12.577706,10.861999,9.892579,11.433903,10.882660,5.197529,1.485953,1.220663,0.232233,0.072727,0.190083,0.039670,0.464464,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.755000,4612325.550000,5268,5305,118.840508,183.691757,178.526474,164.716553,149.501678,137.873581,137.848785,136.790939,136.427292,138.947952,139.080185,152.733078,171.427292,188.964493,202.666962,215.675232,216.724823,205.377716,180.443832,157.823990,145.361176,143.485153,138.609116,107.890091,89.666962,103.716537,117.377693,85.311584,43.733074,15.814068,12.600846,11.824810,10.441340,10.581836,12.350429,6.523151,0.877688,0.289257,0.123967,0.000000,0.135538,0.000000,0.073554,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.555000,4612325.550000,5312,5305,113.876869,180.571091,179.959518,167.000839,150.893402,138.207458,139.447113,137.190918,136.777710,140.529770,141.405792,152.893402,171.430588,190.670258,203.653732,218.215714,217.645462,204.199188,181.471909,158.951248,147.488449,144.711578,139.281830,107.951263,89.959518,105.347954,118.785957,85.959518,43.653736,18.543821,12.662003,14.047124,11.661176,11.297537,11.516545,7.123978,1.446284,0.419835,0.528100,0.069422,0.009918,0.067769,0.058678,0.310744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.755000,4612325.550000,5328,5305,122.329765,184.375214,179.358688,164.771912,150.391754,139.077682,139.499176,136.961990,137.193390,141.003311,140.804962,152.647949,171.573563,191.441330,204.838013,217.557022,218.193390,204.416534,182.036362,158.309097,147.862808,145.234711,139.309097,107.829773,89.821510,104.920677,118.722328,85.019852,41.614899,16.484316,12.664483,12.823158,11.943820,11.325637,13.119850,7.919845,1.244630,0.404133,0.160331,0.287604,0.450414,0.584298,0.110744,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601810.355000,4612325.550000,5341,5305,107.475220,195.004166,180.169449,167.119873,151.706650,138.690109,140.326477,138.756226,138.045486,141.483505,141.549622,154.615738,172.433914,191.384323,204.276886,218.169449,217.789291,205.301682,180.235565,159.326477,146.838852,144.557877,138.863663,108.103325,89.764473,105.706627,117.714890,86.475212,44.062008,17.857872,12.623985,12.178527,12.477703,12.292580,13.676876,7.287615,1.327276,0.733885,0.420662,0.011570,0.006612,0.000000,0.023967,0.438017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601814.555000,4612325.550000,5362,5305,139.596710,205.103317,195.161179,177.078522,158.739685,144.508286,148.698364,145.979355,146.235550,151.227295,148.781006,163.103317,180.640518,198.533081,212.871918,224.111588,224.772751,208.665298,186.235550,163.028946,150.376053,147.227295,141.227295,110.442162,90.359520,107.764481,120.367783,87.028938,43.880184,16.916546,12.838862,14.524809,11.476050,10.283487,14.460346,10.206625,0.732233,0.771903,0.745455,0.056199,0.743803,0.016529,0.019008,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601821.555000,4612325.550000,5397,5305,124.974388,192.420685,179.437210,168.321503,152.445480,136.602493,138.048782,135.866959,136.437210,141.057037,139.544647,152.214066,169.511597,188.784317,203.511597,215.255386,215.495056,201.478531,178.726471,156.222336,145.693405,142.453735,136.536377,106.081833,89.511581,106.379349,118.354553,85.908279,44.966137,15.741341,12.412416,12.293403,9.052908,12.695885,14.171917,8.075217,0.673555,0.384299,0.000000,0.068596,0.044629,0.037190,0.000000,0.300000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.355000,4612325.550000,5446,5305,156.386780,199.932236,181.709076,173.262802,154.304123,139.940506,139.659515,138.328934,138.105789,144.725632,141.568604,153.609909,171.180161,189.700836,205.080994,218.370255,217.923981,202.535538,179.733871,159.519012,147.287598,145.180176,138.890915,105.618187,91.535545,108.890915,117.857857,84.271088,42.370266,17.614069,12.626465,14.598364,10.147123,10.562823,11.942163,7.700012,0.753721,0.469422,0.152066,0.011571,0.147108,0.000000,0.101653,0.298347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.155000,4612325.550000,5480,5305,161.161179,211.022324,187.799179,173.840500,150.361160,138.650421,136.898361,136.675217,136.113235,144.402496,138.890091,152.650421,171.030594,188.931412,204.427277,217.493393,217.757858,200.501663,178.890091,157.782654,145.154556,142.468597,137.336380,104.138023,87.055382,105.154556,117.666954,83.171082,42.361179,16.932247,12.485142,15.626463,8.588446,11.773570,11.919023,9.015714,1.530581,1.167771,0.388431,0.272729,0.620662,0.318182,1.193390,0.469422,0.000000,0.000000,0.000000,0.000000,0.000000,2.477686 -601841.955000,4612325.550000,5499,5305,119.729767,183.828934,178.944641,167.192566,149.787613,138.043808,136.440521,134.209106,135.333069,138.746292,138.283478,150.101654,167.597534,185.895050,199.663635,211.465302,211.043808,198.167770,176.316528,155.167770,144.126450,140.771088,135.209106,104.159515,86.266945,104.382660,115.911583,83.787621,43.911591,16.875225,12.291754,12.878528,9.143819,10.547951,10.323155,6.523978,0.733886,0.510745,0.056199,0.000000,0.094215,0.028926,0.091736,0.147934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.755000,4612325.550000,5523,5305,97.982666,167.908264,172.875214,160.197540,145.346298,134.685150,134.412415,131.065308,132.181015,133.172745,134.693405,146.106628,164.395889,181.569427,194.668594,205.734711,207.792572,196.552902,173.552902,151.412415,140.387619,136.949600,132.172745,101.296715,84.437210,100.891754,112.263657,81.445473,40.619026,16.276051,12.015720,8.061997,9.285141,9.249603,11.444644,5.678521,0.254546,0.116529,0.276860,0.004132,0.001653,0.000000,0.360331,0.127273,0.000000,0.000000,0.000000,1.198347,0.000000,0.000000 -601854.155000,4612325.550000,5560,5305,91.121506,166.648773,169.705811,158.100037,142.595901,131.951248,133.620697,132.653732,131.496719,133.356216,135.728119,148.182678,165.785965,182.372742,195.951263,208.141342,209.637207,198.405807,175.381012,154.066956,143.050430,138.984314,135.190933,104.802498,87.709114,103.017380,114.397545,83.471924,43.108280,15.713240,12.290102,9.510757,9.769438,10.417371,13.969437,6.859513,3.420664,1.836365,2.063638,1.804134,1.446282,1.042150,0.392563,0.176034,0.000000,1.364463,0.000000,0.000000,0.000000,0.000000 -601866.155000,4612325.550000,5620,5305,100.140511,165.752060,171.322311,159.776855,141.991745,135.099182,132.983475,130.900833,130.181824,132.586792,134.669434,146.157043,164.578506,181.057846,194.859528,206.140518,206.652908,196.247955,173.016525,151.702499,140.859528,137.231400,131.090912,101.363647,83.719025,99.371910,112.586784,83.314072,41.033081,15.609935,11.917375,7.615715,9.484315,9.336380,10.655388,6.260340,0.711572,0.118182,0.002479,0.000000,0.023141,0.000000,0.000000,0.271075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.355000,4612325.550000,5666,5305,98.230598,165.608292,171.195053,156.980179,142.153732,133.748779,132.509109,129.839676,129.963654,131.583481,133.600006,144.971909,164.079361,179.823135,193.095871,204.550415,206.591736,195.624786,173.517349,150.881012,139.757034,136.575226,130.509109,100.434723,83.971916,100.947121,113.633072,83.591751,41.071095,14.242991,11.864482,8.493403,9.568610,9.604976,10.002493,4.212404,0.348761,0.000000,0.298347,0.137190,0.000827,0.000000,0.005785,0.123141,1.506612,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.555000,4612325.550000,5682,5305,106.206635,163.326462,170.376053,156.293411,141.797531,132.549606,131.623978,127.929771,127.987617,130.946304,131.714890,144.045471,162.731415,180.061996,192.632248,203.971085,206.376053,195.979355,172.078522,151.400848,139.475220,137.020676,131.863647,102.450432,85.326462,101.425636,113.921501,84.095055,41.640514,15.924811,11.987622,9.224808,8.702497,9.381008,11.971916,5.828935,1.487606,0.894217,0.389257,0.334711,0.242976,0.276033,0.359506,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.555000,4612325.550000,5707,5305,111.883492,166.123154,170.222336,159.288452,142.362823,133.462006,132.048782,128.784317,128.718201,130.214066,133.528122,144.181015,163.123154,179.569443,192.519852,205.015717,206.585968,196.197540,172.495056,151.742996,138.660355,136.833908,131.809113,101.114899,83.495064,99.569443,114.230598,84.098366,42.172752,15.465307,11.982663,6.079352,8.000842,10.337207,9.904975,4.393396,0.253720,0.115703,0.486778,0.076034,0.003306,0.000000,0.000000,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601891.755000,4612325.550000,5748,5305,106.406631,166.150436,171.613251,157.753738,145.175232,133.993393,131.290924,130.158691,129.919022,132.249588,134.340500,145.571930,164.249619,180.927292,194.588425,206.464493,207.786804,197.464462,175.109116,152.993408,141.613251,137.563660,132.563644,102.357040,85.993408,100.464478,114.803307,86.166962,42.869438,16.601671,12.051258,8.827287,9.569438,10.095058,10.867785,5.615711,0.696696,0.463637,0.187604,0.156199,0.070248,0.000000,0.195868,0.247108,0.000000,0.000000,2.683471,0.000000,0.000000,0.000000 -601905.355000,4612325.550000,5816,5305,106.264481,163.321487,167.393387,158.509094,144.608276,133.591751,132.892578,131.801666,130.256210,133.561996,136.289261,147.120667,165.633057,182.914047,195.666107,207.542145,210.476028,199.467758,177.401657,154.426437,143.261169,139.484314,133.236389,104.583481,86.054565,103.219849,116.558701,87.790100,44.401676,15.695887,12.112416,9.066131,9.448776,9.865305,10.849600,5.321496,1.387606,1.214878,0.714051,0.422315,0.110744,0.000000,0.149587,0.024794,0.000000,1.395041,0.000000,0.000000,2.851240,0.000000 -601922.355000,4612325.550000,5901,5305,121.920677,174.259521,168.763657,156.796692,142.763641,131.185150,130.862823,128.681015,127.829773,130.499191,131.201675,144.532242,161.714050,179.176880,193.036377,205.300842,207.251266,196.714066,173.904144,151.730576,139.895874,136.143814,131.581833,100.920677,83.730598,100.730598,115.623161,86.895889,41.019855,16.249605,11.962002,6.637201,7.568610,8.384311,10.089271,3.223148,0.524795,0.234711,0.000000,0.080166,0.108265,0.000000,0.314877,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601938.955000,4612325.550000,5984,5305,102.133904,176.241318,172.332230,160.935532,143.968597,132.307449,132.927277,129.563644,129.869446,132.431412,132.596710,144.662796,162.885941,180.514038,193.125626,205.018188,206.737198,195.224808,173.241318,151.398361,139.985123,136.538849,129.927277,100.910759,83.431419,100.018196,114.051254,84.563652,40.514069,16.619854,11.811589,10.572742,10.483488,10.904975,10.174397,5.447116,0.742977,0.221488,0.176034,0.000000,0.065289,0.000000,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.355000,4612325.550000,6056,5305,113.657875,180.112411,171.418198,158.723984,141.930588,130.955399,131.285965,127.930603,128.310760,130.269440,130.641342,142.963654,160.790100,178.575226,192.500839,202.269440,204.252899,192.897537,170.343811,148.798355,138.162003,135.847946,128.690933,98.542168,82.046295,97.633080,110.517380,83.244644,39.889278,15.351259,11.699192,10.719851,10.520679,10.091752,10.528114,5.379349,0.517357,0.600827,0.164463,0.070248,0.000000,0.028926,0.095869,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.555000,4612325.550000,6092,5305,95.152908,169.144623,169.483475,157.359497,142.888443,131.615723,130.466965,126.268608,124.913239,126.855385,127.012413,138.987610,155.293411,170.987610,183.706604,195.185944,196.723145,182.706604,162.243805,141.136368,131.665298,128.590927,122.863655,94.524811,78.632248,93.475220,105.161179,76.351257,35.772747,14.212415,11.169439,7.243814,7.804973,9.314891,7.882656,3.394222,0.290084,0.314051,0.066116,0.035537,0.047934,0.076860,0.000000,0.519835,0.000000,0.000000,0.000000,3.787604,0.000000,0.000000 -601967.755000,4612325.550000,6128,5305,80.911598,167.688461,166.977722,157.333099,141.663681,129.415710,128.176056,124.862000,124.696709,126.754562,125.589272,137.539703,152.870285,171.209137,182.316574,194.952927,195.242188,183.068634,161.250458,141.514908,130.961166,128.217377,122.663651,93.415726,76.886803,93.614067,104.762833,75.985970,36.266960,14.042168,11.151259,9.389269,9.290925,9.356214,8.702492,2.614881,0.710745,0.001653,0.119835,0.045455,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.755000,4612325.550000,6173,5305,105.658684,168.443832,168.650436,159.989288,142.022339,132.204147,131.352905,127.881828,128.030594,130.542984,129.542984,142.592590,158.518204,175.195877,188.394226,200.096710,200.022324,187.460342,164.385971,145.361176,135.402496,131.865295,125.154564,97.766129,81.385971,97.055382,105.757858,77.171089,35.493412,13.293406,11.377705,8.230592,9.678527,9.383487,10.933898,3.373559,0.556200,0.209093,0.235538,0.301654,0.000000,0.076860,0.247108,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601983.755000,4612325.550000,6208,5305,111.080185,174.187622,169.352921,161.534729,143.336395,131.906631,130.576050,128.245468,128.055389,132.642166,129.857040,142.518204,158.452087,176.245483,189.096725,202.534729,201.799194,188.245483,166.832260,146.369446,135.501678,132.303329,128.245468,98.799194,82.179359,98.088448,107.377701,75.848778,38.468613,13.200017,11.658696,11.288445,9.970263,10.555386,8.157862,4.327282,0.506613,0.102480,0.067769,0.079339,0.000000,0.000000,0.182645,0.142975,0.000000,1.511570,0.000000,0.000000,0.000000,0.000000 -601989.755000,4612325.550000,6238,5305,113.857872,176.163635,170.824799,162.419846,142.957031,132.808289,130.750443,128.072754,128.271103,133.667786,129.907455,142.229752,157.667770,175.386780,190.262817,203.204971,202.320663,188.651245,167.626450,146.023148,136.634735,133.519028,127.436386,98.188454,80.717377,98.188454,108.626472,77.477707,36.758701,14.038033,11.585142,9.469435,8.879353,9.230594,8.814060,4.757860,0.747936,0.736366,0.053719,0.181819,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601994.955000,4612325.550000,6264,5305,122.599197,185.276871,171.483490,165.161179,148.012405,134.524811,134.458694,131.045471,131.946304,136.607452,132.285141,144.392578,160.739685,178.896713,193.004150,205.161179,206.293411,191.318192,170.243820,150.822327,140.070267,136.698364,131.590927,101.549606,85.640518,101.764488,110.681839,80.194237,38.805805,16.648779,11.962829,14.120676,10.405800,11.358694,11.044641,6.280176,1.179342,0.485125,0.646282,0.109091,0.000000,0.162810,0.679339,0.301653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602000.955000,4612325.550000,6294,5305,119.055374,178.435547,170.394226,163.129761,143.881821,134.154541,131.906616,130.005783,129.939667,135.410751,131.989258,143.377701,159.088440,176.518188,191.228943,204.179352,203.914886,189.526459,169.410751,147.435547,138.906616,134.980988,129.063644,99.947945,84.823982,101.799187,109.154549,76.328117,36.014069,15.395058,11.733077,11.790925,10.428114,10.411585,9.762821,6.157035,0.471902,0.614052,0.166116,0.000000,0.000000,0.351240,0.333058,0.252066,0.000000,1.361157,0.000000,0.000000,0.000000,0.000000 -602004.755000,4612325.550000,6313,5305,101.464485,159.117371,161.323975,153.555374,137.836380,127.109100,125.092575,123.390091,122.547119,125.571907,128.001663,138.571915,155.357040,172.249603,185.671082,197.927277,199.100830,188.927277,165.910751,145.571915,134.803314,132.042984,125.836372,98.373573,81.365311,97.390099,105.604965,78.902496,38.638035,15.341340,11.439688,7.698361,9.745468,9.555386,9.225636,3.578520,1.440499,0.214050,0.251240,0.000000,0.294216,0.000827,0.721489,0.293389,0.000000,0.000000,0.000000,1.584298,0.000000,0.000000 -602009.955000,4612325.550000,6339,5305,112.118195,154.861984,149.928116,146.465317,130.547943,120.704971,119.200844,116.977699,117.655388,119.076874,122.093407,132.919846,150.903336,167.176041,180.680176,192.787613,195.366119,184.663635,161.316528,140.539688,130.514893,125.200844,119.118195,92.291748,75.283485,91.242165,104.233902,77.357864,36.076874,12.218198,10.828944,5.252077,6.723152,7.376046,8.603319,2.127279,0.840498,0.439671,0.260331,0.044628,0.104959,0.000000,0.180992,0.143802,2.342975,0.000000,0.000000,0.000000,0.000000,0.000000 -602016.355000,4612325.550000,6371,5305,102.232254,146.637207,153.471924,144.785980,130.422333,120.414070,119.290100,116.314896,115.455391,117.554565,119.232254,131.116547,148.653748,164.843811,178.976044,190.281830,191.017365,183.075226,158.438873,139.009109,128.124817,124.091759,117.827293,90.124817,73.918213,89.496712,103.546310,78.546303,36.273571,13.806628,10.711589,5.848770,8.400839,10.320675,9.237203,4.191744,0.894217,0.861158,0.154546,0.042149,0.277687,0.000000,0.100000,0.461158,2.347934,0.000000,0.000000,0.000000,0.000000,0.000000 -602022.755000,4612325.550000,6403,5305,99.520691,142.884293,152.297516,141.636383,129.760345,118.586792,117.057869,113.239685,113.421501,115.867783,116.876053,129.148773,146.884293,163.421494,176.826447,187.900833,188.743805,178.247940,156.148758,136.074402,125.925636,121.975220,114.272743,87.000023,70.644653,88.719032,104.024811,77.553741,35.446301,12.916547,10.388449,7.358689,9.049601,7.549598,9.076875,4.025628,0.565292,0.213224,0.348761,0.000000,0.200001,0.000000,0.079339,0.155372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602026.155000,4612325.550000,6420,5305,75.028122,140.383484,148.838043,140.127289,125.457863,118.218193,114.697533,111.780182,112.234734,112.300835,114.168617,126.408279,143.581833,160.738861,173.482666,184.804977,185.953735,175.391754,152.276047,132.722336,122.333893,117.747116,112.763657,84.201675,68.904152,86.813240,102.292572,76.928947,35.730598,14.547125,10.251259,5.870258,6.961994,8.588444,8.872741,4.954555,0.319836,0.404134,0.266116,0.122314,0.000000,0.003306,0.304133,0.230579,0.000000,0.000000,0.000000,1.514050,3.510744,0.000000 -602030.555000,4612325.550000,6442,5305,99.521507,140.595901,147.488464,138.364487,123.447128,113.876877,110.108284,109.075226,107.513245,108.662003,111.240517,121.670265,140.281845,156.405792,168.678528,180.835556,182.430588,171.504974,149.108292,128.480179,119.703323,115.653740,108.463654,82.579361,65.050430,82.752914,98.901672,73.959526,34.174397,13.719851,9.860350,7.428937,9.409106,9.894228,8.164478,4.289265,1.393392,0.095042,0.234712,0.191736,0.159504,0.538843,0.068595,0.080992,2.274380,1.859504,0.000000,1.419835,1.857851,0.000000 -602036.355000,4612325.550000,6471,5305,112.796715,143.854553,144.945465,132.606628,119.276054,108.895889,105.242989,101.961998,101.887611,102.540504,103.028107,114.061180,132.523972,148.854553,160.970245,172.201660,172.986786,162.606613,141.854553,122.036385,110.400017,106.796707,101.036377,74.317375,58.623161,77.714066,96.507454,73.358696,33.507454,12.831422,9.185143,8.988441,8.776873,9.491750,10.957038,5.714059,0.819010,0.800828,0.285952,0.253720,0.000000,0.199174,0.046282,0.384298,2.105785,0.000000,0.000000,0.000000,3.495868,2.866116 -602303.955000,4612325.550000,7809,5305,40.225632,82.032249,68.594231,56.346302,40.743000,29.420681,31.194235,27.797541,25.285971,26.847956,26.302500,35.574402,50.602501,61.106632,72.197525,83.230591,85.106628,84.420677,81.470268,72.486786,67.098366,67.701675,66.445473,45.709938,28.455391,50.974400,96.462006,98.999184,57.866966,10.198361,6.040515,15.249602,20.018202,34.660351,52.974400,41.768616,2.181823,0.122315,0.319009,0.000000,0.000000,0.000000,0.000000,0.000000,4.112399,0.527273,2.662812,0.403306,0.936364,1.007438 -602307.955000,4612325.550000,7829,5305,38.580173,66.557869,61.894234,46.200024,29.179358,17.956217,17.066132,12.452909,11.233071,12.248775,11.348774,19.200846,32.927292,44.257870,53.629768,64.365311,67.927292,64.869438,61.323986,52.671097,46.175224,47.026466,44.290932,21.672747,9.039682,28.876879,83.158684,95.456207,55.464481,7.757036,4.026465,14.470263,18.147125,35.323986,52.592579,46.266132,3.278517,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,3.566117,1.309092,1.271076,0.357852,1.152893,4.686778 -602312.355000,4612325.550000,7851,5305,42.030594,63.765305,53.592583,37.047131,21.785141,12.856215,10.476047,7.881004,6.368606,5.913234,6.052904,13.523156,26.033901,38.898369,48.733078,59.187626,62.964481,60.443821,58.311592,49.204155,42.551262,41.212418,39.700024,18.402496,5.181827,25.161173,81.179352,92.981003,54.551262,7.476871,3.609110,11.820675,18.338860,35.058693,55.509933,37.891754,1.846285,0.079340,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.514876,1.504133,0.438017,0.371901,0.380165,2.211571 -602326.755000,4612325.550000,7923,5305,30.261992,43.542160,36.464481,25.228111,15.266128,11.040505,10.557860,9.023976,9.969431,10.126455,11.404142,18.659515,31.512411,43.657867,55.536385,68.829773,75.129768,73.284309,69.631424,58.287621,52.558701,53.743816,53.236385,32.127289,17.158689,39.801670,102.757034,112.285965,66.426468,8.315714,4.839687,14.434726,20.483490,42.847954,64.757042,52.988449,3.386783,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.600001,4.487605,0.848761,0.000000,0.680166,2.213223 -602331.355000,4612325.550000,7946,5305,36.731419,50.887623,40.915722,27.268612,15.276044,10.257859,10.223976,8.904140,8.822323,9.327282,10.176042,17.696709,32.938034,48.203323,61.864483,73.856209,78.434723,77.145470,72.872742,63.442993,56.823158,58.649605,56.963654,36.073574,19.518198,44.261173,100.971916,107.401665,61.591751,7.890921,5.178532,12.313237,20.040516,41.071091,62.385139,52.195057,2.566120,0.188430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.098349,8.437194,1.201654,1.046281,1.176861,5.384298 -602348.555000,4612325.550000,8032,5305,32.409927,37.284309,23.638033,13.752903,8.234720,4.197526,5.161991,4.035544,3.438849,4.600007,7.027283,12.842987,23.782660,35.076046,46.385136,57.914062,67.127289,69.806633,67.492577,63.995056,62.008282,65.285965,67.927292,52.723156,42.736378,67.507454,108.712418,106.919029,62.836380,8.217367,6.175226,15.939686,28.800844,55.753735,74.638031,69.662827,10.742988,0.314050,0.000000,0.000000,0.000000,0.000000,0.068595,0.000000,2.221490,2.790086,0.338017,0.004959,0.002479,8.516531 -602351.955000,4612325.550000,8049,5305,26.126451,25.975210,21.310749,17.288433,14.396698,12.082648,12.413227,12.165294,12.096699,12.289260,12.942153,15.209922,18.834715,22.564466,26.376038,30.081823,32.793392,33.373558,31.669428,29.471081,28.448767,28.236368,29.781824,23.883478,19.142155,27.444635,45.269436,49.040508,27.983480,4.692568,2.707445,11.393400,23.680182,42.228943,61.047958,58.139690,25.662827,17.906620,13.208271,11.409924,9.836369,5.256201,5.291737,6.985952,22.210749,2.564464,3.847108,2.197521,3.419836,3.199174 -602364.955000,4612325.550000,8114,5305,2.251242,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.298348,0.928101,1.317358,1.690913,1.169424,0.861159,1.177689,1.772730,0.104959,0.000000,1.178515,26.802492,40.718197,22.943815,2.394220,0.161160,11.657036,24.349604,43.476055,65.582664,62.485142,19.908279,6.958683,5.299179,4.015706,2.037192,0.854546,0.868596,0.750413,4.672728,0.106612,0.000000,1.319835,1.021488,0.000000 -602371.555000,4612325.550000,8147,5305,38.761166,26.389269,18.014059,9.122322,4.361164,3.019838,3.433889,3.169425,3.552070,4.156204,6.124800,11.509926,22.566128,35.908276,47.567780,60.157032,68.254562,71.288445,71.087616,64.714058,61.186787,62.809925,69.009102,49.512405,32.819019,56.776043,110.387611,115.881004,68.641335,8.101665,6.273569,12.213237,25.559525,47.211590,71.649597,68.732246,7.607447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.290084,4.494217,0.033058,0.128926,0.977687,1.412397 -600953.155000,4612315.550000,1055,5355,37.834728,11.889265,1.069424,0.261984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.047108,0.426448,2.671079,4.101659,3.865295,4.123974,2.269427,0.772729,1.068598,0.290911,0.000000,0.000000,0.030579,30.012417,56.131428,31.135557,3.443809,0.026448,25.177706,21.678530,42.900017,63.792576,58.604977,10.488441,1.531406,0.282645,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.810745 -600957.955000,4612315.550000,1079,5355,26.989267,12.779350,0.209919,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.337191,2.869426,10.421499,13.967783,11.271914,11.960342,6.633068,2.930583,2.932236,1.300003,0.000000,0.000000,0.000000,42.887623,69.320679,39.306629,4.492571,0.118184,16.559521,20.685141,42.593410,63.411591,56.338036,3.823147,0.068595,0.295868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.046281 -600963.955000,4612315.550000,1109,5355,15.279347,11.606621,1.151243,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.083471,1.070251,4.076039,5.864470,5.501662,5.539677,3.227278,1.658682,1.632235,0.618184,0.000000,0.000000,0.000000,25.400015,52.681011,31.200844,4.595049,0.056201,15.866957,18.792578,38.463657,56.171925,51.662830,5.266123,1.223969,1.509092,0.841323,0.180166,1.358678,0.000000,0.000000,1.381818,0.000000,0.000000,0.000000,0.000000,2.325621 -600968.155000,4612315.550000,1130,5355,23.052073,25.362825,14.456212,6.981001,1.249590,0.294216,0.042149,0.000000,0.000000,0.000000,0.000000,0.000827,0.796697,4.457859,8.447943,13.833070,15.578526,13.684311,12.134723,7.590919,4.476038,4.319014,2.336368,0.000000,0.000000,0.000000,26.300014,49.605804,31.856215,3.420670,0.212401,12.692576,15.679355,29.723156,47.041344,37.913242,3.743807,0.563638,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.384298,3.619837,0.000000,0.000000,0.127273,1.778513 -600972.355000,4612315.550000,1151,5355,32.503311,40.635551,26.789276,15.995884,5.365298,1.011573,0.453721,0.099174,0.000000,0.141323,0.000000,0.536366,5.223976,12.907454,23.781839,34.474396,36.957867,34.647125,32.406628,24.647125,15.914893,14.441336,8.309102,0.134712,0.000000,1.177689,48.788445,69.364479,41.523991,5.501664,0.755383,11.681005,14.625635,28.538862,46.637207,38.424812,3.363642,0.020662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.298349,0.476034,0.007438,1.125620,0.068595,2.058678 -600976.355000,4612315.550000,1171,5355,19.064468,35.718197,32.614895,21.007458,9.281005,2.659511,1.568600,0.711572,0.545456,0.480994,0.279340,2.123973,12.402495,25.263657,37.861176,49.719852,55.827290,53.785969,50.769440,40.811588,29.404976,27.526464,19.481834,0.334712,0.000000,2.633889,64.876877,81.124817,45.984314,6.604145,1.771091,10.297535,13.771091,27.571093,48.843819,32.981838,1.651243,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.756201,0.454546,0.000000,0.000000,0.783472,1.081818 -600979.955000,4612315.550000,1189,5355,22.957855,41.369438,39.423153,27.309933,13.956215,5.304144,4.201663,2.038022,1.511574,1.093392,1.202483,5.161994,18.957867,33.472744,48.274399,62.580185,68.042992,65.439690,62.009933,50.588448,38.141338,35.510761,28.936382,1.515706,0.000000,4.871083,74.051262,92.547134,52.348778,6.239680,2.630597,7.622326,11.155388,25.648777,41.125637,29.501671,1.020664,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.814051,1.378514,0.168595,0.000000,0.363637,1.094215 -600983.755000,4612315.550000,1208,5355,26.473560,49.365307,41.467789,29.922333,14.538860,6.251251,4.379349,2.241329,1.178517,0.720664,1.093392,5.633070,21.627293,37.409935,52.525642,69.360352,75.707458,72.021507,69.004982,56.583492,43.252914,40.433899,32.600018,0.960334,0.000000,5.668606,81.790085,101.004967,56.525639,7.886789,2.963655,7.373565,11.109107,24.258696,41.087624,27.082663,0.690084,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.855373,0.999174,0.266943,0.000000,0.795042,1.029752 -600989.555000,4612315.550000,1237,5355,28.598352,46.428944,42.795059,33.497540,16.399193,6.614061,3.871083,2.125626,1.268598,1.059508,0.923970,4.929762,21.357044,39.224812,56.373573,74.852913,81.819855,79.282661,76.357040,61.522331,45.795059,43.935555,35.290932,0.536366,0.000000,4.452901,93.059525,111.224808,60.778530,7.002491,3.208283,7.116541,9.481833,23.191753,39.133904,22.471918,0.338017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.256199,0.556199,0.650414,0.103306,0.000000,2.148761 -600996.755000,4612315.550000,1273,5355,29.601664,56.374397,55.936382,44.275227,29.556217,17.064482,12.571091,7.038857,4.837202,3.518192,2.934719,10.889271,29.849606,47.423985,66.225639,88.729759,96.142982,92.010750,89.713226,71.671913,52.266960,49.448780,40.936382,0.181819,0.000000,4.004968,105.052071,129.754562,73.787628,11.160346,3.721507,9.190921,10.671914,24.668615,38.142994,22.163654,0.244629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.409092,0.500827,0.166116,0.223967,0.272727,4.690083 -601004.355000,4612315.550000,1311,5355,29.644640,58.917374,58.990101,48.428116,35.942169,26.584320,22.177706,16.506628,14.386793,12.712414,14.166959,27.617376,48.494232,64.262825,81.494225,96.766945,102.973557,101.519012,96.510750,85.229759,73.990089,71.444633,59.890926,17.961176,2.214056,28.328943,103.998352,114.213226,64.221504,9.328939,5.444647,8.621500,12.752908,25.051262,39.742172,24.729771,0.204960,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.585951,0.876033,0.443802,0.036364,0.340496,0.000000 -601341.555000,4612315.550000,2997,5355,136.659515,177.378525,177.378525,165.031418,152.651245,145.436371,146.287613,148.089264,149.642975,154.196701,159.750427,174.056183,193.841324,210.948761,224.758682,235.014877,236.923981,228.717361,201.667770,177.196701,165.519012,162.328934,158.436371,128.386795,106.519020,120.411583,133.783493,99.353745,46.899197,18.788446,14.403325,13.779356,12.529769,13.913241,15.823157,12.132247,2.750421,0.799177,0.459507,0.270249,0.310745,0.000000,0.000000,0.048761,0.000000,1.172727,1.100000,0.000000,1.119835,0.000000 -601344.955000,4612315.550000,3014,5355,138.546295,175.455383,174.794235,164.620667,152.339676,146.323151,147.719849,148.438858,151.744644,157.438858,162.612411,177.752899,198.802490,218.149597,231.719849,243.257034,244.091751,232.050430,198.389267,172.347946,161.100006,155.934723,150.372742,121.868607,101.232246,111.331421,116.290092,82.637199,37.529774,16.833904,13.670267,11.640510,9.214892,11.935555,12.081008,6.501662,1.608268,0.608266,0.723969,0.275207,0.171075,0.000000,0.046282,0.024794,0.000000,1.272727,0.000000,0.000000,0.000000,0.000000 -601349.755000,4612315.550000,3038,5355,134.273575,178.331421,175.728119,166.000839,154.422333,146.785965,150.430588,150.612411,153.604141,160.885132,166.736374,182.909927,206.471909,224.926453,239.893402,252.298355,253.389267,238.182663,200.678528,174.042160,163.207458,155.678528,149.554565,119.496712,101.711594,109.695061,110.033905,76.628944,37.075226,17.766960,13.595888,8.628115,11.602498,11.219028,11.311585,7.233896,1.323970,0.178513,0.206612,0.000000,0.035538,0.000000,0.000000,0.277686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601356.555000,4612315.550000,3072,5355,129.404144,172.065292,175.470261,163.742981,153.346283,145.222321,146.891739,148.999176,151.271912,156.577682,162.552902,178.313248,201.461990,221.676865,239.759506,250.081818,252.610748,238.544632,205.081818,178.974396,166.528107,159.486786,155.627274,123.668610,104.858688,115.321503,115.908279,82.792572,38.214069,17.667788,14.147952,9.173570,11.352084,10.036381,11.984311,5.656207,1.692564,0.619009,0.035538,0.021488,0.076861,0.167769,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601366.755000,4612315.550000,3123,5355,123.780174,170.218201,171.714066,162.152084,148.085968,141.689270,142.028122,143.681015,145.507462,151.160355,155.482666,171.862823,193.400024,214.449600,230.664490,244.441345,247.548782,235.366959,206.457870,180.747131,167.623154,162.052917,157.400024,124.201668,104.920670,117.366951,122.052902,90.937202,43.623161,17.119028,14.309111,9.642162,11.426463,12.655389,12.544645,4.962820,0.455374,0.375209,0.427274,0.000000,0.000000,0.112397,0.161984,0.141323,0.000000,2.474380,0.000000,0.000000,0.000000,0.000000 -601375.555000,4612315.550000,3167,5355,126.385139,170.525650,173.624817,163.261185,152.062820,145.145477,144.864487,146.517380,147.905792,154.137207,157.839676,172.145477,193.376892,211.914078,228.938858,241.732239,244.872742,234.203323,205.029785,181.137222,168.707474,165.525650,160.236389,128.451248,107.426460,120.492577,127.236374,93.261169,45.062828,18.666960,14.566960,8.083487,11.493405,12.298363,13.998363,8.025631,1.489260,0.149588,0.177687,0.022314,0.014876,0.000000,0.080992,0.144628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601380.155000,4612315.550000,3190,5355,121.442162,172.045471,175.508286,163.086792,152.971100,146.582672,146.681854,145.541351,148.392593,153.607468,157.987625,171.524811,192.227295,210.243835,227.045486,239.698380,243.648788,233.252106,204.392578,180.285141,168.384308,164.739685,159.227295,127.896706,106.590919,119.739677,126.128105,93.632248,44.433899,19.607458,14.475225,10.670263,10.514068,11.936380,11.414892,7.028937,0.919837,0.434713,0.118183,0.135538,0.017356,0.177686,0.029752,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601385.555000,4612315.550000,3217,5355,122.310760,166.211563,173.228088,166.294205,151.533875,146.699173,146.062820,146.261169,148.624786,152.310745,157.277679,170.798340,190.608261,208.550430,225.938858,237.889267,241.575226,231.277695,204.781815,180.550415,169.128922,164.971893,158.781815,127.930588,107.509102,120.690926,127.633072,92.715714,43.575226,18.381008,14.434730,8.104972,12.300843,13.583487,12.796711,6.538027,1.231410,0.325622,0.154546,0.180992,0.063637,0.000000,0.033058,0.126447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601390.755000,4612315.550000,3243,5355,117.165306,170.636368,174.033051,164.991745,152.157043,145.016541,145.570282,145.371933,147.074417,151.173569,156.090927,168.735550,187.314056,205.008286,218.462814,230.413239,232.314072,225.057846,200.892578,180.123962,167.818192,165.537201,163.090927,130.752075,109.628105,124.033066,138.495895,104.123978,48.636379,17.424812,14.826465,8.729767,9.382661,11.882660,11.918199,3.830587,0.276860,0.470249,0.217357,0.000000,0.000000,0.000000,0.000000,0.149588,0.000000,1.222314,0.000000,0.000000,0.000000,0.000000 -601394.155000,4612315.550000,3260,5355,122.033073,167.578506,171.719025,164.429749,155.537201,146.851257,145.454559,146.669434,148.561996,153.834732,157.049606,169.685974,188.338837,206.438019,220.966949,231.280991,233.454544,227.768600,203.181824,181.421494,170.363632,167.619827,165.454544,134.834732,112.148773,126.289276,141.925629,109.776878,52.247955,19.471094,15.041341,9.461997,11.706627,12.371091,16.619852,7.921502,1.045458,0.197522,0.109918,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601398.355000,4612315.550000,3281,5355,123.895058,167.738022,170.423981,163.002487,152.795868,144.151245,144.192566,144.506622,146.771088,151.209091,154.721497,167.762817,188.407440,205.647110,220.209091,232.399185,235.680176,228.134720,207.845459,187.002487,174.159515,171.580994,168.572739,138.870255,115.167786,130.052078,148.126450,113.919846,56.614071,19.749605,15.324813,11.350430,13.541342,14.990926,16.768614,6.338028,1.209095,0.231406,0.068596,0.024794,0.040496,0.000000,0.054546,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.755000,4612315.550000,3298,5355,122.371918,171.413223,173.148758,165.256195,151.917358,144.727295,145.909103,147.652908,148.446304,153.743805,157.256195,170.314056,189.636368,209.082642,222.669418,236.115707,239.900833,232.719009,210.057846,188.123962,178.123962,174.851242,171.181839,139.462814,117.132248,132.198364,148.685944,113.958694,54.173573,20.404980,15.562001,10.333074,12.698363,12.619851,16.139688,9.489270,1.404137,0.129753,0.023967,0.178513,0.000000,0.522315,0.000000,0.123968,0.000000,0.000000,1.076860,0.000000,0.000000,0.000000 -601405.555000,4612315.550000,3317,5355,138.190918,177.075226,173.364471,163.860336,153.645462,145.521500,145.521500,145.480179,147.843811,153.711578,156.645462,170.042160,189.703323,205.901672,219.364471,231.323151,234.843811,229.521500,205.100006,184.992569,175.546295,170.901672,167.918198,138.744644,117.389267,131.562820,142.802490,111.785965,52.133080,18.585970,15.265308,8.853733,13.385966,15.442991,16.894232,6.781830,1.096698,0.176860,0.254547,0.097521,0.037190,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601411.555000,4612315.550000,3347,5355,134.922333,172.517380,174.831421,165.831421,156.153732,148.600006,148.814896,149.004974,151.054565,157.641342,161.302490,173.426453,190.459518,209.376877,222.376877,232.790100,235.591751,229.120667,205.533890,185.699188,173.881012,171.013229,167.690918,139.971909,117.947113,130.451248,143.302490,110.476044,50.773575,17.906630,15.244646,8.983486,10.691751,12.768612,14.723158,8.717368,1.356202,0.057852,0.037190,0.503306,0.037190,0.000000,0.000000,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.155000,4612315.550000,3375,5355,136.690918,183.087601,180.872726,172.178513,161.228088,153.798340,154.120651,154.897522,156.492554,162.880981,166.550415,179.112396,196.657837,214.112381,228.029739,238.641296,240.988403,233.649567,210.442963,190.029739,179.203308,174.252884,172.599991,144.302490,122.277702,134.418198,144.608261,111.682663,52.823162,19.649605,15.690929,9.923155,13.284314,16.293407,18.443819,8.582658,1.347112,0.478516,0.532233,0.000000,0.139670,0.000000,0.209918,0.066943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601420.155000,4612315.550000,3390,5355,128.637207,179.637207,179.992569,175.678528,163.504974,152.066956,154.430588,155.562820,156.777695,162.711578,166.604141,178.810760,195.248779,211.463654,227.529770,238.290100,240.785965,233.199188,209.918198,186.579346,177.463654,173.843811,171.100006,141.323151,120.182655,133.108276,146.521500,111.719849,53.967789,21.306629,15.554564,8.151255,12.999188,14.247950,15.719851,6.508276,0.976037,0.280995,0.175207,0.031405,0.045455,0.000000,0.240497,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.355000,4612315.550000,3406,5355,122.988434,181.666122,177.988449,169.170258,155.285965,148.864471,148.641342,149.624802,150.823151,156.980179,159.517365,173.310760,192.360336,209.790100,224.087616,235.864471,237.748779,232.517365,209.294235,188.186783,176.550430,173.657867,171.418198,140.847946,117.914062,133.137192,148.930588,114.881004,56.071095,19.193407,15.583491,8.884312,14.043819,13.479355,16.338036,5.764474,1.288433,0.017356,0.285952,0.000000,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601426.955000,4612315.550000,3424,5355,139.466965,177.268616,176.020676,170.590927,159.483490,149.169449,149.838882,149.400864,151.673584,157.235565,160.095062,172.665329,190.938034,209.268616,223.367783,235.136368,237.607437,230.508270,208.384308,187.475220,177.078522,174.863647,169.409103,141.516541,120.061989,134.037201,148.814087,115.541328,56.533073,21.632250,15.400846,9.325634,13.149603,12.810759,16.610762,7.644641,1.193392,0.170250,0.050414,0.076860,0.138843,0.204132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.755000,4612315.550000,3453,5355,125.553734,180.181839,173.851257,168.785141,157.619858,146.917374,148.272751,147.363647,149.892578,155.107452,157.752075,170.198364,188.842987,206.322327,220.446304,232.338852,235.140518,227.975220,205.851257,183.776871,173.710754,170.628113,164.272751,137.157043,113.892578,127.991753,143.008286,110.586792,52.471096,19.770266,14.933904,7.768610,13.051256,13.695883,16.014894,6.776872,1.557855,0.419836,0.423970,0.267769,0.000000,0.000000,0.168596,0.011571,0.000000,4.152893,0.000000,0.000000,0.000000,0.000000 -601435.955000,4612315.550000,3469,5355,148.781845,181.558701,175.542175,170.616562,157.004990,147.914078,149.310776,149.319031,150.897552,156.963669,158.542175,171.616562,189.938873,208.889267,223.434723,237.038025,240.566956,231.285965,210.748779,189.137222,176.897552,174.319031,170.236389,138.385147,116.459518,130.013229,146.062836,110.963646,50.451256,20.434729,15.476051,10.321504,13.822330,14.347123,16.046299,9.397532,0.642151,0.128100,0.681821,0.028099,0.152066,0.000000,0.043802,0.080166,0.000000,0.000000,1.282645,0.000000,0.000000,0.000000 -601442.155000,4612315.550000,3500,5355,126.399185,183.258682,179.845459,171.043808,159.341324,147.779343,148.572739,149.746292,150.713226,158.225647,159.399185,172.779343,192.746292,211.688431,226.828934,241.134720,244.010757,236.333069,212.333069,191.167770,179.324799,176.060333,171.300003,139.498352,116.952904,131.680176,145.762817,108.969437,49.985970,17.599194,15.572747,6.230592,10.256213,12.608281,13.795886,4.942987,1.741326,0.071075,0.293389,0.000000,0.044628,0.000000,0.029752,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601445.355000,4612315.550000,3516,5355,130.712418,179.018188,175.976868,166.299179,153.084305,143.398361,145.001663,145.183487,146.249603,150.629761,154.307449,167.927277,186.712402,204.985138,219.522324,231.001663,235.695877,225.604965,202.885956,181.299179,170.100830,169.596710,163.836380,132.919022,112.414886,126.340508,139.803314,104.373566,49.687622,19.200846,14.894234,11.652907,10.111586,13.542164,14.842165,7.690093,1.104137,0.367771,0.421489,0.173555,0.046281,0.000000,0.033058,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.155000,4612315.550000,3545,5355,147.329788,179.338043,181.742996,167.552917,155.718216,145.957870,147.635559,145.470261,147.536392,150.883499,155.197556,167.693405,188.486801,205.866943,219.833893,232.172729,235.842148,226.577682,203.478516,183.081833,171.767792,170.668610,165.354568,132.643814,111.412415,126.635559,140.676880,104.304977,48.693409,20.052084,15.032249,12.753735,13.155390,12.595058,16.130596,7.114887,1.703311,0.285952,0.150415,0.084298,0.076034,0.000000,0.025620,0.256199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.155000,4612315.550000,3560,5355,127.261177,180.426453,177.277695,166.748779,153.319016,144.186783,146.046295,144.591751,146.038025,149.971909,153.773560,167.476044,187.599991,205.699173,220.054535,232.533875,234.087601,226.492554,202.054535,182.872726,171.393387,169.500839,164.054565,132.790100,111.575226,125.600021,139.674393,104.252907,49.385143,18.889275,14.914068,14.135553,12.263653,14.067785,14.931421,8.523978,1.275210,0.472729,0.101653,0.290910,0.051240,0.000000,0.069422,0.384298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.555000,4612315.550000,3597,5355,127.314896,187.678528,179.662003,170.405792,156.942993,146.199188,148.331421,147.496704,148.480179,154.595886,156.728119,171.521500,191.670258,209.653732,224.678528,238.843796,242.124786,232.810745,208.926453,187.381012,176.042160,174.166122,168.009109,135.347946,114.637199,127.025635,141.025635,104.306625,47.769444,19.042994,15.273572,13.141340,14.352083,15.157868,16.486795,7.621500,1.349591,0.142150,0.391737,0.064463,0.025620,0.000000,0.008265,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.355000,4612315.550000,3611,5355,134.644638,188.024796,180.801651,171.181839,155.652908,147.247955,149.090927,147.768616,148.983490,153.181839,155.702499,169.132248,190.140503,208.223160,223.512405,238.388428,241.082642,230.586777,206.066132,185.900833,175.586777,172.363647,167.636368,134.256210,112.586792,127.008278,138.528961,100.834724,48.173573,19.933905,15.239688,12.619852,12.712415,13.848776,17.100843,8.661169,0.880169,0.179340,0.091736,0.359505,0.027273,0.406612,0.028099,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.755000,4612315.550000,3638,5355,116.873573,180.981018,180.361176,169.096725,155.501678,145.832260,148.129776,147.650436,150.104980,153.700027,156.121521,169.154572,189.088455,207.906631,222.336380,234.518188,238.650421,228.377701,204.518204,184.204163,174.212418,172.319855,165.972748,132.799179,112.708275,125.741333,137.030609,99.485138,45.741341,19.642168,15.088449,13.731423,12.427291,13.987621,16.029770,6.750424,0.935541,0.235538,0.170248,0.045455,0.013223,0.000000,0.109918,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601472.755000,4612315.550000,3653,5355,142.820679,183.638870,181.729782,170.291763,157.052094,145.523163,146.820679,147.357880,149.151260,153.448776,154.977707,169.333084,189.919846,208.184311,222.357864,235.771088,238.060333,228.853729,204.928101,183.589279,174.167786,170.448776,165.572754,133.333069,111.977699,126.564476,138.126465,102.390923,47.390926,19.225639,15.052086,11.150431,11.251257,12.616547,16.980183,7.166953,0.207440,0.430580,0.049588,0.000000,0.000000,0.196694,0.051240,0.086777,1.420661,0.000000,1.265289,0.000000,0.000000,0.000000 -601478.155000,4612315.550000,3680,5355,128.791748,188.667786,178.395065,168.337219,156.014893,145.519028,147.841339,147.312424,148.064484,154.411591,155.238037,168.485977,187.833084,205.444656,220.122330,234.014893,234.585144,224.155396,201.081009,180.601669,171.766968,168.461182,164.345474,131.370270,112.940514,123.659515,137.494232,99.279350,47.147125,18.758694,14.940516,11.947124,12.525638,12.409935,15.746299,7.417366,0.748763,0.079339,0.147108,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.955000,4612315.550000,3699,5355,141.485962,192.700836,178.295868,169.882645,155.634720,144.659515,145.485962,146.287613,147.890915,153.221497,153.510757,166.973557,186.262817,205.452896,219.824799,231.882645,233.775208,221.692566,199.940506,178.419846,167.428101,164.808273,161.800003,129.238037,109.659515,122.543816,133.535538,97.097534,46.461178,18.831425,14.709109,13.239688,10.919026,13.952909,15.574397,7.685135,0.821489,0.112397,0.123968,0.000000,0.000000,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.955000,4612315.550000,3714,5355,154.838043,195.433075,178.176880,171.846298,157.647949,146.449600,147.391754,147.763657,149.061172,156.523987,155.532257,169.044647,186.862823,204.970261,221.077682,232.532257,235.284317,222.854553,199.747131,179.771927,167.978531,166.185150,161.036377,129.441330,107.862831,122.780174,132.945480,95.581841,44.466137,16.015720,14.639688,15.143819,10.349604,12.188446,15.003324,6.507448,0.441325,0.082645,0.224794,0.061984,0.000000,0.522314,0.034711,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.155000,4612315.550000,3735,5355,152.685974,192.942169,180.694214,173.214874,157.214890,145.785141,148.289276,146.297531,148.297531,155.380188,154.355392,167.801666,185.570251,204.619827,220.223160,232.983490,233.760345,221.867783,199.066116,178.148758,167.760345,165.710754,159.000015,128.776871,108.743820,122.628105,130.041336,93.082664,45.900848,17.386795,14.454565,13.862826,11.523159,12.589273,13.929770,5.412405,0.586779,0.214050,0.223141,0.080992,0.166943,0.000000,0.104133,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.955000,4612315.550000,3759,5355,164.361160,206.708267,184.129761,171.650421,157.542984,143.344650,146.799194,147.815735,149.295044,156.617371,154.228943,168.063644,184.154556,204.790939,219.204147,232.319839,233.138031,219.815720,197.460358,177.906616,165.807449,164.542984,158.518188,127.171082,108.700012,122.055382,128.551254,91.848785,43.683487,18.131422,14.410763,13.593404,9.866131,10.542991,14.027289,7.890921,0.707440,0.653721,0.340496,0.049587,0.173554,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.755000,4612315.550000,3788,5355,161.105789,201.287613,185.766953,175.477692,158.097534,148.386780,148.312408,147.485962,150.238022,158.791748,154.320663,167.758682,184.882645,203.965302,218.998352,233.651245,232.469421,219.824799,197.609924,176.130585,165.560333,161.841324,157.709091,125.857864,108.180183,121.130592,126.585136,90.155388,43.419853,18.276878,14.337209,13.938860,12.203321,12.581836,14.398363,6.981000,1.019837,0.385125,0.061157,0.000000,0.112397,0.000000,0.000000,0.156199,1.475207,0.000000,0.000000,0.000000,0.000000,0.000000 -601502.955000,4612315.550000,3804,5355,152.812408,205.820648,182.324783,177.109909,157.580994,148.589264,148.539673,148.374390,149.861984,159.109924,153.853729,166.911575,183.936356,201.647095,217.407425,230.407425,231.176025,216.704956,194.597504,174.159500,163.440506,160.068604,155.118195,124.052071,104.440506,119.994225,125.068604,87.035553,40.820679,17.187624,14.101670,13.352082,9.500841,11.603322,12.613236,6.668606,0.209918,0.201653,0.195868,0.053719,0.000000,0.000000,0.006612,0.000000,2.806612,0.000000,0.000000,0.000000,0.000000,0.000000 -601506.555000,4612315.550000,3822,5355,118.909119,175.123978,176.785141,164.264481,152.628113,144.859528,143.330597,142.413239,144.173569,146.214890,149.685974,161.512405,179.595062,196.157043,210.115723,223.330597,225.859528,214.033081,191.066132,169.735550,159.008286,155.380188,149.909103,120.925636,101.140518,114.446297,122.272743,88.991760,42.876053,15.690926,13.628119,10.188442,11.020679,12.201670,11.318197,6.684307,1.323969,0.064463,0.101653,0.014050,0.025620,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.755000,4612315.550000,3848,5355,133.464478,172.274384,173.761993,163.249603,150.348770,141.828110,142.489273,141.315720,142.530594,145.439682,148.861160,161.233063,179.555374,196.133896,209.943817,221.638031,224.464478,215.133896,190.191742,168.481003,157.976868,153.456207,149.290924,119.497528,99.910751,112.786789,120.943810,87.266129,41.274403,17.833078,13.571919,9.793404,9.819853,10.900018,11.170263,6.418193,1.098350,0.290911,0.000000,0.015703,0.142150,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.355000,4612315.550000,3876,5355,116.685959,169.661194,172.446320,164.388443,149.776886,143.578552,142.314087,141.181854,143.198380,145.553757,147.785156,159.586792,176.933914,193.818207,207.933914,219.884308,222.165298,212.123978,188.057877,167.247955,155.859543,152.082672,147.818207,118.735542,99.347115,113.123978,119.512405,85.595055,41.545471,16.550430,13.438035,8.295056,9.376877,9.923983,12.401669,4.784306,0.394216,0.062810,0.296695,0.227273,0.018182,0.000000,0.014876,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.355000,4612315.550000,3911,5355,113.409096,163.384308,172.681839,162.723160,152.376053,142.880188,142.392578,140.979355,141.657043,145.359528,147.929764,159.417374,176.012405,192.566132,206.169434,218.169418,220.764465,210.433884,185.847122,164.508286,153.632248,149.979355,145.045471,117.615707,96.805794,110.673561,117.640503,86.508270,42.822330,16.030598,13.185969,9.783485,9.914894,13.074396,11.315719,3.692569,1.384300,0.047934,0.689258,0.042976,0.000000,0.000000,0.000000,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.555000,4612315.550000,3942,5355,110.581009,162.985962,172.919846,161.357864,151.870255,143.043808,141.985962,141.043808,141.977692,145.382645,148.200836,158.961166,175.366119,191.349594,205.738022,217.696701,219.531418,210.448761,185.928101,163.068604,153.729752,150.043808,144.481827,115.572739,96.167786,109.911583,118.300018,86.936378,41.308289,17.580181,13.134730,8.459516,9.799191,12.295059,10.593403,5.686787,0.805787,0.113224,0.204133,0.072728,0.034711,0.000000,0.006612,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.955000,4612315.550000,3969,5355,128.429749,170.090927,173.909103,164.429764,151.743820,143.338852,141.231415,141.008286,141.504150,145.454559,148.016541,159.305801,176.785141,192.710754,206.462830,219.545471,221.181839,212.305801,186.768616,164.355392,153.760345,150.305801,144.545471,116.743805,97.561981,111.933884,116.917358,86.438026,41.727291,17.963657,13.140514,8.691749,10.154562,12.563653,11.700015,7.495053,0.443802,0.109092,0.364463,0.015703,0.025620,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.755000,4612315.550000,3988,5355,120.481834,164.531418,168.663635,162.035538,149.663635,141.622314,140.035538,140.093399,141.233887,144.308273,146.795868,158.176041,174.977692,192.333084,205.349594,217.547943,220.002487,211.002487,185.886780,163.308273,152.622314,149.333069,143.027283,115.382660,95.870255,108.771088,115.638855,84.556213,40.126465,15.928117,13.002498,7.242988,9.123983,8.511585,10.208281,5.806622,0.683473,0.000000,0.159505,0.013223,0.000000,0.000000,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.355000,4612315.550000,4021,5355,125.605797,165.506622,172.614059,162.762817,151.407440,142.713226,141.837204,139.787613,140.671906,145.630585,147.275208,159.804138,176.564468,193.985962,207.779343,218.861984,221.952896,212.217361,188.415710,165.291748,154.060333,151.093399,144.572739,115.349602,96.242165,110.622330,117.506622,86.952904,41.068611,16.419025,13.142994,9.314064,8.773571,10.790926,9.622327,5.758687,0.319836,0.063637,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.555000,4612315.550000,4037,5355,126.873566,170.071915,172.336380,162.352905,149.493393,142.633896,141.526459,140.873566,141.245468,145.493393,147.237198,160.121490,176.286789,194.567780,209.154556,220.534714,223.104965,213.336380,188.303314,165.088440,155.691742,151.394226,144.790924,115.518188,96.328110,109.270256,117.220673,84.526466,41.228947,15.171091,13.162828,6.629766,8.408281,9.633899,9.747120,4.966124,0.710745,0.005785,0.076860,0.000000,0.018182,0.000000,0.005785,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.555000,4612315.550000,4062,5355,121.656212,166.218201,172.581833,164.441345,151.846298,143.292587,142.614899,141.515717,142.672745,146.317368,149.036377,160.135559,177.804977,194.532257,208.226471,220.061172,223.160355,214.019852,188.416550,165.829773,154.656219,151.705811,145.672745,117.598358,98.135551,112.061165,119.523979,87.424805,43.821507,17.172747,13.242994,8.636377,11.095058,9.849604,10.838857,6.645464,0.814051,0.578514,0.210744,0.035538,0.125620,0.039670,0.000000,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.555000,4612315.550000,4082,5355,130.005798,167.361160,173.344635,165.063644,151.716537,145.080170,143.361160,142.261993,143.881821,146.840500,149.857040,161.923157,178.923157,196.195877,210.700012,222.047119,225.534714,215.419022,190.675217,168.270264,157.443817,152.675217,147.245468,117.443817,98.435555,110.939690,118.898361,88.030602,43.509933,17.611586,13.385969,8.127286,9.734727,11.928944,12.192577,5.066951,0.583473,0.228100,0.253720,0.000000,0.030579,0.000000,0.001653,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.155000,4612315.550000,4100,5355,119.725632,170.014877,172.717361,163.180176,150.766953,143.105789,140.196701,140.618195,142.948761,145.229752,148.155380,160.800003,176.014877,193.395050,209.006622,220.866119,223.014877,213.452896,188.163635,165.733887,155.783478,151.808273,145.527283,117.089272,96.221504,111.196709,119.246292,86.196709,42.287624,15.408282,13.229771,8.328939,9.433074,9.312413,11.264478,3.732239,0.964466,0.268596,0.008265,0.000000,0.019009,0.000000,0.000000,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.155000,4612315.550000,4135,5355,127.418205,169.038025,172.426437,166.004974,153.963654,143.583496,142.558701,141.963669,142.542175,147.558701,148.649597,159.938858,178.409912,194.723969,210.244629,221.839661,222.814880,212.715698,188.013214,165.740509,156.038025,151.219849,145.600037,117.492584,99.343826,110.947128,119.624817,88.079361,42.310760,17.039688,13.236382,7.554559,10.949603,11.463653,11.865306,3.642156,0.969424,0.433059,0.084298,0.069422,0.000000,0.000000,0.020661,0.223968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.555000,4612315.550000,4152,5355,128.636383,170.487625,174.049606,167.438034,153.768616,145.479355,143.983490,143.851257,144.413239,148.644638,150.553741,161.851257,179.305801,196.338852,210.487625,222.570267,224.917374,216.132248,190.561996,168.074402,157.148773,153.305801,147.000015,118.760345,98.570267,112.884315,120.123985,87.826462,43.867790,17.294231,13.363655,9.591749,10.893404,10.162827,11.458692,6.459514,1.674384,0.066116,0.239670,0.154546,0.085124,0.172727,0.000000,0.004133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.555000,4612315.550000,4172,5355,118.677704,173.256210,172.826462,165.231415,153.396713,142.677704,141.471085,142.074402,141.735550,145.528946,148.024811,159.752075,176.338852,193.396713,207.371918,219.355392,222.281006,213.033081,187.991745,164.446304,153.404968,150.057861,144.454559,115.247948,95.793404,108.165306,116.537209,86.710762,40.520679,16.844645,13.132251,5.902491,9.611587,9.490926,10.410760,5.435547,0.681821,0.146282,0.142149,0.148761,0.000000,0.000000,0.102480,0.000000,1.289256,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.355000,4612315.550000,4186,5355,121.396706,178.966965,174.975204,167.471085,154.768616,144.570282,143.578552,143.809952,144.752106,148.181854,149.677719,161.719025,178.818176,196.652908,210.107452,221.140518,223.950424,214.363647,189.297531,166.157043,155.314072,152.479355,145.454575,116.404968,98.041336,111.421494,120.264473,88.933899,44.181839,18.178532,13.223160,7.721502,10.562827,10.315720,11.268611,5.606620,1.631409,0.060331,0.290083,0.074380,0.066117,0.000000,0.024794,0.413224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.755000,4612315.550000,4203,5355,118.119026,174.747131,173.532257,165.953735,152.780182,143.879349,141.945465,141.755371,141.953720,146.416550,149.342163,159.317368,177.681015,194.598373,208.449585,220.928925,222.821487,212.920670,187.962006,165.119034,154.160355,149.193405,144.127274,115.350426,95.317375,108.441345,118.234718,87.300842,41.176880,15.596713,13.102499,5.928937,10.133899,10.424809,11.742990,4.305792,1.285127,0.274381,0.080992,0.016529,0.000000,0.000000,0.193390,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601586.355000,4612315.550000,4221,5355,127.272743,178.165298,174.066132,167.322327,154.661179,144.396713,144.578522,142.636383,143.917374,148.719025,149.727295,161.553741,178.727295,195.595062,208.462830,220.388443,222.578522,213.950424,188.760345,165.925629,155.107452,150.148773,145.636383,115.421501,96.206627,110.413239,118.239685,87.297539,42.586796,18.119852,13.239688,6.247118,11.500843,11.523157,11.928114,5.286786,0.787607,0.200001,0.482646,0.000000,0.143803,0.000000,0.000000,0.076860,0.000000,1.042975,0.000000,0.000000,0.000000,0.000000 -601590.355000,4612315.550000,4241,5355,139.028122,179.697540,171.342163,166.763657,153.705811,144.077698,142.416550,141.755386,141.763657,145.515717,147.069443,158.333908,176.201675,193.391754,206.623154,219.309113,220.366959,211.904144,185.309113,163.036377,152.416550,148.375229,142.581833,113.433067,94.242989,107.185135,115.515717,85.813232,41.912415,17.359524,12.962003,7.453729,10.323157,11.428943,8.976873,5.155381,0.681820,0.144629,0.370250,0.038843,0.022314,0.000000,0.066943,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.155000,4612315.550000,4255,5355,128.614883,179.077698,176.507462,168.276047,153.259521,143.028122,141.325638,141.011597,142.069443,146.176880,147.441345,158.284317,175.532257,192.143814,204.259521,217.052917,219.557037,210.127289,184.515717,162.284317,149.895889,146.226471,140.309113,112.044640,92.722328,106.523979,115.647942,85.424805,41.284317,16.479357,12.755391,6.085133,11.412414,9.103321,10.294230,4.410750,0.450415,0.114878,0.152893,0.053719,0.059505,0.532232,0.435538,0.252893,0.000000,0.000000,0.000000,2.400000,0.000000,0.000000 -601599.155000,4612315.550000,4285,5355,138.316559,180.101669,175.961182,166.316559,152.324814,139.944656,141.663666,140.209106,140.291763,144.275223,144.564484,156.151260,172.812424,189.928101,204.490082,216.903290,218.333054,206.795853,181.903336,159.944656,148.126465,143.704987,139.300018,111.762817,91.300003,103.853729,113.614059,83.928116,38.291759,16.983490,12.663656,5.159513,8.725636,8.927289,10.747123,2.772733,1.002482,0.238844,0.013223,0.006612,0.000000,0.000000,0.019008,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.555000,4612315.550000,4312,5355,137.489273,189.497528,179.629761,170.042984,153.877701,143.398361,142.927277,141.051254,139.530594,146.274384,145.671082,157.150421,173.877701,191.208267,205.142151,217.200012,218.009933,207.745468,181.786789,159.638031,147.671082,144.671082,138.745468,110.166954,89.968605,104.142159,113.712410,85.613235,40.084320,14.871918,12.613242,5.908275,7.328113,6.603319,10.068608,2.909923,1.071076,0.375208,0.154546,0.015703,0.000000,0.000000,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.155000,4612315.550000,4325,5355,116.604156,172.471909,171.951248,163.009109,146.075226,135.612411,135.190933,133.339691,133.422333,136.058685,135.984314,147.554565,163.728119,179.934723,192.653732,203.058670,204.942978,194.174393,169.637207,148.579346,138.323151,134.942993,130.918198,102.670265,85.554565,96.736382,106.645477,76.942993,35.248783,15.219854,11.901671,8.624808,9.561173,9.260345,8.709930,3.045460,1.076035,0.080992,0.301654,0.000000,0.047934,0.000000,0.019835,0.372728,0.000000,0.000000,1.374380,0.000000,0.000000,0.000000 -601610.155000,4612315.550000,4340,5355,121.793396,172.256195,169.966949,156.471069,144.272751,132.975220,133.355377,131.520676,131.157028,132.008270,132.859512,144.520660,161.950409,175.636368,187.900833,199.074387,199.214874,189.247940,165.727280,145.322311,136.066116,132.776871,126.545471,100.099182,83.140511,95.330589,101.702492,74.628113,34.636383,14.723158,11.504151,9.161169,8.158690,8.571914,11.354559,4.212405,0.650415,0.106612,0.056199,0.000000,0.129752,0.014050,0.001653,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.555000,4612315.550000,4357,5355,131.016541,172.190079,166.000015,157.504150,142.933899,131.281006,131.429764,128.438034,128.512405,130.421509,131.173569,141.181839,158.760345,173.132233,185.256195,196.760330,196.107437,184.809921,161.677704,142.421509,131.305801,131.008286,123.818199,98.272743,81.619850,92.966957,100.396713,72.710762,33.413246,12.197537,11.256218,7.886789,7.869434,7.318194,7.317368,3.642156,1.081820,0.215703,0.114050,0.057025,0.000000,0.000000,0.011571,0.158678,0.000000,0.000000,2.321488,0.000000,0.000000,0.000000 -601619.955000,4612315.550000,4389,5355,117.537209,180.024826,172.289276,159.669418,143.652893,133.512405,132.396713,129.991745,130.917374,131.487625,132.123978,142.603302,159.355377,173.495895,184.966965,195.991730,196.826447,185.057861,161.619827,141.958679,132.661179,129.115723,123.727287,98.115715,81.851257,91.818199,101.685966,72.826462,35.355392,14.155391,11.247952,9.909932,8.422326,11.176047,9.245469,3.455379,0.695044,0.196695,0.071075,0.000000,0.000000,0.000000,0.234712,0.056199,0.000000,0.000000,0.000000,0.000000,1.381818,0.000000 -601624.955000,4612315.550000,4414,5355,125.175224,172.530609,168.976883,159.042999,144.935562,132.497543,132.076050,130.018204,129.216553,130.613235,131.142166,141.778534,157.059525,171.828125,183.398376,194.894241,194.943832,183.092590,160.084320,140.795074,129.745468,127.538864,122.200020,95.704147,80.175224,90.894234,98.596703,72.786797,34.109108,13.299190,11.109110,7.566955,7.801665,8.998360,7.553732,4.270257,0.452068,0.350414,0.096695,0.388430,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,3.067769,0.000000,0.000000 -601627.955000,4612315.550000,4429,5355,112.155380,174.775192,170.899170,157.882645,145.477676,134.337204,132.940506,129.618195,130.180176,131.494217,131.378525,142.039658,158.031418,172.568588,184.122299,195.023132,195.304123,183.345444,160.560333,139.998337,131.155380,127.957031,123.527283,96.419838,81.733894,91.766960,100.849594,71.386780,33.758698,15.833902,11.229771,8.670261,8.610756,8.230591,8.236380,4.769429,0.496696,0.045455,0.530580,0.059504,0.246281,0.009918,0.057852,0.216529,0.000000,0.000000,0.000000,0.000000,1.384298,0.000000 -601632.555000,4612315.550000,4452,5355,117.376892,175.178528,170.558670,159.723999,144.881027,133.839691,131.823166,129.930603,130.319031,132.806625,130.674408,141.980194,157.476059,171.616531,184.277679,193.426437,194.046280,182.285950,159.616562,140.459534,129.996704,127.947121,122.963646,95.244652,79.831429,92.269440,99.583488,71.600029,33.856216,14.375223,11.178533,10.720676,8.607450,8.318195,8.775222,3.542157,1.375210,0.490084,0.234712,0.195042,0.176034,0.000000,0.000000,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.355000,4612315.550000,4471,5355,111.967781,176.083481,169.843811,160.149597,143.885132,133.182663,131.918182,129.728104,129.405792,132.422318,130.794220,139.769440,155.934723,172.232239,182.314896,194.868591,193.852066,181.116547,157.802490,140.124802,129.810745,126.678528,121.190926,94.744652,79.190933,90.909927,98.662003,70.951263,33.174400,13.190101,11.017374,8.476875,8.285137,8.438030,9.228941,2.620668,0.419009,0.278514,0.146282,0.000000,0.000000,0.000000,0.125620,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.155000,4612315.550000,4500,5355,127.238869,185.858704,178.784317,168.222336,151.949600,139.412399,139.784302,138.594223,138.817352,143.090088,143.131409,154.718201,172.329773,191.023987,204.205811,217.875214,220.362808,208.734726,184.676880,161.734726,150.007462,146.412415,143.809097,113.247124,94.313232,108.718201,117.519852,86.908279,42.164482,16.390928,13.073573,7.838029,9.501670,9.173568,11.411586,4.358685,1.491739,0.202480,0.095042,0.225620,0.000000,0.000000,0.123967,0.114876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.155000,4612315.550000,4515,5355,121.911583,186.936386,176.862000,165.209106,151.895065,139.779358,140.465317,138.390930,139.233902,143.523163,144.481842,155.581009,172.886795,192.192581,205.597549,220.630600,222.762833,211.622330,185.944656,164.250443,151.647125,148.837219,144.300018,114.448776,96.060349,110.109932,118.655388,87.324806,42.572746,16.474398,13.118200,7.317368,9.919025,9.639685,11.500014,4.685132,0.954547,0.733886,0.152893,0.239671,0.016529,0.060331,0.152893,0.222314,0.000000,0.000000,3.747108,0.000000,0.000000,0.000000 -601649.355000,4612315.550000,4536,5355,126.801666,184.347107,176.033051,164.380173,149.958679,138.570267,139.281006,139.438034,138.884308,143.809937,144.818176,156.578506,173.942154,191.123962,207.099167,220.347107,222.132233,212.462814,186.991730,163.528931,151.537186,149.115707,145.818176,114.206627,95.487617,110.735550,117.950432,88.454559,44.826462,17.770266,13.256216,7.632245,11.156216,9.191751,12.150429,3.271909,0.760333,0.362811,0.296695,0.044629,0.103306,0.028099,0.159505,0.469422,0.000000,0.000000,1.423967,0.000000,0.000000,0.000000 -601656.155000,4612315.550000,4570,5355,120.047958,178.692566,173.775208,162.882645,149.700851,136.915726,138.155396,135.907455,136.188446,140.502502,143.304153,154.692566,172.080994,191.056198,205.072739,217.824799,220.114059,209.196701,183.717361,161.494217,150.485962,147.238037,142.709106,112.130585,95.114075,108.742157,117.857857,86.502502,41.485970,17.048780,12.973573,6.785961,7.971917,9.661172,9.314064,2.726453,0.793390,0.061157,0.114050,0.080992,0.000000,0.000000,0.397522,0.285124,3.412397,0.000000,1.239670,0.000000,0.000000,0.000000 -601666.555000,4612315.550000,4622,5355,121.816544,173.634720,173.031418,163.527298,148.593399,138.981827,139.378525,137.039673,137.676056,140.940506,142.990082,155.155380,171.304138,190.114075,204.890930,217.874405,221.328949,209.626465,184.824799,162.006638,150.114059,147.023148,142.527283,111.874397,94.122330,108.733902,117.899185,87.254562,42.973572,18.033075,12.957044,8.166959,9.099191,11.855389,12.361174,5.001663,0.909920,0.537192,0.000000,0.007438,0.020661,0.000000,0.038843,0.204133,0.000000,1.198347,0.000000,0.000000,0.000000,0.000000 -601682.755000,4612315.550000,4703,5355,107.650429,174.336365,174.518173,161.394211,148.162796,137.394211,137.154541,135.997528,136.733063,139.633896,141.989273,154.253708,171.452057,189.799164,204.245453,217.171066,219.815689,208.724792,182.848755,159.823959,148.460327,145.865295,141.700012,111.402496,93.361176,106.848778,116.691750,84.931419,43.096718,16.407457,12.881837,9.359518,9.715720,8.128938,11.210758,4.955381,1.278516,0.185124,0.026447,0.006612,0.061157,0.000000,0.166116,0.353720,1.519835,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.955000,4612315.550000,4829,5355,99.692581,166.651260,175.204987,161.634735,147.461182,137.188446,136.841339,134.527298,134.824814,137.593414,140.006638,152.014893,171.279358,188.138870,202.370270,214.882660,217.097549,205.444656,180.560349,158.039688,146.626465,144.452911,139.709106,109.948784,90.866135,107.271095,116.576881,85.461182,41.667786,15.595059,12.700846,8.313237,9.312412,10.629767,10.666957,5.981828,0.589258,0.575208,0.152893,0.093389,0.080166,0.000000,0.250414,0.205786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.155000,4612315.550000,5015,5355,92.812416,165.638855,172.242157,160.861984,146.126450,136.746292,135.746292,133.589264,134.316544,135.845459,138.895050,150.316528,170.490082,186.457031,201.300003,214.167770,216.688431,204.052078,179.217361,156.804138,146.812408,142.845459,137.390915,106.266960,89.043823,105.349602,116.275223,83.762833,40.498367,16.885141,12.490102,10.592577,10.448777,10.425635,11.577700,6.323977,1.757028,0.358679,0.271902,0.000000,0.014050,0.014050,0.332232,0.252067,0.000000,0.000000,1.371901,0.000000,0.000000,0.000000 -601764.355000,4612315.550000,5111,5355,99.755394,181.548782,177.945480,163.854568,148.160355,137.838043,138.077698,135.185150,135.548782,137.656219,139.515717,151.639694,173.036377,190.061172,204.763657,216.433075,218.937210,206.209930,182.019852,158.581818,146.838043,143.953735,139.127289,108.209938,89.846298,105.879356,117.606628,86.061180,43.457870,16.075224,12.647953,9.591750,10.100018,10.719852,12.456215,6.055382,0.838019,0.269423,0.093389,0.107439,0.090083,0.277686,0.241324,0.376860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.155000,4612315.550000,5155,5355,107.569435,175.627274,176.776031,164.354553,147.214050,137.007446,137.759506,136.594223,135.767792,138.974396,140.247131,153.676865,172.172729,189.726456,203.866943,216.676865,218.528107,206.652069,181.809097,159.676865,147.982651,145.552917,140.081833,110.040497,92.114891,106.519836,120.247108,87.999184,44.850433,18.312416,12.734729,11.807454,11.472745,12.787619,12.734727,6.771911,1.467772,0.405786,0.038017,0.166943,0.308265,0.027273,0.492564,0.412397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601780.955000,4612315.550000,5194,5355,118.149597,180.430588,179.050430,163.934723,149.298355,137.554565,138.942993,136.133072,136.356216,138.215714,139.381012,152.678528,172.166122,189.810760,204.174393,216.323151,218.719849,206.000839,180.885132,158.314896,146.926453,143.356216,139.736374,108.331429,90.058693,105.686790,117.852081,85.504974,43.670269,17.295061,12.703324,12.746298,10.985968,11.662827,13.692580,5.810753,1.092564,0.238017,0.194215,0.066116,0.061984,0.014050,0.248761,0.762812,3.062810,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.755000,4612315.550000,5228,5355,111.605804,190.423981,177.225632,164.341339,147.002502,137.490112,136.457047,135.052094,135.027298,137.630600,138.374405,150.969437,170.589264,189.283493,202.167786,215.200851,216.440521,202.465317,179.159515,155.523163,144.390930,142.423996,137.936386,105.448784,87.399193,101.804153,115.498367,83.787628,40.547951,15.621508,12.539689,10.035552,8.278528,9.336379,11.873568,7.442986,0.983473,0.050413,0.274381,0.010744,0.078513,0.210744,0.380993,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.755000,4612315.550000,5243,5355,120.444641,182.097565,178.948776,165.717392,148.816559,137.229782,138.287628,136.651260,135.808289,139.089279,140.023163,152.576889,171.676056,191.097549,203.667786,217.419861,218.866135,205.965317,181.295883,159.766983,147.709106,145.585144,139.345474,108.213234,90.535553,105.204971,118.155388,85.899185,43.436382,17.013241,12.667788,11.172744,9.804151,10.978529,10.850429,5.519017,0.985127,0.428100,0.130579,0.204133,0.004959,0.000000,0.028926,0.088430,6.061158,0.000000,0.000000,1.994215,0.000000,0.000000 -601795.755000,4612315.550000,5268,5355,109.239685,183.190094,175.619858,165.373566,149.761993,136.836380,137.405792,134.736374,136.670258,138.314896,138.885132,151.761169,171.124802,189.819016,203.719849,216.356216,216.496704,203.951248,179.744644,156.959518,146.000839,142.843811,138.190918,106.364479,88.876869,104.488441,116.893402,85.058693,41.392582,16.502497,12.562829,10.576876,8.466957,10.511586,11.332246,7.003314,0.873555,0.547109,0.422315,0.812397,1.319836,0.864463,0.138844,0.023141,1.784298,0.000000,0.000000,2.413224,0.000000,0.000000 -601800.755000,4612315.550000,5293,5355,116.255386,179.042984,174.728943,165.679352,149.381821,140.233063,142.650421,140.675217,140.947937,143.675217,142.009933,155.278519,173.476868,192.038849,205.708267,217.295044,218.212402,204.146286,180.733063,158.055374,147.708267,144.179352,138.336380,107.038849,88.823975,106.014061,117.419022,85.460342,42.807457,16.664480,12.576051,11.555385,9.952081,11.011586,11.878526,6.288439,1.466119,0.533059,0.347935,0.627273,0.765290,0.270248,0.076860,0.088430,0.952893,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.755000,4612315.550000,5323,5355,116.184319,187.763641,177.933884,164.323151,146.876877,135.471909,136.763641,135.019852,136.342148,140.160355,138.852081,151.614899,170.573563,188.623123,202.193375,216.176849,216.416519,201.763626,178.284302,155.581833,145.094238,142.342163,136.036362,104.926468,87.457870,103.003326,116.962006,84.647957,42.607464,17.076052,12.366962,12.552907,10.521504,13.314894,13.357868,8.208276,1.707442,0.861985,0.159505,0.285951,0.047935,0.144628,0.180993,0.228926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601814.555000,4612315.550000,5362,5355,126.476044,190.936386,180.514893,168.027283,150.547958,137.035538,139.159515,137.506622,138.093399,143.390915,139.357864,152.746307,170.572754,190.432236,203.754547,218.126450,217.605789,203.308273,180.704987,158.787613,148.382660,145.936371,140.481827,108.043816,90.630592,107.911583,120.060333,86.035553,44.101673,18.301674,12.771093,13.924809,8.876877,11.052083,11.651256,6.322323,1.198350,0.123141,0.538844,0.215704,0.050414,0.124794,0.219836,0.071075,1.562810,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.355000,4612315.550000,5411,5355,121.546295,197.372742,180.339676,165.215714,150.108261,137.058685,137.538025,136.273560,137.372742,143.794205,139.835556,152.653717,168.934723,187.670258,202.108276,215.653732,215.951248,199.645462,178.000839,156.364471,145.108261,142.554535,138.100006,105.397537,88.323151,104.670258,116.000839,82.744644,41.397537,16.268614,12.554564,11.710759,8.484315,9.973569,11.126461,7.236372,0.665291,0.518183,0.258678,0.000000,0.023967,0.018182,0.345455,0.098347,1.550413,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.355000,4612315.550000,5471,5355,110.888451,165.814072,172.152908,160.359528,144.227295,134.789276,134.062012,131.326477,131.615723,133.409119,135.599182,147.392578,165.607452,181.632248,195.210739,206.533051,208.433884,196.169418,173.714890,152.442169,140.028946,138.086792,130.863663,101.904984,84.657051,102.004158,113.880188,83.020683,39.425644,16.524813,11.896713,9.540509,8.994232,9.640512,12.269438,5.142158,0.617356,0.004960,0.060331,0.131406,0.000000,0.000000,0.250414,0.180166,2.776860,0.000000,0.000000,0.000000,0.000000,0.000000 -601842.755000,4612315.550000,5503,5355,107.461174,165.952896,175.341324,159.547943,146.184311,134.862000,134.415726,131.390930,131.440521,133.209106,134.539688,146.845459,165.539673,181.663635,195.209091,205.043808,207.539673,196.622314,174.837204,152.457031,141.010773,136.961182,132.300018,102.622337,85.423981,102.043823,113.481842,82.911583,42.019028,16.727291,12.027292,9.346296,9.795885,10.640512,12.053735,6.530587,1.247936,0.100827,0.153719,0.133885,0.061157,0.000000,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601849.755000,4612315.550000,5538,5355,98.490921,165.383469,173.598343,158.044632,143.945465,133.755386,133.052902,130.160339,129.722321,133.209930,134.003311,145.590088,164.292572,181.226456,194.689255,206.507446,208.449585,196.771912,173.234711,151.507446,139.986786,137.449585,131.581833,102.317360,83.656212,100.573555,112.606613,83.606613,40.416553,14.750431,11.962003,9.812411,8.590925,9.504974,9.857039,5.211579,0.529753,0.186777,0.189257,0.000000,0.134712,0.000000,0.357852,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601859.955000,4612315.550000,5589,5355,97.053741,163.739670,170.508270,158.152893,142.681824,132.103317,131.285126,128.433899,128.904968,130.491745,132.582657,144.913223,163.061981,178.855377,192.648758,204.475204,207.061981,195.690079,173.020660,150.632233,139.384293,135.541321,129.863647,100.466957,83.483490,100.045471,112.359520,82.888443,40.830605,14.356216,11.805804,6.529764,8.576047,8.665303,10.430593,3.837196,0.756200,0.138017,0.114050,0.066942,0.012397,0.000000,0.125620,0.190910,2.245455,0.000000,0.000000,0.000000,0.000000,0.000000 -601867.155000,4612315.550000,5625,5355,110.569435,164.597549,172.184326,158.605820,144.374405,133.837204,132.440506,130.151260,129.547943,131.556213,133.498367,145.118210,163.424011,180.506653,193.159515,204.159515,206.837204,195.944641,173.126480,151.547958,139.060349,136.622330,130.754562,101.738029,84.101669,99.374397,113.895058,84.564476,41.564480,16.095884,11.886796,9.252081,10.901670,9.759520,11.090098,6.561166,0.611572,0.057025,0.190910,0.067769,0.000000,0.014876,0.163637,0.087604,0.000000,0.000000,0.000000,0.000000,1.323141,0.000000 -601870.355000,4612315.550000,5641,5355,105.222328,166.833908,170.552917,158.676880,143.329773,134.809097,133.048767,130.486786,129.800842,133.726456,135.561172,146.503326,165.123154,182.048782,196.585968,207.090103,208.916550,197.404144,174.999191,152.552917,141.701675,137.858704,133.263641,102.387611,85.404144,101.379349,114.511581,85.156212,42.321507,15.175224,12.114896,8.300841,8.586793,9.363651,10.419851,4.389263,0.947109,0.127273,0.086777,0.000000,0.000827,0.000000,0.399175,0.466116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.955000,4612315.550000,5659,5355,104.147942,168.269424,171.525635,157.980179,142.277695,133.467773,132.616531,129.938843,129.252899,132.327271,133.996704,145.476044,164.781830,181.310745,194.690903,206.252884,208.277679,198.608261,175.451233,153.385132,142.839676,139.459518,133.509109,103.988434,86.459526,102.938850,116.484299,85.748772,43.500847,16.575224,12.137208,10.764477,8.962001,12.025637,10.922330,5.085958,1.014879,0.350414,0.066116,0.198348,0.016529,0.036364,0.051240,0.246281,0.000000,2.162810,0.000000,0.000000,0.000000,0.000000 -601879.755000,4612315.550000,5688,5355,96.432243,167.946304,171.706650,158.938034,143.103317,135.392578,133.070267,130.880188,130.177704,133.177704,134.863663,145.913239,165.400848,181.657043,194.095062,206.500015,208.739685,198.078522,174.566147,153.425629,142.326462,137.632248,132.136383,102.119850,85.061996,101.524818,115.012421,86.061996,41.359524,16.793407,12.012416,7.447946,7.895057,10.117372,11.306625,3.724800,0.272728,0.216530,0.002480,0.000000,0.074381,0.066942,0.008265,0.009918,0.000000,0.000000,0.000000,0.000000,1.228099,0.000000 -601889.155000,4612315.550000,5735,5355,107.657860,164.641342,171.509109,156.029770,142.029770,133.038025,130.682648,129.409927,128.938843,131.319016,133.161987,144.170258,162.418198,180.112411,193.666122,205.500839,206.765305,197.938858,174.930588,153.062820,140.847946,137.120667,132.236374,101.500839,82.996704,100.137199,114.699181,85.938866,43.219856,15.232249,12.021506,8.900840,10.225637,9.761174,10.280179,5.647943,0.755373,0.216529,0.200827,0.007438,0.000000,0.000000,0.009918,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601903.355000,4612315.550000,5806,5355,111.169441,172.880188,171.706635,159.830597,144.367783,134.219025,132.557861,130.781006,129.615723,133.648773,134.954559,146.004150,164.673569,181.012405,194.863647,205.822327,208.723160,198.929764,176.161179,154.400848,141.516541,138.161179,133.409103,103.954559,84.417374,100.500015,115.367783,86.466957,43.161179,17.066959,12.128119,8.476048,10.297538,9.638859,10.592577,5.173561,0.909092,0.580993,0.000000,0.009091,0.233058,0.000000,0.135538,0.769423,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601915.755000,4612315.550000,5868,5355,109.140511,160.300827,161.831406,152.244629,143.038010,135.211578,133.550430,129.765305,128.476044,131.476044,131.004974,142.211563,161.219833,178.137192,192.137192,205.294205,207.095871,197.682648,175.004959,153.790085,142.608276,139.616547,133.609100,104.723969,87.319023,104.113235,118.361168,88.600838,42.724815,16.521505,12.146299,7.347945,7.683486,7.999187,9.814063,4.766949,1.142150,0.298348,0.363638,0.075207,0.185951,0.000000,0.053719,0.014050,0.000000,0.000000,0.000000,1.987604,0.000000,0.000000 -601925.155000,4612315.550000,5915,5355,104.842163,174.590912,169.549591,160.789261,143.781006,131.714890,129.623978,126.615715,125.491760,129.987625,130.648788,142.830597,160.896698,178.508270,192.252060,204.706604,206.896698,196.161163,174.004135,151.590927,141.194229,137.756195,131.136383,100.260345,82.723160,99.723160,113.863655,85.276878,38.781013,15.239689,11.921507,6.421498,9.572742,7.735549,11.947122,4.316536,1.555375,0.599174,0.685952,0.422315,0.139670,0.238843,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.823967 -601936.955000,4612315.550000,5974,5355,100.432243,166.362808,171.032257,154.503326,139.784317,129.023972,129.362823,126.668610,126.900009,128.288437,129.048767,141.495056,161.007462,176.825623,190.197540,200.602493,203.742981,191.734726,168.709930,148.528122,136.230591,133.585968,127.718193,97.090103,81.412407,95.734734,110.751251,82.197533,39.065311,15.105803,11.610763,10.610758,9.253735,9.614065,9.253734,4.197529,0.799175,0.462811,0.133058,0.074380,0.053719,0.000000,0.161984,0.220661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.155000,4612315.550000,6045,5355,104.056221,179.519028,170.171921,157.271103,142.114075,129.196716,131.221512,127.138855,127.444649,129.601669,129.502502,143.171921,161.981842,176.932251,191.560349,203.651260,204.948776,192.138870,170.386795,148.436386,138.246307,135.105804,128.618195,97.403328,81.089279,96.105804,110.948769,80.940521,37.155392,15.419854,11.692581,8.866958,9.125637,9.733902,10.861172,5.457860,0.576861,0.176860,0.061157,0.000000,0.000000,0.000000,0.050414,0.000000,0.000000,0.000000,0.000000,1.200827,0.000000,0.000000 -601956.955000,4612315.550000,6074,5355,108.219856,164.542175,169.864487,158.509109,142.087616,131.434723,130.575211,127.170250,126.641335,128.914047,127.484322,139.285965,156.790100,173.211594,186.525650,197.765320,197.757050,185.575241,164.095886,144.715714,132.996704,130.186783,124.781830,95.509109,79.013245,92.897545,107.327286,77.847954,35.533901,14.293406,11.343821,7.855385,9.365305,9.058693,9.575219,3.708272,0.628101,0.149587,0.000000,0.045455,0.033884,0.000000,0.409091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601960.355000,4612315.550000,6091,5355,89.797539,163.979340,167.359528,156.863632,143.144623,130.681839,131.781006,127.020676,126.367783,127.921501,127.541336,139.119827,156.053726,173.781006,185.268616,196.268616,196.946304,184.276871,163.128113,143.152893,134.954559,129.582657,123.681831,94.904976,78.805801,94.491753,107.177704,79.599190,37.384319,16.052910,11.243821,9.738856,10.019022,10.481006,10.614064,5.789265,0.642976,0.378514,0.230579,0.157026,0.126446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601964.955000,4612315.550000,6114,5355,101.775223,172.618195,170.932236,161.560333,144.692566,132.171921,131.213242,128.295883,128.047943,131.238037,129.213242,141.874390,158.304138,175.213226,187.089264,199.857864,199.535538,185.783478,164.990082,145.337204,134.527283,132.601669,126.254562,97.006622,80.800018,96.039680,106.833069,77.494232,38.114067,16.075226,11.477704,10.342164,9.091752,9.925634,10.893403,2.481824,0.495043,0.548762,0.114050,0.098348,0.335538,0.073554,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601973.355000,4612315.550000,6156,5355,111.440521,167.589279,169.250427,160.399200,145.746307,133.704971,131.506622,129.729767,129.126465,132.944641,130.357864,142.291763,157.985962,176.027283,188.820648,201.853714,201.357849,186.878510,166.506622,146.680191,136.043823,132.820679,127.118195,97.093414,82.142998,98.126472,107.713249,78.291756,36.134727,14.509934,11.556217,11.641336,8.708280,9.160345,9.798361,3.545460,0.971077,0.134712,0.056199,0.000000,0.000000,0.114050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601976.355000,4612315.550000,6171,5355,109.351265,176.896713,170.293411,158.681839,142.078522,132.062012,129.855392,127.045479,127.880188,130.805817,129.367798,141.169434,156.838852,175.152908,188.557861,201.599182,201.830597,187.483490,166.119858,145.541336,135.929764,132.913254,126.227295,97.516556,82.136391,97.781013,107.516556,79.078537,35.285145,12.821506,11.475225,8.742989,8.214890,8.885138,10.232244,5.370258,0.702481,0.193390,0.200000,0.390909,0.034711,0.042975,0.442150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.955000,4612315.550000,6219,5355,110.235550,183.797516,172.830582,164.847107,146.045456,135.012405,132.491745,130.351257,130.028946,135.351257,130.681839,143.574387,159.541321,178.202484,191.045456,204.764465,204.235535,189.623962,169.533051,149.657028,139.103302,135.731415,128.590927,100.268608,83.971092,100.607452,111.070267,79.045471,39.995892,16.876051,11.690102,11.037203,10.142164,8.739683,10.791749,4.950421,0.738846,0.395869,0.248761,0.149587,0.000000,0.081818,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601989.355000,4612315.550000,6236,5355,125.458694,171.814072,170.714890,161.252075,144.541321,132.417374,131.144638,127.954559,128.541336,134.574402,129.822327,142.334717,157.533081,176.326462,190.285141,204.070267,201.177704,187.243820,167.252075,147.698364,137.037201,133.541336,127.772743,97.938034,83.367783,100.599190,109.855385,79.342995,35.904980,14.172745,11.615721,11.357038,8.464478,9.662827,9.638030,4.658686,0.301654,0.376034,0.056199,0.048760,0.185951,0.092562,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601994.955000,4612315.550000,6264,5355,134.019028,181.762833,173.671921,164.647125,148.985977,137.969437,135.192581,132.498367,132.300018,138.060349,133.159531,145.457047,161.060349,178.390930,191.952911,206.060349,205.101669,189.490112,170.928116,149.828949,138.382660,136.936386,131.754562,102.043823,86.415726,103.746307,111.614075,78.746307,40.663658,18.500015,11.977703,16.543818,11.886793,12.728114,11.724808,5.701664,2.986782,1.323970,0.228926,0.257852,0.036364,0.082646,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601998.355000,4612315.550000,6281,5355,103.493408,157.237213,156.468628,150.295074,138.542999,126.402496,125.270264,123.857040,122.402496,126.683487,126.633904,138.576065,154.972748,171.493408,185.898376,198.410767,199.501678,187.774399,165.427292,144.278534,134.757874,129.840515,124.609108,98.939690,79.914894,96.840515,105.675224,77.931419,35.815720,12.318199,11.328118,8.257037,8.514890,10.606626,9.701666,4.361165,0.600828,0.345456,0.064463,0.150414,0.436364,0.104133,0.025620,0.346281,4.747108,0.000000,0.000000,1.464463,0.000000,0.000000 -602002.955000,4612315.550000,6304,5355,103.674400,154.004974,156.682663,147.170258,132.649597,124.533897,121.401665,120.955383,119.905800,122.029762,123.847946,135.748779,152.558685,168.765305,183.856216,196.302490,198.327286,187.583481,164.252899,141.930588,132.955383,128.054565,122.600014,94.616539,77.459518,93.930588,105.492577,78.038033,35.203327,13.837207,11.145473,5.881003,9.461996,8.796706,10.288443,4.071083,1.071903,0.253720,0.078513,0.000000,0.062810,0.008265,0.322315,0.364463,0.000000,1.938017,0.000000,0.000000,0.000000,0.000000 -602008.155000,4612315.550000,6330,5355,92.838860,154.739700,155.549622,145.169449,131.483490,121.574394,119.508278,117.450432,117.500015,120.293404,121.210762,133.235550,150.979370,167.177719,181.541351,193.334747,194.442184,184.326477,161.177719,141.508301,130.590927,125.938034,120.318199,92.367775,75.797539,91.706619,107.599182,78.971092,38.268612,14.665307,10.938035,7.106623,10.214890,9.482658,10.861998,5.376043,0.960334,0.728101,0.247934,0.052893,0.059504,0.386777,0.100000,0.372728,0.000000,0.000000,1.883471,0.000000,0.000000,0.000000 -602013.555000,4612315.550000,6357,5355,104.657875,143.525635,153.897552,142.004974,129.715729,120.285973,116.740517,113.914062,114.690926,115.889267,116.881004,129.459518,147.443008,163.996719,176.814896,189.228119,189.517365,179.963654,157.575241,136.459534,127.079361,121.211586,116.054558,88.244644,70.269440,89.657867,103.889267,77.864487,36.294231,13.175223,10.550432,6.304968,8.497534,7.959517,11.153733,4.555379,0.580994,0.209092,0.131406,0.039670,0.142976,0.000000,0.170248,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602021.555000,4612315.550000,6397,5355,105.574402,146.152908,149.690094,139.037201,125.491760,116.095062,111.607460,109.136391,108.971100,111.004158,111.756226,122.599197,141.830597,157.714874,170.913239,182.516541,182.615723,172.442169,149.838852,129.673584,119.830605,115.500023,109.681839,83.450432,66.516548,83.533073,99.888451,73.417381,36.648777,13.647126,9.971093,7.623978,8.754558,9.596708,10.695055,6.861993,0.839672,0.473556,0.490083,0.000000,0.259505,0.000000,0.082645,0.219009,0.000000,2.028099,1.656198,0.000000,0.000000,0.000000 -602030.155000,4612315.550000,6440,5355,111.013245,139.938843,143.087601,128.236374,117.252907,105.558693,103.938858,98.525635,97.517365,99.145470,101.740509,112.699188,128.773560,144.542145,158.004974,169.145477,170.690933,160.368607,138.872726,119.046295,109.666130,105.261169,98.418198,72.104164,56.971920,74.872749,95.806625,71.153740,32.814896,11.695886,8.947127,8.225632,9.695882,9.658690,10.906627,7.319021,1.508268,1.030581,0.506613,0.149588,0.027273,0.340496,0.086778,0.127273,6.473555,7.755373,1.709917,0.000000,0.000000,6.019009 -602309.155000,4612315.550000,7835,5355,0.440496,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.096694,1.233059,1.523969,0.071075,0.000000,8.074389,13.051252,28.701668,53.390099,51.142166,24.128109,12.879350,12.896705,11.934719,5.316534,2.619010,2.461159,0.483472,8.457026,1.509091,2.580992,0.000000,0.010744,0.000000 -602311.955000,4612315.550000,7849,5355,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.082645,0.000000,7.854553,12.824807,31.300840,57.419025,57.513241,42.057045,39.686790,42.158695,40.742165,37.162819,20.750420,23.780172,12.995872,13.929754,0.818182,0.276033,0.000000,1.475207,3.041323 -602314.955000,4612315.550000,7864,5355,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000827,0.000000,8.902489,12.660344,30.784315,48.898365,53.719025,33.615715,27.601667,24.863651,24.498362,16.022324,9.221492,5.446285,0.834711,3.999175,1.223142,1.089256,0.000000,0.000000,4.315702 -602318.155000,4612315.550000,7880,5355,0.316529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.115703,0.000000,0.000000,6.655380,11.078524,27.689274,47.123158,44.728111,32.340511,28.069433,29.229767,23.886791,16.403315,11.619841,10.044633,3.489259,13.563641,5.619010,4.213225,0.433058,2.974381,4.596695 -602370.955000,4612315.550000,8144,5355,24.814882,4.752896,0.219009,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.049587,1.109920,4.351245,11.060340,22.490921,31.384312,35.879349,37.493397,33.390923,28.542990,29.855387,32.654560,13.687614,5.415709,22.990095,76.610756,91.711586,53.672741,4.956208,2.968610,13.382659,26.367786,48.108280,74.554558,72.678528,14.752906,0.988431,0.461158,0.454546,0.000000,0.259504,0.000000,0.000000,1.644628,0.366116,0.000000,0.675207,0.000000,0.662811 -602383.955000,4612315.550000,8209,5355,113.687622,71.156219,45.738029,33.529766,24.264473,21.047947,20.839680,20.063646,19.385960,20.875216,23.207447,30.292576,43.604145,57.005802,72.248779,86.046295,94.395058,96.440514,95.849602,87.257034,80.178528,79.831421,80.190926,58.509933,42.770267,65.676880,109.828941,113.167786,69.068611,10.968610,7.290102,14.758692,20.142168,41.543816,57.010757,55.002502,6.485133,0.306612,0.000000,0.052066,0.000000,0.000000,0.240496,0.052066,13.351245,8.212400,4.186779,1.999175,8.169424,19.020662 -600997.355000,4612305.550000,1276,5405,11.598351,18.573566,16.277702,8.293401,1.316532,0.000827,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,1.561988,9.568607,22.323984,36.727287,39.649605,35.752083,32.553734,20.278528,9.388443,8.953732,4.654554,0.000000,0.000000,0.000000,55.476051,83.071098,49.707455,5.392572,0.423149,6.761994,13.378529,25.023159,45.616547,31.966959,0.968597,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.501654,0.077686,0.000000,0.000000,0.000000,1.674380 -601002.155000,4612305.550000,1300,5405,16.000006,29.494234,25.448778,15.885141,5.585960,1.567773,0.963639,0.476861,0.187604,0.232232,0.170249,1.595872,14.475223,33.115719,51.528942,70.239685,77.181831,75.140511,71.355385,57.619850,43.611588,40.380180,29.281837,0.111571,0.000000,2.586782,90.206627,114.834724,64.198364,8.031418,2.662002,6.384306,10.802492,27.123159,45.537205,29.460348,0.464464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.411571,0.095041,0.000000,0.000000,0.000000,1.869422 -601009.355000,4612305.550000,1336,5405,23.022320,39.876053,40.618206,30.882666,20.783487,13.214893,10.338031,6.964475,5.828938,5.368607,6.652080,19.687620,39.783493,58.213245,74.403320,90.328941,96.899185,96.147125,91.147125,82.857864,72.981834,71.775223,59.072750,19.447126,3.180174,31.122334,101.907455,112.841339,66.089272,8.706624,5.370267,7.371085,15.750431,28.802496,45.841347,35.567791,1.080168,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.600827,0.216529,0.000000,0.000000,0.145455,1.099174 -601015.755000,4612305.550000,1368,5405,10.742983,18.014063,16.128939,8.423153,2.027278,0.415704,0.271076,0.000000,0.033884,0.000000,0.000000,0.064463,0.854548,3.023971,5.561164,9.941331,11.023150,9.977695,8.604967,6.230586,3.158683,2.992567,1.327275,0.000000,0.000000,0.217356,26.234728,46.508286,27.609936,3.631412,0.120664,6.647118,15.166132,29.673573,44.309937,36.957867,5.742984,0.258679,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.643802,1.493389 -601020.155000,4612305.550000,1390,5405,10.472733,8.223975,5.026454,1.981822,0.276860,0.019009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.033058,0.093389,0.505787,0.432233,0.402480,0.286778,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,7.147117,27.848780,17.517372,1.979344,0.000000,7.757036,14.511585,28.601669,46.879353,36.937210,6.004141,0.918184,0.041323,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.297521 -601338.555000,4612305.550000,2982,5405,174.289261,189.834717,182.132233,171.677689,160.793396,154.818176,157.669418,160.272720,164.190079,170.636368,179.057846,195.041321,216.677689,236.768600,252.454544,263.041351,264.652924,248.289276,207.834717,180.000000,166.338837,161.008270,154.000000,123.380165,105.041328,112.099174,108.462814,74.991753,35.256218,16.242994,14.000018,14.272744,10.805802,10.549602,11.878528,8.217368,2.039675,0.780994,0.633060,0.352067,0.286778,0.109918,0.091736,0.244629,2.436364,3.868595,0.000000,2.182645,1.222314,2.133058 -601343.355000,4612305.550000,3006,5405,153.587631,180.405792,178.711578,170.397537,158.265305,153.372757,155.174408,157.562836,163.166122,169.595886,177.529770,194.033890,217.422333,238.174393,253.347946,265.612427,266.554565,249.893402,208.769440,179.091751,167.174393,161.430588,152.827301,123.240501,105.504967,110.678520,107.835541,72.579361,35.984314,15.213242,13.893408,9.617372,9.392577,8.680181,12.181836,4.414884,1.843805,0.591737,0.452894,0.701654,0.000000,0.000000,0.022315,0.159506,0.000000,3.614876,0.000000,0.943802,0.000000,0.000000 -601350.755000,4612305.550000,3043,5405,134.064468,171.171906,178.138855,167.816528,159.519012,154.651245,154.750427,157.990082,162.899185,171.213226,178.014877,193.816528,218.692566,238.659515,256.419861,267.948792,268.105804,252.775223,211.791748,180.494217,168.642975,161.940506,154.436371,125.452904,106.651253,112.676048,109.833069,73.742172,37.742168,16.681835,14.039689,11.972744,10.652908,11.340512,9.338031,4.923148,1.179342,0.052893,0.100827,0.001653,0.062811,1.313224,0.130580,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,2.052066 -601362.355000,4612305.550000,3101,5405,122.811584,169.943817,174.439682,166.687607,153.761993,148.026459,151.728943,152.034714,156.051254,162.001663,167.852905,185.051254,206.638031,227.563644,245.249603,257.365295,260.365295,244.125626,208.365295,180.836380,168.869431,163.158691,156.290924,127.224800,106.877701,115.109100,114.489265,81.514061,40.530598,18.733074,14.208283,10.137205,10.249604,12.162827,12.494230,6.361994,1.268599,0.452895,0.320662,0.461984,0.071901,0.000000,0.059505,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.955000,4612305.550000,3159,5405,129.963638,167.476059,175.459518,162.955399,153.352081,147.426453,147.798355,148.310760,151.376877,156.294235,160.864471,174.203323,196.533890,216.178543,232.112427,246.682678,248.046310,237.988464,208.476044,182.459518,172.517380,164.897552,160.690933,129.864471,108.517365,121.170258,127.261162,92.203323,42.690929,18.359522,14.608283,8.968611,11.004148,13.619852,13.167784,7.161995,1.116533,0.676035,0.173554,0.120661,0.068596,0.000000,0.001653,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601379.755000,4612305.550000,3188,5405,125.343834,179.674393,174.525635,168.294235,155.682663,149.261169,148.624802,148.393402,151.426453,155.649597,161.203323,173.591751,194.600006,213.277679,228.575211,240.624802,242.360336,236.203323,210.137192,184.897537,175.112411,170.641342,167.054565,134.360336,111.823151,127.128937,138.004990,102.690926,46.145470,16.958696,15.186796,10.215718,10.859520,11.949604,14.309935,6.655382,0.625623,0.285126,0.033058,0.178513,0.061157,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,1.261984,0.000000 -601385.755000,4612305.550000,3218,5405,130.156204,176.263641,178.197525,169.619019,158.147934,151.205795,149.941330,151.040497,153.544632,156.271912,160.280167,173.585953,191.561157,209.156204,223.693390,232.395874,235.544632,229.123138,205.536362,183.139679,172.387604,170.090088,167.718185,139.065292,117.371086,130.734726,146.404129,113.445465,53.594234,20.957870,15.247126,10.180180,12.880182,14.223985,18.838861,8.451254,1.657856,0.471903,0.357026,0.000000,0.338843,0.000000,0.044628,0.114877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601393.155000,4612305.550000,3255,5405,136.500839,175.459503,179.699188,171.228119,159.633057,153.500824,153.765289,156.128922,157.798340,164.442993,168.864471,181.897537,201.046280,218.649582,235.277679,246.583466,250.409912,243.757019,220.434708,199.376862,190.591736,188.252899,183.872742,154.707428,131.955383,145.674377,157.566956,121.806625,57.682667,21.732250,16.715721,10.828114,12.779354,16.477703,19.096712,11.857039,1.631409,0.354547,0.317357,0.039670,0.109918,0.000000,0.089257,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601400.155000,4612305.550000,3290,5405,125.771095,178.093414,179.771103,172.696716,161.547958,154.688446,155.671921,155.217377,158.019028,164.151260,168.647125,181.399200,198.870255,216.771103,230.985977,242.126465,244.490112,238.812424,214.415726,193.895050,182.490112,180.126465,176.572754,147.184326,127.539673,138.870270,148.233902,110.895058,52.671921,20.027290,16.052086,9.956213,13.500842,13.773570,16.747126,11.001666,2.219015,0.278515,0.494216,0.309091,0.000000,0.000000,0.033058,0.032232,0.000000,0.000000,1.200827,0.000000,1.314876,0.000000 -601403.555000,4612305.550000,3307,5405,133.695892,179.629761,179.811584,172.530594,161.109116,153.150436,154.828125,155.778534,158.481018,163.481018,166.894241,179.844635,197.596710,214.406601,228.299164,239.199997,241.613220,234.604950,211.530579,189.282654,180.447937,177.100830,172.472733,145.588455,125.621498,137.282654,146.224823,111.406624,51.456215,18.745474,15.679358,9.079353,13.747125,13.752082,16.747126,9.919848,1.461988,0.165291,0.121488,0.168596,0.030579,0.000000,0.162810,0.215703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.155000,4612305.550000,3335,5405,137.757034,184.484314,179.922333,173.765305,162.988449,153.335556,155.600006,156.261169,158.517365,164.707458,168.938858,180.600006,199.195053,215.153732,229.591766,240.831421,244.285965,235.872742,213.087616,192.128937,182.368607,177.980179,174.509109,147.889267,127.674393,137.889267,146.162003,111.418198,52.881012,19.914068,15.864482,9.626461,11.618197,15.269440,14.404150,7.679351,1.439675,0.714879,0.190910,0.033884,0.042149,0.000000,0.080166,0.115703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.755000,4612305.550000,3358,5405,131.013229,181.004974,180.368607,172.376877,160.558685,153.054565,154.162003,154.409927,157.666122,162.971909,166.095886,180.029770,198.360336,216.128937,229.971909,241.360336,245.021500,236.881012,215.525635,193.302490,183.740509,180.244644,177.145462,149.360336,126.004974,137.790100,147.707458,113.550423,55.542171,20.732250,16.104151,8.128942,12.125638,14.169438,18.688446,8.038856,1.416534,0.184300,0.185951,0.000000,0.023141,0.000000,0.000000,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601416.755000,4612305.550000,3373,5405,145.751266,176.990906,176.933060,167.181015,156.536377,149.007462,149.271927,150.280182,152.081833,158.371094,163.379364,175.288437,194.106613,212.561157,227.833893,240.569427,243.123138,237.139679,213.941330,193.197525,181.685120,179.263641,175.172729,144.470261,122.709938,135.503326,149.784317,114.908287,54.908283,18.007458,15.924811,8.109107,12.328115,12.545469,17.181837,7.675220,1.003308,0.414878,0.038017,0.000000,0.000000,0.202479,0.051240,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.355000,4612305.550000,3401,5405,135.949600,183.296707,176.528122,167.875229,158.098373,149.362823,148.271927,149.866959,151.552917,157.511597,160.395889,174.280182,191.627289,209.313248,224.908279,235.784317,240.321503,232.742996,211.462006,189.784317,178.718201,175.346298,171.354568,140.817368,119.147942,133.015717,148.652084,116.536377,55.147953,20.290102,15.577705,8.084312,12.943819,14.847953,17.551258,8.952080,0.806614,1.081822,0.090083,0.000000,0.043802,0.000000,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.755000,4612305.550000,3418,5405,136.259521,180.854568,175.978531,168.548782,156.333908,146.259521,148.466141,146.920685,149.127289,155.813248,156.565308,170.738861,189.598373,206.912384,222.391724,235.598328,238.598343,231.135529,209.209900,187.358704,175.738861,172.317368,168.400024,138.557037,115.961998,129.796707,146.953735,113.135551,52.110764,18.887623,15.309111,9.623154,12.596710,11.725635,15.899190,9.077701,1.479343,0.173555,0.109918,0.187604,0.072728,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.755000,4612305.550000,3443,5405,135.960342,183.704147,175.761993,167.803314,154.538849,146.712402,146.340500,146.538849,148.158691,154.596710,156.076050,169.985138,188.704147,207.555374,221.960342,234.026459,235.613235,228.993393,206.745468,184.704147,173.910751,170.034714,166.018188,135.464478,113.447952,126.943817,143.720673,111.671089,51.348782,19.626465,15.092581,8.057864,12.342166,13.613240,15.350430,7.728937,0.681821,0.195869,0.214878,0.000000,0.043802,0.155372,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601433.355000,4612305.550000,3456,5405,151.312408,192.775192,176.031418,170.395050,157.990082,145.940506,149.204971,149.254547,150.386780,156.312408,158.147110,171.833069,190.204956,209.122299,223.180161,236.717346,239.080978,231.965286,206.932220,185.395035,173.494217,171.105789,167.618195,135.783478,112.899185,129.527283,144.849594,110.155388,52.362003,19.210762,15.238036,8.371915,13.006629,14.696711,11.936381,9.138031,0.883474,0.594216,0.224795,0.000000,0.201654,0.000000,0.080992,0.365290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601436.155000,4612305.550000,3470,5405,137.264481,187.661179,180.148773,174.727295,159.289276,151.520676,148.785141,150.140518,152.586792,157.727295,160.570267,172.933899,191.504150,209.793396,224.809921,237.537186,239.504135,231.214874,207.735535,184.231415,172.661179,171.735550,166.545471,136.958694,113.107452,127.603325,144.322327,110.553734,50.801674,20.556217,15.140515,7.695055,11.539687,14.323985,15.391753,6.995051,1.080995,0.760333,0.258679,0.087603,0.000000,0.218182,0.100000,0.122315,0.000000,0.000000,2.586777,0.000000,0.000000,0.000000 -601439.755000,4612305.550000,3488,5405,135.472733,186.067780,176.009933,169.282654,154.447937,145.150421,146.604965,145.158691,146.175217,152.001663,154.365295,167.927277,186.795044,204.175217,218.919022,229.257858,233.051254,223.671082,200.547119,179.728943,168.497528,166.538849,161.472733,129.613251,109.200012,123.596703,139.398361,103.357033,47.481014,17.844646,14.679358,9.776050,9.541340,13.230595,14.635553,5.785134,1.793393,0.128927,0.014876,0.017356,0.083472,0.000000,0.036364,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.555000,4612305.550000,3512,5405,135.647949,179.218185,176.639679,167.383469,152.771912,143.763672,145.069458,143.647949,145.400024,149.300827,153.375214,167.309097,185.697525,202.986786,217.474380,228.557022,231.077682,221.152069,197.143799,177.135544,166.416534,164.557022,159.581818,129.110764,109.813240,123.201675,136.937210,102.664474,48.970264,19.110764,14.507457,12.724811,12.193405,14.565308,15.008282,8.727284,0.770252,0.303308,0.436365,0.095042,0.219835,0.000000,0.042149,0.389257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601448.555000,4612305.550000,3532,5405,137.319855,179.088455,177.972748,166.212418,151.658707,143.485153,145.270279,143.171097,144.956223,149.840515,151.245483,166.278534,185.427292,203.609100,217.220673,229.592575,231.179352,222.501663,197.997543,176.295074,167.096725,164.377716,159.518204,129.063644,108.005806,121.873573,135.113235,100.972748,46.609108,16.964483,14.501673,11.469440,11.360348,13.622333,13.694232,5.971084,0.535540,0.383472,0.242150,0.195042,0.064463,0.000000,0.043802,0.012397,0.000000,1.207438,0.000000,0.000000,0.000000,0.000000 -601457.955000,4612305.550000,3579,5405,128.731415,185.995880,177.665298,168.252075,153.268616,144.450424,146.516541,145.285141,146.847122,152.061996,153.863647,169.574402,188.938034,206.111588,221.971085,236.070267,238.566132,228.119858,204.723160,183.466965,171.516541,169.962830,165.045471,131.574402,111.979355,124.781006,137.326462,100.384315,47.549606,18.341341,15.004151,13.035555,11.740514,12.981010,13.637208,7.329763,0.872730,0.628101,0.245456,0.042976,0.022314,0.000000,0.004959,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.555000,4612305.550000,3597,5405,137.708267,183.295044,178.146286,167.807449,153.600830,145.534714,147.220673,145.981003,148.840500,153.419022,155.344635,169.989273,189.344635,208.460327,223.799164,237.220673,241.047119,229.972733,207.286774,185.361160,176.286789,172.815720,166.790924,135.815720,113.567787,127.435555,138.823975,101.295059,47.476879,19.588448,15.162828,12.119024,11.504976,13.959522,14.642165,7.171085,1.124797,0.197522,0.187604,0.035538,0.019835,0.000000,0.060331,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.155000,4612305.550000,3620,5405,140.752075,191.520660,180.066116,169.884308,155.512405,145.338852,148.264496,146.719025,149.314072,154.355392,155.495880,169.801651,191.049591,208.330582,223.760330,238.826447,240.223145,230.090912,206.049591,185.140503,174.099167,172.363632,167.818192,135.190094,113.785141,127.157043,138.371933,101.140511,47.636387,19.082664,15.256218,13.924810,13.447124,13.562001,14.414067,7.616539,1.533062,0.534712,0.497522,0.147108,0.162811,0.000000,0.048760,0.000000,0.000000,1.276033,0.000000,0.000000,0.000000,0.000000 -601470.555000,4612305.550000,3642,5405,135.998367,191.957031,177.171906,166.890915,154.403305,142.923981,145.444641,144.535538,145.238022,151.213226,151.304138,165.733887,184.494217,202.791748,218.039673,231.436371,233.130585,222.246292,199.072739,179.171906,167.072739,166.080994,159.436371,128.014893,108.047951,120.684311,133.519028,95.403320,44.147125,16.716549,14.494233,10.306626,10.596710,11.469438,13.924810,5.164472,0.489258,0.382646,0.001653,0.000000,0.000827,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,1.139670,0.000000,0.000000 -601474.355000,4612305.550000,3661,5405,132.287613,191.353745,178.320679,171.304153,156.907455,144.882660,148.064484,147.395065,148.609940,154.973572,154.411591,168.386795,186.485977,205.485977,219.957047,233.370270,234.370270,223.700851,200.452911,180.155396,169.204987,166.279358,160.709106,129.634720,109.824814,122.238029,132.808273,97.171913,47.386795,19.254564,14.609937,15.262001,12.511589,14.362828,15.604150,7.104970,1.663639,0.127273,0.177687,0.028926,0.041323,0.000000,0.121488,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601477.155000,4612305.550000,3675,5405,135.516541,188.147125,175.841339,169.494232,157.067780,144.514053,145.728943,144.877701,146.150421,152.948776,151.634720,165.461182,183.238037,201.895889,217.366943,231.242981,233.813232,222.077682,199.681015,179.871094,169.309113,166.829773,160.945480,130.386795,110.287621,122.800018,133.106628,97.795883,45.800018,19.518200,14.631423,15.224811,13.341340,15.354563,15.316546,8.484308,2.569425,0.936365,0.569423,0.638844,0.185951,0.000000,0.565290,0.016529,0.000000,0.000000,1.160331,0.000000,0.000000,0.000000 -601481.355000,4612305.550000,3696,5405,146.653732,195.265305,179.843811,172.835556,160.042160,147.843811,148.736374,149.314896,150.521500,159.488449,156.843811,171.116547,188.281830,207.662003,222.182663,236.281830,237.471909,225.579346,202.281830,182.298355,170.397537,168.265305,162.463654,130.703323,110.050438,124.075226,131.331421,94.397545,45.455395,18.257044,14.769441,14.471092,11.939686,14.628944,15.089274,6.657861,1.400830,0.276860,0.260331,0.170248,0.038017,0.000000,0.115703,0.005785,0.000000,0.000000,0.000000,1.055372,0.000000,2.248761 -601486.955000,4612305.550000,3724,5405,160.320663,194.998352,183.039673,174.692566,155.816528,145.279343,147.163635,147.287613,149.733887,155.717361,153.907440,167.758682,186.064468,203.742157,219.651245,234.337204,233.386780,221.444641,199.477692,178.932236,167.114059,164.981827,159.254547,127.395058,109.618195,123.039680,129.419846,92.866127,43.428112,18.601671,14.477704,15.198363,10.329768,12.838032,13.691751,7.145465,1.490085,0.340497,0.189257,0.084298,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.555000,4612305.550000,3737,5405,151.258682,203.605789,181.266953,174.490082,157.886780,147.597534,148.655380,148.415710,150.597534,159.093399,155.035538,169.085129,186.688431,205.109924,220.341324,234.093399,235.176041,221.523148,200.762817,180.134720,168.671906,165.151245,160.118195,127.647125,108.936378,123.762825,131.432251,93.481834,46.432255,19.191755,14.556217,15.936380,11.502496,13.095885,13.861172,8.128111,0.797523,0.185952,0.079339,0.009091,0.069422,0.000000,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.155000,4612305.550000,3750,5405,160.150421,205.175217,182.935547,178.166946,161.365295,149.514069,150.233078,150.464493,151.828125,160.852905,157.695877,170.200012,186.695877,205.431412,220.985138,234.869431,234.976868,220.803314,198.786789,179.547119,167.877701,164.852905,160.381821,128.464478,109.753738,123.431419,131.266129,94.109108,47.786800,21.141338,14.580184,17.023985,13.402497,15.049603,14.712414,8.714887,0.680167,0.545457,0.076033,0.018182,0.012397,0.000000,0.000000,0.350414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.555000,4612305.550000,3777,5405,143.676880,186.858704,177.585968,168.544647,154.569443,145.792587,145.123154,144.676880,146.800842,151.263657,151.569443,164.395889,181.610764,199.065308,214.114899,225.065308,227.784302,215.850433,194.420685,173.627289,162.486801,160.023987,154.536377,123.040504,105.610764,119.453728,126.734734,94.610764,43.288448,19.058695,14.048779,11.663651,11.055388,11.876876,11.929768,7.769433,1.370251,0.141323,0.166942,0.022314,0.017356,0.000000,0.110744,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.755000,4612305.550000,3793,5405,122.943817,166.150406,173.323959,162.828094,151.761978,142.952057,142.489243,142.142136,144.861145,147.464462,150.712387,163.629745,181.175201,197.538849,210.042984,222.927277,224.761993,216.390091,191.795044,172.183472,160.654541,158.266113,153.109085,123.580185,103.588448,117.604973,125.117371,93.100845,43.588451,17.581835,13.919027,12.083486,11.069439,11.761172,14.566959,6.500835,0.696697,0.444630,0.190910,0.051240,0.000000,0.000000,0.029752,0.000000,0.000000,0.000000,2.459504,0.000000,0.000000,0.000000 -601505.755000,4612305.550000,3818,5405,117.465294,164.225632,175.539673,163.895050,150.531418,143.010757,142.300003,142.390915,143.721497,147.341324,149.911575,162.828934,180.622314,195.787613,210.531418,222.209091,224.820663,216.861984,192.209091,170.671906,159.324799,156.985962,150.209091,120.068604,100.845459,114.374390,125.233894,91.068619,43.886795,19.134729,13.655391,10.438858,10.537209,11.928117,13.635554,6.851251,1.300003,0.682646,0.000000,0.097521,0.021488,0.000000,0.023141,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.955000,4612305.550000,3839,5405,119.042992,166.770279,172.952087,164.125641,152.183502,143.299194,143.770279,143.596725,144.596725,146.753738,149.968628,161.943832,179.745483,196.960358,209.588455,221.472748,224.952087,215.208298,190.795074,169.985153,159.654572,154.249619,149.654572,120.894234,101.720680,115.588448,123.960350,91.580185,44.439686,18.458698,13.604979,11.253735,12.498365,13.402496,12.702497,6.274390,1.628928,0.513224,0.237191,0.323141,0.000000,0.000000,0.019835,0.134711,0.000000,0.000000,0.000000,1.021488,0.000000,0.000000 -601516.555000,4612305.550000,3872,5405,114.000839,168.314880,175.959518,161.909912,150.050430,144.480179,141.719849,141.356216,141.752899,145.017365,148.447113,159.926437,178.240509,194.314896,207.347931,218.761154,222.909912,211.976028,188.133072,167.257019,155.802475,151.637192,147.736374,117.686790,97.595886,113.009102,121.480179,87.670265,42.976055,17.289274,13.430597,8.245468,8.566133,9.710761,12.485139,6.653730,0.913225,0.192562,0.004959,0.021488,0.057026,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.555000,4612305.550000,3887,5405,111.533905,168.608276,173.013229,163.699188,150.657867,144.699188,142.145462,141.947113,142.277695,146.558685,148.831421,159.376877,178.228119,194.310730,208.790100,219.823135,222.707428,212.285950,187.823135,166.162003,155.905792,153.699188,147.236374,117.988449,98.062828,112.872749,120.732254,88.294235,44.657871,16.219027,13.385143,7.770261,10.823158,11.044645,12.714892,5.824804,0.993390,0.186777,0.451241,0.061158,0.202480,0.000000,0.090083,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.955000,4612305.550000,3909,5405,114.600838,170.369431,170.352905,162.551254,150.832245,142.782654,141.171082,140.245468,142.179352,145.245468,147.047119,159.080170,176.311584,192.873566,207.212402,218.774384,221.757858,211.518188,186.989273,165.807449,153.542984,151.138031,145.154556,115.452072,97.700012,111.906624,119.923149,86.733070,42.724815,16.560349,13.195887,7.423154,10.162827,11.386793,10.928941,4.725629,0.761985,0.261157,0.083471,0.000000,0.057025,0.000000,0.005785,0.066942,1.378513,1.155372,1.085124,0.000000,0.000000,0.000000 -601526.755000,4612305.550000,3923,5405,120.426460,167.575226,170.137207,162.120667,149.153732,141.938858,140.616547,140.219849,140.790100,143.327286,145.773560,157.690918,175.418198,190.839676,205.624802,217.476044,219.856216,210.765305,185.376877,164.401672,152.600006,149.368607,144.509109,115.195053,96.839684,110.641335,118.038033,84.790092,42.261177,16.519028,13.137209,8.974394,8.852083,9.435553,9.083486,5.473564,1.462813,0.176860,0.226447,0.009091,0.021488,0.000000,0.066942,0.000000,0.000000,1.150413,0.000000,0.000000,0.000000,0.000000 -601530.155000,4612305.550000,3940,5405,120.811600,169.894226,169.671082,160.034714,146.497528,140.588440,138.133896,137.530594,138.894226,143.208267,146.497528,156.976868,174.241333,191.216537,204.538849,216.109100,219.191742,207.646286,184.968597,162.373566,152.753723,148.067780,143.018188,114.472755,95.381844,108.720688,116.166969,84.175232,40.414894,15.579357,13.001672,5.806623,9.677703,9.788446,9.216545,5.528109,0.531407,0.000000,0.011571,0.014876,0.023141,0.000000,0.000000,0.000000,1.238017,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.355000,4612305.550000,3956,5405,106.190933,151.895050,160.754547,153.250427,143.291748,133.457047,131.366135,130.109924,131.300018,137.043808,139.812408,150.415710,168.308273,185.457031,198.159515,211.432236,213.200836,205.341324,181.696701,160.804138,151.713226,148.878525,144.390915,116.531418,98.341339,111.523155,121.465302,87.399185,40.779362,17.050432,13.126465,8.428113,10.916544,10.562826,11.662824,6.333067,0.802481,0.903307,1.201655,0.759506,0.429753,0.000000,0.292562,0.000000,0.000000,0.000000,0.000000,1.109091,0.000000,0.000000 -601538.355000,4612305.550000,3981,5405,112.693390,168.189255,168.990906,161.627274,149.519836,141.015701,140.751236,139.032242,142.048767,144.916534,146.346283,158.891739,176.999176,193.825623,208.181000,218.858688,222.412399,212.544632,189.172729,165.313232,153.329758,149.090088,146.990906,115.561157,96.908264,110.197525,117.982651,86.842155,42.767792,16.265306,13.362828,7.199189,9.286794,11.325635,11.186790,6.424804,0.934713,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.955000,4612305.550000,4009,5405,118.467781,172.682663,171.434723,161.682663,150.038025,141.988449,141.376877,141.790100,142.236374,144.459518,148.641342,158.839676,176.442993,193.674393,207.905792,219.740494,221.971893,210.707428,187.550430,166.525635,154.699188,150.856216,144.600006,116.600014,97.104149,111.170258,119.550423,87.798363,42.095890,17.668615,13.145473,8.030591,9.395886,10.937207,9.842989,4.132240,0.919011,0.207439,0.246282,0.000000,0.077686,0.167769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.155000,4612305.550000,4030,5405,106.245476,168.319824,173.162796,163.906601,150.741318,143.245453,143.171066,141.733047,143.162796,146.344620,149.212387,160.716522,178.419006,195.212387,210.204147,221.509933,223.592575,214.228943,189.311569,167.096695,156.385941,152.724792,146.790909,118.402496,98.534729,112.328117,121.344643,87.344643,42.931427,18.195059,13.344647,7.104145,11.468612,10.898364,11.904976,4.598356,1.286779,0.636365,0.265290,0.000000,0.018182,0.161984,0.039670,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.755000,4612305.550000,4043,5405,125.822319,166.309937,171.772751,161.814072,150.301666,142.177704,141.582657,140.252075,141.285141,146.276871,148.227295,159.318192,177.128113,193.524811,208.293411,219.929764,223.913239,213.119858,188.648758,166.276871,155.260345,152.144638,144.681839,117.070259,97.252075,111.450424,118.574387,88.533073,43.359524,16.862001,13.152912,6.400013,9.213240,9.625637,10.928941,4.909927,0.434712,0.281819,0.323968,0.000000,0.009918,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601556.955000,4612305.550000,4074,5405,118.966125,172.825623,172.346283,165.238846,152.106613,143.106628,142.098373,142.032242,143.412415,146.676865,149.412399,161.081818,178.164459,195.668594,209.627289,222.908279,224.668610,216.023987,190.528107,168.263641,156.701660,152.676865,147.627274,118.139671,98.833893,111.552895,120.304962,89.346298,43.445473,19.025640,13.420679,8.588445,11.038033,12.129768,12.251254,5.380176,1.304962,0.000000,0.227273,0.075207,0.004132,0.000000,0.026446,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.555000,4612305.550000,4092,5405,121.238029,163.105774,169.518997,163.039658,149.981827,140.609924,140.882645,139.328934,141.155380,144.419846,146.642975,158.907425,175.890915,192.766953,207.692566,219.923981,221.667770,212.866119,187.130585,164.593384,153.923981,149.733887,144.345459,115.072739,96.717369,107.733902,118.312408,86.328941,40.965313,15.463655,13.122334,5.353732,8.820678,9.902493,9.450427,4.787612,0.527274,0.062810,0.257852,0.011570,0.079339,0.000000,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.955000,4612305.550000,4114,5405,127.705795,170.457870,170.011597,162.821503,150.449600,140.466141,139.647949,138.796707,138.945480,144.400024,146.408279,158.127289,175.912415,192.333908,205.028122,218.433075,221.242996,211.226471,186.895889,164.119034,152.226471,149.019852,144.400024,113.738853,93.912407,108.813232,117.242989,85.309105,40.928944,16.270267,13.127292,7.270263,9.467786,10.220676,9.519023,4.557859,0.657027,0.068595,0.231406,0.000000,0.028926,0.000000,0.026446,0.238843,0.000000,0.000000,0.000000,1.126446,0.000000,0.000000 -601569.355000,4612305.550000,4136,5405,116.448784,175.151260,172.845474,163.101669,149.704987,141.837219,140.812424,140.052094,140.374405,144.101669,146.696716,157.151260,174.143005,190.903336,206.266968,217.985977,219.721512,210.399200,185.597549,161.754562,152.283493,147.490112,142.481842,113.316544,92.961182,108.019020,115.853737,85.581017,41.680183,16.831423,12.952911,7.593401,10.286795,8.949603,11.009106,5.290092,0.706613,0.075207,0.149587,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.155000,4612305.550000,4150,5405,122.895058,172.176056,171.845474,164.382660,151.622330,142.985977,140.440521,139.457047,139.845474,144.688446,145.448776,157.283493,174.704987,192.671921,206.415726,217.374405,219.795883,209.977707,184.944656,162.944656,151.300018,147.225647,142.300018,111.134727,93.622337,107.490097,116.977699,86.217377,42.506630,16.740515,12.936382,7.337203,10.142164,10.910761,10.489271,4.554554,0.834712,0.188430,0.033059,0.303307,0.000000,0.510744,0.039670,0.207439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.955000,4612305.550000,4164,5405,121.678528,174.637207,171.521484,164.298355,151.455383,142.124802,139.463654,140.174393,139.529770,143.876877,145.513229,156.314896,174.521500,190.422333,204.612411,216.604141,219.504974,209.339676,184.686783,162.058685,150.852081,146.852081,140.827286,113.166130,92.984314,107.190926,115.562820,85.447121,40.447128,17.424812,12.802497,6.133070,10.338033,9.851254,11.281834,4.743810,0.447935,0.355373,0.650414,0.000000,0.046282,0.000000,0.019008,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.555000,4612305.550000,4187,5405,136.685974,172.148773,172.578522,165.239685,151.958694,142.752075,139.710754,140.181839,139.281006,143.520676,146.231415,156.090927,173.041336,190.561996,205.239685,214.785141,217.752075,207.553741,183.578522,160.355392,148.123978,144.322327,140.000015,111.958694,91.157051,104.925636,113.801666,82.710770,41.330597,16.547127,12.727292,5.662819,9.438034,9.072743,9.114892,3.802486,0.706614,0.343803,0.142976,0.000000,0.067769,0.000000,0.042149,0.083471,0.000000,0.000000,0.000000,2.195042,0.000000,0.000000 -601582.955000,4612305.550000,4204,5405,138.665298,176.690094,175.243820,165.161179,153.061996,141.351257,140.392578,140.252075,139.367783,144.037201,144.929764,155.797531,173.979355,190.078506,204.747940,216.904953,218.491730,208.078506,182.698364,161.020676,149.384308,144.574402,140.227295,111.252075,90.681824,105.913231,114.078522,84.020668,39.508282,14.995060,12.747952,5.859514,9.524810,8.771916,8.870260,3.920669,0.543804,0.341323,0.005785,0.146281,0.051240,0.456199,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.755000,4612305.550000,4218,5405,128.564484,177.283478,171.572754,165.985977,152.647125,141.952911,140.680191,140.324814,139.977707,144.969437,146.514893,156.465317,173.837204,190.316513,205.176041,215.432236,217.919846,208.043808,182.961166,160.754562,149.481842,144.498367,140.118210,110.820679,91.630592,105.333069,113.911575,85.167786,40.242168,17.432249,12.738035,6.282654,8.532247,8.652081,11.095882,4.658686,0.596696,0.511572,0.206612,0.151240,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.155000,4612305.550000,4240,5405,130.763641,182.135559,175.168610,166.689270,152.548782,142.358704,141.044647,139.656219,139.887619,145.185150,144.515717,156.226471,173.284317,191.267807,205.259521,215.970261,218.722336,207.664490,182.532257,159.557037,147.862823,144.747131,138.581833,110.953728,90.366951,105.614891,112.978523,84.755386,39.614895,15.981838,12.598367,6.306623,8.828117,8.815719,9.408279,5.723977,0.802481,0.142976,0.219835,0.000000,0.065290,0.000000,0.072728,0.167769,0.000000,0.000000,1.249587,0.000000,0.000000,0.000000 -601592.955000,4612305.550000,4254,5405,133.766968,183.899185,175.130585,167.882645,153.725632,142.667770,141.750427,140.808273,141.163635,146.047943,146.882645,157.105789,175.576859,192.023148,207.262817,216.428101,218.651245,208.957031,182.857864,160.750443,150.378525,145.626450,140.072739,110.948776,90.642990,104.874397,114.659523,85.279358,39.766964,18.524811,12.733903,6.549598,9.313240,9.249602,10.033898,4.371910,0.388431,0.187604,0.386778,0.025620,0.082645,0.000000,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601599.955000,4612305.550000,4289,5405,126.115715,188.181824,178.214874,167.801651,155.801651,142.504135,142.148758,142.603302,141.958679,146.462814,144.942154,156.710739,173.719009,190.933884,203.115707,215.966949,218.280991,206.214874,180.595047,158.487610,148.165283,143.520660,138.636368,108.917374,90.991753,104.008278,114.016541,85.173576,40.983494,15.773573,12.603325,5.113233,9.112413,8.819023,9.322329,4.414057,1.374382,0.294215,0.120661,0.052893,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601602.755000,4612305.550000,4303,5405,110.339691,171.033890,169.777695,162.414062,146.149597,137.942993,135.876877,133.670258,133.323151,136.190918,137.323151,147.091751,165.331421,179.835556,193.298355,203.529770,205.347946,193.405792,169.157867,148.471909,137.719849,136.257034,131.281830,103.075218,86.372742,98.992577,108.538033,78.207451,37.860352,15.986795,11.934730,10.456213,10.890925,11.086793,11.409934,4.056206,0.601655,0.490084,0.086777,0.174380,0.000000,0.010744,0.000000,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.355000,4612305.550000,4331,5405,131.195877,172.245483,169.328110,159.724808,144.509949,134.352905,133.989273,132.253723,131.823975,133.460342,133.691742,145.187622,161.683487,177.047134,189.848785,200.419037,200.881851,189.700027,165.592575,145.609116,135.914886,133.840500,127.790916,101.104965,84.493408,96.749596,104.088440,74.790924,36.493404,15.763654,11.617375,9.406626,8.016542,7.967782,10.444644,2.490915,0.933061,0.147935,0.053719,0.000000,0.054546,0.000000,0.042149,0.160331,0.000000,0.000000,0.000000,1.087603,0.000000,0.000000 -601611.155000,4612305.550000,4345,5405,121.567787,169.931412,169.559509,157.890091,144.964478,133.253738,133.964478,132.022339,130.823990,132.600845,133.683487,144.146286,160.625626,176.385956,187.840500,198.716537,200.369431,188.898361,164.807449,144.187607,134.741333,131.890106,126.972748,99.452087,83.154564,95.220680,102.708282,76.212418,35.890106,14.231422,11.542995,9.733072,7.760344,8.778526,9.105802,3.344635,0.962812,0.510746,0.423141,0.004132,0.006612,0.000000,0.101653,0.439670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601616.555000,4612305.550000,4372,5405,118.065308,175.519836,170.495041,160.346283,144.536377,132.933075,133.503326,130.833908,131.362823,133.172745,133.734726,144.172745,160.776031,174.470245,188.098343,197.908264,198.635544,187.015701,164.007446,143.412415,133.924820,131.718201,126.263657,99.495064,82.395889,93.759521,102.214066,73.594231,35.081837,14.495886,11.478531,9.623155,10.330594,10.771917,9.989271,4.244637,0.685952,0.183472,0.184298,0.000000,0.101653,0.000000,0.120661,0.055372,0.000000,0.000000,0.000000,2.538843,0.000000,0.000000 -601619.555000,4612305.550000,4387,5405,128.916534,176.156204,171.371078,160.569427,145.288437,134.197525,133.321503,130.123154,130.569427,131.742981,132.833893,143.338013,157.776031,173.362808,185.007446,196.156204,196.776031,185.164459,161.957855,142.544632,132.304977,129.800842,125.172737,98.023979,81.734734,93.123154,100.759514,74.114906,34.371098,14.819027,11.379358,9.202496,7.647120,8.811584,8.515717,3.297527,0.548762,0.240497,0.261984,0.000000,0.000000,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.155000,4612305.550000,4400,5405,107.259521,174.631424,169.771927,157.639694,143.871094,134.069443,133.482666,130.375229,130.788452,132.292587,132.912415,142.846298,158.623154,174.532257,185.664490,196.647949,197.300842,184.738861,161.986801,141.606628,132.920685,130.028122,124.763657,97.152084,82.416550,93.532249,101.647957,74.722336,34.705803,14.732249,11.342168,8.976874,9.746296,9.674394,8.629766,2.706618,0.628928,0.368596,0.038843,0.000000,0.000000,0.000000,0.133885,0.000000,1.345455,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.755000,4612305.550000,4418,5405,119.664482,171.466141,169.226471,156.928940,142.937210,132.581833,131.135559,129.424820,128.499191,131.565308,130.523987,140.829773,157.242996,171.846298,183.813232,194.474380,194.722321,182.218201,160.011597,140.044647,130.722336,128.366959,122.309113,96.003326,80.069443,91.557045,99.003326,72.598366,33.747128,13.338861,11.119028,8.659519,7.329764,6.353731,7.987616,6.142984,0.610745,0.312398,0.338018,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.355000,4612305.550000,4431,5405,123.820679,179.597534,168.192566,159.258682,143.465302,132.870270,131.547943,129.630600,129.134720,130.837204,130.382660,141.233887,157.217361,171.432236,183.605789,193.605789,194.233887,181.399185,158.589264,139.142975,128.919846,127.324806,123.118195,95.151253,79.209106,91.448776,98.002495,71.374397,32.514896,12.926463,11.192580,9.186791,7.281005,7.716542,9.681834,3.076866,0.815705,0.331406,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.050413,0.000000,4.527273 -601635.555000,4612305.550000,4467,5405,126.229774,183.147110,176.047943,166.527283,151.965302,138.345474,139.485977,137.535553,137.469437,142.717377,142.742172,153.593399,171.353729,189.180176,203.328934,215.444641,216.940506,207.122314,181.948761,159.940506,147.609924,145.519012,141.345474,111.535553,93.510757,106.312408,116.039680,86.287628,41.502502,17.358696,12.849606,10.841337,10.474396,11.206627,10.252081,4.814057,1.635541,0.256199,0.112397,0.109918,0.126447,0.000000,0.209918,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.155000,4612305.550000,4480,5405,116.071922,186.278519,176.617371,166.485138,151.857040,140.741333,140.344635,139.361160,138.402496,144.534714,145.138031,155.848770,173.782654,193.352905,206.642151,220.385956,222.749603,212.947937,187.551254,164.534714,152.038849,148.600830,145.063644,113.898376,95.964478,110.270271,119.542999,89.014069,43.220684,16.735556,13.187622,9.109931,9.170266,9.185967,11.809934,5.430586,0.746283,0.257852,0.072728,0.000000,0.262811,0.033884,0.608266,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.555000,4612305.550000,4502,5405,121.750435,178.965317,175.940521,165.014877,150.485962,138.965317,139.874405,138.287628,137.800018,143.337219,144.585144,155.568604,173.204987,191.626465,206.163666,219.899200,223.593414,211.469437,186.122330,163.461166,151.626450,148.180191,143.709106,114.444641,96.031425,109.403328,119.461166,87.147133,42.783489,17.802496,13.064483,8.431417,10.246299,9.725635,12.123156,4.848768,1.613227,0.289257,0.371902,0.044629,0.000000,0.083472,0.384299,0.309091,0.000000,0.000000,0.000000,1.233884,0.000000,0.000000 -601649.755000,4612305.550000,4538,5405,103.758690,179.857880,175.403351,165.138885,150.320679,139.006653,139.130615,138.585159,138.064499,142.254578,142.750458,154.238037,172.907471,191.626465,205.337204,219.039673,220.990082,209.808273,185.510773,161.957062,150.998367,147.221512,144.072769,114.014893,94.560349,109.081009,118.428108,87.510757,42.601669,17.885971,13.097540,8.600841,10.142165,9.122329,11.052908,5.267777,0.872729,0.254546,0.033884,0.231405,0.058678,0.000000,0.071075,0.761985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.755000,4612305.550000,4593,5405,117.346298,171.164490,173.619034,163.643814,150.164459,140.255371,140.040497,138.007462,138.428925,142.643799,144.090088,156.057022,172.718201,191.181000,206.164459,219.147934,222.181000,211.131409,185.288437,162.255386,151.734711,148.742981,144.536362,114.544647,95.346298,109.602501,118.833900,86.023987,44.453743,18.644646,13.139688,8.721503,10.362001,11.626462,12.249603,5.945465,1.511574,1.138846,0.313224,0.007438,0.000000,0.041323,0.204959,0.580992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.955000,4612305.550000,4674,5405,117.114891,172.866959,173.288452,162.445480,147.255386,137.478531,136.346298,135.470261,135.495056,138.701675,141.007462,152.387619,170.131424,188.900024,202.817368,215.833908,218.652084,207.594238,182.329773,158.040512,148.519852,144.585968,140.263657,110.156212,92.346291,107.032242,115.990921,85.544640,42.668613,16.150433,12.751258,9.485966,9.474397,9.398361,11.634726,6.086785,0.777688,0.220662,0.314877,0.135538,0.089257,0.038017,0.326447,0.624794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.155000,4612305.550000,4800,5405,105.457039,162.349594,171.242157,160.944641,147.134720,138.209091,137.432236,134.977707,134.870270,138.663635,141.085129,153.242157,171.300003,188.266953,202.572739,214.655380,217.184311,205.820663,181.969421,157.853729,147.473557,143.233887,139.936371,110.911583,91.002495,106.473572,116.754562,85.076874,42.415726,16.742167,12.721507,8.329765,9.742993,10.413239,11.202495,4.870255,1.112399,0.435539,0.119009,0.329753,0.279339,0.000000,0.130579,0.376034,0.000000,1.615703,0.000000,0.000000,1.385951,0.000000 -601740.155000,4612305.550000,4990,5405,104.093407,168.402512,175.823990,163.435562,148.047134,136.559509,136.419022,134.352890,134.749588,137.691742,139.047134,151.823990,169.997543,188.121521,202.005814,213.435562,217.187622,204.782669,180.344650,156.683487,145.931427,143.286804,137.700012,107.220673,89.683479,105.063644,116.964462,84.088440,42.154564,18.034731,12.518201,10.404974,9.718198,10.566957,10.485966,4.839677,1.223969,0.389257,0.254546,0.026447,0.141323,0.019835,0.104133,0.922315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.755000,4612305.550000,5073,5405,116.404144,174.139679,174.900009,165.850418,149.866943,138.255386,138.420685,136.362808,135.833908,138.809113,140.734726,153.189255,172.643799,190.660339,204.280167,215.957855,219.147934,205.734711,181.693390,158.800827,147.123138,144.362823,140.445480,108.561165,91.908287,105.635551,118.057037,84.015724,42.817375,17.940512,12.767788,10.997536,10.113241,12.420678,12.533074,6.755381,1.060334,0.856201,0.281819,0.075207,0.222315,0.272728,0.266944,0.706613,0.000000,1.566116,0.000000,0.000000,0.000000,0.000000 -601767.555000,4612305.550000,5127,5405,110.251259,174.565308,178.598373,166.730591,148.920685,138.052917,139.019836,136.763657,136.466141,139.375229,140.565308,153.499191,173.449600,190.862823,204.061157,216.755371,219.317352,206.242981,181.441345,158.152084,147.077698,144.424820,138.945480,108.036377,90.366951,105.061165,117.548775,85.672737,43.201672,17.259523,12.631423,10.805800,10.490100,12.139685,12.164479,4.957033,0.890911,0.731407,0.190910,0.014876,0.005785,0.147108,0.314877,0.055372,3.271075,2.947108,0.000000,0.000000,0.000000,0.000000 -601771.355000,4612305.550000,5146,5405,112.517365,177.228119,179.038025,166.095886,149.120667,139.153732,139.740494,137.079330,137.525620,140.525635,140.947113,154.393402,172.947113,191.500839,205.236374,218.500839,220.162003,207.980179,182.517365,159.624802,147.575226,146.335556,140.236374,109.856209,90.566956,106.781830,119.550423,86.128937,42.963657,17.657869,12.748778,12.638858,10.394231,11.010760,11.423158,6.676869,1.280168,0.581820,0.187604,0.074381,0.249588,0.000000,0.407439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.155000,4612305.550000,5160,5405,115.804977,177.226456,179.424789,165.408264,151.796707,140.656219,141.656219,140.300842,140.945480,142.466141,143.581833,156.606628,175.697525,193.226456,206.069427,218.209930,220.730591,207.912399,183.391739,160.490906,149.614899,147.119034,141.218201,109.780182,91.127289,106.234734,119.730591,87.416550,44.490929,18.883490,12.838036,13.005802,12.410762,12.078528,15.676050,6.183482,1.876037,0.833887,0.403306,0.008265,0.307439,0.000000,0.490084,0.521489,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.355000,4612305.550000,5181,5405,117.865295,176.042984,168.034714,157.923157,141.939682,130.534714,131.443817,129.733063,130.096710,132.633896,134.228943,147.420670,168.089264,185.485962,200.990067,214.221481,217.229782,205.180191,179.866104,157.238022,146.221497,145.221512,138.890915,109.452904,90.320671,104.824799,118.171913,86.601662,42.761177,16.770266,12.626465,11.958693,10.942993,11.608278,12.068610,8.268605,2.328103,1.285126,1.196696,2.516531,0.855373,0.741323,2.085126,0.798349,2.595042,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.955000,4612305.550000,5204,5405,107.357864,181.068604,177.266953,164.052078,148.498352,136.523148,139.027283,136.093399,135.399185,139.035538,139.465302,152.242157,170.903305,189.886780,203.291748,216.432236,217.961166,203.762817,180.176041,157.614059,146.457031,142.688431,137.390915,106.746292,89.159515,103.771088,117.324806,84.895058,42.134735,15.142994,12.490102,9.356215,7.985141,9.775224,9.845469,5.283479,1.177688,0.347108,0.280166,0.004959,0.000000,0.000000,0.222314,0.574382,0.000000,0.000000,7.640497,0.000000,0.000000,0.000000 -601787.555000,4612305.550000,5227,5405,112.622337,184.399200,177.845474,166.514893,150.027298,138.357880,139.473572,136.167786,136.242172,139.250443,139.696716,153.481842,172.547958,191.242172,203.845474,217.176041,218.448761,205.374405,180.812424,158.134735,146.820679,144.374405,139.118210,108.225639,89.539680,105.498360,118.490097,86.903328,43.225639,17.133076,12.647127,11.019852,10.080183,10.303323,9.735553,5.471083,0.672729,0.256199,0.133885,0.085951,0.000000,0.000000,0.118182,0.472728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.355000,4612305.550000,5261,5405,120.895065,187.366104,181.192551,166.481827,150.936371,138.638855,138.861984,137.233887,137.861984,140.200836,139.779343,153.498352,172.746292,190.614044,205.820648,218.407425,217.977676,205.647095,182.101639,158.738022,148.027283,145.167770,141.572739,107.919838,90.233894,105.547943,117.539673,86.242157,42.176052,16.895885,12.870268,14.384315,11.132249,10.760345,12.819025,6.253729,1.176035,0.347935,0.264463,0.000000,0.000000,0.000000,0.341323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.955000,4612305.550000,5279,5405,108.315720,190.066116,180.429749,165.388428,151.330582,137.537201,137.975204,136.752075,137.115723,140.471069,140.140503,152.900833,171.876038,191.603302,204.520660,218.421494,219.322311,203.702484,182.008270,158.719009,147.280991,144.694214,139.636368,106.421501,91.611588,106.223160,117.942162,86.206627,43.082668,17.001671,12.694234,14.598364,11.428943,12.395059,14.570265,7.082654,1.714053,0.495869,0.157025,0.000000,0.112397,0.000000,0.090909,0.289257,0.000000,3.402479,0.000000,0.000000,0.000000,0.000000 -601801.755000,4612305.550000,5298,5405,117.884315,192.827271,181.595901,170.619858,153.548767,139.350418,139.447113,137.356216,138.488449,142.331406,141.529755,154.496689,172.705795,193.168594,206.160339,218.816528,218.502487,205.006622,182.295868,160.006622,148.279343,146.601654,141.436371,109.782654,90.823975,105.899178,116.667778,85.609924,42.626465,17.311588,12.857870,14.895057,9.776875,13.344645,15.526462,11.210755,4.630582,3.176035,2.033886,3.076861,1.438017,0.809918,0.877687,0.542149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.355000,4612305.550000,5326,5405,131.784302,187.771088,179.837204,169.085129,149.448761,136.994217,138.145462,137.806625,137.738022,143.399185,141.589264,152.853729,171.517365,190.178528,204.971909,217.748779,216.930588,202.814896,179.335556,156.104141,145.696701,142.649597,137.054565,104.558701,89.476044,105.376877,115.558701,83.509102,42.608284,15.940516,12.459524,15.536381,11.260347,12.715718,15.449603,8.509929,2.666119,2.710746,2.800828,2.530580,2.335538,0.553720,1.421488,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.755000,4612305.550000,5348,5405,127.588448,194.613235,182.497543,168.952087,151.770264,137.613235,136.952072,134.902496,135.481003,140.654556,138.340500,151.919022,169.348785,188.125626,203.290924,216.547119,217.125626,202.001663,178.869446,158.084305,146.456207,144.332245,138.472733,105.654564,89.902496,105.613243,116.315720,83.357040,42.547131,15.320679,12.588449,12.004972,9.048776,9.947948,10.887618,6.336372,0.624796,0.549588,0.890084,0.514877,0.228926,0.262810,0.361158,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.355000,4612305.550000,5371,5405,143.015717,200.842148,183.966141,170.982666,151.462006,138.106628,139.428940,137.924789,137.561172,144.776047,140.395889,153.172745,172.015717,191.875229,206.362808,219.751236,218.990906,202.982651,182.825638,160.379364,147.990921,144.833908,141.172745,107.627289,90.238861,107.974396,119.974396,84.825638,43.635551,17.159521,12.833902,14.776050,10.919851,11.243815,11.847949,6.029761,0.952895,0.158678,0.000000,0.124794,0.156199,0.025620,1.035538,0.000000,0.000000,0.000000,1.371901,0.000000,0.000000,0.000000 -601823.155000,4612305.550000,5405,5405,142.381851,207.871094,184.019852,171.077698,150.408279,138.441345,138.061172,135.424820,135.887619,143.259521,139.160355,151.978531,169.019852,188.705811,203.722336,217.441345,216.895889,201.028122,179.912415,157.325638,146.697540,143.036377,136.763657,105.201668,88.507446,106.912407,117.077698,83.160339,41.267788,16.204149,12.433076,12.701668,7.787617,8.012411,12.010760,6.461167,0.748762,0.276034,0.233058,0.082645,0.000000,0.011570,0.623141,0.020661,0.000000,3.690083,0.000000,0.000000,1.495868,0.000000 -601833.955000,4612305.550000,5459,5405,97.692566,168.461166,171.444641,157.014877,144.684311,134.163651,132.874390,131.064468,131.411575,133.047943,134.601654,146.667770,164.973557,181.973557,194.915710,205.965302,207.626450,196.370255,173.990082,152.395050,140.800003,137.841324,132.709091,102.642990,85.171913,101.775223,113.238022,83.849609,41.676056,15.781010,12.064482,8.772742,9.046299,10.642993,10.623983,6.399182,0.657852,0.119835,0.000000,0.004132,0.000000,0.034711,0.007438,0.638018,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.955000,4612305.550000,5524,5405,109.760338,165.925613,172.090912,159.074387,143.628098,133.851242,132.619843,129.438019,129.677689,131.876038,134.256210,145.834717,163.280991,179.966949,193.809921,204.884293,206.066116,196.760330,172.636368,151.719009,140.950409,137.537201,131.454559,101.330589,84.074394,100.900833,114.537201,83.619850,40.628120,16.242994,11.950433,9.341335,8.007454,10.210761,10.677701,5.049596,0.591737,0.375207,0.103306,0.000000,0.004959,0.057025,0.007438,0.139670,1.433058,0.000000,0.000000,1.106612,1.266116,0.000000 -601860.955000,4612305.550000,5594,5405,102.057869,167.388458,171.586807,158.826477,143.495895,132.942169,132.214890,129.512405,129.479340,131.768600,133.123978,145.272766,163.446320,180.314087,194.107468,205.132263,206.685989,197.413254,173.975235,151.966980,140.421524,138.239700,132.272736,102.000008,84.867783,102.462814,115.578522,85.719025,42.446301,16.321507,12.024814,8.700015,10.445472,11.247125,10.477700,6.467777,1.094217,0.235538,0.256199,0.007438,0.061984,0.000000,0.556199,0.059505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.755000,4612305.550000,5638,5405,102.578529,168.942169,170.884308,159.190094,143.438034,133.281006,131.958679,129.785126,129.710754,131.743805,134.090912,145.413239,164.305801,181.545471,194.504150,204.900848,207.851257,197.933899,174.628113,152.966965,141.545471,138.041336,133.454559,101.842987,84.859520,101.330589,115.950432,85.090927,40.818203,16.485142,12.132250,7.571913,10.138859,9.790925,9.871916,4.008272,0.586779,0.219009,0.061157,0.133884,0.075207,0.000000,0.327274,0.010744,0.000000,0.000000,0.000000,0.000000,1.375207,3.094215 -601876.955000,4612305.550000,5674,5405,97.588440,164.574402,167.376053,158.020676,141.524811,131.871902,130.549591,128.681824,128.128113,130.599182,132.161163,144.235550,161.309937,179.574402,192.466965,203.739670,205.822311,196.070267,175.185974,152.888443,141.384308,136.466965,131.954559,102.202484,84.425629,101.855377,114.838852,86.061996,43.425640,16.572744,11.995885,6.339683,10.129768,10.535554,11.742165,5.689264,0.989258,0.074382,0.346281,0.008265,0.000000,0.000000,0.249588,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601886.555000,4612305.550000,5722,5405,106.417374,160.896698,170.045456,159.111572,144.384308,133.830597,131.863647,130.012405,130.136383,133.103317,134.723160,146.194229,164.838837,181.450409,196.028931,206.962830,209.805801,198.979340,176.392563,154.169434,142.838852,139.177704,132.409103,102.797539,85.161171,102.285141,116.070267,86.913239,42.136379,15.054563,12.037209,7.034724,10.186792,9.911587,11.233899,5.485133,1.010746,0.120661,0.000000,0.268595,0.066942,0.028926,0.383473,0.096695,2.304132,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.155000,4612305.550000,5775,5405,100.726456,168.245453,171.782639,159.104950,142.699997,133.443817,131.989273,130.121490,129.898361,133.278534,133.815720,146.071915,164.228912,180.741318,194.278503,206.071899,207.890076,198.848755,174.468582,153.699997,142.129745,137.898346,132.790924,102.642159,84.642159,101.956207,114.642159,85.997528,41.609112,16.758698,12.071919,8.435553,9.820679,9.048778,11.694232,5.012404,0.433885,0.206612,0.124794,0.009091,0.017356,0.192562,0.000000,0.475208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.355000,4612305.550000,5816,5405,119.519844,173.594238,168.470261,158.346283,142.387604,132.098358,131.916534,129.404144,129.197525,132.627289,133.023972,143.900009,163.346283,180.693405,193.742996,206.445480,207.486801,198.635559,176.503326,154.495041,142.693390,137.916550,132.536377,102.833893,84.090103,101.222328,117.304970,87.214066,42.792580,15.917372,12.048779,6.440508,8.485141,9.540511,8.204146,3.752073,0.430580,0.305786,0.153719,0.010744,0.061984,0.000000,0.048761,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.355000,4612305.550000,5856,5405,113.935555,173.790100,173.765305,161.401672,145.872757,131.500854,131.352081,130.385147,128.352081,132.162003,133.285965,144.500854,163.740509,180.748779,193.162003,205.914062,207.864471,198.608276,175.137207,153.310760,141.120697,137.864487,132.781830,103.029762,83.699196,99.980186,115.715721,86.335556,41.451260,16.402496,12.071094,6.919845,8.742166,6.838857,11.260345,3.201660,0.998349,0.147108,0.071075,0.023967,0.068595,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601916.555000,4612305.550000,5872,5405,112.642982,168.662842,168.357040,158.059525,145.406631,134.580170,136.084305,133.985138,133.109100,136.993393,137.786789,149.224823,167.034729,184.811584,198.439682,208.497543,211.216553,201.439697,178.547119,156.836395,144.489288,140.753738,135.200012,105.100838,86.274391,101.861168,116.968605,89.522324,44.092579,17.280182,12.290928,7.542161,9.919851,9.676047,9.839683,4.401661,0.940498,0.299174,0.565291,0.148761,0.031405,0.198347,0.073554,0.234711,0.000000,0.000000,1.787603,0.000000,1.665289,0.000000 -601919.755000,4612305.550000,5888,5405,111.109940,178.903305,171.547958,161.911575,145.184311,132.192581,132.473572,130.828949,130.547958,133.870270,134.151260,144.919846,164.076859,182.060349,195.506622,206.845459,209.622314,198.969421,176.828949,155.663635,142.630585,139.258682,133.754562,103.250427,85.498360,101.663651,117.109932,86.853737,41.465313,16.983490,12.159523,7.645466,8.806629,8.823157,11.119849,4.776041,0.627274,0.762812,0.208265,0.000000,0.038017,0.019008,0.129753,0.300001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.755000,4612305.550000,5913,5405,111.692581,176.395050,172.552078,160.386780,144.254547,132.204971,131.221497,129.097534,128.072739,131.824814,131.766953,143.667770,162.535538,179.791748,193.667770,205.064468,207.072723,196.915710,174.502487,152.337204,141.163635,137.485962,130.436371,100.510757,82.651260,99.535553,114.543816,84.552086,40.130600,14.107456,11.857871,7.197533,8.366959,8.918196,10.395882,5.294223,0.541324,0.098348,0.194215,0.000000,0.047108,0.436364,0.245455,0.083472,1.567769,0.000000,0.000000,0.000000,0.000000,0.000000 -601932.955000,4612305.550000,5954,5405,104.296715,163.608276,170.244629,155.897537,140.798355,129.781845,130.352081,127.004982,126.525642,129.285965,129.790100,142.442993,161.277695,177.616531,189.880981,202.277695,204.211578,192.583466,170.682648,148.963654,138.352081,135.451248,129.963654,99.633080,83.401672,97.971924,113.550438,82.186798,41.178532,16.609936,11.814896,10.360344,9.215718,9.476876,11.685140,6.049598,0.893391,0.512398,0.266943,0.136364,0.220661,0.000000,0.040497,0.609092,1.568595,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.755000,4612305.550000,6008,5405,100.251259,172.300842,170.094238,158.152084,142.011597,129.697525,130.267776,127.813232,127.862823,130.879349,130.829758,144.317368,162.647949,179.201675,192.284317,203.598373,206.466141,193.697540,170.540512,149.763657,139.722336,136.168610,130.854553,100.284309,83.201675,97.350426,111.813232,82.598366,38.995060,15.398365,11.895887,12.011585,11.437207,10.790927,11.387620,6.049597,1.243804,0.375208,0.238017,0.000827,0.000000,0.000000,0.024794,0.071901,0.000000,0.000000,1.644628,0.000000,0.000000,0.000000 -601950.555000,4612305.550000,6042,5405,108.261177,180.054565,169.236374,157.591751,142.938858,129.757050,131.881012,128.533905,127.823158,131.352081,130.839676,143.335556,162.707458,179.310760,192.195053,206.162003,205.856216,193.071091,170.476044,150.046295,138.657867,135.211578,130.236389,100.013237,82.988441,98.748772,112.823151,81.244644,41.038036,15.308282,11.839688,8.974394,11.130595,10.411584,10.676049,4.238850,0.349587,0.610745,0.110744,0.000000,0.008265,0.000000,0.076034,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601958.755000,4612305.550000,6083,5405,99.721504,171.250427,170.068604,160.671921,144.597549,131.283493,131.457047,129.324814,128.052078,130.498367,129.605804,140.812424,158.523163,174.580994,187.696701,199.671906,199.341324,186.936371,165.614059,145.217377,134.663651,132.432251,127.118195,97.895058,81.242165,95.547951,107.167786,77.547951,36.225639,15.074398,11.556218,9.235549,9.141337,11.033899,9.909105,4.162819,0.659506,0.136364,0.068595,0.011570,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.555000,4612305.550000,6122,5405,122.675224,175.890106,170.576065,159.666962,144.493408,131.005798,131.873566,127.038864,127.303322,130.369446,128.576050,141.278534,158.096725,174.534729,186.939697,201.030609,200.617386,185.410767,166.154572,144.319855,133.179352,132.766129,125.972748,95.724808,80.460350,96.576050,106.518196,78.576050,37.732254,14.354563,11.452085,8.600840,9.129767,9.768609,9.603321,4.196704,1.704961,0.509919,0.282645,0.304133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601974.955000,4612305.550000,6164,5405,107.052086,173.423981,171.713226,163.291779,147.828949,135.341339,134.143005,131.820679,131.316559,134.928116,131.828949,143.919876,160.432266,177.423981,191.853729,205.052078,204.333069,188.787613,169.027298,149.572769,139.919876,135.886795,129.754578,100.804153,84.010765,100.944649,108.837212,81.192581,40.432255,16.268614,11.795886,10.641337,9.520677,11.810759,10.490924,5.522324,0.929754,0.183472,0.061157,0.044628,0.000000,0.002479,0.230579,0.357852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601978.155000,4612305.550000,6180,5405,122.579361,178.414062,171.637207,162.521500,145.538025,133.819016,131.637207,129.942993,128.488449,135.323151,130.471924,142.604141,158.719849,177.058685,190.934723,204.571091,203.538025,188.562820,168.719849,148.364471,137.695053,133.951248,128.190933,98.372749,83.091766,99.728111,110.108284,77.141342,40.215725,16.715721,11.653737,11.681833,9.053734,10.092578,10.574393,4.797531,0.366119,0.063637,0.308265,0.007438,0.000000,0.163637,0.254546,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601980.955000,4612305.550000,6194,5405,121.251244,181.259506,170.631424,164.564468,145.276031,133.077698,131.572739,129.375214,130.242981,134.656204,130.523972,143.581818,158.440506,177.399185,191.473557,205.655380,205.911575,189.895035,169.415710,149.647110,139.771088,135.771088,131.936371,101.572739,85.696709,102.713234,113.176048,81.746307,40.795887,18.095884,11.994233,12.829765,9.928941,10.579353,11.120675,6.439679,0.465292,0.311572,0.383472,0.242149,0.000000,0.000000,0.104132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601985.555000,4612305.550000,6217,5405,130.033066,178.685944,172.190079,165.123962,147.768600,134.404968,133.702484,130.867783,131.123978,135.727280,131.487610,142.214874,158.991730,177.760330,191.793365,204.380142,205.115692,188.247925,168.471069,148.636368,138.396698,135.396698,130.454559,101.148766,84.107460,101.652901,110.173561,78.950432,38.702499,16.807455,11.859524,12.451256,9.490925,10.215718,8.951253,5.082654,1.210747,0.475208,0.277687,0.084298,0.000000,0.000000,0.171075,0.000000,0.000000,1.486777,0.000000,0.000000,0.000000,0.000000 -601991.755000,4612305.550000,6248,5405,112.193405,159.036377,159.540512,153.507462,138.970261,128.548782,125.490921,123.722336,124.234718,127.135551,127.656212,139.193405,155.854568,173.325653,186.928955,198.581848,199.846313,189.209946,166.978531,145.358704,135.788452,132.176880,126.400009,97.895889,80.449600,97.573570,107.697540,80.044640,37.226467,14.449604,11.490929,7.545466,9.600842,10.481832,8.958694,4.409926,0.490911,0.658680,0.190909,0.300000,0.336364,0.009091,0.658679,0.072727,0.000000,0.000000,1.852893,0.000000,0.000000,0.000000 -602001.355000,4612305.550000,6296,5405,103.334732,152.243805,151.367767,145.946304,129.739700,120.500023,117.632256,117.012421,117.012421,118.235565,119.590935,131.938034,148.764465,165.665283,178.400833,191.508270,192.582642,184.037186,160.185944,138.946304,129.409119,124.880188,119.318207,89.731430,74.161179,89.665314,103.450439,75.938042,35.698368,13.147951,10.847127,8.668606,8.542987,8.584310,8.584311,3.977694,0.920663,0.365291,0.266943,0.000000,0.052066,0.000000,0.238017,0.719836,0.000000,0.000000,0.000000,0.000000,0.000000,9.466116 -602010.955000,4612305.550000,6344,5405,90.193405,149.895889,149.672745,140.408279,125.276054,115.689278,112.879356,110.499191,110.986794,112.457870,114.614899,125.647957,143.614899,159.953735,173.077698,185.259521,186.251266,176.234726,154.664490,133.019852,123.085968,118.094231,111.490929,84.193405,67.846298,85.681007,100.846298,76.945473,34.804977,12.290101,10.135556,7.190094,6.663647,9.214063,10.364478,6.587613,0.837192,0.205786,0.177686,0.160331,0.000000,0.000000,0.100000,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602014.755000,4612305.550000,6363,5405,108.378532,149.428116,148.725647,137.609940,124.998360,114.519020,110.940514,108.783485,108.328941,110.097534,111.419846,122.700844,140.700851,158.130600,170.998367,181.800003,182.229752,172.750427,150.692581,130.576874,119.948776,115.998360,110.345467,82.386803,66.262833,84.370270,100.370262,74.370270,34.295887,13.149603,10.031423,9.904144,8.428111,12.407452,9.663650,5.777698,1.778516,0.286778,0.156199,0.797522,0.209918,0.000000,0.089257,0.656200,2.098347,6.023141,3.757025,2.520661,0.000000,3.046281 -602018.355000,4612305.550000,6381,5405,110.756218,148.161179,149.466965,137.607452,122.326462,112.599190,108.756218,106.293404,105.822327,107.962830,108.615715,119.954559,137.904968,154.607452,168.061996,178.714890,179.483490,168.921509,147.144638,127.392578,116.219025,113.177704,107.136383,80.524811,63.136383,80.681831,98.334724,74.301666,36.814072,13.736382,9.739689,8.114061,9.651255,11.271915,11.021502,7.533069,2.685956,0.715704,0.720663,0.187604,0.000000,0.000000,0.154546,0.719010,2.098347,1.938843,1.718182,5.849587,0.000000,0.000000 -602023.755000,4612305.550000,6408,5405,104.427292,142.171082,138.030609,126.782654,113.138023,103.691742,100.625633,96.080177,94.410751,95.237198,97.187614,107.501663,124.038849,140.435562,151.848770,161.476868,161.576050,152.650421,134.030594,115.394226,105.981003,101.452072,96.700012,69.774399,53.319855,75.071922,94.691742,74.832253,34.592579,12.926463,8.790928,11.237206,9.233070,13.328942,15.105800,10.759518,1.346285,1.659509,0.273555,0.692564,0.312397,1.313224,0.956199,0.188430,0.000000,1.938843,1.709917,1.295041,0.000000,0.000000 -601003.155000,4612295.550000,1305,5455,0.495869,0.372728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.578513,12.889268,8.836374,1.534715,0.000000,5.397529,12.867784,28.282660,47.330593,38.090099,14.814063,7.979344,6.126450,5.136367,5.657854,3.698349,1.827273,3.739671,3.289257,0.586777,2.837191,0.369422,1.890083,1.033058 -601005.755000,4612295.550000,1318,5455,2.347936,0.343802,0.432232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.127273,0.747109,0.978514,0.453720,0.503307,0.266943,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,8.552074,30.471912,17.682657,1.917360,0.000000,4.522323,13.846296,26.537207,46.286793,37.375225,13.399183,9.467773,8.895872,9.987605,7.102481,7.123969,6.381820,4.854547,3.278513,0.000000,1.654546,3.542976,0.980992,3.728101 -601009.955000,4612295.550000,1339,5455,3.557028,0.595043,0.225620,0.085125,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.604960,2.068598,4.928933,7.076042,6.376867,5.670255,3.316534,1.448763,1.421490,0.309092,0.000000,0.000000,0.000000,25.654560,51.333076,27.837204,2.612402,0.028100,6.095877,13.865306,26.662828,45.239685,34.238033,4.328932,0.944629,0.246282,0.033885,0.046281,0.161157,0.000000,0.281818,0.000000,0.000000,0.000000,0.000000,0.000000,0.527273 -601017.955000,4612295.550000,1379,5455,12.364468,14.101665,12.102492,5.923977,1.645459,0.427274,0.176034,0.079339,0.002479,0.027273,0.002479,2.077691,12.635551,26.685966,41.938038,56.130592,62.221500,60.725636,57.262829,49.374397,40.770271,40.918201,25.954559,3.409098,0.049587,9.339683,73.023155,90.535561,50.973576,6.057861,2.359522,7.569432,14.023983,32.958694,50.452911,37.211590,2.716533,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.338843 -601020.955000,4612295.550000,1394,5455,17.693396,18.312408,18.250427,9.795054,3.601660,1.142978,1.238019,0.483473,0.318183,0.433885,0.737192,4.543808,16.909933,31.333075,45.615723,59.619854,64.396713,64.421509,60.330597,53.099194,45.228119,43.838867,33.190926,7.364474,0.777688,15.050429,74.247955,88.132248,50.438042,6.809105,3.017373,7.431415,16.554562,32.710762,49.079361,40.203327,3.448765,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,1.460331 -601025.755000,4612295.550000,1418,5455,22.538853,22.654562,18.005802,11.171913,4.449595,1.261988,0.963639,0.238018,0.346282,0.058678,0.281819,3.732239,21.596712,40.004974,57.542164,68.690926,71.062820,68.385147,62.021503,51.393406,38.547951,38.755390,27.618200,0.928929,0.000000,2.718189,71.343811,89.963654,51.938858,6.942161,2.510762,6.923151,13.395884,31.087620,45.847950,32.100845,2.077690,0.101653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.266942 -601033.555000,4612295.550000,1457,5455,2.214051,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.050414,0.116529,0.877688,1.304135,1.232234,0.901655,0.457026,0.097521,0.057025,0.000000,0.000000,0.000000,0.000000,8.865300,40.829773,24.642992,1.931410,0.000000,4.970255,15.851255,28.646299,46.485142,40.579357,5.794222,0.961159,0.246281,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.055372 -601039.355000,4612295.550000,1486,5455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.511571,0.692563,0.350414,0.000000,3.523972,17.063650,30.204975,44.339687,44.161999,30.664478,22.486788,21.895880,24.452076,20.518192,11.469428,6.436368,3.962812,3.297522,5.147109,2.799174,0.032232,0.766943,6.018182 -601332.355000,4612295.550000,2951,5455,181.737213,193.373566,186.381821,176.084305,166.381821,160.654556,165.166946,168.323975,172.695877,181.497528,190.447937,206.505798,230.208267,252.266129,268.910767,281.034729,280.357056,261.158691,215.828110,183.943832,170.852905,163.960342,154.927277,124.216537,106.836372,111.274391,103.869431,71.290924,35.530598,17.165308,14.084317,14.840512,11.814066,13.410761,12.385139,8.717368,2.491741,1.300003,1.005788,1.120663,0.628928,0.106612,0.785952,0.562812,2.437190,1.225620,0.000000,1.034711,2.490909,0.000000 -601337.555000,4612295.550000,2977,5455,182.334732,190.549606,182.690094,176.508286,168.194229,162.566132,166.053741,169.309937,175.227295,183.929764,193.392578,210.061996,233.946304,254.301666,269.285156,280.640533,279.466980,259.847137,214.268616,182.169434,168.491745,161.640518,151.227295,123.227287,106.648773,110.078529,101.657043,69.888443,32.871922,17.234728,13.747953,11.898364,10.449604,11.429769,10.892575,7.233895,2.355376,0.507440,0.776036,0.419009,0.677688,0.513224,0.105786,0.352067,1.386777,0.000000,2.251240,0.000000,1.368595,2.200827 -601345.555000,4612295.550000,3017,5455,157.224808,185.960342,185.894226,175.489273,164.266129,160.828110,164.563644,168.902496,174.406616,183.076050,192.009933,209.547119,232.737198,252.588440,268.423157,279.687622,280.059540,260.150452,215.654556,183.067780,171.133896,163.770264,155.290924,126.274391,109.315712,112.761993,104.927284,69.547134,34.150436,15.951258,14.117374,9.613239,10.693406,10.538859,10.449601,4.387611,0.990912,0.109919,0.305786,0.025620,0.013223,0.000000,0.064464,0.074381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601357.755000,4612295.550000,3078,5455,144.385147,182.831436,182.575241,170.128937,160.790100,155.699173,157.434723,161.277695,165.566956,172.938873,180.145477,196.566956,219.847961,240.368607,255.988449,267.013245,268.029785,252.434738,212.079361,181.352097,168.690918,164.104141,156.327286,127.302498,107.938858,114.153740,110.938866,78.211586,37.434727,16.494234,14.211589,10.047949,11.823156,10.145471,10.163650,5.671083,0.848764,0.344631,0.276861,0.182645,0.158679,0.000000,0.028099,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601375.355000,4612295.550000,3166,5455,142.242172,177.167770,180.200836,170.861984,158.828934,151.680176,151.994217,153.300003,155.861984,160.605789,164.225632,177.663635,197.597504,214.291733,229.886765,238.506607,240.721481,234.828918,210.374374,188.523132,177.919846,175.225632,173.027283,143.143005,120.564468,134.506622,151.176041,117.581001,55.076878,20.977707,15.729770,10.822329,13.133900,15.565308,18.653736,9.812408,1.074384,0.613227,0.189257,0.097521,0.072728,0.000000,0.054546,0.166116,0.000000,1.228926,0.000000,0.000000,0.000000,0.000000 -601387.355000,4612295.550000,3226,5455,123.415718,175.911575,173.870255,166.564468,154.423981,149.349594,150.564468,152.027283,154.754547,160.589264,164.366119,177.911575,196.597549,213.647125,230.217377,241.002502,243.911591,241.754562,220.622330,200.547958,191.060349,188.101654,187.027283,158.432236,137.754562,150.663635,168.696701,134.068604,66.010765,21.985970,17.002501,9.192575,13.847951,18.734730,25.460348,15.471092,1.303309,0.467770,0.108265,0.000000,0.000000,0.000000,0.039670,0.026446,0.000000,1.227273,0.000000,0.000000,0.000000,0.000000 -601393.355000,4612295.550000,3256,5455,134.517380,178.302475,178.401627,170.872726,159.831421,153.310760,153.476044,155.434723,156.971909,162.649597,167.302490,179.467743,197.674393,213.451218,227.566925,239.277664,241.773529,235.360306,213.442963,193.195053,184.401627,180.847916,177.872711,151.319016,129.790100,141.732239,151.484314,116.401672,56.087624,19.319027,16.170267,10.999188,14.195061,16.963654,20.405804,11.774397,1.443807,0.488432,0.135538,0.103306,0.000000,0.067769,0.296695,0.173554,0.000000,1.219008,0.000000,0.000000,0.000000,0.000000 -601398.955000,4612295.550000,3284,5455,130.631424,177.697540,176.788452,170.796707,160.771927,153.358688,153.804962,154.672729,156.507462,161.804977,166.573578,178.697540,195.788437,213.325623,226.970245,236.631424,239.656219,233.937210,210.928925,190.036362,180.962006,177.226471,173.581833,148.879349,127.251259,138.614899,148.127274,114.623161,54.143822,19.705805,15.780185,8.226462,12.156215,16.616547,17.306629,10.098362,1.101657,0.705788,0.275207,0.167769,0.000000,0.200827,0.049587,0.017356,1.402479,0.000000,0.000000,1.075207,0.000000,0.000000 -601402.755000,4612295.550000,3303,5455,133.702484,176.925629,180.223160,172.264481,161.942169,153.677704,153.801666,153.975220,155.859528,161.743820,164.611588,177.305801,193.768616,209.892578,223.206635,232.925629,236.016541,229.917374,207.561996,185.487625,177.628113,174.504150,171.272751,143.008301,125.033066,136.140518,146.677719,115.082649,54.504154,19.214893,15.570267,8.610757,13.195058,16.060347,18.336384,10.313236,1.595873,0.362813,0.099174,0.000000,0.000000,0.000000,0.124794,0.077686,0.000000,0.000000,1.255372,0.000000,0.000000,0.000000 -601408.355000,4612295.550000,3331,5455,121.221519,177.593399,177.957031,169.717361,157.180176,149.006622,148.800003,148.510757,150.196701,156.163635,158.948761,170.535538,188.056198,204.337204,217.163635,226.750427,227.568604,221.957031,198.494217,177.064468,165.923981,164.651245,160.072739,132.667786,112.345467,125.254562,141.576859,108.709106,52.246304,18.704151,14.552086,8.040511,12.323986,13.476051,16.019854,8.239680,1.219013,0.050415,0.286778,0.000000,0.000000,0.000000,0.124794,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601411.555000,4612295.550000,3347,5455,126.419846,175.262833,175.304153,166.667786,155.593414,146.163635,146.477707,146.907455,147.874405,154.452911,155.593414,168.684326,186.758682,203.808289,217.047958,227.684326,229.461182,222.229782,199.163635,177.973572,166.023163,164.362000,159.890930,131.056213,110.742165,123.899185,141.246307,109.229767,52.345474,19.981838,14.535555,7.984312,12.422331,12.986794,14.529769,6.955382,1.634717,0.090083,0.151241,0.000000,0.000000,0.000000,0.043802,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.555000,4612295.550000,3367,5455,123.228119,174.980164,172.228119,166.674393,154.013214,144.360336,145.600006,146.434708,147.996689,154.542145,157.203308,170.798340,189.145447,207.467758,220.823135,233.476028,235.748779,227.880981,205.682648,182.930573,171.013229,169.087601,164.781815,134.509109,112.476051,128.310760,143.004974,111.368614,52.186798,18.105806,14.980186,7.246294,11.057040,11.742991,14.840513,7.333897,1.266119,0.141323,0.361158,0.000000,0.000000,0.000000,0.044628,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.155000,4612295.550000,3395,5455,132.219009,185.235535,177.500015,171.640518,156.946304,149.243805,149.309937,150.797531,151.657043,158.268616,160.136383,172.830597,191.582642,209.830597,226.268616,236.450424,237.789276,230.326462,207.285141,183.913239,174.516541,170.946304,166.772751,136.772751,113.367783,128.706635,142.557846,110.855385,53.838860,20.442167,15.161175,10.063652,12.023157,13.192578,14.876877,7.702491,1.434715,0.134712,0.100827,0.186777,0.042149,0.076033,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.955000,4612295.550000,3409,5455,146.728943,177.613235,176.340500,171.249603,159.191742,148.216537,149.076050,150.001663,151.786789,159.613235,160.571915,174.200012,191.761993,211.679352,226.447937,236.935547,239.390091,232.051254,208.323975,186.671082,175.588440,170.629761,167.563644,137.109100,114.885979,129.489288,144.638031,113.538872,53.497540,21.434729,15.233077,7.647121,13.579356,14.964480,15.657044,7.671088,0.961159,0.312398,0.277687,0.210744,0.000000,0.000000,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.155000,4612295.550000,3475,5455,124.654556,179.224808,176.233063,164.257858,150.150421,142.249603,143.398361,142.150421,143.753723,147.613235,150.861160,164.208267,183.406616,200.241333,214.348770,225.398361,226.985138,217.026459,193.786789,173.051254,161.753723,159.679352,154.654556,125.497528,106.067780,118.431412,135.629761,102.390091,46.059525,17.547129,14.059523,10.598362,10.781834,13.184314,16.071918,6.668607,0.326448,0.333885,0.085951,0.165289,0.111571,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.555000,4612295.550000,3492,5455,129.106628,174.181000,175.313232,162.734711,150.866959,140.842163,144.081833,141.131424,142.982666,146.552917,149.271927,162.734711,183.205795,198.941345,213.619034,224.974396,226.271927,215.916550,193.271927,171.842148,161.875214,159.643799,153.718201,124.957870,105.883492,117.759521,134.007446,97.957870,46.106632,16.474398,13.974400,10.252081,10.771091,13.109108,14.360349,9.339682,0.844631,0.012397,0.083471,0.081818,0.158678,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.155000,4612295.550000,3520,5455,129.098358,185.023987,179.139694,167.288452,153.825638,144.999191,145.883484,144.065308,147.767792,152.395889,154.222336,168.933075,189.040512,206.742996,221.081833,234.023987,236.453735,226.065308,202.982666,182.098373,170.949600,168.288452,163.900024,131.536377,110.643814,124.164474,138.561172,104.767776,49.577705,19.239689,14.900020,10.771918,12.423158,14.138862,16.193405,8.166953,1.609921,0.429754,0.405786,0.056199,0.157852,0.000000,0.100827,0.242976,1.309091,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.755000,4612295.550000,3548,5455,132.060349,178.845459,176.870255,167.440506,151.630585,143.944641,144.936371,144.258682,147.605789,151.109924,152.762817,168.134720,188.465302,207.225632,221.291748,234.415710,236.911575,226.713226,203.134720,181.936371,171.316528,169.423981,163.481827,131.366135,111.324806,125.457039,137.804138,101.977699,47.052090,19.440516,14.862003,12.181009,12.180182,14.127290,14.639687,7.676871,1.022317,0.596696,0.411571,0.112397,0.028099,0.000000,0.000000,0.000000,0.000000,1.352066,0.000000,0.000000,0.000000,0.000000 -601454.355000,4612295.550000,3561,5455,125.348770,182.125626,178.728943,168.183502,152.695892,144.158707,145.629776,145.613251,146.662842,152.414902,154.885971,169.811600,189.456207,209.406616,223.571915,237.142151,240.042984,230.059509,207.175217,185.290924,174.150421,172.604965,167.109116,134.489273,113.571922,127.795059,141.365311,104.166962,48.638035,18.366962,15.191753,13.310761,13.238860,14.752910,14.629768,6.806622,1.261988,0.452894,0.407439,0.209091,0.023141,0.271075,0.041323,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.955000,4612295.550000,3579,5455,154.535538,187.783478,174.981827,166.766953,152.775208,145.535538,146.163635,146.353729,148.436371,152.411575,155.874390,170.890915,190.411575,209.089264,224.477692,237.552078,241.006622,231.105789,207.915710,185.601654,174.560333,173.824799,167.709091,135.609924,114.601662,128.312408,140.552078,102.750420,48.676056,18.302498,15.246300,10.269437,12.827290,13.486794,15.977704,7.330590,0.692565,0.330580,0.653720,0.000000,0.110744,0.000000,0.053719,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.755000,4612295.550000,3618,5455,139.237198,190.956207,179.766129,172.675217,158.195877,146.030594,149.642151,148.567780,150.237198,156.096710,155.997528,170.873566,189.733063,209.005798,224.204147,238.997528,240.964478,228.989273,207.104965,186.708267,176.104965,173.931412,168.881821,135.526459,114.567780,128.923157,141.179352,103.468605,50.534733,20.504152,15.352911,14.593406,13.162827,16.190100,16.732250,9.014061,1.139672,0.085951,0.224794,0.257852,0.165290,0.033884,0.071075,0.153719,0.000000,1.303306,0.000000,0.000000,0.000000,0.000000 -601468.555000,4612295.550000,3632,5455,141.864471,190.170242,175.823151,168.633072,154.542160,143.509109,145.773560,145.748779,147.310760,154.418198,153.029770,168.162003,185.781815,206.451233,219.616531,235.236359,237.360321,226.186768,205.971893,183.079346,173.195053,170.442993,165.963654,134.029755,110.988441,127.161995,139.434723,101.847946,48.145477,18.152912,15.087623,14.193405,12.518199,13.730595,17.800018,8.644640,0.304134,0.179340,0.086777,0.000000,0.109918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.155000,4612295.550000,3655,5455,149.015717,189.778519,178.133896,168.538849,153.348770,141.795044,145.109100,144.571915,146.332245,152.910751,151.861160,165.869431,184.067780,203.514053,218.200012,232.869431,235.530594,222.919022,200.745468,182.059509,170.257858,168.695877,164.109100,129.993393,110.150429,124.770256,137.423157,99.547127,47.398369,18.332249,14.919027,13.568613,11.025636,13.453735,15.463655,6.773565,1.074383,0.581820,0.124795,0.000000,0.124794,0.000000,0.071075,0.000000,0.035537,0.000000,1.010744,0.000000,0.000000,0.000000 -601478.155000,4612295.550000,3680,5455,150.038864,197.526459,180.939697,173.402512,154.774399,145.022339,143.981018,145.154572,147.047134,155.104980,151.923172,166.840515,183.923172,203.823959,219.865280,232.790909,235.989243,222.691727,201.460342,181.253738,169.700027,167.700027,162.427292,128.377701,108.997528,124.336372,135.129761,97.691742,47.270267,18.578531,14.766134,13.444645,9.987619,13.303324,13.150430,6.695878,1.196697,0.180993,0.008265,0.000000,0.061984,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.155000,4612295.550000,3710,5455,144.309097,199.722321,181.168594,173.763641,156.400009,145.557022,146.044632,146.507446,147.598343,156.259506,153.532242,167.185120,184.714050,203.168594,219.069427,232.813232,234.160339,221.251236,200.738846,180.350418,168.755371,166.416534,161.581818,128.656204,110.747116,124.490921,133.639679,96.044640,47.276051,19.218199,14.689276,17.539686,11.531423,13.401670,14.005802,7.166954,0.711572,0.508266,0.085951,0.012397,0.038017,0.000000,0.232232,0.027273,1.298347,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.355000,4612295.550000,3731,5455,140.847122,195.334732,180.971085,169.954559,154.623978,144.367783,144.772751,144.962830,146.169434,154.384308,151.714890,164.541336,183.384308,200.640518,216.533081,229.524796,231.276855,218.714890,197.516541,177.491745,165.880188,162.847122,157.045471,124.863655,106.714890,121.078529,130.169434,93.541336,44.871922,17.168615,14.276878,14.407454,11.062826,11.451256,12.338858,6.433895,1.704963,0.013223,0.000000,0.049587,0.071075,0.000000,0.000000,0.140496,1.400827,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.155000,4612295.550000,3750,5455,109.713234,169.308289,172.523163,163.349609,149.787613,141.357864,141.498352,141.109924,143.109924,145.688431,149.547943,162.481842,181.093414,197.597549,212.564468,224.696701,227.019012,217.580994,195.167786,172.779358,162.870270,159.167786,153.390915,124.944633,104.614059,117.754555,128.671906,94.870255,47.035553,18.600845,13.944647,11.886793,10.087619,12.313240,13.135553,5.602490,1.202483,0.029753,0.009918,0.017356,0.050414,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.755000,4612295.550000,3778,5455,124.347954,162.609100,168.600815,161.352905,147.782654,140.832245,139.138031,140.675217,140.947937,143.104965,147.080170,159.402496,177.592560,193.121475,207.385941,219.890076,222.220657,212.964462,189.906601,168.633896,158.419022,155.666946,150.427277,119.576050,100.179359,114.452087,124.906631,90.270264,45.295063,18.059525,13.675225,10.761173,9.841339,13.611588,12.095884,6.289267,0.508267,0.294216,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601501.555000,4612295.550000,3797,5455,119.725632,167.304153,170.684326,160.238037,149.527298,142.461182,140.733902,139.866135,141.899200,145.287628,147.874405,160.609940,178.519028,194.890930,209.353745,221.047958,224.502502,214.461182,191.923996,169.667786,159.552094,155.188446,149.345474,121.279358,101.287628,115.915726,124.114075,91.370270,44.386795,16.777704,13.576880,10.179355,10.057868,10.574396,10.782660,5.897531,1.135539,0.078513,0.112397,0.000000,0.036364,0.000000,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.355000,4612295.550000,3816,5455,121.537209,166.727295,171.264481,161.900848,150.041336,142.421509,142.024811,140.008286,142.628113,145.074402,146.281006,159.966965,177.966965,193.677704,208.404968,218.710754,222.702499,213.685974,189.190094,168.223160,157.876053,154.033081,149.363647,119.760345,100.090927,114.785141,123.727287,90.925636,43.735558,18.712414,13.578531,10.262823,12.323157,12.314067,13.004973,6.057860,0.464463,0.196695,0.084298,0.077686,0.033885,0.000000,0.075207,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.555000,4612295.550000,3832,5455,117.633072,171.153732,170.715714,162.831421,149.476044,142.814896,141.798355,140.153732,141.203323,144.715714,148.137207,160.335556,177.897537,194.277695,207.616547,220.269440,222.657867,213.327286,190.021500,169.162003,157.806625,154.327286,149.781830,119.649605,100.071091,114.285973,126.236374,90.980179,44.442993,18.526464,13.616548,9.028113,11.656217,12.071918,13.303323,5.661165,1.010746,0.012397,0.323968,0.150413,0.022314,0.000000,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601511.955000,4612295.550000,3849,5455,108.732246,167.203339,169.872742,162.492584,150.038040,140.038040,140.277710,138.401688,139.484329,143.401688,146.087631,157.649612,175.112411,192.583466,206.021484,216.740494,219.294205,212.153717,188.277679,165.376892,156.095901,151.666138,145.690933,117.211578,97.203316,111.062813,120.451248,89.352074,43.252911,16.578529,13.244646,8.251251,10.502497,10.502495,13.153735,5.766953,0.897522,0.192562,0.068596,0.000000,0.000000,0.044628,0.005785,0.000000,0.000000,1.210744,0.000000,3.014876,0.000000,0.000000 -601515.355000,4612295.550000,3866,5455,115.417374,164.020676,168.896729,161.632263,148.690094,141.061996,139.797531,138.698364,141.136383,143.863647,146.061996,157.318207,174.814072,191.524811,204.847107,218.004135,218.830582,209.549591,187.533081,165.210770,154.896713,151.483490,145.409103,116.847122,98.309937,111.466957,120.681831,88.177704,43.607464,16.270266,13.219028,8.671913,10.314067,10.968611,13.495884,6.505797,0.610745,0.126447,0.127273,0.000000,0.077687,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.355000,4612295.550000,3881,5455,101.812401,163.019028,169.341324,161.440521,148.043823,139.390930,139.647125,137.985977,138.911591,141.969437,144.903336,155.804153,173.837173,190.961151,204.622299,217.043793,218.349579,210.035522,184.977676,163.556213,153.308289,150.291763,145.118210,113.969429,95.696701,110.523148,119.266945,85.729759,41.192581,15.874397,13.192581,7.626458,8.932248,9.764478,10.307453,4.787612,0.523142,0.117356,0.000000,0.000827,0.017356,0.000000,0.000000,0.000000,2.740496,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.755000,4612295.550000,3898,5455,111.087616,163.492569,172.004974,160.633072,147.790100,140.682663,139.186783,138.294235,139.451248,143.021500,145.302490,157.517365,174.922333,190.971909,205.004974,216.385132,219.310760,209.847946,184.831421,164.533890,154.550430,149.583481,144.509109,116.261169,95.476044,109.748772,119.442986,86.533897,42.856220,17.425638,13.137209,8.276044,11.039686,10.517371,9.815716,4.561165,1.019010,0.279339,0.004959,0.000000,0.018182,0.000000,0.006612,0.159505,0.000000,0.000000,0.000000,0.000000,1.219008,0.000000 -601525.955000,4612295.550000,3919,5455,105.823975,164.518188,172.774384,163.030594,150.278519,141.947937,140.096710,139.931412,141.096710,143.766129,146.063644,157.129761,175.848770,191.609100,205.981003,217.261993,218.840500,209.559509,185.823975,164.088440,153.774384,148.270264,145.336380,115.080177,96.460342,110.592575,122.468605,89.022324,42.410767,17.453739,13.212415,8.790096,8.548776,12.649604,12.263651,6.067779,0.715705,0.824794,0.026447,0.000000,0.033885,0.000000,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.169421 -601532.555000,4612295.550000,3952,5455,114.517357,167.963654,170.087616,162.971909,147.600006,139.757034,138.409927,138.500839,139.624802,142.277695,144.376877,155.616547,172.947113,189.790100,202.872742,215.426453,217.376877,206.881012,183.294235,161.633072,151.004974,146.781830,140.145462,111.839676,92.872734,106.335541,116.244637,84.864487,40.947124,16.440514,12.740515,6.533071,8.652083,9.828115,10.582661,4.077693,1.374382,0.166116,0.138843,0.042976,0.006612,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.155000,4612295.550000,3990,5455,110.433075,165.168610,171.276047,160.523987,149.383484,141.234726,139.242996,138.209930,140.978531,142.838043,145.102493,157.408279,175.424820,190.573578,205.168610,217.094223,218.978516,209.780182,184.920685,163.722336,152.003326,148.573578,142.309113,113.730598,93.697540,107.209938,116.796715,86.854568,41.730598,16.059523,12.937208,8.381003,9.627290,10.628942,10.942163,4.128935,0.995870,0.337191,0.125620,0.085124,0.008265,0.000000,0.000000,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.555000,4612295.550000,4017,5455,120.747124,168.325623,170.565292,162.135559,150.548782,141.730591,140.036377,138.490921,139.185150,143.722336,145.788452,157.300842,174.391739,191.242981,205.176865,216.490921,219.267792,209.383484,184.961990,163.433075,151.259521,148.350433,140.945480,111.689278,94.466133,107.722336,116.854553,85.681007,42.358696,15.701672,12.813243,6.895052,8.969438,11.274397,11.730596,4.940506,0.605787,0.004959,0.360331,0.000000,0.036364,0.000000,0.019835,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.555000,4612295.550000,4032,5455,120.911583,172.944641,170.060333,162.324799,149.308273,140.423981,139.746292,139.357864,139.159515,142.539673,145.638855,157.407440,174.663635,191.465302,204.738022,217.440506,218.490082,210.919846,184.027283,161.457031,151.961166,148.085129,142.027283,112.531418,93.068611,107.547951,117.316544,86.291748,42.010765,16.128944,12.911589,7.111582,9.357868,8.969436,9.961998,4.041330,0.340497,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.355000,4612295.550000,4056,5455,124.530594,172.638016,170.266113,162.216522,149.786774,142.216537,139.869431,138.200012,139.431412,142.133896,145.084305,156.092560,173.919006,190.059494,205.059494,216.720657,218.241318,208.456192,184.596695,161.885941,151.778503,147.109085,140.745468,111.943817,92.745476,107.720680,116.762001,85.332253,41.208290,17.885971,12.795060,7.338856,9.403322,10.303325,10.651256,4.272735,0.917358,0.075207,0.128926,0.000000,0.036364,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.755000,4612295.550000,4088,5455,127.003319,171.796692,172.168594,165.416534,153.209915,142.441330,141.424789,141.168594,141.978516,145.970245,147.937195,157.854553,175.623138,191.953720,205.656204,218.028107,219.912399,211.077682,185.160339,163.119019,151.036362,147.714050,142.400009,114.127289,93.127289,107.209930,118.292580,87.697540,42.714069,18.011589,12.945473,7.490094,12.193406,12.009934,12.699189,5.823975,1.509094,1.428101,0.382645,0.010744,0.000000,0.000000,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.555000,4612295.550000,4112,5455,132.152908,173.706635,172.508286,165.376053,151.466965,142.764481,141.152908,140.037201,141.268616,145.871918,146.533081,157.623978,174.417374,191.384293,205.714874,217.574387,219.384293,209.995865,184.491745,162.252075,151.152908,145.533081,142.318192,112.285141,93.400841,106.971092,116.747948,87.574394,40.690102,16.478529,12.938036,7.131416,10.552910,11.295884,12.385138,4.793397,0.773556,0.422315,0.284298,0.000000,0.118182,0.000000,0.204959,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.155000,4612295.550000,4130,5455,119.153732,170.839676,172.095886,162.029770,148.823151,139.128937,138.360336,137.352081,139.418198,143.203323,146.153732,156.302490,174.732239,191.509109,205.335556,216.748779,218.409927,209.376877,183.922333,160.244644,149.881012,144.699188,139.054565,111.219849,92.112419,103.649605,113.294228,83.608276,40.922333,15.663655,12.641341,6.211582,10.326463,11.985142,11.091750,3.396702,1.261159,0.171901,0.446282,0.000000,0.012397,0.114050,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601570.955000,4612295.550000,4144,5455,122.731430,171.690079,171.747940,162.673553,151.929749,140.078506,139.714874,138.318176,139.194214,142.706604,144.673553,156.103302,173.252060,190.070251,204.235535,216.095047,218.351242,206.640503,182.210739,160.400833,148.557846,145.987610,140.863632,111.086800,90.962837,105.524818,114.177711,84.904984,39.690105,17.026466,12.805804,7.120672,9.373570,8.641338,10.288445,3.346288,0.631406,0.048760,0.146281,0.019835,0.097521,0.000000,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601575.355000,4612295.550000,4166,5455,123.014900,179.609940,169.932251,163.039688,150.444656,139.568619,138.990112,136.775223,136.775223,141.643005,143.494232,153.923996,170.923996,188.014893,202.287628,213.585144,216.601669,204.824814,180.444656,158.279358,146.882660,143.469437,137.709106,109.477699,89.328949,101.923988,111.494232,84.105797,38.254562,13.666959,12.519027,4.915710,7.124809,7.640512,7.337203,2.966121,1.202483,0.155372,0.080165,0.029752,0.077686,0.000000,0.135538,0.175207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601580.555000,4612295.550000,4192,5455,120.042168,175.942993,174.785965,167.009109,153.306625,142.223984,140.480179,140.595886,141.422333,144.199188,145.314896,158.017365,173.240509,190.951248,205.331421,216.819016,218.595886,208.645462,183.108276,160.298355,149.471909,145.546295,139.463654,109.926453,90.273575,104.199188,113.455376,87.347954,39.794235,16.186796,12.678533,6.151250,8.468612,8.145471,10.033898,4.976867,1.085127,0.195869,0.261158,0.071075,0.080992,0.000000,0.014876,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.355000,4612295.550000,4206,5455,127.288445,182.619019,175.114883,166.123138,153.313232,142.941330,141.701660,140.875214,140.999176,144.949585,146.511566,157.544632,174.321487,191.850418,205.222321,216.147934,219.652069,208.552902,183.643799,160.536362,149.090088,144.891739,139.900009,110.701668,91.271912,104.999184,115.478523,84.478523,39.321507,16.237207,12.718200,5.904142,8.592577,9.397535,9.022328,5.483479,1.196696,0.121488,0.352893,0.028099,0.047935,0.000000,0.133058,0.371901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.755000,4612295.550000,4228,5455,136.146286,186.113235,175.675217,170.766113,155.055359,144.295029,143.790909,142.873550,143.460327,146.980988,148.030579,158.799164,176.261993,192.749603,207.038849,219.881821,220.030594,209.873566,185.534714,163.138016,149.691727,146.278503,141.154541,111.509926,92.757866,105.278534,114.700012,85.377701,42.104980,18.322332,12.832251,7.081003,9.419027,10.766960,10.095056,3.278518,0.971903,0.032233,0.065289,0.148760,0.108265,0.000000,0.025620,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.355000,4612295.550000,4246,5455,135.990082,188.196701,180.485962,170.254547,156.130585,144.791748,142.221497,142.733887,142.469421,146.990082,147.370255,158.163635,174.965302,192.502487,206.271088,218.039673,219.543808,208.337204,183.403305,160.386780,148.552078,145.642975,139.345459,111.882660,91.576874,105.452904,114.733902,85.171913,41.287624,16.786795,12.667789,6.504142,10.262000,9.515718,9.949601,4.539678,0.809093,0.246282,0.171901,0.000000,0.017356,0.000000,0.098348,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601594.555000,4612295.550000,4262,5455,116.295891,171.221497,171.238037,159.519028,145.304153,136.444656,135.328934,134.279343,133.039673,135.345459,136.552094,147.866135,164.304153,181.477692,192.775223,203.609940,205.031433,194.304153,169.362000,149.188446,138.940521,136.295868,129.800003,103.585129,86.147118,99.444633,107.634720,77.676041,37.667786,16.594233,11.800018,10.657039,9.977702,9.506625,11.891751,4.572737,0.618184,0.371075,0.830580,0.000000,0.052066,0.000000,0.047108,0.300000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.155000,4612295.550000,4280,5455,113.473579,169.952896,172.638855,157.316513,145.845459,135.035553,133.605804,132.225632,131.630600,133.233902,135.423981,146.366119,163.176025,179.374390,190.713226,202.043808,203.738022,191.804138,167.184280,148.688416,136.870270,135.060349,128.845474,101.184319,84.969444,97.060349,104.944641,76.010757,36.085144,13.973573,11.713242,8.878526,7.951252,7.721501,8.890924,3.379346,0.478514,0.367770,0.352893,0.122314,0.305786,0.000000,0.000000,0.104959,0.000000,0.000000,0.000000,1.016529,0.000000,0.000000 -601601.755000,4612295.550000,4298,5455,120.138863,171.527298,168.841339,159.833084,144.609940,134.560349,135.039688,131.775223,132.105804,134.353729,135.089264,145.684326,162.783493,177.485977,190.717377,200.163666,202.510773,191.386795,167.576889,146.419861,136.378525,135.097534,128.800018,101.229767,84.750435,97.130600,105.345467,76.254570,35.783489,15.838035,11.709110,9.758692,10.313238,9.184311,8.919849,3.644636,0.793391,0.037190,0.387604,0.000000,0.000000,0.001653,0.057025,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601604.355000,4612295.550000,4311,5455,113.865318,172.319824,169.088425,157.402466,143.592575,134.394226,132.716553,131.369446,130.857040,132.881836,133.782669,144.873566,161.138016,176.212387,189.642136,198.253708,201.931396,189.104950,166.005783,145.245468,135.567780,132.790924,126.972748,99.195885,83.328125,95.691750,103.303322,75.542992,33.286797,15.226464,11.542994,8.986792,8.654559,10.085138,9.895056,3.250422,0.803308,0.844630,0.373555,0.000000,0.000000,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.755000,4612295.550000,4328,5455,126.698364,171.268616,171.334732,158.260345,145.491745,135.533081,133.756210,132.128113,131.822327,133.243805,134.351242,145.376053,161.235550,176.896713,189.830582,200.086777,201.095047,189.276855,165.425629,147.202499,136.772751,133.177689,127.772736,101.070259,84.367783,96.376038,104.433899,75.764473,34.904980,14.781836,11.615721,8.583485,7.348774,9.695882,9.435552,3.760339,0.531407,0.195042,0.354546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.355000,4612295.550000,4341,5455,99.052910,166.730576,168.028122,158.647934,145.598373,133.052917,132.647949,130.523987,130.598373,133.813248,132.813248,143.590103,160.515701,175.631409,187.730576,200.160339,199.887604,187.581818,163.590088,145.143814,134.242996,132.656219,125.945473,99.722336,82.590103,94.325638,103.350433,75.094231,33.871094,14.078529,11.449605,9.075219,9.172740,7.645466,11.206627,3.585957,0.409919,0.232232,0.130579,0.059504,0.114050,0.000000,0.000000,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601615.955000,4612295.550000,4369,5455,120.483498,177.971085,171.723160,161.590927,146.607452,134.623993,135.425629,132.351257,132.574402,135.516541,134.739685,145.690094,161.615723,177.210754,189.723160,200.508286,199.979355,188.739685,165.888443,146.376053,136.252075,133.533081,127.954567,101.243828,84.582672,96.781006,104.533081,76.789284,37.185970,16.767786,11.632251,11.210759,10.702495,11.631421,10.928117,4.749596,1.138846,0.575209,0.061984,0.107438,0.190910,0.000000,0.256199,0.109918,0.000000,0.000000,1.233058,0.000000,0.000000,0.000000 -601618.755000,4612295.550000,4383,5455,105.764481,174.954559,169.516541,159.657043,143.458694,132.706635,133.243820,130.458694,130.392578,133.921509,131.954559,143.185974,158.962830,174.185974,186.466965,196.425629,197.177704,185.086792,161.260345,141.954559,132.177704,130.450424,124.681831,98.714890,81.194229,93.268608,102.904976,74.541351,34.400848,12.587619,11.334729,7.676874,8.644640,8.406624,10.589271,2.923146,0.847109,0.262811,0.021488,0.114876,0.000000,0.000000,0.130579,0.098348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.355000,4612295.550000,4396,5455,114.135559,177.548767,170.325623,160.176865,146.267776,134.317352,133.813232,131.862808,130.581818,133.995041,132.590088,142.755371,158.325623,174.333893,186.804962,197.085953,196.821487,184.598343,162.788437,142.325623,132.804962,131.829758,126.309105,98.011589,82.614899,94.036385,102.251251,74.052910,35.738861,15.026464,11.482663,9.725636,9.207452,11.408279,11.474397,3.547942,0.858681,0.180166,0.152067,0.014050,0.119835,0.002479,0.200001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.555000,4612295.550000,4412,5455,125.680992,177.879349,169.598343,158.846283,141.821487,132.813232,130.796692,130.267776,128.598343,131.441330,130.052902,140.044632,154.763641,170.193390,182.763641,194.821487,193.970245,181.110748,158.813232,140.019836,130.135544,128.714050,122.854546,95.606613,79.738853,90.970253,100.788429,72.507454,32.672749,13.833902,11.168613,7.661996,7.881005,8.980176,8.272742,2.269428,1.276036,0.235538,0.012397,0.005785,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,1.146281,0.000000,0.000000,0.000000 -601627.155000,4612295.550000,4425,5455,122.581009,187.126450,176.010757,165.465302,149.589264,138.738022,137.597534,136.952896,136.390915,141.060333,140.432236,151.308273,167.903305,186.374390,200.382645,213.539673,214.787613,203.151245,179.969421,158.142975,145.539673,143.291748,139.845459,108.754562,91.217369,104.523155,114.349602,83.291748,40.622334,16.356216,12.713243,10.630595,9.493405,9.985139,10.972744,4.371082,1.067772,0.638844,0.026446,0.266117,0.000000,0.579340,0.147934,0.277686,0.000000,0.000000,1.094215,0.000000,0.000000,0.000000 -601630.955000,4612295.550000,4444,5455,117.820679,181.266953,177.192566,166.812408,150.977692,139.647110,139.589264,138.564468,138.498352,143.985962,144.167770,155.068604,172.837204,192.266953,207.291748,220.233887,223.316528,212.415710,186.721497,163.283478,152.060333,148.729752,144.481827,114.390915,95.944633,110.671906,118.622322,87.258698,41.605808,15.900845,13.134729,6.487616,9.871919,8.898361,11.314891,4.912404,0.971903,0.076860,0.126447,0.071902,0.000000,0.065290,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.155000,4612295.550000,4475,5455,123.320679,181.527298,176.527298,165.287628,151.824799,139.097534,138.519012,138.279343,138.684311,142.824799,143.419846,155.766968,173.180191,191.147125,206.866135,219.386795,222.279358,211.147125,186.750443,163.056213,150.833084,148.452896,144.527283,115.866127,95.552086,111.047951,119.064476,87.502502,43.791756,17.007456,13.138863,9.191751,9.674397,10.601667,11.638033,4.910753,1.039672,0.415704,0.060331,0.301655,0.081818,0.000000,0.313224,0.264463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.555000,4612295.550000,4517,5455,102.400017,173.267776,172.400009,162.945465,149.457855,137.515701,137.449585,136.135544,136.664459,141.028107,142.953720,154.110748,171.449585,189.771927,203.598373,217.143814,220.028122,208.598373,183.722321,159.647934,149.788437,146.218185,140.672729,113.433075,94.011589,108.590103,116.036385,85.358696,42.333904,17.060349,12.788450,7.527284,8.946299,7.927286,10.907454,3.845461,0.943804,0.694216,0.000000,0.052067,0.000000,0.014876,0.428101,0.227273,1.476033,0.000000,0.000000,0.000000,0.000000,0.000000 -601657.155000,4612295.550000,4575,5455,118.589279,173.919846,173.457031,162.498352,147.597534,137.531418,137.795883,136.217377,136.448776,140.721512,141.944656,153.820663,171.010757,188.729752,204.242157,217.118195,220.233887,207.390915,182.605789,159.151245,148.481827,143.589279,140.390930,110.126457,91.671906,106.176048,116.465294,85.622330,41.547951,16.308283,12.762829,7.181004,9.351258,9.703321,11.017370,5.052901,1.000829,0.166943,0.230579,0.164464,0.222315,0.037190,0.335538,0.241323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.155000,4612295.550000,4665,5455,117.028954,169.252899,173.492569,161.451248,147.393402,136.533920,136.195053,133.922333,135.806625,137.955383,139.831421,151.236374,170.748779,187.186783,200.566956,214.740509,216.525635,206.699188,180.963654,157.682663,146.310760,142.195053,138.872742,110.195053,90.310768,105.228119,116.500839,83.641342,43.071091,17.765306,12.624811,6.807452,10.662826,10.795882,10.496710,5.715712,1.073557,0.253720,0.409918,0.007438,0.214050,0.000000,0.275208,0.260331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.755000,4612295.550000,4803,5455,117.005806,168.774368,174.675201,161.162796,146.890076,135.567780,136.154556,133.096710,134.592575,136.832230,139.253708,151.311569,169.923141,187.328094,201.237183,212.906601,215.005783,203.435532,178.600815,155.195862,145.402466,142.187592,137.972717,108.063652,89.328125,104.584312,115.311584,83.311584,41.666965,16.372746,12.542994,7.891748,8.845473,8.120677,10.825636,6.799183,0.608266,0.280993,0.067769,0.144629,0.089257,0.000000,0.371902,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.955000,4612295.550000,4974,5455,110.176872,168.771912,174.672729,162.449585,148.011597,135.548767,137.408279,135.705795,134.829758,138.077698,139.168610,152.069443,171.193390,188.300827,202.639679,215.143799,216.457855,205.714050,180.317352,156.490921,146.639694,144.366959,137.945480,109.102486,89.441322,106.085953,115.375214,82.152077,41.523991,15.050430,12.540514,9.971917,9.487619,10.690099,10.081834,5.922322,0.755373,0.102480,0.221488,0.008265,0.222315,0.000000,0.144629,0.450414,1.652066,0.000000,0.000000,0.000000,0.000000,0.000000 -601751.555000,4612295.550000,5047,5455,117.971924,179.285965,176.773560,164.484314,148.938858,138.137207,138.145462,135.938858,136.938858,138.409927,140.897537,152.914062,172.128937,190.856216,203.699188,216.054565,217.856216,207.062820,181.343811,158.773560,148.376877,144.203323,140.872742,108.401665,90.492584,105.757034,118.319023,86.963654,42.914070,18.206629,12.806630,11.971917,11.588447,11.281007,9.965304,6.844638,0.895043,0.177687,0.070248,0.209092,0.295042,0.000000,0.430581,0.476860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.555000,4612295.550000,5082,5455,109.785149,173.578522,176.404968,162.198364,145.404968,136.289276,136.785141,134.644638,133.826477,136.719025,137.958694,152.016541,169.842987,187.768616,202.801666,214.305801,216.669434,202.917374,178.859528,156.561996,145.338852,143.082657,136.727295,108.181839,89.272743,104.628113,116.685974,84.495880,40.801674,15.995887,12.429771,12.585140,9.923985,11.471918,9.755388,6.204968,0.228927,0.216530,0.227273,0.057025,0.133058,0.000000,0.219836,0.533059,0.000000,0.000000,2.613224,0.000000,2.722314,0.000000 -601765.355000,4612295.550000,5116,5455,111.985962,181.217361,178.089264,165.833069,152.295868,139.833084,141.246292,138.535553,137.122330,141.130585,141.940521,155.320663,174.535538,192.064468,205.196701,217.973557,220.064468,207.618195,182.395050,160.188431,148.874390,145.147110,140.254562,109.692566,91.204979,105.750420,117.800018,85.601677,42.882664,18.107456,12.750432,13.157041,10.957869,10.975222,12.025635,5.555380,1.554549,0.267770,0.119009,0.243802,0.771075,0.016529,0.692564,0.223967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.155000,4612295.550000,5160,5455,137.136383,184.376038,176.549606,166.004150,150.359528,137.855377,138.723145,136.185974,137.747940,139.442154,139.500000,153.219025,172.871918,190.607437,204.929764,218.929779,218.640533,206.004166,182.285141,159.433899,148.376053,145.433899,139.136368,108.169441,90.706627,105.128113,118.367783,84.095062,42.053741,16.520679,12.648779,12.016545,10.120679,10.184313,11.279354,6.719843,0.776861,0.618183,0.057852,0.009092,0.002479,0.000000,0.082645,0.181819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.355000,4612295.550000,5181,5455,115.311600,189.485138,178.890091,166.452072,150.138031,138.567780,140.253723,138.270264,137.757858,140.807449,140.501663,154.319839,173.633896,192.683487,206.518188,219.278519,219.286789,206.881821,183.278519,159.898361,147.890091,146.352905,141.154556,108.452072,91.410759,107.038849,119.138023,86.452095,43.286793,17.100018,12.832251,12.688445,10.049603,11.591751,13.576877,8.004970,0.714052,0.517356,0.557026,0.001653,0.008265,0.000000,0.231406,0.019009,0.000000,0.000000,0.000000,1.818182,0.000000,0.000000 -601782.755000,4612295.550000,5203,5455,117.373573,178.902512,175.596725,163.836395,148.216553,136.877716,137.919037,135.538849,136.001663,138.547134,139.175232,151.299194,170.861176,189.390106,203.274399,217.257874,218.150436,204.216553,181.357056,157.447952,145.720688,144.803329,138.836395,107.166962,88.671089,104.497528,117.489273,84.737206,41.580185,15.508282,12.621508,11.695057,7.438033,9.995883,12.604148,4.309099,1.405788,0.279340,0.066942,0.071075,0.000000,1.014876,0.557852,0.708265,0.000000,0.000000,1.266116,0.000000,0.000000,0.000000 -601787.155000,4612295.550000,5225,5455,116.243004,187.945465,182.490906,166.722321,150.631409,138.416550,139.152084,137.292587,137.003326,140.771927,141.259521,154.342148,172.152069,190.804962,204.887589,218.052887,218.788422,204.879333,181.647934,158.871078,148.069427,144.821503,140.945480,107.804977,89.788452,106.218201,116.449608,85.598366,42.309109,16.315722,12.813243,11.986794,11.150430,12.101668,11.846295,6.099184,1.750417,0.366943,0.277687,0.041323,0.007438,0.000000,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.755000,4612295.550000,5258,5455,117.077698,190.730591,180.400009,165.821487,148.647934,136.656204,137.606613,134.557022,134.507446,139.540497,139.061157,151.375214,169.300827,188.887619,204.201675,215.242996,216.647949,202.829773,180.003311,158.193390,145.234711,144.003311,137.218185,106.309097,86.433067,105.028099,116.457855,82.697533,42.474400,14.971918,12.474399,11.789270,7.896709,9.497538,13.028116,6.097531,0.830580,0.000000,0.088430,0.115703,0.003306,0.000000,0.185951,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601803.755000,4612295.550000,5308,5455,135.516541,193.500000,181.979340,169.880173,152.516525,137.020660,138.400848,137.714890,137.318176,142.929749,140.516525,153.723145,171.871902,190.491730,205.285126,217.739670,218.475204,204.400833,181.326447,159.004135,148.326447,145.533051,139.954544,109.045471,90.466957,107.252083,118.822327,84.351265,43.111591,16.428946,12.723160,14.279355,10.938034,10.678527,13.243817,6.425629,1.259507,0.161158,0.240496,0.000000,0.247109,0.032232,0.041322,0.152066,1.638017,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.955000,4612295.550000,5339,5455,141.340515,203.935547,183.381821,169.530594,152.976868,138.348770,139.877701,137.208267,138.109100,143.836380,140.555374,153.406616,170.885956,191.142136,206.480988,218.869431,219.439682,204.224792,182.125626,161.092575,148.993393,146.282654,141.563644,108.241333,90.960350,109.390091,118.737206,85.481010,42.249607,16.697538,12.869440,17.847126,11.724811,12.594232,14.342991,6.976870,1.459507,0.387604,0.049587,0.609092,0.150414,0.016529,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,1.476033,0.000000 -601815.555000,4612295.550000,5367,5455,131.481827,199.903305,185.861984,170.977707,152.200836,140.440521,141.374405,138.837219,138.795883,146.481842,141.572754,154.043808,171.217377,190.977692,206.820663,219.423981,219.250443,202.572739,182.762817,160.895050,149.746307,147.068619,142.936386,110.308281,93.085136,111.539680,121.407455,86.134727,45.126465,17.969440,12.994233,18.320677,10.176049,13.042167,12.011584,7.131416,1.353721,0.054546,0.616530,0.093391,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.755000,4612295.550000,5403,5455,105.419022,165.790924,173.179352,159.658691,144.600830,134.981003,133.344635,130.923157,130.823975,132.691742,135.063644,147.228943,164.815720,181.476868,194.080170,205.675217,208.410751,196.848770,173.427277,151.443817,141.625626,138.204147,132.790924,102.427284,84.237198,101.261993,113.823975,84.104965,40.063660,16.669439,12.071919,8.201667,9.154562,10.368612,10.447948,5.070257,0.757027,0.345456,0.514877,0.144628,0.014877,0.020661,0.222315,0.523968,1.508265,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.755000,4612295.550000,5458,5455,108.173569,163.137192,172.335541,158.707428,145.013229,135.343811,133.046295,131.203323,131.583481,133.360336,135.236374,146.649597,166.004959,182.591736,194.864456,206.467758,209.302475,197.690903,174.649582,153.376877,142.938858,138.657867,133.327286,105.112411,86.864479,102.732246,115.608276,84.971916,43.393406,16.842993,12.120679,9.365304,10.050429,11.064480,10.761171,6.319844,0.965291,0.428100,0.142149,0.052893,0.031405,0.053719,0.281819,0.257852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.555000,4612295.550000,5547,5455,109.877701,166.522308,171.976852,159.828094,142.869415,135.365295,134.753723,132.191742,132.439682,135.076050,135.489273,147.274368,166.191727,182.753723,197.092560,207.836365,209.100815,200.588425,176.968582,155.348755,143.985123,140.819824,135.109100,105.059517,88.051254,103.737206,116.638023,86.588448,44.894238,16.845474,12.282663,9.974396,10.062000,10.865306,13.690098,7.342159,1.602482,0.495043,0.371076,0.302480,0.000827,0.040496,0.198348,0.160331,0.000000,0.000000,0.000000,1.690083,0.000000,0.000000 -601863.355000,4612295.550000,5606,5455,105.490929,163.036362,172.234726,161.276047,144.838043,135.284317,133.623154,130.110764,131.069443,133.300842,135.755386,146.887619,164.895889,182.127274,195.879349,207.168610,208.251266,198.639679,176.466125,154.623154,142.540512,139.433075,132.672745,103.995064,85.242996,102.590103,115.416550,86.176880,41.945473,16.752911,12.061176,8.505796,9.689272,11.067784,10.810759,5.077694,0.524795,0.191736,0.126447,0.204959,0.071075,0.034711,0.064464,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.355000,4612295.550000,5641,5455,107.903328,164.333069,172.291748,158.258682,143.514877,135.143005,133.242172,130.696716,130.415726,133.291763,135.680191,147.506622,166.572739,183.448761,195.490082,208.300003,210.366119,200.002487,176.390915,154.465302,143.861984,140.432251,134.663666,104.266968,86.721512,103.217377,116.787628,85.928123,43.308289,17.035553,12.242168,9.357863,8.872744,9.919024,10.633073,4.795876,1.860333,0.264463,0.221488,0.000000,0.000000,0.225620,0.016529,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.355000,4612295.550000,5681,5455,109.628113,163.641342,165.881012,156.418198,140.798355,132.577682,131.230576,129.164459,129.660339,132.503311,134.610748,145.792572,164.376877,180.823135,194.748764,206.889267,207.723984,197.434708,175.575211,153.054565,141.847946,138.095886,132.690918,102.145470,84.294228,101.368607,114.533897,85.831421,41.352089,14.690928,12.062829,7.807453,8.388445,9.547123,11.285140,4.935545,1.204960,0.737191,0.461984,0.338017,0.552067,0.000000,0.194215,0.023141,0.000000,0.000000,0.000000,0.000000,2.782645,0.000000 -601890.355000,4612295.550000,5741,5455,108.587624,170.985962,169.952896,158.357864,142.457031,133.109924,132.399185,129.225632,129.440506,133.052078,134.547943,145.704971,165.043808,182.762817,195.415710,208.564468,210.134720,201.440506,178.547943,156.109924,143.176041,139.779343,135.845459,103.746292,86.076874,102.804146,117.523155,87.341339,42.399197,16.595888,12.349607,7.957866,11.081837,10.474398,11.718197,5.506620,0.681819,0.477687,0.187604,0.009918,0.000000,0.000000,0.218182,0.019835,0.000000,0.000000,1.873554,0.000000,0.000000,0.000000 -601897.755000,4612295.550000,5778,5455,127.247948,171.644638,169.446304,158.206635,144.884308,132.371902,130.900833,129.123978,128.702484,131.677689,134.190094,145.132248,163.297531,180.801666,194.611588,206.338852,209.165298,199.735550,175.528946,153.578522,141.247955,137.371918,132.909103,103.223160,84.115715,100.818199,116.388435,85.553734,41.479359,15.868613,12.082664,5.231415,10.197538,9.797536,10.738032,4.294223,0.570249,0.110744,0.095042,0.019835,0.040496,0.023141,0.098348,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601900.755000,4612295.550000,5793,5455,109.643814,175.776047,170.949600,158.908279,145.205811,132.652084,132.577698,129.825638,128.850418,132.990921,133.759521,144.833908,164.304977,181.883484,194.949600,207.280182,208.552917,199.023987,176.205811,154.445480,142.776047,139.453735,134.536377,103.114891,85.181000,102.866951,116.288445,87.371086,42.668613,16.428118,12.230597,6.624804,8.962827,10.522331,10.749601,6.082654,0.866117,0.411571,0.205785,0.071075,0.098347,0.000000,0.032232,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.555000,4612295.550000,5817,5455,107.428123,171.692566,172.213226,160.461166,144.601654,133.337204,132.742157,130.998352,130.667770,135.221497,135.254547,146.866119,165.692566,183.940506,197.147110,208.750427,211.461166,201.651245,178.618195,155.601654,143.519012,140.973557,134.890915,103.890930,86.105797,101.560349,117.642990,86.601669,42.262833,17.189274,12.262829,6.885137,10.130595,9.310760,11.084313,5.691744,1.138845,0.133059,0.099174,0.233059,0.000000,0.000000,0.247108,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.555000,4612295.550000,5857,5455,106.219025,182.285126,169.491745,158.557861,143.433899,132.326447,130.731400,129.681824,128.326447,133.037186,134.466949,145.772751,164.351257,182.020660,196.235535,208.227295,209.582657,199.202484,176.590912,154.657043,142.772751,138.384308,132.863632,103.285133,84.623978,102.136375,114.334717,85.880173,42.004154,15.585141,12.078531,6.741333,8.196709,9.179354,9.109107,3.697526,0.976036,0.115703,0.144629,0.005785,0.118182,0.000000,0.090083,0.481819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601920.755000,4612295.550000,5893,5455,100.042160,170.885117,169.141312,156.364456,139.984299,128.819016,130.364471,126.670258,126.050423,128.554565,129.339676,142.281815,160.108261,177.232224,190.033875,201.703308,203.645447,191.083466,169.695038,148.695038,137.438843,134.480179,127.827286,98.744644,82.785965,98.017365,111.091751,82.761169,38.777702,15.520679,11.620680,10.460344,8.723156,9.643816,10.400014,5.336372,0.674381,0.171075,0.596696,0.000000,0.059504,0.000000,0.185124,0.346282,0.000000,0.000000,1.910744,0.000000,0.000000,0.000000 -601929.155000,4612295.550000,5935,5455,114.929771,172.863647,169.450424,154.731415,139.830597,129.458679,129.243805,125.855377,126.028923,127.384308,129.144638,141.681839,160.549606,176.706635,189.805801,201.144638,203.342987,191.888443,169.359528,148.789276,137.838852,135.954559,128.863647,98.747940,81.227287,97.293396,111.061981,81.946297,39.070267,14.930595,11.714894,9.829766,8.361998,9.658693,10.390924,4.870257,0.716531,0.236364,0.602481,0.003306,0.006612,0.000000,0.166942,0.076034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601940.955000,4612295.550000,5994,5455,105.369431,168.905792,170.476044,157.517365,140.261169,129.880997,130.104141,127.087608,127.674385,130.583481,130.079346,142.831421,161.319016,177.889267,191.980179,203.426437,204.930573,193.004974,170.831421,149.814896,138.368591,135.856216,129.872726,99.947113,81.715714,98.492569,110.748764,81.914062,38.798363,15.608282,11.806629,10.206627,8.614065,10.624809,11.876876,3.814884,0.389257,0.501654,0.008265,0.141322,0.000000,0.000000,0.061157,0.123968,0.000000,0.000000,1.874380,1.345455,0.000000,0.000000 -601945.355000,4612295.550000,6016,5455,115.813240,175.143799,172.309097,158.681000,143.705795,131.573578,129.945480,128.234726,127.466133,131.862823,130.441345,142.647934,161.523972,179.722321,191.548767,203.829758,205.573563,193.540497,170.400009,149.416534,138.755371,135.606613,129.581833,99.077705,82.548782,97.069443,111.259521,80.904152,39.408287,15.078528,11.780184,9.289269,8.989273,9.871091,10.357865,4.329761,0.297521,0.196695,0.317356,0.067769,0.085124,0.040496,0.028926,0.000000,0.000000,1.330579,0.000000,0.000000,0.000000,0.000000 -601948.755000,4612295.550000,6033,5455,106.273567,176.595886,170.695053,156.513229,141.207428,129.604141,130.480179,127.331421,127.488441,130.116547,129.281830,141.422333,160.513229,178.066956,190.893402,203.769440,204.571091,191.802490,169.628937,148.653732,136.513229,135.372742,129.100006,99.323151,81.488441,96.298363,111.033897,80.273567,38.579361,13.586793,11.736382,10.590097,7.626462,8.422327,10.218195,3.870255,0.941324,0.356199,0.000000,0.139670,0.057851,0.000000,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601951.755000,4612295.550000,6048,5455,104.332253,183.902466,175.026459,161.530594,144.555374,131.902496,132.894226,128.844650,129.646301,132.885971,132.811584,145.323975,163.001663,181.266113,193.638016,206.381805,207.249573,194.133881,172.365295,151.671082,139.902496,137.671082,132.200012,100.869438,83.852913,99.018196,113.142166,79.307457,41.257870,16.368614,12.018201,12.000841,9.433073,11.865305,12.565306,4.704967,0.837192,0.038017,0.000000,0.000000,0.016530,0.000000,0.068596,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601955.755000,4612295.550000,6068,5455,98.634727,180.370255,171.279343,161.163635,144.899185,130.279358,130.957047,128.882660,128.147125,132.700836,130.841339,143.089264,160.700836,179.477692,190.436371,204.089264,204.403305,191.122314,169.312408,148.114059,139.535538,135.064484,129.436371,99.337204,83.238037,97.932243,109.312408,79.766968,38.882668,15.604150,11.766962,11.395057,10.014067,11.574397,11.501669,4.958686,0.952895,0.716531,0.247108,0.013223,0.053719,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601963.155000,4612295.550000,6105,5455,97.222336,177.693405,169.263657,160.891754,144.313248,132.718201,131.668610,129.875229,128.106628,133.007462,130.147949,142.255386,158.511597,175.908279,189.387619,202.619019,202.123138,188.478531,165.957870,146.486801,135.585968,132.619034,126.354568,99.057045,82.090103,95.850433,107.726463,78.866959,37.114895,14.420677,11.486796,12.612411,7.614064,8.947948,10.562821,3.242984,0.602482,0.261159,0.185951,0.014050,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601966.755000,4612295.550000,6123,5455,111.365318,176.406631,171.423172,161.290939,143.993408,133.158707,131.629776,128.943832,128.943832,133.125641,130.076065,141.580185,158.877716,176.836395,190.092575,202.571915,202.191742,187.902512,167.398376,147.795074,136.836395,134.373581,128.563660,99.059532,82.158707,98.580193,108.712425,77.919037,37.489273,14.998363,11.687623,11.572742,9.874394,9.638031,10.045467,4.414886,0.941325,0.305787,0.000000,0.169422,0.095042,0.000000,0.258678,0.218182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601969.555000,4612295.550000,6137,5455,107.092590,168.522339,168.844650,160.894241,144.315735,131.646301,129.613251,128.704163,127.390106,133.042999,129.960358,141.166962,157.390106,175.009949,188.646286,201.695877,201.414886,187.150421,167.166962,145.464493,136.530609,132.274399,127.745483,98.109116,81.266144,98.679367,108.150436,77.439697,37.704151,13.463655,11.613243,10.926458,7.614063,10.760345,9.421501,5.264474,0.394216,0.185951,0.212397,0.128926,0.000000,0.000000,0.000000,0.143802,0.000000,0.000000,1.913223,0.000000,0.000000,0.000000 -601972.355000,4612295.550000,6151,5455,112.088448,172.592575,171.278519,164.485138,145.774384,134.361176,131.518204,129.700027,128.989288,134.650436,130.385971,142.650421,158.509933,177.055374,191.047119,204.534714,203.906616,188.675217,167.642151,149.303314,138.576050,134.600845,128.427292,98.650429,83.129768,100.700020,109.311584,78.592590,38.295063,17.247128,11.675225,11.978526,9.910759,10.083486,11.066128,5.550422,0.588432,0.175208,0.258678,0.171901,0.229752,0.000000,0.074380,0.451240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.355000,4612295.550000,6166,5455,129.433075,180.763641,172.358688,163.168594,145.738861,132.945480,131.689270,128.862823,128.284317,133.333908,131.350433,141.614899,157.854553,175.226456,188.887604,202.813232,202.945465,187.532242,167.333893,147.028122,136.028122,132.664490,129.218201,98.722336,82.738861,99.548782,109.176880,77.292580,37.309109,16.576052,11.747126,10.931417,10.226462,9.509107,8.984308,4.481000,0.999176,0.523142,0.402480,0.309091,0.162810,0.266116,0.000000,0.338017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601979.155000,4612295.550000,6185,5455,119.755386,178.730576,171.697525,162.490906,144.846283,132.705795,131.755386,128.995056,127.854553,135.284302,129.928940,141.887604,158.003311,175.499176,188.978531,202.738861,201.581833,186.614899,166.515701,147.482651,136.490906,133.474396,127.218193,99.391754,83.102501,99.540512,108.449600,76.598366,36.970268,15.846297,11.565308,12.377701,9.627289,8.807453,10.127285,4.714886,0.220662,0.344630,0.228926,0.129753,0.054546,0.000000,0.141322,0.319835,0.000000,0.000000,0.000000,0.000000,0.000000,3.483471 -601983.355000,4612295.550000,6206,5455,110.695877,160.621490,159.522324,151.770264,136.662827,128.001663,125.348770,122.357033,122.968605,125.456207,125.985130,137.985138,154.761993,171.869431,185.158691,197.704147,200.290924,188.852905,166.059509,144.414886,134.770264,130.076050,125.927284,96.307449,79.505798,95.704140,106.266129,78.778519,37.299191,13.897537,11.447951,6.887616,9.805800,9.806625,10.571915,3.927282,1.069424,0.357852,0.203306,0.302480,0.161158,0.000000,0.341323,0.496695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601986.555000,4612295.550000,6222,5455,111.608284,157.740509,156.368607,147.938858,134.385132,125.996704,122.889267,122.054558,121.558693,124.542160,126.442986,137.079346,154.211578,170.856216,184.004974,196.715714,197.897537,188.252899,164.666122,143.930588,132.905792,128.947113,122.690926,96.319031,78.963654,93.335556,105.707458,79.013245,37.087624,13.311589,11.153738,7.392575,9.500013,8.972740,8.855385,4.966125,0.850416,0.355373,0.304959,0.046281,0.000000,0.000000,0.289257,0.430579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601991.555000,4612295.550000,6247,5455,108.885979,151.233078,152.852921,145.357040,131.761993,122.555382,119.869431,119.753731,118.357033,121.481003,122.431412,134.183487,150.580185,169.067795,181.745483,193.968628,195.646301,186.547134,162.439697,140.737198,131.811584,127.076042,122.109100,94.323975,76.819847,93.092575,103.514061,76.472740,36.737213,12.967785,11.100845,6.090919,8.797534,9.726459,8.055386,2.638023,1.174383,0.088430,0.180992,0.046281,0.132232,0.000000,0.019008,0.525621,0.000000,0.000000,0.000000,1.655372,1.907438,0.000000 -601999.555000,4612295.550000,6287,5455,95.922333,144.261169,152.418198,143.310760,130.062836,119.310768,116.757050,115.228119,114.104156,117.079361,118.244652,130.104156,147.186783,165.476044,176.856216,190.112411,191.327286,180.657867,158.128937,137.897537,127.269440,122.600021,117.781837,90.583488,71.368614,90.624817,104.682663,77.294235,36.781837,14.117373,10.707458,8.223152,8.445468,8.204970,9.395057,3.466949,1.103309,0.192563,0.436365,0.042149,0.032232,0.285951,0.114877,0.061984,0.000000,8.046281,1.807438,0.000000,0.000000,0.000000 -602011.355000,4612295.550000,6346,5455,110.311584,145.419037,143.385971,133.055389,118.468613,109.080185,106.823982,103.096710,102.691750,103.410759,104.815720,116.410759,134.468613,151.146301,165.311600,176.385971,177.774399,166.766144,143.947952,124.584312,114.518196,110.881836,105.609108,76.096710,61.319851,80.328117,95.195885,72.385971,33.700020,12.560348,9.600846,8.642986,9.172740,9.835550,11.090097,5.989267,1.685128,0.458679,0.066116,0.540497,0.076860,0.491736,0.219835,0.712398,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -602017.355000,4612295.550000,6376,5455,87.741333,112.651245,110.964470,97.394226,84.501663,74.242157,71.524811,68.012413,66.827286,67.152908,67.971092,75.227280,89.857033,101.443810,111.328110,120.146294,122.600838,117.369431,104.609100,89.981003,82.261993,79.476868,76.336372,53.809109,39.283485,61.394234,90.378517,79.155380,38.676056,10.138032,6.939687,10.970262,12.447124,20.097538,24.259520,22.181831,4.966949,1.426448,2.084300,2.205788,0.442150,1.742151,0.978513,0.000000,8.630579,1.772727,3.864463,12.922316,5.035538,26.090910 -601015.155000,4612285.550000,1365,5505,2.061988,0.910745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.184300,11.495054,7.024806,1.636366,0.000000,4.087611,11.887619,26.224812,38.584316,33.199192,12.911581,2.861989,1.502483,1.033060,0.246282,0.153720,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.182645 -601018.355000,4612285.550000,1381,5505,0.864465,0.628100,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.033884,0.025620,0.152893,0.135538,0.148761,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,10.409104,36.466957,18.866959,2.370253,0.000000,4.366950,11.300014,25.674397,43.820675,32.093407,6.128933,0.804134,0.262810,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.766943 -601022.555000,4612285.550000,1402,5505,1.406613,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.029752,0.461984,0.798349,0.667770,0.671076,0.125620,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,16.268612,48.713242,27.645472,3.780998,0.000000,5.181001,13.745470,28.935555,46.992584,38.861176,4.244635,0.281819,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.270248 -601026.355000,4612285.550000,1421,5505,4.827278,1.586780,0.445455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.161158,1.339672,5.349596,7.227283,7.058690,6.245465,4.085958,1.601658,1.303308,0.045455,0.000000,0.000000,0.000000,31.238859,61.758701,36.004978,4.828934,0.004133,3.997528,14.752082,28.721504,46.502502,41.276051,3.230584,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.390909 -601030.555000,4612285.550000,1442,5505,1.809092,0.309091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.057852,0.731407,1.608268,1.976863,1.538847,0.841324,0.175207,0.095868,0.000000,0.000000,0.000000,0.000000,23.858692,52.783489,30.745472,2.372733,0.000000,4.836372,13.253735,33.783489,49.221508,37.799191,2.695871,0.033058,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.415703 -601036.755000,4612285.550000,1473,5505,1.690083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.791743,3.997527,0.665291,0.000000,4.300007,15.219850,28.010763,46.509109,46.294231,21.640511,7.310753,6.450420,3.212402,0.532233,0.357852,0.000000,0.002479,0.688430,1.423141,0.000000,0.152066,0.000000,0.061984 -601322.555000,4612285.550000,2902,5505,186.982651,196.123138,185.536362,173.288452,162.776047,158.296707,159.585968,162.693405,167.404144,174.990906,183.453720,200.073563,224.205795,245.065292,259.809113,273.668579,275.346313,256.974396,214.296692,183.478516,170.321503,164.090103,155.354568,124.966133,106.081841,112.594231,109.660347,73.627289,35.181011,17.394232,14.123158,12.415719,11.597538,12.111588,12.895885,5.793398,2.193394,1.114881,0.715705,0.349588,0.166943,0.245455,0.019835,0.092564,3.734711,1.137190,0.000000,1.995868,1.318182,0.000000 -601326.155000,4612285.550000,2920,5505,179.626450,193.089264,186.072739,179.709091,166.816528,162.328934,164.915710,168.890915,173.849594,181.742157,189.791748,208.502487,232.601654,252.940506,269.519012,281.857849,283.510742,265.742157,218.436371,186.717361,172.907440,167.023148,157.072739,126.717369,107.585136,112.568611,109.560349,73.866135,35.163658,19.238033,14.279359,12.153734,12.720680,13.271091,12.880181,7.061995,2.955379,1.031409,1.274384,1.190911,0.403308,0.175207,0.102481,1.100001,3.978513,0.000000,2.407439,0.000000,1.233058,0.000000 -601331.755000,4612285.550000,2948,5505,177.014877,191.651245,188.171906,181.452881,169.518997,166.593399,171.477676,175.370239,181.147095,191.064468,201.039673,219.444656,243.461182,264.014893,280.271118,290.783539,291.428162,270.204987,221.386795,188.494217,175.171890,166.180176,157.436371,128.196701,109.362000,112.874397,103.014885,69.932243,34.510761,18.142168,14.312416,11.195057,11.478529,10.642993,11.542990,7.234721,1.559508,1.091739,0.362812,0.912398,0.055372,0.000000,0.018182,0.647936,0.000000,1.222314,1.171075,0.000000,0.000000,0.000000 -601340.355000,4612285.550000,2991,5505,157.220688,187.807465,186.559525,178.410767,167.245468,162.600830,167.452072,171.096710,175.493408,185.270279,193.642181,211.228958,233.402496,253.906631,269.237213,279.377747,279.832245,261.319855,218.542999,187.460358,174.576065,168.030594,159.245468,130.154556,112.121498,116.022324,111.559517,74.898361,36.228943,19.005804,14.476879,11.573571,11.860349,12.471091,11.693404,4.985960,1.219012,1.014878,0.496695,0.217356,0.061158,0.898348,0.043802,0.216529,0.000000,0.000000,0.000000,0.000000,1.177686,0.000000 -601353.555000,4612285.550000,3057,5505,151.957855,177.470245,180.767776,173.172729,165.354553,160.131409,162.321487,165.362808,170.478516,177.891739,185.338043,201.114914,224.247131,244.453735,260.726440,271.718201,273.123169,263.172760,225.354568,196.156219,183.809097,180.123138,173.900009,142.602478,122.577698,129.271912,131.693405,92.255394,40.776051,19.128117,15.809112,9.332247,11.047123,11.104148,11.209933,5.956209,1.083476,0.529755,0.456200,0.599174,0.073554,0.000000,0.223968,0.236365,0.000000,0.000000,0.000000,0.000000,3.907439,0.000000 -601373.755000,4612285.550000,3158,5505,144.090103,173.833893,174.032242,167.106613,154.900024,149.090103,150.189270,150.478531,152.718201,158.015717,162.528107,173.982651,192.230576,210.114883,223.536362,233.900009,235.288437,232.643799,210.189255,190.007446,179.800827,179.131409,176.627274,149.577698,128.875229,140.800842,158.875214,126.718201,61.181007,19.652086,16.057045,9.542164,13.566133,17.699190,21.842169,11.072744,1.267772,0.028926,0.112397,0.000000,0.038017,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601389.155000,4612285.550000,3235,5505,148.698364,177.731400,175.805801,169.557861,157.797531,149.896713,150.367783,151.219025,154.070267,157.979355,163.177704,175.095062,191.987610,210.557846,224.202484,233.185944,236.979340,232.309921,211.929749,192.061981,182.714890,181.095062,178.045471,151.177704,129.351257,143.838852,156.516541,123.111588,61.152912,20.342995,16.185970,11.329768,13.337208,17.237207,21.900845,11.473570,1.171905,0.193389,0.317356,0.328927,0.033058,0.000000,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601396.355000,4612285.550000,3271,5505,126.311584,169.270248,171.947922,165.162796,154.708252,144.914886,145.377701,146.666931,148.270248,153.204132,156.518173,168.030579,184.947922,200.270248,215.509918,224.220657,226.228912,221.270248,198.848755,177.964462,167.245453,165.303299,162.245453,135.609100,114.369438,126.179359,141.675217,113.410759,52.873577,17.972748,14.749606,9.112411,13.052909,15.552084,17.469439,9.941336,0.866119,0.529753,0.258679,0.023141,0.061157,0.000000,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.755000,4612285.550000,3313,5505,128.043823,172.490112,174.572754,167.721512,156.506638,148.275223,148.109940,149.134735,150.316559,157.638870,159.118210,173.762833,191.209106,209.432251,223.423996,232.324814,234.589279,228.382660,204.390930,181.002502,170.936386,167.498367,164.936386,135.308273,113.068611,128.068604,144.729782,112.316544,51.638863,19.226463,14.994234,7.771914,11.165306,13.034726,13.081010,6.542987,1.110747,0.345456,0.134711,0.096694,0.030579,0.000000,0.000000,0.090910,2.662810,0.000000,0.000000,0.000000,0.000000,0.000000 -601407.755000,4612285.550000,3328,5505,134.984314,184.042145,175.099991,168.414047,156.033890,147.769440,147.182663,148.992569,150.017365,157.066940,160.579330,173.182648,192.934708,210.612396,224.604126,234.331406,236.471893,228.661987,204.992554,181.661987,169.761154,166.380981,165.281815,134.488449,113.794228,125.182655,141.959518,108.785965,49.868610,19.562830,15.025639,6.968609,10.579355,12.898363,13.974398,7.068605,1.280169,0.376035,0.007438,0.000000,0.049587,0.000000,0.118182,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601410.955000,4612285.550000,3344,5505,138.181000,187.685120,176.957855,170.544632,157.602478,148.933060,150.288437,149.709915,152.594223,159.412399,162.081818,174.908264,194.858688,213.023972,226.040512,237.090103,237.544647,231.693405,207.156204,183.933060,172.346283,169.957870,166.990906,136.023987,114.065308,128.404144,142.255386,110.437210,50.123161,21.057043,15.181011,7.016542,12.076050,13.380182,15.698365,6.435547,1.221491,0.500828,0.378513,0.000000,0.080992,0.000000,0.000000,0.110744,1.363636,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.955000,4612285.550000,3359,5505,131.921509,186.789276,176.838852,171.590927,159.293396,149.392578,149.623978,151.078522,153.574402,159.574387,162.789261,176.243820,196.293411,213.938019,227.714874,239.731400,240.954544,234.037186,209.731400,185.781006,174.723160,170.657043,167.863647,138.103317,114.508278,127.921501,142.491745,109.921501,50.491756,20.225639,15.260348,9.581006,11.852083,12.612413,14.562000,7.555385,2.018186,0.233885,0.128100,0.098347,0.046281,0.406612,0.045455,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.355000,4612285.550000,3376,5505,133.067780,183.365295,176.191757,170.547134,158.621521,148.472748,149.844650,148.993408,152.216553,158.935562,161.571930,175.332245,194.158676,212.100815,227.423141,238.233047,240.489243,234.894211,209.638016,185.993393,175.786789,172.117386,168.290939,137.662842,114.985130,129.208267,141.968597,108.348770,51.571922,19.447952,15.299193,7.591748,11.629767,12.362825,15.381835,6.588441,1.732235,0.628101,0.174381,0.031405,0.000000,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601420.155000,4612285.550000,3390,5505,138.214066,190.371094,177.445480,172.007462,159.470261,148.288452,151.420685,151.585968,152.238861,159.916550,162.057037,175.090103,194.569443,212.875229,227.792587,239.800842,240.767792,234.693405,211.197540,187.800842,176.181015,171.949600,168.718201,137.296707,115.619019,128.924805,143.709930,108.627281,51.238861,19.327291,15.338036,8.503321,12.511585,13.590098,14.882663,8.781831,1.883476,0.727274,0.617357,0.000000,0.000000,0.000000,0.000000,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.755000,4612285.550000,3418,5505,114.148773,180.719025,171.694229,162.983490,148.876053,141.404968,142.272751,143.413239,143.652908,147.776871,150.958694,164.454559,183.694229,201.322327,214.396713,225.256210,227.710754,217.768616,194.595062,173.545471,160.446304,159.190094,154.636383,126.347122,106.611588,119.735550,133.595062,99.743820,45.719028,17.561176,14.057871,11.054562,11.431421,12.786794,12.726462,6.814886,0.889260,0.352068,0.110744,0.000000,0.115703,0.000000,0.105786,0.294216,0.000000,1.273554,0.000000,0.000000,0.000000,0.000000 -601428.755000,4612285.550000,3433,5505,123.110756,179.424820,178.077698,166.804977,153.995056,143.656219,144.722336,144.193405,145.763657,150.342163,152.970261,166.019852,186.019852,202.912399,217.019836,227.557022,230.457855,219.689255,195.342163,174.119034,164.085968,161.019852,156.945480,129.614883,107.664474,121.507446,134.631424,101.119019,49.135555,19.366959,14.267788,11.640512,13.609109,14.507456,13.557869,8.719021,1.360336,0.470250,0.110744,0.013223,0.044628,0.000000,0.017356,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.955000,4612285.550000,3454,5505,128.866135,175.543823,173.824799,164.089279,150.378540,142.155396,143.147125,141.585144,143.345474,148.047958,150.502502,163.229782,184.072739,200.940521,213.981842,225.667786,226.560349,217.105804,192.932251,171.585144,160.328949,159.618210,154.800018,125.221512,104.791756,117.238037,133.320679,99.742172,45.362003,18.419853,14.072746,11.373569,10.971919,12.058694,14.078528,6.422324,0.569424,0.000000,0.304133,0.081818,0.195868,0.180165,0.093389,0.531406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.955000,4612285.550000,3479,5505,135.433075,180.515717,173.061172,166.135559,152.515717,142.523972,143.871094,144.209915,146.490921,150.127289,152.681015,167.052917,186.763657,205.416550,220.532257,231.317368,232.094238,223.251266,198.829773,177.962006,167.722321,165.300842,160.309113,129.094238,109.499191,121.515724,137.342148,102.705803,48.400024,19.141338,14.573573,12.157042,11.596712,13.970265,17.192579,6.543811,1.714881,0.432232,0.129753,0.191736,0.158679,0.000000,0.204959,0.058678,1.383471,1.347934,0.000000,0.000000,0.000000,0.000000 -601442.155000,4612285.550000,3500,5505,143.090927,184.487625,177.975220,168.157043,153.743820,144.421509,146.429764,146.595062,148.082657,152.553741,155.917374,171.520676,191.371918,211.289276,224.677704,238.380173,241.008270,230.785141,206.438034,185.479355,173.752075,173.140518,168.454559,134.595062,114.363655,127.876053,142.826447,108.223160,50.231426,20.896715,15.314068,13.861999,14.047952,16.662001,18.685143,8.522325,1.204136,0.126449,0.247935,0.175207,0.023967,0.000000,0.148761,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.155000,4612285.550000,3535,5505,132.172745,184.106613,177.734695,168.379333,154.635559,145.693405,146.214066,146.718201,148.883484,154.321503,157.106628,171.734711,192.742966,212.354538,226.379333,239.842133,241.924774,232.098328,208.941315,186.288422,175.610733,173.693390,168.354553,136.875229,115.445465,128.379349,143.759521,107.222328,51.032249,20.214069,15.304977,15.148780,13.839687,14.988449,18.162830,8.691748,0.848765,0.137191,0.132232,0.025620,0.031405,0.000000,0.019835,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.755000,4612285.550000,3553,5505,133.915710,189.271103,176.130600,168.130600,153.072754,144.180191,146.791763,147.560349,148.362000,154.824814,155.758698,170.601669,191.411591,209.469421,225.775208,239.279327,240.915695,230.039658,207.403305,187.700851,175.510773,173.659531,168.618210,135.320679,114.692581,129.105804,141.849609,106.089279,49.957043,18.652086,15.328945,14.370266,13.518200,12.775227,15.668613,6.251250,1.226451,0.061985,0.287604,0.171901,0.055372,0.000000,0.385951,0.011570,2.862810,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.355000,4612285.550000,3576,5505,144.068619,190.895065,177.845474,167.076889,155.589279,144.076889,145.300018,145.481842,147.481842,154.390930,154.663666,168.994232,188.399200,208.316559,224.539688,238.837219,241.101669,229.828949,207.523163,187.010773,176.266968,173.680191,168.845474,135.200851,112.564476,128.242172,142.440521,103.663651,50.101673,18.523157,15.349606,12.552910,11.859521,14.370266,14.469440,7.633071,0.801656,0.156199,0.079339,0.098347,0.023141,0.000000,0.000000,0.049588,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.555000,4612285.550000,3602,5505,134.410767,190.022324,177.476868,168.650421,154.700012,143.096710,145.047119,145.476868,147.815720,154.328110,153.898361,169.865295,186.956207,207.617371,224.518188,238.361160,240.303314,229.493393,207.774384,186.881821,177.989273,173.567780,169.700012,135.278534,112.518188,128.865311,141.476868,105.584312,50.253742,18.609108,15.427293,13.317371,11.890926,12.082662,15.109936,8.185135,0.857855,0.028100,0.195868,0.043802,0.023141,0.000000,0.064463,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.155000,4612285.550000,3630,5505,135.209930,195.201675,180.019852,169.887619,154.829773,142.829773,144.474396,144.251266,145.168610,152.499191,152.019852,165.614899,184.540512,203.755386,218.730591,233.160355,235.813248,222.920685,203.358704,183.366959,170.796707,168.862823,164.036377,129.614899,110.052910,125.441345,138.986801,100.557045,48.565308,19.061174,14.912416,14.140514,12.665306,13.563654,15.965308,7.659516,1.444632,0.167770,0.124794,0.000000,0.130579,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,1.048760,0.000000,0.000000 -601472.155000,4612285.550000,3650,5505,149.347946,203.380966,178.356201,172.686783,154.083481,143.860336,144.794235,144.281830,145.562820,154.538025,151.967789,164.240509,184.529755,203.562805,219.430573,231.827255,234.199158,221.471893,200.587601,180.050415,169.967789,166.438858,161.554565,129.240524,107.711594,123.852089,134.298370,98.810760,45.331425,17.627291,14.686795,13.185141,11.862828,12.609107,15.336383,6.981829,1.118185,0.098348,0.232232,0.161984,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601483.355000,4612285.550000,3706,5505,125.523979,167.573578,174.176880,161.400024,145.656219,140.102493,140.094238,138.366959,139.474396,142.962006,145.970261,159.292587,177.557037,193.540497,208.325623,221.606613,224.193390,214.664459,192.234711,171.276047,160.904144,157.011597,151.945480,120.011581,100.052910,115.978523,128.292572,94.920677,44.036385,17.442995,13.813243,8.882658,9.988446,11.900845,12.128942,6.266951,1.586780,0.128926,0.195869,0.104133,0.000000,0.000000,0.037190,0.078513,0.000000,0.000000,0.000000,0.000000,1.166942,0.000000 -601488.355000,4612285.550000,3731,5505,114.223976,167.637207,170.422333,159.554565,146.893402,138.918198,140.050430,138.182663,139.447113,141.876877,145.190918,157.843811,176.909927,193.744644,208.347946,219.934723,223.116547,214.356216,190.926453,172.066956,158.761169,156.000839,150.463654,120.471916,101.554558,116.050423,128.719849,93.620674,43.992588,17.576054,13.678532,9.519850,9.300016,10.949604,13.943820,5.473563,0.593390,0.075207,0.050414,0.000000,0.025620,0.000000,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.155000,4612285.550000,3750,5505,115.363655,162.876068,166.694244,158.380203,145.355408,139.223175,138.347137,137.181854,137.793427,140.628128,143.421524,156.090942,174.884323,190.966980,205.694229,217.471085,220.181839,210.785141,188.429779,167.033096,157.099213,153.677719,147.909119,117.809937,98.628113,113.099190,125.330597,92.545471,44.677704,16.236383,13.446300,7.633072,8.812411,11.621506,11.915719,5.394225,0.267770,0.200827,0.090083,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.355000,4612285.550000,3781,5505,117.094223,169.647949,169.796707,162.143814,148.755386,139.391754,139.028122,137.978531,139.061172,141.647949,144.284317,156.350433,174.242996,190.804962,205.383469,216.631409,219.309097,210.193390,187.176865,165.209930,155.970261,150.804977,146.672745,115.804970,97.152077,112.292572,124.904144,92.127281,45.300846,17.138859,13.333904,8.676876,9.837208,11.281837,12.926463,6.913234,0.890084,0.122314,0.075207,0.000000,0.009918,0.000000,0.011571,0.130579,1.312397,0.000000,0.000000,0.000000,0.000000,0.000000 -601501.755000,4612285.550000,3798,5505,116.140511,154.214890,168.016541,159.495880,146.809937,138.793411,137.694229,136.487625,138.438034,140.247955,143.388443,156.074402,174.256195,190.785141,204.256210,214.760345,218.041336,209.330597,185.801651,164.950424,154.570267,150.330597,146.181839,116.950432,95.950432,111.479355,122.504150,90.826462,41.859528,16.210762,13.289275,6.871088,8.300841,12.080181,11.552081,5.018191,0.917357,0.203306,0.025620,0.000000,0.028926,0.000000,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,2.100000 -601507.355000,4612285.550000,3826,5505,108.989273,163.410751,168.567780,157.700012,145.055374,136.617371,136.559509,135.815720,136.443817,138.857040,141.782654,153.658691,172.493393,188.443817,202.261993,213.708267,216.865295,205.815720,184.931412,162.782654,152.336380,147.840500,142.245468,114.063652,94.914894,110.741341,123.361176,89.195885,41.609108,14.667787,12.931424,5.975220,8.416546,10.503323,12.643818,2.838849,0.853721,0.296695,0.078513,0.000000,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.555000,4612285.550000,3842,5505,116.697533,169.418182,169.327271,159.575211,146.277679,137.525635,137.162003,135.442993,137.368607,140.938858,142.748779,154.137192,171.368591,189.591736,201.666107,213.657867,213.938858,205.781815,181.740494,160.385117,150.013214,147.153732,141.509109,113.071091,93.591751,108.128937,119.872742,86.996712,41.500847,16.328117,12.864481,8.033896,8.462827,9.839685,11.181006,5.499183,0.635539,0.000000,0.271075,0.067769,0.042976,0.000000,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.355000,4612285.550000,3856,5505,121.752083,169.438019,173.090927,161.925629,148.958694,141.115723,139.388443,137.694229,139.603317,142.793411,144.991760,156.371902,174.487610,190.074387,203.644623,215.603317,217.363647,206.024796,183.727280,162.917374,153.776855,149.752075,144.272751,114.685959,95.842987,109.743820,122.785133,89.553734,44.752083,18.428118,13.115722,10.542989,12.336381,13.467786,11.439685,7.164474,2.009921,0.285125,0.310744,0.000000,0.009091,0.000000,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.355000,4612285.550000,3876,5505,114.879356,166.110764,168.846298,157.714066,147.284317,137.945480,136.647949,136.366959,135.573578,139.862823,141.912415,153.119034,170.804977,187.193405,200.400024,212.565308,213.962006,205.077698,181.573578,160.284317,149.317368,146.242996,141.400024,114.441345,92.722336,108.730598,120.152084,89.160347,41.218201,15.361999,12.854565,6.819846,9.365305,10.588446,9.468609,6.437200,0.815704,0.488430,0.145455,0.062811,0.000000,0.000000,0.000000,0.278513,1.295041,0.000000,1.155372,0.000000,0.000000,0.000000 -601519.955000,4612285.550000,3889,5505,125.195045,161.831421,170.352081,161.467789,148.682648,140.599991,139.484299,137.261154,138.591736,141.360321,143.674377,155.029770,173.376877,188.302490,203.087616,212.872742,214.682663,205.608276,182.178528,162.013229,151.071075,147.120651,143.145447,114.699188,93.533897,108.905800,120.476036,88.476044,42.542171,17.707457,13.013242,9.223981,10.455390,10.420677,10.212412,7.170259,1.098349,0.074380,0.096695,0.139670,0.013223,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.155000,4612285.550000,3905,5505,121.793396,165.231400,168.537186,159.842972,147.380173,137.512405,136.727295,135.669418,137.561996,139.958694,142.561996,153.198349,171.504135,187.223145,200.578522,211.628113,213.520676,204.611588,181.314056,160.677689,148.793396,145.289276,140.727295,110.892578,92.793404,107.000015,118.099190,87.223160,40.942169,16.206629,12.793407,7.518195,9.603323,8.456214,10.947124,4.950422,0.641324,0.131405,0.001653,0.244629,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.755000,4612285.550000,3938,5505,119.544640,164.040512,167.007462,159.346298,144.792587,137.726471,136.552902,134.503311,135.709930,138.280182,141.040512,152.139694,169.090103,185.701675,198.288452,210.205811,211.858704,203.205811,179.734726,157.495056,147.114899,143.528122,138.990921,110.023979,90.685143,104.139679,114.627281,84.742989,39.164482,13.940513,12.635555,6.659515,8.782662,9.573570,8.608279,3.072735,0.911572,0.052066,0.146281,0.071075,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601532.555000,4612285.550000,3952,5505,121.333893,168.251236,167.821487,160.647934,147.581818,140.284302,138.631409,136.647934,137.986786,139.928925,142.978516,153.598343,170.317352,186.804962,200.259506,212.433060,214.342148,204.532242,180.358688,158.540497,147.061157,145.879349,141.127274,110.771912,90.309105,106.482658,116.581833,86.110748,40.647957,17.425638,12.829770,7.334723,8.895885,10.723983,9.183485,4.614058,0.565290,0.062810,0.016529,0.000000,0.000000,0.000000,0.004959,0.077686,0.000000,0.000000,0.000000,0.000000,1.174380,0.000000 -601536.755000,4612285.550000,3973,5505,116.618195,166.006622,169.890915,161.717361,146.733887,138.948761,137.386780,136.072739,137.940506,140.155380,141.709091,153.816528,170.601654,187.899185,200.932236,213.667770,213.171906,204.527283,179.717361,157.783478,148.006622,142.502487,137.254547,108.510750,89.841331,103.626450,113.676041,84.345474,41.163658,17.048779,12.477706,5.990093,9.148776,9.371916,8.990096,5.033893,0.328926,0.009918,0.279339,0.077686,0.000000,0.000000,0.000000,0.003306,1.299174,0.000000,0.000000,0.000000,0.000000,0.000000 -601539.955000,4612285.550000,3989,5505,115.157875,168.628937,170.381012,163.364471,150.976044,140.397537,138.959518,138.174393,139.438858,141.876877,144.025635,155.414062,172.554565,188.207458,202.298355,214.389267,216.331421,205.529770,181.116547,158.678528,147.860336,144.215714,139.372742,110.480186,91.447128,106.637215,115.992584,85.232254,42.695061,16.855389,12.670268,7.399185,10.262001,11.447125,10.557039,4.224802,0.814052,0.373555,0.184298,0.020662,0.000000,0.000000,0.000000,0.000000,0.000000,1.323141,0.000000,0.000000,0.000000,0.000000 -601542.755000,4612285.550000,4003,5505,114.795883,172.961166,171.052078,160.721512,148.795883,140.423981,137.928101,138.977692,139.407440,142.184311,144.242157,154.812424,171.944656,189.002487,201.754547,214.374390,215.704971,205.804138,180.671906,159.581009,147.845474,143.225632,138.754547,109.432236,89.903313,105.994225,114.052071,84.754555,40.977707,17.126465,12.614068,6.806623,9.619024,9.668612,11.007454,5.200009,0.881820,0.236364,0.410745,0.104133,0.020662,0.000000,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.155000,4612285.550000,4020,5505,121.082664,170.760345,169.347122,161.842987,149.603317,139.818192,138.371918,137.413239,139.239685,141.603317,142.429764,154.239685,172.181839,189.033081,203.322327,213.776871,216.809937,206.140518,181.578522,158.652908,148.256210,144.628113,138.818192,110.404976,90.595055,106.008278,114.438034,83.628113,39.239689,14.818200,12.619854,5.328109,8.998363,9.602498,9.207453,3.111577,0.461984,0.162810,0.223967,0.001653,0.019009,0.000000,0.051240,0.358678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.355000,4612285.550000,4036,5505,123.804138,169.423950,170.134705,163.886780,150.481827,142.977692,140.779343,140.225632,141.614059,144.787613,146.151245,157.804138,174.911560,191.622299,204.556183,218.142960,218.837173,209.382629,184.457016,161.564468,151.366119,148.060333,141.936371,113.159508,93.911583,107.151253,116.324799,85.440514,42.283489,17.762005,12.903325,8.114889,12.424809,10.179355,12.524810,6.292572,1.213227,0.314051,0.000000,0.010744,0.087604,0.000000,0.133885,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.755000,4612285.550000,4058,5505,118.733070,170.757858,168.427277,163.509933,149.683487,138.733063,138.724808,137.228943,137.914886,142.014053,143.286789,155.311584,172.113235,189.038834,202.741318,214.848755,217.460327,206.212387,181.774384,159.501663,149.113235,144.179352,139.154556,110.022324,90.947945,106.286789,115.270256,85.377693,42.700024,14.998365,12.650432,7.401664,9.604976,9.018198,10.438859,3.530586,0.264464,0.408265,0.094215,0.007438,0.103306,0.000000,0.000000,0.066943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.155000,4612285.550000,4080,5505,126.195885,174.592560,172.989243,162.005783,149.518173,139.088425,139.204132,137.691727,139.551239,142.138031,144.361160,155.204132,172.551239,189.104950,202.733047,215.187592,217.030579,207.171066,181.906601,159.022308,148.749573,144.964478,139.154556,109.567787,89.964478,105.179359,114.435555,84.526466,41.642170,16.389275,12.650432,6.001664,9.928943,9.698364,10.697536,4.859513,1.299177,0.000000,0.066942,0.052894,0.070248,0.000000,0.104133,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.155000,4612285.550000,4095,5505,128.680176,171.605804,169.696716,161.490112,150.399200,138.027298,138.118210,136.853745,137.597549,141.572754,143.316559,153.680191,170.944656,188.804153,202.002502,214.209106,216.762833,205.886795,180.242172,159.457047,148.729782,143.076889,138.300018,109.812408,89.176048,103.804146,113.539680,84.308281,41.473572,14.859522,12.572746,6.077696,9.771091,7.180181,9.395882,4.064471,0.545456,0.114876,0.004959,0.435538,0.019009,0.000000,0.078513,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.555000,4612285.550000,4117,5505,138.408264,177.201675,172.309097,164.309097,153.135559,142.267792,140.201675,140.408279,140.482666,144.647949,146.771927,156.705811,173.995056,190.945465,204.119034,217.019852,218.267792,208.003326,184.804977,160.829758,150.366959,146.160355,140.036377,112.705795,92.292572,106.061165,116.904144,85.821503,42.763657,18.681837,12.730596,7.490921,11.018200,9.423983,9.573567,2.876865,0.966945,0.202480,0.143802,0.009091,0.000000,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.355000,4612285.550000,4131,5505,119.737206,171.976868,169.728943,163.464478,149.282654,139.753723,138.604965,138.596710,138.001663,142.613235,143.332245,154.671082,172.514053,189.365295,203.117371,214.613235,217.315720,207.034714,181.084305,159.051254,149.266129,144.828110,139.472733,109.811584,90.340515,103.662827,114.266129,84.505806,40.770271,16.838861,12.679358,6.177696,8.945471,8.960347,10.295056,5.094223,0.663637,0.438844,0.000000,0.000000,0.131405,0.000000,0.071901,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601571.355000,4612285.550000,4146,5505,121.590935,175.706604,169.566116,164.623962,150.863632,140.359497,138.871902,139.004135,139.987610,144.392563,145.632233,156.549591,173.268600,189.780991,205.797516,216.780991,219.260330,209.657028,182.979340,161.119827,150.078506,144.954544,139.136368,109.483490,91.673569,105.061996,115.351257,85.210770,39.640518,17.447952,12.648780,7.873565,9.844645,8.799191,9.496708,4.380172,0.557026,0.128100,0.189257,0.297521,0.120662,0.000000,0.014876,0.206612,0.000000,0.000000,0.000000,0.000000,1.352066,0.000000 -601574.355000,4612285.550000,4161,5505,126.742989,176.883484,172.354568,165.238861,152.156219,140.230591,141.065308,138.701675,139.296707,143.585968,144.437210,154.891754,172.941345,191.313248,203.371094,214.941345,218.437210,207.875229,182.974396,160.478531,148.933075,143.784317,139.263657,111.999184,91.271912,105.528107,113.561165,84.668610,41.643822,15.578529,12.660350,7.141334,9.081008,9.879356,10.154561,5.534719,1.193392,0.223141,0.209918,0.000000,0.035538,0.000000,0.048760,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.955000,4612285.550000,4179,5505,135.224808,182.819839,172.795029,165.233063,153.481018,142.109116,139.753738,140.323990,139.861176,144.447952,145.142181,155.770279,172.993393,190.125641,205.175217,217.117386,217.885971,207.621521,183.348770,161.166946,149.877716,145.993408,140.109116,110.547127,91.175224,105.034729,115.481010,86.671089,41.224812,17.446299,12.737210,5.978523,9.591754,9.754562,9.351254,4.134717,0.279340,0.082645,0.232232,0.194216,0.063637,0.182645,0.019008,0.065289,1.334711,0.000000,0.000000,0.000000,1.438017,0.000000 -601580.755000,4612285.550000,4193,5505,141.141342,179.504959,175.381012,166.744644,153.422318,140.620667,141.620667,141.281830,140.083481,145.678528,146.686768,156.380981,173.422333,191.926453,205.810776,217.075241,219.438873,209.290115,183.761169,162.124786,149.951233,145.571075,140.463654,111.215714,91.397537,104.711586,115.372734,86.141335,40.438866,16.574398,12.769441,6.123978,9.302495,10.109108,11.030592,5.760341,0.638018,0.154546,0.142976,0.017356,0.000000,0.000000,0.036364,0.410745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.955000,4612285.550000,4259,5505,116.970268,170.309082,171.507431,162.879349,147.366943,136.416534,136.218185,133.391754,133.201660,135.325638,137.201645,148.267776,164.995041,180.193375,192.904129,203.738831,205.176865,193.862808,169.201645,149.507446,139.003296,137.375198,131.945465,103.722336,87.259521,98.391754,106.036385,79.639687,37.557045,18.041340,11.995061,11.198363,11.239686,10.781834,11.798363,5.775218,1.877690,0.257852,0.300001,0.001653,0.054546,0.006612,0.000000,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.955000,4612285.550000,4279,5505,114.619026,169.503311,171.519836,159.114899,144.709930,133.238861,133.106628,131.602493,131.263657,133.627289,134.197540,145.114899,162.412399,177.073578,190.255386,200.040512,201.478531,189.528122,165.643799,147.147949,135.784317,132.883484,128.263657,100.395889,84.271919,96.437210,105.676880,75.809113,36.147949,16.029770,11.660350,11.072742,8.581834,8.300014,9.101668,2.376039,0.570249,0.334711,0.125620,0.000000,0.059504,0.000000,0.000000,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.955000,4612285.550000,4294,5505,114.416550,174.755371,170.573563,160.019836,145.234711,134.052902,134.276047,131.829758,130.532242,134.681000,134.821503,144.623138,161.507446,176.548767,189.598343,200.094223,201.672729,189.523972,166.259506,145.639679,135.995041,133.656204,128.218201,99.788452,84.193405,94.771919,104.515717,74.912415,36.871094,15.551258,11.656218,7.719848,8.288445,9.176046,9.748775,3.008270,0.720664,0.074380,0.175207,0.000000,0.000000,0.000000,0.050413,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601614.155000,4612285.550000,4360,5505,106.726463,177.065308,172.131409,158.271927,144.404129,132.387619,132.205811,130.247131,129.495056,132.263657,131.701675,142.776031,158.222336,173.577682,185.552902,197.139679,196.933060,184.966125,161.842163,143.098343,131.933075,130.817368,125.809113,97.139687,82.040512,93.371094,102.172745,74.197540,34.379356,14.452084,11.437209,9.414889,7.849600,8.215717,8.919850,2.629760,0.665291,0.452067,0.048761,0.003306,0.000000,0.000000,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601619.555000,4612285.550000,4387,5505,113.564476,191.184326,180.861984,166.283478,150.961182,138.589279,140.349609,138.407455,138.647125,143.564468,142.952911,154.581009,170.804138,188.985962,203.415726,216.101669,217.936386,206.266968,182.547943,158.738022,148.448776,145.944656,142.481842,111.622330,92.655388,107.002495,114.845467,85.101669,42.283485,16.257870,12.952911,7.769435,10.355388,9.706626,10.752909,5.231416,1.190912,0.306612,0.111571,0.423968,0.209918,0.000000,0.265290,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.555000,4612285.550000,4402,5505,135.803314,187.456207,181.563644,169.117371,152.505798,140.257858,140.646286,139.753723,139.051254,144.662827,145.357040,156.076050,173.332245,192.580170,207.976868,220.786789,223.200012,212.208267,187.357040,164.249603,153.109100,149.621490,145.563644,115.638023,96.241333,110.753731,118.323975,88.538849,43.340519,18.419025,13.233077,6.922327,10.966959,11.031421,12.061173,6.368606,2.086780,0.829755,0.210745,0.191736,0.294215,0.033058,0.895869,0.364463,0.000000,0.000000,1.219008,0.000000,0.000000,0.000000 -601626.955000,4612285.550000,4424,5505,128.610764,179.701660,173.420670,164.528107,148.660339,138.412399,137.164459,136.197525,136.354553,140.833893,141.420670,152.734711,170.908264,189.090088,204.924789,218.164459,220.891739,210.503311,183.891739,160.825623,149.304962,145.784302,141.990906,111.709938,93.561180,107.924812,116.147957,84.924805,40.990929,15.995886,12.908283,5.652904,8.214067,10.416543,9.472742,5.056207,1.515707,0.398349,0.052893,0.355373,0.035538,0.000000,0.247108,0.165290,0.000000,0.000000,4.797521,0.000000,1.398347,0.000000 -601633.555000,4612285.550000,4457,5505,111.956215,176.385956,174.881821,163.328110,149.890091,137.526459,137.757858,136.807449,136.295044,141.733063,141.939682,153.278519,171.666946,188.708267,204.146301,216.972733,220.534714,209.228943,184.055374,159.865295,148.881821,146.071915,141.790924,111.435547,93.766129,108.096703,117.171082,85.840515,41.096710,16.642166,12.890101,7.039682,9.113239,7.653733,11.063652,5.119018,0.487605,0.111571,0.026446,0.202481,0.071901,0.000000,0.214877,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.555000,4612285.550000,4502,5505,123.740517,175.533875,172.161987,162.847931,149.715714,138.162003,137.211578,136.500839,136.038025,140.690918,142.153732,152.930588,170.666107,187.409912,201.814880,215.773544,218.409912,208.087601,182.062805,158.385117,148.707458,144.591751,141.054565,110.095886,92.914070,106.666138,115.715721,85.583488,40.732254,16.466961,12.823159,9.520678,9.700018,9.554560,11.646297,4.626455,1.495871,0.833060,0.278513,0.074381,0.161984,0.036364,0.547935,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.755000,4612285.550000,4573,5505,119.583481,168.087616,172.542145,159.657852,146.393402,136.095886,136.740509,134.046295,134.195053,137.905792,139.864471,151.690918,167.641312,185.996689,200.442978,212.335541,215.376862,203.343796,179.087616,155.409927,144.500839,141.930588,137.418198,107.004974,89.831421,104.624809,112.971916,82.079353,41.153744,15.744646,12.492581,6.673568,8.896710,8.808279,9.728939,3.550420,0.467770,0.495869,0.920662,0.422315,0.000000,0.083471,0.333885,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.155000,4612285.550000,4680,5505,106.761177,169.356232,173.752899,159.447144,145.075226,137.223984,135.364471,133.620667,135.728119,137.488449,140.521500,152.083496,170.017380,187.190903,200.909912,214.942978,217.430573,204.703308,178.885117,156.562836,145.645462,142.604141,138.827286,108.248779,89.843811,105.273575,114.496704,82.339691,42.149605,16.837208,12.620679,8.928938,10.581008,9.809106,10.033073,5.152076,0.628101,0.247935,0.040496,0.083472,0.153720,0.025620,0.252893,0.471902,0.000000,1.213223,0.000000,0.000000,0.000000,0.000000 -601711.155000,4612285.550000,4845,5505,103.731422,167.623978,174.557861,160.194229,145.053741,135.946304,135.053741,133.070267,133.847122,136.433899,138.739685,150.475220,169.698364,186.673569,200.483490,212.665298,216.020676,202.599182,178.103317,155.417374,144.607452,140.384308,137.136383,106.177704,89.888443,104.797539,114.805801,83.128113,42.524815,14.640514,12.466961,9.514065,9.859521,10.404975,11.837205,4.366124,0.785953,0.332232,0.261158,0.035539,0.000000,0.000000,0.304959,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.155000,4612285.550000,4975,5505,105.963646,171.540497,172.862808,160.961990,148.052902,137.829758,138.135544,134.523972,135.912415,137.176865,139.424789,150.457855,170.780167,187.813232,200.218185,213.003311,215.234711,202.722321,178.672729,154.887604,143.681000,141.771912,135.945480,105.482658,88.895889,103.375221,114.069427,82.747124,39.722332,15.191754,12.358697,9.717371,7.788447,7.702495,10.077702,5.196702,0.610745,0.523968,0.206612,0.143802,0.357852,0.290083,0.057026,0.598348,0.000000,0.000000,0.000000,2.391736,0.000000,0.000000 -601750.955000,4612285.550000,5044,5505,106.149605,172.843811,175.215714,164.984299,148.009094,137.637207,136.918198,135.562820,135.761169,137.447113,140.405792,152.075211,171.521484,189.480164,204.339661,216.810745,218.769424,205.711563,181.695053,156.612396,147.190903,143.934723,139.190918,107.893410,88.769440,105.662003,116.389275,83.042168,42.157871,15.692581,12.653738,9.921503,9.314067,9.876049,11.334726,5.085132,0.537192,0.007438,0.102480,0.009918,0.047934,0.531405,0.133059,0.177686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.355000,4612285.550000,5071,5505,110.074394,176.975235,177.016556,160.818207,148.851257,135.842987,136.363647,135.578522,135.074387,138.181824,139.338837,151.404968,171.289291,188.917374,203.115738,215.669434,217.867783,204.785141,181.264496,157.214905,145.198349,143.760330,138.636368,108.190102,90.793404,104.900841,116.752083,83.719025,40.347130,15.437208,12.603325,10.305799,9.052910,10.696710,9.526461,6.314060,0.551241,0.157025,0.145455,0.552893,1.105786,0.823141,0.038017,0.246282,0.000000,0.000000,2.088430,0.000000,0.000000,0.000000 -601760.155000,4612285.550000,5090,5505,102.723976,177.204971,176.568604,164.907440,147.626450,137.609924,139.254547,136.692581,137.204971,139.709091,140.766953,153.709091,172.775208,190.626450,204.609924,217.378525,219.370255,206.857864,182.163635,160.295868,147.444641,145.452896,140.618195,108.932243,92.833069,107.866127,118.320671,86.783493,43.725643,18.223984,12.783489,10.790923,10.185966,10.652908,13.928942,5.381002,2.042980,0.776861,0.500001,0.369422,0.203307,0.000000,0.223968,0.366943,0.000000,0.000000,0.000000,2.493388,0.000000,0.000000 -601764.355000,4612285.550000,5111,5505,107.104973,170.232239,173.959518,162.091751,144.480179,133.918198,133.728119,132.653748,133.248779,135.769455,136.562820,150.463654,169.455383,187.761169,200.356216,213.141342,215.372742,203.017365,177.703323,155.265305,145.000839,142.306625,135.554565,105.538025,87.885132,102.290085,114.587616,83.562828,39.447124,15.606629,12.323159,12.178527,10.773570,11.918197,13.533899,6.516537,2.080994,0.973556,0.866944,0.539671,0.580166,0.729753,0.038844,0.438844,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601767.955000,4612285.550000,5129,5505,107.850433,185.090088,178.561172,164.875214,148.850418,137.040497,138.974380,136.693390,135.999191,138.709915,139.990906,152.131409,171.842163,190.453720,202.503311,216.561157,216.924789,205.792572,181.181000,158.172729,146.428925,143.561157,139.263641,107.329765,89.511581,104.205795,116.147942,84.900017,41.792580,17.319855,12.660349,9.142163,10.792579,10.882660,12.519851,5.521496,1.051242,0.428926,0.274381,0.060331,0.007438,0.019008,0.356200,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601773.355000,4612285.550000,5156,5505,121.747948,184.665298,179.723160,166.714890,150.987610,137.194214,139.045456,136.219025,136.491730,139.673553,140.541321,153.690079,173.367783,190.260345,204.781006,217.929749,219.797516,204.632248,181.111588,159.210739,148.070251,145.342972,140.136368,108.962830,89.971092,106.384315,118.268608,85.318199,41.260349,16.892582,12.739689,12.555388,10.350430,12.867785,12.565305,4.691743,0.915705,0.295042,0.271075,0.000000,0.128926,0.000000,0.056199,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.155000,4612285.550000,5200,5505,108.448776,185.731400,175.747940,163.623962,148.409088,135.657043,137.243805,135.690094,135.318192,139.442154,139.194214,152.690079,171.582642,189.971069,204.789261,217.599167,218.227280,205.376038,181.665283,159.334717,147.797516,145.805786,141.863632,109.045471,91.400841,107.698364,117.615715,86.938034,42.500023,16.357870,12.896713,10.789271,8.401670,10.874396,12.500015,6.345465,1.190912,0.657026,0.047934,0.075207,0.000000,0.283471,0.388431,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601792.755000,4612285.550000,5253,5505,132.502487,195.360336,179.360336,167.517365,149.897537,138.071091,141.409927,139.269440,141.021500,144.162003,143.492569,154.996689,174.046295,192.748779,207.285965,220.219849,221.095886,206.046295,183.327286,160.162003,149.170258,145.575226,140.509109,108.352081,91.128944,106.823151,117.517365,86.128944,42.905807,16.400846,12.773574,14.891754,8.252910,10.629768,10.842163,6.838852,1.033887,0.838844,0.007438,0.415703,0.028100,0.000000,0.672728,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.755000,4612285.550000,5318,5505,135.090927,202.504150,182.313232,171.842148,155.090088,140.181000,142.040497,139.941330,140.924789,147.949585,143.676865,156.734711,174.346283,193.957855,209.071915,221.956207,222.385956,206.534714,184.782654,163.509933,150.055405,147.733078,142.972733,108.319847,91.559517,108.642159,119.642159,83.972740,42.493412,15.495885,12.997540,16.921503,9.162825,11.124808,11.766956,10.799185,1.295044,0.914051,0.406612,0.109092,0.303307,0.280165,0.354546,0.491736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.755000,4612285.550000,5378,5505,92.371094,170.862823,174.747116,158.920685,144.747131,134.738861,133.598373,131.631424,131.540512,133.094238,135.366959,146.631424,165.342163,181.945480,196.085968,206.953720,208.631409,197.590103,175.300827,153.350449,142.019852,138.978531,133.854568,104.226463,86.119026,101.077705,113.928947,83.639687,41.565308,15.752083,12.168613,9.200016,10.462000,8.612411,10.599189,6.017365,0.590910,0.370249,0.433885,0.078513,0.080166,0.182645,0.163637,0.426447,0.000000,2.012397,0.000000,0.000000,0.000000,0.000000 -601831.155000,4612285.550000,5445,5505,100.594223,163.947937,168.080170,158.700012,142.741333,134.931412,133.914886,132.633896,133.253723,135.485138,137.947937,147.914886,166.625626,184.245468,197.303314,209.352905,211.766129,200.981003,177.600830,155.600830,143.766129,141.245468,134.790924,105.022324,87.270256,103.576042,115.989265,85.452072,43.138039,17.538860,12.253737,9.280178,9.556214,11.355387,11.005800,7.496704,1.414879,1.158679,0.795042,0.522314,0.179339,0.000000,0.028926,0.120661,1.450413,0.000000,0.000000,1.050413,1.329752,0.000000 -601850.155000,4612285.550000,5540,5505,105.293411,170.830597,171.235550,158.557861,144.136383,133.045456,132.235550,130.466949,130.367783,132.814056,134.706619,146.483490,165.681839,182.070267,195.276871,207.276855,208.285126,197.557861,175.929764,153.144638,142.128113,138.012405,133.409103,103.690094,85.516541,101.500015,115.590919,86.070259,44.433903,16.533075,12.128119,9.665305,10.405802,9.951258,10.788445,6.072736,1.127274,0.417356,0.000000,0.068595,0.073554,0.043802,0.323968,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601861.555000,4612285.550000,5597,5505,109.316544,162.019012,171.903305,157.622314,142.853729,132.721497,131.779343,129.068604,129.870255,131.597534,133.713226,145.209106,163.556198,180.027267,194.093384,205.349579,207.696686,197.589249,175.969406,153.622330,141.076859,137.167770,132.300003,102.374397,83.886795,101.357864,115.721497,85.266960,42.415722,16.731422,12.027291,6.347945,8.959521,8.710759,10.457038,3.833891,0.246281,0.004959,0.000000,0.000000,0.015703,0.217356,0.189257,0.319009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.755000,4612285.550000,5618,5505,109.521507,163.397537,169.926453,158.686783,144.347946,134.471909,133.091751,130.686783,130.339676,132.430588,134.025635,145.868607,164.455383,181.364471,194.719849,206.761169,208.546295,198.736374,176.000839,153.984314,142.744644,137.926453,132.918198,102.579361,85.108284,101.207458,115.885139,85.802498,42.447128,15.124811,12.083491,7.498363,8.666133,9.524810,10.517372,4.404140,0.525621,0.047934,0.066942,0.076860,0.000000,0.000000,0.256199,0.323141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.155000,4612285.550000,5635,5505,99.883484,168.152069,172.813248,158.912399,143.970261,133.565308,133.697525,130.912415,131.829758,136.722336,138.565308,148.970261,167.557037,185.565308,197.928925,210.722336,211.457870,200.904144,179.242996,156.317368,145.094238,141.209930,135.763641,105.829765,86.408279,102.457863,117.110756,87.127281,43.945473,17.930595,12.342168,7.705799,10.844645,10.157866,11.731422,4.874388,1.455374,0.435538,0.519009,0.140496,0.000000,0.000000,0.036364,0.185124,0.000000,0.000000,0.000000,2.469422,0.000000,0.000000 -601874.155000,4612285.550000,5660,5505,121.257050,166.612411,170.835556,161.100006,143.372742,133.232239,133.843811,131.430588,131.381012,133.587616,134.364471,146.876877,165.447113,182.736374,195.777695,207.901672,209.802490,199.967789,176.686783,155.852081,143.207458,138.463654,134.372742,103.273575,85.810768,103.290100,117.199188,87.471924,42.802502,17.438034,12.215721,7.985964,11.649604,11.233073,10.682659,5.125628,0.985952,0.986779,0.457853,0.440497,0.173554,0.035537,0.311571,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601882.155000,4612285.550000,5700,5505,104.422333,168.893402,168.909927,156.901672,142.885132,130.380997,130.190918,127.199188,126.463646,130.347946,131.480164,143.620667,162.075226,179.199188,191.835556,204.538025,206.025635,196.496704,174.166122,152.347946,140.719849,136.653717,130.736374,102.009102,83.091759,100.471916,115.852081,85.595886,42.190929,15.083489,11.885144,5.319023,9.399191,9.444645,11.030595,4.834718,1.338846,0.346282,0.211571,0.004959,0.000827,0.000000,0.195042,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601894.755000,4612285.550000,5763,5505,111.249603,171.469421,170.180176,158.824799,144.758682,132.709122,132.047958,131.039688,130.485977,134.138870,135.816559,145.419846,165.543823,183.014893,196.692581,208.692581,209.948776,201.353745,178.659531,156.948761,144.973572,141.370270,135.254562,105.006638,87.081017,102.452911,117.502502,88.444649,42.923985,17.152910,12.295887,7.847946,10.009107,10.446299,10.646296,4.691744,1.655376,0.388431,0.690911,0.309918,0.567770,0.000000,0.172728,0.631406,0.000000,1.521488,0.000000,0.000000,0.000000,0.000000 -601902.955000,4612285.550000,5804,5505,109.579361,173.193390,166.040497,158.552902,142.569443,131.310760,129.839676,127.203316,125.484314,130.133072,130.678528,141.719864,159.252899,177.362808,190.552902,203.428925,205.495041,196.387604,173.974380,153.081818,142.090103,138.627274,132.990921,103.057045,86.181007,101.817375,116.090103,86.057045,41.643822,16.258696,12.090101,7.135550,9.572744,9.302494,10.846296,4.250421,0.723142,0.229753,0.157025,0.161157,0.000000,0.000000,0.237191,0.105785,0.000000,0.000000,0.000000,0.000000,2.980165,0.000000 -601912.555000,4612285.550000,5852,5505,103.567787,171.997528,170.683487,158.022324,140.832245,129.906616,130.278519,127.071907,126.972740,128.898361,128.815720,141.485138,160.947937,176.890091,189.005798,201.344635,204.063644,192.344635,170.138031,148.609100,137.724808,134.576050,127.972740,99.179359,82.245461,97.584312,113.518188,82.989273,39.509933,14.992579,11.633904,10.331420,9.971916,10.623983,12.286792,4.374389,0.815705,0.190910,0.058678,0.000000,0.057025,0.023967,0.146281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.155000,4612285.550000,5885,5505,107.082664,168.355392,169.801666,155.404953,141.066147,130.231415,130.041336,126.917374,126.041336,128.578522,128.611588,142.528961,159.702499,176.504135,189.942154,201.991730,203.371902,191.909088,169.900848,148.528931,138.000031,134.785126,128.363647,98.487617,81.925644,97.363647,110.743820,82.123993,39.818199,15.671920,11.669439,10.283485,9.915719,10.168612,10.599188,4.869431,0.866944,0.282645,0.163637,0.071901,0.002479,0.000000,0.188431,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.955000,4612285.550000,5914,5505,101.718201,170.923141,170.369415,155.385956,139.435547,128.691757,128.633896,125.262001,125.518196,128.022339,128.642166,140.509933,159.708252,176.699997,189.741318,200.972717,202.790909,191.501648,168.790909,148.923157,136.989288,133.642166,127.609108,97.592575,81.600845,95.485130,110.790916,81.104965,38.526463,15.288448,11.600846,9.423982,8.559520,8.626463,10.676873,5.004968,0.749588,0.376860,0.179339,0.000000,0.059504,0.000000,0.145455,0.331405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601932.555000,4612285.550000,5952,5505,99.462006,173.205795,169.585953,156.718201,141.098373,128.346298,129.189270,126.478531,126.982666,129.751266,129.619034,142.280182,160.139679,179.189255,192.065292,203.222321,205.015701,192.726456,170.098343,149.660355,138.123154,135.255386,128.718201,98.709938,82.081841,96.833900,111.015724,80.949608,38.197540,14.561175,11.701673,10.112414,9.270267,8.788446,9.473568,4.210750,0.365290,0.000000,0.066116,0.414050,0.013223,0.000000,0.038843,0.071075,0.000000,2.155372,0.000000,0.000000,0.000000,0.000000 -601940.355000,4612285.550000,5991,5505,112.499191,175.697525,169.259506,157.697525,141.102478,128.218201,131.466141,128.119034,127.416550,130.664490,129.590103,143.152069,160.895874,178.813232,191.548767,204.251236,205.350418,192.209915,170.771912,150.325623,137.879349,135.408279,129.854568,99.623161,82.953735,98.052910,110.722336,81.358696,37.771919,16.228117,11.804977,10.278526,8.727289,10.042164,12.416544,4.199181,0.629754,0.040496,0.217356,0.008265,0.014876,0.000000,0.000000,0.128926,0.000000,3.051240,1.189256,0.000000,0.000000,0.000000 -601949.755000,4612285.550000,6038,5505,109.406624,182.705811,170.416550,159.565292,142.507462,129.937210,129.838043,127.945473,128.119034,132.160355,130.482651,143.226471,161.391754,178.705811,191.201660,205.085953,204.383469,192.168594,170.755386,149.077698,139.028122,135.962006,130.581833,99.689278,82.697540,99.995064,110.788445,81.061180,39.276051,16.350431,11.871093,10.801666,9.163653,9.847949,11.880180,5.540506,0.802481,0.236364,0.176034,0.141322,0.421488,0.066942,0.386778,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.955000,4612285.550000,6074,5505,117.111603,174.103317,168.913239,160.541336,145.070267,131.227295,130.938034,127.987625,128.483490,133.541351,129.309937,142.367783,158.392578,175.987625,189.855392,202.252075,201.566132,188.177704,166.623978,147.690094,136.483505,133.276886,127.863663,97.491768,81.781013,99.020691,107.781021,78.144653,34.822334,14.392579,11.623986,10.948775,10.032248,10.014891,9.632244,3.693397,0.671076,0.047108,0.000000,0.266943,0.056199,0.001653,0.038843,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601965.355000,4612285.550000,6116,5505,117.100838,177.919022,171.431412,162.472733,147.365295,134.571899,133.811584,130.348785,129.985138,135.208267,132.249603,144.109100,158.456207,177.373566,190.728943,204.076050,203.191742,189.133896,168.315720,149.348770,137.390091,134.638031,129.563660,100.001663,82.943817,101.042984,109.059517,77.514069,37.233074,14.424811,11.778531,10.360345,8.194230,10.786794,10.479351,5.661168,1.295044,0.149588,0.052893,0.439670,0.066942,0.000000,0.500827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.755000,4612285.550000,6133,5505,119.854568,179.895859,172.904129,165.152069,147.928940,135.300842,133.209930,132.441345,131.912415,137.846298,132.540512,145.383484,160.705795,177.631393,192.879333,206.317337,205.788422,190.631393,170.152069,149.408279,140.449600,136.904144,130.127289,100.375229,86.259521,102.152084,111.441345,80.119019,37.664482,16.604977,11.829771,14.494230,10.708281,11.190099,10.579351,5.533893,0.533060,0.112398,0.115703,0.130579,0.000000,0.179340,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601971.555000,4612285.550000,6147,5505,131.427277,182.361145,170.576019,164.361145,145.460327,133.617371,133.716553,129.832245,130.088440,135.724808,131.600845,143.592560,159.088425,177.187592,191.493378,204.063629,203.914871,189.038834,168.980988,147.584290,137.410736,133.890106,130.063660,101.443817,83.881836,101.410759,109.212410,78.567787,38.493416,17.629770,11.823986,13.213239,8.687617,10.171914,8.545466,6.052903,0.705787,0.509092,0.057025,0.033058,0.090909,0.122315,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601975.955000,4612285.550000,6169,5505,115.458694,161.971085,162.491745,157.739685,139.871933,130.194229,126.764481,125.888443,125.458694,130.301666,128.805801,140.202515,156.640518,173.756195,187.640503,200.301651,201.533051,188.830582,166.921509,146.359528,136.623978,131.938034,126.318199,98.061996,81.739685,97.888451,107.913239,79.020676,38.185966,15.256215,11.483490,10.889271,10.235554,10.255385,11.176048,5.294225,2.121491,0.486778,0.604960,0.205786,0.328926,0.008265,0.345455,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,3.066116 -601982.355000,4612285.550000,6201,5505,106.479362,150.528961,153.925629,147.462830,131.487625,122.347122,121.884323,119.595055,119.512413,122.016548,123.289276,134.727295,151.495880,168.578522,182.115723,194.272751,196.727295,186.239685,163.338852,142.330612,132.049606,128.561996,122.000015,95.214897,77.471100,91.702507,104.925636,77.404984,34.834728,13.390099,11.090928,5.746293,9.633896,9.333072,8.510756,4.503315,1.348764,0.456200,0.125620,0.060331,0.000000,0.000000,0.520662,0.254546,0.000000,0.000000,0.000000,0.000000,1.804132,0.000000 -601985.155000,4612285.550000,6215,5505,106.493416,153.410751,154.559509,146.518188,132.675232,124.055389,120.799194,119.964478,119.774399,122.121506,124.038864,135.485138,152.245468,169.873566,183.427277,195.088440,196.923157,187.047119,163.385956,141.385956,131.038864,127.096710,121.972748,95.526474,77.071930,94.113251,105.435562,78.237213,35.162830,13.856215,11.088449,5.459514,9.571088,9.944642,8.893401,3.838025,0.430581,0.307439,0.305786,0.039670,0.131405,0.004959,0.843804,0.289257,2.373554,0.000000,0.000000,0.000000,0.000000,0.000000 -601988.155000,4612285.550000,6230,5505,111.377708,148.493393,151.857040,143.683487,131.865311,121.063660,120.022339,117.551262,117.774406,119.790932,121.757874,133.724823,150.377701,166.931412,181.303314,193.939682,195.799179,184.410751,161.518188,139.733063,130.865311,126.146309,120.790932,92.633904,74.708282,90.931419,104.204155,76.642166,35.757874,12.768612,10.981010,7.166128,8.159516,7.845467,8.000840,4.250421,0.276860,0.557852,0.028926,0.000000,0.049587,0.000000,0.095042,0.519836,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601992.955000,4612285.550000,6254,5505,106.153740,150.889267,153.765305,141.476044,130.054565,119.409935,117.492584,114.591759,114.856216,117.269440,118.583488,130.368622,148.095886,165.723984,178.145462,191.021500,192.699188,181.285965,159.707458,138.525635,127.839691,124.162003,118.145477,90.252914,71.914070,90.352089,104.352081,79.153740,35.542171,13.776876,10.740515,6.016539,9.737202,10.042162,9.157039,3.719841,0.871077,0.249588,0.034711,0.000000,0.000000,0.295041,0.196695,0.518183,0.000000,5.461984,0.000000,1.547934,0.000000,3.099174 -602000.755000,4612285.550000,6293,5505,103.398376,139.728943,143.844635,135.753738,121.200027,111.514076,108.142174,105.059532,105.166969,106.844650,108.547134,119.968620,138.034714,155.241348,168.224823,178.406616,179.695877,169.034729,148.571915,127.406639,116.993416,113.166969,107.200027,80.927299,62.786793,80.737213,97.563660,73.191765,34.352913,10.616546,9.745473,6.461167,8.521501,8.638028,9.834724,5.023150,0.675208,0.484299,0.218182,0.185951,0.000000,0.000000,0.300827,0.213224,2.109091,0.000000,1.663637,0.000000,1.674380,6.072728 -602008.155000,4612285.550000,6330,5505,95.595886,134.604156,139.108276,128.265305,113.959526,103.149605,100.612419,96.819031,95.885147,97.323158,98.166138,109.257050,126.430603,141.257034,153.372742,163.992569,164.290100,154.513229,135.554565,117.174400,106.827293,103.083488,98.554565,70.488449,54.290108,76.182663,95.984322,75.017380,35.521507,12.047126,8.959523,7.414062,9.787617,9.612412,13.689273,8.004144,2.365294,0.578514,0.323968,0.437191,0.285124,0.279339,0.060331,0.055372,0.000000,3.750413,3.389256,2.748761,0.000000,2.893389 -601033.155000,4612275.550000,1455,5555,1.369422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.380994,1.619838,0.904960,0.000000,3.941328,12.125634,24.918201,39.853737,34.266129,22.955389,14.568605,13.275216,12.911579,7.114057,4.172731,2.349588,2.397522,0.631406,0.155372,0.300827,0.078513,0.501653,2.261984 -601316.955000,4612275.550000,2874,5555,183.266953,193.688431,184.159515,176.316528,165.878525,161.258682,167.713226,170.407440,177.382645,186.448761,197.060333,215.572739,240.878525,263.093384,277.771118,290.812439,290.671936,266.564484,216.663635,182.060333,168.217361,159.333069,148.300003,119.779343,103.159515,105.853745,97.242172,66.564484,34.167786,16.154564,13.481836,9.900843,9.925638,11.571092,9.741338,5.979350,2.579345,0.496696,0.602481,0.511571,0.233059,0.271075,0.038017,0.093389,3.857852,0.000000,1.082645,2.029752,0.000000,0.000000 -601322.155000,4612275.550000,2900,5555,172.519852,191.585968,188.098373,178.172745,169.106628,164.106628,169.371094,171.784317,178.519852,187.313248,197.329773,215.090103,239.685150,261.205811,276.767822,289.387665,288.462036,266.916534,220.073578,186.280182,171.701675,165.511597,153.990921,123.850433,105.106628,108.701675,103.304977,69.552910,32.875225,16.496714,13.999193,10.847950,11.305803,10.739686,10.954559,5.925629,0.477687,0.656201,0.456201,0.266943,0.529754,0.246281,0.057026,0.692563,1.248760,1.200000,0.000000,0.000000,0.000000,0.000000 -601329.755000,4612275.550000,2938,5555,173.973557,194.064468,192.114059,182.791748,174.841324,173.361984,177.395050,181.543808,187.692566,197.386780,205.717361,222.709091,245.849594,264.733887,279.824799,289.576874,289.585144,272.535553,228.775208,197.940506,185.047943,177.560333,168.436371,138.824799,120.312408,123.411583,116.899185,78.304146,37.651260,17.833904,15.312416,13.043819,11.226463,12.101670,12.415719,6.559515,1.504964,1.871080,0.616531,0.483472,0.218183,0.179339,0.558679,0.007438,0.000000,0.000000,2.240496,3.192562,0.000000,2.052893 -601340.955000,4612275.550000,2994,5555,165.537201,187.223160,187.900848,179.603317,171.809937,166.661179,170.801666,175.876053,180.487625,188.933899,198.528946,215.280991,237.876038,259.611572,275.066101,286.553711,287.173553,277.338837,239.636368,207.553741,197.033081,190.710754,185.454559,154.512405,132.355392,139.619858,140.206635,98.958694,44.082664,20.619854,16.859522,11.525637,11.881835,13.795058,13.828117,7.378526,3.171907,0.946284,0.942151,0.338844,0.247108,0.000827,0.035537,0.217357,0.000000,0.000000,0.000000,0.000000,0.000000,2.261984 -601358.155000,4612275.550000,3080,5555,161.171906,188.502487,182.543808,176.527283,166.047943,159.436371,162.221497,164.940506,169.039673,174.295868,181.138855,196.750427,217.510757,237.609924,253.163666,264.519043,267.180176,261.353729,231.361984,205.750397,196.378525,192.188431,189.890915,158.626450,136.271088,146.461166,156.436371,118.147125,54.957043,20.570269,17.262829,12.458694,14.601670,15.639687,16.019026,11.719851,2.685956,0.744630,0.469423,0.360331,0.345455,0.292562,0.206612,0.346281,1.338017,0.000000,0.000000,1.067769,0.000000,0.000000 -601384.555000,4612275.550000,3212,5555,139.700851,167.395065,168.791748,160.676056,149.899200,142.403336,143.072754,144.849609,145.519028,152.477707,155.262833,169.386780,187.618195,205.337204,219.700836,231.171906,233.295868,230.800003,208.204971,188.378525,180.204971,176.039673,176.072739,149.287628,125.171913,140.973572,161.411591,130.742172,63.684315,19.667788,16.006632,9.504972,12.286793,15.799192,24.560349,12.847123,1.673557,0.272728,0.036364,0.139670,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601397.755000,4612275.550000,3278,5555,130.514877,174.258682,175.085129,168.035538,156.622314,147.746292,147.762817,148.812408,150.465302,157.738022,161.142975,174.184311,194.498352,212.762817,226.870255,236.812408,237.523148,230.589264,205.655380,181.349594,170.721497,166.952896,164.118195,135.200836,112.828934,125.093391,140.638855,107.523148,49.688450,17.742994,14.919853,7.619847,12.377703,12.215718,13.635554,4.629761,1.063641,0.149588,0.430580,0.076033,0.000000,0.000000,0.033884,0.007438,0.000000,0.991736,1.162810,0.000000,0.000000,0.000000 -601403.355000,4612275.550000,3306,5555,129.731415,180.772751,177.533081,168.805801,157.367783,148.235550,149.549606,150.466965,151.855392,159.078522,161.607452,176.194229,195.673569,213.458679,227.524796,237.789261,240.185944,232.673553,207.128098,183.516541,171.929764,168.533081,164.772751,135.243805,113.690086,126.541336,140.623978,107.657028,49.070267,19.162828,14.979358,7.633897,9.754560,12.446296,14.851256,6.194226,1.751243,0.491737,0.405786,0.166116,0.107438,0.000000,0.041322,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601406.155000,4612275.550000,3320,5555,137.105789,183.568604,178.494217,171.948761,156.998352,147.510757,150.651245,151.031418,153.411575,158.957031,162.841324,176.304138,194.461166,214.287613,228.684311,237.791748,239.527283,233.031418,207.163635,183.973557,171.742157,169.733887,165.527283,135.552078,112.609940,126.725639,138.618195,107.014893,51.328949,19.326464,15.047953,8.285136,11.376049,13.447125,14.392579,7.604143,1.320665,0.514878,0.357853,0.028926,0.046281,0.152893,0.000000,0.028099,1.235537,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.155000,4612275.550000,3335,5555,138.877701,182.447922,174.365280,168.290939,155.514053,146.538849,147.307465,149.117386,150.200027,157.985153,159.720688,173.728912,192.323975,212.588440,225.952072,236.687607,237.968597,231.571915,206.257843,183.026443,171.257858,167.728912,164.745483,134.662827,112.745476,124.745476,139.662827,105.737206,49.257870,18.412415,14.976878,8.357038,11.566133,13.026463,13.785968,5.633068,0.946285,0.288431,0.166943,0.000000,0.000000,0.141322,0.047108,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.555000,4612275.550000,3357,5555,132.964478,184.443817,175.997528,167.683487,156.832245,146.080185,146.840500,148.278519,149.650421,157.261993,158.947937,172.286789,190.906616,209.939682,224.303314,236.369431,238.328110,230.352905,206.675217,182.997528,170.683487,168.138031,163.063644,134.171082,111.518188,125.956207,137.947952,105.774391,47.873573,17.623985,14.823985,6.647120,11.543817,11.814891,12.572744,5.779350,1.318186,0.483474,0.043802,0.030579,0.204959,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.555000,4612275.550000,3382,5555,126.632248,173.921509,176.004150,163.971085,149.888443,143.103317,143.929764,144.260345,145.318192,151.095062,153.731415,167.351257,187.268600,204.855377,218.574387,229.921494,231.301651,222.351242,199.061981,177.095062,166.524811,165.144638,159.590927,129.433899,109.830597,121.888443,133.855392,99.367783,47.334732,18.502499,14.508284,12.220678,12.257041,13.371093,15.329768,8.676872,0.736367,0.351242,0.505786,0.000000,0.066943,0.000000,0.029753,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.555000,4612275.550000,3397,5555,127.449593,174.970245,173.375214,164.251236,150.416534,141.656204,143.119019,143.681000,144.317352,148.961990,152.119019,165.482651,185.747116,203.152069,215.714050,227.209915,230.523972,221.771912,198.052902,175.333893,165.176865,163.416534,157.854553,129.416534,109.011574,120.300827,134.928925,99.061165,46.127296,17.098366,14.350431,11.714066,10.879355,13.554564,14.758696,6.741333,1.030582,0.032232,0.180993,0.000000,0.039670,0.000000,0.094215,0.011571,0.000000,0.000000,0.823141,0.000000,0.000000,0.000000 -601426.955000,4612275.550000,3424,5555,135.100006,178.926468,176.066971,164.223999,150.637207,142.645477,143.653748,143.157883,144.529770,148.364471,152.207474,165.885147,185.157867,202.215714,216.331421,227.199188,228.992569,220.298355,196.752899,175.372742,163.943008,161.909943,158.100037,128.562820,107.852081,121.571075,137.909943,103.389267,47.794235,18.409109,14.372746,12.600015,12.069439,12.647124,16.347126,7.440506,1.215707,0.099175,0.165290,0.247108,0.104133,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601429.955000,4612275.550000,3439,5555,134.667786,181.510757,174.733887,164.750427,150.998352,141.593399,143.089264,143.080994,144.047943,147.915710,151.287613,164.676041,184.097534,201.064468,214.097534,225.461166,226.163635,217.990082,194.097534,173.882645,163.238022,160.304138,156.072739,126.651253,106.411583,119.395058,136.188446,103.064476,48.684315,17.054564,14.188448,11.538032,11.388446,13.094233,14.745472,6.445464,0.508267,0.170249,0.317356,0.183471,0.068596,0.000000,0.009091,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601434.955000,4612275.550000,3464,5555,132.152084,186.871078,177.069427,167.424789,153.920670,145.044647,146.069427,146.449585,147.937195,152.755371,154.598343,168.697525,188.871078,206.457855,221.333893,233.110748,234.928925,224.375214,201.656204,181.771912,170.251236,168.135544,162.945465,133.986786,110.730598,124.614891,140.953720,108.416542,50.251259,19.623159,14.813242,13.804148,13.809935,16.088448,18.971092,9.355384,1.682650,0.711573,0.311571,0.116529,0.000000,0.000000,0.011570,0.275207,0.000000,1.274380,0.974380,0.776860,0.000000,0.000000 -601438.955000,4612275.550000,3484,5555,131.046295,180.889267,175.112411,165.261169,153.153732,143.360336,145.302490,145.062820,146.790100,151.757034,154.426453,169.616547,188.385117,207.318985,221.037994,234.071060,235.798325,225.781799,201.980164,182.219849,171.021500,167.591751,163.600006,133.294235,111.814896,124.013245,141.046295,105.955391,49.980186,18.649605,14.872747,12.361174,12.755390,13.011586,15.138861,7.644639,1.315706,0.379340,0.013223,0.028099,0.000000,0.192562,0.018182,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601442.955000,4612275.550000,3504,5555,137.985153,181.961182,175.019028,165.531418,150.969437,141.771103,144.374405,146.118210,147.266968,152.192581,153.581009,168.754562,189.341339,207.490112,220.837219,234.721512,236.291763,225.399200,202.085144,182.928116,171.167786,169.589279,164.845459,133.928116,112.895065,126.184319,141.688446,107.448784,50.142994,19.556217,14.985970,11.676876,12.128117,15.876052,15.221506,9.189269,1.731408,0.461158,0.304960,0.110744,0.026447,0.000000,0.015703,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.555000,4612275.550000,3527,5555,136.710739,186.768600,176.380173,166.958679,153.024796,142.818176,146.033051,145.727280,147.520660,153.586777,154.495865,169.719009,188.776855,208.330582,222.041321,235.917358,236.652893,226.768600,204.264465,183.479340,171.479340,169.842972,165.636368,133.363647,111.355385,125.578529,142.066116,107.223160,50.495892,19.214893,15.057871,14.252911,13.389275,16.262827,17.415722,8.501666,0.947936,0.081819,0.333059,0.060331,0.003306,0.000000,0.019835,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.355000,4612275.550000,3546,5555,134.809113,190.668610,176.445465,168.602478,152.668594,141.759521,145.412415,143.718201,147.048782,153.238861,152.329773,168.057022,186.850433,206.528107,221.528107,235.734711,236.552902,225.528107,202.933060,183.057022,171.594223,169.313232,165.354553,133.610748,110.883492,126.313240,140.800842,104.577705,48.280182,17.878531,15.032249,15.779356,10.685966,13.370264,16.622334,6.877699,1.086780,0.234711,0.229753,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.955000,4612275.550000,3574,5555,149.080154,193.873550,176.576019,168.600815,153.617355,142.212402,144.526459,143.964478,146.485138,153.832230,152.931396,168.179337,187.063629,206.419022,222.509933,237.534714,239.237198,227.675217,207.195877,186.270248,174.584290,172.295029,167.790909,133.906631,112.716545,129.080185,141.972733,104.906631,48.947956,18.395885,15.253737,13.864481,12.208282,13.992580,16.104151,8.596707,1.623145,0.314050,0.297522,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.955000,4612275.550000,3604,5555,142.106628,197.420670,178.866959,170.172745,155.395889,143.057037,145.197540,144.974396,146.338043,154.668610,152.536377,165.908279,184.693405,204.999191,220.536377,234.610748,236.205795,224.478531,203.585953,183.338043,171.767792,169.957870,165.354568,129.883484,110.709930,127.908279,137.957870,103.032242,50.387623,19.296713,15.032250,13.595059,13.766961,14.940515,16.329769,7.306623,0.825623,0.653720,0.246282,0.050413,0.031405,0.000000,0.042149,0.197522,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.155000,4612275.550000,3620,5555,154.775223,193.667786,178.312424,168.312424,153.254562,141.700851,143.990112,143.072754,146.031433,153.345474,150.147125,163.915726,183.279358,201.411591,217.923996,231.395065,232.543823,219.849609,200.568619,179.857880,167.874405,166.890930,160.709106,127.056221,108.006622,124.188454,136.800018,99.105797,48.312416,19.333076,14.609936,14.244646,11.438034,15.314893,15.665306,8.356212,0.749589,0.171902,0.157852,0.001653,0.008265,0.000000,0.039670,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.355000,4612275.550000,3641,5555,154.973572,203.824814,179.692581,170.328949,154.684326,143.485977,144.800018,143.419861,145.196716,154.519028,149.485977,162.990112,180.163666,199.064484,215.543808,227.882645,228.634720,215.039673,195.849609,175.519028,163.923996,163.064484,156.709106,123.841347,104.907455,122.684319,134.031433,97.188454,47.287621,20.906630,14.246301,18.128117,10.886794,14.928117,15.923985,7.923978,0.702480,0.360331,0.338017,0.028926,0.222315,0.000000,0.000000,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.355000,4612275.550000,3671,5555,126.766129,181.848770,172.609100,164.344650,149.468628,140.708298,140.956223,139.410767,140.749619,146.022339,146.774399,159.278534,178.146286,194.542999,209.476883,222.832260,226.005798,215.295074,193.096725,172.303329,163.055405,158.385971,153.154572,122.542984,101.658699,118.278519,129.609100,94.385963,47.336380,18.211590,13.923160,10.066130,10.898365,12.294232,12.162001,8.051250,0.833886,0.121489,0.000827,0.006612,0.000000,0.000000,0.000000,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.955000,4612275.550000,3684,5555,128.824814,166.750427,170.948761,161.576859,146.543808,138.535538,137.998352,137.667770,138.089264,141.130585,144.147110,156.072739,176.271057,192.518997,206.965286,219.527267,223.031403,212.428085,189.444626,169.403290,158.808273,155.006622,148.890915,120.221497,100.006615,115.816536,129.196701,93.800003,44.023159,17.756218,13.535556,9.852081,12.114893,12.366134,11.881834,6.161994,0.492563,0.019009,0.214877,0.000827,0.088431,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.155000,4612275.550000,3700,5555,121.899193,164.998367,170.800018,160.643005,146.800018,139.254547,139.039673,138.114059,139.064484,141.948776,144.816559,156.700851,176.378525,192.304138,206.279343,217.725632,220.725632,212.155380,188.345459,169.725647,158.395065,153.502502,149.527298,120.180191,97.816551,114.147133,128.147125,93.626472,44.593407,17.310760,13.593408,9.751253,12.399191,13.202497,12.233902,5.671085,1.259507,0.215703,0.131405,0.015703,0.065290,0.000000,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.555000,4612275.550000,3727,5555,116.799187,162.567764,168.873550,161.501648,146.419006,139.113220,137.650406,136.633896,137.923141,140.410736,143.509918,155.939667,173.419006,190.402496,203.807449,215.146286,218.774384,209.890091,187.187607,165.030579,155.005783,151.666931,147.154541,115.138023,96.766136,112.435547,125.113235,93.113243,43.600849,17.274399,13.377705,9.078527,10.161173,10.707455,12.633900,5.623150,1.578515,0.625621,0.238844,0.010744,0.004132,0.109092,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601491.555000,4612275.550000,3747,5555,119.537209,163.487610,169.793396,160.528931,147.991760,138.347107,137.867783,136.760345,138.479340,139.867767,143.859497,154.727295,174.239670,189.933884,205.462814,216.495865,219.438019,210.867767,186.438019,166.090912,155.223175,152.851273,147.000015,116.190102,95.892578,111.991753,124.801666,92.132248,44.834736,16.699192,13.363654,7.819849,10.447951,11.300016,11.856214,6.731415,1.352069,0.180166,0.013224,0.000000,0.009091,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601494.355000,4612275.550000,3761,5555,110.135559,165.317352,170.160339,159.763641,147.209930,139.036377,138.069427,136.540497,136.763641,139.590103,142.697540,154.945465,172.284317,188.672729,203.457855,214.135559,217.738861,207.193405,184.366959,163.664459,153.127274,149.408264,145.218185,115.681000,93.796707,110.168617,123.176872,90.300835,43.085964,17.534731,13.201672,8.731421,8.533073,11.604978,10.888444,5.921496,0.902481,0.375207,0.290084,0.148761,0.013224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.555000,4612275.550000,3782,5555,116.117371,167.067795,169.224808,158.985138,148.290924,139.786789,136.629761,136.530594,137.249603,140.728943,142.489273,154.026459,172.621521,189.200027,202.695892,214.646301,216.191757,207.233078,183.059525,162.960342,151.580170,148.894226,144.200027,113.737206,93.968613,109.976875,123.059509,89.828117,41.952084,16.664482,13.109110,9.457037,10.051257,11.428943,9.865304,4.538852,0.805787,0.119835,0.138017,0.071901,0.009091,0.000000,0.119009,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.355000,4612275.550000,3816,5555,118.513245,164.000854,168.976044,158.504974,145.455399,136.331421,136.025635,134.843826,136.000839,138.290100,140.240524,151.901672,169.372742,185.901657,198.992554,210.579330,212.290085,202.182648,179.835556,159.670258,148.827286,144.579361,140.554581,110.496712,92.620682,106.496712,119.223991,88.587624,42.372749,16.588448,12.777705,8.172740,8.196711,10.379356,10.790096,5.306622,0.530580,0.002480,0.261158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601510.555000,4612275.550000,3842,5555,125.129768,161.220673,169.873566,158.675217,146.576050,137.493393,138.005798,136.162827,136.460342,139.617371,142.286789,153.542984,170.890091,187.171082,201.733047,212.782639,214.857025,204.807434,181.476868,159.956207,149.526459,144.923157,140.336380,112.319855,93.171089,108.923157,120.063652,89.253738,43.914898,17.999191,12.757870,8.144641,9.319026,9.347952,12.191752,5.669431,1.275209,0.125620,0.000000,0.247108,0.000000,0.000000,0.161158,0.132232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.155000,4612275.550000,3855,5555,123.616539,171.575226,170.285965,160.806625,146.996704,138.806625,137.550430,135.881012,137.641342,140.319016,142.459518,153.401672,171.674393,187.137207,201.261169,212.500839,214.079346,203.947113,181.996704,161.186783,149.343811,146.029770,140.418198,110.922325,92.509102,109.823151,119.426460,89.178528,42.748783,17.580183,12.765308,8.438028,11.238860,11.776051,10.078527,6.801663,0.443803,0.000000,0.069422,0.023968,0.013223,0.160331,0.004132,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.955000,4612275.550000,3884,5555,119.675217,162.352905,169.551239,159.592575,148.576065,139.262009,137.129776,136.047119,136.749619,139.336395,140.485153,152.336395,170.138016,185.633896,199.534714,210.286774,213.931396,202.518188,179.906616,159.154541,148.419037,143.807465,139.154572,110.014061,89.840515,106.592575,117.749596,86.609100,42.402496,17.817375,12.650433,8.754558,10.082662,10.087620,13.033899,4.380999,0.847110,0.096695,0.000000,0.004132,0.000000,0.000000,0.025620,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601522.155000,4612275.550000,3900,5555,117.614899,164.647934,170.681000,161.292572,149.309097,140.044647,137.995056,136.937210,136.623154,139.656219,142.226471,153.052902,171.441330,185.391739,200.135544,212.416534,214.011566,204.986786,181.201660,158.548767,147.400009,145.135559,140.581833,110.160347,90.548782,106.532249,117.135544,86.672745,41.763657,18.168615,12.780185,8.685963,9.882663,12.316547,11.047124,4.517363,0.911572,0.248761,0.304959,0.019835,0.005785,0.000000,0.003306,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,2.157025 -601524.955000,4612275.550000,3914,5555,113.244652,166.120667,169.500839,159.732239,147.401672,137.409927,136.781830,135.674393,135.872742,137.707458,140.178528,150.881012,168.641342,185.583481,198.021484,210.285950,210.525620,200.955368,177.550430,156.071091,144.922333,140.566956,136.600006,107.864487,88.054565,103.823158,115.277710,84.335556,39.905807,16.259523,12.418200,7.638029,8.048777,10.097538,10.235551,3.557858,1.323969,0.002480,0.185951,0.000000,0.034711,0.000000,0.005785,0.395869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.155000,4612275.550000,3930,5555,110.626457,163.155396,170.320663,161.328934,147.130585,138.742172,137.766968,135.089264,136.428101,138.477707,141.667786,151.866119,170.204971,184.725632,199.271088,210.907440,210.957031,201.874390,178.353729,155.841324,145.593399,142.279343,137.890930,107.733902,89.519020,103.973572,113.882660,85.196709,40.609936,15.280183,12.535556,6.689268,8.764479,10.413240,11.402493,5.379349,0.752068,0.414877,0.069422,0.105786,0.008265,0.000000,0.000000,0.000000,1.291736,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.155000,4612275.550000,3945,5555,109.992584,162.422348,168.604156,159.108292,146.174408,137.133087,136.017365,134.769440,135.967789,138.819031,140.281845,151.604156,168.496719,183.860367,197.265320,207.752914,211.265320,201.397552,177.323166,155.885147,145.620697,140.752914,136.463654,106.893410,88.571098,104.199196,113.174400,84.447128,39.695057,15.702498,12.405803,5.885961,7.723158,9.253736,9.053734,3.910752,0.741324,0.321488,0.291736,0.224794,0.061158,0.000000,0.060331,0.353720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.155000,4612275.550000,3965,5555,112.832253,162.666946,169.542984,160.402496,148.286789,139.047134,137.328125,136.881851,136.799194,140.129776,141.443817,153.121490,170.162827,185.873566,199.890091,210.030594,212.022324,202.997528,178.253723,156.691742,145.518188,142.460342,136.881821,108.270271,87.799202,105.435562,114.419029,84.096718,42.262001,17.352083,12.443820,7.409102,9.212415,10.024811,10.499188,4.928935,0.404960,0.230579,0.049587,0.132232,0.067769,0.033058,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.955000,4612275.550000,3979,5555,115.970261,168.408264,168.482651,160.532242,148.375214,138.738846,138.664459,136.292572,136.912399,140.102478,142.019836,154.193390,170.433060,186.771912,201.408264,212.168594,213.284302,204.185120,180.185120,158.102478,147.573563,142.581818,137.490906,109.168610,89.160332,104.160339,113.309105,85.408264,41.085976,15.544645,12.499192,6.655382,10.852084,8.894230,10.166130,4.863645,0.401654,0.120661,0.065289,0.023141,0.000000,0.000000,0.031405,0.414877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.555000,4612275.550000,3992,5555,112.220673,167.865295,168.567780,161.195877,147.154556,138.542984,136.038849,135.146286,136.096710,139.617371,140.642151,151.410751,169.385956,185.675217,199.319839,210.799179,213.171082,202.881821,178.419022,157.022324,144.972733,140.749603,135.518188,107.427284,87.823975,102.328110,113.625633,83.443810,39.600845,15.276052,12.319855,6.183482,8.381009,9.200017,9.318196,4.553728,0.923142,0.000000,0.064463,0.016529,0.005785,0.000000,0.000000,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.555000,4612275.550000,4007,5555,122.569443,165.709915,169.321487,159.883469,149.205795,140.238861,137.147949,135.536362,135.420685,140.048782,140.999191,151.990906,170.048767,186.073578,199.569427,211.329773,213.569443,202.999176,179.230591,157.081818,145.619034,141.280182,137.081833,107.313240,87.908287,103.817375,114.536385,84.065308,39.742996,13.663655,12.462003,6.511581,8.296711,9.606630,8.092574,4.087612,0.708266,0.143802,0.142149,0.000000,0.004959,0.180165,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.555000,4612275.550000,4022,5555,126.174400,169.009109,171.488449,162.215714,149.637207,138.802490,137.604141,136.595886,136.719849,140.678528,143.323151,152.819016,171.703323,188.290100,201.728119,213.339676,214.290100,206.199188,181.199188,157.777695,147.364471,142.347946,138.736374,108.769432,89.942986,103.538033,115.207451,84.554565,41.397541,16.486795,12.612415,7.330589,9.538033,9.714892,12.715717,4.615711,1.420664,0.819010,0.163637,0.135538,0.074381,0.000000,0.254546,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.555000,4612275.550000,4037,5555,114.862831,169.457870,170.383484,158.540512,147.135559,138.234726,137.664490,135.838043,136.193405,139.771927,140.821503,152.077698,168.928940,186.226471,199.342163,212.226471,213.061172,202.978531,179.722336,156.185150,144.532257,140.672745,136.581833,108.135559,87.730598,103.160347,112.119026,81.581841,39.854565,15.919026,12.416549,5.377696,8.312412,8.254560,9.458691,5.050422,0.401654,0.195042,0.133885,0.145455,0.156199,0.000000,0.000000,0.287604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.755000,4612275.550000,4058,5555,124.962830,169.119827,168.582642,160.202484,148.772751,138.268616,135.962830,135.995880,136.433899,140.987625,142.169434,152.880188,170.640503,188.367767,200.185944,212.243820,215.037201,205.524811,179.731400,156.814056,146.334732,143.293411,136.772751,108.177704,88.946297,103.119850,113.359520,83.789276,38.475227,13.847951,12.433903,5.444638,8.009933,9.324808,8.861171,3.634717,1.081820,0.271075,0.275207,0.018182,0.023967,0.000000,0.175207,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.755000,4612275.550000,4088,5555,111.177704,175.690094,171.070267,165.607452,151.450424,140.334732,138.483490,138.053741,138.524811,142.359528,143.938034,155.185974,172.442169,189.805801,202.921509,215.020676,217.128113,206.863647,182.541336,159.582657,148.805801,144.442169,138.227295,110.202484,91.061996,105.615707,115.731415,85.351250,42.210758,17.483492,12.566134,7.274390,8.775226,9.423156,10.192576,3.829759,0.812399,0.358678,0.146281,0.054546,0.000000,0.000000,0.127273,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.755000,4612275.550000,4103,5555,122.754570,170.349609,167.928116,160.457047,149.804153,139.283493,138.581009,139.002502,138.903336,143.109940,144.300018,154.448776,171.357880,188.704987,202.415726,214.374405,217.423996,205.589279,181.713242,158.928116,146.597549,144.531433,137.390930,109.300018,89.308289,102.862000,113.845467,83.597542,40.076878,14.570266,12.490101,4.381827,8.162000,9.797537,9.436378,5.120669,0.906613,0.050413,0.004132,0.075207,0.095869,0.348761,0.073555,0.000000,2.280992,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.755000,4612275.550000,4133,5555,131.672745,177.722336,173.639694,168.482666,152.796707,139.457870,139.928940,138.722336,138.135559,142.978531,143.912415,154.292587,172.234726,190.722336,203.424820,215.523987,217.846298,208.623154,183.466141,159.052917,148.441345,143.854568,139.581833,109.796707,89.813232,104.069435,114.424805,84.928940,40.895885,17.134731,12.689276,5.680174,8.449603,12.120678,11.636380,7.106623,1.218184,0.000000,0.000000,0.036364,0.174381,0.000000,0.061158,0.318183,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601574.155000,4612275.550000,4160,5555,133.127289,174.226456,172.490906,163.061157,151.796692,139.019836,137.226471,138.507446,137.168594,142.763641,142.449585,153.168594,169.887604,188.879349,201.681000,214.028107,216.829758,205.606613,181.333893,157.854553,147.780167,142.325623,137.490906,108.284317,88.722336,103.300842,113.548782,83.168617,40.242996,14.929770,12.499193,5.978521,9.130594,6.890924,11.052908,4.042983,1.192564,0.112398,0.237191,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.555000,4612275.550000,4187,5555,132.455399,179.182663,176.761169,165.810760,149.488449,138.347946,138.455383,136.091751,135.579346,139.620667,141.000839,151.281830,168.695068,187.166122,200.463654,211.066956,213.885132,202.538025,178.042160,155.430588,145.356216,141.381012,136.736374,108.471916,87.422333,101.455383,111.447121,81.422333,37.240513,17.058695,12.430597,8.182657,7.436378,9.537204,8.286791,4.617362,0.708266,0.083471,0.000000,0.000000,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601584.755000,4612275.550000,4213,5555,119.586792,166.363647,170.661179,159.099182,146.008286,135.008286,134.190094,132.454559,132.504150,134.371918,135.330597,146.694229,164.000015,180.537201,192.347122,203.710754,206.570267,194.793411,170.330597,149.041336,139.876053,136.371918,131.727295,103.322327,86.644646,98.818199,107.578529,78.702507,37.570267,16.917374,11.975225,10.235551,8.441339,10.075222,10.709106,3.758685,1.077688,0.329753,0.195868,0.000000,0.000000,0.000000,0.139670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.555000,4612275.550000,4227,5555,115.890091,165.303299,167.923157,155.096710,142.857040,132.080170,133.443817,131.071915,130.452072,132.873566,134.088440,144.344635,162.848770,178.071899,191.146271,202.080154,203.295029,192.286774,168.278519,147.195877,137.096710,134.600830,128.518188,100.733070,84.485130,96.592575,106.162819,76.261993,35.551262,15.232248,11.683490,10.257865,7.779353,9.925634,9.433072,3.053726,1.017357,0.209918,0.001653,0.061157,0.102480,0.000000,0.302480,0.000000,0.000000,0.000000,0.000000,1.161984,0.000000,0.000000 -601591.955000,4612275.550000,4249,5555,123.933899,168.570251,170.388428,159.553726,145.876038,134.429764,134.082657,132.033066,131.165298,133.264465,134.644638,145.239670,162.495865,178.322311,191.049591,202.165283,202.545456,191.603302,168.049591,147.909088,137.876038,134.851242,129.727280,102.008278,84.727287,97.281006,105.958694,79.074394,36.082664,16.053738,11.793407,10.290097,9.598364,9.766130,11.575223,4.134719,0.825622,0.206612,0.130579,0.004133,0.000000,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.155000,4612275.550000,4265,5555,111.665314,174.632233,170.946274,160.202484,145.847107,134.309937,134.756226,133.004150,131.690109,134.582672,135.062012,146.177689,163.657028,178.194214,190.533051,202.640503,203.243805,192.004135,167.921494,148.764465,137.004150,134.814072,130.409119,101.285141,84.549614,97.318199,106.309937,77.152908,37.475227,16.685143,11.855392,9.688444,8.842164,10.506627,10.173571,4.609098,0.723968,0.335538,0.247108,0.198348,0.000000,0.000000,0.338017,0.109918,0.000000,0.000000,0.000000,3.311571,0.000000,0.000000 -601598.155000,4612275.550000,4280,5555,108.009102,176.414047,169.480164,159.488434,144.562820,133.513229,131.992569,130.397537,130.719849,132.248779,131.347946,143.885117,160.306610,175.033875,188.149582,199.290085,200.133057,188.918182,164.984299,146.314880,134.893402,132.422333,127.100006,99.711578,83.554558,94.306618,103.761162,75.612411,34.323162,14.435554,11.554564,9.810760,8.900014,8.570262,8.528113,3.154552,0.522316,0.140496,0.047934,0.000000,0.000000,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,1.295041,0.000000 -601601.755000,4612275.550000,4298,5555,116.192574,176.564484,169.423950,159.465302,145.671921,133.738037,133.374390,131.547943,131.167786,133.539673,133.043808,144.680176,160.878525,176.572739,189.085129,199.779343,200.407440,189.316528,166.002487,146.506622,137.035553,133.729752,128.390930,99.936378,84.209106,96.423973,103.903320,76.440514,35.126465,14.830596,11.671920,11.405799,9.650428,11.022328,10.616544,3.554553,1.333061,0.444629,0.000000,0.000000,0.098347,0.021488,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.155000,4612275.550000,4315,5555,102.936378,174.126450,168.399185,158.052078,143.870255,132.647125,132.729767,130.076874,130.655380,132.159515,132.903320,143.209091,159.787613,175.787613,188.142975,198.580994,199.308273,187.853729,165.027283,144.415710,134.514893,132.828934,127.572739,98.547951,81.300026,95.729767,103.498360,75.093414,35.787624,15.998366,11.597540,10.295057,7.694230,7.410757,8.853733,3.734720,1.065292,0.100000,0.037191,0.000000,0.069422,0.000000,0.000000,0.065289,1.275207,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.555000,4612275.550000,4342,5555,116.385147,182.558701,169.062836,161.955399,146.922348,134.484314,133.203323,131.847946,131.236374,134.492569,133.492569,143.971924,158.781845,174.980194,188.343826,199.087616,198.500839,186.443008,163.914078,144.583496,135.228119,133.112411,127.327286,99.294235,84.095886,95.897545,104.624809,76.021507,35.881012,14.471919,11.575227,10.813238,9.473568,9.142163,10.231421,5.595051,0.799177,0.038843,0.060331,0.000000,0.130579,0.000000,0.004959,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.355000,4612275.550000,4356,5555,113.408287,185.375229,175.953735,166.209930,150.152069,137.499191,136.424820,136.036377,135.771927,140.689270,139.813248,151.846283,168.317368,186.176880,200.672745,214.970261,215.639694,203.358704,180.829773,157.540497,146.424820,143.424820,141.036377,109.218201,90.614899,105.218201,115.383492,82.350433,39.003326,15.795885,12.821506,7.508276,8.737205,8.333898,8.095057,4.043809,1.019011,0.473555,0.128099,0.077686,0.000000,0.006612,0.164463,0.000000,0.000000,0.000000,1.116529,0.000000,0.000000,0.000000 -601616.555000,4612275.550000,4372,5555,118.571091,186.637207,179.471909,167.314896,151.538025,140.009109,141.207458,139.281830,138.347946,143.356216,144.653732,155.463654,171.819016,191.033890,205.463654,219.843811,221.653732,212.290100,186.215714,162.438858,151.083481,148.637207,144.463654,114.100014,95.166130,109.934723,117.769432,86.496704,43.513245,17.199192,13.133077,9.019023,10.385968,10.073569,11.386793,4.153727,0.738845,0.485952,0.396695,0.196696,0.248761,0.000000,0.373555,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.155000,4612275.550000,4395,5555,115.803329,178.183487,177.514053,164.638046,151.323990,138.233063,138.836395,137.100830,136.877701,142.770279,144.034729,154.811600,171.844635,190.695892,205.084320,218.398376,221.654572,209.985153,185.604965,161.679367,151.423172,147.340515,144.290939,113.695892,94.423157,108.737213,118.728951,85.200027,42.762001,17.102499,13.117374,6.937203,10.043819,11.758694,13.149603,5.458688,1.971906,0.314877,0.077686,0.171075,0.184298,0.030579,0.474381,0.151240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.155000,4612275.550000,4430,5555,118.078529,175.433899,175.276871,163.739685,148.326462,137.599182,137.425629,136.152908,136.342987,140.566132,142.293411,153.533081,170.946304,188.194229,203.202499,215.962830,219.318192,207.673569,182.615723,159.384308,148.227295,145.533081,141.590927,111.847122,93.309937,108.144646,117.500015,84.929771,41.665310,17.184317,12.871920,8.194228,10.366134,10.249600,10.585140,4.109099,0.954548,0.297521,0.088430,0.049587,0.073554,0.000000,0.284298,0.471901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601638.955000,4612275.550000,4484,5555,114.506622,174.779343,174.547943,161.944641,149.440506,138.713226,138.126450,135.738022,135.837204,138.977692,141.390915,152.564468,169.895050,187.481827,201.357864,214.663635,217.266953,207.060333,180.547943,157.035538,145.977692,143.126450,138.209091,110.399185,90.729767,105.531410,115.407455,84.539680,40.663658,15.919028,12.564482,7.471914,9.153735,9.924809,9.162826,3.767777,0.326447,0.627274,0.109918,0.200001,0.071901,0.014876,0.594216,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.155000,4612275.550000,4565,5555,115.301666,177.590912,173.326447,159.863647,146.971085,137.805801,135.392578,134.450424,135.632248,137.673569,139.194229,150.475220,169.351257,185.706635,199.756195,212.657028,214.574387,204.714874,179.475204,155.648773,146.623978,142.111588,136.954559,107.648773,90.194229,103.946297,113.293404,82.508278,40.690098,16.345474,12.450432,7.131418,8.341338,10.014063,9.365304,4.077693,0.957027,0.344629,0.054546,0.073554,0.000000,0.000000,0.335538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601679.555000,4612275.550000,4687,5555,111.061180,166.532242,173.094223,160.705795,147.441330,138.466125,136.408279,134.168610,134.507446,137.416534,140.887604,151.300827,169.028107,186.119019,200.540497,213.747116,216.300827,204.284302,178.623138,155.507446,143.995041,141.986786,137.945465,108.804970,89.738853,105.482666,113.821503,82.598358,40.028118,15.517374,12.540515,8.430593,10.167784,9.597535,9.667785,4.135544,0.600002,0.192562,0.145455,0.068596,0.004132,0.015703,0.033885,0.461158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.555000,4612275.550000,4872,5555,106.419861,171.089264,175.403305,161.841324,145.642975,136.031433,135.808273,133.981827,134.626450,137.114059,138.452896,151.287613,169.626450,187.163635,200.874390,214.204971,216.238022,204.700836,179.527283,156.857864,145.510757,142.469421,139.163635,107.089264,89.857864,105.494225,115.196701,81.676056,41.444653,15.388448,12.651258,9.275222,10.401670,11.271916,10.509933,4.269429,1.289259,0.249588,0.060331,0.014050,0.092563,0.000000,0.194216,0.782646,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.155000,4612275.550000,4970,5555,105.945473,174.606628,173.276047,163.284317,145.945480,137.466141,138.937210,134.631409,135.879349,137.342163,139.970261,152.276047,171.557037,188.912415,203.135559,215.714066,218.433075,205.962006,181.920685,159.490921,148.672745,146.284317,141.581833,109.160339,92.292572,106.854553,116.912407,85.523979,43.606636,17.514893,12.871093,9.212412,8.962827,12.018198,11.022331,5.908273,0.536366,0.378514,0.009091,0.001653,0.172728,0.000000,0.420663,0.749588,1.573554,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.355000,4612275.550000,5021,5555,100.563644,176.481018,179.084320,161.464493,148.133911,137.489273,137.390091,135.084305,135.191742,137.125626,139.406631,152.034729,170.811600,189.770279,204.216537,216.844635,218.191742,205.076050,180.563660,157.423172,147.191757,144.753738,138.109116,107.406624,89.737198,105.373566,116.828110,84.233070,41.092579,17.009108,12.555391,10.813237,8.791752,9.332245,11.351254,7.507449,0.363638,0.135537,0.263637,0.215703,0.191736,0.000000,0.135538,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.155000,4612275.550000,5060,5555,105.673569,172.431412,173.609940,158.923981,147.775223,134.720673,137.171906,134.039673,135.204971,137.692566,137.923981,150.890915,170.171921,188.370270,202.758698,216.576859,219.229752,207.287613,182.816559,159.973557,148.626465,145.907455,141.527283,110.130585,91.915726,106.733894,117.609924,86.295891,44.766960,17.723986,12.866135,10.723156,9.891751,9.192575,13.083487,6.036373,0.869424,0.883473,0.344629,0.000000,0.811571,0.259504,0.370250,0.371075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.955000,4612275.550000,5079,5555,112.885147,183.232239,178.149597,166.083466,148.414062,139.298355,140.306625,136.810760,136.761169,139.083481,139.744644,153.108276,171.885132,190.695053,203.207458,216.521500,218.521500,205.546295,180.000839,156.438858,146.455383,143.381012,138.736374,107.381012,89.133080,104.257050,114.620682,83.810768,42.331425,16.985142,12.612415,10.544642,8.625634,11.177700,12.129767,5.673563,1.173555,0.262811,0.423142,0.130579,0.000000,0.761158,0.142976,0.313224,0.000000,0.000000,0.000000,2.456198,0.000000,0.000000 -601761.555000,4612275.550000,5097,5555,133.006622,185.816528,176.849594,163.816528,147.328949,137.676056,137.510773,136.039688,134.766953,138.328949,139.271103,152.428116,171.246292,190.047943,202.923981,216.064468,219.444641,205.221497,181.039673,158.295868,146.733902,143.981842,139.709106,107.824806,90.213234,104.370262,117.684311,84.981834,42.395061,16.015720,12.700846,10.744645,9.233074,12.251257,10.999188,5.871910,0.392563,0.391737,0.017356,0.006612,0.273555,0.200827,0.233059,0.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601765.755000,4612275.550000,5118,5555,129.566132,178.476059,177.327301,166.376877,148.633072,136.385132,137.079346,135.600006,135.335556,138.922348,139.641357,152.203323,171.641342,190.781845,205.029785,216.641357,218.228134,204.781845,181.732254,157.823151,145.963669,144.988464,138.600006,108.161995,90.294228,104.352081,117.509102,85.087616,41.806629,15.843820,12.600020,12.961174,9.166959,11.521503,13.982661,5.995050,1.452895,0.757026,0.116529,0.133884,0.000000,0.000000,0.157852,0.071075,0.000000,0.000000,2.633058,2.469422,0.000000,0.000000 -601772.155000,4612275.550000,5150,5555,118.641342,186.368591,178.864456,165.128937,150.269440,138.938858,139.467789,137.120667,137.178528,141.145462,140.046295,153.707458,173.566940,193.071075,205.112396,219.798340,220.368591,206.971893,183.492554,159.930588,149.319016,146.666122,142.145462,110.723976,92.517365,106.153732,119.385139,87.079353,44.509113,18.651258,12.922332,13.060345,11.778529,10.038859,13.562826,5.519020,1.660334,0.900828,0.194215,0.047934,0.166943,0.000000,0.623142,0.352893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.555000,4612275.550000,5197,5555,118.436371,190.598343,186.119858,176.185974,155.095062,139.210754,138.656204,135.548767,134.044632,139.259506,138.325623,151.326447,169.847107,189.583466,202.897522,216.781815,218.426437,204.533875,182.120651,161.213242,150.395050,149.353729,143.618195,110.783478,93.204964,108.965294,120.494225,87.039673,43.940514,17.732250,13.056216,13.000840,11.666957,14.247124,16.477701,11.876044,4.801657,3.458681,3.102482,2.709093,3.491738,1.792563,1.021488,0.714878,4.820662,0.000000,0.000000,0.000000,0.000000,0.000000 -601794.955000,4612275.550000,5264,5555,131.304977,202.284302,183.895874,171.226456,151.581818,140.408264,140.408264,139.209915,140.515717,146.408264,144.226456,155.598343,174.515701,192.937195,207.953720,220.598343,220.366943,204.829758,182.829758,160.482651,149.127274,145.821487,141.854568,107.838036,91.383492,108.160347,118.606628,83.804977,42.598366,15.488448,12.895887,13.994230,9.718196,11.279354,12.200017,6.576869,1.697524,0.443802,0.418182,0.378513,0.291736,0.571901,0.436364,0.148761,1.428099,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.155000,4612275.550000,5300,5555,145.530594,196.074387,182.942154,170.842972,151.628098,138.115707,138.851242,136.512405,136.752060,145.123962,140.454544,153.256195,170.876038,190.057846,205.008270,218.413223,218.322311,201.363632,181.041321,158.520660,147.033051,144.826447,141.454544,107.371918,90.000015,109.264481,117.181831,84.008278,40.859528,17.281836,12.859524,15.099190,8.300842,11.004148,10.385139,6.881828,1.446283,0.790910,0.252893,0.011571,0.356199,0.176860,0.361985,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.355000,4612275.550000,5326,5555,104.670258,167.695053,173.761169,158.777695,144.529770,133.967789,133.810760,131.149597,131.538025,133.257034,134.984314,146.934723,165.744644,181.190918,194.893402,206.984314,208.827286,197.364471,175.719849,152.422333,141.587616,139.257034,132.736374,104.290092,86.050423,102.298363,114.901665,84.339684,40.240517,15.827291,12.066961,10.477700,11.322330,10.404975,11.995057,7.069433,0.780167,0.002480,0.069422,0.003306,0.082645,0.043802,0.025620,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601814.355000,4612275.550000,5361,5555,97.843002,167.239685,172.281006,159.867783,144.661179,136.347122,135.338852,132.223160,133.438034,134.082657,135.735550,147.305801,166.297531,183.057861,195.347122,206.950424,209.090927,198.644638,175.429764,154.917374,142.942169,139.809937,134.545471,104.826462,87.099197,102.694237,114.876053,85.140518,43.942169,16.161177,12.231424,10.101668,11.428944,10.854562,11.853735,5.726455,1.084299,0.387605,0.188430,0.138843,0.061984,0.000000,0.150414,0.180992,0.000000,0.000000,0.000000,1.561157,0.000000,0.000000 -601825.155000,4612275.550000,5415,5555,101.190094,169.322342,172.677719,158.834747,143.801666,133.983475,133.041336,130.057861,130.561996,132.264465,134.281006,146.264481,165.049622,181.388458,194.297546,207.801682,209.066147,197.487640,176.024826,153.322327,142.057861,138.115723,133.000015,103.008270,85.239677,102.280998,114.892570,84.644638,43.008286,16.466961,12.090929,11.252080,9.735556,9.584313,11.490098,5.138852,1.123143,0.315704,0.611571,0.000000,0.016529,0.036364,0.089257,0.263637,0.000000,0.000000,0.000000,2.123967,0.000000,0.000000 -601842.755000,4612275.550000,5503,5555,104.975220,165.090927,172.314072,158.223160,143.495880,132.966965,132.512405,131.140518,129.504150,132.314072,134.867783,146.157043,164.264481,181.041336,195.966965,206.628113,209.371918,198.446304,175.082657,154.330597,142.520676,139.842987,134.090927,103.041336,84.454559,101.165306,115.264481,86.355385,41.595062,17.706627,12.190102,9.683486,9.528943,10.595883,12.345471,5.648769,0.400002,0.051240,0.320662,0.000000,0.001653,0.000000,0.033884,0.017356,2.245455,0.000000,0.000000,0.000000,0.000000,0.000000 -601860.755000,4612275.550000,5593,5555,117.715714,163.385117,170.170242,156.525620,144.550415,133.120667,131.765305,128.550430,128.624802,131.575226,134.128937,145.856201,163.889252,180.757019,194.492554,206.963638,208.699173,198.128922,175.765289,153.583466,143.095871,138.029755,132.690918,101.905800,85.500839,100.980179,115.881004,86.178528,41.244644,14.205801,12.062828,6.697533,8.366959,8.767783,8.638030,4.820670,0.123967,0.254546,0.336364,0.000000,0.078513,0.040496,0.343802,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.755000,4612275.550000,5643,5555,111.540520,168.127274,171.763641,159.780167,144.962006,134.366959,134.185150,131.763657,130.962006,134.391754,136.127289,147.697540,166.077682,183.259506,196.309097,208.689255,210.714050,200.135544,177.639679,155.490906,143.168610,140.350433,137.036377,104.829773,85.846298,104.573570,119.259521,89.242996,45.788448,17.256216,12.457870,8.691750,9.704149,12.890101,12.266130,4.328107,1.255374,0.411572,0.004959,0.091736,0.072728,0.044628,0.247934,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.555000,4612275.550000,5667,5555,104.862000,171.696701,169.002487,158.961166,143.225632,133.671921,131.341339,128.961166,128.787613,132.151260,132.837204,145.101654,163.333069,180.622314,193.192566,206.671906,208.192566,198.828934,176.167770,153.994217,141.481827,139.167770,133.027283,102.688446,84.531418,100.556213,115.333069,88.779350,42.952915,14.485143,12.093408,8.396709,9.813242,10.480180,10.016544,4.675215,0.761986,0.404960,0.314877,0.014877,0.143802,0.000000,0.256199,0.342976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601880.355000,4612275.550000,5691,5555,114.862007,173.399185,169.242157,160.200836,144.498352,132.027283,132.184311,129.977707,129.200836,132.754547,133.944641,145.597534,164.680176,181.167770,195.729752,206.556198,208.506607,199.746292,177.019012,155.027283,143.663635,139.878525,134.572739,104.853729,86.052071,101.233902,117.977699,88.349594,43.630600,17.848780,12.233903,7.961171,9.363651,11.259521,13.996710,5.171909,0.755373,0.226447,0.061158,0.000000,0.029752,0.000000,0.057852,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.555000,4612275.550000,5727,5555,118.262833,171.469421,171.585129,158.552078,145.452911,132.667786,130.601669,129.585144,130.800018,132.725647,134.717377,147.114075,165.163635,182.651245,197.006622,207.833069,209.998352,199.221497,177.403305,155.552094,143.485977,141.089279,134.527298,105.312408,86.766968,102.444641,119.452911,86.940514,43.717373,16.517374,12.229771,6.830590,8.362000,9.048777,9.559519,4.019840,0.707439,1.186778,0.223141,0.215703,0.038017,0.000000,0.255373,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.155000,4612275.550000,5785,5555,123.064484,178.733887,172.510757,161.758698,146.527298,134.204971,132.899185,131.824814,129.287613,134.279358,133.923981,146.196716,164.362000,183.089264,196.072739,208.312408,210.155380,201.601654,177.543808,155.990112,144.428116,140.907455,135.072739,104.510757,86.940521,103.147125,117.808281,87.899193,42.998367,16.682663,12.279359,7.347119,9.634728,10.057041,10.053733,4.557859,0.957853,0.220662,0.150414,0.107439,0.052893,0.000000,0.321489,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601912.955000,4612275.550000,5854,5555,115.420677,171.635544,169.751236,156.924789,140.329773,129.619034,129.800842,127.652084,126.511589,128.660355,129.329773,141.635559,160.362808,176.106613,189.825638,201.941345,203.709930,191.900024,170.296692,148.371094,137.701675,135.304977,127.900017,99.007454,81.156219,95.800842,111.139687,82.032249,38.354565,14.251258,11.627292,9.310757,8.902494,8.665303,12.176047,4.733894,1.482647,0.279339,0.197521,0.137191,0.008265,0.000000,0.223141,0.147108,0.000000,0.000000,0.000000,0.000000,1.310744,0.000000 -601918.555000,4612275.550000,5882,5555,120.690933,171.988464,167.566971,155.715729,140.781845,128.459518,129.120682,126.707458,126.137215,128.773575,128.938858,141.228134,159.905807,177.459534,190.633087,202.120697,204.145477,191.790115,168.674408,148.806641,137.823166,134.715729,127.418205,98.806633,82.790100,96.120682,108.814896,81.484322,39.186798,15.868612,11.583490,11.797537,10.162000,9.617372,9.813236,4.486784,0.745456,0.057852,0.057851,0.140496,0.061984,0.000000,0.019835,0.191736,0.000000,0.000000,0.000000,3.305786,0.000000,0.000000 -601923.155000,4612275.550000,5905,5555,101.959518,175.099991,168.042145,157.529755,140.711563,129.612411,128.951248,126.223976,126.587616,128.248779,129.430588,141.405777,160.752884,176.323135,190.347931,202.612396,202.562805,192.380981,168.976028,149.025620,137.893402,135.157867,127.736374,99.339684,81.108276,97.546295,110.058693,81.281830,38.364483,14.865307,11.612415,10.178526,9.471090,9.209932,10.262823,4.999182,0.728101,0.209918,0.380992,0.252893,0.000000,0.000000,0.505786,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.555000,4612275.550000,5932,5555,106.487625,176.041321,168.082642,156.231400,141.181824,129.578522,129.223160,126.578537,126.942169,129.735565,128.991745,142.595047,160.793396,178.851242,191.388428,203.429749,204.611572,192.099167,169.826447,149.719009,139.115707,135.958694,129.181839,99.281013,82.123993,96.710770,112.074402,81.074402,38.504158,14.953737,11.743821,9.968610,9.312413,8.003322,10.977702,5.070257,0.812398,0.233885,0.185124,0.277687,0.000827,0.000000,0.154546,0.246282,0.000000,1.593389,0.000000,0.000000,0.000000,0.000000 -601931.555000,4612275.550000,5947,5555,116.629768,177.712402,172.026459,157.439682,143.059509,130.282654,130.795044,128.266129,127.679352,130.646286,130.505798,143.315720,161.166946,178.026459,191.571915,204.166946,205.266129,193.381821,170.596710,149.943817,139.026459,136.935547,129.836380,99.786789,82.761993,97.390091,111.051254,81.613235,40.307461,15.366134,11.803325,12.552079,10.093405,10.368611,11.422330,5.103315,1.154548,0.104133,0.143802,0.017356,0.002480,0.000000,0.070248,0.402480,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.755000,4612275.550000,5968,5555,120.488449,179.719833,170.521484,158.347931,140.769440,129.901672,128.868622,127.620682,127.397545,130.571091,129.835556,142.248779,161.033875,178.686768,191.562805,204.521484,204.579330,192.752884,169.339661,148.471909,137.926453,135.033905,129.009109,98.397545,81.215721,97.546303,109.893410,81.083488,38.736385,13.957870,11.728118,9.966129,8.205800,10.408280,9.847121,4.352901,1.395044,0.258678,0.000000,0.000000,0.000000,0.000000,0.041322,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601941.355000,4612275.550000,5996,5555,129.462830,174.809937,171.487625,157.958694,141.727295,129.396713,129.909103,127.413239,127.008278,131.942169,129.388443,142.314072,160.991745,178.487625,190.760330,204.933884,204.785126,191.793396,170.355392,148.537201,138.074402,135.471085,128.727295,99.281006,81.429771,98.190102,109.859520,79.504150,38.892582,15.239687,11.702498,11.163650,8.542165,9.415717,10.933900,5.751249,0.645456,0.197521,0.107438,0.130579,0.000000,0.371901,0.070248,0.470249,0.000000,0.000000,1.881818,0.000000,0.000000,0.000000 -601948.555000,4612275.550000,6032,5555,119.586792,184.289261,170.743805,158.115707,143.644623,128.586792,129.785141,126.909103,126.545471,132.520676,129.603317,142.066116,159.975204,178.471069,191.834717,205.950409,206.809921,191.347107,170.115707,149.553726,137.396698,137.016525,129.454559,98.966957,82.495880,98.859520,110.289276,79.495880,37.917381,14.525638,11.768615,11.183487,9.122331,9.682660,9.873568,4.309099,0.459505,0.462810,0.107438,0.000000,0.014050,0.000000,0.133058,0.288430,0.000000,3.219835,2.600000,0.000000,0.000000,0.000000 -601955.955000,4612275.550000,6069,5555,115.487625,185.198364,173.752075,161.909103,143.950424,132.760361,131.206635,129.239700,129.834732,135.016556,131.512421,143.595062,159.752075,179.421509,193.206635,206.471085,207.140518,191.768616,170.314072,149.272751,139.090927,136.495880,130.363663,100.231430,84.041344,100.157051,109.545479,77.925644,36.586796,15.349605,11.851259,12.521502,8.432246,9.462824,10.508280,3.856205,0.490084,0.162810,0.000000,0.070249,0.000000,0.000000,0.074381,0.000000,0.000000,1.559504,0.000000,0.000000,0.000000,0.000000 -601959.755000,4612275.550000,6088,5555,120.823990,176.633896,173.129761,160.542984,146.138031,133.609116,132.799194,128.782669,130.947952,136.691742,131.881836,143.030594,158.898361,177.055374,191.047119,204.096710,203.956207,189.857040,168.195877,148.245468,139.022324,135.865295,128.245468,100.138039,83.766136,100.022339,108.757874,76.947952,37.038864,15.615721,11.658696,9.918194,9.258692,10.382660,10.432245,4.657859,0.437192,1.034714,0.259504,0.329753,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601965.955000,4612275.550000,6119,5555,112.628113,175.388443,170.421509,161.768616,142.843002,132.561996,130.611588,127.363655,128.322327,134.223160,129.826462,141.851273,157.471085,174.578522,188.165298,202.785141,202.380188,187.619858,166.388443,148.016541,137.281021,133.628113,128.363647,98.661171,83.735550,99.223160,107.537201,76.983490,38.066132,14.718198,11.669439,12.312412,10.447123,9.813238,9.404146,6.208275,1.295044,0.380166,0.067769,0.101653,0.000000,0.201654,0.024794,0.222314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601969.555000,4612275.550000,6137,5555,104.157875,159.009109,159.000839,150.422333,135.959518,126.190926,123.323151,121.199188,121.430588,123.843811,126.124809,137.347946,154.108276,171.066956,184.521500,197.133072,198.025635,188.893402,165.455383,143.777695,133.356216,130.372742,123.827286,96.331421,78.645477,94.579353,107.711586,79.438866,36.752911,14.838034,11.257043,7.133896,10.012411,9.058691,11.290925,5.619843,1.209920,0.341324,0.375207,0.223967,0.457026,0.099174,0.329753,0.908265,0.000000,0.000000,0.000000,0.000000,1.913223,0.000000 -601975.555000,4612275.550000,6167,5555,109.867783,153.033096,154.438049,147.991760,133.776871,123.479347,121.694221,120.000008,119.966949,122.057861,124.239677,136.000015,153.016556,169.487625,183.611588,194.743820,199.206635,187.694229,164.082657,143.983505,134.223145,129.396698,122.363647,95.082649,77.900833,93.528931,105.760338,78.694229,37.438034,14.672746,11.123986,6.165299,10.928941,9.428113,9.935552,4.164471,0.857854,0.459505,0.299174,0.212397,0.104959,0.002479,0.434712,0.280992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601984.155000,4612275.550000,6210,5555,107.442162,147.243820,151.781006,142.574402,129.822327,121.491753,119.954559,116.409103,117.326462,119.623985,121.268608,132.004150,150.830597,167.177704,181.301666,193.376053,194.078522,184.665298,161.896713,140.169434,129.557861,126.260345,120.136383,92.103325,74.590927,93.830597,105.243820,77.475220,36.136383,14.410761,10.921505,7.994227,8.339683,9.843815,9.723980,2.686784,0.902483,0.457027,0.457026,0.216529,0.143802,0.000000,0.177687,0.010744,0.000000,0.000000,0.000000,1.545455,0.000000,0.000000 -601991.755000,4612275.550000,6248,5555,105.499191,144.457870,146.738861,137.276047,123.400017,114.631424,111.267792,108.474396,108.242996,109.482666,110.185143,122.705803,140.581833,157.441330,171.656219,183.160339,184.515701,173.838013,151.862808,130.664490,121.044647,117.209938,111.036385,82.135559,65.970268,83.962006,101.755394,75.590103,34.689274,13.154562,10.094234,5.997531,10.128939,8.272738,11.182658,5.300009,1.418185,0.361985,0.148761,0.000000,0.819836,0.575207,0.001653,0.150414,0.000000,4.071901,3.512397,2.852893,0.000000,8.942150 -601999.955000,4612275.550000,6289,5555,100.530594,139.646286,140.447937,129.464478,115.538864,105.869438,102.390099,98.836380,97.960350,99.282661,100.018196,111.390099,127.762001,143.150406,155.447922,165.919006,166.183472,155.629745,136.555374,117.365311,107.266136,104.034729,97.472748,71.778534,55.018208,75.067787,95.976875,73.811584,35.191757,12.136383,8.861176,9.876874,8.614888,10.638858,11.431417,7.915713,2.317360,0.391737,0.293390,0.495869,0.209091,0.324794,0.036365,0.233058,4.282645,0.000000,1.660331,0.000000,0.000000,0.000000 -601303.155000,4612265.550000,2805,5605,185.516541,195.392578,187.623978,177.243820,170.376038,166.285126,172.681839,177.962830,183.590927,193.954559,204.500015,221.913239,245.896713,265.805786,280.285156,289.871948,287.500031,266.202484,216.128113,181.376053,169.450424,161.599167,149.500000,123.285133,104.004143,105.706619,97.219017,64.648781,31.442171,15.957043,13.590928,12.158694,11.028941,10.214891,9.890098,5.947118,1.725627,0.933061,0.314878,0.885126,0.984299,0.336364,1.228927,0.006612,2.378513,1.302480,0.000000,0.000000,2.423141,2.070248 -601306.155000,4612265.550000,2820,5605,184.222321,188.709915,188.214050,181.048767,170.404129,168.404129,172.404129,178.776031,184.552902,195.792572,207.833893,225.974380,251.668594,272.486816,287.627319,298.792572,297.825653,273.933105,221.850418,186.387604,172.362808,164.048767,153.900009,124.304970,106.197533,108.561165,98.462006,67.123161,32.354565,14.985143,13.990928,9.678526,10.804150,10.521503,10.239684,5.024803,2.223148,1.137194,0.822317,0.433059,0.967771,0.857852,0.044629,0.014050,1.247934,6.966943,1.102479,0.000000,0.000000,0.000000 -601310.755000,4612265.550000,2843,5605,194.376892,194.947113,189.517380,182.682678,172.137222,169.385132,175.393402,179.426468,185.368622,195.980194,205.831436,225.360367,250.145477,271.079346,287.542206,298.409973,297.459564,275.847992,226.277695,191.203339,177.682678,169.302505,158.418198,128.112411,111.310768,113.418205,104.996712,69.054565,34.963657,18.447126,14.401671,12.233901,11.403324,12.787621,12.404975,6.804144,2.240501,0.812400,0.159505,0.695869,0.161984,0.176033,0.183472,0.150415,0.000000,0.000000,0.000000,4.168595,2.318182,2.121488 -601317.355000,4612265.550000,2876,5605,177.473572,194.738022,194.845474,187.242172,177.746307,175.754562,181.300018,185.845474,191.754562,201.680191,211.093399,228.638855,251.969421,272.597534,287.853729,298.407471,299.349640,283.019012,236.531418,203.357880,190.176056,183.308289,175.300018,143.630600,123.589279,127.275230,121.655396,82.333084,39.019028,18.398365,15.936383,11.881837,14.046299,13.764481,12.662828,7.633070,2.347114,1.395047,0.398349,0.400001,0.195868,0.000000,0.295042,0.449588,2.710744,0.000000,0.000000,0.000000,1.260331,0.000000 -601327.155000,4612265.550000,2925,5605,168.187622,197.749603,196.799179,189.187607,180.270279,180.179367,188.146286,193.146286,199.220673,208.361176,216.419037,233.881851,253.989288,274.716522,288.708313,297.658722,298.129822,282.460388,240.633911,208.716553,196.724808,189.931412,181.154572,149.526474,131.212402,136.104965,128.567780,89.377701,42.187622,19.716549,16.468615,11.749604,12.040511,12.753737,13.353735,7.255384,1.947114,1.215708,0.895870,0.567770,0.286777,0.128099,0.399175,0.375207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601341.555000,4612265.550000,2997,5605,158.322327,189.694244,190.057861,181.363647,172.942154,169.338837,174.429764,178.528946,183.578522,191.099182,201.314072,217.057846,237.380173,258.512421,273.586823,286.123993,286.859528,279.404999,244.677689,215.462814,203.834732,200.272751,194.636383,162.438019,139.520691,147.619858,151.107452,108.041328,50.528946,20.181837,17.694235,12.622333,13.542165,15.125638,17.187624,10.140511,2.178519,1.591739,0.525621,0.046281,0.422315,0.000827,0.060331,0.152893,0.000000,0.000000,0.000000,1.203306,0.000000,0.000000 -601362.755000,4612265.550000,3103,5605,145.236374,182.236374,177.674393,169.963654,160.790100,153.492569,156.079346,158.162003,160.591751,167.715714,173.360336,186.459518,205.385132,223.773560,238.823151,250.864471,253.963654,250.087616,226.418198,205.128937,196.178528,193.062820,189.509109,163.145462,138.980179,152.666122,164.715714,127.732246,61.492584,19.720680,17.228119,11.147951,15.114067,18.224812,23.714893,11.966958,1.542153,0.414051,0.364464,0.054546,0.057851,0.000000,0.000000,0.115703,0.000000,2.394215,0.000000,0.966942,0.000000,0.000000 -601390.755000,4612265.550000,3243,5605,157.485962,179.824799,174.138855,167.957031,156.320663,147.312408,149.262817,148.981827,151.304138,158.262817,161.535538,175.866119,194.279343,213.395050,229.014877,237.262817,238.519012,231.254547,205.998352,180.634720,167.915710,165.428101,161.981827,133.469421,112.419846,123.642990,140.361984,108.857864,50.362003,18.241341,14.725638,8.675220,11.715718,12.147123,14.291751,5.290091,1.289260,0.142976,0.105786,0.029752,0.000000,0.000000,0.000000,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601400.755000,4612265.550000,3293,5605,160.488449,188.942993,176.860336,169.389267,155.471909,145.504974,147.265305,148.281830,150.670258,157.538025,159.678528,173.240509,193.719849,212.463654,227.455383,237.339676,239.414062,232.397537,206.909927,183.257034,171.066956,168.843811,164.190918,133.091751,112.157867,125.108276,138.265305,105.587616,51.232250,19.864481,14.926465,7.309103,10.933901,12.905803,14.146298,6.528111,1.404137,0.574382,0.114050,0.032232,0.000000,0.000000,0.000000,0.013223,1.301653,0.000000,0.000000,0.000000,0.000000,0.000000 -601404.355000,4612265.550000,3311,5605,155.466949,189.929749,173.723145,167.210739,155.392563,145.037186,147.351242,147.599167,149.276855,156.971069,158.161163,171.871902,192.309921,211.128098,224.615707,235.880173,237.442154,230.566116,205.921494,182.880173,170.309921,167.367767,162.227280,133.343002,110.500015,124.814064,137.491730,106.268608,49.814075,17.442995,14.747953,7.015717,9.887620,12.085138,14.990928,5.133894,0.677689,0.332232,0.105786,0.090083,0.000000,0.000000,0.026446,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601407.155000,4612265.550000,3325,5605,151.282639,193.613220,179.828094,173.166931,159.497513,149.993378,150.456192,150.051239,152.828094,159.009918,161.761978,174.803299,194.671066,213.497513,226.803299,238.125610,239.447922,232.282639,208.894211,185.241318,173.414871,170.571899,165.199997,136.629761,112.844643,126.894234,139.299164,109.952087,51.257877,19.636381,15.018201,7.000841,13.077704,12.940512,15.458695,7.332244,2.393393,0.606613,0.742150,0.198348,0.064463,0.000000,0.000000,0.038017,0.000000,1.303306,0.000000,0.000000,0.000000,0.000000 -601410.955000,4612265.550000,3344,5605,129.382660,177.176056,174.390930,163.630600,149.870270,141.985977,143.200851,142.390930,144.250443,148.655396,152.465317,165.779358,186.167786,202.771103,215.738022,225.680176,228.556198,219.729752,196.663666,174.614075,164.266968,161.440521,156.936386,128.308289,107.374405,120.399193,135.514877,101.490105,47.167786,19.027290,14.266962,12.660347,11.444646,14.396711,13.875223,5.613232,1.316533,0.380167,0.243803,0.041323,0.015703,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601414.555000,4612265.550000,3362,5605,130.421509,178.537201,178.504135,166.115723,151.909103,143.768616,144.446304,143.694229,144.900848,149.223160,152.842987,165.917374,186.760330,203.049591,215.603302,226.247940,227.809921,220.991730,197.388428,175.338837,164.942169,163.281006,157.090927,129.190094,109.471092,122.066132,135.611588,102.198364,48.008286,19.190104,14.281010,12.070264,11.565307,15.784316,16.247126,7.940508,0.792568,0.489258,0.082645,0.166116,0.028099,0.000000,0.170248,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601419.755000,4612265.550000,3388,5605,130.027298,178.109909,178.985947,165.713226,152.184326,144.324814,145.225647,144.176056,145.911591,148.862000,153.109940,166.151245,186.440491,202.324799,216.680176,226.432236,227.647110,221.341324,198.018997,176.043793,165.580994,164.928101,160.209091,131.514893,110.952911,123.903320,139.647125,106.308289,50.704979,20.142994,14.564482,13.950430,14.275223,14.719853,16.216545,10.176872,2.233891,0.416531,1.147936,0.195868,0.331406,0.000000,0.079339,0.181819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.755000,4612265.550000,3418,5605,141.716537,183.757858,177.146286,166.468597,153.063644,144.088440,144.774384,143.394226,147.047119,150.278519,153.419022,167.096710,186.609100,204.931412,218.162827,228.691727,229.319824,222.187607,198.526459,177.906616,167.195877,166.113235,160.972733,131.774384,111.030586,123.005798,140.295044,106.757858,50.187626,19.323986,14.633904,11.402497,13.903323,13.205803,16.999193,8.567780,0.368599,0.094216,0.417357,0.000000,0.000000,0.000000,0.013223,0.133058,0.000000,0.000000,2.125620,3.404132,0.000000,0.000000 -601430.155000,4612265.550000,3440,5605,130.960342,176.076050,176.472733,164.877701,153.646286,143.472733,144.563644,143.671082,145.836380,150.092575,152.365295,167.505798,186.472717,203.952057,217.679352,229.563644,232.158691,222.919022,200.588425,180.282654,169.026459,166.315720,163.018188,132.985138,110.299194,124.571922,140.778519,107.406631,50.753742,19.424810,14.819855,13.551257,13.501671,16.287621,17.463655,7.966953,1.239673,0.071076,0.117356,0.000000,0.000000,0.000000,0.013223,0.095869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601434.555000,4612265.550000,3462,5605,133.065292,182.428925,173.371078,164.924789,151.610748,141.139679,144.172729,144.470245,145.387604,149.643799,152.147934,166.610748,185.825623,204.709915,218.371078,229.718185,232.032242,222.660339,200.412399,179.709915,170.057022,166.660339,163.536362,131.734711,110.032249,124.329758,139.924789,106.776054,50.346302,17.614895,14.866961,13.514893,10.082661,14.826465,15.490927,7.248772,0.598350,0.152894,0.076861,0.096694,0.012397,0.000000,0.022314,0.043802,1.369422,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.355000,4612265.550000,3476,5605,135.545456,182.512405,174.958694,165.413239,152.429764,141.561981,144.123962,144.016525,145.876038,150.371918,152.090927,166.570267,185.694229,203.537201,218.322327,230.082657,231.991745,223.057861,200.826462,180.314072,168.702499,166.289276,163.454559,131.735550,109.611588,124.487617,142.561981,109.859520,51.735558,19.340513,14.859524,12.930594,12.638861,15.860348,18.347950,8.103317,0.840499,1.156200,0.324795,0.079339,0.014876,0.000000,0.013223,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.155000,4612265.550000,3490,5605,116.897537,182.930573,171.137192,164.062805,150.401672,141.162003,142.633072,142.608276,143.947113,149.740494,151.418182,165.319000,184.715698,202.880981,217.442978,229.013214,230.525620,220.790085,198.723969,178.723969,167.236359,165.748764,160.872726,129.872742,107.757027,122.484314,142.120667,108.178520,50.467789,17.914070,14.624812,12.209107,11.813239,14.533076,16.135553,7.632243,0.723969,0.071075,0.346282,0.038017,0.021488,0.000000,0.025620,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601443.155000,4612265.550000,3505,5605,157.642136,189.204132,174.857040,163.476852,152.022308,140.691742,142.485138,142.476868,144.055374,150.146271,150.914871,165.427261,183.848770,202.617355,217.228912,228.890076,229.319824,220.476852,197.559494,177.675217,166.253708,164.832230,160.063629,129.336380,108.146294,122.377693,139.997528,108.790916,51.319855,17.750431,14.551258,12.110761,12.085967,13.785969,16.241341,7.598357,0.857027,0.085124,0.019009,0.000000,0.025620,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,1.019835,0.000000,0.000000 -601447.355000,4612265.550000,3526,5605,134.673569,194.714874,174.772751,166.177704,151.764481,140.458694,142.136383,143.103317,144.351257,150.169434,150.012405,162.995880,182.946304,201.756195,215.781006,228.359528,229.417374,218.433899,196.409088,175.764481,165.276871,162.946304,160.590927,128.805801,106.111588,122.392578,140.731415,106.392578,49.995888,17.636381,14.599193,13.223985,11.024809,13.734727,15.709936,9.745467,0.536365,0.140497,0.028100,0.000000,0.000000,0.000000,0.013223,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.755000,4612265.550000,3548,5605,142.428940,190.131409,174.916550,169.660339,153.668594,141.023972,143.040497,142.610748,144.321487,151.875214,150.552902,164.561157,183.189255,202.709915,218.709915,229.850418,232.395874,219.032242,199.222321,179.751236,168.891754,166.561172,161.172729,129.610764,109.437210,123.941330,140.544632,105.842171,49.478531,18.977705,14.652084,15.743817,12.104975,13.866960,15.619026,7.699185,0.686778,0.103306,0.111571,0.031405,0.019835,0.119008,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.755000,4612265.550000,3578,5605,139.457031,198.266953,177.457031,170.043808,152.341324,141.952896,143.242157,142.614059,143.556198,150.564468,150.300003,163.019012,181.457031,201.167770,216.539673,230.490082,232.242157,220.357864,199.704971,181.060333,168.729752,167.828934,163.300003,130.638855,108.936378,127.366127,140.085129,102.531418,48.341347,17.695061,14.845473,13.890100,11.128115,13.905802,14.966135,8.954557,0.605787,0.184299,0.163637,0.000000,0.000000,0.000000,0.000000,0.036364,0.000000,2.826447,0.000000,0.000000,0.000000,0.000000 -601463.355000,4612265.550000,3606,5605,151.843826,201.504974,178.323151,168.480179,153.108276,141.810760,142.215714,142.934723,143.959518,152.207458,148.637207,161.190918,179.934723,199.273560,214.207458,229.835556,228.785965,215.909927,196.124802,174.909927,163.422333,161.447113,158.463654,124.290085,104.852074,121.215706,134.017365,96.223969,47.314896,17.392580,14.405804,15.870266,10.242166,11.975223,13.134727,8.832243,0.647935,0.314877,0.084298,0.025620,0.000000,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.755000,4612265.550000,3633,5605,117.803322,164.133911,171.803329,159.109116,147.266144,137.621490,136.555405,135.522339,138.183502,140.538864,143.795074,156.183502,174.398376,192.629776,206.439697,219.166962,220.993408,211.638046,188.861176,167.976883,157.191757,153.456223,148.745483,119.761993,99.894226,113.183479,130.307449,94.340508,42.935558,16.624813,13.522333,9.168609,9.814893,11.971918,12.800016,6.038027,0.847936,0.234712,0.147108,0.000000,0.000000,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601472.355000,4612265.550000,3651,5605,117.624817,166.748779,169.484314,159.517365,145.889267,136.195053,137.261169,136.426453,136.327286,140.269440,143.732239,156.319016,174.682663,189.963654,204.434723,215.798355,217.732239,207.525635,187.401672,165.641342,154.790100,150.087616,146.327286,117.038040,97.814896,112.542168,126.219856,93.219856,44.938866,14.618198,13.302498,10.365303,10.652082,12.570265,12.519851,9.007450,0.457026,0.370250,0.611571,0.233059,0.018182,0.000000,0.019835,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.955000,4612265.550000,3669,5605,116.909927,165.009094,171.909912,157.984314,146.009109,139.323151,136.744644,135.761169,138.025635,139.843811,143.686783,155.637207,174.447098,192.141312,204.050415,216.761154,218.678513,208.331406,185.736359,165.471909,155.133072,152.331421,147.009109,117.149597,97.538033,112.314888,126.835541,94.240509,44.017376,18.071918,13.364482,9.127285,11.406629,10.938860,11.767784,5.393399,0.397522,0.016530,0.076033,0.110744,0.032232,0.000000,0.000000,0.133885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.155000,4612265.550000,3685,5605,117.899185,164.948761,168.114059,160.188431,145.295868,138.618195,137.130585,136.370270,137.304138,140.386780,144.138855,155.295868,174.576859,190.733887,204.849594,216.295868,218.700836,209.031418,186.519012,165.733887,154.692566,152.899185,145.436371,117.461174,96.601669,112.882660,127.196709,92.576874,44.279362,16.997538,13.221507,8.141336,9.523159,9.968612,12.526463,5.710754,0.442976,0.129753,0.000827,0.081818,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.155000,4612265.550000,3700,5605,111.014069,164.666962,166.683502,157.857056,145.460342,138.245468,138.295044,136.394226,138.022339,141.038864,144.014069,156.443832,173.956223,190.584320,204.691757,216.865311,219.080185,209.369446,186.691757,165.419037,154.857040,151.741333,145.518204,117.328117,96.592583,112.964470,125.088440,91.600845,44.675224,15.960348,13.228944,8.547121,10.271091,10.700016,10.401667,7.190919,1.042977,0.057851,0.147934,0.013223,0.015703,0.000000,0.001653,0.093389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.155000,4612265.550000,3720,5605,121.714882,165.822327,171.590927,161.045471,146.756210,140.111588,138.979355,137.946304,138.582657,141.681839,144.780991,156.681839,175.334732,192.004150,206.128113,217.582657,220.185974,210.640518,187.301666,166.450424,155.673569,152.764481,147.863647,118.210754,96.781006,111.946289,125.235542,92.177704,43.979359,18.525640,13.442167,10.620677,9.696712,11.382662,13.176049,4.527281,0.361158,0.128926,0.236365,0.000000,0.009918,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.555000,4612265.550000,3737,5605,101.565300,163.494217,167.361984,158.361984,145.006622,135.485962,136.089264,134.626450,136.709091,140.031418,143.271088,154.543808,173.031418,190.105789,203.072739,215.023148,218.089264,208.353729,186.089264,164.312408,152.560333,150.766953,145.345459,116.138847,95.808281,111.436371,122.576866,88.213234,42.362003,14.923159,13.213242,7.061997,9.345470,9.853735,11.183486,5.157860,0.752068,0.007438,0.136364,0.048760,0.022315,0.000000,0.068595,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.755000,4612265.550000,3753,5605,106.201668,164.557037,167.193390,159.375229,146.457870,138.871078,137.871078,137.234711,137.904129,140.920670,143.590088,155.366959,173.474380,190.176865,203.342148,216.160339,218.904129,208.176865,186.193390,164.342148,154.606628,150.143814,145.218185,117.672729,96.689270,111.565292,123.094215,90.400009,43.234730,16.481010,13.201671,9.652905,10.119851,10.965305,10.985139,5.830591,0.630580,0.008265,0.021488,0.000000,0.109918,0.000000,0.023141,0.225621,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.355000,4612265.550000,3781,5605,118.914886,163.741333,172.534714,162.518188,150.022324,142.700012,139.509933,139.832245,140.071915,144.187607,145.559509,157.881821,175.592575,191.997528,206.055405,218.038864,219.336395,210.964493,187.419022,166.336380,156.295044,151.501663,147.881821,117.121498,97.559517,111.534721,124.063644,91.939682,44.295063,18.353737,13.443819,8.359517,12.209934,11.833900,12.965305,8.174391,0.911572,0.070249,0.012397,0.000000,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601501.155000,4612265.550000,3795,5605,106.400841,160.541321,166.921494,160.268600,148.392563,138.880173,137.533051,137.979340,138.797516,140.500000,144.458679,155.838837,174.301651,191.210739,204.847107,216.904953,218.995865,209.442154,186.061981,164.822311,154.747940,151.367767,146.136368,115.756226,97.516556,112.053741,123.111588,89.500015,42.714897,18.420679,13.285143,8.265304,10.499190,12.486794,11.164477,6.898357,1.108267,0.259505,0.319009,0.094215,0.152894,0.000000,0.083471,0.271075,0.000000,0.000000,0.000000,0.000000,1.145455,0.000000 -601505.355000,4612265.550000,3816,5605,121.066956,161.538025,169.942993,157.414062,146.662003,139.009109,138.091751,135.909943,138.215714,141.761169,144.265305,155.488449,172.934723,189.992569,204.504974,215.430588,217.876877,208.984314,185.000839,164.108276,155.207458,149.347946,145.190918,116.133072,95.488441,110.364479,122.686790,89.000839,41.909939,16.241341,13.199192,7.017368,10.577703,11.761174,11.892578,4.176041,1.015705,0.102480,0.211571,0.000000,0.000000,0.000000,0.074381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.155000,4612265.550000,3855,5605,133.474396,165.598343,170.664459,161.110748,150.160339,140.242981,138.077682,137.838013,138.019836,141.689255,143.573563,156.358688,174.102478,191.482651,204.441330,216.433060,219.333893,208.945465,186.003311,162.821487,153.780167,149.424789,144.945465,114.672737,95.523979,110.887611,120.879349,89.201668,40.953743,17.940516,13.176879,6.320673,8.519025,11.226462,11.385139,5.766125,0.703308,0.398348,0.167769,0.034711,0.035538,0.000000,0.028926,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.955000,4612265.550000,3869,5605,123.214058,165.809097,169.139679,158.610748,149.205795,139.114899,137.395889,137.635559,138.709930,141.247131,143.304977,156.040497,172.800827,189.222321,203.123138,215.214050,217.114883,208.387604,184.519836,162.412399,151.949585,148.214050,142.627289,113.767776,93.610764,108.685135,119.577705,88.023987,41.321503,16.916548,12.966134,7.171913,9.820677,10.719024,11.019850,3.971910,0.901655,0.000000,0.012397,0.631406,0.086777,0.000000,0.099175,0.000000,1.311570,0.000000,0.000000,0.000000,0.000000,0.000000 -601520.555000,4612265.550000,3892,5605,116.117363,164.993408,170.563660,161.233078,149.257874,142.051270,139.861176,139.009949,139.580185,143.042999,145.472748,156.373581,174.216553,191.216553,204.910751,216.456207,219.695877,210.414886,186.381851,163.249619,153.001678,149.456223,144.200027,114.166954,94.861168,110.142159,120.795052,89.067780,43.381836,17.855391,13.109111,9.671088,10.653737,12.458694,12.647949,6.218192,1.146283,0.393389,0.259505,0.019835,0.117356,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.355000,4612265.550000,3911,5605,125.838860,168.855392,167.557861,159.169434,148.136383,138.847122,137.797531,137.475220,138.185974,142.747955,143.615723,154.037201,171.764481,187.847122,201.309937,212.995880,214.921509,206.665298,182.871918,160.177704,149.822327,145.739685,141.318192,111.764481,92.450424,108.739685,116.838852,86.053726,41.896713,16.885141,12.847125,5.281002,10.141339,9.271091,10.289272,4.041330,0.364464,0.144628,0.000000,0.076033,0.009918,0.000000,0.023967,0.180166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601527.555000,4612265.550000,3927,5605,112.140511,166.206635,167.768600,160.644623,148.842972,139.157028,138.578506,137.016525,138.561981,141.363632,143.801651,154.041321,171.082657,188.818176,202.297516,214.586777,215.561981,205.876038,182.793396,160.074387,148.809937,145.669434,140.636368,111.396713,91.553734,107.966957,116.223160,86.495880,40.909107,17.085970,12.785143,7.496705,9.552909,9.231421,12.250428,4.867777,0.428926,0.102480,0.000000,0.195869,0.311571,0.000000,0.041323,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601531.555000,4612265.550000,3947,5605,117.817368,167.404129,167.453735,159.197525,148.536362,137.395874,135.602478,136.205795,138.007446,139.784302,142.057022,154.751236,170.445465,187.164490,201.933060,212.817352,215.875214,205.652069,181.181015,160.057022,147.792572,145.015701,139.081818,110.461998,92.164482,106.007446,117.230591,85.123161,42.172752,15.586796,12.643820,7.240507,9.007457,10.857869,9.972742,4.269429,0.952068,0.639671,0.142150,0.012397,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.955000,4612265.550000,3979,5605,119.957870,164.238861,166.933075,157.288452,143.883484,135.949585,134.627289,133.751266,133.734726,138.610764,140.354568,152.040512,168.222336,184.329773,197.569443,209.023987,212.255386,202.693405,179.569443,156.462006,145.759521,141.792587,137.081833,109.205803,89.404152,104.767792,113.900017,83.817375,38.156219,14.284316,12.462003,6.541332,7.385140,7.296708,10.733072,2.693395,0.528927,0.049587,0.203306,0.076860,0.000000,0.000000,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.755000,4612265.550000,3993,5605,126.202492,168.276871,167.714890,159.359543,147.086807,139.227310,136.227295,135.962830,136.028946,139.268631,141.235565,152.632263,169.648773,186.442169,201.491745,211.888443,214.012405,203.871918,179.673569,157.276886,147.466980,143.260361,137.772766,109.665306,89.714890,104.078529,114.690102,84.500008,40.376053,14.582663,12.524813,5.299185,7.901670,9.103323,9.719023,2.999180,0.252893,0.217356,0.080166,0.010744,0.006612,0.000000,0.130580,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.355000,4612265.550000,4016,5605,127.018211,171.712402,172.100830,160.968628,148.596710,138.447952,137.555405,135.481018,137.266144,140.481018,142.365311,154.100845,170.836380,187.200012,201.538849,213.365295,215.571915,205.671082,180.530594,158.307465,147.803329,142.762009,136.927292,109.472748,89.786804,103.464485,114.249603,84.919037,40.497543,14.966134,12.447952,6.175217,8.398362,8.738032,9.541336,3.346288,0.471902,0.060331,0.476860,0.016529,0.002479,0.000000,0.006612,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.555000,4612265.550000,4032,5605,123.575218,174.343826,169.955399,162.120697,149.302505,140.715729,138.004990,137.087631,138.666138,140.922348,143.922348,154.872757,172.054581,188.955399,202.806641,214.335571,216.409943,206.666138,182.484329,159.244659,149.533920,144.451263,139.963669,110.476044,91.401672,104.550423,113.624809,85.790100,40.566959,16.676876,12.723986,7.196706,10.039685,10.689271,10.388444,5.674390,0.509919,0.572728,0.009091,0.009091,0.047934,0.557852,0.086778,0.000000,0.000000,2.477686,0.000000,0.000000,0.000000,0.000000 -601551.355000,4612265.550000,4046,5605,124.677696,168.685974,170.247955,162.611588,150.793411,139.917374,139.173569,137.363647,137.619858,141.842987,143.561996,155.190094,172.289276,188.471085,203.404968,214.793396,216.743805,206.834717,182.190094,159.702499,149.818192,144.504150,138.090927,110.578522,89.975212,105.462814,114.570259,86.793396,42.801670,17.028116,12.553739,7.000009,10.138035,9.961172,10.760345,4.028107,1.376863,0.267769,0.031405,0.000000,0.047935,0.014050,0.082645,0.142975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.755000,4612265.550000,4063,5605,120.796715,170.408264,171.358688,164.400009,151.044632,139.209915,137.862808,138.292572,137.457855,142.763641,143.995041,154.879349,171.276031,189.110748,203.193405,214.705795,217.573563,207.771912,183.441330,160.490906,149.449585,144.631409,140.945465,111.168610,91.846298,105.697540,115.904137,85.614891,41.664486,17.317375,12.813242,6.027283,9.413239,9.352082,10.447948,4.806618,0.555374,0.047108,0.205785,0.000000,0.040496,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.355000,4612265.550000,4081,5605,98.797539,161.060333,171.200836,161.523148,150.399170,140.076843,139.903305,139.828949,139.928116,143.696701,144.374390,156.052078,173.572739,189.977707,203.969437,216.457031,219.514877,209.605789,183.944656,160.903305,150.167770,145.068604,140.027267,110.118187,90.704964,104.167778,114.349594,85.217369,40.671921,15.271918,12.729772,5.814058,8.438032,8.213238,7.623979,2.634716,0.752068,0.342976,0.075207,0.163637,0.176034,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601564.555000,4612265.550000,4112,5605,128.071091,176.079346,172.790100,163.591751,152.004974,140.616547,140.252899,138.947113,138.757034,144.566956,144.558685,156.095886,172.484314,190.038025,204.996704,216.790100,218.591751,209.533890,183.963654,160.442993,149.881012,145.666122,140.418198,111.161995,91.186790,106.426460,115.442986,86.128937,40.914070,16.154566,12.765308,5.088439,9.653736,10.139686,10.450428,4.484306,0.557853,0.233059,0.286778,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.155000,4612265.550000,4130,5605,126.619850,184.975204,173.842972,166.446274,152.223145,140.768600,139.181824,139.975204,139.289261,144.297516,145.239670,157.024796,173.173553,190.818176,204.735535,217.925613,219.049591,208.132233,183.297516,160.314056,150.198349,144.537186,141.454544,110.677696,90.421494,105.157036,114.272736,86.785141,40.173573,17.909937,12.859524,6.197530,9.307456,8.581835,10.545470,3.125627,0.806614,0.462812,0.125620,0.016529,0.000000,0.000000,0.298348,0.194215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601573.355000,4612265.550000,4156,5605,108.472748,167.621521,170.530609,158.993408,146.481018,135.786804,134.439682,132.282669,132.613235,134.208282,136.001678,146.927292,164.224823,180.489288,192.629776,203.175232,205.910767,193.183502,169.819855,149.935562,141.084320,136.580185,131.472748,103.406631,86.687622,99.274399,108.439690,78.398361,35.819851,16.814068,11.952085,11.836377,9.984313,10.967786,10.703321,3.725629,0.732233,0.357026,0.547108,0.000000,0.000827,0.000000,0.063637,0.168596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.355000,4612265.550000,4171,5605,103.852089,172.331421,168.166122,158.166122,142.984314,133.017380,133.199188,129.463654,130.042175,132.868622,134.438858,145.430588,163.273560,178.017365,190.843811,201.744644,203.579346,192.000839,167.364471,148.207458,136.918198,134.430603,129.190933,100.885147,83.372749,95.678535,105.389275,75.678535,35.017376,13.866132,11.744648,7.895880,8.111586,7.476046,9.238030,3.073561,0.438017,0.481820,0.428927,0.587604,0.056199,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.555000,4612265.550000,4187,5605,130.806625,172.170273,169.195068,156.591766,142.219864,135.211594,134.649612,131.641342,131.079361,133.591751,135.484329,145.294250,163.046310,178.319016,191.831421,202.401672,205.285965,193.575226,169.145477,148.641342,137.856232,135.748795,129.872742,101.269432,85.327286,98.459518,105.649605,77.285973,35.765308,14.260348,11.806630,7.666955,8.096708,9.777700,10.401668,3.508272,0.953721,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601587.755000,4612265.550000,4228,5605,130.128113,175.185974,170.731415,159.880188,144.442169,133.599182,134.417374,130.756210,131.342987,134.326462,134.896713,146.285141,163.012405,178.657043,190.921509,202.623978,204.673569,193.252075,169.185974,148.714890,137.822327,135.086792,130.227295,101.491753,84.326462,97.433899,105.681831,77.574394,35.747955,15.376052,11.838862,9.746296,8.724811,9.439684,9.761173,4.957033,0.512398,0.212397,0.114050,0.000000,0.000000,0.012397,0.131405,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.555000,4612265.550000,4242,5605,122.265305,175.050430,170.678528,159.066956,146.347946,134.934723,135.728119,131.504974,131.967789,134.546295,134.455383,146.290100,163.620667,178.802490,191.397537,203.480179,203.620667,193.463654,169.050430,149.298355,138.769440,136.149597,130.463654,101.645470,85.207451,96.381004,106.529762,77.934723,35.587624,16.414068,11.860350,10.099188,9.042164,10.247123,9.114063,2.967775,0.400828,0.268596,0.372728,0.000000,0.068595,0.000000,0.056199,0.111570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.155000,4612265.550000,4255,5605,104.014893,177.097534,168.163635,159.386780,145.130585,133.204971,133.585129,131.816528,131.535538,134.783478,134.957031,146.105789,162.312408,179.295868,190.477692,201.221497,202.824799,191.138855,166.907440,147.353729,135.923981,134.411575,129.527283,102.031418,85.717369,97.130592,105.775223,77.072739,36.287621,14.956217,11.775227,9.520676,9.352082,9.066958,12.370264,3.756207,1.123969,0.040496,0.000000,0.061157,0.000000,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.755000,4612265.550000,4268,5605,111.057869,176.586792,170.371918,157.768616,144.677704,133.504135,133.677689,131.462814,131.793396,134.438019,134.099182,144.595062,162.479355,177.231415,189.942169,202.041336,203.570267,190.826462,167.570267,147.859528,137.198364,134.727280,128.363647,100.595047,84.520676,96.107445,106.859512,76.652908,36.239689,15.435555,11.669440,8.904145,7.749600,11.180180,10.555387,4.919016,0.666118,0.318183,0.105785,0.000000,0.000000,0.000000,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.555000,4612265.550000,4282,5605,116.182655,182.240509,168.785965,159.414062,143.604141,132.430588,132.703308,130.595871,130.347946,133.215714,132.397522,143.273560,160.711578,175.951248,187.769424,200.058670,200.273544,188.620651,165.058685,146.174393,135.662003,133.273560,129.100006,100.496704,83.488441,95.686790,104.678528,75.447121,33.984318,13.778529,11.736382,10.072742,9.064475,9.417370,9.590923,3.187610,0.819010,0.351241,0.085951,0.000000,0.000000,0.085124,0.069422,0.000000,0.000000,1.155372,0.000000,0.000000,2.657851,0.000000 -601601.355000,4612265.550000,4296,5605,120.515717,178.796707,172.375229,161.796707,146.664490,133.689270,133.375214,131.168610,132.342163,134.515717,133.623154,144.499191,161.672745,176.416550,188.887619,200.333908,200.408279,187.780182,166.457870,146.449600,137.085968,134.540512,129.127289,101.242989,84.664474,96.945465,106.490921,77.747116,35.656219,16.304150,11.738862,12.205800,9.445468,12.238858,11.047949,2.624802,0.766118,0.328100,0.302480,0.023968,0.252893,0.014876,0.137190,0.347934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.155000,4612265.550000,4325,5605,104.365311,183.935547,177.761993,168.786774,153.472717,142.885941,142.332230,139.604950,139.712387,145.761978,145.290909,156.836365,173.861145,193.687607,207.299164,221.067764,224.480988,213.613220,188.481003,163.687592,153.464462,150.340485,146.927261,116.266129,97.357033,111.348770,120.398354,87.538864,43.687626,19.304152,13.357042,8.196709,11.331422,12.323156,11.444643,6.126456,2.096699,0.114876,0.227275,0.352069,0.000000,0.171075,0.359505,0.157025,1.820661,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.355000,4612265.550000,4346,5605,126.166962,176.191727,175.381805,166.447922,152.084290,139.423141,139.604950,137.993378,139.323959,143.373550,144.406601,154.770248,173.638016,191.629745,207.266113,220.679337,223.646271,213.274368,187.662796,163.654541,152.662796,149.555359,145.381805,113.340508,96.571907,109.753723,119.009933,87.505806,42.687626,18.166960,13.216548,10.182660,11.747126,13.338861,14.866960,5.147943,1.900830,0.629754,0.407440,0.074381,0.088430,0.247108,0.179339,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601617.555000,4612265.550000,4377,5605,132.229767,176.403305,175.080994,164.494217,149.857864,139.031433,138.238037,136.990112,136.436386,142.097549,142.419861,153.808273,171.287613,190.080994,204.080994,218.775208,222.114059,209.568604,184.105789,160.940506,149.072739,146.543808,143.890930,110.800018,93.750427,108.593407,117.535553,84.494240,42.006630,15.572746,13.081010,8.949600,9.891752,9.724809,10.412411,3.999182,1.063640,0.319836,0.116530,0.090084,0.084298,0.033885,0.763639,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601627.555000,4612265.550000,4427,5605,110.412407,170.023987,174.428940,163.726471,149.197540,137.371094,138.329773,135.652084,136.371094,140.015717,141.329773,152.751266,170.866959,187.776047,202.800842,215.032257,219.726471,207.329773,181.858704,157.966141,147.767792,143.792587,140.718201,111.404144,92.379356,106.172745,115.776047,84.147957,40.742996,16.390100,12.792580,8.120674,9.370264,9.493402,9.941338,3.581001,0.556200,0.880167,0.348761,0.211572,0.402480,0.000000,0.171902,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601641.755000,4612265.550000,4498,5605,113.547951,171.217361,175.176041,163.622314,148.126450,138.159515,137.390915,136.432251,136.820663,140.258682,141.779343,153.366119,170.820663,187.242157,203.300003,215.399185,217.828934,207.076859,182.316528,158.176041,147.374390,144.671906,140.209091,109.878525,91.936378,107.895058,116.465302,84.729767,41.002499,16.633076,12.746300,9.705800,10.622330,10.242165,11.229767,4.409099,1.971078,0.590910,0.385951,0.088431,0.197521,0.045455,0.286778,0.538017,3.823141,0.000000,5.662810,0.000000,0.000000,0.000000 -601663.555000,4612265.550000,4607,5605,101.964478,169.394226,175.253723,162.956207,147.352905,138.071930,137.757874,136.195877,135.923157,139.485153,141.452087,153.088440,171.022324,187.650421,202.840515,215.906631,217.567795,207.014069,181.270264,157.923157,145.427277,144.179367,140.245483,109.666946,91.923149,106.328102,116.551239,85.220680,41.840515,18.195887,12.749604,8.535552,11.160348,10.911587,12.143818,5.065300,1.072730,0.228100,0.128926,0.005785,0.295042,0.057025,0.421489,0.508265,0.000000,0.000000,0.000000,1.163637,1.443802,0.000000 -601695.955000,4612265.550000,4769,5605,108.359512,169.152908,176.004150,163.268616,147.334732,137.731415,138.086792,136.541336,137.458694,139.491745,141.549606,153.896713,172.004150,189.243820,203.557861,216.152908,217.466965,206.235550,180.971085,158.392578,146.987625,144.615723,139.590927,110.367775,91.987610,106.491745,117.557861,85.177696,43.623985,16.301672,12.690101,11.911586,12.121506,11.701667,12.885967,5.628934,1.279341,0.408265,0.561985,0.395869,0.221488,0.076034,0.621490,0.748761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.755000,4612265.550000,4913,5605,115.119026,174.780182,177.846298,163.771927,149.242996,137.978531,138.887619,135.639694,135.457870,138.085968,141.515717,152.714066,171.449600,188.383484,202.838043,214.813248,217.953735,204.102493,180.557037,157.515717,146.813248,142.755386,138.309113,108.127289,90.664482,106.681007,116.052910,84.102501,41.300850,16.508284,12.573572,11.217371,11.142166,11.899191,12.458694,5.728108,1.440499,0.847110,0.148761,0.006612,0.078513,0.000000,0.239670,0.639671,0.000000,0.000000,1.293389,1.210744,0.000000,0.000000 -601737.355000,4612265.550000,4976,5605,104.139679,176.313248,177.362823,162.767792,147.131424,136.470261,136.933075,136.139694,135.660355,137.503326,139.387619,152.610764,172.123154,189.437210,203.238861,216.519852,218.288452,205.685150,181.718201,157.238861,147.114899,144.643814,138.900024,108.809105,91.643814,105.784309,117.990921,85.032242,42.214069,17.485970,12.627292,12.167785,11.820679,11.609108,12.443817,7.127284,1.730583,0.462811,0.180166,0.014050,0.309092,0.025620,0.300001,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.955000,4612265.550000,4999,5605,125.193405,181.689270,176.813248,164.127289,147.945480,137.557037,137.565308,135.647949,135.672745,138.581833,139.218201,152.234726,170.796707,188.400024,202.441345,215.342163,218.052917,204.333908,180.069443,155.821503,145.350433,143.292587,138.854568,107.689278,89.862831,104.061180,115.532249,83.342171,40.540516,15.942993,12.623158,9.971916,9.278529,10.538858,11.322330,5.430587,1.185953,0.383473,0.000000,0.004959,0.248761,0.236364,0.323141,0.470249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.955000,4612265.550000,5014,5605,119.730598,172.287613,170.494217,160.927277,147.671082,137.089264,139.596710,136.290924,135.092575,136.927277,138.216537,151.547119,170.803314,188.687607,202.224808,216.092575,219.431412,206.778519,183.414886,161.547119,151.299179,148.770264,142.927277,112.105789,94.502487,108.221497,118.514061,85.163651,42.452911,18.985142,12.993407,13.755388,11.003323,10.598360,12.665304,5.890090,1.594218,1.233886,0.578513,0.359505,1.237191,2.627273,1.664464,2.716531,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601751.755000,4612265.550000,5048,5605,112.819023,183.424820,176.937210,164.862823,149.267792,137.267792,138.102493,135.366959,135.276047,137.631424,139.135559,151.995056,171.185150,188.804962,202.639679,215.325623,216.838013,204.292572,180.317352,157.011597,145.912415,143.788452,139.763657,106.532249,89.507454,103.854568,115.747124,83.978531,42.094238,17.107458,12.705804,12.690100,10.459521,12.356215,11.093405,7.434721,1.580169,0.778514,0.580166,0.240497,0.192563,0.000000,0.202480,0.084298,0.000000,0.000000,0.000000,0.000000,4.365290,0.000000 -601755.755000,4612265.550000,5068,5605,118.367790,186.349594,178.200836,164.151245,147.721497,136.589264,136.597534,134.134720,134.407455,137.060333,138.035538,150.638855,170.300003,188.060333,202.845459,215.721497,217.390915,203.729752,178.828934,156.498352,144.647110,142.845459,136.663635,106.167786,89.853737,103.952904,115.093407,84.093414,42.151260,16.193409,12.423986,10.358694,10.200017,10.728117,10.150429,5.602487,0.580167,0.303307,0.000000,0.000000,0.000000,0.000000,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.491735 -601762.155000,4612265.550000,5100,5605,116.409935,184.806625,177.162003,165.252899,147.666122,137.856216,136.509109,135.095886,135.343811,139.186783,140.285965,152.385132,171.228119,189.806625,203.038025,216.856216,219.914062,205.715714,181.616547,159.186783,147.674393,144.806625,139.236374,107.517357,89.781830,106.013229,117.203308,86.335548,40.864483,17.490103,12.657871,10.867785,9.893405,12.104149,10.838034,4.642158,1.179342,0.305786,0.000000,0.000000,0.119009,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601770.355000,4612265.550000,5141,5605,114.156212,186.635559,177.726471,163.759521,148.776047,134.767776,137.643814,136.833908,136.073578,140.858704,138.999191,152.900024,171.172745,189.280182,203.693405,217.511597,216.462006,204.420685,181.271927,158.519852,146.924820,144.652084,140.445480,108.957863,91.172737,104.941330,118.577698,85.966125,43.982662,17.177704,12.767788,12.033900,10.166132,12.484313,13.071091,6.538854,0.586779,0.362811,1.176861,0.008265,0.064463,0.000000,0.000000,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.155000,4612265.550000,5170,5605,119.791740,188.827271,179.000824,167.149582,150.604126,138.223969,139.033875,137.761154,137.819000,142.356201,140.281815,153.529755,171.819000,190.199173,204.513229,217.769440,218.876877,204.620651,181.405777,159.554535,147.604126,145.736359,142.099991,108.942986,91.835548,107.934723,120.686790,87.364479,42.604149,18.559526,12.918200,15.080182,10.133901,12.909934,13.728941,6.172738,0.779341,0.416530,0.123141,0.071901,0.223967,0.106612,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.355000,4612265.550000,5201,5605,137.215714,190.830582,178.318176,170.665283,152.913223,139.747955,139.045471,136.359528,137.690094,142.037201,140.830597,153.995865,172.780991,191.739670,206.235535,219.376038,219.491730,204.252060,182.623962,161.648758,149.690079,146.789276,143.500015,110.260345,92.508278,109.053734,121.508278,87.119850,44.036385,18.861176,13.045474,16.153734,10.330595,12.738033,16.327290,8.570259,3.015707,1.725621,0.923141,1.016530,1.110745,0.270248,0.021488,0.186777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.355000,4612265.550000,5246,5605,130.342987,194.017365,179.050430,168.480179,147.752899,135.645462,134.868607,131.711578,133.711578,140.314896,135.901672,149.091751,167.033890,186.372742,201.777695,215.364471,216.083481,200.785965,179.571091,157.662003,146.447113,143.471909,138.463654,106.678528,88.364479,108.141335,118.066956,84.108276,40.794235,14.583490,12.587623,14.534726,8.270263,9.478528,10.394229,5.791746,0.400001,0.049587,0.063637,0.018182,0.009091,0.144628,0.228926,0.164463,0.000000,0.000000,0.000000,2.464463,0.000000,0.000000 -601800.355000,4612265.550000,5291,5605,109.038040,167.649597,175.707458,160.765305,144.657867,135.062820,134.616547,132.881012,131.343811,134.186783,135.657867,147.533890,166.186783,182.294235,195.980179,206.624802,209.219849,198.641342,176.046295,153.707458,141.922333,139.550430,134.418198,104.542160,86.930588,101.145470,116.310760,84.566956,42.236385,16.684315,12.219854,9.635550,10.474399,12.710761,12.142164,6.695878,0.608266,0.180992,0.116529,0.323968,0.037191,0.000000,0.041323,0.304959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.355000,4612265.550000,5316,5605,106.273575,159.356201,171.769424,160.306610,143.802490,133.554550,134.075211,131.157852,131.455383,133.661987,134.653717,146.100006,164.951233,181.620651,195.554565,208.141312,208.645447,198.290100,174.157852,153.281815,143.009094,139.116531,133.463638,103.199188,86.108284,101.661995,113.017357,84.339691,41.223988,16.341341,12.133078,8.344643,8.533901,9.584316,9.596709,7.257862,0.909093,0.338844,0.057851,0.000827,0.088430,0.000000,0.086777,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.155000,4612265.550000,5345,5605,87.045471,164.985962,169.531418,160.820663,143.316559,135.142975,132.622314,130.985962,130.151245,132.448761,134.333069,146.556198,165.746292,181.738007,195.217346,205.886765,207.671890,196.184280,174.721481,152.680176,142.076889,137.837219,132.754547,103.597527,86.266960,102.655380,115.076866,84.787621,42.713242,17.002499,12.068613,9.202495,8.160346,11.091751,10.245468,5.152901,1.061985,0.315703,0.055372,0.470249,0.057851,0.000000,0.086778,0.083471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601819.955000,4612265.550000,5389,5605,91.203323,162.814880,168.476028,159.013214,143.971909,135.038025,134.128937,130.773560,131.277695,132.418198,134.616547,146.748779,165.889252,182.302475,195.897522,207.236359,209.649582,199.500824,175.624786,153.707428,143.170258,140.029770,134.690918,104.244652,87.467789,102.864487,116.732254,87.302498,42.600021,17.245474,12.244648,9.130593,9.244646,11.611588,11.524810,5.787613,1.138845,0.206612,0.432233,0.000000,0.008265,0.822315,0.083472,0.372728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.155000,4612265.550000,5460,5605,103.081009,163.965302,170.824799,158.213226,144.808273,134.800018,133.461166,131.039688,130.395050,132.238037,135.023148,146.882645,165.866119,182.717361,196.229752,207.485962,209.874390,198.692566,176.428101,154.494217,143.147110,140.552078,134.345474,104.114067,86.370262,102.403320,116.502495,86.163651,43.287624,16.858696,12.213243,9.886794,10.102498,10.683488,11.338860,6.152903,0.971077,0.065290,0.235538,0.010744,0.009918,0.000000,0.068595,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.755000,4612265.550000,5573,5605,103.199188,170.155380,169.667770,156.709106,141.196701,131.138855,130.535538,129.180176,128.171906,131.527283,132.461166,144.857864,163.750427,181.122314,194.568604,206.411575,208.560333,198.866119,176.461166,153.857880,142.395050,139.097534,132.890915,102.940514,84.287628,101.411583,115.147118,86.766960,42.692581,15.205803,12.081012,8.815715,9.238860,9.731421,10.485965,4.523149,1.079341,0.182645,0.337191,0.133058,0.022314,0.000000,0.136364,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.955000,4612265.550000,5614,5605,106.933899,165.421509,168.809937,158.776871,143.917374,134.099182,133.008286,129.586792,129.421509,132.099182,134.884308,145.834732,165.074402,180.834732,196.966965,207.041321,210.314056,200.264481,178.314072,155.727295,142.867783,139.942169,134.727295,103.966957,86.768608,103.305801,116.958694,88.347122,42.264488,15.749604,12.247952,8.486793,9.781834,11.281834,9.893403,4.226454,0.972730,0.145455,0.280166,0.027273,0.305786,0.190083,0.000000,0.088430,0.000000,0.000000,1.247934,1.338017,0.000000,4.560331 -601869.355000,4612265.550000,5636,5605,113.007446,170.850418,169.230576,158.511566,144.817352,132.602493,132.412415,130.106628,130.346298,133.461990,135.057022,146.883469,164.338013,182.974380,195.916519,208.098343,209.924789,198.999161,177.528107,155.941330,143.784302,140.238846,134.627274,103.528107,85.825638,102.552902,115.949608,88.966133,41.594234,15.864481,12.238861,7.541337,9.537207,10.983486,10.838860,5.322322,1.347110,0.581819,0.190084,0.322315,0.000000,0.000000,0.066116,0.152067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.155000,4612265.550000,5660,5605,109.305801,171.787613,169.820663,155.308273,142.473572,131.258698,130.663651,128.713242,127.688446,131.944641,133.457047,145.225632,163.250427,180.572739,193.514877,206.275208,208.490082,199.366119,176.349594,154.382645,141.680191,139.911591,132.936386,101.862000,83.895058,102.333084,117.200851,86.002495,42.729771,14.851256,12.085143,7.130591,7.414894,7.603321,9.347120,2.592568,0.743803,0.226447,0.591737,0.305785,0.012397,0.027273,0.053719,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.155000,4612265.550000,5680,5605,108.043823,171.605804,171.324814,158.564484,143.597549,132.630600,130.944641,128.233902,128.465302,132.704971,133.969437,146.010773,163.647125,181.341339,195.167786,206.795883,209.316559,198.919861,176.828949,154.787628,141.853745,137.919861,132.845474,102.862000,84.283485,101.233902,117.093407,87.771088,43.250431,15.465307,12.076880,6.039680,8.681008,7.742163,9.949601,5.529761,0.946283,0.398348,0.150414,0.000000,0.018182,0.030579,0.438844,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601884.155000,4612265.550000,5710,5605,114.479347,173.818192,172.942169,159.867783,143.404984,133.157028,132.256210,130.454559,130.074387,133.454559,133.975220,146.338882,164.033081,181.710754,195.843002,208.446304,208.851257,200.694229,177.578552,155.760345,143.264496,139.074417,134.454559,103.694221,85.338852,101.404968,117.793396,87.636375,43.652908,15.945474,12.223160,6.742159,8.900018,9.391753,11.338858,4.122321,0.817357,0.483472,0.364463,0.120661,0.007438,0.000000,0.023967,0.108265,0.000000,0.000000,0.000000,1.550413,0.000000,0.000000 -601893.755000,4612265.550000,5758,5605,120.350433,180.259506,172.077682,160.548782,144.400024,131.904144,130.986786,129.482666,128.846298,133.738861,133.085968,144.788452,163.350433,181.846283,195.697540,208.515717,210.565292,200.383484,177.325623,156.168610,143.573578,139.523987,133.672729,103.705788,84.647942,102.077690,116.251244,88.606621,40.449608,15.721505,12.152084,6.478524,7.013239,7.971090,10.423153,5.879348,0.381819,0.477687,0.061157,0.165290,0.082645,0.026446,0.318182,0.476860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.355000,4612265.550000,5836,5605,116.243828,172.111588,168.896713,153.946304,139.309937,128.086792,128.929764,126.623985,126.533081,128.136383,128.830597,140.888443,160.888443,176.524811,189.913239,202.012405,201.623978,190.863647,169.756210,148.202499,136.516541,135.070267,128.136383,98.987625,82.640518,96.781013,111.657051,80.946304,39.731426,15.276876,11.648780,10.442988,8.508281,9.544643,9.854560,5.417364,0.944629,0.476860,0.414051,0.000827,0.000000,0.000000,0.166943,0.000000,0.000000,0.000000,0.000000,1.658678,0.000000,0.000000 -601917.355000,4612265.550000,5876,5605,94.681007,172.102493,169.375244,157.069443,142.251266,129.780182,131.003326,127.937210,128.259521,131.681015,130.796707,142.383484,161.069458,178.011612,190.821503,204.085968,205.276047,193.176880,171.003342,149.119034,138.829773,135.995056,129.763641,99.515717,82.523987,98.738853,111.226456,82.400017,39.127293,15.490929,11.796714,11.781836,11.036381,11.224811,10.972744,5.450422,1.155374,0.122314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.273554,0.000000,0.000000,0.000000 -601922.155000,4612265.550000,5900,5605,105.691750,176.104950,169.187607,156.352921,139.452087,127.385963,129.286789,125.898354,126.014061,128.534714,127.989265,140.914902,159.377716,177.171066,190.361145,201.947922,201.873550,191.088425,169.220673,148.377716,137.328125,135.104965,127.427284,97.385963,81.319847,96.410751,109.361168,82.113235,36.443821,15.386795,11.584317,9.254560,8.419850,8.865305,9.681005,4.539677,1.233059,0.000000,0.146281,0.000000,0.071901,0.000000,0.081819,0.237191,0.000000,0.000000,2.657851,0.000000,0.000000,0.000000 -601927.955000,4612265.550000,5929,5605,114.453728,180.536377,168.139694,157.371094,139.288452,127.916542,128.908279,126.792572,125.949600,130.139679,128.974396,141.809113,159.321503,176.759521,190.189270,202.908279,203.098373,190.800842,169.048782,147.866959,136.891754,134.296707,127.081833,97.445465,80.858688,96.362823,108.643814,79.181000,36.296715,14.247125,11.552912,10.050427,6.735552,10.003321,9.806626,5.286788,0.195042,0.000000,0.044628,0.010744,0.051240,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601935.355000,4612265.550000,5966,5605,109.436378,183.089264,172.361984,157.229752,141.791748,129.684311,130.890915,126.254555,127.618187,131.279343,130.155380,143.436371,159.676041,178.849594,191.651245,204.824799,205.866119,190.543808,170.907440,149.337204,137.841324,135.998352,129.618195,98.138855,80.998352,98.849594,108.147125,80.039673,38.072750,13.568611,11.783489,10.342163,9.222329,8.547950,10.892577,3.034717,1.720663,0.257852,0.000000,0.000000,0.015703,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601939.755000,4612265.550000,5988,5605,118.700844,185.794235,167.744644,157.926453,140.719849,129.372742,130.637192,127.769424,128.736374,132.777695,130.414062,143.091751,159.678528,178.554565,192.604141,205.430588,204.298355,190.364471,169.190918,148.918198,137.265305,134.604141,127.918198,98.347954,80.744652,98.223991,109.281830,78.562828,36.430599,13.818200,11.628945,12.102496,8.299189,8.550428,9.878529,4.061990,0.470249,0.097521,0.100827,0.008265,0.136364,0.000000,0.012397,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601945.355000,4612265.550000,6016,5605,126.180183,191.047943,175.312408,162.626450,144.419846,131.370270,132.122330,129.667786,130.147125,136.147110,132.899185,144.328934,161.246292,180.452896,194.485962,207.171906,207.287613,193.320663,172.072739,151.105789,140.634720,136.700836,131.890930,100.560349,83.519020,100.014893,112.081009,79.411583,38.651257,16.238035,11.990101,13.186795,9.280182,9.845470,11.033899,4.740504,1.054548,0.362811,0.170248,0.066943,0.000000,0.000000,0.244629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601953.955000,4612265.550000,6059,5605,134.126465,195.473557,175.465302,165.671906,144.861984,131.977707,131.969437,129.250427,130.159515,136.200851,132.357864,144.184311,161.217361,180.068604,194.928101,208.762817,208.324799,192.845459,172.523148,150.027283,139.547943,135.779358,131.572739,98.977699,83.713234,101.184311,110.085136,77.531418,37.151260,14.323985,11.961176,12.987618,9.347951,10.481009,8.813235,6.349598,0.946283,0.194216,0.174381,0.065290,0.000000,0.000000,0.296695,0.076033,0.000000,0.000000,0.000000,3.428926,0.000000,0.000000 -601960.355000,4612265.550000,6091,5605,118.466125,174.474396,171.482666,163.358704,143.920685,133.730591,131.573563,128.821503,129.970261,134.284302,131.333893,142.647949,158.292587,176.391754,190.937210,204.300842,203.267792,188.383484,168.284302,148.044647,137.862823,134.763641,129.218201,100.375221,84.763649,100.094223,109.036377,76.408279,37.077705,15.277704,11.747127,12.842164,10.811587,10.666131,10.494227,4.584307,1.317358,0.584299,0.000000,0.141323,0.104959,0.000000,0.000827,0.000000,0.000000,4.499174,0.000000,0.000000,0.000000,0.000000 -601964.355000,4612265.550000,6111,5605,105.585968,148.122314,156.395050,149.312408,133.609924,125.543816,122.932243,120.254562,120.039680,122.692574,125.419846,135.948761,153.072739,169.932236,182.733887,196.766953,196.948761,187.882645,165.494217,143.180176,133.932251,129.047943,122.254562,95.733910,77.047951,95.105804,105.362000,78.585136,37.097542,13.985141,11.114069,6.035547,9.884313,9.796710,9.892577,4.299182,0.771903,0.219836,0.029752,0.000000,0.164463,0.000000,0.216530,0.336364,0.000000,0.000000,0.000000,3.193389,1.801653,0.000000 -601971.755000,4612265.550000,6148,5605,105.599190,149.814087,153.334747,144.466980,129.450424,122.260345,118.772743,118.169441,117.814064,119.690102,121.971092,132.995880,151.028961,166.805817,180.144653,192.483505,194.425659,184.070282,160.690109,140.417389,129.392578,125.847122,119.772743,92.747940,74.913239,90.524803,102.971085,77.144653,34.921505,13.989272,10.888449,6.862820,9.040509,8.731418,9.507451,4.374389,1.160333,0.157852,0.038843,0.046281,0.124794,0.387604,0.132232,0.501654,0.000000,2.191736,1.890909,0.000000,1.360331,0.000000 -601974.755000,4612265.550000,6163,5605,109.391747,152.019852,154.796707,144.466141,133.218201,121.631416,119.664474,118.862823,118.697533,120.143814,122.234718,133.846298,150.383484,168.391754,181.780182,194.127274,195.681000,186.366943,161.887619,140.003326,130.887619,126.970261,120.581833,92.647942,75.408279,92.763649,105.598358,77.953728,36.400017,14.326464,10.962002,6.988441,9.413239,9.136377,9.104148,4.494223,1.854549,0.281819,0.104959,0.125620,0.120661,0.004959,0.176034,0.439670,0.000000,2.033885,0.000000,0.000000,1.770248,0.000000 -601977.355000,4612265.550000,6176,5605,100.279358,142.014877,153.361984,143.676041,131.576874,120.849594,119.800003,116.882652,117.816536,119.742157,121.196701,133.601669,150.791748,167.882660,181.188446,193.370270,194.733902,185.295883,162.403336,140.766953,129.973572,126.328934,120.527283,94.279343,74.700844,91.948776,106.047943,78.370262,36.419857,13.514068,10.957045,6.402491,10.572742,9.103319,9.906627,5.683480,0.752895,0.287605,0.177686,0.000000,0.175207,0.009091,0.037191,0.166116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601981.555000,4612265.550000,6197,5605,101.350433,142.135544,147.540497,141.052917,126.887619,116.796715,114.780182,113.143822,112.242996,114.598366,116.515724,128.267792,145.466125,163.003311,175.689270,188.887619,190.763657,179.780182,157.119019,137.028122,126.631424,121.424812,116.581841,88.028122,71.565308,88.499191,104.449608,75.176888,36.209934,13.409935,10.598366,6.803317,8.933897,8.895054,10.382660,4.550421,0.842978,0.591737,0.550414,0.120661,0.102480,0.000000,0.083471,0.710745,0.000000,0.000000,1.798347,1.472727,0.000000,0.000000 -601986.955000,4612265.550000,6224,5605,109.233910,146.952911,147.671921,135.721512,122.969437,112.233910,108.614075,106.506638,105.572746,106.523163,108.275230,120.597542,139.043823,155.134735,168.969437,180.936386,181.845474,171.101669,150.027298,129.242172,118.564484,115.118202,108.027298,80.481842,63.581009,83.151260,99.704979,76.564484,35.583488,13.515719,9.820681,8.218193,9.644641,11.119850,11.585138,5.863647,1.619839,0.890084,0.377687,0.098347,0.123967,0.101653,0.224794,0.110744,0.000000,0.000000,1.747108,6.078513,0.000000,0.000000 -601993.955000,4612265.550000,6259,5605,112.992577,131.520676,130.438019,118.330597,104.487617,92.466133,90.094231,88.074394,85.862831,86.127289,87.532249,97.490929,113.838036,126.876038,138.140518,147.388443,146.297531,137.818192,121.396713,105.495880,95.515724,91.991753,88.363655,63.804977,46.606632,68.234734,92.190102,75.099190,34.768616,10.201672,8.033077,10.640511,9.493402,13.658692,16.490925,15.071087,1.943805,1.268597,1.327275,0.628927,0.447108,1.523969,0.747108,0.229752,9.885125,12.438844,3.250414,4.085124,5.119835,0.000000 -601295.755000,4612255.550000,2768,5655,213.432251,205.531433,198.176056,189.151260,183.498352,183.176041,192.192581,197.010773,204.787628,215.804153,228.019028,247.109940,270.605804,291.076874,306.713226,316.076904,313.233917,287.498383,230.266968,193.217377,178.547943,168.969421,155.027283,127.655388,109.547958,108.746307,96.167786,65.176048,31.903324,17.795887,14.093407,14.090925,12.266957,11.810760,12.723984,7.975219,3.000834,2.439675,0.852895,0.861985,0.406614,0.000000,0.190084,0.104133,0.000000,1.161157,0.000000,0.940496,1.188430,0.000000 -601299.555000,4612255.550000,2787,5655,180.443817,203.344635,196.286789,190.278519,182.270264,182.766129,189.286789,196.419022,204.212402,216.187607,227.840500,246.857040,271.964478,292.319855,307.377716,318.088470,316.245483,290.014069,233.890091,195.162827,181.476868,171.261993,159.518188,129.369446,112.642174,112.121513,99.501678,65.394226,31.972746,16.626467,14.501672,12.028114,10.935554,11.650430,11.398364,7.593400,3.071083,0.586780,0.478515,0.544629,0.513225,0.170248,0.526447,0.448762,0.000000,1.208265,0.000000,0.000000,1.223141,0.000000 -601305.355000,4612255.550000,2816,5655,192.949600,196.156219,195.197540,192.015717,185.263641,183.437195,190.800842,196.949600,203.470245,214.445465,226.461990,243.205811,266.660339,285.726471,299.685150,309.404144,308.321503,287.478546,238.767792,203.313248,190.230591,180.776031,169.990906,139.577682,123.032242,121.147942,113.445465,74.486794,35.544647,19.097540,15.453738,11.331423,13.199191,11.980182,11.462000,6.005795,1.626453,1.994220,1.031408,0.352894,0.456200,0.191736,0.374382,0.380993,2.282645,1.241322,0.000000,0.000000,0.000000,0.000000 -601313.955000,4612255.550000,2859,5655,176.891739,200.065292,200.172729,194.156204,187.511566,186.387604,194.280167,198.461990,205.354553,214.552902,225.181000,242.081818,264.304993,284.090149,298.081879,307.156250,308.726501,293.305023,252.090088,219.974380,207.420670,200.916534,192.627274,161.751236,141.387604,144.519836,140.032242,97.544647,45.974403,20.595888,17.511589,13.961175,14.452084,16.062000,15.788449,7.602494,3.033893,1.418187,0.535539,0.490083,0.362811,0.007438,0.585126,0.600827,0.000000,1.233058,1.114876,0.000000,0.000000,0.000000 -601326.555000,4612255.550000,2922,5655,169.495041,194.387604,199.776031,193.131409,185.627274,184.941330,191.891739,196.974380,203.040497,214.354553,223.296692,241.428925,263.718170,284.081848,299.197571,310.751282,311.081879,301.900055,260.718170,228.577682,216.941330,210.321487,203.263641,170.866943,148.445480,154.470245,153.123138,107.304977,49.767792,20.751259,18.478531,13.175223,13.900018,16.803324,17.383486,8.748775,2.834717,1.435542,1.181820,0.587604,0.471902,0.005785,0.304959,0.519836,1.408265,0.000000,0.000000,1.072727,0.000000,0.000000 -601345.155000,4612255.550000,3015,5655,165.905792,193.575226,190.046295,184.459518,174.558685,170.682663,175.517365,178.360336,183.236374,191.269440,198.707458,214.467789,234.765305,254.566956,269.517395,279.360382,282.451294,276.641357,243.715714,214.930588,203.806625,199.393402,195.145462,164.682663,142.674393,149.963654,157.500839,114.500839,53.252914,20.790102,17.740515,12.282660,14.217372,17.393406,16.716547,10.040511,2.424799,1.108268,0.256199,0.044628,0.046281,0.000000,0.287604,0.042149,0.000000,0.000000,0.000000,1.212397,1.271901,4.512397 -601372.355000,4612255.550000,3151,5655,154.483505,181.384308,175.458710,166.764496,156.177719,148.557877,149.805817,152.210770,155.781021,162.078552,167.458710,181.764481,201.921509,220.640503,234.987610,246.177689,249.210739,245.739670,223.210739,200.706604,191.318192,188.706635,187.045471,156.896729,133.442154,147.847137,166.012405,132.805786,65.690102,24.004150,17.004152,10.938860,18.307457,19.910763,26.175226,14.425638,2.105791,0.827275,0.301654,0.000000,0.032232,0.000000,0.000000,0.045455,0.000000,1.166116,0.000000,0.000000,0.000000,0.000000 -601393.555000,4612255.550000,3257,5655,156.837219,183.448761,174.828949,168.589279,155.366119,145.638855,146.828949,148.341324,149.176041,155.878525,158.861984,172.738037,192.903305,211.762817,226.258682,236.539673,238.209091,231.010757,204.721497,182.680191,169.870270,167.109940,163.845474,132.547943,111.564468,123.961166,139.779358,107.068604,49.870266,19.370268,14.895060,8.848773,11.061998,12.866131,14.647951,5.514060,2.361162,0.090084,0.551241,0.000000,0.000000,0.000000,0.047934,0.306612,1.301653,0.000000,0.000000,1.069422,1.304959,0.000000 -601402.355000,4612255.550000,3301,5655,143.871078,193.862808,178.342148,169.961990,157.614883,146.705795,147.623138,147.672729,149.400009,156.821487,157.292572,171.176865,189.928925,209.408264,222.928925,233.532242,235.730576,228.052902,203.961990,181.664459,169.829758,168.490906,163.309097,133.904144,111.474388,126.325630,142.449585,108.672737,52.077709,20.871920,14.846301,8.877701,11.905803,12.663654,15.047951,7.491748,1.371078,0.072729,0.547936,0.279339,0.042149,0.000000,0.018182,0.247108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601409.355000,4612255.550000,3336,5655,127.374397,184.771088,177.738022,164.010757,152.085129,143.828934,144.176041,143.316528,144.275208,148.928101,152.531418,165.729752,184.795868,201.109924,213.308273,224.010757,225.374390,219.068604,196.440506,176.126450,164.680176,163.324799,157.027283,129.911591,108.490097,121.572739,137.432236,106.845467,50.977707,19.589273,14.275227,13.733073,11.513241,15.616549,18.435555,8.197533,1.947112,0.255374,0.722316,0.000000,0.016529,0.000000,0.000000,0.147108,0.000000,0.000000,0.000000,0.000000,2.649587,0.000000 -601412.355000,4612255.550000,3351,5655,141.766129,176.881821,174.584305,162.617371,149.071915,141.881821,143.171082,143.228943,144.270264,147.121490,150.237198,164.245468,183.022324,199.286789,212.014053,221.857040,224.452072,216.939682,195.435547,175.584305,163.245468,162.443817,157.881821,129.923157,108.047127,122.278534,138.179352,106.782661,50.253735,19.012413,14.352911,12.904977,11.863653,14.242167,17.322330,9.474393,1.320665,0.018183,0.049588,0.000000,0.126447,0.000000,0.042149,0.071901,0.000000,1.277686,0.000000,0.000000,0.000000,0.000000 -601415.355000,4612255.550000,3366,5655,144.518188,178.014038,172.848755,166.295029,151.162796,140.369431,143.104950,142.443817,143.220673,147.609085,150.592560,164.542969,183.658676,201.038834,213.956192,224.501648,227.286789,218.427261,197.113220,176.980988,166.881805,166.162796,160.790909,131.972748,110.104973,123.683487,141.162827,108.460350,51.931427,20.080185,14.617374,13.947125,13.117374,15.976878,17.208282,7.894226,1.694220,0.172728,0.457026,0.095042,0.118182,0.000000,0.071075,0.175207,0.000000,0.000000,1.158678,0.000000,0.000000,2.168595 -601418.955000,4612255.550000,3384,5655,129.603317,182.694229,175.413239,164.512405,149.925629,140.842987,143.066132,142.148773,143.809937,148.041336,150.809937,164.421509,183.454559,200.280991,213.305786,224.330582,226.181824,219.181824,196.619858,177.115723,165.644638,164.537201,161.181839,131.768616,109.454559,123.066132,142.173569,110.644646,51.528946,19.297541,14.652912,12.511587,12.231421,16.244648,18.092579,9.749599,1.528103,0.623969,0.305786,0.000000,0.055372,0.000000,0.052893,0.122315,1.458678,0.000000,0.000000,0.972727,0.000000,0.000000 -601423.755000,4612255.550000,3408,5655,131.428940,180.090088,172.982651,163.561157,150.503311,140.817368,142.081833,142.338043,143.784317,148.081833,149.999191,164.569427,183.776031,199.643799,213.387589,224.792542,225.569412,218.337997,197.032242,176.065292,166.346283,164.197525,160.172729,130.883484,108.974388,123.478523,141.627289,109.106621,52.007458,19.071095,14.561175,13.190099,12.338033,16.063654,18.374399,7.537200,0.654547,0.098348,0.227274,0.015703,0.000000,0.200000,0.007438,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601428.355000,4612255.550000,3431,5655,126.543816,179.676025,172.130569,164.163620,148.370270,138.130600,140.643005,140.593414,142.089279,146.874405,148.023163,162.626434,180.948746,198.948746,212.204956,224.535522,224.601639,216.328918,194.535522,175.568588,165.188416,162.271057,158.800003,128.188431,106.560333,121.180168,141.758698,108.816536,52.279358,18.100845,14.436381,12.359520,12.273571,14.800016,16.100843,9.025633,0.997523,0.248761,0.158679,0.000000,0.018182,0.000000,0.000000,0.071901,0.000000,0.000000,1.147934,0.000000,0.000000,2.172728 -601434.155000,4612255.550000,3460,5655,130.798370,185.393387,174.690903,163.319000,150.765289,141.013229,142.327286,141.343811,143.707458,148.880981,149.368591,164.112396,182.740494,201.401657,214.285950,226.773544,226.922318,218.054535,196.616531,176.195038,164.988434,163.525620,159.690903,128.186783,108.765305,122.723969,140.682663,109.137199,52.715725,19.128117,14.517375,13.130596,13.581010,15.486795,18.028944,7.131416,0.970251,0.304960,0.125621,0.191736,0.090910,0.000000,0.033885,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601439.555000,4612255.550000,3487,5655,134.515717,187.540497,172.218185,162.978516,149.276031,137.540497,139.375214,140.499176,142.052902,148.094223,147.548767,161.110748,179.176865,198.416534,212.408264,225.242981,224.879349,213.689255,194.590088,174.540497,163.366943,162.416534,157.490906,126.135551,106.738853,120.970261,139.838013,106.482658,48.631428,18.681011,14.317373,13.593405,12.180182,12.960347,16.613241,7.752903,0.767770,0.001653,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.360331,0.000000,0.000000 -601444.355000,4612255.550000,3511,5655,142.128113,182.590927,174.045471,165.367783,150.004150,138.210754,140.690094,139.747955,140.896713,147.681839,147.078522,160.086792,177.623978,197.103317,211.210739,223.756195,223.880173,213.028931,192.781006,172.334732,160.524811,158.929764,155.863647,124.995880,104.524811,120.293404,136.326462,103.376053,46.871925,17.084318,14.169441,12.021503,10.276050,12.226463,14.269439,6.901664,0.841325,0.322315,0.090083,0.147108,0.000000,0.000000,0.036364,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.555000,4612255.550000,3527,5655,143.488434,195.099991,176.339676,167.513229,151.620651,140.257019,141.215698,141.339661,143.207428,149.827271,147.868591,161.141342,180.075211,197.736359,212.909897,224.000809,225.628906,213.934692,193.009094,172.314896,163.025635,161.017365,155.918182,125.273560,105.240517,122.447113,137.794205,104.488441,49.504978,17.438862,14.174400,14.835555,10.783488,12.777704,14.682664,8.858692,1.013226,0.648761,0.155373,0.118182,0.135538,0.000000,0.033884,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.555000,4612255.550000,3552,5655,146.139694,190.842163,175.511566,168.114883,151.850433,139.238861,140.883484,140.428940,141.610764,150.114899,147.214066,159.726471,177.057022,196.792587,211.577698,224.007462,223.594238,210.164490,189.866959,169.676880,159.280182,156.048782,152.263657,121.147942,102.900009,117.081833,133.635544,98.247116,45.296715,15.853738,13.842168,12.940513,10.416546,10.966958,11.675222,6.975219,0.451241,0.076034,0.210744,0.000000,0.000000,0.000000,0.100000,0.089256,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.755000,4612255.550000,3578,5655,155.911591,198.142975,174.018997,167.812393,151.506607,140.374374,141.291733,140.225616,142.638840,149.671890,145.779327,159.895035,177.366104,195.994217,211.961166,224.432236,223.374390,210.556198,189.366119,168.580978,159.010727,156.448746,151.390900,119.878517,100.275223,116.895050,129.630585,94.101669,43.126465,16.575224,13.762828,11.243816,9.238032,10.359520,10.633072,6.879349,0.600828,0.074380,0.355373,0.000000,0.103306,0.000000,0.021488,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.555000,4612255.550000,3592,5655,156.925629,201.785126,179.396698,171.619827,154.090912,142.049591,143.636368,142.578506,143.942154,152.966949,148.057846,161.842972,178.429749,197.347107,213.107437,225.578506,225.710739,212.396698,191.842972,171.983475,160.925613,157.685944,154.000000,121.438026,101.876053,119.115707,129.702484,94.157043,45.528946,17.895058,14.000019,16.087622,11.181835,11.531423,13.018198,8.044639,1.342978,0.000000,0.000000,0.243802,0.066943,0.000000,0.044629,0.154546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.955000,4612255.550000,3609,5655,116.048782,166.362808,169.461990,160.453720,148.536362,140.726456,138.883469,137.561157,140.247116,142.842148,146.189255,157.461990,176.437195,193.792572,207.470245,219.850418,222.296692,212.627274,188.933060,169.709915,157.668594,153.784302,148.990906,119.875221,99.338028,114.734718,127.974388,94.701668,45.784317,18.351257,13.544647,9.420674,11.133904,14.810761,13.812416,6.763648,1.774384,0.003306,0.238018,0.034711,0.032232,0.000000,0.014050,0.526447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.755000,4612255.550000,3623,5655,117.284317,164.639694,169.804977,158.945480,145.928940,138.028122,138.730591,135.598373,137.705811,140.590103,143.771927,156.375229,173.995041,191.044647,206.408264,217.061142,220.110733,211.284286,189.061172,166.771927,155.796707,153.623154,147.854568,117.540504,96.441345,114.193398,125.400009,92.309113,42.904152,15.726464,13.441341,10.442163,10.190099,10.709932,11.479355,6.169430,0.853721,0.359505,0.236365,0.172728,0.033058,0.000000,0.009091,0.000000,1.381818,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.355000,4612255.550000,3636,5655,119.173569,165.074402,169.454559,157.264481,145.371918,138.702499,138.132248,135.950424,137.611588,141.685974,144.537201,156.818192,175.297531,192.066132,207.793411,218.876053,221.892578,211.495880,188.380188,167.214890,155.909103,152.669434,147.909103,118.198364,97.553734,113.231422,126.231422,93.330597,44.123985,16.788446,13.446301,9.794230,9.934728,10.745472,12.449603,6.452077,0.764464,0.128100,0.619836,0.018182,0.076033,0.000000,0.012397,0.004959,3.626447,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.555000,4612255.550000,3657,5655,119.649590,162.161987,169.988434,160.368591,149.269440,139.732239,138.963654,137.575226,139.178528,142.277695,145.864471,158.327286,176.971893,194.062805,208.294205,221.013214,223.525620,213.533875,190.558670,169.029755,159.038025,154.261169,149.872742,120.806625,99.633072,115.467781,126.095879,93.947121,44.980186,17.996716,13.624812,10.232247,11.364481,10.435554,12.577703,6.862821,1.190085,0.289257,0.380166,0.172728,0.160332,0.000000,0.001653,0.314050,1.295041,2.418182,0.000000,0.000000,0.000000,0.000000 -601478.955000,4612255.550000,3684,5655,122.766129,166.195877,168.964478,160.972733,146.154556,138.609100,138.187607,138.253723,138.559509,142.336380,145.286789,158.518188,177.063644,194.799179,207.733063,221.799179,224.361160,215.972733,192.121490,170.286789,159.179352,154.799179,150.790924,120.716537,100.749596,116.204140,125.914886,91.799187,44.766136,16.017374,13.708283,8.494229,10.196712,12.357041,12.171089,6.313233,0.792564,0.150413,0.249588,0.062810,0.050414,0.000000,0.013223,0.005785,1.299174,0.000000,0.000000,1.074380,0.000000,0.000000 -601487.955000,4612255.550000,3729,5655,117.002502,158.407440,169.192566,157.465302,146.547943,139.200836,137.977692,137.192566,138.101654,141.804138,144.572739,156.870255,174.556198,191.977692,205.333069,218.217361,221.052078,211.415710,188.605789,166.539673,156.597534,152.457031,147.663635,117.614067,97.944649,112.085136,124.324806,89.514900,43.126465,16.336382,13.423985,9.190096,10.485968,10.656216,11.152907,6.122324,0.709092,0.052893,0.078513,0.157852,0.019835,0.000000,0.038017,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.755000,4612255.550000,3743,5655,122.411591,164.502487,169.998352,160.758682,147.080994,139.180176,138.841324,138.948761,138.948761,142.519012,145.411575,157.899185,176.122314,192.849594,207.659515,219.618195,223.519012,213.105789,190.213226,167.948761,157.766953,155.097534,148.436371,118.965302,99.345467,113.874397,126.320686,90.957047,44.576881,17.638859,13.494233,8.237202,11.885967,11.932248,11.757040,4.897529,1.665293,0.155373,0.359505,0.176033,0.023141,0.000000,0.006612,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.955000,4612255.550000,3779,5655,121.285141,166.152908,170.640518,161.772751,148.516541,139.921509,139.012405,139.508286,139.037201,143.475220,145.640518,157.524811,175.880188,192.747955,207.152908,219.929764,222.078522,212.384308,188.772751,167.243820,155.814072,152.648773,149.045471,118.995880,97.995880,112.706627,123.987617,90.830597,45.078529,19.662001,13.549606,9.347948,11.564480,11.391753,11.432247,6.533068,0.827276,0.260332,0.242150,0.013223,0.015703,0.000000,0.009918,0.000000,1.221488,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.755000,4612255.550000,3793,5655,107.792572,165.271927,172.833908,163.214066,148.164490,141.189270,139.668610,139.627289,140.255386,143.387619,145.767792,158.817368,176.875229,193.420685,207.519852,219.114899,223.081833,213.147949,190.552917,167.941345,156.800842,153.585968,149.172745,117.866951,98.577698,111.924805,123.800835,91.676872,43.412415,18.856216,13.561176,7.323153,12.009936,11.327290,13.305801,6.117366,1.176862,0.140497,0.300827,0.049587,0.019835,0.176033,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.355000,4612255.550000,3816,5655,116.404152,165.263641,169.495041,160.445465,147.081818,138.742981,137.709915,137.304962,137.990906,141.552902,144.263641,156.131409,174.478516,191.503311,205.817352,217.734711,221.346283,212.999176,188.561157,166.338013,156.205795,151.288437,147.445465,116.486794,95.941345,110.982666,122.726463,88.660347,43.676880,16.161175,13.404151,9.090924,8.867785,10.901669,10.327288,5.691744,1.070250,0.076860,0.007438,0.000000,0.128100,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.555000,4612255.550000,3837,5655,120.782661,162.419037,170.245483,158.997528,146.939697,139.319855,138.228958,137.923172,138.377716,141.708298,144.369446,156.088455,173.815735,191.212418,205.956207,218.253723,220.666946,212.559509,187.683487,165.096710,154.923172,151.253738,144.790939,116.832253,96.286797,109.336380,121.716545,89.361176,41.476879,17.511587,13.162829,8.427285,9.446297,9.077703,10.687618,5.576870,0.461158,0.123141,0.344630,0.009918,0.075207,0.000000,0.003306,0.004959,0.000000,0.000000,0.000000,0.000000,1.246281,0.000000 -601513.355000,4612255.550000,3856,5655,125.106621,165.833893,168.825607,161.296677,147.478500,140.875214,138.106628,138.023987,138.511597,141.709915,144.982651,156.214035,172.883469,190.883469,204.800827,217.404129,219.313232,211.825623,186.982651,164.164444,154.842133,150.073547,144.445435,115.734718,95.470261,109.379349,121.081833,89.057045,42.164482,18.030596,13.131424,7.242162,9.991753,10.786795,9.485964,4.833067,0.881820,0.004132,0.092563,0.000000,0.000000,0.000000,0.016529,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.955000,4612255.550000,3884,5655,117.700020,165.080185,169.898376,161.055405,148.567795,139.683502,137.749619,138.030609,138.104980,141.857056,144.898376,155.823990,173.080185,190.865311,204.749603,217.220657,219.650406,210.138016,185.766144,163.493408,152.460358,148.873581,143.972748,114.782654,94.204140,110.063644,119.914886,89.708275,42.014069,16.902498,13.088448,6.369434,10.485141,10.652082,10.550428,5.807448,0.512398,0.199174,0.143802,0.160331,0.158678,0.261157,0.070248,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601525.555000,4612255.550000,3917,5655,121.933075,165.866959,169.577698,160.073578,148.321487,137.685150,137.189270,136.519852,137.362823,140.883484,141.916550,154.453735,173.255386,188.495041,202.957870,215.346298,218.602493,208.875229,183.883484,162.420685,151.742981,147.015701,142.172745,111.866959,94.288452,106.701675,118.437210,86.205803,41.189281,15.174398,12.924811,5.764473,10.189273,9.855388,10.222328,5.128934,0.733887,0.789257,0.105785,0.148761,0.019835,0.030579,0.001653,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.355000,4612255.550000,3931,5655,118.547951,169.308273,171.696701,162.002487,148.837204,140.151260,138.671921,139.473572,138.771103,143.085144,145.217361,156.804138,174.523148,190.787613,205.754547,216.762817,219.969421,211.779343,185.787613,164.622314,153.812408,149.374390,144.572754,116.440514,94.878525,109.539680,119.903320,87.771088,42.258698,17.002497,13.142994,8.529767,10.117373,12.170265,10.888444,5.852902,1.077689,0.067769,0.203306,0.013223,0.197521,0.000000,0.000000,0.142976,0.000000,0.000000,0.000000,2.173554,0.000000,0.000000 -601532.955000,4612255.550000,3954,5655,119.529762,174.438858,171.934723,161.984314,150.257034,139.521500,138.579346,138.628937,138.909927,142.802490,144.628937,157.166122,173.653732,190.835556,204.744644,216.670242,218.819000,209.645447,186.000839,163.744644,153.405792,149.223984,143.827286,114.471916,95.381004,109.695053,119.405800,90.050423,42.108284,17.728943,13.075226,6.445468,9.821503,11.571918,10.777700,5.747943,1.244631,0.488431,0.140496,0.025620,0.012397,0.115703,0.051240,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601537.555000,4612255.550000,3977,5655,121.266960,167.961166,167.514877,160.159515,149.043808,138.870255,137.514877,138.225632,138.266953,142.531418,144.308273,157.630585,173.985962,190.523148,205.490082,217.961166,219.994217,210.597534,186.911575,164.109924,153.580994,148.795868,144.390915,114.928116,95.275223,108.680183,119.729767,88.994232,42.919857,16.391752,13.126465,6.728937,9.608280,10.014067,10.107452,3.533893,1.003308,0.168596,0.194215,0.016529,0.000000,0.000000,0.066943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.355000,4612255.550000,4011,5655,121.285141,172.962845,168.185944,162.566132,151.731400,139.797516,139.458679,138.830582,139.376038,143.632233,145.574387,157.095047,174.095047,190.582657,205.566147,216.095062,219.417374,208.830597,186.607468,163.516541,152.640503,148.838837,144.136368,114.698357,95.723160,108.557869,120.698357,89.326462,42.425640,17.004152,13.103324,6.137200,10.866132,10.314893,9.169436,5.471909,0.971077,0.000827,0.000000,0.000000,0.033058,0.000000,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.755000,4612255.550000,4028,5655,132.424820,168.854568,171.714066,162.838043,152.028122,139.962006,139.771927,139.019852,139.069443,144.276047,145.887619,156.499191,173.763657,191.218201,206.168610,216.970261,219.581833,211.590103,186.738861,164.581833,153.019852,149.532257,144.400024,114.912415,94.664482,109.069435,118.829773,88.953735,43.003326,16.162001,13.127292,7.381830,8.807454,9.983487,8.484310,4.517363,1.157855,0.132232,0.013223,0.018182,0.109092,0.000000,0.004959,0.100000,0.000000,0.000000,1.083471,0.000000,0.000000,0.000000 -601552.755000,4612255.550000,4053,5655,128.141357,174.174393,171.166122,164.488449,150.736374,140.017365,138.653732,138.711578,139.835556,144.257034,145.695053,155.785965,174.108276,190.909927,204.967789,217.372742,218.182663,211.124802,185.918198,163.678528,152.579346,148.356216,143.736374,114.108276,93.835556,107.025635,118.604149,88.331429,41.744648,16.346300,13.066961,6.485961,8.736379,9.834727,9.330591,4.727280,0.562813,0.154546,0.300001,0.014876,0.109918,0.000000,0.000000,0.048761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.155000,4612255.550000,4090,5655,146.494232,183.634720,177.395050,166.047943,152.965302,141.147125,140.502502,139.742172,138.857880,145.345474,145.353745,156.122314,173.923981,192.056198,206.783478,217.742157,219.485962,210.940506,186.419846,162.717361,152.254547,148.824814,142.436386,112.204979,92.758698,106.601677,116.775230,86.990105,40.609936,17.298365,12.948780,6.137199,8.487619,9.582662,9.109104,4.403314,1.080994,0.368597,0.078513,0.000000,0.028926,0.000000,0.057025,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.155000,4612255.550000,4105,5655,125.745461,181.307449,172.671082,164.398361,151.241333,140.001663,139.125626,138.720673,137.547119,143.076050,142.960342,154.679352,171.076050,189.042984,203.472733,216.241333,217.109100,207.323975,182.208267,159.604965,149.580170,145.290924,139.381821,110.555382,91.811577,105.332245,114.927284,86.191742,39.885967,16.155390,12.671093,6.327282,8.652907,8.445469,8.809931,4.312404,1.033887,0.142149,0.058678,0.023141,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.555000,4612255.550000,4122,5655,119.224808,172.373581,173.456223,159.547134,147.456223,134.671097,135.935547,134.067780,133.266129,135.216537,137.332260,148.671097,165.844650,181.109116,194.290924,204.844650,207.993408,196.257858,173.299194,151.985153,140.712418,138.481018,133.563644,105.927284,87.266129,100.315712,109.604965,80.381828,38.447952,16.173573,12.142169,8.801667,8.872743,9.542164,10.860348,4.676868,0.637192,0.370249,0.178513,0.088430,0.000000,0.000000,0.000000,0.242149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.755000,4612255.550000,4138,5655,118.704971,171.217361,168.680176,158.738022,144.630585,133.804153,133.779358,130.994232,130.878525,132.605804,133.994232,145.308273,163.300003,178.457031,189.713226,200.762817,202.729752,191.961166,169.531418,147.895050,138.118195,135.366135,130.118195,101.605797,85.291748,97.771088,106.837204,77.142990,35.427292,15.667787,11.828945,8.491750,7.077700,10.354561,9.017370,4.026454,0.609092,0.193389,0.104959,0.060331,0.108265,0.000000,0.115703,0.058678,0.000000,1.236364,1.707438,0.000000,0.000000,0.000000 -601573.355000,4612255.550000,4156,5655,123.942993,168.926453,169.323151,160.017365,145.405792,134.752914,134.595886,132.951263,132.488449,134.513245,135.455383,147.347946,163.942993,179.471909,192.885132,203.521500,204.761169,194.075226,170.579346,149.587616,139.298355,137.455383,131.372742,103.992584,86.711594,98.587624,106.397545,78.843826,36.678532,15.892580,11.942995,9.948776,9.878530,11.894232,11.922330,4.066951,0.685952,0.247108,0.000000,0.201654,0.135538,0.000000,0.060331,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601576.155000,4612255.550000,4170,5655,111.633080,168.996704,171.236374,160.095901,144.847961,134.095886,133.633072,131.608276,131.319016,133.666122,134.938858,146.591766,162.732254,178.517380,191.079361,202.079361,203.864487,192.269455,169.195053,149.600037,138.385132,134.806625,130.054565,102.723976,86.798363,97.211586,107.509102,76.781837,36.451256,14.353737,11.823159,9.581833,9.135551,10.461999,11.228941,2.706618,0.670250,0.881820,0.198348,0.211571,0.000000,0.000000,0.011571,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.555000,4612255.550000,4187,5655,126.345467,172.328934,171.213226,159.824799,145.254547,133.081009,134.064484,131.047943,131.601669,134.320679,133.973572,145.651245,163.304138,178.659515,191.047943,203.428101,204.965302,192.973557,169.494217,148.957031,139.428101,135.667786,131.254562,103.246292,86.271088,98.262825,107.485962,79.072739,35.659523,15.650431,11.932250,9.555386,8.471090,9.637207,10.268609,6.408274,0.526448,0.185951,0.113223,0.004959,0.058678,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.155000,4612255.550000,4205,5655,110.473579,175.688431,167.258682,159.333069,144.688431,135.969437,133.630600,132.126465,131.845474,134.878525,134.771103,146.407440,163.787613,179.861984,192.052078,204.126450,205.176041,193.853729,170.771088,149.605789,139.812408,136.688431,131.209106,102.985970,87.010757,97.795891,106.820686,77.581017,36.688454,15.271919,11.928119,9.638858,8.727288,8.891750,9.789271,3.833065,0.716531,0.168596,0.065289,0.001653,0.228100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.820661,0.000000,0.000000 -601586.555000,4612255.550000,4222,5655,114.882652,172.808273,172.395050,160.428085,145.915695,133.750427,134.626450,131.973557,131.874390,134.800003,135.221497,146.452896,162.907425,180.353729,192.122314,203.990082,205.180176,193.386780,170.014862,149.841324,139.155380,136.361984,131.163635,101.386780,85.940506,96.642982,107.452896,78.081009,36.196712,15.262828,11.923986,8.610755,9.266131,10.704147,9.178526,2.340502,0.589258,0.120662,0.153719,0.000000,0.000000,0.017356,0.047934,0.311571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601592.755000,4612255.550000,4253,5655,123.771088,179.423981,169.382645,157.556213,144.952896,132.729752,134.250427,131.423981,131.035553,134.300018,134.027283,145.010757,161.985977,178.316528,189.977692,202.027283,202.771088,190.828934,167.423981,147.828934,137.853729,134.465302,129.663651,101.663651,83.828941,98.068611,107.019020,75.448776,36.068611,13.412414,11.787621,9.385139,9.583486,10.930594,8.228939,2.874388,0.425621,0.255373,0.042149,0.000000,0.071075,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601595.555000,4612255.550000,4267,5655,121.728943,177.811584,171.067780,159.778519,145.026474,133.885971,134.051254,132.762009,132.456223,135.613235,134.679352,146.795074,161.613235,178.828125,190.910751,202.819839,204.100830,190.464478,168.902496,148.563660,138.456223,134.943817,130.109116,101.720680,84.084312,98.109108,106.076050,77.679359,36.447952,14.809110,11.828119,11.337207,9.657039,9.869437,10.535553,3.313232,0.666118,0.127273,0.011570,0.013224,0.143802,0.003306,0.133885,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612255.550000,4283,5655,121.252090,186.946274,177.797516,166.210739,149.475204,138.483475,139.012390,136.731400,137.442154,142.475204,142.557846,153.392563,171.516525,190.351242,204.880173,218.582642,221.475204,209.871902,184.979340,161.152893,150.425613,147.863632,143.318176,113.318207,93.706627,108.343002,116.723167,84.723152,42.227291,19.985968,13.028945,8.019850,10.322331,9.693401,10.086793,5.561166,1.606615,0.234711,0.221489,0.243802,0.156199,0.264463,0.092562,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.355000,4612255.550000,4306,5655,124.958687,179.859497,174.347122,163.066132,148.975220,138.363647,138.123978,136.231415,135.586792,141.479355,140.611588,152.297531,169.727295,189.024811,203.669434,217.173569,220.281006,208.925629,184.512390,160.305801,148.603317,146.396713,142.090927,110.884308,93.231422,106.570259,116.611580,84.735542,40.917374,16.590101,12.917374,7.230592,8.494231,8.236377,11.182662,3.910753,1.549590,0.359505,0.159504,0.067770,0.007438,0.033885,0.178513,0.375207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.555000,4612255.550000,4337,5655,125.200020,172.216553,174.117371,165.497528,150.299194,138.993408,137.274399,136.125626,135.844635,141.398376,142.150436,153.109116,170.737198,189.423157,205.191742,218.530594,221.687607,210.596710,184.447937,159.852921,149.737213,147.390106,142.836395,112.836372,94.067780,107.191742,118.414886,85.241341,41.819855,17.257042,12.985143,8.703320,9.895885,10.761171,9.695058,3.944637,1.176863,0.060331,0.253719,0.102480,0.218182,0.000827,0.195868,0.456199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.155000,4612255.550000,4380,5655,111.182655,174.149597,175.306625,163.885132,148.108276,138.323151,138.488449,136.207458,136.025635,140.066956,141.761169,153.868607,170.496704,188.397537,203.009109,216.562820,220.339676,208.430588,184.083481,160.240509,149.587616,145.546295,142.281830,111.414062,93.976044,107.323151,117.405800,85.397537,44.314896,18.599192,12.934730,7.277699,9.397537,11.039685,11.464480,5.619845,0.741325,0.425621,0.555373,0.430580,0.360331,0.077686,0.380166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.454546 -601631.155000,4612255.550000,4445,5655,114.785141,178.644623,171.338837,161.595062,146.710754,137.867783,136.727295,135.206619,134.619843,138.281006,140.314072,150.289261,168.297516,186.256195,201.008270,213.801666,216.851257,206.644623,181.487610,156.429764,146.214890,143.322327,140.090927,108.975220,91.958694,105.719025,115.231422,84.016548,40.975224,15.226463,12.735556,10.378527,9.394233,8.871915,10.009106,5.609927,0.487605,0.785952,0.393389,0.014050,0.227274,0.034711,0.674382,0.261157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601651.555000,4612255.550000,4547,5655,103.069435,171.317368,175.110764,161.160355,147.085968,137.590103,136.846298,135.375214,135.623154,138.681015,140.714066,152.697540,170.011597,186.871094,202.119034,214.391754,217.523987,205.490921,179.366959,155.804977,146.962006,141.234726,139.036377,108.234718,91.342163,104.160339,114.995056,83.573563,42.937210,16.315722,12.639688,7.169435,9.357040,10.044643,10.466957,5.685134,0.640498,0.284298,0.190083,0.133885,0.144629,0.000827,0.147108,1.178514,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.155000,4612255.550000,4700,5655,107.453720,171.404129,178.098343,160.858688,146.313232,137.073563,136.891739,135.073563,134.792572,138.577682,139.974380,152.346283,170.833893,188.048767,202.495041,215.726456,217.776031,205.048767,179.933060,157.478516,145.999176,144.470245,139.900009,108.957855,91.784309,106.594215,117.709923,83.503319,43.147957,16.115721,12.718200,7.951255,11.266960,11.033075,11.472744,4.918191,0.874383,0.261984,0.056199,0.000000,0.391737,0.006612,0.214051,0.446282,0.000000,0.000000,0.000000,0.000000,1.311570,2.190083 -601714.755000,4612255.550000,4863,5655,117.601677,174.014877,175.411575,161.320679,147.072754,136.833084,137.791763,134.618195,134.229767,136.692581,139.320679,151.485977,170.469421,188.271088,202.899185,214.742157,216.659515,204.651245,179.634720,156.932251,146.634735,143.461182,138.345474,108.899185,90.494232,104.733902,115.915718,82.824814,41.766964,15.269440,12.576880,9.555387,9.530595,10.102496,11.246297,6.070256,0.958680,0.500001,0.266117,0.192563,0.284299,0.026446,0.488431,0.372728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.755000,4612255.550000,4943,5655,124.981010,173.534698,174.080154,160.146271,144.576019,133.799179,135.410751,132.609100,133.055374,135.666946,137.931396,150.080154,170.286774,186.658676,201.138016,214.559494,216.733047,203.617355,179.559494,156.947922,146.038849,143.633881,139.245453,107.617363,91.600838,104.427284,116.815712,83.931419,41.840515,16.297541,12.658696,11.706628,9.221503,10.885139,12.771917,6.704968,0.965292,1.124795,0.000000,0.082645,0.000000,0.026446,0.282646,0.071075,3.001653,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.155000,4612255.550000,4995,5655,128.162003,176.071075,174.533875,161.211563,143.128922,134.054565,134.228104,133.087616,132.343811,135.128937,137.806625,150.699173,168.376862,186.525620,200.889252,214.170242,216.269424,204.831406,179.517349,156.798340,146.542145,142.980179,138.418198,107.889267,90.327286,104.690926,116.294228,85.517365,42.723984,16.669439,12.583490,12.703321,9.130595,11.635552,12.647949,6.899184,1.711573,1.100828,0.417356,0.127274,0.273555,0.014876,0.084298,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.155000,4612255.550000,5030,5655,121.918198,183.513245,178.852081,165.174393,148.075226,136.637207,137.942993,135.207458,136.381012,137.893402,139.496704,152.306625,171.984314,188.769455,202.967789,215.777695,218.273560,204.901672,180.777695,158.538025,146.967789,143.488449,138.736374,108.827286,91.182663,105.389267,118.265305,87.199196,42.645470,17.086796,12.612415,13.000018,9.181009,10.885141,11.879354,6.460341,1.228102,0.737191,0.047934,0.000000,0.129753,0.000000,0.218182,0.478513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.755000,4612255.550000,5063,5655,115.092575,179.241333,177.307449,164.737198,149.241333,136.952087,137.216537,135.117371,135.588440,138.166962,138.695877,152.464478,170.439682,189.555374,202.158691,216.042984,217.406616,203.687607,180.538849,157.720673,146.935547,144.150421,138.200012,106.836372,89.638023,104.249596,116.910751,83.894226,41.753738,15.666134,12.563655,10.830594,9.093404,9.407454,12.023983,6.419018,0.914878,0.147934,0.106612,0.066116,0.001653,0.000000,0.240497,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.355000,4612255.550000,5081,5655,106.356209,184.313248,175.809097,168.850418,151.933060,136.196716,134.725632,132.601669,133.452911,137.519852,137.610764,151.320663,170.089264,189.419846,202.923981,217.502487,218.254547,204.981827,180.998352,157.833069,146.791748,143.667770,138.709091,107.700836,89.800018,104.386780,116.948776,84.866135,43.775227,16.022331,12.609936,12.345469,10.925638,11.773569,13.798362,9.473562,4.119840,2.309919,1.543804,2.014051,0.962811,0.461158,0.419837,1.003307,0.000000,6.059505,0.000000,0.000000,0.000000,0.000000 -601764.355000,4612255.550000,5111,5655,128.799179,196.865295,180.336380,167.106628,149.007462,135.023972,138.594238,136.718201,136.304977,140.371094,139.296707,152.247131,170.949600,190.040497,205.387604,217.470245,218.412399,204.528107,180.263641,159.453735,147.999191,145.147949,139.627289,107.585960,89.577698,106.619019,118.412407,85.437202,42.825638,15.919853,12.693408,11.099188,10.502494,13.051255,12.807454,6.015711,1.140499,0.358679,0.464463,0.023967,0.000827,0.000000,0.336364,0.000000,0.000000,3.269422,0.000000,0.000000,0.000000,0.000000 -601772.155000,4612255.550000,5150,5655,130.096710,191.906601,177.658676,167.666946,149.377701,137.261993,137.997528,137.286789,137.716537,142.237198,140.724808,153.212402,171.658676,190.980988,205.964462,219.956192,218.625610,205.377686,181.427261,159.171082,148.419022,144.799179,139.154556,107.807449,90.815720,107.245461,118.551247,86.071907,43.377708,16.438034,12.650432,13.935553,9.376876,11.397535,11.581006,7.287614,0.961160,0.369423,0.225621,0.177687,0.023141,0.000000,0.248761,0.183471,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.755000,4612255.550000,5173,5655,126.652901,202.152054,182.152054,170.871063,151.995056,136.581818,138.300827,135.036377,135.201660,140.904144,138.565292,150.631424,169.879333,189.234695,202.680984,216.730560,217.490891,202.317337,180.771881,158.069427,147.391754,145.044647,140.127274,107.523979,89.945465,107.978523,119.077698,87.019844,42.970268,15.959523,12.738862,14.699191,9.714068,13.114067,13.054563,9.233070,1.519838,0.303307,0.785951,0.100827,0.194215,0.000000,0.193389,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.355000,4612255.550000,5201,5655,149.445465,196.362808,183.569427,170.329758,154.048767,139.338013,140.734711,137.825623,139.304962,144.908264,140.263641,154.726456,172.065292,190.701660,206.172729,219.379349,220.007446,205.470245,183.453720,159.933060,149.247116,145.809097,141.263641,107.966118,90.866951,108.081818,119.255379,84.329765,43.164486,18.574400,12.842167,14.091751,10.968612,10.762824,12.858693,9.019019,1.164465,0.338844,0.300827,0.087604,0.000000,0.000000,0.108265,1.115704,3.248761,0.000000,0.000000,0.000000,0.000000,2.457025 -601790.955000,4612255.550000,5244,5655,140.510773,203.712402,181.200027,172.100845,151.200027,138.671097,137.720688,136.646301,137.042999,144.555405,140.092590,152.836395,171.745483,191.431427,204.894226,219.885956,219.241333,203.423172,184.076065,161.935562,149.224823,146.241348,141.745483,109.183495,90.646309,109.943825,122.728951,86.042999,43.762005,17.293404,12.885969,15.599191,9.924809,12.822330,13.052910,8.508276,1.757855,0.892563,0.606612,0.496695,0.461157,0.206612,0.717356,0.368596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.355000,4612255.550000,5311,5655,95.774391,158.981003,172.609116,159.823975,144.005798,134.452072,132.964478,130.377701,130.526459,132.171082,134.964478,146.923157,166.030594,182.452087,196.245468,206.972748,210.096725,198.452072,176.187622,153.931412,143.071915,138.352905,134.245468,103.509926,86.113235,102.857033,115.906624,84.377693,42.551258,14.865306,12.204152,7.205800,9.874396,9.713238,10.516545,5.019842,0.298348,0.174381,0.254546,0.014050,0.000000,0.000000,0.150414,0.642976,0.000000,2.091736,0.000000,0.000000,0.000000,0.000000 -601815.955000,4612255.550000,5369,5655,107.979347,166.822327,172.896729,161.227310,145.822342,136.830612,135.243805,132.648773,133.301666,135.533081,137.607468,149.276886,168.326477,185.309952,200.012436,210.227310,212.896729,201.095078,179.037216,157.657059,146.252075,143.227310,136.772766,106.243813,89.392570,105.144638,118.144638,87.640503,46.235554,18.479355,12.433905,10.985138,9.699190,11.329768,12.201671,5.230587,2.136368,0.022315,0.060331,0.097522,0.018182,0.000000,0.114051,0.631407,0.000000,0.000000,0.000000,2.419835,0.000000,0.000000 -601831.155000,4612255.550000,5445,5655,112.109100,160.621490,169.142151,158.522324,143.704163,134.943817,133.646286,131.662827,132.216537,133.613235,135.778534,147.662827,166.720673,184.373566,198.100830,209.671082,210.687607,200.588440,178.943817,156.456207,144.621521,141.472748,134.745468,104.919022,86.489265,102.786789,118.340523,86.629761,42.051262,17.121506,12.249606,8.834724,10.674397,10.253735,10.095057,3.785131,0.914877,0.366117,0.095041,0.431406,0.146282,0.000000,0.140496,0.152893,2.861157,0.000000,0.000000,0.000000,1.669422,0.000000 -601854.555000,4612255.550000,5562,5655,111.398354,169.841324,170.940506,157.775208,144.163620,132.163635,130.940506,128.337204,127.766945,130.915710,134.485962,144.080994,164.163635,181.742157,194.502487,206.395035,208.114044,200.287613,176.494217,154.783478,142.353714,139.775208,133.709091,103.469429,85.378517,101.006615,116.585129,87.097527,43.411594,15.392581,12.155392,8.305799,9.811586,9.614892,11.833075,4.472734,1.485126,0.372728,0.070248,0.000000,0.000000,0.357025,0.030579,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.755000,4612255.550000,5613,5655,126.404976,173.181824,171.057846,158.206604,143.355377,132.785141,131.256210,129.661179,128.785141,132.297531,133.570267,145.826447,164.223145,181.644623,196.454544,207.157028,209.190079,199.388428,177.074387,155.041321,143.611572,139.925613,133.636383,103.991753,84.892578,101.991753,117.694229,89.008278,42.479362,16.419853,12.148780,6.766129,9.308281,9.662825,10.479354,4.633066,0.671902,0.102480,0.014877,0.076860,0.052893,0.000000,0.328100,0.281819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601870.555000,4612255.550000,5642,5655,109.244652,169.938858,169.476044,158.153732,143.013229,131.137207,131.633072,128.955399,128.856216,132.360352,133.310760,144.236374,163.608276,181.591751,195.757034,207.814896,209.723984,198.947113,177.352081,155.277695,143.186783,140.178528,133.327301,103.757050,83.864487,101.889275,117.319023,87.971924,41.558701,15.881010,12.120681,6.154557,8.066958,9.094231,8.931418,4.145462,1.192564,0.183472,0.020662,0.016529,0.000000,0.016529,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601876.955000,4612255.550000,5674,5655,110.360344,176.028107,173.176865,160.871078,146.127274,131.656204,130.821503,129.623154,130.226456,133.995056,134.457855,146.681000,164.871078,182.995041,197.400009,209.185120,211.036362,202.400009,179.019836,156.433060,144.647934,141.416534,135.854553,104.986778,86.193398,104.094215,117.722321,88.507446,44.102497,16.474398,12.350431,7.047944,10.614066,9.715718,12.523154,5.195876,0.815705,0.415704,0.074380,0.050414,0.262811,0.028099,0.029752,0.405786,0.000000,0.000000,0.000000,0.000000,0.684298,0.000000 -601883.955000,4612255.550000,5709,5655,113.928940,183.282654,171.596695,161.654541,143.332230,130.125641,130.381836,128.084320,127.836380,132.390106,132.621506,143.530579,162.935532,180.852905,195.770264,207.811584,209.671066,200.323975,177.555374,155.828094,143.175201,138.654541,134.745468,103.018196,85.109108,100.406631,115.166962,88.447952,41.216549,14.427292,12.249605,7.114060,9.937208,10.968612,11.052082,4.132239,0.876862,0.719010,0.397521,0.016529,0.065290,0.053719,0.065290,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601894.355000,4612255.550000,5761,5655,110.291756,171.812408,167.977692,154.473572,139.713242,129.308289,130.258698,126.382668,126.109932,127.357872,129.167786,141.473572,159.514877,177.184311,189.390915,200.787613,203.242157,192.076859,169.448761,149.126465,137.985977,134.936386,129.027298,98.630600,82.531425,97.754570,111.804153,80.944649,39.688450,15.944646,11.729771,10.076047,7.967783,11.105801,10.455387,4.468603,1.111573,0.433886,0.321488,0.000000,0.056199,0.000000,0.333059,0.904960,0.000000,0.000000,2.000000,0.000000,0.000000,0.000000 -601910.955000,4612255.550000,5844,5655,96.219025,176.929733,166.880142,156.070267,140.144638,128.359512,129.061996,125.632248,126.161171,128.202499,129.161179,141.111588,160.772705,176.367752,190.045441,202.904938,202.913208,190.698334,169.400818,148.078522,137.557846,135.194229,128.318192,99.508278,82.152908,96.888443,110.359520,82.012413,38.805801,15.380183,11.665308,9.728115,9.479354,9.219025,10.763651,4.157857,0.467770,0.051240,0.042149,0.267769,0.000000,0.245455,0.228926,0.199174,0.000000,0.000000,5.343802,0.000000,0.000000,0.000000 -601918.355000,4612255.550000,5881,5655,110.920670,179.168594,170.986786,158.854553,143.176865,130.548767,130.986786,128.391739,128.408264,131.804962,130.573563,143.242981,161.862808,178.656204,192.226456,204.730576,206.176865,192.631409,171.309097,150.879349,139.325623,135.573563,130.581818,99.937202,82.838028,98.623154,111.904144,82.457863,39.234734,15.828943,11.871093,11.130594,8.950428,11.186792,11.453734,4.064472,0.479340,0.445456,0.128099,0.010744,0.000000,0.041323,0.180993,0.161157,0.000000,0.000000,1.290083,1.252893,1.426446,0.000000 -601923.555000,4612255.550000,5907,5655,111.257874,179.200851,171.159531,159.176056,142.655396,130.060349,131.035553,127.663651,128.399185,130.845474,130.804153,142.845474,161.622330,178.597549,191.944656,204.663666,205.390930,192.605804,171.151260,150.787628,139.374405,136.713242,130.572739,99.647125,83.985970,98.333069,111.779350,81.622337,39.250435,14.855390,11.870268,12.511587,9.043818,11.517372,10.709106,6.666126,0.887605,0.266943,0.121488,0.066942,0.004959,0.015703,0.190910,0.066116,3.177686,1.954546,0.000000,0.000000,2.782645,0.000000 -601930.355000,4612255.550000,5941,5655,117.708282,183.592575,171.542984,159.385941,143.898361,128.848770,129.551254,127.931412,127.352905,132.352905,130.542984,142.369446,161.005783,178.452072,192.063660,204.823990,206.476883,192.171097,171.666946,150.542984,138.245483,135.295044,130.700012,99.063644,83.228951,98.410751,112.328110,79.468620,38.295059,13.736382,11.881837,12.279353,9.723984,9.653736,10.410759,4.792570,0.553720,0.212397,0.249587,0.061157,0.110744,0.000000,0.213224,0.241323,0.000000,0.000000,0.000000,3.833058,0.000000,0.000000 -601936.555000,4612255.550000,5972,5655,122.647957,187.565292,170.854553,160.689255,143.028122,129.416550,129.879364,128.176880,127.110764,134.019852,129.697540,142.499176,159.871078,178.209915,192.375214,206.532242,206.300827,191.350418,170.416534,149.771912,139.168594,136.176880,129.400024,98.821510,83.391754,99.085968,110.350433,79.557045,37.821507,14.765307,11.763655,12.804149,9.035553,9.776049,10.145469,4.236372,0.174381,0.280166,0.000000,0.004959,0.005785,0.000000,0.028099,0.104959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601940.155000,4612255.550000,5990,5655,117.646301,189.109116,175.282669,162.018204,143.885971,131.885956,131.067780,128.894226,129.687607,136.323975,131.786789,144.340515,160.208298,179.431427,194.175217,207.828125,207.563660,192.001663,171.547134,151.307465,140.514069,136.505798,131.290924,100.481010,84.034729,99.811584,111.406631,79.522331,37.679356,15.588449,11.935557,12.506627,9.289272,8.781007,10.764478,6.672738,0.862812,0.199174,0.226447,0.000827,0.086778,0.000000,0.326447,0.395042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601944.755000,4612255.550000,6013,5655,121.326462,188.359543,176.450439,163.690109,143.392593,131.814056,132.318192,129.838852,130.632233,136.871933,132.351242,144.144653,161.078552,180.450439,195.028961,208.376053,209.500015,192.301682,170.723175,151.913239,139.921524,136.681854,131.681824,99.516541,83.938034,101.185959,110.376038,78.938034,39.012413,15.409109,11.971094,14.598365,7.537205,9.088445,12.092578,4.676041,0.951242,0.236364,0.322315,0.048760,0.002480,0.000000,0.041323,0.012397,0.000000,0.000000,1.420661,0.000000,0.000000,0.000000 -601951.955000,4612255.550000,6049,5655,96.824806,144.940506,150.816528,139.444641,126.081009,116.469437,115.477699,112.114067,111.800018,114.023155,115.403320,126.014893,142.403305,157.841324,169.651245,181.353729,183.824799,173.238022,151.808273,132.783493,123.717369,120.907455,115.436378,87.948776,72.494232,86.262825,99.717369,72.940514,34.395065,13.906631,10.494234,7.124805,9.021504,9.091751,11.281834,4.764472,0.940498,0.304133,0.228100,0.332232,0.003306,0.000000,0.096695,0.410744,0.000000,0.000000,1.358678,0.000000,0.000000,0.000000 -601961.155000,4612255.550000,6095,5655,108.876877,154.711578,155.455383,147.017365,133.116547,123.562820,121.265305,119.728111,119.009102,122.058693,123.777702,134.942993,152.992569,169.662003,182.405792,196.728119,197.182663,187.488449,163.934723,143.182663,132.314896,127.992577,122.554558,93.777710,77.529770,94.471924,108.166130,81.133080,37.554565,16.843819,11.141341,9.383483,10.808279,11.789271,10.352082,5.383480,0.607440,0.564465,0.171901,0.209918,0.094215,0.000000,0.271901,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601968.955000,4612255.550000,6134,5655,105.247963,148.165298,152.685974,145.429764,129.380188,119.760353,117.975227,116.247955,116.115730,118.041344,120.041344,132.520691,148.983490,166.520676,180.380188,192.413239,193.966965,183.785141,161.066132,138.495880,129.305817,124.528954,120.000023,92.983498,74.057869,90.537216,103.429787,76.148773,35.743816,14.698364,10.909110,6.826458,9.800014,8.409103,8.203321,6.398356,0.282646,0.438018,0.301654,0.000000,0.162810,0.001653,0.429753,0.285125,0.000000,0.000000,1.094215,0.000000,0.000000,0.000000 -601977.755000,4612255.550000,6178,5655,103.690933,141.823166,148.327301,134.889282,121.872749,113.740517,109.393410,106.492584,107.013245,108.922333,110.955391,121.806633,140.740524,156.319031,170.914062,183.013229,184.600006,174.236374,152.666138,130.600021,120.566963,116.798370,110.509109,83.162003,64.542168,82.219856,102.004982,74.740517,34.657871,12.608281,10.046301,7.664474,8.995881,9.857038,10.082659,6.852905,1.131408,0.495870,0.046281,0.144629,0.817356,0.433058,0.087604,0.234711,6.324794,3.880992,0.000000,0.000000,3.635537,0.000000 -601982.755000,4612255.550000,6203,5655,104.459518,137.558685,147.327271,133.277695,120.120674,109.682655,107.228111,104.261169,103.897537,105.112411,106.525635,118.228111,136.831421,152.914062,166.252899,179.145477,178.988464,167.996704,147.393417,125.211586,116.302490,110.914062,104.781830,78.079353,61.137215,80.608276,98.517365,74.252907,35.087620,13.023985,9.525638,9.661997,9.654558,10.706627,11.808278,6.833896,2.066946,0.467770,0.814878,0.447935,0.000000,0.373554,0.001653,0.119835,2.101653,0.000000,3.442149,0.000000,1.659504,0.000000 -601293.155000,4612245.550000,2755,5705,196.700012,209.063644,202.989273,196.749603,189.071915,189.162827,197.096710,203.030594,211.162827,221.823975,232.749603,252.071915,275.270294,294.807465,308.923157,318.402527,317.857086,294.824005,240.964478,203.303314,191.691742,181.121490,168.700012,138.385956,121.501663,119.790916,109.080177,72.237206,34.162830,18.357870,15.336383,14.023157,12.028942,12.505801,13.650431,7.048772,3.040504,1.645461,1.239673,0.265290,0.592564,0.556199,0.331406,0.771903,2.633884,1.247108,1.129752,0.000000,0.000000,0.000000 -601299.355000,4612245.550000,2786,5705,190.848785,205.600845,205.228958,200.096725,193.832260,194.774399,202.501678,208.154572,214.253738,224.187622,234.823990,251.286804,272.658691,291.476898,304.253784,312.642212,311.873627,294.708313,248.138046,213.857056,201.658707,194.592590,182.518204,152.881851,133.460342,134.865295,123.898354,83.857040,38.022331,18.852911,16.592583,12.310760,12.665305,13.993406,13.289274,6.763648,2.451247,1.214053,0.807441,0.627274,0.372728,0.000000,0.680993,0.541323,1.390083,0.000000,0.000000,2.051240,0.000000,0.000000 -601308.955000,4612245.550000,2834,5705,177.775208,210.130585,209.039673,203.105789,197.510757,197.560333,205.188431,212.337204,218.808273,229.361984,240.122314,257.940491,279.874390,298.676025,312.642975,321.419830,320.452911,303.180176,252.882645,217.800003,205.080994,197.238022,188.163635,155.444641,136.833069,137.998352,127.485962,86.155388,40.866138,22.269440,17.105804,12.781009,15.178531,13.293406,14.628943,8.598360,3.520671,1.542981,0.660332,0.547109,0.703307,0.355372,0.613226,0.270249,0.000000,0.000000,0.000000,0.000000,1.402479,0.000000 -601323.555000,4612245.550000,2907,5705,168.495865,207.256195,205.661163,200.528931,195.818176,196.223145,201.826447,207.090912,213.644623,222.826447,234.710739,250.123962,271.074402,289.933929,305.074402,314.743835,313.752106,300.727295,254.776855,219.330582,206.892563,199.793396,192.545456,160.239670,139.710754,141.809937,135.371918,93.752090,43.743820,21.066133,17.504150,12.182663,14.235555,14.575225,13.399192,7.629766,3.021496,1.934717,0.833060,0.294216,0.522315,0.061157,0.104133,0.508266,2.955372,0.000000,0.000000,0.000000,0.000000,0.000000 -601345.155000,4612245.550000,3015,5705,165.683487,190.997528,195.187607,187.096710,180.931427,177.691757,184.633911,188.947937,191.981003,201.080170,209.799179,225.328110,245.261993,263.691742,278.840485,290.261963,293.716522,290.369415,261.799194,236.038849,225.774384,222.914886,217.700012,191.063644,167.840500,176.476883,183.567780,141.179352,68.881836,23.658695,19.790926,15.098364,16.883490,19.906630,26.672745,16.211586,2.004963,0.280166,0.304133,0.012397,0.071075,0.000000,0.052066,0.242976,2.559505,0.000000,1.098347,0.000000,0.000000,0.000000 -601371.355000,4612245.550000,3146,5705,142.741333,180.633896,174.253723,165.402496,156.113235,147.171082,149.724808,151.377701,153.873566,160.981003,166.022324,180.055374,198.427277,217.014053,231.658691,242.195877,243.964478,241.542984,217.914886,196.873566,185.947937,182.807449,181.154556,153.642151,129.700012,142.452072,160.121490,130.212402,62.204155,20.019854,16.468615,10.167784,14.297538,17.069441,22.686798,13.015718,1.596698,0.179339,0.028926,0.077686,0.042149,0.000000,0.056199,0.123968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601386.555000,4612245.550000,3222,5705,151.028107,187.284302,174.672729,167.276031,155.028107,145.548767,146.804962,148.201660,149.697525,155.523972,158.342148,171.771912,192.193390,210.598343,224.441345,234.813248,234.904144,227.821503,203.763641,179.540497,167.036362,163.705795,160.218185,131.854553,109.069435,121.796707,138.978516,107.681000,50.102501,19.608284,14.565308,10.523983,11.342166,12.435554,13.847952,5.614058,1.328931,0.205787,0.271076,0.028099,0.098348,0.209918,0.011570,0.105786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.355000,4612245.550000,3296,5705,133.965302,174.502487,169.940506,160.742157,146.824799,139.419846,138.816528,139.353729,139.485962,144.361984,146.766953,160.585129,180.601654,196.692566,209.651245,220.204971,221.783478,215.833069,195.469421,175.403305,164.031418,162.709091,159.709091,130.783493,107.676048,124.328941,148.064468,115.519020,55.378536,19.028118,14.519028,11.551256,12.353737,16.245472,18.609936,9.790095,0.507441,0.341323,0.225621,0.020661,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601410.755000,4612245.550000,3343,5705,132.934723,177.678513,174.810745,161.257019,148.942978,139.397537,139.306625,139.182663,141.149597,144.868591,147.075211,160.628922,179.959503,197.050430,209.562820,220.728119,221.058685,215.405792,194.678528,174.496689,162.942978,161.843796,158.827271,128.893402,105.678528,123.281830,147.752899,117.513237,54.273575,18.867788,14.438861,10.456213,13.593404,15.580181,19.247128,11.665302,0.794218,0.218183,0.066943,0.126447,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.785951,0.000000,0.000000 -601419.955000,4612245.550000,3389,5705,129.500000,177.929749,169.053726,160.417358,146.442154,137.053726,138.425613,138.979340,138.632233,144.938019,145.475204,159.855377,178.541321,195.913223,209.706604,221.012390,221.805786,213.615707,192.789261,173.904953,162.004135,162.425613,156.590912,127.219025,105.028938,120.913231,142.417358,110.665306,51.268616,17.889277,14.235557,14.207456,11.809935,13.327291,18.654566,8.471913,1.135540,0.000000,0.194216,0.105785,0.000000,0.000000,0.037191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601422.955000,4612245.550000,3404,5705,132.671906,182.465286,169.663620,161.762802,150.506638,138.333084,139.911591,140.176056,140.977707,146.126465,147.209106,161.134705,179.771057,198.266937,211.366104,223.771057,224.952881,215.440491,196.167755,175.341309,164.704956,162.944626,160.299988,128.118195,106.564476,122.878525,144.713242,113.217369,52.804150,18.677706,14.572747,13.047125,11.029768,15.076878,19.986795,9.263651,1.128928,0.112397,0.114877,0.000000,0.031405,0.000000,0.000000,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.955000,4612245.550000,3429,5705,132.889267,183.699188,171.517365,162.038025,147.732239,137.195053,140.583481,139.343811,140.434723,144.839676,146.062820,159.856216,179.128937,196.029770,209.971893,221.195038,221.112396,212.021484,190.773560,171.178528,160.360336,160.071091,154.872742,125.401665,104.418198,120.071091,138.261169,107.467781,50.806637,17.516546,14.079358,14.282661,10.186792,14.809109,14.422332,7.516542,0.908267,0.207439,0.088430,0.028926,0.033885,0.000000,0.044628,0.213224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.355000,4612245.550000,3451,5705,143.031418,180.758698,171.775223,164.684326,150.907455,139.651245,139.461166,140.535538,141.733887,146.899200,147.238022,161.047958,179.039688,197.411591,210.643005,221.601669,223.039688,212.304153,192.543823,172.155396,161.634735,159.626465,155.709106,126.221497,106.072739,122.023148,138.618195,107.006622,49.609936,18.138035,14.155391,15.347952,11.422330,15.552911,16.958694,7.614887,0.945457,0.142976,0.076860,0.028926,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601438.555000,4612245.550000,3482,5705,148.176865,189.342148,174.284302,167.201660,151.961990,138.499191,140.507462,140.366943,142.052902,148.292587,147.044647,160.697525,178.383469,196.614883,210.672729,223.656204,222.714050,210.895874,190.606613,171.664459,159.317352,158.069427,153.763641,123.416550,103.565308,120.623161,136.110764,102.697540,47.656212,17.845472,13.978532,13.018198,10.171091,12.238034,16.306629,8.190922,0.791737,0.146281,0.337191,0.000000,0.000000,0.033884,0.033058,0.008265,0.000000,0.000000,0.000000,0.000000,1.361157,0.000000 -601445.155000,4612245.550000,3515,5705,138.689270,195.094208,178.317337,168.193375,152.540497,141.028107,142.044632,141.408264,143.821487,150.953720,148.656204,161.333878,178.614868,197.912384,213.317337,226.143784,227.267761,213.028091,192.523956,172.705765,161.366928,158.218170,154.763641,123.424812,103.201668,120.102501,132.738861,97.904144,47.854565,18.571920,14.069440,13.702496,11.667785,14.386794,14.623983,8.838029,0.730580,0.255373,0.003306,0.274381,0.038844,0.000000,0.046282,0.129753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.155000,4612245.550000,3535,5705,155.081009,189.378525,177.436371,169.469421,152.874405,139.477707,142.899200,141.138870,144.138870,151.006638,147.601669,160.138870,177.469421,196.452896,212.345459,225.039673,225.114059,212.246292,191.097534,171.452896,160.502502,158.345459,153.527298,121.295876,103.361992,117.833061,130.031418,95.419838,45.254562,18.328943,13.957043,13.531421,10.204149,12.371918,11.823154,8.829764,0.976861,0.226447,0.283472,0.020661,0.014050,0.000000,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.355372 -601453.155000,4612245.550000,3555,5705,156.421509,202.826462,180.644638,170.694229,155.347122,140.752075,143.297531,143.371918,144.975220,152.884308,148.834732,161.809937,179.553741,198.173569,213.702499,227.619858,226.966965,214.090927,194.016541,172.826462,161.685974,159.545471,154.727295,121.479355,103.363655,120.049606,130.330597,94.702492,44.471092,19.644648,14.066133,13.335553,9.743819,12.762828,13.169436,8.345467,1.000002,0.207439,0.000000,0.014050,0.016529,0.351240,0.000000,0.168595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.355000,4612245.550000,3571,5705,121.096710,172.245468,171.658691,160.923157,147.749603,138.212402,137.022324,136.840500,139.642151,143.022324,143.724808,157.576050,176.576050,192.931412,207.526459,219.873566,222.402496,212.278519,189.096710,168.724808,157.435547,154.104965,149.518188,119.650421,98.121498,115.104965,127.716537,90.617363,45.385971,17.223156,13.592581,10.414889,9.991753,11.869437,11.676049,6.271085,0.865291,0.188431,0.089257,0.167769,0.019008,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.959504,0.000000,0.000000 -601459.155000,4612245.550000,3585,5705,113.087616,169.401672,169.343811,160.773560,145.525635,138.004974,138.467789,137.277695,138.566956,140.360336,144.707458,156.971909,177.062820,193.170258,207.459518,221.352081,223.244644,214.087616,189.798355,169.004974,159.517365,155.624802,149.418198,118.112411,98.872742,114.021500,127.624809,93.608276,44.715725,18.082664,13.583490,8.171088,10.754564,10.915719,13.651257,4.471081,1.519837,0.152894,0.378514,0.000000,0.000000,0.000000,0.029753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601461.755000,4612245.550000,3598,5705,105.455399,161.306625,169.447113,159.306625,146.992584,137.364487,137.157883,137.009125,137.885147,141.050446,143.976059,156.612411,175.967789,192.504974,206.356216,218.587616,222.314896,214.281830,190.554565,167.496704,157.645462,154.331421,148.554565,119.405807,98.414062,114.942993,126.480186,92.695053,42.736382,17.486794,13.504977,9.205798,10.795884,11.783488,11.990926,5.831415,0.500828,0.064463,0.022315,0.355373,0.000000,0.000000,0.076033,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.355000,4612245.550000,3626,5705,113.923157,162.278519,165.551254,156.534729,145.956223,137.658707,137.501678,135.724808,137.385971,140.096725,143.377716,155.658707,174.344635,191.542984,205.939682,218.989273,222.096710,213.005798,189.369431,168.121490,156.286804,154.336395,147.336395,117.559517,97.080177,112.981003,125.022324,91.939682,43.790928,16.147953,13.394234,8.265301,9.886793,10.552910,11.436380,4.412405,0.195869,0.260331,0.185125,0.007438,0.045455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.355000,4612245.550000,3641,5705,118.781830,164.352097,165.831436,157.682678,147.343811,138.781830,138.013229,137.203323,137.500839,140.963654,144.674393,156.302505,176.310776,193.004974,207.285965,219.699188,222.170258,213.699188,190.707458,169.228134,156.905807,153.492584,148.236389,118.699188,96.550423,113.649597,125.864479,91.112411,44.277702,17.519854,13.476051,7.754560,10.540513,12.781836,12.353736,6.542986,0.959507,0.001653,0.078513,0.000000,0.012397,0.000000,0.009091,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601474.555000,4612245.550000,3662,5705,119.352905,161.212402,170.402496,160.708267,147.939682,140.195877,138.981003,139.088440,139.683487,143.113235,146.923157,159.600830,178.212402,194.857040,208.923157,221.848770,225.675217,215.493393,192.997528,169.923157,159.881821,156.162827,151.154556,120.220688,99.319855,116.055397,125.881844,92.981018,45.493412,19.220678,13.741341,9.094229,10.990100,13.434728,14.076876,8.675220,1.227275,0.232233,0.166117,0.014050,0.140497,0.000000,0.093389,0.072727,1.244628,0.000000,0.000000,0.000000,0.000000,0.000000 -601477.955000,4612245.550000,3679,5705,118.733902,162.502487,168.378525,160.345459,147.411575,139.816528,138.287613,137.676041,138.866119,142.717361,145.023148,156.411575,176.634720,193.750427,208.320663,219.957031,224.444641,213.337204,190.097534,167.667770,158.056198,154.502487,149.072739,117.163643,96.915726,113.601662,125.238022,93.659523,44.791756,17.275225,13.552085,7.972738,12.236380,11.920678,13.269438,5.673564,1.720665,0.109092,0.000000,0.000000,0.063637,0.000000,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.555000,4612245.550000,3702,5705,111.909103,167.413223,169.578506,160.818176,146.801666,138.429764,137.644638,136.743820,138.504150,141.975220,144.900848,156.685974,175.512390,191.371902,207.190079,219.297516,222.495865,213.487610,189.975204,168.173553,157.917374,152.710754,148.727295,117.371918,97.685959,111.545471,124.826462,90.165306,42.752087,17.590929,13.520680,8.909103,11.491752,9.654561,11.276874,6.890092,0.931407,0.185952,0.290910,0.133059,0.014876,0.000000,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.955000,4612245.550000,3734,5705,114.299194,157.803299,169.026443,158.795029,145.224792,136.935532,136.704147,135.290924,136.456207,139.571899,142.588425,155.671066,172.538834,190.406601,205.348755,217.671066,220.844620,212.877686,188.447922,166.571899,156.604950,150.414871,146.472717,115.671089,95.654564,111.414894,121.216545,90.299194,42.803322,16.558695,13.315722,6.735550,9.419025,8.720678,8.933071,4.270256,0.592564,0.065289,0.003306,0.000000,0.008265,0.000000,0.012397,0.000000,0.000000,0.000000,2.238017,0.000000,0.000000,0.000000 -601496.955000,4612245.550000,3774,5705,126.701675,168.321503,169.842163,161.585968,148.379364,138.941345,137.585968,137.577698,138.585968,142.751266,143.924820,157.387619,175.048782,192.511597,207.792572,219.139679,222.189255,213.404129,190.528122,168.412415,156.742996,153.395889,147.445480,115.189278,97.073570,111.156219,122.280182,89.883492,43.313248,17.745472,13.404151,10.198362,10.866134,11.619852,11.371916,5.974391,1.324796,0.219009,0.087604,0.000000,0.000000,0.000000,0.026446,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.355000,4612245.550000,3791,5705,113.673569,164.574402,169.500015,159.508286,146.384308,138.417374,137.342987,136.028946,137.409103,139.822327,143.483490,154.020676,173.574402,192.028946,205.045471,218.929764,221.400848,212.417374,187.723160,165.863647,155.053741,151.690094,144.954559,116.483490,94.822327,110.301666,120.814064,88.673569,41.781013,17.033075,13.177705,7.539681,10.577703,11.238032,10.966130,5.920672,0.970250,0.052893,0.009091,0.012397,0.000000,0.000000,0.008265,0.271902,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.155000,4612245.550000,3815,5705,117.679359,168.084305,168.034714,161.150421,147.861160,139.894226,137.993393,136.993393,137.481003,141.522324,145.414886,156.109100,174.968597,191.596710,206.282654,218.274384,221.952072,212.910751,188.216537,165.786789,156.158691,150.671082,146.018188,115.249603,94.745476,109.968613,122.200020,88.671089,41.828121,16.143822,13.274399,7.828111,10.487620,12.786795,11.014891,6.143812,0.705787,0.320662,0.158678,0.028926,0.000000,0.000000,0.021488,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.355000,4612245.550000,3856,5705,110.051254,166.596725,169.638031,159.819855,147.580185,139.125641,137.968628,137.290939,138.290939,142.233078,143.059525,155.200027,173.910751,190.803314,205.795044,217.861160,221.340500,211.935547,187.299179,165.679367,153.762009,150.464493,145.018204,113.728935,93.869438,108.927284,120.092575,87.514061,40.927292,15.961175,13.183491,6.178525,9.152083,10.024811,10.030593,2.653724,1.399176,0.141323,0.295042,0.020662,0.081818,0.000000,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.155000,4612245.550000,3870,5705,112.739685,165.359528,169.285141,161.541336,148.946304,140.351257,137.648773,137.516541,138.574402,142.276871,143.318192,156.351257,173.367783,190.731415,207.070267,217.458679,221.574387,212.334717,186.053741,165.995880,154.863647,150.095062,146.136383,114.648773,94.070259,108.599190,119.549606,89.004143,43.078533,17.151258,13.285142,5.417368,8.228116,11.235555,9.695881,3.533891,0.628101,0.117356,0.001653,0.015703,0.009091,0.000000,0.009918,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601520.755000,4612245.550000,3893,5705,122.028107,169.325623,168.358688,161.995041,149.581818,140.019836,138.879349,138.937195,138.391739,143.110748,145.019836,156.523972,174.895874,192.094208,207.548752,218.928909,222.705765,213.515686,187.912384,165.647934,155.102478,151.631409,145.672729,115.383484,96.102501,111.143806,121.077698,90.069443,43.168617,17.405804,13.242994,7.789271,10.172746,9.881835,11.685139,5.115712,0.984301,0.450414,0.362811,0.004959,0.004132,0.000000,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.955000,4612245.550000,3914,5705,132.947113,163.666122,170.839676,160.294235,147.310760,138.600006,137.385132,136.922333,137.955383,141.839676,144.500839,155.038025,173.302490,191.715714,206.500839,218.715714,221.806625,211.839676,188.004974,165.938858,154.525635,150.269440,143.690918,113.277702,93.566956,109.170258,119.211586,88.269432,41.550434,16.332249,13.062829,6.991746,11.200844,7.471090,10.269437,5.469431,0.315704,0.000000,0.073554,0.000000,0.008265,0.000000,0.004959,0.004133,0.000000,0.000000,1.083471,0.000000,0.000000,0.000000 -601527.755000,4612245.550000,3928,5705,126.228111,166.575226,171.748779,161.029770,148.385132,139.401672,138.550430,137.021500,137.872742,142.740509,144.079346,156.459518,174.186783,191.914062,206.732239,219.038025,221.657867,212.847946,186.872742,163.690918,155.244644,149.385132,144.963654,114.418198,93.467781,107.980179,119.922325,87.285965,41.748783,17.013241,13.178532,6.945468,9.168611,10.493404,8.461996,4.544636,0.457854,0.580993,0.033885,0.023141,0.035538,0.000000,0.047934,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.555000,4612245.550000,3942,5705,127.469437,170.626450,169.188431,160.899185,149.816528,139.560333,138.552078,138.039673,138.337204,143.287613,144.510757,155.378525,174.609924,191.238022,206.866119,219.122314,222.469421,213.353729,188.816528,166.973557,155.651245,150.841324,147.163635,115.568611,95.775223,108.791748,120.833069,89.229767,42.601677,17.216547,13.378532,7.005798,10.610761,9.968609,11.725635,4.491743,0.561160,0.347108,0.435538,0.066116,0.074380,0.252893,0.179339,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.955000,4612245.550000,3959,5705,120.735550,173.702484,172.074387,162.462814,149.289261,139.272751,139.396713,138.140503,139.223160,143.421509,145.421509,157.371902,174.471069,192.528931,207.611588,219.719025,223.537201,213.595062,188.851242,166.355377,154.958679,151.900833,145.818192,115.669426,95.272743,109.834717,121.760345,89.859520,42.537209,17.890928,13.256218,6.688443,9.991753,10.285141,11.228939,5.695877,0.847937,0.479340,0.320662,0.228099,0.550414,0.026446,0.115703,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601538.155000,4612245.550000,3980,5705,118.544640,174.181000,169.486786,163.247116,149.891739,139.858688,139.478516,138.742981,139.164459,143.792572,144.875214,156.387604,175.081818,192.032242,207.247101,219.073547,221.751221,213.065277,188.602478,165.916534,154.495041,149.693390,145.536362,116.428940,95.280182,109.181000,121.147942,88.809113,41.990929,17.594233,13.230597,7.022325,10.271919,11.566959,11.494230,4.762818,0.897525,0.152067,0.172728,0.033058,0.108265,0.000000,0.025620,0.100000,0.000000,1.356199,0.000000,0.000000,2.451240,0.000000 -601542.155000,4612245.550000,4000,5705,131.958679,179.206604,171.752060,163.404953,151.380173,139.380173,139.190079,138.570251,139.239670,143.247940,144.702484,156.785126,173.892563,191.801651,205.388443,217.826462,221.190094,211.958694,186.966949,165.074387,154.148758,149.561981,145.545456,114.933899,95.239677,109.281006,121.603325,89.867775,43.462833,18.097540,13.231423,7.459514,10.416546,11.091751,12.190923,4.704139,1.421492,0.237192,0.385951,0.046281,0.089257,0.000000,0.083471,0.000000,0.000000,1.298347,0.000000,0.000000,0.000000,0.000000 -601547.555000,4612245.550000,4027,5705,128.632233,176.425629,170.210754,164.194214,150.723160,139.128113,138.871918,138.458694,138.789276,143.483490,145.227295,155.574402,173.119858,190.871918,204.590927,218.557846,220.037186,210.202484,186.417374,164.103302,152.144638,146.971085,143.045471,113.747948,92.367783,108.384315,118.822327,87.995880,41.260349,17.147953,13.004151,7.811581,10.203322,10.278528,12.357867,5.790092,0.760333,0.280992,0.585952,0.038843,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.755000,4612245.550000,4048,5705,124.748772,183.633057,176.071075,164.203308,149.657852,139.955368,139.550415,138.310745,137.831406,143.484299,143.492554,155.310745,172.566940,190.633057,204.740494,217.641312,220.161987,210.401657,185.484299,164.128922,151.872726,148.228088,143.145447,111.988441,92.004974,105.352081,117.583473,87.492577,41.393410,15.410762,13.013241,7.114886,9.783486,8.971091,9.085137,2.705791,1.087606,0.669423,0.133058,0.046281,0.027273,0.000000,0.000000,0.220662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.755000,4612245.550000,4063,5705,124.768608,176.057861,172.396713,162.537201,148.396713,137.438034,137.644638,135.487625,135.917374,139.512405,140.000015,151.289276,169.545471,185.942169,200.247955,211.595062,214.082657,204.338852,179.438034,157.859528,147.198364,143.950424,138.727295,108.132248,89.611588,103.363655,112.876053,84.644646,40.107460,15.512415,12.611588,6.228110,7.439685,8.093403,10.234725,3.680998,0.565290,0.480993,0.071901,0.028100,0.005785,0.000000,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.955000,4612245.550000,4089,5705,117.919029,167.414902,169.158707,158.340515,142.819855,133.861176,133.142166,130.861176,131.282669,132.795059,133.571915,145.365311,163.100845,177.795074,189.753738,202.778519,204.208267,193.795074,169.679367,149.836395,139.340515,136.216553,131.381836,103.067787,85.613243,98.406631,109.390099,79.183487,37.282661,15.963655,11.943821,9.457865,8.763652,11.373569,10.576876,4.501662,0.776862,0.468596,0.405786,0.136364,0.000000,0.000000,0.053719,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.755000,4612245.550000,4103,5705,120.672737,168.714066,163.755386,156.887619,141.209930,131.796707,132.028107,129.226456,128.747116,131.185135,131.904144,143.490921,160.019852,175.474396,189.350433,200.185150,201.523987,190.995056,167.441345,147.821503,136.879364,134.523972,129.945465,101.168617,82.912415,96.176880,105.152084,77.069443,35.358696,13.668611,11.813243,9.159516,9.801667,8.603321,9.347947,2.968602,0.000000,0.179339,0.172728,0.000000,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601568.755000,4612245.550000,4133,5705,122.115730,171.578522,171.561996,159.281006,143.826462,134.793411,133.818192,131.760345,130.900848,134.272751,134.247955,145.876053,161.983490,177.785141,190.867783,202.471085,203.685974,192.454559,169.214890,149.479355,138.669434,136.669434,131.545471,103.528938,86.066132,98.049606,106.404976,78.504150,36.884319,16.357042,11.958697,9.766954,10.729768,11.119852,10.254561,5.566950,1.000829,0.176860,0.262811,0.126446,0.000000,0.000000,0.037191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.555000,4612245.550000,4152,5705,110.526459,175.014053,169.782654,159.055405,146.303314,134.129776,135.129776,132.716537,132.642166,134.476883,135.295059,145.881821,163.716553,178.757858,191.989273,203.212402,203.815720,193.485138,170.245468,151.237198,139.650421,136.063660,130.790924,103.030594,86.443817,99.551254,107.782661,78.311584,37.633904,15.326464,11.890102,10.609104,10.502495,9.854561,10.266131,5.443810,0.614878,0.085951,0.123141,0.000000,0.000000,0.000000,0.076033,0.312397,0.000000,0.000000,0.000000,0.818182,0.000000,0.000000 -601577.555000,4612245.550000,4177,5705,120.133904,173.514069,171.877716,159.381851,144.125641,132.861160,133.406616,130.687607,130.728943,134.076050,133.671082,145.786804,161.943832,177.795074,190.274399,202.166962,203.662842,192.604980,169.398376,148.290939,138.530609,136.200012,130.745468,100.621506,86.059525,97.638031,107.720680,76.481010,37.001671,14.752085,11.885970,7.805797,8.667785,8.585966,10.181005,3.753726,0.481820,0.113224,0.267769,0.000000,0.000000,0.000000,0.073554,0.000000,1.283471,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.355000,4612245.550000,4206,5705,121.637199,175.810745,168.645447,158.794205,144.827286,133.397537,132.951248,131.108276,131.736374,133.504974,133.455383,146.182663,163.546280,179.513214,191.232224,203.546280,204.901657,192.885117,170.232224,150.000839,139.909927,137.934723,130.463654,102.405800,84.860344,98.802490,107.108276,77.364487,37.455387,14.264480,11.860350,10.204147,8.528113,8.463652,9.128941,4.020669,0.578514,0.085951,0.075207,0.000000,0.076860,0.000000,0.069422,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601590.755000,4612245.550000,4243,5705,114.638855,183.019012,173.010757,164.614059,149.390915,135.514877,136.845459,135.572739,135.316544,139.638855,138.961166,150.597534,166.176041,185.258682,198.804138,213.126450,215.035538,202.093399,179.266953,157.531418,145.704971,143.002487,139.209091,108.630600,91.109940,105.390930,114.862007,82.514900,40.010765,15.812416,12.655392,9.623155,9.319851,9.938031,10.885968,4.832240,0.806613,0.086777,0.044629,0.093389,0.007438,0.004959,0.195042,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601593.755000,4612245.550000,4258,5705,128.994232,180.514877,174.969421,164.085129,148.514877,135.523148,135.713226,135.663635,133.870255,139.333069,140.349594,151.432236,168.903305,186.812408,200.936371,215.333069,218.969421,206.820663,182.506622,158.605789,148.498352,144.820663,141.663635,110.374397,92.514893,106.308281,116.258690,83.547958,39.457043,15.452911,12.878531,7.147946,8.010760,8.790923,9.514892,4.388440,0.689258,0.361158,0.119835,0.223969,0.147934,0.008265,0.290084,0.578513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.955000,4612245.550000,4279,5705,113.703323,176.190918,174.298355,163.976028,148.281830,137.438858,136.719849,136.356216,136.314896,141.281830,141.141342,153.000839,169.645462,188.182663,203.215698,217.984299,220.538010,210.364456,185.091751,161.868591,149.909927,146.992569,142.918198,112.314888,93.447121,108.661995,119.066956,85.438858,42.918201,16.342995,12.992581,8.600842,10.915720,9.899188,10.787621,4.257034,0.680994,0.331406,0.207439,0.271903,0.563638,0.133058,0.376860,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601603.155000,4612245.550000,4305,5705,119.573570,177.689270,177.044647,165.565308,149.127289,138.276031,136.879349,135.342163,136.019852,140.383469,140.813232,152.565308,170.185150,188.276047,203.416550,216.523972,220.763641,208.639679,183.408279,160.317368,149.176880,145.474380,142.218185,111.515717,94.152084,106.317368,117.375221,83.953728,41.573578,16.673573,12.928945,8.128114,11.195059,9.801667,10.017372,5.073564,0.921489,0.251240,0.280167,0.080166,0.093389,0.030579,0.321489,0.269422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601611.355000,4612245.550000,4346,5705,107.027290,172.506638,170.787613,163.597549,147.333084,137.390915,136.994232,134.390930,134.746292,139.010757,140.085129,151.564484,168.490082,186.605789,201.068604,214.895050,218.663635,208.399185,182.465302,157.614075,147.109924,144.068604,140.390915,110.341331,92.324799,106.746284,115.754555,84.423981,41.746304,15.923160,12.762830,7.518194,8.612411,10.099189,10.249602,5.084306,1.508268,0.436365,0.283472,0.172728,0.000000,0.132232,0.352067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601624.555000,4612245.550000,4412,5705,115.016541,171.925629,174.157028,161.256210,148.611572,137.404953,136.231400,135.016525,134.859497,138.413223,140.553726,151.107437,169.661163,187.462814,201.462814,215.181824,218.413223,207.727280,181.487610,158.685944,146.884293,143.826447,140.000000,110.074387,91.636375,106.719017,117.066124,85.099182,41.958698,17.242167,12.727292,6.823978,10.285141,10.201667,11.022331,4.595050,1.414880,0.223141,0.096695,0.180992,0.137191,0.083472,0.152893,0.845456,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601644.755000,4612245.550000,4513,5705,115.337204,170.609940,171.180191,160.973557,145.023148,135.824814,134.783493,133.337204,133.857864,137.353729,138.758682,149.948761,167.800018,185.965302,199.824799,213.676056,215.436386,203.758698,178.568604,155.072739,143.990082,141.766953,137.618195,107.576874,90.023155,102.659515,114.353737,83.114059,41.618195,15.368613,12.510762,7.410757,9.153733,9.827287,10.816544,7.145464,1.090912,0.208265,0.175207,0.071901,0.130579,0.039670,0.179339,0.425620,0.000000,0.000000,0.000000,0.000000,1.276033,0.000000 -601675.955000,4612245.550000,4669,5705,104.765305,159.434708,167.476028,155.376877,140.228119,129.864471,131.740509,129.922333,130.062820,132.881012,135.244644,145.608276,164.757019,181.757019,195.434708,207.649582,210.087601,198.062805,172.971893,151.930588,141.261169,137.897537,133.600006,104.095879,86.490089,100.845467,111.932243,81.516548,41.062004,15.524811,12.145473,10.023981,10.204974,11.995055,14.195056,6.690092,3.952897,2.019009,2.433886,1.955373,1.771901,1.408265,0.764464,1.285125,0.000000,0.580992,0.000000,1.181818,0.000000,0.000000 -601707.955000,4612245.550000,4829,5705,116.000015,171.314056,177.892563,163.247955,147.173569,136.471085,137.057861,134.644638,135.388443,137.281006,139.942169,152.000015,170.851257,188.834717,203.330582,215.619858,218.355392,206.752060,180.925613,158.066132,147.512405,145.099182,139.454559,109.404976,90.380180,106.545471,117.090927,84.719025,42.975227,16.481836,12.677705,10.434727,9.262828,11.350430,12.285140,6.104141,0.890912,0.282645,0.143802,0.036364,0.275208,0.300000,0.278514,0.417356,0.000000,0.000000,0.000000,1.166116,0.000000,0.000000 -601722.555000,4612245.550000,4902,5705,114.166962,179.166931,177.497513,164.431396,148.456207,137.299164,138.629745,136.596710,135.671082,138.828094,140.803299,153.530594,171.993378,189.604950,204.778503,216.439667,218.489243,206.431396,181.960327,158.051254,146.662796,144.555359,139.563629,108.786797,90.241341,106.406631,118.274391,85.142166,43.952084,15.797540,12.687622,11.729768,9.691752,11.276051,11.028942,6.029762,0.886780,0.466117,0.274380,0.004132,0.130579,0.000000,0.347935,0.257852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.555000,4612245.550000,4942,5705,114.617363,177.303314,176.071915,163.848770,148.840500,136.964478,138.385956,135.162827,135.261993,137.774384,139.617371,151.063644,171.261993,188.460342,202.691742,215.121490,217.947937,204.228943,179.584305,157.460342,146.096710,145.452072,139.790924,108.518188,91.501663,104.261993,118.154556,85.923149,42.146301,16.712416,12.708283,10.936379,9.836380,11.543818,12.049603,6.294224,1.242151,0.567770,0.136364,0.065290,0.069422,0.000000,0.210745,0.088430,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.955000,4612245.550000,4984,5705,119.568604,179.370255,175.601654,164.965302,148.676041,137.684311,136.700836,134.833069,134.692566,137.882645,137.965302,150.659515,170.742157,189.766953,202.990082,216.494217,218.750427,204.428101,181.238022,158.485962,147.692566,145.337204,140.436371,108.775215,91.709106,107.419838,119.932236,87.246292,44.576878,16.666132,12.766961,11.847123,10.160347,12.325635,15.511587,7.057860,1.029754,1.363639,0.537191,0.124795,0.001653,0.000000,0.129753,0.776034,0.000000,0.000000,0.000000,0.782645,0.000000,0.000000 -601745.155000,4612245.550000,5015,5705,121.598358,181.077682,179.474396,165.871078,150.317352,137.176865,139.681000,135.995056,136.970245,139.548767,140.143799,153.234711,172.730576,189.689270,204.433060,217.102478,219.639679,206.028107,181.333893,158.292572,147.036362,145.548767,139.127274,107.705795,91.656212,105.813232,117.449600,84.639679,41.292587,17.501673,12.647952,12.585139,9.209107,10.836378,12.533073,7.389266,1.260333,1.352068,0.754547,0.223141,0.521489,1.026447,0.272729,0.314877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.955000,4612245.550000,5029,5705,134.271912,183.990921,178.809113,164.205811,147.825623,136.023987,138.387604,135.751266,135.511597,139.081833,139.114883,152.387619,171.015717,190.619034,203.437210,216.751236,218.610748,204.792587,181.693405,158.577682,147.891754,145.346283,140.081818,108.619019,90.825630,106.280174,118.123161,86.660339,43.561180,16.557869,12.734729,13.381834,10.761174,10.887618,12.921504,6.304969,0.933886,0.642977,0.680166,0.059505,0.123141,0.000000,0.161158,0.165290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601751.355000,4612245.550000,5046,5705,126.713249,183.118195,175.961166,163.448761,147.969421,136.704971,136.291748,134.085129,134.134720,138.861984,137.738022,151.010757,170.795868,188.308273,201.969421,215.547943,216.928101,204.101654,181.300003,158.233887,146.696701,145.093399,139.845459,107.440506,89.754555,106.795876,117.936371,85.457039,43.002502,16.111588,12.713242,11.228939,9.850428,10.914064,11.550429,6.636373,0.971903,0.436365,0.046281,0.072728,0.081818,0.010744,0.366943,0.535539,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.955000,4612245.550000,5074,5705,124.742165,192.180176,181.089264,167.485962,152.047943,138.948761,139.882645,137.609924,137.138855,140.345459,141.097534,153.700836,172.766953,190.692566,204.485962,217.890915,217.800003,203.816528,181.651245,158.857864,147.130585,144.279343,139.527283,107.808281,89.353737,106.163651,119.783485,85.849602,42.089279,17.233902,12.684317,12.334727,8.829767,12.476050,13.385141,6.023975,1.033886,0.000000,0.328927,0.043802,0.091736,0.028099,0.000000,0.636365,0.000000,0.000000,0.000000,0.000000,2.891736,0.000000 -601765.955000,4612245.550000,5119,5705,120.547119,191.613235,173.819839,162.113235,145.377701,132.691742,133.253723,131.414886,132.852905,138.910751,136.340500,148.976868,166.885956,184.848770,199.278519,213.166946,213.547119,199.398361,177.927277,156.261993,145.104965,142.154556,137.063644,106.022324,88.981003,106.604965,117.770256,84.340508,41.849606,15.752910,12.460349,14.512413,10.786794,12.131420,13.861172,7.552076,1.978516,0.858679,0.757853,0.152893,0.000000,0.030579,0.419010,0.725621,0.000000,0.000000,0.000000,0.000000,1.456198,0.000000 -601777.955000,4612245.550000,5179,5705,133.150421,197.786789,182.142151,170.712402,153.679337,139.770248,138.919006,137.365280,138.770248,144.885941,142.018173,154.241318,172.563644,192.662827,206.861160,221.456207,220.547119,205.761993,184.299179,162.720673,151.233047,148.877686,143.381805,109.481003,92.728935,111.257858,122.034721,88.266129,43.009933,18.281010,13.034730,14.760346,11.172744,12.271916,13.359519,7.923152,1.116532,0.517357,0.023141,0.161985,0.096695,0.029752,0.108265,0.400000,0.000000,1.724793,0.000000,0.000000,0.000000,2.407438 -601789.555000,4612245.550000,5237,5705,104.633904,163.113235,171.633881,158.501648,144.658676,134.104980,133.947952,130.848785,131.237213,132.873566,134.873566,146.749573,165.947922,181.666946,195.823975,207.385941,209.609085,199.493393,176.485138,152.972717,143.526443,139.336365,133.972748,104.700020,86.121506,101.790924,115.129768,82.807457,41.262005,15.042994,12.179358,8.673567,8.246297,8.279355,9.117369,4.585131,0.729754,0.879340,0.189257,0.000000,0.145455,0.355372,0.017356,0.107438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.555000,4612245.550000,5317,5705,110.986786,160.185150,170.978531,157.920685,144.466141,134.375214,132.879349,129.928940,131.259521,133.474396,135.565308,147.119034,165.928940,182.738861,196.722336,207.209930,210.540512,199.449600,178.085968,155.094238,144.383484,140.226471,135.218201,104.871086,88.094223,103.218193,116.515717,85.176872,41.953739,16.404152,12.292582,10.587618,9.912414,12.182662,10.511584,6.607449,1.287606,0.062810,0.252894,0.002479,0.258678,0.037190,0.121489,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,2.106612 -601823.555000,4612245.550000,5407,5705,88.594223,170.395874,170.817352,159.478516,143.247131,133.908279,132.800842,129.461990,130.197525,132.098358,134.552917,146.850418,165.949585,183.329758,195.974365,207.585938,210.288422,199.916519,177.181000,154.709915,142.610764,140.577698,134.354553,104.420670,86.197540,102.288445,116.900009,85.321510,41.552914,16.163656,12.214069,8.318196,9.419852,10.323157,11.536378,5.806621,0.486778,0.187604,0.195042,0.000000,0.004132,0.548761,0.061984,0.538018,0.000000,0.000000,0.000000,1.140496,0.000000,0.000000 -601846.955000,4612245.550000,5524,5705,117.744644,166.000824,169.157852,158.215698,142.967789,132.967789,132.819016,130.240509,129.281830,132.810760,134.430588,145.860336,164.893387,181.926437,196.199173,206.827286,210.133057,199.538010,178.099991,156.009094,143.587616,139.794235,134.554565,103.397537,84.331421,102.091751,116.356201,88.538033,41.728123,15.429771,12.232250,7.685139,9.542167,10.209106,8.847122,4.369430,0.833060,0.337191,0.410745,0.000000,0.072728,0.000000,0.000000,0.056199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.955000,4612245.550000,5614,5705,122.310760,169.302490,168.583481,157.715714,142.971909,132.352081,129.368607,128.418198,128.542160,132.666122,132.988449,145.409927,163.261169,182.079346,195.980179,206.641342,209.021500,198.476044,176.971909,155.492569,144.137207,139.715714,133.781830,103.161995,84.533897,102.591743,117.302490,85.823151,42.079361,15.556217,12.162003,6.177697,8.381008,8.179356,8.866956,4.145461,0.676861,0.057025,0.066942,0.000000,0.000000,0.000000,0.437191,0.432233,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601877.155000,4612245.550000,5675,5705,113.104156,175.674408,169.996719,160.443008,145.401672,132.674393,131.500839,129.707458,128.566956,133.765305,133.864471,146.352081,164.872757,182.707474,196.219864,208.409943,211.624817,200.682678,179.509125,156.947144,145.690918,140.244644,134.872742,103.707451,85.509102,103.054558,116.409927,87.467781,41.029774,15.292581,12.261176,7.289267,7.771917,8.404148,9.909931,4.704141,1.041324,0.143803,0.138017,0.071075,0.014876,0.000000,0.115703,0.044629,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601890.155000,4612245.550000,5740,5705,113.228943,169.716537,172.947922,155.633896,140.774384,130.509933,130.666946,126.295052,127.576042,128.782654,130.328110,142.757858,162.121490,177.245468,190.881821,202.757858,204.749603,192.625626,170.807449,150.733063,138.228943,135.823975,129.609100,100.146301,83.179359,101.038864,113.311577,82.865311,39.129768,16.542994,11.782664,11.027287,10.199189,9.531420,11.306626,3.960338,0.934713,0.053719,0.054546,0.000000,0.074380,0.000000,0.097521,0.118182,2.224794,0.000000,0.000000,0.000000,0.000000,0.000000 -601907.755000,4612245.550000,5828,5705,101.758698,179.940506,170.122314,158.684311,142.295868,129.337204,130.684311,126.700844,127.502495,130.824814,130.824814,142.973557,161.692566,178.700836,192.246292,205.304138,205.965302,193.783478,172.031418,149.485962,139.717361,136.229782,129.981827,100.362000,82.709106,98.262825,111.221497,81.287628,40.287621,15.221506,11.816547,11.513238,9.585967,10.347123,11.155385,4.217363,0.483472,0.173554,0.214877,0.000000,0.000000,0.000000,0.118183,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,2.285124 -601921.555000,4612245.550000,5897,5705,102.865318,178.452057,168.104950,159.088425,140.799179,128.501663,128.104965,126.790916,126.832245,131.014053,129.328110,141.873566,159.906601,178.171066,191.344620,203.832230,204.295029,191.518173,169.501648,148.857025,137.138031,134.716537,128.700012,99.146301,82.592590,97.014061,110.840508,80.468620,36.394234,14.761176,11.700019,14.512413,10.133075,10.352083,10.892576,4.325629,0.224794,0.399175,0.118182,0.000000,0.000000,0.000000,0.000000,0.372728,0.000000,0.000000,1.223141,0.000000,0.000000,0.000000 -601933.355000,4612245.550000,5956,5705,133.009933,187.596710,171.927277,164.175217,143.869431,131.390091,131.142151,128.604965,129.819839,135.381821,131.935547,143.828110,161.266129,179.505798,194.274384,207.778519,207.357040,193.580170,172.373566,151.580170,140.472733,135.976868,131.654556,100.497528,84.009926,100.695877,112.009926,80.406624,39.745476,16.423985,11.968614,13.631419,9.713237,11.574395,10.719849,6.041331,0.923969,0.494216,0.238017,0.057025,0.123142,0.480992,0.132232,0.470249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601940.355000,4612245.550000,5991,5705,129.581833,194.514877,175.266953,163.052078,144.779343,132.242157,132.275223,130.928116,131.589264,138.762817,134.167786,146.118195,163.374390,181.597534,196.787613,210.919846,210.217361,194.027283,173.936371,152.258682,141.225632,137.217361,131.754562,100.886795,83.952904,100.845467,110.357864,79.283485,38.002502,15.273572,11.977706,13.849604,9.073570,9.751254,11.769438,6.111580,0.746283,0.365290,0.275207,0.237191,0.204959,0.518182,0.184298,0.280166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601947.355000,4612245.550000,6026,5705,102.650429,143.204132,150.823959,138.609085,124.981010,115.435547,114.319855,112.138023,110.700012,112.724808,113.947945,124.534729,141.914871,156.187592,168.485123,180.625610,181.328094,171.245453,150.658676,133.509933,122.071922,119.319855,114.790924,87.823982,72.666962,87.179359,99.501671,72.807457,34.113243,13.623159,10.435557,8.213237,9.584314,10.458694,10.606627,4.723977,1.255375,0.329753,0.516530,0.254546,0.052893,0.000000,0.065290,0.140496,0.000000,0.000000,1.303306,0.000000,0.000000,0.000000 -601956.755000,4612245.550000,6073,5705,114.750435,146.957031,152.395050,141.229752,126.411583,118.676048,115.552078,114.188446,114.262825,116.593407,118.932243,129.147125,146.890915,163.271103,176.766968,188.824814,190.428116,180.915726,157.395050,136.271088,127.304146,123.932243,117.345467,90.403320,72.667793,89.122330,100.816536,76.246307,35.188450,13.613240,10.667788,6.342986,8.514890,9.661997,8.304973,4.103314,1.215705,0.501654,0.113224,0.036364,0.127273,0.237190,0.399175,0.504133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601962.555000,4612245.550000,6102,5705,99.919846,143.605804,152.928116,141.308289,128.622330,118.820679,115.853737,113.242165,113.754562,116.514893,117.564476,129.275223,146.903336,163.828949,177.217377,189.481842,190.134735,180.415726,157.151260,136.283493,127.862000,124.176048,116.845467,89.209106,71.167786,89.258690,102.787621,75.506622,34.076878,12.528942,10.622334,5.432240,8.581004,8.705796,9.665303,5.428108,1.182648,0.564465,0.318182,0.206612,0.000000,0.299174,0.233058,0.700827,0.000000,0.000000,1.883471,0.000000,3.544628,0.000000 -601966.755000,4612245.550000,6123,5705,113.870277,140.423981,148.134720,138.349594,124.432243,116.283485,113.465302,111.019020,111.118195,112.085136,114.928116,126.440514,144.837204,160.944641,175.481827,187.787613,188.787613,178.349594,156.614059,134.738037,126.688446,121.233902,114.572739,86.341339,69.473579,88.126457,103.093407,78.729774,36.638866,13.163655,10.415722,6.219845,8.196708,10.033072,9.181008,6.687613,1.311573,0.133885,0.288431,0.389257,0.086777,0.000000,0.228100,0.064463,0.000000,2.097521,5.425621,0.000000,0.000000,0.000000 -601973.555000,4612245.550000,6157,5705,125.452927,140.271088,148.469421,138.411575,122.527290,114.196709,110.494232,106.725632,106.609932,107.783485,108.510757,120.221504,138.998352,155.890915,169.279343,181.477692,181.370255,171.254547,149.171906,128.576874,117.775223,115.023155,108.072739,79.948784,63.320683,82.560356,101.676048,75.114067,35.601677,13.493406,9.824813,7.362821,8.352079,10.043817,9.871916,5.901662,2.300005,0.559506,0.142150,0.600001,0.871075,0.000000,0.000000,0.166116,0.000000,1.952066,2.852067,0.000000,0.000000,2.956199 -601980.155000,4612245.550000,6190,5705,121.950432,141.619858,137.115723,125.512413,110.008278,101.396713,97.966957,94.190102,92.809937,94.396713,95.314064,106.082664,124.611588,140.165298,152.231415,163.338852,163.694229,152.677704,133.669434,114.024811,104.049606,100.925636,94.636383,67.454559,53.396713,73.661171,93.033073,72.479355,33.181835,11.914066,8.603325,11.109933,8.913236,11.258691,14.591751,10.759518,1.860335,0.701654,0.168596,0.711573,0.304959,0.815704,0.393389,0.000000,8.251241,11.371902,5.052066,5.563637,1.581818,2.766116 -601283.155000,4612235.550000,2705,5755,199.965302,216.031418,208.725632,202.023148,195.105789,195.494217,204.485962,209.642975,217.304138,227.552078,240.370255,259.147125,283.023132,303.576904,317.469452,327.659546,327.403351,306.634735,254.105789,217.221497,203.725632,194.279343,181.345459,149.147110,131.130585,130.626450,119.841331,77.833084,36.477707,19.257046,16.485970,13.538860,13.523157,13.626463,11.866134,7.149600,1.895874,1.598352,1.713229,0.284298,0.514878,0.000000,0.325621,0.542151,1.265289,4.790083,2.305785,3.002480,0.000000,0.000000 -601287.955000,4612235.550000,2729,5755,196.541321,210.938019,213.301651,206.657028,201.309921,202.599167,211.194214,217.318176,223.252060,234.731400,247.731400,264.838837,286.541351,305.582672,320.169434,329.351227,329.433899,307.144653,256.227264,221.913223,207.632233,199.888428,188.772720,156.392563,136.152908,137.028946,124.574402,83.623993,39.351265,19.938036,17.161175,14.776877,13.496712,15.180182,12.738034,9.717371,2.736371,1.510749,0.998349,0.964465,0.493390,0.463637,0.561159,0.680167,0.000000,2.485950,0.000000,0.000000,3.690910,0.000000 -601295.355000,4612235.550000,2766,5755,203.576019,212.699997,212.840485,207.567780,203.658691,205.427277,213.452057,218.625610,225.493378,236.542969,248.700012,265.716553,284.782684,302.956238,314.824005,321.947968,321.129791,301.509949,252.129761,216.799164,204.567780,194.154556,183.972733,153.212402,135.162827,133.848770,121.245461,82.328110,39.063660,18.422333,16.724812,12.186794,12.325638,11.927291,12.745471,6.738854,1.819841,1.419013,0.488431,0.329753,0.530580,0.006612,0.347936,0.619836,1.319835,0.000000,0.000000,0.000000,0.000000,0.000000 -601306.555000,4612235.550000,2822,5755,186.146286,215.005798,212.997528,208.947937,203.171082,206.650421,215.245468,219.906616,227.385956,239.319839,251.419022,267.071899,290.154572,309.104980,322.881836,332.799194,332.633911,312.245483,262.476868,225.906616,212.237198,202.501663,191.972733,161.204147,143.658691,143.113235,127.964470,85.138023,39.080185,21.369440,17.452085,13.931423,13.822332,15.497539,12.797536,8.414889,2.769430,2.122320,0.863638,0.552894,0.116529,0.061157,1.071078,0.538844,1.419008,1.370248,1.151240,0.000000,0.000000,0.000000 -601323.755000,4612235.550000,2908,5755,189.760361,213.066147,215.206635,211.074402,205.314087,206.049622,211.859528,217.033081,222.537201,231.553741,242.140503,257.603333,276.471100,295.768616,311.347137,319.603333,324.570282,314.884338,274.942169,245.487610,232.033081,227.371918,219.000015,187.256226,164.024826,170.206650,167.082672,119.900833,56.000019,24.588449,19.909111,16.994234,19.722334,17.527288,22.751259,13.121506,3.083480,1.891741,0.804962,0.133058,1.270251,0.035538,0.282645,0.733885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601349.755000,4612235.550000,3038,5755,152.483490,195.524811,188.863647,185.169434,179.466965,176.417374,184.590927,186.219025,190.400848,199.855392,207.475204,224.789261,244.326447,263.904968,279.037231,291.772766,296.045502,296.028961,270.871887,246.119827,237.392563,234.987610,230.590912,202.508286,181.252075,190.152908,203.516541,163.516541,83.194237,26.037209,20.962828,13.990927,20.504978,28.990101,36.524811,26.466135,2.533891,0.853721,0.044629,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,1.209917,1.125620,3.023141,0.000000,0.000000 -601369.155000,4612235.550000,3135,5755,142.896713,180.549606,179.764481,170.599182,161.409103,152.243820,156.020676,158.805801,162.004150,169.747955,175.152908,192.318192,213.351257,234.285141,250.425613,262.119843,265.409119,259.367767,230.954559,204.632248,192.962830,189.020676,184.227295,153.731415,129.318192,140.483490,151.450424,118.045471,52.871922,19.607456,16.747953,8.644641,12.328942,13.245471,16.479357,8.329765,1.752070,0.371902,0.860333,0.210744,0.000000,0.000000,0.097521,0.130579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601379.955000,4612235.550000,3189,5755,152.870255,181.870255,173.622314,164.465302,152.746292,142.977692,145.465302,147.952896,149.283478,157.399185,159.225632,173.961166,194.027283,213.481827,227.944641,239.845459,242.060333,238.729752,214.837204,191.969421,182.159515,178.572739,174.936371,145.440506,120.581009,135.787628,157.019012,124.969437,60.258698,21.151258,15.903324,8.249600,13.414892,14.623158,20.162001,11.195056,1.474384,0.308266,0.366117,0.224794,0.000000,0.507438,0.000000,0.150414,0.000000,0.000000,1.143802,0.000000,0.000000,0.000000 -601387.555000,4612235.550000,3227,5755,136.639679,173.011566,165.565292,155.523987,142.152069,131.433075,132.623154,132.598358,133.036377,139.251236,139.656204,152.714066,170.904129,187.044632,200.829758,210.912399,213.119019,210.119019,193.449585,174.011566,164.284302,163.094223,160.218201,131.771912,108.185135,126.168610,157.771927,132.375214,66.912422,18.231422,14.565310,9.671088,12.847125,18.028944,24.808283,11.423156,1.071905,0.366943,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601396.955000,4612235.550000,3274,5755,127.294243,171.790100,166.492569,158.038025,144.385132,133.823151,135.071091,133.666122,135.847946,139.310760,142.922333,155.393402,174.856216,190.261154,203.327271,214.046280,215.988434,211.128922,191.219833,172.707458,161.864471,162.170258,159.327286,129.633072,107.352089,124.938858,153.814896,124.509102,58.847954,18.558695,14.484318,12.828115,11.589272,17.628944,22.966961,14.776875,1.136368,0.100001,0.358678,0.042149,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,2.259504,0.000000,0.000000,0.000000 -601403.955000,4612235.550000,3309,5755,150.372742,177.248779,172.290100,160.967789,147.934723,138.017365,138.794235,138.207458,139.678528,144.157867,146.298355,160.719849,179.414062,196.662003,210.504974,222.364471,223.876877,219.017365,198.587616,179.314896,168.901672,168.232239,166.281830,135.141342,113.199196,128.381012,154.711578,123.389267,59.513248,18.259523,15.116548,11.567784,13.283487,18.498363,22.904976,11.794230,1.333062,0.380993,0.202480,0.067769,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,1.144628,0.805785,0.000000,0.000000 -601412.555000,4612235.550000,3352,5755,124.600845,179.815720,170.394226,158.716537,147.526459,136.385956,138.237198,136.501663,140.014053,143.295044,144.270264,158.361160,177.650421,195.071899,208.030579,218.014038,218.683472,211.733047,190.253708,171.501663,160.981003,158.840500,155.154556,126.220680,104.666962,119.724808,144.162827,114.352913,52.402496,17.534727,14.104978,14.264481,11.661175,14.548779,20.171093,8.551250,1.201656,0.150414,0.030579,0.416529,0.000000,0.000000,0.000000,0.016529,1.308265,0.000000,0.000000,0.000000,0.000000,0.000000 -601417.555000,4612235.550000,3377,5755,135.528946,183.024796,171.842987,161.925629,149.768616,136.710754,139.157043,137.834732,139.925629,144.272751,145.404968,159.082657,176.735550,195.033051,208.082642,219.107437,219.900833,209.347107,187.900833,167.611588,157.330597,156.264481,152.545471,123.371918,102.652908,117.396713,137.016541,106.785141,49.909111,18.056217,13.867786,10.919850,12.504975,13.253736,16.095060,7.639681,0.828100,0.162810,0.072728,0.351240,0.017356,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601420.755000,4612235.550000,3393,5755,121.404144,185.858688,173.090088,162.627289,147.875229,137.668610,139.371094,138.470261,140.792587,144.338043,144.181015,158.577698,176.990906,195.139679,208.957855,219.610748,218.875214,207.685120,188.470245,168.594238,157.065308,155.552917,151.718201,121.817368,100.999184,116.528107,134.371078,101.428940,46.974400,16.000845,13.792582,12.419849,8.854563,11.384315,15.736382,6.291745,0.664464,0.001653,0.077686,0.000000,0.017356,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,1.295041,0.000000 -601424.555000,4612235.550000,3412,5755,149.041321,190.768600,173.958679,165.231400,150.619827,139.925613,141.380173,140.801651,142.099167,147.867767,146.719009,161.157028,179.752060,197.512390,211.661163,224.413223,224.190079,213.338837,191.512390,172.016525,161.049591,158.735535,153.181824,123.272736,104.413239,116.975212,134.619858,101.404976,48.404984,18.111588,13.925639,12.629770,12.144648,12.362827,15.096713,8.480177,1.207440,0.211571,0.134711,0.038017,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601432.355000,4612235.550000,3451,5755,141.547958,186.895050,174.349594,165.961166,153.936386,141.382660,140.357880,139.746307,142.233902,148.225647,148.324814,160.771103,178.655380,198.184311,210.597534,225.134720,225.605789,214.564468,192.407440,173.845459,161.969437,159.423996,152.300018,121.341347,103.622337,118.316551,132.490097,95.547958,46.498367,19.350431,13.845473,15.510761,9.975223,13.079357,13.899190,8.257864,1.922317,0.000000,0.058678,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601435.155000,4612235.550000,3465,5755,150.714050,193.614883,174.581818,169.441330,153.565292,140.714050,142.168594,141.854553,143.540497,149.771912,148.292572,161.408264,178.085953,198.234711,213.036362,226.763641,227.474380,214.623138,194.259506,173.771912,163.069427,159.672729,154.036362,123.052910,103.920670,118.962006,132.681015,96.028107,46.598370,17.693405,14.003325,14.032248,12.443819,12.278529,14.890100,9.433895,1.606614,0.079340,0.160331,0.119009,0.102480,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.755000,4612235.550000,3478,5755,169.154572,198.278519,176.245468,169.253723,150.873566,139.493393,140.956207,141.542984,141.997528,148.840500,145.947937,160.369431,177.609100,195.733063,212.509933,225.113235,225.832230,212.782654,192.468597,171.650421,160.220673,158.542984,153.336380,120.080185,101.815720,115.898361,129.716553,94.947952,45.708282,16.823986,13.939688,14.196709,8.705803,10.294231,13.814066,5.740506,0.499176,0.152067,0.158678,0.150414,0.008265,0.000000,0.000000,0.132232,0.000000,1.419008,0.000000,1.121488,0.000000,0.000000 -601441.155000,4612235.550000,3495,5755,150.035553,197.738037,178.870270,170.258698,152.399200,141.415726,141.779358,141.027298,143.399200,150.357880,146.779358,161.242172,177.704987,197.085144,212.101669,226.217377,226.663666,213.498367,192.060349,170.828949,160.101669,158.572754,152.390930,120.820679,101.671913,117.514893,130.217377,94.556213,45.093407,17.763653,13.853738,13.823157,10.948777,11.258694,13.753733,6.443811,0.529753,0.079339,0.070248,0.025620,0.031405,0.000000,0.056199,0.166116,0.000000,0.000000,0.000000,0.000000,1.357851,0.000000 -601447.555000,4612235.550000,3527,5755,171.511597,199.924789,179.263657,171.106628,153.329773,141.371094,142.569443,142.032257,143.519852,151.883484,147.197540,160.280167,178.181015,196.346283,211.536362,225.900009,227.081818,212.982651,193.693390,173.147949,160.428925,157.809097,153.263657,120.676872,102.404137,118.982658,130.057037,94.172729,45.776051,18.854565,13.933076,14.566133,11.956215,12.046298,12.109933,7.674392,1.091738,0.488430,0.121488,0.017356,0.085951,0.000000,0.012397,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.555000,4612235.550000,3552,5755,120.749603,163.452072,170.675217,157.501663,146.253723,136.981003,137.567780,136.402512,137.972733,140.691742,142.832245,155.947937,174.799179,191.708267,205.369431,218.113235,219.625626,211.857040,188.567780,168.700012,156.542984,153.923157,147.063644,117.071930,95.633911,112.774406,126.443825,93.427299,45.055389,18.192581,13.369440,7.810756,10.295059,12.509107,12.416545,6.295052,1.298350,0.675208,0.012397,0.115703,0.133059,0.000000,0.085124,0.273554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.755000,4612235.550000,3568,5755,118.274391,167.993393,168.538849,158.960342,146.357040,137.381821,137.166946,136.638031,136.323975,140.183487,141.745468,155.646286,173.885956,190.844635,204.753723,217.530594,220.447937,211.555374,188.580170,166.836380,156.166946,152.133896,145.745468,116.604965,95.315712,112.150421,125.233070,92.869431,42.902500,17.671093,13.249605,10.838856,9.671918,10.157042,12.703321,7.657863,0.692564,0.419010,0.495042,0.009918,0.076033,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,2.439670,0.000000 -601464.155000,4612235.550000,3610,5755,108.563652,165.381805,165.348755,159.051239,144.646271,137.621475,136.142151,135.596710,136.084305,140.191727,143.249573,154.737183,173.390091,192.373550,204.638016,217.530579,220.629745,212.761978,188.869415,167.249573,156.728912,151.902466,146.836365,114.927292,96.051254,111.034729,123.241341,90.315720,42.555393,17.795061,13.348780,10.047124,8.901670,11.236380,12.279356,4.464471,1.055374,0.520663,0.006612,0.082645,0.014876,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,8.198349,0.000000,0.000000 -601467.555000,4612235.550000,3627,5755,107.337204,162.824799,165.766953,157.494217,144.593399,137.047943,136.047943,134.775208,136.279343,140.552094,141.841339,155.618195,174.527283,192.552094,206.014893,219.014893,222.560349,213.031433,189.915726,166.923981,156.990082,153.733887,148.254547,116.370262,95.791756,110.849594,125.056213,89.461182,42.510761,13.947952,13.477704,9.014891,8.563653,11.831423,13.169437,3.853726,0.477687,0.365290,0.000000,0.387604,0.024794,0.000000,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.755000,4612235.550000,3648,5755,101.855392,165.632248,167.334732,157.466965,145.028946,137.772751,136.392578,135.690094,136.128113,140.326462,143.235550,155.219025,174.756210,191.152908,207.061981,218.838837,222.425613,213.880173,189.822327,167.731415,157.483490,153.665298,147.500015,116.219025,96.590927,111.475220,124.896713,90.376060,43.227291,15.709108,13.409109,8.854558,8.679355,9.939685,10.116543,4.666951,0.623968,0.183472,0.070248,0.000000,0.045455,0.000000,0.008265,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.355000,4612235.550000,3666,5755,118.505798,164.439682,170.695877,162.315720,148.332245,138.059509,137.761993,137.803314,138.266129,141.704132,143.836365,157.365295,175.836380,193.654556,208.588455,222.175232,225.133911,215.927292,191.894226,170.166946,158.861160,154.117371,149.200012,117.522324,96.406624,113.778519,126.282654,93.200020,43.943825,19.088449,13.563655,9.954560,10.228944,11.255389,12.837207,5.313234,0.967771,0.286778,0.293390,0.000000,0.019835,0.000000,0.042976,0.198348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.555000,4612235.550000,3682,5755,106.280174,164.924835,169.015717,159.321518,146.114899,138.114899,136.751266,137.048782,137.503326,140.528122,144.949600,156.263672,175.544647,192.610764,207.652084,221.040512,224.346298,215.007462,191.900024,169.387619,157.759537,153.718201,150.172745,117.437202,96.966125,111.734718,123.197533,90.990921,42.734726,17.891754,13.652085,9.509933,11.070266,11.266958,12.511587,6.878523,1.018184,0.009092,0.009918,0.000000,0.000000,0.352066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.955000,4612235.550000,3699,5755,118.735550,161.000000,167.057846,159.628098,146.735535,137.950409,136.950409,137.404953,137.727280,140.735535,144.454544,156.016525,175.892563,191.553726,206.958679,221.206604,222.504135,214.454544,191.355377,168.289261,158.446274,155.619827,148.181824,116.768600,96.809929,112.892570,125.380173,90.561989,40.454567,14.905802,13.471092,7.080180,10.559522,10.919024,12.354563,4.358686,0.532233,0.000000,0.025621,0.044628,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.555000,4612235.550000,3717,5755,118.242157,167.448776,170.366135,160.283493,145.680191,137.465286,137.134720,136.721497,137.969437,141.771103,143.804153,156.002502,174.308289,192.630585,208.093399,220.539673,223.291748,213.985962,191.886780,168.828949,157.820679,152.589279,148.027283,116.366119,96.043808,111.903313,121.804138,89.027283,42.209110,17.129770,13.457043,6.110758,9.759521,9.580182,9.815717,5.595051,0.600002,0.227273,0.000827,0.000000,0.042149,0.000000,0.042149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.955000,4612235.550000,3734,5755,114.650429,166.642151,171.443817,160.237198,147.361160,140.691742,139.096710,138.352905,138.518188,141.724808,144.642151,157.468597,176.981003,195.311584,208.452072,221.592575,224.576050,216.625626,192.220673,168.923157,159.187607,154.113235,147.790924,118.683479,96.261993,114.633896,124.419022,92.716545,43.319855,17.993406,13.435556,8.387618,11.898365,11.205801,11.224807,6.961168,1.136366,0.426448,0.246281,0.000000,0.036364,0.000000,0.029753,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.555000,4612235.550000,3752,5755,124.525635,169.707458,170.980179,160.195038,147.880981,139.004959,137.038010,136.434723,137.633057,140.856201,143.285950,156.294205,175.046295,191.955383,207.616531,220.219833,222.517349,214.054535,189.682663,167.798340,155.864456,153.633057,147.509094,117.517365,95.781830,110.666130,122.137199,88.616539,42.707458,16.966135,13.409935,8.038856,10.158692,11.773567,10.545468,3.954552,1.004134,0.000001,0.000000,0.320662,0.011570,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601497.155000,4612235.550000,3775,5755,112.775215,164.667770,168.651245,159.494217,148.221497,138.750427,137.874390,137.328934,138.180176,141.370255,143.527283,155.717361,174.560333,192.163635,206.560333,219.957031,224.014877,214.915710,190.568604,168.494217,157.948761,152.890915,147.345459,115.667778,95.766945,110.841331,123.287613,91.477692,42.742168,16.760347,13.395060,9.530592,11.347126,11.712414,12.086795,4.940506,1.309920,0.012397,0.499175,0.040496,0.057025,0.000000,0.379340,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.355000,4612235.550000,3791,5755,124.337204,168.080994,167.105789,159.304138,147.990082,139.204971,137.775208,136.064468,137.659515,141.667770,141.890915,155.163635,173.328934,192.097534,206.469421,219.601654,222.808273,213.535538,189.676041,166.857864,155.188431,152.593399,146.345459,114.758682,93.552078,110.072739,124.279343,90.238029,43.973572,18.923161,13.304151,7.038854,10.200019,11.166134,12.804149,7.487616,0.757853,0.008265,0.150414,0.000000,0.000000,0.174380,0.067769,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601503.955000,4612235.550000,3809,5755,103.605797,164.407440,167.324799,157.060333,146.027283,136.556198,135.465302,135.300018,135.390930,139.597534,140.845459,153.027283,172.473557,188.771088,203.423981,216.440506,218.308273,209.936371,185.192566,164.002487,151.820663,149.242157,143.663635,112.862000,93.142990,107.696709,119.399185,88.366127,42.878540,17.116549,13.060350,7.490922,9.334728,9.144646,10.214891,5.049595,0.636365,0.065290,0.080165,0.000000,0.000000,0.000000,0.005785,0.002479,2.586777,0.000000,0.000000,1.025620,0.000000,0.000000 -601510.755000,4612235.550000,3843,5755,123.476051,162.038025,169.409927,161.195053,148.236374,139.839676,136.484314,136.343811,136.509109,140.790100,142.294235,153.657867,171.765305,189.930588,202.509109,215.732239,219.038025,209.732239,185.294235,163.360336,151.947113,149.162003,143.781830,113.740517,93.847954,107.649605,121.500847,89.409935,42.128948,16.995058,13.071094,7.038030,12.457043,10.731421,10.143817,5.433893,1.085953,0.214050,0.223141,0.533886,0.014876,0.000000,0.026446,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.155000,4612235.550000,3870,5755,118.730598,162.400009,169.309097,160.499176,147.333893,137.689255,136.276031,135.887619,137.135544,138.862808,141.961990,153.540497,171.309097,188.515701,202.755371,214.102478,217.871078,208.986786,185.490921,162.565292,152.523972,148.110748,141.854553,112.714058,92.110764,108.821503,119.581833,88.714066,42.119026,15.947124,12.895886,7.342162,9.826463,11.804973,10.844641,3.951247,0.790084,0.137190,0.423142,0.174381,0.257025,0.000000,0.047108,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.155000,4612235.550000,3885,5755,134.721512,166.795883,169.713242,159.440521,147.209106,139.291763,136.919861,137.010773,137.820679,139.490112,143.043823,154.514893,173.531433,188.828934,202.754547,214.027283,217.994217,208.027283,184.572754,162.771103,153.233902,147.283493,142.754562,112.448784,92.581017,108.010765,120.184319,90.663658,42.614071,17.280182,12.977707,7.134723,11.827290,12.341340,11.833076,4.960339,0.391737,0.472728,0.163637,0.076860,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601523.355000,4612235.550000,3906,5755,121.616554,172.426437,167.831406,159.327271,145.393402,139.029755,136.839661,134.261169,136.393402,140.418198,142.153732,153.335541,171.484299,188.988434,202.971893,214.806610,218.467758,208.765289,184.682648,162.616531,151.294205,148.145462,141.327286,112.277710,91.517365,107.533897,119.938858,87.798363,42.104149,17.624811,12.847952,5.711581,10.697537,10.663654,11.500841,3.951247,0.399176,0.000000,0.147108,0.000000,0.026447,0.000000,0.023967,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601528.355000,4612235.550000,3931,5755,121.857864,169.039673,170.155380,162.618195,148.047958,137.585144,135.833069,135.064468,136.717361,141.213242,142.171921,154.312408,172.204971,188.841339,203.783493,215.105789,218.733887,209.262817,185.031418,163.328934,150.552078,147.295883,139.890930,111.634727,92.155388,106.783485,118.882652,88.411583,42.147125,17.196712,12.717375,6.100835,10.394233,10.201671,8.755384,3.688438,0.589258,0.000000,0.138017,0.016529,0.000000,0.000000,0.000000,0.132232,0.000000,1.378513,0.000000,0.000000,0.000000,0.000000 -601531.155000,4612235.550000,3945,5755,118.014893,167.279343,168.238022,161.890915,148.576859,138.899185,137.783478,136.651245,137.560333,141.535538,143.147110,154.667770,172.601654,190.238022,204.461166,217.304138,217.998352,210.238022,185.667770,162.560333,151.246292,147.171906,143.072739,112.304146,91.444641,107.039680,119.535553,88.766960,43.271095,18.039686,13.006631,6.155381,9.238034,11.471919,10.204147,5.222323,0.294217,0.537191,0.155372,0.018182,0.051240,0.000000,0.058678,0.276860,0.000000,0.000000,1.138017,0.000000,0.000000,0.000000 -601537.355000,4612235.550000,3976,5755,122.995041,176.697525,168.383469,161.912399,149.135544,137.019836,136.656204,136.937195,136.515717,141.176865,142.788437,154.160339,171.722321,189.507446,204.085968,216.152069,218.813232,208.895874,184.780167,162.292572,150.656204,146.391739,141.218185,111.251251,91.656212,105.532242,116.507446,86.647957,40.821510,15.638034,12.838035,6.748771,8.045470,8.833073,9.137205,4.504141,0.574382,0.169423,0.000000,0.537191,0.000000,0.000000,0.075207,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.755000,4612235.550000,3993,5755,126.192574,170.275223,169.663666,163.275223,149.333084,137.564468,135.961182,136.481827,136.903336,141.919846,141.622314,152.928116,171.928116,189.795883,202.985977,215.845459,219.357864,210.357864,185.291763,162.390930,151.184326,146.671906,141.481827,112.225632,92.027290,106.250435,117.308281,87.415718,40.837208,16.275227,12.862003,6.190920,8.098364,8.797535,10.254560,6.790920,0.808266,0.155373,0.192563,0.000000,0.000000,0.000000,0.057025,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.555000,4612235.550000,4007,5755,126.734711,178.776031,169.536362,162.577682,150.420670,138.495041,138.172729,137.238846,136.734711,142.982651,142.338013,154.478516,172.238846,190.032242,204.445465,217.602478,219.858688,209.486786,185.230576,163.908264,152.023972,147.338013,142.536362,112.602493,92.693398,106.726456,117.842163,89.081833,41.478535,17.658695,12.957870,6.866127,9.255388,10.557868,9.775221,4.125627,0.648762,0.209093,0.167769,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601546.355000,4612235.550000,4021,5755,125.959518,179.290085,171.645462,163.339661,151.331406,139.157852,138.471893,138.414047,138.017349,143.620651,142.959503,154.314880,172.347946,191.364456,205.711578,218.323151,220.455383,210.190918,185.480164,164.306610,152.223969,148.364456,142.463638,112.951256,92.595879,108.595879,118.108276,89.273567,42.513241,16.423985,12.951258,5.526456,8.916545,9.452083,10.641337,3.969427,1.239671,0.295044,0.119835,0.000000,0.023141,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.155000,4612235.550000,4035,5755,127.055389,174.385971,167.658707,158.377716,146.890106,135.716553,135.038864,133.485138,133.435562,136.278534,137.162842,149.600845,167.518204,183.766129,197.071915,209.551270,212.179367,201.261993,178.476868,155.295074,144.939697,141.146301,135.427292,104.642166,87.278534,100.733078,113.857040,83.848778,38.336380,14.976878,12.311590,5.320673,8.236380,7.909932,9.028940,2.552072,0.290909,0.487604,0.309091,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.955000,4612235.550000,4049,5755,110.908287,168.957840,166.098328,157.032211,140.842133,131.346298,131.379349,129.114899,128.569443,131.561172,132.858688,143.106598,161.065277,176.313232,188.387604,200.718185,202.181000,192.123138,168.809097,149.255356,138.916534,135.528107,129.536377,101.139687,85.065308,97.511589,108.040512,78.891754,37.784317,16.274399,11.776052,9.286790,9.512411,10.162824,11.010758,4.671083,0.571902,0.127273,0.812398,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601558.155000,4612235.550000,4080,5755,115.134735,170.498367,166.680191,157.225647,143.225647,132.432251,132.804153,129.845474,130.316544,131.952911,134.366135,144.713242,161.407455,177.027283,188.324799,200.804138,201.977692,192.663635,168.506638,148.539688,138.473572,135.366135,130.845474,101.423988,85.465309,98.019020,108.473579,80.085144,37.556217,16.787622,11.895061,9.639684,10.517372,10.473569,10.935553,5.952076,1.234714,0.378514,0.015703,0.200000,0.057851,0.000000,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601561.355000,4612235.550000,4096,5755,105.436386,166.576859,167.527283,156.725632,142.576859,132.081009,132.362000,128.411591,129.130600,131.006622,131.659515,142.114059,159.766953,175.312408,188.444641,199.477692,199.915710,190.824799,165.957031,147.477692,138.221497,135.378525,129.163651,100.642998,84.378532,96.609940,106.304146,77.651253,36.378536,14.385141,11.742167,10.563651,8.767783,11.681834,10.291750,5.866951,0.398348,0.233885,0.226447,0.076033,0.000000,0.000000,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.155000,4612235.550000,4120,5755,129.505798,172.795044,173.398361,157.580170,144.042984,133.447937,132.877701,130.365295,130.034714,132.117371,132.952072,144.257858,161.935547,176.869431,190.191742,201.621490,202.505798,192.282654,168.894226,149.406616,138.795044,135.993393,130.381821,101.761993,84.654556,97.348770,108.001663,79.538849,37.588451,16.666960,11.852911,10.522327,9.449603,10.407453,11.361999,3.595049,0.990912,0.273555,0.109091,0.000000,0.119009,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.955000,4612235.550000,4154,5755,119.630592,177.200836,172.440506,159.936371,146.423981,135.283493,135.671921,133.498367,132.275223,136.035553,135.928116,147.060333,163.465302,179.671906,192.233887,203.308273,206.176041,193.308273,171.341324,151.291748,140.680176,138.151245,133.390930,103.961174,87.572739,99.415718,109.961174,80.663651,37.969437,17.620680,12.126465,12.686791,8.226463,11.964478,11.104147,6.196706,1.014052,0.351241,0.067769,0.000000,0.155372,0.000000,0.100827,0.117356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.155000,4612235.550000,4180,5755,118.495064,176.412415,168.511566,161.057037,144.982666,134.040512,133.627289,131.718201,132.949600,134.652084,134.412415,147.362823,162.296707,178.990921,192.023987,203.990906,204.660355,192.751266,170.065292,150.627289,140.280182,136.924820,132.990921,104.007454,86.470268,99.189278,107.734734,79.090103,37.098366,15.957044,12.090102,9.489270,8.904147,9.804147,11.811587,3.255379,0.421489,0.185125,0.045455,0.000827,0.000000,0.000000,0.022315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.555000,4612235.550000,4207,5755,114.519852,184.627274,176.197540,164.833908,148.214050,137.346283,136.214066,135.792587,135.114899,140.544632,138.585953,151.255371,167.387619,184.255386,198.643799,212.255371,213.974380,202.263641,178.701675,156.974380,145.883469,144.255371,138.536362,108.106628,90.519852,105.891754,115.114899,81.883484,39.048782,17.147953,12.594234,11.179355,10.381836,10.750429,11.696710,4.569430,0.790085,0.085124,0.194215,0.043803,0.142149,0.029752,0.000000,0.126446,0.000000,2.692562,0.000000,0.000000,0.000000,0.000000 -601586.555000,4612235.550000,4222,5755,114.966133,188.486801,177.627289,167.329773,150.536377,138.511597,138.404144,137.015717,136.544647,142.032257,142.098373,153.709930,170.577698,190.123154,205.015701,218.040497,222.883469,211.767776,185.544647,161.519852,152.230591,148.900024,144.990921,112.966133,95.503326,110.222336,118.643822,86.338028,43.263657,18.413239,13.181011,8.933898,10.596710,12.194231,11.874399,5.210753,1.586781,0.357026,0.257853,0.242977,0.011570,0.077687,0.155372,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.555000,4612235.550000,4247,5755,100.254562,175.568604,172.907440,163.973557,147.957031,136.477707,134.502487,135.023148,134.287613,139.485962,140.345459,150.824799,168.618195,187.411575,201.857864,215.494217,219.155380,208.279343,182.923981,160.006622,149.064468,145.659515,141.254547,110.775223,92.585136,106.180183,115.163651,82.601669,41.039692,16.743820,12.841341,7.207452,7.288445,10.067782,9.981006,3.370257,1.547937,0.731407,0.100827,0.124795,0.220661,0.067769,0.800002,0.454546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601598.755000,4612235.550000,4283,5755,128.388458,177.851257,171.132248,160.768616,146.082657,137.421509,135.991745,133.933899,133.537201,138.834732,139.487625,150.363647,167.603317,186.000015,199.950424,214.173569,216.727295,206.264481,181.016541,156.776871,145.702499,144.785141,140.272751,108.785141,90.801666,106.066132,114.520676,82.809944,40.132252,15.757044,12.752086,7.273567,7.835553,8.659518,11.022331,4.447116,0.763639,0.290083,0.262811,0.384300,0.171901,0.049587,0.258678,0.160331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601608.955000,4612235.550000,4334,5755,109.568611,170.816513,173.469406,162.692551,147.031418,137.080994,135.585129,135.122314,134.940506,137.923981,139.882629,151.047928,168.262802,186.072723,200.957016,214.006607,217.312393,206.725616,181.287598,158.221481,146.221481,142.436356,140.254532,109.684303,90.395050,105.180168,114.056206,83.965302,40.229771,15.766961,12.750432,8.317369,8.522328,11.413239,12.061173,4.579349,1.170251,0.437191,0.060331,0.318183,0.061984,0.000000,0.804960,0.387604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601623.755000,4612235.550000,4408,5755,108.180191,165.320663,170.337204,159.485977,146.485977,134.948776,135.791748,132.709106,133.444656,137.461182,138.395065,150.626465,167.907440,185.733887,199.709091,212.800003,216.188431,204.436371,179.403305,155.791763,145.651260,142.047958,139.072754,108.114075,89.973579,104.312416,112.998360,84.138863,40.899193,15.220680,12.642995,7.271088,10.842993,11.238032,9.710760,5.037199,1.752897,0.577687,0.015703,0.066943,0.473555,0.055372,0.336365,0.314050,0.000000,0.000000,1.076860,0.000000,0.000000,0.000000 -601646.755000,4612235.550000,4523,5755,111.011581,166.962006,168.821503,158.309113,144.738861,135.499191,135.152084,132.540512,132.738861,135.515717,137.300842,149.449600,168.127289,184.681015,199.201675,212.862823,215.251266,204.127289,178.242996,155.871094,143.681015,141.689270,137.400024,106.317368,88.333893,103.780174,114.689270,82.490921,41.209938,15.286796,12.490929,7.994228,9.490100,10.161999,11.751256,5.102488,0.769424,0.450414,0.223142,0.123967,0.257026,0.000000,0.550414,0.316530,0.000000,0.000000,0.000000,0.000000,0.000000,2.306612 -601682.355000,4612235.550000,4701,5755,107.415718,165.853745,169.977692,158.151245,146.704971,136.614075,136.233902,135.349609,135.804153,136.936371,139.828934,152.101654,170.490082,188.093399,202.019012,215.242157,218.316528,207.167770,181.738022,159.035538,148.490082,145.688431,140.209091,109.357864,91.597527,105.671906,117.052086,85.721504,42.936386,17.603325,12.746300,9.502494,9.180182,9.119023,10.738858,5.517364,0.716531,0.189257,0.390910,0.008265,0.094215,0.065290,0.406612,0.071075,1.400000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.355000,4612235.550000,4826,5755,113.584312,177.394226,176.443817,161.857040,145.832245,137.195877,135.923157,133.427277,134.666946,136.204147,137.683487,150.749603,169.485138,186.518188,200.419022,214.733063,216.972733,203.782654,179.584305,156.063644,145.501663,143.501663,138.700012,107.088440,89.898354,103.898354,116.559517,84.014069,41.675224,17.096712,12.609110,9.662825,10.560349,10.838860,11.232247,7.661995,0.719010,0.176860,0.498348,0.026447,0.103306,0.000000,0.252067,0.629753,2.982645,0.000000,0.000000,0.000000,1.487603,0.000000 -601720.955000,4612235.550000,4894,5755,106.232254,180.562805,178.785950,164.257019,146.662003,135.182663,136.744644,134.124802,134.901672,137.149597,139.306625,151.976044,170.661987,189.116531,201.728088,215.612396,218.728088,204.918182,181.149582,157.405777,146.637207,145.356216,137.554565,109.207451,90.736374,105.612411,118.009102,84.347946,42.926468,17.356216,12.504976,10.818197,11.128117,11.426461,13.347125,6.135548,1.970252,1.114878,0.190083,0.057025,0.181819,0.000000,0.217356,0.660332,0.000000,0.000000,4.908265,0.000000,0.000000,0.000000 -601728.355000,4612235.550000,4931,5755,116.000839,179.752899,176.240509,162.686783,146.273560,134.678528,136.298355,133.339676,133.480179,136.744644,137.504974,150.422333,169.744644,187.504974,200.868607,214.430588,215.909927,203.976044,180.223984,156.000839,145.347946,144.223984,138.190918,106.876869,89.199188,105.033897,115.785965,83.248772,41.670269,15.340513,12.562829,11.446295,9.347949,10.302494,10.114063,3.726453,1.736366,0.397521,0.170248,0.582645,0.072728,0.000000,0.094216,0.600001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.955000,4612235.550000,4949,5755,104.843826,182.595886,175.852081,164.422333,148.876877,137.438858,137.794235,135.306625,136.686783,138.827286,140.323151,152.645462,172.075226,190.009109,203.042160,217.769440,218.752899,206.785965,182.934723,159.860336,147.314896,146.298355,141.645462,110.661995,92.100014,107.976044,119.091751,86.810760,42.480183,17.377705,12.876879,11.292578,11.001669,10.297535,13.480182,6.093398,0.508266,0.169422,0.000000,0.010744,0.080992,0.000000,0.726449,0.395042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601736.555000,4612235.550000,4972,5755,122.950432,183.082672,178.239700,166.636398,149.793411,137.157059,138.892593,136.694229,136.859528,139.867783,140.809937,153.909119,171.528961,189.801682,204.000031,218.115738,219.611603,207.578552,182.140533,159.933914,148.256210,146.438034,141.000015,109.041336,91.586792,106.239685,118.024811,86.107452,43.289272,17.397537,12.818201,14.066132,11.418199,13.042991,12.538033,5.766125,1.303308,0.640497,0.294216,0.148761,0.000000,0.052893,0.131406,0.280166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.155000,4612235.550000,4995,5755,119.413239,186.226456,180.838013,168.656204,151.722351,140.366959,140.218201,138.441345,138.639694,142.259521,141.028122,155.672745,173.400009,192.606628,207.061157,219.672729,221.532242,207.953720,184.466125,160.928940,149.416550,145.375229,141.945480,109.449608,91.094231,107.466133,117.507454,85.400017,43.152081,16.845472,12.904152,13.789273,10.949604,13.180182,12.179356,7.475216,1.287605,0.297521,0.649588,0.061984,0.362811,0.080165,0.403307,0.166943,0.000000,0.000000,0.000000,0.000000,1.419835,0.000000 -601743.955000,4612235.550000,5009,5755,119.405807,185.100006,177.604141,166.042145,149.686768,137.934723,137.827286,136.149597,135.554565,138.827286,139.554565,151.785950,172.133072,190.248779,204.901657,218.033875,219.447098,205.852066,182.347946,159.942978,147.678513,145.934708,141.190918,108.785965,91.538033,106.967781,117.810768,85.438866,41.843822,16.630596,12.835555,12.195056,10.204975,12.619024,12.279354,5.607446,1.662813,0.490084,0.487604,0.081819,0.499174,0.000000,0.336364,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.755000,4612235.550000,5028,5755,114.831429,191.247101,178.966141,164.751266,146.643814,135.866959,137.850433,135.619034,136.941345,140.817368,139.933075,152.585968,172.007462,188.898346,203.286789,216.063644,217.468597,203.741333,180.228912,157.914886,146.096695,143.724808,139.154556,107.080185,91.179359,106.542992,117.485138,84.799194,43.964485,16.540514,12.650434,10.793403,9.758695,11.446299,13.553736,7.046292,1.688433,0.990910,0.565290,0.634712,0.543802,0.880166,0.622316,0.294216,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601753.755000,4612235.550000,5058,5755,128.903320,184.250397,180.432220,169.126450,151.589249,139.440521,140.366135,136.729782,138.060349,142.357880,140.159531,153.060318,172.266937,190.961151,205.366104,219.060318,219.382629,206.266937,183.167755,161.027283,149.407425,146.052094,141.572754,109.977692,92.688446,108.861992,118.638847,87.581001,44.547951,17.652086,12.870266,14.462827,11.512413,12.311587,15.214893,8.063648,1.523970,0.524795,0.125620,0.143802,0.000000,0.046281,0.218182,0.219835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.955000,4612235.550000,5099,5755,131.300018,190.085144,177.762833,166.118210,148.589279,134.225647,135.767792,134.341339,135.432236,141.126465,139.911591,152.010773,169.817368,189.470261,203.230591,216.329773,217.164490,201.503326,179.428940,158.486801,147.445480,144.057037,139.627289,107.280182,91.478531,107.833900,118.825638,84.437210,43.255390,16.212414,12.693407,14.018199,10.603323,11.095057,15.634726,7.657863,2.177689,1.471076,1.017356,0.768596,0.982645,0.229753,0.297522,0.733885,0.000000,3.056199,0.000000,0.000000,0.000000,0.000000 -601774.555000,4612235.550000,5162,5755,119.128937,200.616547,182.947113,170.145462,151.674393,139.757034,139.823151,136.442993,138.029770,145.533890,140.765305,153.575226,171.368607,191.219849,205.914062,220.467789,219.244644,204.773560,183.228119,161.467789,147.823151,146.872742,142.418198,109.591751,93.004974,110.368607,119.509094,84.707458,44.360352,18.447952,12.947126,14.261174,8.676047,10.553735,11.378528,6.971912,0.841325,0.439671,0.113224,0.014050,0.160331,0.050414,0.355373,0.303306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.955000,4612235.550000,5249,5755,100.477699,168.684311,172.998352,158.138855,143.411575,135.370255,135.304138,132.667770,132.155380,134.948761,136.122330,147.849609,167.345459,184.957031,197.874390,209.874390,211.833069,201.386780,178.238022,155.378525,144.700851,142.246307,136.436386,104.742157,87.023155,104.981827,117.320671,84.684311,42.428116,15.266133,12.403324,8.312412,10.711588,9.862826,10.604146,5.517365,0.302480,0.347935,0.066942,0.138843,0.000000,0.000000,0.174381,0.163637,0.000000,0.000000,0.000000,0.000000,1.370248,0.000000 -601813.755000,4612235.550000,5358,5755,98.974396,165.015686,170.618988,160.792542,144.123138,134.304977,134.338028,131.585968,131.693405,134.742981,135.908264,147.395874,167.032211,184.784286,198.255371,209.792572,212.007446,201.098343,179.007431,158.189240,145.057022,140.858688,135.354553,106.172737,87.288445,102.503319,118.139687,87.561165,44.743000,17.609934,12.304977,9.622332,12.213243,10.396711,13.389273,5.408273,0.908266,0.428927,0.068596,0.037191,0.070248,0.040496,0.247108,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.355000,4612235.550000,5486,5755,96.899193,169.857880,169.783493,156.444656,141.485977,131.279358,130.766968,128.907455,128.337219,131.204987,133.014893,144.304138,163.345474,182.081009,195.452911,207.295868,209.262817,199.494232,177.064484,155.733902,144.072739,140.039688,133.436386,104.155396,84.370270,102.089279,118.436386,87.849609,43.097538,15.471092,12.130598,7.230593,10.253736,9.469437,8.910757,4.076040,0.499174,0.044628,0.139670,0.000000,0.013223,0.000000,0.257026,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.755000,4612235.550000,5568,5755,108.684319,170.441330,169.152069,158.978516,142.085968,131.094238,131.284317,128.722336,129.606628,132.639694,133.995056,146.110764,164.333893,183.193390,195.400009,208.069427,209.714050,201.102478,177.945465,156.408264,143.639694,139.185150,133.490921,104.383492,84.771919,102.614899,115.995064,87.730598,41.267788,14.132249,12.135555,6.620673,8.503323,8.935553,10.117370,4.086784,0.594217,0.119009,0.133058,0.000000,0.122315,0.000000,0.383472,0.000000,3.280992,0.000000,1.349587,0.000000,0.000000,0.000000 -601865.755000,4612235.550000,5618,5755,98.095055,173.871918,170.797531,160.185974,144.921509,132.590927,130.731415,129.326462,129.185974,132.747955,133.756210,146.433899,164.880188,183.152908,196.243820,209.615723,210.524811,201.086792,179.533081,156.037201,145.549606,141.152908,134.863647,104.838860,86.615715,103.549606,119.152908,88.508278,42.276878,15.001672,12.260349,7.909107,8.239687,9.090924,10.338031,6.058687,0.678514,0.072728,0.076860,0.150413,0.000000,0.000000,0.006612,0.266942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.555000,4612235.550000,5647,5755,109.501671,175.700012,168.113235,159.840500,144.675217,133.295044,132.749603,130.526459,129.774384,134.600830,135.162811,146.947937,164.691742,184.096710,197.344635,209.303314,211.518188,203.129761,179.261993,158.220673,145.460342,141.757858,135.881821,105.344635,86.212410,103.402489,116.931412,88.832245,41.989273,15.610759,12.352911,8.349599,8.354563,9.404147,11.999187,4.241330,1.194217,0.535540,0.268596,0.080166,0.166116,0.000000,0.191736,0.276860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601878.355000,4612235.550000,5681,5755,99.280182,168.313248,169.197540,154.916550,138.990921,129.676865,128.313232,125.313232,125.189278,128.511581,128.701660,142.346298,160.197540,176.437210,189.420685,201.511597,203.652069,192.131424,170.288452,149.941345,138.329773,135.230591,128.445465,100.296715,82.346291,97.263649,110.908287,82.081833,38.933079,15.331423,11.676879,8.432244,8.542165,7.828115,11.302495,4.701661,0.498348,0.112397,0.257852,0.130579,0.000000,0.000000,0.201653,0.071901,0.000000,0.000000,0.000000,1.134711,0.000000,0.000000 -601888.555000,4612235.550000,5732,5755,107.624809,168.591751,166.533890,154.145462,140.798355,129.434723,129.467773,125.988434,126.120667,127.459511,129.087601,141.641342,160.947113,177.112411,190.112411,201.269440,203.657867,191.343811,169.426453,149.905792,138.657867,136.112411,128.781830,98.542152,82.145477,97.385132,111.112404,81.930603,38.765308,15.354565,11.707457,9.933072,9.732247,11.263652,10.676874,5.166125,0.705786,0.431406,0.120661,0.057025,0.140496,0.128926,0.000000,0.268596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.555000,4612235.550000,5812,5755,109.227287,182.194229,170.078522,158.557861,140.334732,129.516541,129.103317,128.045456,127.574387,130.847122,129.004135,142.929764,160.508286,177.648773,191.309937,203.938034,205.111588,192.971085,171.028946,150.392578,139.367783,136.128113,129.681824,98.781006,82.830597,98.442162,110.739685,81.020676,38.582664,14.171918,11.789275,11.246296,8.522329,9.163651,10.754560,3.823148,0.616530,0.000000,0.000000,0.008265,0.009918,0.000000,0.095042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601919.355000,4612235.550000,5886,5755,112.399185,186.068604,169.754547,157.812424,141.176056,129.903320,129.109924,127.242165,128.523148,132.837204,129.167786,142.085144,159.490082,177.870255,191.944641,204.308273,206.076859,190.688431,169.597534,148.531433,137.539688,135.390930,128.845474,98.134727,82.729767,99.266960,110.969437,78.564476,38.523159,14.552911,11.713243,12.166957,7.941338,8.826463,8.506624,4.002488,0.451241,0.196695,0.045455,0.009918,0.057025,0.000000,0.323141,0.262810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601926.355000,4612235.550000,5921,5755,132.349609,188.514877,171.291748,159.754547,141.473557,129.308273,130.630600,127.076866,128.068604,133.432251,130.142990,142.341339,159.142975,178.944656,192.316528,205.118195,206.994217,190.886780,169.390915,150.324814,139.275223,135.638870,129.572739,98.853737,81.671913,97.688446,110.581001,79.556213,37.068615,15.722331,11.779357,13.790925,7.066129,10.071088,9.015717,5.181001,0.643803,0.628100,0.000000,0.016530,0.004959,0.000000,0.286778,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601931.355000,4612235.550000,5946,5755,124.295891,189.238022,172.279343,161.907440,143.973557,130.609940,131.089279,128.510773,129.882660,135.097549,130.634735,142.932251,160.502487,179.932236,194.866119,208.039673,208.047943,192.866119,172.684311,152.642975,140.816559,137.147125,131.709106,100.824814,83.808289,101.816551,111.552086,79.097542,39.568615,17.018200,11.973574,14.362000,9.976050,9.851254,11.169436,6.004141,1.109920,0.098347,0.590910,0.000000,0.009091,0.018182,0.218183,0.139670,0.000000,0.000000,0.000000,0.000000,1.913223,0.000000 -601937.955000,4612235.550000,5979,5755,89.928947,145.689255,152.292572,139.995056,125.457870,116.358696,114.259521,111.738861,111.829773,112.523987,114.829773,125.565308,141.945480,156.110748,169.515701,181.152069,183.119019,173.127274,151.904129,133.333908,124.011589,119.581841,114.854568,88.490929,73.730598,87.887619,100.226463,72.209938,35.077705,13.617373,10.441340,8.430592,7.861998,9.462000,9.636377,4.620669,0.959506,0.056199,0.055372,0.249587,0.047934,0.000000,0.262811,0.404133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601948.155000,4612235.550000,6030,5755,94.150429,144.690918,151.219849,140.013229,125.277702,116.500839,115.500839,112.269432,112.674393,113.988441,115.905800,127.021500,142.707458,159.145462,171.748779,182.723984,185.145462,174.757034,153.798355,133.938858,124.963646,123.029762,117.418198,91.814888,75.856216,88.442986,98.575218,73.219849,36.831425,14.686795,10.674399,8.408277,9.809933,10.416545,12.037207,5.226456,1.385954,0.436365,0.474382,0.123141,0.246281,0.000000,0.837192,0.532232,1.504132,0.000000,1.228926,0.000000,0.000000,2.123141 -601959.755000,4612235.550000,6088,5755,106.208282,148.208267,151.547119,140.580170,127.034721,117.117363,115.571907,112.472748,112.208282,113.547127,116.241333,126.960350,144.654556,161.844635,175.100830,188.604965,190.109100,179.084305,156.786789,135.761993,125.323975,122.638023,114.654556,88.233078,70.745476,87.067787,102.902496,78.175224,36.745476,15.435554,10.423160,7.713234,9.578526,9.333898,11.309105,6.095051,2.090086,0.136364,0.000000,0.000000,0.094215,0.000000,0.181819,0.855373,0.000000,0.000000,0.000000,0.000000,1.865289,0.000000 -601968.555000,4612235.550000,6132,5755,117.554565,143.810760,144.083481,133.190933,117.488449,108.653740,105.604156,102.000847,101.893410,103.091759,106.190933,117.381012,134.372742,151.223984,164.554565,177.190918,176.852081,167.298355,144.843811,125.339691,114.471924,110.033905,104.645477,76.124817,59.637211,78.397545,97.769440,72.389275,33.951260,11.181835,9.513243,5.791745,7.214061,9.874393,9.811583,6.363648,2.004962,0.535539,0.135538,0.074380,0.090909,1.879340,0.137190,0.169422,0.000000,1.952066,2.996695,0.000000,1.747108,5.717356 -601273.155000,4612225.550000,2655,5805,213.876053,217.033051,221.743805,217.000000,214.363632,215.859497,225.983475,230.537186,236.950409,247.512405,259.107452,276.545441,296.057861,317.256195,329.223145,338.793396,337.958679,318.198334,266.041351,229.528931,216.314056,206.008270,195.000000,162.487610,142.603317,142.380188,130.900848,87.933899,39.404976,22.256218,17.727293,18.364479,15.226463,15.169438,18.123159,10.248775,5.270258,3.652074,2.566947,0.262811,0.742978,0.000000,1.437193,1.892565,1.327273,2.598347,0.000000,0.000000,6.263637,0.000000 -601276.355000,4612225.550000,2671,5805,209.885941,230.348770,219.894211,216.406601,213.183472,215.199997,226.018173,230.538849,237.795044,248.695877,261.489258,277.737183,299.274445,319.324036,332.563690,341.580231,338.852936,315.935608,261.381836,221.596695,206.357040,197.208252,184.563629,152.109100,135.340500,132.266129,118.497536,77.233078,37.390106,20.504150,16.778532,15.307457,13.503325,15.290102,13.908282,8.551254,2.874389,2.315711,1.756202,1.250416,0.637192,0.191736,0.644630,1.352895,2.737190,3.737190,1.110744,0.000000,2.644628,6.552893 -601281.355000,4612225.550000,2696,5805,200.261993,224.138031,221.914886,217.691742,213.956207,218.435547,226.518188,233.394226,238.319839,250.030594,262.650421,278.576019,298.129761,315.848755,326.956177,334.559509,331.832214,310.204132,255.584305,219.394226,204.757858,193.799179,182.609100,152.162827,133.790924,132.121490,118.493401,75.947952,35.005806,17.486795,16.600845,13.266960,11.886793,15.004150,12.910761,6.016542,3.466125,1.338848,0.728927,1.073555,0.662812,0.092562,0.990911,1.293391,1.467769,6.765290,2.119009,1.133058,0.000000,0.000000 -601288.955000,4612225.550000,2734,5805,202.787613,219.258667,223.465286,218.903290,215.820648,219.738007,228.622299,232.713211,240.415710,249.291748,260.804138,277.771118,297.795898,315.531433,328.233917,336.027313,335.523193,317.903351,269.820679,234.167755,223.126434,213.192551,202.936356,170.374390,152.738022,153.019012,139.308258,95.481827,43.151257,19.861177,18.448780,13.854562,15.429770,16.726465,13.804149,9.210758,1.795875,2.037195,1.538846,1.341324,0.812399,0.661159,0.561158,1.229754,1.263636,1.334711,0.000000,0.000000,4.062810,0.000000 -601300.555000,4612225.550000,2792,5805,205.112427,224.145447,225.137192,224.434708,220.748764,223.773544,233.343796,238.203308,243.905777,254.261154,266.707458,283.343781,302.112366,322.178497,334.285919,342.013214,340.104126,321.641296,271.203308,235.277679,221.682648,213.285950,201.236359,169.137207,150.583481,148.740524,137.963669,92.467789,42.327290,21.459522,18.294233,14.162002,16.234730,15.767788,13.636382,9.566131,3.517364,1.316534,0.403307,0.641324,0.781820,0.068596,1.079341,0.788431,0.000000,1.395041,1.259504,0.000000,2.687604,2.150413 -601318.155000,4612225.550000,2880,5805,192.746307,225.928116,229.928116,227.366135,223.200851,227.366135,236.919861,241.242172,247.589279,256.523163,268.010773,283.547974,301.200867,321.746307,337.242188,346.680206,348.341370,340.895081,300.704987,266.696716,253.903336,248.680191,240.754562,207.151260,185.506638,189.043823,185.985977,135.432236,63.076878,26.283489,21.886795,16.452911,17.853737,21.317375,24.134729,15.545469,3.691741,1.684302,1.625623,0.842978,0.383473,0.411571,1.018184,1.284300,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601342.355000,4612225.550000,3001,5805,170.644623,199.148773,198.140518,196.975220,193.024811,193.966965,201.545471,204.727295,208.495880,215.793411,225.074402,241.206604,259.239685,279.371948,295.545502,306.033081,312.082672,312.396729,289.314087,266.834717,259.719025,254.413239,252.909103,225.041336,203.727295,212.809937,225.421509,188.694229,101.760338,28.033075,22.991755,16.822332,24.479357,34.322334,51.719028,37.512421,2.602485,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.809091,0.000000,0.000000,0.000000 -601359.155000,4612225.550000,3085,5805,145.319000,182.798340,180.302475,173.748764,165.285950,158.558670,161.897522,165.930573,169.649582,178.492554,185.641312,201.657852,223.914047,243.186768,259.790100,270.013245,273.071075,268.459534,238.666138,212.087601,200.690903,197.451233,190.599991,160.715698,136.823151,146.740494,160.054535,122.922325,55.550434,19.566959,17.327290,8.790096,12.932248,13.930596,17.695059,7.582658,1.014879,0.183472,0.185951,0.000000,0.245455,0.096694,0.000000,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601369.755000,4612225.550000,3138,5805,147.696701,188.349594,178.580994,170.118195,156.895065,147.961166,150.473557,151.696701,155.647125,162.886795,166.151260,181.266953,201.217361,219.804138,235.250397,246.440491,248.564453,246.589249,224.184311,201.671906,191.109924,189.547943,183.481827,154.928116,130.366135,145.812408,165.936386,133.878525,65.200844,22.374399,16.680185,11.659518,14.235554,20.382664,25.142166,13.928115,1.442979,0.166943,0.224794,0.229752,0.063637,0.000000,0.063637,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601377.755000,4612225.550000,3178,5805,128.400024,167.094238,160.540497,152.036377,138.284317,127.887619,128.515717,128.796707,129.590103,133.747131,134.366959,146.540512,162.606628,179.011566,191.639679,202.838013,204.961990,204.730576,188.441330,170.672729,160.664490,158.771927,156.945480,126.598366,104.590088,123.466125,159.639694,141.127289,72.796715,18.547953,14.267787,8.128111,13.381009,21.147125,30.143822,18.803324,1.338846,0.084298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601381.155000,4612225.550000,3195,5805,109.012413,161.557861,157.458694,148.450424,135.342987,126.095055,126.731422,125.946297,126.078529,129.351257,131.070267,143.847122,161.392578,176.392578,190.979355,201.144638,204.466965,200.880188,186.590927,168.756210,157.739685,158.177704,155.863647,125.020676,102.086792,122.590927,159.466965,135.657043,70.888443,19.704977,14.169440,10.714063,15.798364,22.180182,31.714893,19.100843,0.436365,0.140496,0.006612,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601383.955000,4612225.550000,3209,5805,133.149597,163.802490,162.257034,149.174393,137.554565,128.579346,128.819016,127.248779,128.331421,131.290100,135.075226,147.298355,165.480179,181.009109,194.248779,205.843811,209.257019,205.521500,188.926453,169.529770,159.959518,160.719849,158.463654,127.546295,105.190926,124.496704,158.463654,133.860336,65.116547,18.295887,14.405804,11.131421,15.219026,21.144646,28.074400,15.657868,0.777690,0.047934,0.037190,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.736364,0.000000,0.000000,0.000000 -601388.355000,4612225.550000,3231,5805,136.185974,171.871902,165.516525,154.657028,142.119873,133.194229,134.194229,132.161179,133.632248,136.020676,140.268631,152.177689,172.095062,188.516541,201.508286,212.657043,214.359528,209.665298,190.838852,172.756210,162.392563,163.376038,160.500000,129.838852,107.450432,125.681831,155.830582,129.417374,62.342995,19.233076,14.590928,12.662826,12.817370,17.261173,24.398365,15.185966,0.866120,0.129753,0.352067,0.113224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601395.155000,4612225.550000,3265,5805,138.864487,174.641357,171.889282,162.550446,147.203339,136.963669,137.443008,136.525650,137.757050,140.798370,142.715729,156.120697,174.963669,191.905807,204.690933,214.666138,216.071106,209.517380,188.905807,167.798370,158.707474,156.930603,153.054581,123.897545,103.451263,119.252914,141.591766,112.624817,52.385143,18.076054,13.914067,10.250429,10.061173,13.352082,15.244645,7.662821,1.419838,0.099174,0.000000,0.000000,0.000000,0.000000,0.027273,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601399.355000,4612225.550000,3286,5805,133.574402,180.747955,174.078552,164.384323,149.698380,139.929779,140.747971,139.698380,141.070282,143.995895,146.392593,158.301682,178.607468,195.260345,207.954544,218.772720,220.276855,211.433884,189.855392,170.161194,159.838882,158.723175,153.681854,124.177704,103.409103,116.921501,138.037216,106.929771,50.227287,18.688450,13.971093,12.993406,11.895060,15.238034,15.838034,7.571085,1.292565,0.171075,0.053720,0.000000,0.021488,0.000000,0.000000,0.085124,1.292562,0.000000,0.000000,1.024794,0.000000,0.000000 -601403.355000,4612225.550000,3306,5805,132.476044,176.228119,171.203323,162.277695,149.046295,139.790100,139.988449,138.715714,139.988449,143.021500,145.310760,159.467789,177.947113,195.641342,209.690918,220.401672,221.707458,212.947113,191.170258,170.600006,159.723984,156.889267,152.327286,122.723969,100.905800,116.748772,135.219833,102.021500,47.335560,17.139687,13.847953,11.533900,10.716546,12.688446,12.588445,7.560341,0.866118,0.073554,0.198348,0.000000,0.000000,0.000000,0.023141,0.285124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601407.755000,4612225.550000,3328,5805,135.337204,179.568604,171.684311,162.808273,147.816528,136.890915,137.634720,137.411575,138.684311,142.370255,142.849594,157.295868,175.957031,193.973557,207.204971,220.295868,221.403305,211.783478,188.890915,168.006622,157.998352,155.320663,150.345459,118.990097,98.089272,113.337204,130.932251,100.006622,46.841339,16.300018,13.667788,10.319024,9.851256,12.262001,12.851256,5.909101,0.917357,0.494216,0.143802,0.000000,0.012397,0.000000,0.031405,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601416.155000,4612225.550000,3370,5805,124.368599,188.533890,173.723984,161.500839,147.459518,135.740509,137.881012,137.203323,137.616547,142.806625,143.343811,155.765305,175.046295,193.616547,206.765305,221.004974,222.071091,211.459518,189.980179,169.310760,157.203323,156.004974,148.872742,118.261162,97.914062,112.798355,129.352066,96.211586,44.186798,15.377704,13.533903,12.313238,9.670264,12.253736,13.714894,6.283482,0.233885,0.073554,0.138844,0.046281,0.012397,0.000000,0.001653,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.955000,4612225.550000,3384,5805,132.462830,188.834717,172.190094,163.644638,147.991745,136.000015,137.008286,136.429764,137.636383,143.247955,142.272751,156.123978,174.586777,192.950409,206.859497,221.074387,222.727280,211.793396,189.214874,168.661179,158.363647,154.512405,149.272751,117.305801,98.438034,113.165306,129.041336,95.545471,43.462830,15.852085,13.570267,12.196709,8.337206,11.378529,12.976049,5.892572,0.804134,0.052893,0.070248,0.000000,0.000000,0.000000,0.007438,0.000000,0.000000,0.000000,1.147934,0.000000,0.000000,0.000000 -601421.955000,4612225.550000,3399,5805,162.497528,189.580170,173.431412,164.200012,149.547119,136.654556,137.960342,138.084305,138.001663,145.348770,143.753723,156.852905,175.489273,194.191742,209.671082,221.348770,222.687607,211.009933,189.357040,170.695877,159.472733,155.489273,149.290924,117.183479,98.307449,113.662819,128.464478,94.431412,44.737213,17.387623,13.571919,12.715718,10.971918,11.538033,14.379355,6.176043,0.823970,0.000000,0.133058,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601424.555000,4612225.550000,3412,5805,144.425629,192.830597,176.070267,165.690094,148.962830,138.524811,138.202499,139.103317,139.871918,146.161179,144.739685,156.781006,175.276871,194.045471,207.632248,221.690094,222.227295,210.971085,190.962830,169.971085,158.433899,156.425629,149.772751,117.648773,98.491753,114.128120,128.185974,93.607452,45.723160,17.638037,13.615722,13.053734,9.956215,11.009934,12.468613,5.575217,1.245458,0.309918,0.000000,0.000000,0.000000,0.000000,0.142149,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.155000,4612225.550000,3440,5805,156.326462,195.161179,173.747955,166.723160,151.607452,138.417374,139.541336,139.045471,140.904968,147.367783,144.516541,158.078522,175.095062,194.962830,209.293411,223.475220,225.004150,211.739685,190.144638,170.781006,159.235550,156.169434,150.590927,117.458687,99.276878,115.227287,127.657036,93.219025,45.235558,17.292582,13.690101,13.238032,11.567785,11.630595,12.041339,7.542986,0.690084,0.100827,0.318183,0.000000,0.026446,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601434.155000,4612225.550000,3460,5805,150.594223,194.511551,175.065292,167.536362,151.338013,138.412415,138.313248,137.412415,139.478531,147.098343,143.362823,155.238846,173.495041,193.428909,208.205765,222.147919,223.627258,210.668579,189.544617,169.214050,157.900009,154.478516,148.627274,115.949608,97.164482,114.205803,127.090103,91.858696,43.214069,17.342169,13.511589,13.209934,8.492578,11.195058,11.428941,6.452075,1.122316,0.126447,0.284298,0.030579,0.015703,0.000000,0.000000,0.111571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.155000,4612225.550000,3475,5805,173.089279,204.981842,179.783478,169.485962,153.651260,140.395065,141.229782,139.857880,141.890930,149.882660,144.973572,157.833084,176.081009,194.452911,210.312424,224.039688,225.262833,211.742172,191.527298,169.973557,159.246292,155.204987,150.527298,118.006622,98.378525,116.287621,128.841339,93.419861,45.857880,18.099194,13.684316,15.189273,12.258696,12.488445,12.379354,8.859518,0.624795,0.211571,0.067769,0.036364,0.162810,0.000000,0.116529,0.008265,1.402479,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.555000,4612225.550000,3492,5805,135.945480,177.127289,170.697540,161.011597,146.590103,137.176880,136.490921,135.978531,137.135559,141.523987,142.193405,154.631424,174.036377,190.011597,205.433075,218.598373,219.631424,210.094238,187.796707,167.408279,155.375229,151.738861,145.309113,114.193405,94.242996,113.482666,125.201668,90.259521,42.978531,16.445475,13.209937,9.595056,10.197538,11.015718,12.252082,5.260341,0.985126,0.060331,0.128099,0.000000,0.011570,0.000000,0.003306,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.355000,4612225.550000,3511,5805,114.934723,168.025650,167.372757,157.141357,144.455399,137.240509,135.662003,135.414062,135.868607,138.678528,141.736374,155.042175,174.257050,190.620667,205.157867,217.223999,219.058701,211.000854,188.223984,166.075241,155.314911,153.736389,146.918213,114.951256,97.157867,112.719849,125.885139,92.579353,44.463657,16.790928,13.356218,8.290096,10.576049,11.652908,12.649604,6.904969,0.705786,0.123968,0.170248,0.000000,0.058678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.555000,4612225.550000,3537,5805,117.561165,163.957870,167.933075,157.866959,145.486801,137.734726,137.114899,136.709930,136.544647,139.577698,142.271927,155.792587,174.346298,191.668610,205.734711,218.280167,221.585953,211.966125,189.767792,168.271927,157.387619,152.313248,147.718201,115.784309,96.990921,113.379349,125.999184,94.114891,43.230598,18.006630,13.428945,9.183485,10.916546,11.983488,11.358695,5.114057,0.518183,0.332232,0.009918,0.000000,0.023141,0.000000,0.009918,0.014876,1.307438,1.338017,0.000000,0.000000,0.000000,0.000000 -601454.955000,4612225.550000,3564,5805,122.562820,163.190918,167.339676,159.091751,146.215714,137.347946,136.951248,136.025635,138.347946,140.546295,143.314896,156.290100,175.645462,192.901672,206.909927,219.166122,223.223984,213.372742,191.901672,169.562820,157.637207,153.662003,148.463654,116.430588,96.579353,112.637199,126.637199,92.744644,43.306633,17.783489,13.496714,8.512412,10.947951,11.615719,12.133075,6.481002,0.759506,0.084298,0.171901,0.000000,0.000000,0.000000,0.000000,0.016530,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.955000,4612225.550000,3579,5805,110.408287,160.185150,168.614899,157.565308,146.069443,139.152084,137.325638,136.317368,137.176880,140.689270,143.771927,156.201675,175.614899,193.119034,207.441330,219.672729,223.614883,213.416534,192.424820,169.821503,157.532257,153.904144,148.400024,116.523987,96.325638,112.152084,125.656219,92.813240,43.176884,16.659523,13.490929,8.871917,10.097537,11.122331,12.771917,5.669432,0.784299,0.121488,0.000000,0.000000,0.000000,0.000000,0.027273,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.155000,4612225.550000,3600,5805,104.418198,160.104141,167.823151,158.600006,146.228119,138.492569,137.079346,135.765305,137.376877,140.269440,142.963654,155.922333,174.748779,191.459518,207.203323,219.988449,222.162003,213.484314,190.847946,168.740509,158.095886,154.310760,149.145462,117.616531,96.864479,111.674393,124.947113,92.591751,44.971920,17.468613,13.558697,7.596707,10.238860,10.358695,11.204148,4.349594,0.650415,0.352894,0.083471,0.167769,0.000000,0.000000,0.034711,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.355000,4612225.550000,3621,5805,113.163651,165.485977,170.262833,157.915726,146.552094,139.477707,138.824814,137.097549,137.568619,141.155396,144.626465,156.849609,175.733902,193.593414,208.039688,220.436371,224.138855,213.948761,190.742172,169.477707,158.089279,153.643005,147.072754,116.791748,96.461174,113.766960,125.006622,92.279343,43.833076,17.877705,13.370267,8.788442,10.442991,10.706629,12.011586,5.747943,0.943804,0.258679,0.066942,0.035538,0.017356,0.345455,0.038843,0.210744,0.000000,0.000000,1.078513,0.000000,0.000000,0.000000 -601469.555000,4612225.550000,3637,5805,105.559525,169.584305,168.055374,160.675217,146.476868,138.427277,137.336380,136.509933,139.005798,141.691742,143.997528,156.493393,175.253723,192.592575,207.162827,219.435547,224.014053,213.757858,190.055374,169.476868,157.708267,153.228943,147.881821,116.832253,96.848778,113.228943,123.906631,91.774399,43.939686,18.445473,13.443820,10.120675,11.048779,11.658694,12.244644,6.027283,1.757028,0.285125,0.099174,0.000000,0.096695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.328926,0.000000 -601472.955000,4612225.550000,3654,5805,106.125641,160.175201,169.357025,158.885941,145.803299,137.985123,136.109100,135.150436,136.828110,139.993378,142.489243,154.745453,172.976852,190.092560,205.538834,217.737183,222.018173,212.662796,188.166931,167.480988,155.216522,152.224792,145.563629,115.993408,95.158699,109.960350,123.249603,89.216545,41.398365,18.138035,13.233077,5.374391,10.062827,11.369438,10.546297,6.526456,0.400828,0.478514,0.227273,0.021488,0.005785,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.555000,4612225.550000,3667,5805,108.563660,158.621521,166.885971,157.604980,143.274399,137.357056,136.299194,134.960358,136.233078,139.728958,143.034729,153.877716,173.728958,189.753738,204.819855,218.390106,220.844650,211.728958,187.927292,166.514069,154.373581,151.687622,146.290939,114.976883,93.547134,110.158707,122.629776,91.968620,41.885967,15.476878,13.299193,6.076873,8.463652,8.971918,10.648776,4.499181,1.569424,0.085951,0.085124,0.000000,0.000000,0.000000,0.003306,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.155000,4612225.550000,3685,5805,100.518196,163.757858,164.931412,154.906616,145.204147,136.501678,136.030609,134.014069,135.700027,138.592575,141.352905,153.865295,172.666946,190.518188,204.675217,217.485138,220.724808,210.914886,187.088440,165.245468,154.361160,151.204147,145.700012,114.262001,93.716545,109.617371,122.584312,88.162827,42.799191,17.474400,13.245473,6.434725,9.361174,10.359519,9.813236,4.326454,0.450415,0.233885,0.152893,0.000000,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.355000,4612225.550000,3726,5805,113.248772,163.752884,165.133057,159.083481,146.339691,137.546295,135.819000,135.306625,135.232239,138.901672,141.620667,154.397537,172.380981,189.744629,204.695038,216.422318,220.133057,209.579330,186.323135,164.546280,153.926453,149.100006,144.281845,112.587616,92.794228,108.364479,120.794228,87.744644,41.703331,15.812414,13.116549,7.297533,8.982661,10.202496,10.238032,3.840504,0.319009,0.222315,0.159505,0.006612,0.114877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.755000,4612225.550000,3743,5805,109.044640,167.466141,168.185150,158.242996,145.094238,137.581833,136.714066,135.515701,136.242996,139.044647,142.036377,152.449600,171.714066,188.499176,202.813232,216.482651,217.937195,209.242981,185.061172,163.011597,152.631424,146.871094,142.309113,112.176872,91.771919,107.036377,119.788445,87.234734,40.697540,16.862001,12.937210,6.985136,8.738033,9.381009,10.631420,3.443810,0.883473,0.060331,0.159505,0.011570,0.000000,0.000000,0.000000,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.155000,4612225.550000,3770,5805,102.503319,162.131424,165.387619,156.296707,145.933075,136.544647,134.404144,133.304977,134.767776,138.255386,139.552917,151.966141,168.800842,185.751266,200.594223,212.387604,213.858688,205.999176,181.676880,160.379364,150.156219,145.842163,140.445480,110.561165,91.007446,106.817368,118.693398,87.776047,40.900017,16.306631,12.767788,6.175217,9.510760,8.503321,8.500014,5.195050,0.514051,0.000000,0.061157,0.009918,0.000000,0.000000,0.073554,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601499.955000,4612225.550000,3789,5805,118.477707,170.519028,168.510773,159.320679,147.370270,137.667786,136.494232,135.733902,136.039688,138.312424,141.758698,152.758698,170.519028,187.841339,202.180191,213.114044,215.419830,206.659515,184.279358,162.948776,151.857880,147.502502,142.981842,112.692574,91.651253,108.436378,121.089272,90.733910,43.857868,17.147953,12.998366,6.880177,9.766133,10.586794,9.647946,5.809101,1.599176,0.000000,0.000000,0.005785,0.009918,0.000000,0.000000,0.128100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.955000,4612225.550000,3814,5805,118.320679,170.122314,167.014877,157.229752,146.039673,136.667770,136.163635,134.733887,134.882645,139.312408,140.328934,151.800003,169.353729,186.428101,200.279343,213.014877,214.783478,206.072739,183.105789,161.948761,150.965302,147.229752,141.254547,111.527290,91.436386,107.519020,121.180183,91.081017,42.039688,17.860348,12.841341,7.707450,9.661173,10.260346,9.364478,4.911578,0.742977,0.138843,0.000000,0.000000,0.044629,0.000000,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601509.355000,4612225.550000,3836,5805,113.785965,167.967758,170.190903,160.042145,147.711578,137.934708,135.637207,135.471909,135.290100,139.290085,141.075211,152.323135,170.248764,186.703308,201.033890,212.645447,216.133057,207.438843,184.157852,161.695038,150.546280,147.381012,142.009094,111.538033,91.364479,108.719849,121.050423,90.083481,43.488453,18.246300,12.909935,6.295879,11.285969,12.238860,12.016544,4.810753,0.661159,0.071901,0.306612,0.000000,0.011571,0.000000,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601513.555000,4612225.550000,3857,5805,114.676048,166.965302,167.816528,158.775208,144.353745,136.328949,135.618210,133.295883,133.403320,138.081009,138.998367,150.428101,168.246292,185.543808,199.238022,211.138855,212.874390,205.766953,180.998352,159.560333,149.345459,144.725647,140.618210,109.634727,89.684319,105.899185,119.568611,88.824814,41.097538,15.730596,12.783489,7.398359,8.657867,9.501669,12.020678,5.360340,0.552894,0.002479,0.219009,0.000000,0.047108,0.000000,0.131406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601516.355000,4612225.550000,3871,5805,113.732246,164.550430,165.352081,155.550430,142.327286,134.459503,132.120667,131.847946,132.277695,135.839676,137.145462,149.120667,166.170258,183.600006,197.657867,209.533890,213.062820,203.566956,180.426453,158.591751,147.252899,142.649597,138.327286,108.872742,87.839684,104.600014,117.757034,88.294228,40.137211,15.232249,12.575226,5.703317,7.853735,8.749602,8.267783,2.761163,0.314050,0.000000,0.001653,0.009918,0.006612,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.555000,4612225.550000,3887,5805,120.210754,172.136368,168.119827,159.384293,147.789261,137.458679,135.706604,134.326462,134.342987,138.086777,140.144623,152.904953,170.210739,185.995865,200.665298,213.086792,215.417374,206.814072,183.822311,161.615707,150.780991,146.210739,139.590912,110.698357,89.929764,105.929764,120.466949,90.508270,43.062008,17.714893,12.690102,6.124803,8.708282,8.990100,10.986792,4.540504,1.357854,0.180166,0.212397,0.000000,0.042976,0.260331,0.000000,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.755000,4612225.550000,3913,5805,130.658691,169.187607,167.534714,160.063644,148.443817,135.923157,135.468597,134.617371,135.071915,139.113235,139.939682,151.873566,169.204147,186.038849,200.419037,211.832260,215.179367,205.981018,183.204147,159.865295,147.823975,144.823975,138.427277,109.047127,90.113243,105.237206,118.749603,87.997536,44.005802,18.554564,12.584317,6.172737,10.571092,11.433074,9.861998,4.936373,0.743803,0.247108,0.173554,0.048761,0.079339,0.166116,0.266943,0.061984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601530.355000,4612225.550000,3941,5805,120.869438,175.133896,168.026459,160.571915,148.340500,136.290924,135.795044,134.456223,135.538849,139.580170,139.935547,151.786789,169.679352,187.803314,202.299179,214.034714,217.224808,207.042984,184.423157,161.009933,148.894226,144.315720,138.836380,108.885971,89.216545,104.183487,117.481010,88.952087,41.580189,16.004152,12.621507,6.391745,9.479356,9.418198,8.805799,5.045464,0.947110,0.244629,0.000000,0.052893,0.100827,0.000000,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601536.155000,4612225.550000,3970,5805,137.397537,172.695053,168.124802,163.653732,150.075226,139.190918,137.926453,137.604141,137.488449,142.124802,142.091751,154.438858,172.083481,189.926453,204.058685,217.157867,219.579346,209.521500,185.521500,162.166122,152.298355,145.595886,142.372742,109.976044,91.587616,107.595879,119.091751,90.554558,43.529774,18.853737,12.942994,5.892572,10.582663,11.611588,10.921503,5.124803,0.805787,0.144629,0.161984,0.033058,0.037190,0.000000,0.067769,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.155000,4612225.550000,4000,5805,118.901665,180.356232,173.149597,162.356216,148.546295,136.595886,137.000839,135.438858,134.984314,138.736374,140.108276,151.430588,169.678528,186.157883,199.000854,212.513229,214.414062,204.166122,181.116547,159.463654,147.306625,143.116547,138.645462,108.306625,89.389267,104.298363,116.215714,86.992577,41.463657,16.966961,12.604151,7.709928,8.605800,9.268611,9.948775,4.463644,0.730580,0.170248,0.128926,0.019008,0.005785,0.000000,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601544.955000,4612225.550000,4014,5805,117.829773,174.424820,169.887619,160.391754,146.077698,135.044647,134.433075,133.499191,132.879364,135.763657,137.061172,147.838043,164.242996,182.325638,194.879364,207.019852,208.077698,198.333908,175.590103,154.102493,142.664490,139.656219,134.581833,105.804977,86.771919,102.143822,113.218201,82.532249,40.094234,16.061176,12.234730,8.117368,8.703321,8.891751,10.612411,4.052074,1.185126,0.247935,0.040496,0.472728,0.146281,0.000000,0.024794,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601550.355000,4612225.550000,4041,5805,117.925636,167.198349,168.578506,157.123962,142.966949,133.041336,131.628113,129.553726,129.322327,130.595047,132.752075,144.280991,160.289261,176.173553,188.049591,199.132233,201.702484,190.966949,168.760330,148.727280,138.528931,134.842987,129.272736,100.677704,85.752083,96.991753,107.471092,79.223160,37.828949,17.058697,11.752085,9.437203,9.012411,11.757040,10.321504,3.587610,1.072730,0.235538,0.137191,0.005785,0.078513,0.000000,0.071075,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601555.755000,4612225.550000,4068,5805,114.609108,171.551270,168.377716,156.807465,140.947952,130.716553,131.063660,128.997543,129.385971,130.493408,131.931427,143.212418,159.931427,175.121521,188.600830,199.939682,201.187607,189.832245,167.361176,147.956223,137.865311,135.080185,130.154556,101.468613,84.584312,97.823975,107.187622,77.807457,37.733074,17.435555,11.832252,7.816543,10.437205,12.605803,10.363650,3.472733,1.370250,0.184298,0.050413,0.060331,0.000000,0.000000,0.000000,0.559505,0.000000,0.000000,0.000000,2.161984,0.000000,0.000000 -601558.955000,4612225.550000,4084,5805,110.423157,171.795074,168.133911,156.770279,141.943832,131.960342,130.985138,129.803329,128.547119,131.274399,131.307449,142.687622,160.125641,175.530609,187.067795,200.472748,201.133911,191.208298,167.216553,148.621521,137.522339,135.398361,129.018204,100.952072,84.175224,96.423149,108.679352,79.489273,35.927292,15.105803,11.728945,7.628936,8.521503,9.452908,10.357039,4.296702,0.732233,0.282645,0.265290,0.002480,0.060331,0.114050,0.132232,0.056199,3.995042,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.755000,4612225.550000,4108,5805,116.318199,174.781006,167.764481,158.409103,141.648773,130.822327,130.417374,128.789276,128.880188,131.673569,132.359528,142.896713,160.334732,175.946304,187.764465,199.458679,200.921494,188.772720,166.681839,147.342987,136.541336,135.433899,129.590927,100.086792,84.309937,94.929771,106.483490,77.342995,36.045475,14.118200,11.781011,9.551253,9.302494,8.517370,10.159516,4.242156,0.456200,0.249587,0.298348,0.061984,0.000000,0.000000,0.014050,0.176033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.955000,4612225.550000,4139,5805,121.519844,170.048798,166.635559,158.941345,142.883484,133.164490,132.933075,129.189270,130.271912,133.222336,132.693405,144.015717,159.619034,176.387634,189.048782,200.189270,200.817368,189.321503,167.544647,147.412415,138.395889,135.585968,129.536377,101.924805,84.941345,97.420670,107.726456,78.982666,37.544647,15.157043,11.776052,10.682660,8.871090,9.218197,11.234727,5.085960,0.809919,0.103306,0.036364,0.036364,0.046281,0.000000,0.000000,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.755000,4612225.550000,4153,5805,119.730598,179.738846,167.614883,158.226456,141.614883,132.152084,131.433075,130.400009,130.350433,134.209930,132.821503,144.127274,160.821487,176.242981,189.995041,200.813232,202.028107,189.681000,168.110748,148.639679,137.871078,134.664474,130.036377,101.928947,85.284317,97.970268,106.581841,78.284317,37.466137,15.317372,11.821506,9.952908,9.464479,9.777700,9.700016,2.776040,1.289259,0.292563,0.099174,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601578.155000,4612225.550000,4180,5805,123.781006,188.747940,173.293396,164.665283,147.599167,137.789261,136.764465,135.987610,134.136368,139.665283,140.293396,150.855377,168.458679,186.888428,201.855377,215.500000,218.747940,206.921494,182.028931,157.921494,147.053726,144.243805,141.045456,109.169441,91.136383,103.764481,113.987617,81.822342,38.805809,14.904979,12.822333,7.638857,8.399188,9.582660,9.757868,3.859513,1.268598,0.396695,0.095042,0.200828,0.280992,0.143803,0.478513,0.822315,0.000000,0.000000,0.000000,0.000000,1.539670,0.000000 -601582.155000,4612225.550000,4200,5805,105.033905,181.463654,170.248779,163.595871,148.678513,137.661987,136.678513,135.744629,134.868607,140.174377,139.976028,151.562805,168.124786,187.612411,201.785965,217.157852,219.025620,207.835541,183.265305,158.108261,147.637192,143.959503,141.099991,109.066948,91.703316,105.827278,114.232239,83.934723,39.802502,15.692579,12.827291,6.686790,9.937205,9.545469,10.228114,5.542159,0.700828,0.242976,0.268597,0.455374,0.347108,0.035538,0.503307,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601588.355000,4612225.550000,4231,5805,102.113243,180.171097,175.947952,163.898376,148.981018,136.683487,137.923172,135.080170,136.080170,139.501678,140.609116,152.162842,169.476883,186.600845,201.823990,215.460358,218.724823,207.501678,182.518204,158.047134,146.865311,144.080185,140.881851,109.708282,90.972748,106.104973,114.840508,83.658699,41.245476,15.617375,12.807457,6.465302,9.133074,9.345469,9.614893,4.542985,0.452067,0.120661,0.262812,0.695869,0.071075,0.332233,0.299174,0.446281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601596.955000,4612225.550000,4274,5805,117.071091,177.666122,172.905792,160.914062,146.426453,135.624802,136.252899,134.145462,133.393402,138.095886,139.409927,149.071091,166.666122,184.757034,199.335556,211.971909,216.500839,204.409927,179.178528,156.046295,143.723984,140.624802,137.145462,107.393402,89.219849,103.517365,113.095879,81.252907,39.484318,16.964483,12.467788,7.553733,8.623154,8.569437,10.081008,3.619017,1.000829,0.268596,0.230580,0.154547,0.088430,0.028926,0.241323,0.204959,0.000000,0.000000,0.000000,0.000000,1.572727,0.000000 -601609.955000,4612225.550000,4339,5805,116.229774,166.386795,171.932236,161.081009,145.700836,135.981842,136.337219,133.114059,133.039688,136.560333,138.808273,148.766968,166.593414,184.238037,197.766968,210.700836,215.684311,204.039688,179.386795,154.618210,143.857864,140.725632,137.618195,106.585136,89.403320,103.494232,113.337204,81.155396,39.725643,16.229769,12.510762,7.986790,8.932246,8.685965,10.771916,4.745464,1.141325,0.502481,0.205786,0.224795,0.600828,0.085951,0.562811,0.183471,1.637190,0.000000,0.000000,0.000000,0.000000,2.173554 -601629.955000,4612225.550000,4439,5805,102.647125,166.423996,174.481842,159.886780,145.192566,135.655380,135.589279,134.324814,134.581009,136.738037,139.432236,150.671921,169.291763,187.010757,200.060333,213.614075,217.498367,205.680191,180.746307,156.622330,146.010757,142.820663,138.027298,108.423981,91.052078,104.300018,115.795883,84.473572,43.481838,16.675226,12.547953,8.624808,9.894231,10.107453,10.965307,5.206622,1.257028,0.347108,0.127274,0.016529,0.066943,0.057026,0.566117,0.429753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612225.550000,4587,5805,93.926460,168.587601,174.447098,160.595871,144.703323,135.595886,135.463654,133.637192,133.686783,136.290100,138.620667,150.860321,169.455368,186.918182,201.364456,215.075211,216.909912,204.595871,180.612396,157.058670,145.513229,143.356216,138.736374,108.645470,91.207451,106.066956,115.761162,83.976044,41.331425,16.612417,12.612416,8.285965,8.723983,9.839685,11.998364,5.908273,0.424795,0.330579,0.357025,0.163637,0.213224,0.000000,0.459505,0.133884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.555000,4612225.550000,4742,5805,95.211586,169.590912,169.622314,158.385971,146.526474,136.633911,136.179367,131.509933,132.100845,133.894226,137.299194,149.439697,168.538849,186.046295,201.649597,214.988449,217.431427,206.505798,183.737213,160.811600,150.770264,147.522339,143.745483,114.968613,95.059525,108.142166,119.489273,85.522331,44.564480,17.473572,13.067788,10.244643,9.311586,13.210760,11.700017,5.807446,1.727275,0.728927,0.635538,0.444629,0.252893,0.000000,0.290910,0.776034,0.000000,0.000000,1.287603,2.414050,0.000000,0.000000 -601707.955000,4612225.550000,4829,5805,104.110764,173.490921,174.391754,163.813248,147.879364,135.796707,137.953735,134.540512,136.201675,137.424820,140.325638,152.788452,170.590103,189.573578,202.242996,215.738861,218.482666,204.697540,179.953735,158.276047,147.557037,144.416550,139.490921,109.490929,91.267792,106.102501,117.738861,85.292580,42.416550,17.223158,12.681010,10.466956,9.801670,10.662000,11.971090,5.062818,0.637192,0.479340,0.155372,0.145455,0.526447,0.064463,0.203307,0.453720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.755000,4612225.550000,4868,5805,115.635551,171.038040,176.294235,158.509109,145.492569,135.666122,135.269440,134.302490,134.624802,135.740509,138.765305,151.798355,171.021500,187.740509,202.294235,215.856216,217.633072,206.013229,181.542160,158.881012,146.765305,145.013229,139.963654,109.641342,90.319031,105.839684,117.732254,84.533905,41.302502,15.708282,12.723986,11.534726,9.665303,10.236379,11.980179,5.700009,1.957028,0.814051,0.111571,0.352067,0.181819,1.023968,0.536364,0.758679,0.000000,0.000000,0.000000,0.000000,5.662810,5.419009 -601722.355000,4612225.550000,4901,5805,117.976036,170.695053,173.149597,161.645462,145.562820,136.496704,136.488449,134.670258,133.893402,137.290100,137.686783,150.992569,170.306625,188.257034,200.926453,216.207458,218.414062,205.331421,179.777695,158.496704,147.223984,145.984314,139.281830,108.744644,91.529762,105.909927,117.752907,84.248772,41.100018,15.182664,12.662003,11.885139,9.873570,9.068610,11.352082,4.561165,0.520662,0.256199,0.695042,0.066116,0.000000,0.000000,0.094216,0.161984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.155000,4612225.550000,4935,5805,112.567795,183.323975,176.092575,163.373566,149.679352,138.307449,138.588440,136.059509,137.390091,140.439682,141.208267,154.125626,172.555374,190.704147,205.158691,218.547119,221.092575,208.745468,183.133896,161.150421,149.522324,147.910751,143.563644,112.786789,92.530586,107.671082,120.001663,87.497528,43.885971,17.905802,13.051258,13.408282,10.504976,12.257041,13.527290,6.366125,2.719839,0.437191,0.347935,0.342150,0.205786,0.000000,0.017356,0.639670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601732.555000,4612225.550000,4952,5805,109.752083,182.435562,178.766144,165.931412,146.666946,135.055374,136.700012,134.410751,135.080170,138.344635,138.832245,151.154572,171.592590,189.129776,203.848785,217.394226,219.146286,206.782654,181.683502,159.476868,147.022324,145.204147,140.972733,109.195877,90.658684,106.344635,118.592575,83.972740,42.361179,17.077703,12.815722,11.786793,10.064478,11.687618,11.441338,6.416538,0.457026,0.275208,0.067769,0.004132,0.000000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612225.550000,4980,5805,117.543823,184.783478,179.775208,166.155396,151.031433,138.890930,140.733902,137.626465,137.138870,141.229782,141.097549,154.742172,172.932236,191.312393,206.601639,218.535522,220.651230,207.204956,185.023132,161.419861,149.337219,146.874405,141.527298,110.014900,92.378532,108.031425,118.766968,86.006638,43.477703,16.904976,12.866136,12.933902,11.087620,10.709929,10.856214,7.092572,1.530582,0.327274,0.000000,0.000000,0.316531,0.016529,0.657853,0.580166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601744.755000,4612225.550000,5013,5805,121.145477,190.856232,176.252914,167.021515,148.657883,137.641342,138.021515,136.996719,136.228134,140.509125,140.451263,153.368622,172.352097,191.095901,204.847946,218.872742,219.327286,205.269440,181.856232,160.360367,149.616562,147.385147,140.963669,109.839676,92.558693,108.178520,118.261162,84.748772,43.558701,17.002499,12.814896,11.747950,9.544643,10.756214,13.485141,6.008275,1.050415,0.706613,0.424794,0.019835,0.001653,0.059504,0.079339,0.072727,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.755000,4612225.550000,5033,5805,123.644646,186.624786,172.780151,164.647934,146.796692,133.804977,134.342163,131.028107,132.798355,136.947113,135.401672,148.664459,166.036346,186.400009,199.771912,215.837997,215.606598,201.474380,180.110748,158.176865,146.499176,145.995041,142.400009,110.515717,91.788445,109.499184,120.226456,85.457863,44.119026,15.741340,12.945474,15.372744,9.686794,13.232247,15.266132,11.237202,2.619013,2.042978,2.753721,2.096697,1.394217,0.357852,0.305786,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601752.555000,4612225.550000,5052,5805,136.176056,201.508270,183.491730,171.830597,151.409088,137.475204,140.020660,137.838837,137.533051,143.938034,140.607452,153.747955,172.128113,191.871902,206.169434,220.012405,218.946304,206.119858,182.491745,161.466949,150.185944,147.086792,141.500015,109.161171,91.747948,107.822327,118.243805,85.615715,43.533077,15.584315,12.863654,13.319024,10.549603,12.037207,13.648777,6.340506,1.978515,1.658680,0.883472,0.504134,0.508266,0.409918,0.333885,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.355000,4612225.550000,5081,5805,133.727280,188.834717,173.818176,163.828094,147.599991,134.178513,137.803314,135.927261,135.985123,142.728912,138.396698,151.142136,168.547104,187.885132,201.207458,216.223984,215.959518,200.133072,179.430588,157.311569,146.666931,145.121475,141.063629,109.347946,92.695061,109.295059,121.154564,86.989273,44.179356,18.273571,12.823986,14.673569,10.863653,12.943819,13.957041,7.587613,2.141326,1.038018,1.601654,0.288431,0.539670,0.116529,1.053720,0.000000,0.000000,0.000000,0.000000,1.205785,0.000000,0.000000 -601767.755000,4612225.550000,5128,5805,138.204163,199.857040,184.972733,170.443817,149.848770,137.278519,136.981003,135.939682,136.567780,144.964478,140.113235,152.328110,170.303314,189.212402,204.675217,219.055374,217.964478,202.790924,181.600830,159.138031,148.154556,145.509933,141.336380,107.526474,91.121506,109.972755,119.113251,84.518196,43.435558,16.442165,12.848779,16.553736,10.296711,11.192577,13.590924,6.510755,1.121490,0.680167,0.852894,0.251240,0.051240,0.128926,0.146281,0.071901,0.000000,1.765289,0.000000,0.000000,0.000000,0.000000 -601783.155000,4612225.550000,5205,5805,96.019028,165.523148,173.696701,157.390915,141.523163,134.275223,133.316559,130.630600,130.828949,132.994232,135.465317,146.977707,165.985962,183.374390,196.043808,208.333069,210.713226,200.324799,176.704971,153.680176,143.415726,139.547958,134.390930,104.266968,85.787628,102.291756,116.994240,83.564484,41.217373,15.948779,12.217375,8.571916,8.550428,11.390099,9.302493,6.460340,0.712398,0.300827,0.069422,0.212397,0.000000,0.000000,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.155000,4612225.550000,5330,5805,97.728119,161.990112,170.552094,158.907440,143.386795,133.866135,131.419861,129.700851,129.031433,133.180191,134.519028,145.709106,165.056213,182.204987,195.428116,207.510773,209.899200,199.494232,177.114075,155.386795,143.370270,141.328949,133.981842,104.386795,87.295891,103.204971,118.717377,86.626472,42.990101,16.548779,12.180183,9.842990,9.633901,9.955387,12.037204,5.600009,1.118184,0.203306,0.343803,0.340496,0.099174,0.000000,0.223968,0.121488,2.309091,0.000000,0.000000,0.000000,0.000000,0.000000 -601833.955000,4612225.550000,5459,5805,126.973557,168.114059,170.271088,158.593399,142.725632,131.940506,129.419846,127.667778,127.841331,130.932236,132.907440,145.593399,163.262817,181.444626,194.973541,206.750397,209.973541,199.345444,176.618195,155.213226,143.642975,139.221497,132.072739,102.857857,84.163643,101.990089,116.758682,86.816536,41.932251,14.989273,12.006630,6.885965,8.907454,8.883487,10.345470,5.670257,0.623969,0.077686,0.136364,0.000000,0.085951,0.032232,0.265290,0.080992,2.323967,0.000000,0.000000,0.000000,1.290909,0.000000 -601845.555000,4612225.550000,5517,5805,106.861176,166.943817,169.695877,158.390091,143.191742,130.976883,131.571915,129.613235,129.704147,132.530594,133.679352,145.505814,164.464478,182.514053,196.464478,208.596710,210.489273,201.720673,178.423157,157.059525,144.323975,138.472733,135.472748,104.728943,85.224808,101.191750,116.381836,87.158699,43.720684,15.033901,12.315722,6.057036,8.295057,9.210758,10.339684,5.413230,0.706613,0.341323,0.219836,0.003306,0.114877,0.263637,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,1.737190,0.000000 -601855.555000,4612225.550000,5567,5805,116.517365,176.104141,169.608276,159.004974,145.071091,132.748779,132.071091,128.922333,128.657867,133.054565,134.327286,146.641342,165.137207,182.723984,197.228119,209.153732,211.335556,202.434723,179.798355,156.641342,145.062820,141.509109,133.963654,104.310760,85.872742,101.690926,117.558693,89.542160,43.484318,15.902497,12.178532,6.866952,9.233073,10.302495,10.629766,4.714885,0.619010,0.125620,0.141323,0.049587,0.070249,0.000000,0.210744,0.121488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.155000,4612225.550000,5615,5805,119.930603,179.847946,170.211578,160.583481,143.649597,133.145462,132.368607,130.583481,130.575211,134.732239,134.360336,146.095886,164.699188,183.004974,196.864471,209.616547,211.467789,201.856216,178.715714,156.889267,146.236374,141.757034,135.690918,105.641335,86.277702,104.277702,116.806625,88.633064,42.459526,16.601671,12.335556,7.010754,8.823157,9.498364,11.038857,4.957860,0.722315,0.141323,0.205785,0.015703,0.023967,0.032232,0.083472,0.000000,2.321488,0.000000,0.000000,0.000000,0.000000,0.000000 -601871.555000,4612225.550000,5647,5805,89.981010,164.336395,167.394241,154.468628,138.212418,128.551239,128.270248,125.485130,124.501663,127.790909,128.609085,140.724823,158.121521,176.336395,189.394241,201.518204,203.890106,191.989288,169.228958,148.567795,139.146301,134.352890,129.427277,98.790916,81.989273,98.352905,110.981003,82.005806,38.873573,14.777705,11.766135,8.020675,7.622330,8.868610,12.202495,4.554555,1.346283,0.120661,0.009918,0.000000,0.000000,0.000000,0.516530,0.200827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.955000,4612225.550000,5664,5805,109.810760,169.000839,168.488449,154.934723,139.504974,129.876877,128.810760,127.579353,126.050423,128.744644,129.447113,142.397537,160.909927,177.628937,190.223984,203.009109,204.108276,192.719849,170.860336,149.471909,138.000839,135.372742,129.463654,99.455383,82.232246,98.711586,111.587616,82.017365,38.769447,15.537208,11.769442,9.771088,6.709107,9.643818,9.757040,4.585960,1.097522,0.319835,0.065290,0.193389,0.170248,0.000000,0.132232,0.000000,0.000000,0.000000,1.872728,0.000000,0.000000,0.000000 -601880.555000,4612225.550000,5692,5805,103.069435,172.590103,165.391754,153.003326,139.127289,127.515717,128.201660,124.532249,125.135559,127.110764,128.292572,141.019852,158.962006,175.788452,189.350433,201.912415,202.953735,190.366959,169.689270,146.755386,136.681015,134.970261,128.581833,98.102501,81.300842,96.515724,110.416550,80.457863,37.887623,14.227291,11.689276,8.288442,8.575222,8.523155,9.126461,4.074389,0.730581,0.271075,0.015703,0.110744,0.235538,0.577687,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601889.755000,4612225.550000,5738,5805,108.900848,167.214874,168.636368,155.066116,140.578506,128.818207,129.314072,126.454567,126.099197,129.132263,129.363647,142.123962,160.586777,178.066116,190.876038,203.429749,205.247940,192.082642,170.198349,150.280991,138.586777,135.157043,129.181839,98.768616,82.801674,97.520683,110.851265,82.636391,37.553741,15.049603,11.743821,9.188446,9.092580,9.149603,11.354562,4.126454,0.456200,0.163637,0.056199,0.000000,0.000000,0.037190,0.256199,0.000000,0.000000,0.000000,0.000000,1.209917,0.000000,0.000000 -601900.555000,4612225.550000,5792,5805,109.155388,179.936386,168.903336,157.853729,142.754547,129.638855,130.787613,126.663651,127.531418,130.804153,130.465302,142.382660,160.795883,178.233902,192.382660,205.217377,205.671921,192.043823,170.853745,150.787628,139.490112,137.093414,129.572739,99.647125,83.209106,97.994232,111.506622,81.300018,38.985970,14.381838,11.779359,10.009105,9.219851,11.151257,12.439685,4.772736,0.590084,0.386778,0.107438,0.010744,0.007438,0.000000,0.058678,0.392562,0.000000,1.818182,0.000000,0.000000,0.000000,0.000000 -601908.555000,4612225.550000,5832,5805,116.919846,186.696701,171.093399,158.647110,142.630585,129.283493,130.928116,127.564476,128.225632,132.076874,130.341339,142.886780,160.134720,178.572739,192.118195,205.523148,205.514877,192.192566,169.861984,150.076859,138.721497,135.283478,129.936371,98.853737,82.919846,98.481834,110.225632,80.886795,37.060352,14.816546,11.812416,12.142164,9.501670,10.166959,11.058693,4.892571,0.252893,0.152893,0.000000,0.073554,0.016529,0.000000,0.111571,0.261984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601918.755000,4612225.550000,5883,5805,119.642990,187.866119,172.031418,159.527283,142.180176,128.948776,129.874390,127.114067,129.634720,134.915695,130.444641,142.527283,159.948761,178.700836,192.601654,206.535538,206.849594,192.419846,169.948761,149.923981,138.783478,136.601654,130.527283,99.229767,82.287621,101.370262,111.138855,77.824806,38.353733,17.309935,11.866135,14.772743,9.252908,11.300840,11.104146,5.158688,0.411572,0.485125,0.014876,0.013224,0.089257,0.000000,0.352067,0.266942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601925.955000,4612225.550000,5919,5805,129.761169,183.471909,166.430573,155.017349,137.637192,127.215706,126.174385,123.480171,123.827278,129.504959,126.356201,137.736374,154.976028,171.711578,186.802490,199.984314,200.248779,185.471909,165.951248,147.182648,134.447113,132.422318,125.645462,96.711586,80.810760,96.926453,107.488434,77.438858,38.653736,15.826464,11.422333,13.161172,8.641336,10.985141,12.766957,5.856208,0.363638,0.304960,0.000000,0.064463,0.054546,0.000000,0.047108,0.209918,0.000000,0.000000,2.456199,0.000000,0.000000,2.119835 -601928.555000,4612225.550000,5932,5805,99.541336,154.095062,155.053741,140.417374,125.698364,116.814064,114.359520,112.136383,112.690102,113.863655,115.921501,126.012413,142.690094,158.541336,171.648773,182.648773,184.847122,174.632248,154.590927,134.781006,125.243820,121.533073,116.136383,89.566132,72.739685,87.871918,100.508278,72.971092,34.235558,13.309935,10.557871,8.059516,8.402494,9.379355,8.901667,4.525629,0.629753,0.119009,0.000000,0.062810,0.000000,0.000000,0.139670,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,2.214050 -601931.355000,4612225.550000,5946,5805,81.203323,150.701675,151.792572,139.354553,125.594231,115.015724,114.387619,110.850433,110.420677,111.519852,114.172745,124.255394,141.809113,156.709915,169.569427,181.073563,183.181000,173.709915,151.652069,133.809113,123.371094,120.106628,115.536385,88.147957,72.759521,87.164482,99.784317,73.189278,33.230598,13.138033,10.503325,8.631418,8.247950,9.968611,10.085138,5.039679,1.000829,0.208265,0.271075,0.044628,0.000000,0.000000,0.002480,0.000000,0.000000,0.000000,0.000000,0.000000,2.609091,0.000000 -601935.955000,4612225.550000,5969,5805,88.360344,147.989273,150.179352,140.129761,125.956207,116.509926,115.162819,111.964470,112.410751,114.443810,115.774391,126.559517,142.997528,159.129761,172.063644,182.675217,185.303314,175.493393,153.848770,134.642151,125.204140,122.286789,117.609100,90.964470,75.261993,88.898354,99.749596,72.534721,34.146301,13.528116,10.691754,8.217368,10.697536,10.293405,11.442165,5.330587,1.242151,0.571902,0.421489,0.472728,0.055372,0.022314,0.790084,1.131406,1.382645,2.140496,0.000000,0.000000,0.000000,0.000000 -601943.355000,4612225.550000,6006,5805,84.994225,146.324799,150.151245,138.440506,124.374390,114.787613,114.481827,112.853729,112.490089,114.713226,116.176041,127.564476,143.845459,159.126450,172.713226,184.878525,187.275208,177.217361,155.457031,135.895065,126.754562,122.572731,118.118187,92.886780,76.539680,89.828934,98.349602,73.539696,34.721512,12.302495,10.738035,7.059517,7.349603,8.623983,10.259518,4.964474,0.714877,0.111571,0.000000,0.000000,0.000000,0.000000,0.128926,0.725621,0.000000,1.414876,0.000000,1.033884,0.000000,0.000000 -601955.555000,4612225.550000,6067,5805,100.061996,141.076065,149.084320,135.745483,124.315720,114.439690,112.613243,110.836380,110.952087,114.332253,115.795059,126.993408,144.927292,160.919037,174.803314,186.753723,188.894226,179.629761,158.481018,138.249619,128.877701,125.274399,121.200020,94.009933,76.762001,93.538864,103.357040,74.348778,35.679356,14.756216,11.018202,7.732245,9.198363,10.081834,9.353736,5.840505,1.050416,0.844630,0.218182,0.180992,0.097521,0.659505,0.069422,0.615704,1.428099,0.000000,0.000000,0.000000,1.790909,2.028099 -601967.555000,4612225.550000,6127,5805,102.182663,146.265305,146.174393,132.976059,117.686798,108.628944,105.381012,103.199196,102.207458,102.802498,104.571098,117.240517,135.852081,152.066956,165.273560,176.257034,178.761169,166.703323,145.752899,126.017380,114.496712,111.422333,104.372749,76.860352,60.554565,79.562828,97.819031,72.951263,35.488449,12.687620,9.488450,7.681830,8.771088,9.325632,8.137202,5.509102,2.482649,0.677688,0.380166,0.087604,0.350414,0.557025,0.001653,0.519836,2.112397,1.944628,1.580992,0.000000,0.000000,0.000000 -601265.355000,4612215.550000,2616,5855,230.513214,227.397522,226.141312,220.794205,216.356201,220.215698,228.761154,231.785950,238.637192,247.025620,259.529755,277.901672,300.050415,319.149597,331.852081,341.670258,342.777710,324.422333,278.356201,242.926437,228.595871,221.000824,209.009094,176.157852,155.116531,156.298340,147.571075,102.604149,48.017372,21.653740,19.000847,15.286796,14.736381,17.130596,19.552912,15.755388,3.537198,2.261989,1.810748,0.860333,0.609093,0.276860,0.438018,1.334713,5.654546,0.000000,0.000000,0.000000,0.000000,2.225620 -601268.755000,4612215.550000,2633,5855,210.676865,222.941330,224.933060,219.933060,217.709915,220.313232,229.271912,234.825623,239.387604,250.701675,261.966125,277.181030,297.676910,313.842194,326.809143,334.875244,333.205841,313.329803,261.106659,225.362808,211.602478,202.891739,190.627274,157.313248,140.023987,139.114899,126.511589,84.908287,38.685143,20.456219,17.329771,16.285969,13.986794,14.990928,13.419026,10.223157,4.171085,2.036370,1.091738,0.827274,1.226449,0.562810,1.937193,1.476862,1.481818,2.666116,0.000000,1.114876,0.000000,0.000000 -601273.755000,4612215.550000,2658,5855,211.908279,228.519852,227.982666,222.957870,220.982666,224.387619,235.181015,240.842163,247.156219,258.040527,270.850433,287.073608,308.800873,325.652130,338.503357,347.280212,342.875244,321.048798,267.908295,229.809113,215.379364,206.577698,193.990921,159.866959,142.015717,140.709930,126.833893,83.528107,40.114895,21.230598,17.635557,16.697540,16.752909,16.197538,15.049605,10.296711,3.947943,2.542982,1.810747,0.903308,1.300830,0.076860,1.042978,0.848762,2.644628,0.000000,0.000000,0.000000,0.000000,0.000000 -601281.155000,4612215.550000,2695,5855,207.285126,229.309921,229.657028,226.665283,223.855377,229.260330,238.276855,242.442154,248.020660,258.797516,271.929749,286.805817,304.830566,324.425629,335.425629,341.665283,340.185974,321.301666,271.466980,234.152893,222.508270,211.706604,198.590912,168.260330,149.657028,146.847107,135.847107,90.706627,42.053738,21.485971,18.053738,15.454563,15.835555,15.530597,15.404977,9.128941,2.824801,1.891741,1.026448,0.750415,0.871076,0.006612,0.691738,0.987605,4.352893,2.788430,1.195868,0.000000,4.009091,0.000000 -601292.355000,4612215.550000,2751,5855,203.864471,233.409927,233.145462,231.740509,228.814896,232.963654,242.889267,247.476044,254.319016,262.914062,276.914062,293.467773,313.467773,331.889282,345.847961,356.773560,356.980164,342.748779,295.641327,258.633057,244.897537,239.219849,228.781830,193.145462,174.542160,173.013229,164.170258,114.583481,53.046303,22.765310,20.798368,16.112413,16.064482,20.370266,19.478531,10.765304,3.452901,1.481822,0.417357,0.890913,0.751241,0.338845,1.876863,0.946283,0.000000,1.319835,1.281818,2.115703,1.349587,0.000000 -601309.555000,4612215.550000,2837,5855,217.791748,231.618195,230.221497,228.973557,226.601654,230.874390,239.816528,244.378525,250.345459,260.295868,271.089264,286.105804,303.800049,321.990112,335.932281,342.593414,343.444672,329.990112,281.155365,245.254547,231.841324,223.485962,215.527283,180.973557,159.791748,161.345459,154.213226,106.684311,46.320679,20.519030,19.593409,13.402497,14.959521,15.532249,15.151258,9.174397,2.870257,0.883473,0.795870,0.792565,0.198348,0.092563,0.761986,0.741323,2.847934,2.785124,1.223141,2.357025,0.000000,0.000000 -601331.955000,4612215.550000,2949,5855,159.674393,187.723984,189.641342,185.327286,183.079346,185.641342,191.500839,195.319016,197.236374,206.641342,216.178513,232.509094,249.657852,269.178528,287.137207,300.905792,306.682648,307.723969,288.236389,266.897522,260.252899,257.442993,254.963654,228.748764,207.897522,220.525620,235.889252,197.071091,108.591751,29.332251,23.178532,17.077702,26.963655,42.509113,58.219856,42.682667,2.475211,0.068596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.099174,0.000000,0.892562,0.000000,0.000000,3.892562 -601345.755000,4612215.550000,3018,5855,210.251236,227.234726,223.829773,223.499191,219.234726,220.085968,228.590103,233.284302,237.995041,247.523987,257.036377,273.722321,292.094238,310.771912,323.879364,332.714081,334.375214,326.300842,290.887634,260.978546,249.317368,241.614899,233.854553,201.689255,180.292572,184.747131,186.218185,141.110764,68.920677,26.517374,21.259523,14.582662,20.785143,23.559525,26.356216,15.182660,3.911577,0.742150,0.717357,0.368597,0.449588,0.027273,0.265291,0.780994,0.000000,0.000000,0.000000,0.000000,0.000000,2.252066 -601355.555000,4612215.550000,3067,5855,182.284302,209.515701,203.639679,201.300827,195.110748,189.102478,195.639679,198.226456,201.102478,210.738846,217.317352,232.127274,250.391739,268.771912,283.854553,292.895874,294.457886,288.970276,259.176880,233.309097,221.309097,217.937195,211.672729,179.127274,157.424789,167.276031,178.193390,139.904129,67.722336,22.986794,19.242992,10.599188,16.274399,19.201670,24.630594,13.703321,2.409096,0.877688,0.429753,0.017356,0.385951,0.000000,0.005785,0.091736,4.078513,2.694215,0.000000,0.000000,1.441322,0.000000 -601363.555000,4612215.550000,3107,5855,155.844635,165.629745,151.902496,145.885971,131.439682,123.902496,122.051254,121.290924,121.373573,126.166962,127.001671,135.894241,152.993393,166.629761,178.885941,187.431412,190.761978,189.795029,176.233047,160.753723,150.456207,148.133911,144.836395,117.563652,96.249603,114.431419,154.836380,139.803329,75.266136,20.373573,13.166960,7.948775,15.307456,24.638861,36.489273,24.282661,1.271904,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601370.755000,4612215.550000,3143,5855,152.747116,182.267776,167.780167,162.813232,148.623138,139.333893,139.788437,139.614883,140.738846,147.738846,147.598343,161.738846,180.350418,199.366943,213.970245,227.581818,231.251236,228.953720,209.986786,189.350418,177.895874,175.557022,173.400009,141.961990,116.358681,134.780182,163.300827,133.697525,64.631424,19.282665,15.763656,10.711583,13.332248,19.190104,23.169441,17.898365,1.786782,0.238017,0.046281,0.443802,0.166942,0.000000,0.400827,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.755000,4612215.550000,3158,5855,133.978531,180.970261,174.267792,164.681015,151.416550,141.424820,142.036377,142.433075,141.895889,148.267792,150.251266,162.557037,182.011597,199.904144,213.904129,227.143814,230.019852,223.176880,200.466125,178.771927,167.135559,164.152084,160.400024,130.813248,107.333893,122.854568,140.821503,108.846298,50.218201,17.928946,14.581838,9.536379,10.612413,13.081836,15.138861,6.674392,1.190087,0.675208,0.300001,0.228099,0.090909,0.000000,0.008265,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601378.755000,4612215.550000,3183,5855,121.863655,176.177704,175.409103,163.781006,150.020676,140.962830,143.028946,141.053741,140.830597,144.400848,146.962830,160.185974,179.458694,196.351257,209.318192,220.657043,223.070267,214.847122,191.524811,170.219025,158.417374,156.764481,149.863647,121.590927,101.400841,114.433899,127.838860,95.772743,44.698368,17.021505,13.623986,12.110759,11.067785,12.079356,13.592579,6.367779,1.272732,0.183472,0.000000,0.081819,0.009918,0.000000,0.027273,0.091736,1.295041,1.338843,0.000000,0.000000,0.000000,0.000000 -601386.955000,4612215.550000,3224,5855,126.538872,174.381821,175.067780,163.249603,149.828110,141.778534,142.571930,140.158707,141.671097,143.679367,146.390106,159.514053,177.811584,194.728943,208.786789,221.200012,223.877701,214.472733,191.340500,168.514053,157.894226,154.654556,148.563660,117.894226,99.018188,111.406624,125.985138,91.803314,43.580185,16.091753,13.505804,10.154559,11.078529,11.167787,12.165304,7.279350,0.929755,0.113224,0.361984,0.201653,0.241323,0.000000,0.001653,0.253719,0.000000,0.000000,0.000000,0.000000,1.318182,0.000000 -601395.555000,4612215.550000,3267,5855,141.823135,182.426453,176.426453,164.517365,151.575226,141.285950,142.476028,140.542145,141.699173,145.674393,146.765305,159.319016,178.162003,195.203323,208.781830,221.600006,224.368607,213.823151,191.095886,169.426453,157.021500,154.996704,147.781815,116.128937,97.550423,111.748772,125.525635,92.335548,42.269447,17.440514,13.434730,10.795882,10.054564,11.697539,10.959519,3.606619,1.074383,0.103306,0.141323,0.005785,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.555000,4612215.550000,3297,5855,132.523148,185.903305,176.192566,169.638855,152.820663,141.076859,142.539673,141.572739,141.192566,144.886780,146.300003,160.638855,178.010757,194.828934,208.861984,221.936371,223.498352,214.473557,192.167770,169.994217,158.498352,154.754547,149.754547,117.209099,97.448769,111.349594,126.085136,91.019020,43.663654,15.180182,13.614069,10.685139,9.576876,9.897535,12.899189,5.151248,0.926449,0.599174,0.000000,0.038017,0.122314,0.000000,0.102480,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601408.755000,4612215.550000,3333,5855,139.947144,188.657867,179.517365,169.013229,153.368607,143.162003,143.203323,142.368607,142.897537,147.434723,148.120667,160.608276,177.690918,196.715714,210.352081,223.575226,224.773560,214.013229,191.823151,170.847946,158.806625,157.690918,149.509109,117.153725,99.467773,113.914055,127.790085,94.748764,44.128948,17.797539,13.591755,12.294230,10.149606,11.314893,15.217372,5.801662,0.879341,0.557026,0.233885,0.061158,0.028100,0.000000,0.010744,0.304959,5.399174,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.355000,4612215.550000,3366,5855,162.895065,193.704987,178.878540,168.217377,152.498367,141.754562,141.688446,140.357880,141.118210,147.333084,144.820679,158.771103,176.828949,194.225647,209.878525,224.027283,226.027283,214.101654,191.862000,171.382660,160.085144,155.771103,149.754562,116.878532,98.432251,113.159523,128.300018,92.093414,43.862003,18.092579,13.614069,13.052082,9.981009,11.210761,13.171916,5.466126,1.410746,0.396695,0.185951,0.100001,0.006612,0.000000,0.025620,0.079339,1.490083,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.355000,4612215.550000,3381,5855,151.935562,192.530579,175.009918,168.456192,153.051239,139.481003,140.993393,139.728943,140.563644,147.208252,144.571915,158.489243,175.910736,194.373550,210.332230,224.786774,226.348755,214.042969,193.514038,170.927261,159.704132,156.795029,151.472717,117.861176,97.481010,113.596710,126.753738,92.117371,41.745476,17.312416,13.770267,10.673568,10.045472,10.426463,11.165305,7.049598,0.359505,0.196695,0.138017,0.011570,0.000000,0.000000,0.007438,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601421.555000,4612215.550000,3397,5855,149.179352,198.261993,177.815720,169.749603,152.617371,142.104965,142.113235,141.534714,142.509933,149.047119,147.047119,160.154556,178.526459,196.757858,211.542984,226.947937,227.270264,215.385956,194.030594,173.187607,161.675217,158.121490,153.518188,119.567795,99.493401,114.534737,128.369431,91.947952,44.096710,17.726463,13.956217,14.427289,10.794231,11.747124,13.211586,7.055383,1.376036,0.204133,0.185124,0.038843,0.037190,0.000000,0.077686,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601425.555000,4612215.550000,3417,5855,155.469421,200.816528,181.758682,171.304138,155.196701,142.328949,143.047958,143.436386,144.196716,151.122314,147.833069,160.824799,179.238022,198.428101,214.047943,227.659515,228.932236,216.130585,193.535538,173.064468,161.031418,158.386780,152.890915,119.138855,99.841339,116.279350,128.097534,91.692574,42.890926,19.163656,13.899193,14.912413,10.652911,12.400020,13.562827,6.958688,0.528927,0.523142,0.142976,0.012397,0.131406,0.000000,0.017356,0.353720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601431.355000,4612215.550000,3446,5855,159.634720,198.932236,178.973557,173.874390,155.833069,142.874390,143.965302,143.097534,144.345459,152.395050,148.461166,160.899185,178.990082,197.229752,213.725632,227.485962,229.419846,216.386780,194.915710,174.080994,162.221497,159.519012,152.072739,118.378525,100.634727,118.485962,126.709106,91.105797,43.461178,17.471092,13.824813,13.342991,9.519852,11.141340,12.951256,7.566953,0.415703,0.367770,0.105785,0.042149,0.000000,0.000000,0.093389,0.147934,1.382645,0.000000,0.000000,0.000000,0.000000,4.917356 -601433.955000,4612215.550000,3459,5855,132.043823,177.531433,172.167786,163.035553,149.457047,141.804153,139.597549,138.308289,139.465317,143.027298,144.952911,157.994232,175.738037,193.903336,209.614075,221.465317,224.911575,214.597549,191.564484,169.514893,158.754562,154.977707,149.390930,115.895065,97.068619,113.027298,126.481842,90.944649,42.994232,16.674400,13.581012,9.409930,10.011586,12.790926,11.479356,6.076870,1.190912,0.309918,0.000000,0.054546,0.039670,0.000000,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.555000,4612215.550000,3477,5855,115.583481,167.186768,167.170242,156.823135,144.128937,137.533890,135.740509,135.004974,136.228119,138.219864,141.153732,153.814880,172.897522,189.542145,204.674377,216.674377,220.798340,211.517349,187.327286,166.633057,155.781815,151.517349,144.236374,113.591751,93.773567,109.500839,122.988441,88.600014,40.451256,15.396712,13.112416,8.953732,9.854562,10.153735,10.331420,4.257859,0.313224,0.265290,0.080992,0.075207,0.127273,0.000000,0.000000,0.057025,0.000000,0.000000,1.079339,0.963636,0.000000,0.000000 -601440.955000,4612215.550000,3494,5855,125.196716,160.758698,168.419861,159.047958,147.428116,137.915726,136.403336,135.378525,137.031433,138.990112,143.130600,155.229782,173.279358,190.593414,205.882660,218.651260,223.039688,212.857880,189.965317,167.428116,157.163666,153.254562,145.709106,116.006622,94.841339,110.047951,124.626457,92.213234,41.973572,17.358698,13.246300,7.414062,9.916545,9.865307,11.157867,6.342160,1.435539,0.194216,0.000000,0.000000,0.029752,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.355000,4612215.550000,3511,5855,106.847954,161.401672,168.120667,159.856216,145.583496,138.046310,136.914062,135.401672,137.757050,139.947144,143.046310,155.666122,175.079346,191.649597,205.790100,219.591751,221.814896,213.814896,190.376877,168.021500,157.517365,153.071091,147.054581,116.112419,95.476044,112.285973,124.856216,91.319023,44.682667,16.873571,13.368614,9.908278,9.150430,13.672745,12.077703,4.988440,1.124796,0.013224,0.447108,0.000000,0.224794,0.000000,0.000000,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601450.555000,4612215.550000,3542,5855,125.638847,169.043808,168.448761,159.746292,145.300003,138.804138,136.738022,136.043808,136.035538,140.861984,142.630585,156.225632,174.688431,191.994217,204.605789,219.390915,221.985962,212.787613,189.919846,168.076859,156.159515,153.068604,148.754547,117.275215,96.333069,112.647118,126.126450,92.498360,45.870266,17.493408,13.523159,8.238031,10.821505,13.742167,12.753734,6.683482,1.396697,0.001653,0.162810,0.150413,0.238017,0.000000,0.000000,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601453.955000,4612215.550000,3559,5855,118.244652,162.649597,166.790100,157.814896,146.980179,137.418198,137.352081,135.219849,136.393402,139.814896,142.608276,154.087616,173.319016,190.600006,205.905792,217.814896,221.781830,212.294235,189.575226,167.261169,156.418198,152.219849,146.327286,116.715714,95.079361,112.814896,124.591751,91.319031,43.244644,16.317373,13.302498,8.238858,11.123158,12.176877,11.000015,4.998357,0.773556,0.147934,0.061157,0.254546,0.033058,0.000000,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,1.219008,0.000000 -601459.155000,4612215.550000,3585,5855,119.455391,163.364471,167.356216,157.579346,146.529770,139.331421,136.695053,135.595901,136.860336,139.959518,143.066956,155.513229,173.943008,190.091766,207.042175,219.728134,221.810776,213.190933,191.240524,168.496704,157.033890,152.777695,147.554565,116.124817,96.455383,111.942993,125.166138,90.670265,43.298367,17.821505,13.414068,8.561170,12.299191,11.436380,13.114892,5.377697,0.657853,0.246282,0.023141,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.155000,4612215.550000,3605,5855,111.026466,164.547119,169.414886,160.522324,145.786789,137.943802,137.943802,135.720673,137.365280,139.985123,142.671066,155.274384,174.695877,190.613235,206.216537,218.076019,223.158676,212.588425,190.067780,168.555374,156.530594,152.720673,147.109100,116.464478,95.745476,112.968613,123.547127,91.877701,42.902500,18.042994,13.373572,8.522326,10.763655,10.981835,12.314892,5.340506,1.643804,0.022315,0.380166,0.030579,0.043802,0.000000,0.000000,0.070248,0.000000,1.214050,0.000000,0.000000,0.000000,0.000000 -601465.755000,4612215.550000,3618,5855,110.166138,161.223999,165.992584,158.719864,144.777710,136.033890,135.265305,135.091751,135.695053,138.686813,141.521515,153.752914,173.223999,189.471909,204.281830,217.620667,220.678528,211.265305,187.604156,166.926468,154.918213,151.257050,145.190933,113.455391,93.794228,109.637215,122.513245,90.356209,41.719852,17.123983,13.199191,6.130590,8.821504,10.023984,8.581005,5.090918,1.041325,0.302480,0.256199,0.000000,0.000000,0.328926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.955000,4612215.550000,3634,5855,119.868607,163.967789,164.926453,157.339676,144.025635,137.207458,135.331421,133.620667,134.397537,137.695053,141.273560,152.199188,171.678528,188.042160,203.182663,216.686783,218.860336,209.166122,186.100006,164.926453,153.182663,149.265305,143.554565,112.248772,92.364479,107.868607,121.827286,88.661995,41.728119,15.451258,13.050431,6.869435,8.373569,9.649603,10.705801,5.959514,0.559505,0.000000,0.152067,0.007438,0.020662,0.000000,0.004132,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.555000,4612215.550000,3657,5855,123.215714,166.025620,167.166107,158.116531,145.827271,137.323135,137.050415,134.364471,135.223969,138.810745,140.802475,152.331406,172.496689,188.661987,203.339661,215.695038,219.951233,210.116531,187.017349,165.438843,152.695038,150.331406,144.190903,112.653732,92.860344,107.951256,121.620667,89.728111,42.111591,15.988446,13.108283,6.712409,9.488445,12.277704,12.161998,6.935547,0.664465,0.071075,0.442976,0.012397,0.025620,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.105785 -601476.355000,4612215.550000,3671,5855,117.366119,164.961166,169.919846,160.250427,147.440506,139.795868,138.357864,137.399185,137.878525,141.713226,143.457031,156.663635,174.085129,191.333069,205.928101,218.895050,221.407440,212.415710,189.184311,167.035538,155.308273,151.647110,146.027283,115.101662,94.390915,109.721497,122.622322,90.184319,45.242168,17.188446,13.275226,9.920674,10.009935,9.856215,13.019025,6.512408,0.663638,0.593390,0.142976,0.009091,0.026447,0.000000,0.000000,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.955000,4612215.550000,3684,5855,120.078522,162.111588,166.483505,157.400848,145.359528,136.756226,134.681824,134.053726,134.185959,137.822327,140.177704,153.161179,170.623993,188.450439,201.607468,214.252106,217.657059,208.045486,185.830612,162.235550,151.814072,147.235550,141.409103,111.136375,92.053726,107.400833,118.995872,88.020668,41.144646,17.509935,12.855392,7.542987,8.309106,9.445471,9.652081,2.609924,0.835539,0.176034,0.142976,0.135537,0.003306,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,1.256199,0.000000 -601482.755000,4612215.550000,3703,5855,122.676880,163.131409,165.924789,155.635544,143.412415,135.346298,132.189270,132.098373,132.974396,136.139694,137.594238,149.610748,168.338013,184.776031,199.271912,211.189255,214.933060,204.503311,181.817352,160.238846,149.164459,146.114899,139.263657,109.321510,89.883492,105.007454,117.784317,87.619026,39.552914,14.847953,12.660350,6.204970,8.247950,6.959519,9.172742,2.667774,0.715704,0.004133,0.258679,0.000000,0.079339,0.000000,0.000000,0.080992,0.000000,0.000000,0.000000,1.108265,0.000000,0.000000 -601488.955000,4612215.550000,3734,5855,106.196709,161.056213,165.485977,159.469437,144.857880,136.709106,135.221497,134.031418,134.659515,138.651260,141.452911,152.262833,170.477707,186.684326,202.337219,213.527313,215.800034,208.147125,185.783493,164.304153,153.403336,150.171921,145.072754,114.998360,94.138855,109.601669,125.461174,94.312408,43.271095,17.537209,13.188449,7.391747,9.856216,10.720678,10.757866,5.122323,1.076861,0.280993,0.003306,0.188430,0.084298,0.357025,0.076033,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.555000,4612215.550000,3752,5855,107.472740,162.737213,166.183502,159.059525,145.604980,138.266144,135.414886,134.365295,135.704147,137.877716,141.158707,152.621521,170.919037,188.803329,203.456223,217.208298,218.224823,211.728958,189.927292,168.216553,157.166962,153.315735,149.381851,118.753731,95.613243,114.638023,130.778519,98.530586,46.133904,17.652086,13.580183,7.946295,9.125635,10.423156,12.882659,6.237200,0.697522,0.638018,0.000000,0.063637,0.076860,0.000000,0.001653,0.293389,0.000000,0.000000,0.000000,0.000000,1.340496,0.000000 -601496.955000,4612215.550000,3774,5855,124.769432,163.141357,167.265320,160.620697,146.124817,137.281845,136.438858,134.257034,135.504974,139.240524,141.438873,153.719864,171.422348,189.662018,203.364487,215.298370,218.645477,211.703339,189.248795,167.273590,157.686813,154.339691,149.827301,118.562820,97.744652,114.389267,132.273560,98.612419,46.852089,19.418200,13.620680,8.726461,12.991754,13.219852,11.661998,6.685962,1.028103,0.519010,0.076860,0.031405,0.000000,0.000000,0.119009,0.223968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.755000,4612215.550000,3793,5855,106.318207,164.466949,164.442154,156.103302,144.673553,135.243805,133.425629,133.359512,132.797531,137.012390,139.227280,151.359497,167.971069,186.045456,201.417358,212.665283,216.516525,208.714874,187.061981,165.409088,154.028931,151.739670,147.136368,115.475227,94.078529,111.995895,130.185974,97.871918,44.574406,16.192579,13.376052,8.057040,9.035555,10.866958,9.820676,6.011579,0.969425,0.071901,0.018182,0.038843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601505.555000,4612215.550000,3817,5855,121.970261,168.664490,166.499191,160.763657,146.557037,137.995056,136.639694,136.069443,135.623154,139.854568,142.168610,152.995056,170.160355,186.887619,201.722336,213.325638,215.383484,207.879364,184.953735,161.862823,150.234726,146.838043,141.763657,110.796707,90.094223,108.292572,122.366951,92.176872,44.011589,18.349606,12.887623,7.455383,10.140512,10.695058,12.576875,6.060340,0.804960,0.543803,0.214050,0.009918,0.158678,0.000000,0.077686,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601508.355000,4612215.550000,3831,5855,120.153740,169.195068,167.021515,157.657867,146.732254,137.798370,134.922333,133.690933,134.831421,137.476059,139.558701,151.707474,168.732254,185.360336,198.509109,211.368607,213.013229,205.409927,182.591751,159.368622,148.575241,143.509125,139.509125,108.922333,89.310768,105.376877,120.922333,88.905807,40.641338,17.245470,12.682664,6.127282,8.903322,8.386793,9.622330,5.115710,0.838019,0.232232,0.399174,0.000000,0.020661,0.000000,0.029752,0.261984,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.955000,4612215.550000,3854,5855,120.267792,172.540512,172.077682,158.953735,147.185120,136.937195,135.119019,134.631424,133.127289,137.441330,139.259506,149.879349,167.102478,184.185120,199.276047,211.143799,212.515701,204.523972,181.209915,158.532257,147.466125,143.110748,139.218185,108.838036,88.532249,103.871094,118.639687,87.499191,40.945477,15.909110,12.656217,5.881001,9.652083,9.630593,8.955386,4.782654,0.387605,0.137190,0.065289,0.026447,0.100001,0.000000,0.016529,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601517.555000,4612215.550000,3877,5855,117.780174,170.978516,167.581818,157.672729,146.325623,137.400009,134.548767,134.176865,133.152069,138.185120,139.193390,149.234711,166.986786,184.019836,198.292572,210.705795,213.218185,204.094223,182.085953,159.077682,147.036362,143.342148,137.763641,107.755379,87.920662,104.920662,119.532234,87.598358,42.400024,16.762829,12.523985,5.757861,10.130596,10.457042,8.482658,4.573561,0.826448,0.142976,0.184298,0.020661,0.021488,0.020661,0.158678,0.000000,1.421488,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.155000,4612215.550000,3920,5855,123.070274,175.359497,167.466980,161.442184,146.731415,135.417374,135.012405,134.119843,134.673569,138.979355,140.227295,151.235550,168.276855,185.095047,199.657043,212.351242,215.037186,205.433884,181.136368,159.665329,147.657043,144.004150,139.590927,108.450424,88.880180,104.822319,116.351250,87.607452,42.541344,18.514069,12.690103,7.237201,9.234728,10.965305,11.332245,4.722322,1.187606,0.109918,0.107438,0.166943,0.015703,0.000000,0.152893,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.155000,4612215.550000,3935,5855,109.409927,174.128922,165.558670,159.112396,146.649582,134.087601,132.938843,132.798355,131.707443,137.525620,138.302475,148.790085,166.699173,183.616547,198.203323,210.690903,213.335541,203.922333,180.153717,157.467758,144.054535,141.252884,137.327271,106.839684,87.385139,102.814888,115.062820,86.856209,40.062832,14.370266,12.484316,4.875215,8.523157,8.070262,9.942162,3.119015,0.312398,0.058679,0.075207,0.163637,0.059505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.116529,0.000000,0.000000 -601536.355000,4612215.550000,3971,5855,113.756218,168.285126,166.103302,159.103302,143.400848,132.681839,132.235550,131.103317,129.243820,133.450424,133.020676,143.913239,160.309921,176.929749,189.260330,201.491730,204.326447,193.161163,170.194214,149.797516,139.475220,136.293411,130.681839,101.491753,84.342995,97.855385,109.285141,80.028938,38.095058,15.271091,11.880184,8.021501,8.171915,9.700841,8.970263,3.651247,1.444630,0.109091,0.076033,0.016529,0.041323,0.000000,0.132232,0.000000,0.000000,0.000000,1.174380,0.000000,0.000000,0.000000 -601539.355000,4612215.550000,3986,5855,117.084312,166.902496,164.728943,154.646286,140.844635,130.687622,129.224808,127.200020,127.307457,128.836380,129.522339,141.365295,157.191742,171.447937,184.555374,195.869431,197.357040,186.406616,164.274384,144.654556,134.414886,130.910767,126.200020,98.530594,82.332253,94.092583,105.175224,76.505806,35.960354,15.493407,11.472746,8.045467,8.373568,8.831419,10.120677,3.534719,1.137192,0.082645,0.047934,0.000000,0.106612,0.000000,0.009918,0.000000,0.000000,0.000000,1.176033,0.000000,0.000000,0.000000 -601542.555000,4612215.550000,4002,5855,116.691750,168.989273,167.022324,157.286789,141.947937,132.262009,131.427292,129.187622,128.881836,130.014069,130.476883,141.749603,158.939682,173.600830,186.460342,197.278519,199.410751,187.311584,165.782654,146.394226,135.799179,133.179352,126.972748,99.832245,83.501671,95.939682,105.741341,78.807457,37.427292,16.214895,11.542994,10.541340,9.885966,11.941338,10.444643,4.501663,0.987607,0.195042,0.052893,0.000000,0.295042,0.000000,0.047108,0.266116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601545.555000,4612215.550000,4017,5855,120.027290,168.010757,166.440506,155.605789,140.564468,129.895050,129.663651,127.258690,126.895058,128.002487,129.647125,139.886780,156.556198,171.895035,183.597504,195.804123,198.101639,186.283463,164.415710,144.407440,133.506622,131.812408,125.390923,97.531418,82.151253,93.928116,105.911583,76.233902,36.250431,14.842995,11.399193,9.357039,7.491749,9.238857,9.638858,3.342982,1.523143,0.033884,0.089257,0.000000,0.097521,0.000000,0.000000,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.355000,4612215.550000,4031,5855,126.772743,170.458679,165.987610,156.987610,142.623962,130.582657,129.913239,128.086792,127.764473,130.252075,130.359512,140.995865,157.169418,172.549591,185.194214,196.028931,197.442154,187.276855,165.243805,145.450409,135.252075,133.194229,128.227280,99.103317,82.334717,96.359512,107.144638,78.351265,36.541348,15.584316,11.657044,9.650428,10.565305,10.704148,10.658693,4.547944,1.094217,0.331406,0.166116,0.000000,0.056199,0.000000,0.000000,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601551.555000,4612215.550000,4047,5855,123.138023,170.576050,167.228943,156.642151,141.237198,130.642166,130.683487,128.088440,127.146301,129.650421,130.055389,141.328110,157.675217,173.063644,186.047119,196.551254,198.245468,187.286789,165.113235,145.890091,134.972733,133.113235,127.518188,99.402496,82.708290,94.600845,106.005798,77.873581,37.096718,15.680182,11.592581,9.818196,7.674394,8.338031,10.703321,4.505795,0.292563,0.304960,0.169422,0.000827,0.000000,0.000000,0.006612,0.194215,0.000000,0.000000,0.000000,0.753719,0.000000,0.000000 -601555.355000,4612215.550000,4066,5855,114.569435,170.602493,166.271927,155.395889,140.635559,128.825638,129.908279,126.271912,127.313232,128.495056,129.139679,140.792587,157.701675,172.933075,185.255386,196.999191,198.635559,187.362823,165.007462,145.404144,134.503311,131.949600,126.627281,98.519844,81.908279,95.172737,105.602493,77.090096,34.610764,14.149605,11.511591,8.170260,7.864478,8.328939,8.164476,2.720666,0.113224,0.186778,0.223141,0.000000,0.000000,0.000000,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601563.555000,4612215.550000,4107,5855,109.348778,179.439682,166.092575,157.076065,142.456223,130.414886,130.274399,129.067780,128.042999,131.514069,130.695892,141.803329,157.869446,174.588440,186.084305,198.819839,200.241333,187.753723,165.910751,146.927292,135.588455,133.439682,128.927292,99.844643,83.183487,96.142166,107.423157,76.919029,37.018200,14.988449,11.720681,8.749600,7.641336,8.900015,10.263651,2.809098,0.766117,0.155372,0.057025,0.017356,0.000000,0.000000,0.071901,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.155000,4612215.550000,4120,5855,117.637199,182.223969,168.620651,158.058670,142.108261,132.562820,131.918198,129.976044,129.777695,133.042160,131.381012,142.736359,159.257019,174.942978,187.480164,198.942978,200.248764,188.298340,167.174377,148.496689,136.984299,134.389267,129.100006,101.042152,83.571091,97.157860,107.653725,79.133072,37.232258,14.828943,11.736382,10.852907,7.599187,10.715718,8.585137,3.809926,0.380166,0.236365,0.161157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.155000,4612215.550000,4135,5855,133.771912,184.821503,177.788452,163.441345,149.854568,137.557037,137.738861,136.168610,135.697540,140.788452,139.292587,151.226471,167.482666,185.557037,199.350433,212.375244,215.623169,204.317398,178.400024,156.482666,146.135559,142.738861,139.581833,107.523979,91.242989,105.218193,113.788445,81.466125,39.829773,17.504978,12.689276,8.664476,9.374394,10.713240,11.509935,5.191745,1.186779,0.580993,0.201655,0.570249,0.127273,0.112397,0.554546,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601572.355000,4612215.550000,4151,5855,118.736374,183.628937,174.562820,164.529770,150.017365,138.240524,137.257034,136.579361,135.149597,140.323166,140.868607,151.281830,168.513229,185.984314,200.232239,215.232239,217.769440,206.471909,180.752899,156.248779,145.876877,142.620667,138.281845,107.546295,91.529762,104.736374,112.504974,79.033897,38.290104,15.521506,12.571094,6.619022,9.025635,8.603320,11.014893,4.866951,1.361986,0.887605,0.538020,0.814052,0.259505,0.241323,0.385124,0.200827,1.545455,0.000000,0.000000,0.000000,0.000000,0.000000 -601577.355000,4612215.550000,4176,5855,119.301666,172.475204,173.450409,163.342972,147.549591,136.673553,136.615723,134.954559,134.987625,139.392563,138.533051,149.037201,166.607452,184.904953,199.566116,213.095047,215.508270,204.698349,178.962814,155.351257,144.161163,139.938019,136.590912,106.516548,89.376053,103.285141,111.475220,79.384315,37.161179,14.964481,12.417374,7.815717,8.609932,7.217369,9.395884,4.019844,1.310747,0.355373,0.313225,0.178513,0.295042,0.071075,0.544629,0.270248,1.623967,0.000000,0.000000,0.000000,0.000000,0.000000 -601585.355000,4612215.550000,4216,5855,107.240517,177.050430,173.339676,165.124802,148.290115,136.438873,135.810776,134.273560,133.843826,137.728134,139.149612,149.728134,166.562820,183.670258,197.893402,212.281830,214.471909,203.100006,177.761169,154.794250,143.893417,140.207474,136.190933,106.984314,89.744652,103.595879,110.298363,80.422333,38.108280,17.195887,12.381011,8.519021,9.279353,9.313238,10.309110,5.509928,1.229755,0.653720,0.103307,0.468596,0.172728,0.081820,1.029754,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,7.490084 -601596.955000,4612215.550000,4274,5855,115.965309,169.287613,170.171890,160.188431,147.345459,134.800018,133.957047,131.097534,131.659515,134.667786,136.742157,147.568604,164.882645,180.866119,195.246277,208.428085,211.750397,199.775192,175.824799,151.155380,140.609924,137.634720,133.890930,103.535553,87.213234,100.510757,109.114067,78.114067,37.824818,14.312416,12.171921,6.068608,8.854561,7.689270,8.666133,4.594224,0.661158,0.452894,0.298348,0.088430,0.000000,0.478514,0.216529,0.551240,0.000000,0.000000,0.000000,0.000000,1.362810,0.000000 -601614.155000,4612215.550000,4360,5855,112.402489,169.633896,172.501663,161.733063,146.402496,137.237198,136.402496,133.807449,134.146286,137.799179,138.881821,149.906616,167.385956,185.319839,198.914886,211.427277,214.708267,202.708267,177.947937,154.080170,142.881821,140.171082,136.609100,105.848770,88.542984,102.658684,111.972740,79.443817,40.402500,15.630596,12.419027,7.631419,9.490924,10.185140,10.423158,3.917365,1.424796,0.136364,0.375208,0.352894,0.109918,0.187605,0.678514,0.434711,1.490083,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.955000,4612215.550000,4489,5855,112.745461,167.282654,172.224808,159.076050,146.894226,136.125641,135.538849,133.200012,133.844650,136.927277,139.150421,150.671082,169.266129,186.861160,201.481003,214.464478,217.266129,205.852905,180.348770,156.819839,146.638031,144.125626,140.109100,108.530594,90.200020,106.290924,117.249603,83.679359,42.588448,17.214893,12.737209,10.476048,9.522329,10.826463,10.537207,5.161165,1.481821,0.380992,0.453720,0.215703,0.127273,0.066116,0.324794,0.921489,0.000000,1.516529,0.000000,0.000000,0.000000,0.000000 -601677.155000,4612215.550000,4675,5855,99.134727,170.324783,173.118179,159.647110,145.746292,134.027283,135.580994,133.415710,134.820679,136.498352,138.556198,151.349594,170.308258,188.192551,201.919830,216.126434,218.308258,206.490067,182.109909,159.242157,147.010757,144.101654,140.572739,109.787621,90.671913,107.374397,117.498360,85.027290,43.341339,16.375225,12.779359,9.627287,9.123985,10.542165,12.465305,4.568602,0.753721,0.413224,0.087604,0.018182,0.050414,0.000000,0.244629,0.619009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.155000,4612215.550000,4770,5855,113.211578,167.459518,173.740509,157.517365,142.649597,131.930588,133.252899,130.385132,131.611572,134.223145,136.388443,149.214890,168.157028,184.685944,199.198349,210.950409,214.504135,202.636368,176.735535,155.426453,143.533890,140.889267,136.781830,106.856201,87.823143,103.748764,115.719017,83.892570,41.471092,14.895885,12.434730,10.774396,7.583488,9.701668,12.170263,5.257033,0.347935,0.213224,0.204959,0.167769,0.031405,0.000000,0.057026,0.472728,1.551240,0.000000,0.000000,1.119835,0.000000,0.000000 -601706.955000,4612215.550000,4824,5855,112.646301,175.901672,175.000839,165.573578,148.071091,137.029785,139.752914,135.033905,136.835571,137.628952,140.496719,153.190918,172.893402,189.546295,203.852081,217.868607,219.976044,207.951248,185.281830,160.769440,149.174393,146.347946,141.554581,111.374397,93.428108,108.719841,120.513237,87.604134,44.228115,17.866135,12.868614,12.156214,12.037209,11.810760,12.284315,8.621499,1.776862,1.581820,0.766943,0.989257,1.845457,1.248762,0.580167,1.787605,0.000000,0.000000,0.000000,0.000000,3.909918,0.000000 -601712.955000,4612215.550000,4854,5855,129.971085,175.739670,177.913254,164.491745,147.615723,137.946320,138.500031,135.995880,137.061996,140.004166,141.078552,154.086777,172.921509,190.665298,204.615723,218.442169,220.400848,208.078506,184.111588,160.334732,150.566132,147.227310,143.045486,112.334717,93.442162,107.871910,120.243813,87.417374,45.260345,18.585968,13.004150,10.456213,10.776876,12.781836,13.360347,6.963647,1.995872,0.567770,0.273554,0.133059,0.000000,0.304959,0.194216,0.376034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.555000,4612215.550000,4872,5855,115.042984,177.129761,178.005798,164.650421,149.964478,139.939682,139.212402,136.972733,136.997528,140.253723,141.063644,153.551254,172.369431,190.410751,204.278519,218.047119,219.766129,207.419022,182.666946,160.642151,148.658691,146.542984,140.790924,110.220673,92.344635,105.840508,118.245461,87.212410,43.559525,17.676878,12.799192,12.027289,10.062826,12.568611,13.123158,6.038853,1.603309,0.429753,0.145455,0.169422,0.376034,0.309918,0.504960,1.111572,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612215.550000,4894,5855,99.179352,182.063644,178.445480,164.038849,146.972733,135.716537,137.402496,133.700012,135.204147,137.644638,138.595062,151.147934,169.833893,189.776031,203.528122,217.569443,219.966141,207.594238,184.445465,161.995041,151.119019,148.094223,143.581818,111.119026,93.722336,107.540512,118.218193,85.697540,42.482662,16.428942,13.052910,12.159517,10.743817,12.155388,14.965303,11.138027,4.566946,5.242978,5.561159,5.311573,4.776035,7.273556,4.667771,4.892565,0.000000,0.000000,3.628100,0.000000,1.206612,0.000000 -601726.955000,4612215.550000,4924,5855,119.690109,181.698349,176.235535,161.723145,148.400833,134.648773,136.665283,134.012405,134.690094,138.772720,139.599167,152.475204,170.309921,189.252060,204.061981,217.450409,219.268600,205.929749,183.260330,160.318176,148.574387,146.417358,140.136368,109.574402,91.929779,107.095062,119.500008,86.921509,43.128124,16.950432,12.739689,11.367784,10.757868,11.539687,13.400842,5.404968,1.527276,0.664464,0.274381,0.139670,0.057025,0.000000,0.573555,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.355000,4612215.550000,4966,5855,126.240517,187.612396,178.637222,166.521500,149.620667,137.595901,138.331436,137.190933,136.447113,141.430588,141.422333,153.918213,171.695038,191.174377,204.381012,218.794205,220.050415,206.984299,182.496719,160.711578,150.124817,147.091751,141.736374,111.066963,92.215721,108.504982,119.951263,86.298378,43.447124,18.404974,12.885142,12.371918,11.317372,11.525637,13.966132,5.904141,1.542978,0.204133,0.383472,0.041323,0.246282,0.048760,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601745.955000,4612215.550000,5019,5855,139.585144,194.990082,178.626450,167.560333,150.543823,137.238037,139.444656,136.370255,136.502487,141.990112,140.006638,152.337219,169.510773,189.155380,203.775208,218.370255,219.056198,204.477692,181.510757,160.064468,148.345474,146.775223,142.345474,109.733910,93.337212,109.766968,118.485970,83.890930,44.915722,15.888448,12.940516,13.597537,11.000842,11.678529,11.644644,6.833067,1.215705,0.414877,0.244629,0.177686,0.057851,0.066116,0.263638,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601751.955000,4612215.550000,5049,5855,125.749611,194.981003,177.476868,167.113235,149.088440,137.385956,137.121490,135.972733,135.832245,141.675217,139.650421,152.228943,170.683487,189.914886,204.840500,218.394226,219.733063,203.956207,181.501663,159.964478,148.766129,146.592575,141.790924,109.055382,92.369438,108.741333,118.369438,83.906631,43.212418,16.655390,12.890101,13.448775,10.488446,9.495055,11.714065,5.584308,0.932233,0.294216,0.112397,0.026447,0.087604,0.000000,0.885952,0.328926,0.000000,0.000000,0.000000,0.000000,4.014050,0.000000 -601756.755000,4612215.550000,5073,5855,136.573578,195.354553,182.009094,170.744629,149.120667,137.368591,135.062820,134.042160,134.868607,142.033875,138.868591,150.852081,168.781830,188.228088,202.831406,218.261154,218.682648,201.930573,180.575211,158.666122,148.335556,145.484299,142.418182,108.914062,91.757034,109.583481,117.633072,85.790085,43.293407,18.188448,12.947125,15.261173,11.685140,13.329768,14.335554,8.672737,2.940500,1.015704,0.828927,0.280166,0.760332,0.157852,0.052066,0.000000,0.000000,0.000000,0.000000,0.000000,1.641322,0.000000 -601763.555000,4612215.550000,5107,5855,131.159515,190.117371,179.953720,169.747131,149.722336,138.400024,137.276047,134.697525,134.573563,141.193405,138.044647,150.143814,167.557037,187.251236,201.647934,214.738846,216.036362,201.011566,180.325623,157.970261,147.986801,144.581833,140.218201,108.152069,91.267792,108.581818,117.871078,84.747116,42.962002,16.655390,12.747126,13.405799,9.228939,11.435552,12.005801,6.613232,2.148763,0.724795,0.613224,0.204133,0.023141,0.000000,0.123968,0.193389,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.355000,4612215.550000,5161,5855,84.124817,165.257050,170.819031,156.976059,143.827301,133.595886,133.752914,131.042175,130.777710,132.744644,135.042175,147.157883,166.306641,183.149612,196.571106,209.042175,211.323166,201.017380,177.207474,154.744659,144.133087,139.447144,136.100006,104.405807,87.405807,103.810768,117.810768,86.438866,42.075222,15.366960,12.372746,10.905799,9.619024,11.572743,10.181005,5.696702,1.486779,0.346282,0.000000,0.004959,0.009918,0.228099,0.050414,0.727273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.755000,4612215.550000,5248,5855,109.080185,163.880188,171.731415,159.549606,142.533096,134.144638,133.425629,131.508286,132.045471,134.161163,135.442169,148.152908,167.136383,183.599213,197.896713,209.797531,212.524811,200.235550,177.871918,157.863647,145.971085,141.979370,136.590942,106.392570,87.574387,106.086784,118.136383,89.161163,44.210758,18.566133,12.417375,9.496711,11.788448,12.423985,12.790099,6.399184,0.873555,0.116530,0.490910,0.011571,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.355000,4612215.550000,5391,5855,115.624809,161.908279,168.701660,156.627289,142.147934,132.354568,129.858704,128.271927,128.238861,131.453735,134.395889,146.445465,165.503311,182.536362,196.354553,208.379349,211.701660,201.461990,178.933060,155.875229,145.519836,141.809097,134.627289,104.784317,86.990929,103.197540,117.371094,89.172745,43.627293,14.966134,12.238861,7.724808,9.521504,9.016544,10.098361,5.665298,1.187606,0.328100,0.183472,0.082645,0.066942,0.039670,0.123141,0.000000,0.000000,2.016529,0.000000,0.000000,0.000000,0.000000 -601836.755000,4612215.550000,5473,5855,101.665306,174.152908,169.433899,158.690094,144.607452,133.714890,132.557861,130.913239,131.161179,134.756210,136.169434,148.747955,167.590927,184.690094,199.384293,210.053726,212.442154,202.938019,180.450424,158.921509,146.466965,141.929764,137.227295,106.053734,87.690102,104.103325,118.409103,90.433899,44.442169,17.267786,12.475225,8.169436,10.422332,10.422331,13.441339,4.918189,0.633060,0.194216,0.276860,0.088430,0.099174,0.000000,0.042975,0.271075,0.000000,0.000000,0.000000,2.368595,0.000000,3.133885 -601842.755000,4612215.550000,5503,5855,106.928123,168.019012,168.514877,159.399200,144.085144,133.481842,131.936386,130.258698,128.275223,132.919861,133.919861,146.754562,165.473572,183.242157,198.085129,209.721497,212.109924,202.556198,179.465302,157.952911,145.903336,142.291763,135.118210,105.357872,87.333084,103.688454,119.052086,88.076881,43.895061,17.095884,12.283490,7.004144,10.520679,9.184313,11.802495,4.683479,1.349589,0.462811,0.524794,0.170248,0.000000,0.000000,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601846.155000,4612215.550000,5520,5855,103.863647,175.516541,173.020676,160.119827,145.409103,133.557861,132.690094,131.566116,130.648773,133.739685,135.442169,148.326462,166.549606,184.690094,197.880188,210.880173,212.789261,203.954559,181.582657,158.739670,147.756210,143.971085,137.318192,106.764473,88.334724,104.723152,120.136375,90.152908,43.929771,17.395060,12.483489,7.532243,11.262828,11.768612,12.366959,6.321498,1.044630,0.128100,0.080165,0.054546,0.100000,0.064463,0.267770,0.538844,0.000000,0.000000,1.442149,0.000000,0.000000,0.000000 -601850.555000,4612215.550000,5542,5855,115.089279,174.684311,171.642975,159.733887,145.039673,132.436371,132.295868,130.576859,130.560333,134.965302,134.998352,147.014877,166.171906,184.047943,198.246292,210.122314,212.800003,203.849594,179.047943,158.593399,145.271088,142.089264,137.254547,105.717361,86.014885,102.262817,118.444633,88.651245,42.386795,15.951258,12.477704,7.855386,9.543818,8.317371,9.897534,4.468604,0.357026,0.642150,0.010744,0.000000,0.112397,0.000000,0.113224,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601857.555000,4612215.550000,5577,5855,112.938034,181.367783,170.260345,160.260345,144.574402,131.847107,131.855377,129.855377,127.971085,134.144623,133.971069,146.004150,164.400848,183.483490,198.161179,210.020676,212.367783,202.152908,179.045471,157.822327,145.260345,141.599182,136.409088,104.053726,86.962814,103.632240,117.268600,88.789276,41.979355,15.004150,12.400846,6.117365,7.754563,8.477702,9.265304,4.023147,0.701654,0.085125,0.067769,0.012397,0.043802,0.000000,0.104132,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601868.955000,4612215.550000,5634,5855,107.861992,166.692566,165.998352,156.345459,141.411575,129.800003,129.589264,125.138847,125.188438,128.642975,130.155380,142.824799,160.948761,178.056198,191.171906,203.461166,203.841324,195.254547,172.039673,150.138855,138.981827,136.229752,130.254547,100.147118,82.709106,98.857857,112.585129,84.353729,40.523159,16.226465,11.841341,10.769436,10.838861,10.957042,11.198362,6.837200,1.100829,0.221488,0.117356,0.138843,0.000000,0.000000,0.175208,0.575207,0.000000,0.000000,2.555372,0.000000,0.000000,0.000000 -601877.155000,4612215.550000,5675,5855,108.842995,175.347122,170.752075,156.388443,141.198364,129.735550,131.272751,127.735550,126.628113,129.702499,131.396713,143.338852,163.157043,178.826462,192.099182,204.884308,205.743820,194.289276,171.826462,150.752075,140.809937,136.975220,131.181839,101.388435,83.760345,98.768600,114.157043,82.958694,40.553738,15.817372,11.925638,10.406626,11.085140,12.571093,12.148774,5.331415,0.512398,0.315703,0.247108,0.004132,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601887.155000,4612215.550000,5725,5855,97.347946,171.893402,169.323151,157.223984,141.496704,129.223984,130.794235,126.959518,127.372742,130.744644,130.480179,143.232239,161.587616,179.265305,190.852081,205.306625,207.347946,193.331421,173.438858,150.835556,139.959518,135.992569,131.100006,99.323151,83.066956,97.942986,111.529762,82.265305,38.521507,14.226465,11.918200,10.986794,8.422331,9.019025,11.873569,3.952901,0.222314,0.000000,0.132232,0.000000,0.009918,0.028926,0.111571,0.359505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601897.155000,4612215.550000,5775,5855,104.480179,183.893402,173.009109,158.381012,142.984314,130.628937,132.215714,129.571091,129.645462,132.223984,131.100006,143.711578,162.595886,179.447113,194.405792,206.893402,207.463654,194.868607,172.257034,150.422333,140.794235,138.050430,131.736374,101.083481,84.752907,99.761169,113.306625,83.199188,40.314896,16.601671,11.976052,13.079353,9.643819,10.940511,13.641339,6.154555,1.158680,0.260331,0.010744,0.016529,0.009918,0.000000,0.206612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601902.955000,4612215.550000,5804,5855,105.225639,178.845459,171.762817,158.572739,141.291748,127.440506,128.465302,126.423973,127.473557,131.382645,129.390915,142.415710,159.779343,177.671906,191.911575,204.936371,206.151245,192.680176,170.085129,149.184311,139.696701,135.944641,129.481827,99.498352,82.382660,98.845459,110.738029,81.300026,39.746304,15.518200,11.771093,12.194229,9.827290,10.561999,13.341338,6.677695,1.391738,1.177687,0.181819,0.010744,0.000000,0.247935,0.224794,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601906.755000,4612215.550000,5823,5855,111.309944,182.673553,169.698349,157.351242,141.458679,128.334717,127.805794,125.285133,126.640503,130.954559,129.119843,141.433884,158.318176,177.276855,191.615707,204.888428,205.500000,191.549591,170.318176,149.053726,137.780991,134.111572,128.772736,99.458694,82.805809,98.665306,110.450424,80.384323,38.863659,14.823986,11.706631,12.037205,8.842990,9.965307,10.942163,6.793398,0.866118,0.201654,0.302480,0.027273,0.000000,0.000000,0.123967,0.177686,1.550413,0.000000,0.000000,0.000000,0.000000,0.000000 -601913.155000,4612215.550000,5855,5855,126.829773,188.573563,171.209930,160.846283,144.193390,130.697540,130.804977,128.647949,128.722321,135.490921,131.780182,143.110748,161.730576,180.267776,195.094223,207.714050,207.821487,193.400009,172.829758,152.548767,140.887604,137.548767,132.036377,101.317368,84.515717,100.912407,113.234718,78.970268,38.276051,16.814894,12.003325,12.603321,9.157866,9.053731,13.376049,8.122325,1.123970,0.390910,0.173554,0.090910,0.000000,0.037190,0.019008,0.701654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601923.555000,4612215.550000,5907,5855,89.603325,143.644653,154.082642,139.933899,124.735550,114.983490,113.570267,111.471092,112.016548,112.966957,114.950432,126.256218,143.223160,159.247940,171.785126,183.198349,185.851242,175.611572,154.099167,135.578522,125.884315,120.735550,117.000015,90.082664,73.950432,88.942162,100.314064,74.206627,34.272747,13.612413,10.636382,8.621500,9.342166,9.970264,9.665305,5.419845,0.563638,0.035537,0.200827,0.196695,0.000000,0.000000,0.269422,0.169422,0.000000,0.000000,0.000000,0.000000,1.268595,0.000000 -601932.555000,4612215.550000,5952,5855,95.006622,149.246292,155.370255,140.436386,126.452904,118.519020,117.271088,114.246292,115.072739,117.733902,120.519020,129.981827,146.882645,163.097534,175.957031,187.750427,191.171906,179.890915,158.609924,137.700836,130.345474,126.923981,121.618195,95.204971,78.775223,91.502495,102.213234,74.552086,36.659523,14.605803,11.056219,9.745468,9.602497,10.811588,12.412413,5.679348,1.075209,0.150414,0.424795,0.062810,0.082645,0.032232,0.132232,0.618183,4.550414,0.000000,0.000000,0.000000,0.000000,3.226446 -601941.955000,4612215.550000,5999,5855,92.581841,145.755371,150.490906,139.978516,125.408279,118.788445,117.755386,115.160339,116.085960,119.143814,121.573563,132.366959,149.292572,165.590088,179.639679,191.871078,194.557022,185.466125,163.284302,142.804962,133.838028,131.300842,125.400009,99.028107,82.259529,96.325630,106.523979,77.490936,36.838039,15.219852,11.400020,8.410759,12.113240,11.666133,12.486794,7.385962,1.103308,0.058678,0.305786,0.639670,0.239670,0.000000,0.324795,0.393389,0.000000,0.000000,0.000000,4.817356,1.783471,0.000000 -601955.555000,4612215.550000,6067,5855,97.235550,140.334747,147.623978,135.152908,120.673569,112.004150,110.574394,107.095055,108.086792,110.450432,112.731422,124.962830,141.533096,157.871918,171.524796,183.648758,186.111572,176.276855,153.938034,134.508286,126.450432,122.681831,117.863655,90.111588,73.028938,88.946297,103.161171,74.433899,36.194229,13.359522,10.714896,8.069435,10.228116,10.863652,11.655389,7.753730,1.517358,0.855374,0.126447,0.544629,0.456199,0.490910,0.155373,0.481819,1.566942,4.023967,0.000000,0.000000,0.000000,0.000000 -601965.555000,4612215.550000,6117,5855,94.558701,146.203323,139.914062,131.021500,116.798363,106.996704,102.864479,100.600006,98.666130,100.368599,102.211586,112.996712,131.285950,147.624802,161.682663,171.046295,173.228119,162.914062,141.409927,121.376869,110.550423,107.699188,100.963646,73.723991,57.649609,76.500847,94.137199,71.219856,32.525639,9.676877,9.178532,7.392573,6.938028,9.123981,9.309104,7.329763,3.320666,2.133887,1.825622,2.570250,3.417356,2.324794,2.722315,3.369423,8.686778,5.652893,0.367769,5.195868,0.516529,0.392562 -601255.155000,4612205.550000,2565,5905,215.573578,226.201675,216.945480,211.193405,206.920685,207.176880,213.904144,215.846298,220.631424,228.490921,238.523987,257.119019,281.143829,299.598358,314.532257,326.242981,327.656219,318.904144,282.333893,250.846298,238.821503,233.110764,222.400024,189.028122,165.350433,173.185150,180.185150,135.218201,65.523987,24.748779,20.218201,21.332249,18.158695,23.461176,28.153738,23.504150,4.784307,1.611575,2.769427,1.133060,0.451241,0.538017,0.975207,0.312398,2.467769,3.853719,1.095041,0.000000,2.423141,2.126446 -601257.955000,4612205.550000,2579,5905,212.001678,229.819839,227.522324,220.555374,216.935547,219.414886,229.158691,232.547119,237.340500,245.919022,256.166962,273.795074,294.100861,311.249603,324.481018,332.117371,331.894226,317.166962,270.960358,234.728943,221.604965,213.927277,201.381821,169.522324,148.109100,152.538849,145.158691,101.704147,44.555393,21.712416,18.307457,17.664482,14.894234,16.419853,16.865309,13.477701,4.147943,3.166123,2.117359,0.289257,0.843803,0.428100,0.736365,1.060333,0.000000,0.000000,2.327273,0.990909,0.000000,6.257851 -601261.955000,4612205.550000,2599,5905,221.826477,229.578552,230.132263,224.900864,220.735565,224.355408,233.801682,236.074417,242.834747,252.685989,265.281036,279.429779,301.520691,319.082672,332.148804,340.231445,339.338867,325.843018,276.702515,240.322342,228.099213,220.404984,207.909119,174.264496,154.305801,156.123978,148.727295,101.033066,45.727291,23.148779,18.900848,17.425638,15.388448,18.334728,18.078531,11.846296,4.083478,2.702484,2.200005,0.893390,0.618184,0.085951,1.395870,0.810745,5.817356,1.372727,3.336364,0.000000,3.726446,2.201653 -601267.955000,4612205.550000,2629,5905,221.371063,233.759491,233.883453,229.428909,228.899994,232.957840,242.866928,248.627258,255.073547,266.842133,279.304932,297.718170,320.098328,338.486755,352.461975,360.891724,359.123138,338.164459,284.156189,243.759491,229.123123,219.701645,207.263626,171.404129,152.271927,151.255386,138.081818,91.949608,41.718201,23.527290,18.842169,18.209934,18.169439,18.162001,16.121506,10.483487,4.020671,2.360338,1.685954,0.566117,1.488433,0.264464,0.985126,1.004134,1.169422,6.587604,0.000000,0.000000,3.954546,0.000000 -601276.755000,4612205.550000,2673,5905,209.702484,227.504135,231.132233,230.925613,227.115707,232.082642,242.396698,246.016525,252.421494,262.537201,274.231445,290.553741,309.851257,327.256226,339.330597,347.479370,346.768616,327.991760,277.247955,240.504135,226.661163,218.198349,205.090912,172.528931,153.760330,152.016525,142.330582,96.595062,43.256218,21.576880,18.644646,15.112414,14.549605,14.781837,16.586796,8.655388,4.119019,2.190088,1.215705,0.499175,1.055374,0.081819,0.880994,0.463637,0.000000,0.000000,2.378513,1.113223,0.000000,4.510744 -601289.955000,4612205.550000,2739,5905,221.708267,231.600830,234.733063,234.790924,231.394226,236.642151,247.014053,253.096710,258.939667,269.295044,282.452087,297.873566,318.435577,337.179352,352.485138,362.790924,362.815735,347.311584,296.410767,257.857025,245.724808,235.749603,225.609100,191.295044,169.005798,169.187607,159.485138,108.336372,49.774403,25.088448,20.509935,17.664482,18.931423,18.266134,18.832249,10.481007,5.028934,2.330584,1.114881,1.311576,0.823968,0.214879,0.749588,1.669424,0.000000,2.700827,0.000000,0.000000,1.265289,0.000000 -601309.755000,4612205.550000,2838,5905,210.681839,232.780991,232.797516,228.161163,224.516525,230.359497,237.731400,242.673553,247.764465,257.342987,266.855377,281.723145,301.533081,318.400818,333.599182,341.690094,342.830566,333.888428,291.739655,258.045441,246.483475,239.896698,230.227280,197.508286,176.632248,179.219025,176.152908,128.004135,58.260345,25.557871,20.929771,15.024812,18.790100,21.236383,21.903324,13.014066,4.671909,2.518187,0.645458,0.660334,0.409918,0.436364,0.637192,0.971076,0.000000,2.814876,1.317355,1.226446,1.299174,0.000000 -601326.955000,4612205.550000,2924,5905,159.351257,188.599182,187.913239,190.037201,183.524811,184.995880,192.442169,196.607452,199.714890,208.929764,218.508286,234.590927,252.508301,271.367798,287.128143,298.822357,305.458710,305.541351,284.557892,265.888458,258.111603,254.466980,249.590927,225.095062,206.731415,218.045471,229.417374,190.863647,105.516541,30.494232,22.690102,19.243820,29.301672,40.830597,59.276878,45.929771,4.152899,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601337.355000,4612205.550000,2976,5905,220.833908,230.296707,225.982666,225.081833,219.214066,222.470261,230.098373,234.957870,239.478531,249.990921,259.676880,276.164520,296.329773,315.445465,328.709930,338.015717,339.478546,330.321503,293.280182,259.957886,248.462006,241.908279,232.354568,199.594238,179.073578,183.619034,183.346298,137.792587,64.776054,25.304977,21.123159,14.576050,18.131424,21.451258,24.509109,15.833900,3.499181,1.629755,1.606614,0.710746,0.462812,0.261157,0.379340,1.058681,1.343802,0.000000,0.000000,2.272727,2.733885,0.000000 -601343.755000,4612205.550000,3008,5905,203.371918,219.239685,210.834732,208.214890,203.388443,199.652908,203.396713,203.355392,205.462830,212.528946,217.157043,229.314072,243.471085,257.446289,268.057861,274.801666,274.330566,270.611572,244.074402,220.438034,209.223160,205.330597,197.454559,169.396713,149.611588,158.876053,171.520676,139.570267,70.735550,22.000015,17.950430,15.395885,17.186794,22.927290,30.196712,20.876877,3.027278,0.641324,0.564464,0.050413,0.000000,0.000000,0.518182,0.042975,0.000000,0.000000,1.118182,0.968595,0.000000,0.000000 -601347.755000,4612205.550000,3028,5905,134.042984,144.660355,136.833893,131.371078,116.511589,106.833900,103.453735,99.908287,96.189278,98.027298,95.759521,104.660347,114.933075,124.619026,132.197525,139.602493,141.982666,140.850433,130.114883,116.776054,106.602501,103.701675,101.900017,77.728119,60.173569,76.313240,119.304977,122.313232,70.346298,15.296712,9.263656,8.303320,17.021505,29.585970,44.181011,31.645472,2.302484,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.642149,0.506612,0.000000,0.000000,0.000000,1.587603 -601351.155000,4612205.550000,3045,5905,98.214058,118.679352,102.026459,91.481003,77.885963,66.960350,63.776875,60.095886,55.806629,56.699192,55.814892,62.847950,72.380180,83.555382,91.051247,96.315712,98.737198,99.604965,92.241333,79.785141,69.256218,68.186790,66.872742,44.255386,25.495884,44.248775,98.365295,111.588440,64.861176,12.300015,6.079357,6.461995,15.090924,29.028946,47.604977,34.172745,2.673558,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.575207,0.546281,0.585124,1.571075,0.000000,0.000000 -601366.155000,4612205.550000,3120,5905,154.816559,192.766953,177.056198,170.105789,154.684311,143.700836,145.023148,144.742157,146.023148,152.634720,152.642975,165.948761,184.337204,203.097534,216.940506,229.386780,232.180176,224.725632,200.080994,178.824799,167.940506,163.791748,158.890915,128.163651,106.304146,121.312408,136.246307,103.642990,47.089279,18.217375,14.444647,6.914065,10.089272,11.227290,12.855389,5.941331,0.558680,0.238844,0.261985,0.168595,0.098348,0.000000,0.023967,0.069422,0.000000,0.000000,0.000000,2.361984,0.000000,0.000000 -601371.755000,4612205.550000,3148,5905,138.971909,175.682663,175.071091,166.583481,152.244644,144.624802,143.418198,141.492569,144.021500,145.385132,148.806625,162.847946,181.583481,199.451248,211.864471,223.310760,225.393402,216.649597,193.153732,172.963654,162.442993,159.566956,154.600006,126.781830,103.963646,118.062820,135.426453,102.715714,47.748775,18.186796,14.054564,11.475223,11.745472,13.659522,15.238860,7.287614,1.104962,0.605787,0.280993,0.566943,0.013223,0.000000,0.199174,0.309918,0.000000,0.000000,1.990909,0.000000,0.000000,0.000000 -601380.555000,4612205.550000,3192,5905,127.627281,183.495041,177.486786,166.346283,151.825623,142.800842,143.528122,143.007462,144.428940,147.916534,150.106613,163.205795,180.858688,199.594223,211.552902,221.619019,225.288437,215.445465,193.296692,173.395874,161.809097,159.933060,154.900009,124.552902,104.023987,118.354568,136.304962,102.131424,47.900017,18.723158,14.081837,11.490925,10.791753,14.123158,15.658694,7.871085,1.838021,0.558679,0.427274,0.042149,0.012397,0.039670,0.041323,0.304133,0.000000,0.000000,1.121488,0.000000,0.000000,0.000000 -601391.755000,4612205.550000,3248,5905,139.420670,182.379349,178.966125,168.395874,155.354553,143.263641,144.594223,141.461990,143.023972,147.222321,147.990906,160.842148,178.420670,194.222321,207.412399,218.900009,221.065292,212.718185,190.420670,170.792572,160.511566,157.900009,152.627274,122.081833,101.858696,115.057037,136.057022,104.800835,47.585976,17.252914,13.875225,10.019022,12.217374,13.786794,13.928942,7.125630,1.014878,0.283472,0.130579,0.032232,0.114050,0.000000,0.209092,0.264464,1.404959,0.000000,1.169422,0.000000,0.000000,0.000000 -601397.755000,4612205.550000,3278,5905,150.567764,187.212387,179.666931,167.278503,153.295029,143.195862,143.534698,142.567764,144.030579,146.691727,147.807434,160.129745,178.253708,194.435532,207.104950,220.518173,221.890076,212.005783,190.848755,171.228912,159.989243,157.848755,151.881805,121.179359,102.741341,116.460350,135.947937,101.981010,47.179356,16.984316,13.807457,13.515718,10.832251,12.562001,16.118198,7.679350,1.324795,0.230579,0.194215,0.003306,0.010744,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601401.155000,4612205.550000,3295,5905,147.961182,189.903305,179.093414,168.572754,154.696716,143.448776,145.300018,143.316559,142.853745,148.746307,149.233902,161.572754,179.093414,196.564468,209.787613,222.738022,223.977692,215.109924,192.630585,172.457047,161.068619,160.225647,153.663666,121.390930,101.853745,117.217377,135.217361,98.713249,47.142994,18.404974,13.969440,14.536380,11.167787,13.270265,15.212414,7.695053,0.827275,0.355373,0.176034,0.075207,0.004959,0.000000,0.123141,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601405.755000,4612205.550000,3318,5905,145.736374,187.860321,178.257019,170.645447,153.984299,143.033890,143.513229,143.240509,142.595886,147.893387,147.496689,160.099991,177.934708,196.579330,211.562805,224.240494,226.728088,216.009094,194.091736,172.248764,159.661987,159.240494,152.736359,119.455391,98.909935,115.422333,129.488449,95.430603,44.571091,16.022333,13.885144,12.452909,10.299191,13.009109,13.000843,5.593398,0.846283,0.282645,0.285125,0.062811,0.042149,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601412.955000,4612205.550000,3354,5905,153.073578,198.718201,180.437210,171.652084,156.420685,143.916550,143.371094,142.486801,144.652084,149.883484,148.073578,161.255386,180.643814,198.833908,213.949600,228.519852,229.900024,218.007462,195.437210,172.999191,163.065308,158.990921,153.809113,120.660339,100.205795,116.065300,128.346298,91.635551,43.172745,17.860350,13.982664,12.490097,10.553736,11.595057,12.505799,7.018191,1.371903,0.520663,0.321488,0.028099,0.088430,0.000000,0.306612,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601416.555000,4612205.550000,3372,5905,154.826462,199.661179,181.925629,172.661179,156.776871,144.462830,144.429764,142.611588,144.330597,151.826462,149.446304,162.404968,180.223160,199.033081,213.991745,229.487625,231.057861,217.826462,196.140518,174.619858,163.884308,159.793411,155.727295,120.504150,100.991753,116.710762,129.909103,91.843002,43.545475,16.831425,14.157044,13.450430,10.946299,12.923160,11.587618,6.238853,0.975209,0.527274,0.033885,0.034711,0.012397,0.000000,0.097521,0.000000,1.399174,0.000000,0.000000,0.000000,0.000000,0.000000 -601424.755000,4612205.550000,3413,5905,167.035538,205.779343,183.680176,174.688431,158.457031,144.605789,143.936371,143.109924,144.523148,151.564468,147.853729,159.556198,177.010757,195.655380,211.142975,225.233887,225.895050,213.638855,195.076859,173.176041,162.341324,160.118195,154.300003,121.614067,101.614067,120.969437,130.721497,93.895058,42.704983,17.128117,14.027291,13.677703,9.756214,10.941339,12.485966,8.249598,1.139672,0.190910,0.146281,0.038017,0.466116,0.000000,0.026447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.555000,4612205.550000,3427,5905,122.716545,171.724808,173.080170,161.981003,150.295044,140.642151,138.782654,137.865295,138.452072,140.228943,143.022324,155.865295,173.542984,189.402496,203.402496,215.146286,219.286789,211.286789,187.303314,166.650421,155.890091,151.377701,146.063644,115.518196,95.311584,111.691750,126.584312,94.410759,42.972744,16.840515,13.278531,10.448773,11.130597,11.484316,13.110759,6.595877,0.109918,0.053719,0.203306,0.014876,0.018182,0.000000,0.103307,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601430.755000,4612205.550000,3443,5905,106.304146,165.477692,170.990082,160.428101,147.469421,140.254547,138.271088,136.857864,137.998352,140.552078,142.816528,155.808273,174.039673,189.957031,204.477692,216.915710,220.957031,211.618195,189.213226,168.849594,157.147110,155.287613,147.890915,118.477699,96.527298,113.494232,129.436371,97.229767,44.601669,17.644646,13.444647,10.017368,12.221506,12.817373,13.443817,7.422326,1.154548,0.511572,0.061984,0.165290,0.153720,0.000000,0.195869,0.124794,0.000000,2.400000,0.000000,0.000000,0.000000,0.000000 -601433.955000,4612205.550000,3459,5905,98.171082,163.336380,169.981003,159.187607,145.823975,138.460342,137.435547,135.981003,136.518188,138.005798,140.766129,153.559509,173.096710,188.204147,202.658691,214.931412,218.237198,208.162827,187.757858,166.319839,155.030594,152.452072,147.881821,116.989265,97.766129,112.683479,129.675217,97.609100,46.476883,18.444647,13.443820,9.876047,11.075225,13.414067,14.455389,6.604144,1.204962,0.236364,0.000827,0.142149,0.003306,0.164463,0.000827,0.338017,0.000000,1.151240,0.000000,0.000000,0.000000,0.000000 -601437.755000,4612205.550000,3478,5905,105.982666,158.900024,166.453735,156.304977,144.271912,135.073578,133.990906,132.338013,133.387619,135.354568,138.048767,150.866959,168.552917,185.023987,199.090103,211.519852,214.842163,206.139694,185.007462,163.652084,153.280182,149.842163,145.354568,113.784309,94.561180,111.982666,130.718185,97.453728,46.346302,17.016546,13.214069,6.616542,9.387621,11.251257,11.910760,7.638854,0.052893,0.084298,0.155373,0.079339,0.027273,0.000000,0.000000,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.955000,4612205.550000,3514,5905,117.014061,164.228943,167.485138,156.443832,145.328125,135.551254,134.410751,133.989273,135.253723,137.468628,140.071930,151.906631,171.609100,187.542984,201.427277,215.815720,218.857040,208.443817,187.162827,165.939682,154.947952,149.633911,143.245483,112.096703,92.708275,109.873566,124.551247,91.419022,43.848778,17.561174,13.022333,7.550428,9.181009,11.918199,11.264477,6.402489,0.797524,0.200000,0.171076,0.054546,0.011571,0.000000,0.214050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601447.555000,4612205.550000,3527,5905,114.840515,162.609100,169.328110,157.171082,145.129776,136.823990,135.931412,134.468597,135.542999,138.022339,140.038864,152.914886,172.080170,189.741333,202.923157,217.997528,221.146286,211.113235,188.270264,165.733063,155.179352,151.369431,145.154556,113.237206,93.923157,110.129768,123.286797,90.328117,42.881836,17.440514,13.195886,9.214890,10.496711,12.207456,11.196709,6.737203,0.985952,0.187604,0.028100,0.000000,0.000000,0.000000,0.014876,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.755000,4612205.550000,3548,5905,114.265305,161.058670,166.017349,155.248779,144.083481,137.819016,136.207458,133.868607,135.438858,138.133072,140.405792,152.290100,172.199173,187.967758,202.645447,216.075211,220.339661,210.703308,187.190903,166.215698,154.190918,150.885132,144.736374,113.058693,91.273560,109.314888,122.819023,90.562813,42.653736,17.087622,13.157869,8.465302,10.663651,10.048775,11.644643,5.680174,0.954547,0.053719,0.016529,0.428100,0.000000,0.254546,0.000000,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.155000,4612205.550000,3570,5905,118.033073,164.082642,167.619827,155.834717,145.404953,135.082657,134.074402,132.975220,134.107452,136.181839,139.016525,151.743805,169.190079,186.768600,201.190079,214.628098,218.338837,209.545456,185.776855,163.413223,152.371902,148.578506,141.818176,110.925636,90.958702,106.487617,122.892578,88.834732,40.148785,16.101671,12.892581,7.152904,9.359520,11.057867,10.195056,5.277696,1.227275,0.000000,0.000000,0.022314,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.155000,4612205.550000,3585,5905,108.491760,163.028931,166.880173,156.252060,141.028931,136.243805,133.615707,132.235550,132.781006,135.053726,138.053726,150.409088,168.045456,185.028931,200.508270,213.227280,217.863632,208.128098,184.078506,162.764465,151.574387,148.673553,141.772720,109.136383,90.111595,106.971092,119.987610,87.161171,40.797546,14.228115,12.888448,6.467781,8.642165,9.087618,8.994228,5.047118,0.937192,0.119835,0.207438,0.309092,0.006612,0.166942,0.000000,0.143802,0.000000,0.000000,0.000000,0.000000,1.212397,0.000000 -601462.355000,4612205.550000,3601,5905,111.680183,159.233887,163.539673,156.159515,143.771088,135.457047,132.895050,132.903320,132.895050,136.622314,139.101654,149.870255,169.638855,186.407440,200.961166,213.324799,217.258682,208.258682,186.126450,161.903305,151.985962,147.225632,141.481827,110.217369,90.390930,107.539680,119.539680,87.630592,40.523163,15.750433,12.862003,7.110756,8.955388,10.434727,11.084313,4.514884,0.362811,0.566117,0.000000,0.000000,0.038844,0.328926,0.118183,0.063637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.355000,4612205.550000,3616,5905,109.426460,166.649597,167.062820,156.261169,142.591751,133.988449,132.930588,132.128937,132.905792,135.591751,137.806625,149.434723,168.889267,185.558685,201.352081,213.038025,216.021500,207.269440,184.401672,162.038025,150.120667,147.219849,140.054565,109.831421,89.649597,105.459518,120.004974,86.591751,40.591755,15.472745,12.732250,5.985134,8.192578,10.045469,9.729767,5.538025,0.621489,0.335538,0.147108,0.040496,0.016530,0.000000,0.148761,0.073554,2.603306,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.355000,4612205.550000,3646,5905,117.544647,164.569427,166.990906,158.453720,144.833893,136.916534,134.635559,134.222336,134.470261,136.742981,139.437195,150.941330,169.974380,187.139679,202.197525,215.404129,218.784302,208.362808,185.445465,162.850418,151.990906,147.304962,142.172729,110.552902,90.164482,105.999184,119.883492,88.842163,41.073578,16.496712,12.924811,8.353730,9.334727,11.819024,10.505800,3.452075,1.067771,0.215703,0.578513,0.000000,0.077686,0.000000,0.005785,0.074380,0.000000,0.000000,0.000000,1.082645,0.000000,0.000000 -601474.955000,4612205.550000,3664,5905,124.323158,165.199188,167.323151,157.827286,146.331421,137.463654,134.339676,134.331421,134.827286,137.901672,139.356216,151.157867,171.199188,187.314896,203.686783,215.100006,217.488449,210.100006,184.248779,162.885132,152.306625,147.091751,142.827286,110.215721,90.083488,107.868614,117.736374,88.083488,43.017372,15.700845,12.984317,6.214886,10.441340,12.095884,11.672743,3.533064,1.033886,0.056199,0.109918,0.006612,0.000000,0.000000,0.004960,0.157025,0.000000,0.000000,0.000000,3.079339,0.000000,0.000000 -601478.755000,4612205.550000,3683,5905,111.138855,169.246292,168.047943,158.642975,147.072739,136.915710,135.262817,134.783493,136.122314,138.874390,141.014877,153.006622,170.097534,187.676041,202.345459,214.791748,217.510757,210.576859,186.138855,162.411575,152.279343,147.204971,141.709091,110.890923,91.494232,106.890923,119.816544,88.667786,42.097542,16.537207,12.882663,8.228938,9.909935,9.994232,12.338032,5.674389,0.801655,0.281819,0.305786,0.208266,0.141324,0.000000,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601481.755000,4612205.550000,3698,5905,114.106621,164.503326,167.222336,158.445480,146.147949,137.519852,135.949600,134.685135,134.776047,137.619034,140.007462,150.478531,169.048782,185.379349,201.362793,212.478500,215.842133,207.395859,185.304962,162.197540,152.032257,147.585968,142.172745,111.875221,91.784309,108.205795,121.693398,89.073563,41.271919,15.933075,12.924810,6.942160,8.132248,8.569439,9.981833,3.742156,1.161159,0.291737,0.001653,0.011570,0.000827,0.000000,0.096695,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601486.355000,4612205.550000,3721,5905,109.758690,162.568604,170.188431,161.031418,147.725632,139.560333,136.915710,135.833084,137.122314,139.857864,141.353729,154.882645,173.403305,190.485962,205.915710,220.766953,224.742157,217.271088,196.527283,175.122314,164.651245,161.543808,157.618195,124.114067,102.452904,119.138855,137.709091,104.064476,47.800022,17.357042,14.328944,8.276875,10.006628,13.133902,14.452909,7.276871,0.809094,0.283473,0.154546,0.040496,0.010744,0.127273,0.084298,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601489.355000,4612205.550000,3736,5905,125.487617,170.768616,170.347122,162.413239,149.388443,139.867783,139.173569,137.512405,138.198364,141.619858,144.041336,155.644638,174.454559,192.966965,207.446304,221.438034,225.388443,218.157043,197.561996,174.785141,164.520676,163.429764,157.454559,125.165298,103.206627,121.363647,137.404968,104.933899,50.074406,19.258696,14.314068,9.185966,12.044644,12.377703,16.152082,7.192572,1.654550,0.241323,0.637191,0.080166,0.106612,0.000000,0.333886,0.388431,1.350413,0.000000,0.000000,0.000000,0.000000,0.000000 -601492.555000,4612205.550000,3752,5905,129.971909,166.426453,168.550430,160.938858,149.740509,138.616547,137.211578,136.376877,135.963654,140.261169,143.054565,154.823151,171.335556,188.600006,203.914062,215.707458,218.947113,210.823151,188.542160,166.666122,156.409927,154.046295,149.509109,118.360352,97.128944,113.319031,129.600006,99.343826,44.790104,17.898365,13.591754,7.112409,10.801671,11.951257,11.599188,4.519842,1.503309,0.458678,0.000000,0.044628,0.089257,0.000000,0.030579,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601496.755000,4612205.550000,3773,5905,124.384315,173.838852,174.880188,164.665298,151.516541,141.227295,139.805801,137.524811,138.847122,143.855392,145.896713,157.747955,176.004150,194.557861,208.599182,224.020676,228.053741,223.243820,200.285141,178.466965,168.442169,165.781006,162.136383,128.541336,106.061996,123.376053,142.863647,106.880180,47.830605,17.882664,14.739689,7.956213,11.366959,9.881834,12.711584,5.534719,1.814056,0.816530,0.083471,0.202481,0.030579,0.000000,0.064463,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.955000,4612205.550000,3794,5905,127.677704,174.909088,173.223145,165.404953,152.041321,141.884308,140.090912,139.917358,139.710739,143.909088,144.446274,155.677689,174.322311,192.438019,207.413223,221.338837,226.107437,218.975204,194.322311,172.024796,160.181824,157.842972,153.454544,119.925636,99.041336,115.272743,129.090927,94.942162,43.661175,18.206633,13.950432,8.471913,11.031424,12.185967,11.272742,6.768605,1.358681,0.842978,0.099174,0.129753,0.026447,0.000000,0.204959,0.080992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.155000,4612205.550000,3810,5905,124.036377,172.110764,174.548782,164.862823,152.763657,142.052917,140.887619,138.928940,138.507462,141.342163,143.548782,153.639694,171.292587,188.160355,200.581833,212.796707,215.565308,206.623154,182.507462,159.317368,147.681015,142.838043,137.581833,107.953720,89.226463,102.920670,114.152069,82.854568,39.011589,16.813242,12.507458,7.519022,9.900015,8.619021,9.447124,4.311579,1.630582,0.179339,0.153720,0.080992,0.065289,0.057852,0.162810,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601507.755000,4612205.550000,3828,5905,129.853745,177.985977,173.068604,165.399185,154.068604,141.804138,139.564468,139.019012,138.275208,141.704971,142.556198,153.696701,170.556198,187.233887,200.738022,212.217361,215.647110,207.300003,181.399200,158.076859,147.275208,141.837204,137.663635,105.490097,88.432243,104.142990,114.052078,82.159515,39.184319,17.309111,12.514894,7.114062,8.717372,8.238856,8.161999,2.922322,1.113226,0.537192,0.222315,0.506613,0.033058,0.000000,0.000000,0.118182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.955000,4612205.550000,3869,5905,129.452911,173.006638,171.890915,164.196716,151.196716,139.452911,137.552094,136.047958,136.593414,140.692581,142.064484,153.428116,169.684311,187.618195,201.328934,212.981842,215.651260,206.188431,182.304138,158.948776,147.684326,144.254562,138.163666,107.783485,88.180183,104.056213,115.328941,86.395058,39.593407,15.508283,12.560350,6.578525,9.826464,9.361173,9.502496,3.813232,0.971903,0.477687,0.014050,0.060332,0.075207,0.005785,0.080165,0.359505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.755000,4612205.550000,3883,5905,129.054565,173.558701,171.038040,161.153748,149.889282,138.591751,136.773560,135.302490,134.806625,139.715714,140.500839,152.988464,169.244659,186.633072,200.244644,213.781830,215.971909,207.029770,183.773590,160.947144,149.971924,144.889267,140.600006,109.980179,90.021500,105.451256,119.914062,87.575218,40.790104,16.473572,12.781837,6.559515,8.921505,8.565305,8.372740,4.034718,0.874382,0.318183,0.069422,0.168596,0.177687,0.000000,0.010744,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601521.955000,4612205.550000,3899,5905,123.128937,172.112411,168.071091,158.162003,145.079346,134.038025,134.178528,134.054565,132.327286,137.467789,137.996704,148.814896,167.228119,184.013229,198.542145,210.335556,213.955383,206.211578,184.690918,163.914062,153.963654,149.277695,144.236374,113.847946,93.682655,109.013237,126.550423,95.550423,42.715725,18.245474,13.112414,6.466127,9.204150,9.705801,12.762827,6.944639,0.519011,0.590084,0.208265,0.018182,0.000000,0.000000,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601524.955000,4612205.550000,3914,5905,112.356209,176.645462,169.232239,163.736374,147.769440,135.678528,136.744644,135.058685,135.405792,140.769440,141.058685,152.562820,171.025635,188.529770,203.620667,215.728119,218.711578,211.149597,193.372742,172.529770,160.009109,157.959518,152.009109,122.893402,100.381004,116.769432,139.215714,107.257034,52.207458,20.728119,13.819027,9.141336,13.023983,14.065308,17.030594,8.346293,1.980170,1.461160,0.180992,0.000000,0.046281,0.061157,0.317356,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601529.955000,4612205.550000,3939,5905,117.037209,168.417358,166.475220,155.483490,141.177704,130.442169,132.128113,128.747940,129.409103,130.491745,132.417374,143.971085,160.541336,176.136383,190.781006,202.227295,205.731415,198.483490,181.673569,163.995880,155.095062,154.508286,149.409103,119.756218,101.946289,117.475220,134.690094,105.913239,48.293411,18.034729,13.582664,8.462822,11.747125,13.142164,15.845472,7.899186,1.028102,0.141323,0.469422,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.016529,0.000000,0.000000 -601537.355000,4612205.550000,3976,5905,114.785141,163.256210,154.801666,146.495880,130.504150,120.735550,119.727287,117.818199,116.644646,117.834724,119.909103,130.760345,145.322327,158.983490,170.231415,181.785141,185.479355,179.983490,165.785141,152.074402,143.636383,143.826462,139.090927,114.694229,93.776878,110.239685,138.702499,114.330597,56.099194,16.223158,12.644648,9.876048,10.682660,17.040514,23.856215,10.598359,1.063640,0.003306,0.071075,0.000000,0.000000,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.155000,4612205.550000,3990,5905,115.311577,164.113235,158.947937,145.956207,133.625626,121.220673,121.807449,119.774391,119.253731,121.592575,122.253731,133.807449,150.939682,164.493393,176.650421,188.906616,192.947937,186.592575,174.104965,158.096710,149.873566,149.716537,147.700012,120.080177,99.245461,117.551247,143.311584,117.286789,56.683495,17.223158,13.427292,12.137206,10.997538,18.463654,25.438036,13.940510,0.545456,0.000000,0.084299,0.085951,0.365290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601542.755000,4612205.550000,4003,5905,109.085960,173.523956,166.813217,156.738831,140.573563,128.267776,130.085968,127.639679,126.276047,129.003311,130.796707,141.854553,160.829742,176.160324,190.193375,204.019821,207.416519,200.069412,181.350403,165.019821,155.127258,155.077667,151.854538,121.234718,100.557037,117.226456,139.738846,106.127281,50.912415,18.520679,13.804979,11.557868,11.178530,14.254563,17.681011,9.146293,0.457854,0.720663,0.233058,0.000000,0.033058,0.000000,0.047934,0.089257,0.000000,0.000000,0.000000,3.229753,0.000000,0.000000 -601554.555000,4612205.550000,4062,5905,115.939682,176.361160,166.997528,156.906616,142.179352,129.890091,129.832245,127.799187,127.683479,130.261993,129.468597,141.014053,156.749603,172.336380,185.245468,197.700012,198.336380,188.228943,166.923157,147.080170,137.369431,135.766129,130.154556,101.237198,84.295052,98.154556,111.394226,81.989265,37.361179,14.643818,11.832251,9.667784,8.874393,11.106626,10.409106,3.982654,0.211571,0.341323,0.090909,0.036365,0.142976,0.000827,0.000000,0.128099,0.000000,1.164463,1.185124,0.000000,0.000000,0.000000 -601562.155000,4612205.550000,4100,5905,110.364487,180.471893,174.083481,160.794205,147.852081,134.314896,134.290100,131.992569,132.066956,135.595886,136.058685,145.504974,162.099991,179.290085,192.190903,205.728088,206.926437,195.769424,174.257019,150.835556,141.513229,137.976044,133.463654,103.504982,86.504982,101.860352,110.100014,80.058701,38.653744,15.670267,12.133078,7.862824,8.891752,7.115716,10.860346,4.242157,0.837192,0.365291,0.064464,0.280166,0.480166,0.053719,0.490083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601565.755000,4612205.550000,4118,5905,126.775223,187.362000,176.403336,165.609940,151.031433,138.378540,137.634735,137.758698,136.047958,141.023163,140.998367,150.097549,166.783493,184.238037,197.411591,211.800018,213.031433,203.485977,178.750443,154.262833,145.692581,141.229782,137.709106,107.907455,91.932243,103.990097,112.254562,82.890923,39.948780,18.371094,12.519028,7.636376,10.876873,10.114890,8.840512,7.826460,1.118184,0.568596,0.426449,0.745456,0.500001,0.119835,0.420662,0.223967,3.072728,1.449587,3.003306,0.000000,0.000000,0.000000 -601571.155000,4612205.550000,4145,5905,114.329773,177.949600,171.982666,163.156219,148.057037,135.486801,134.594238,132.404160,132.577713,136.321503,135.676880,146.990921,164.156219,180.437210,193.652084,206.354568,210.552917,198.321503,174.891754,151.205811,140.676880,136.040512,133.263657,103.230598,86.842171,101.172745,109.065308,78.023987,38.255390,15.437208,12.114896,8.087619,7.850425,9.209932,8.972744,4.699183,1.949591,0.000000,0.086778,0.396695,0.171901,0.278514,1.040497,0.302480,2.965289,0.000000,0.000000,0.000000,0.000000,0.000000 -601579.155000,4612205.550000,4185,5905,111.023148,175.866119,175.494217,162.957031,146.957031,136.808273,135.758682,133.328934,133.039673,136.246292,138.287613,147.940506,164.361984,181.171906,195.056198,207.254547,212.105789,201.089264,176.370255,151.709091,142.064468,137.361984,134.890915,105.056206,87.849602,101.609924,108.105797,79.890923,39.841339,16.648779,12.262828,6.085137,9.504973,9.033899,8.551254,4.462820,0.779341,0.361158,0.482647,0.468596,0.316530,0.104133,0.419009,0.837191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.355000,4612205.550000,4246,5905,108.661995,168.116547,170.223984,159.819016,146.471909,134.620667,133.777695,132.265305,132.058685,135.232239,135.951248,146.695053,163.992569,180.471909,194.628937,208.116547,209.562820,199.496704,173.298355,151.091751,141.124802,136.199188,132.736374,103.133072,86.984314,99.719849,109.199188,78.133072,38.835560,15.693408,12.066961,7.011583,10.022329,8.783485,7.771088,2.727279,0.933887,0.398348,0.204961,0.308265,0.548762,0.076860,0.376860,0.829753,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.155000,4612205.550000,4340,5905,104.132256,165.537201,170.421509,158.504150,144.231415,133.578537,133.966965,131.702499,131.958694,134.388458,135.305817,145.752075,163.595062,181.123978,194.190094,206.388443,208.884308,198.859528,174.049606,150.785141,139.719025,136.619858,132.545471,104.082664,86.528954,99.933899,111.033073,78.950439,37.578533,14.785143,12.049606,6.177699,8.583485,10.303323,10.795058,3.963646,0.842978,0.509092,0.114051,0.000000,0.123141,0.057025,0.424794,0.262810,0.000000,4.077686,0.000000,0.000000,0.000000,0.000000 -601637.955000,4612205.550000,4479,5905,111.442162,164.293411,173.351257,161.458694,146.681839,135.904968,135.128113,133.590927,133.566132,136.764481,138.566132,150.574387,169.466965,186.111588,200.706635,214.723160,217.095062,206.855392,180.425629,157.599167,147.574387,144.466965,141.681839,109.921501,91.103325,106.177704,118.830597,85.103325,43.805805,18.094233,12.880184,8.220675,9.895060,11.077703,13.094232,6.766125,0.832233,0.725622,0.022314,0.167769,0.094216,0.014050,0.064463,0.210744,0.000000,0.000000,0.000000,0.000000,5.424794,0.000000 -601672.155000,4612205.550000,4650,5905,107.635567,167.048767,174.916534,161.776047,146.652084,137.371094,136.395889,133.338043,134.511597,136.023987,138.197540,151.098373,169.057022,187.478516,201.214050,214.329742,217.784286,204.883469,181.924789,158.098373,146.751266,144.379364,139.172745,109.172745,90.123154,104.776054,116.495064,84.982658,42.957870,14.547126,12.652085,10.000017,9.518200,10.094232,11.125637,7.142159,1.062812,0.170248,0.014877,0.083472,0.080166,0.000000,0.052067,0.371902,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612205.550000,4731,5905,110.414070,169.447144,174.728134,162.628952,148.141357,136.785980,137.686813,135.215729,134.637192,136.868622,140.066971,151.637222,172.290115,188.124817,202.843826,215.546310,220.058701,206.538040,181.802505,159.719864,148.504990,144.331436,140.736389,109.381012,92.976044,105.670258,118.901672,86.711586,43.967789,16.804150,12.794234,9.920676,9.786794,11.723984,12.990925,6.919020,0.577687,0.123967,0.118182,0.471902,0.147108,0.100001,0.219836,0.314050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601698.755000,4612205.550000,4783,5905,137.526459,175.774384,174.906616,163.088440,147.261993,138.352921,135.642151,134.303314,135.121490,136.972733,138.757874,150.675217,170.989273,188.344635,202.410751,215.716553,218.749619,205.468628,181.245468,158.691742,146.377701,144.485153,141.700027,110.493408,92.790924,107.030594,119.840515,84.625641,42.848778,17.223986,12.881838,10.119850,9.753736,8.403319,10.881006,4.518188,0.931407,0.345456,0.067769,0.000000,0.071075,0.033884,0.006612,0.866117,0.000000,0.000000,0.000000,0.000000,0.000000,8.838017 -601705.755000,4612205.550000,4818,5905,115.992577,176.352081,172.938858,162.112411,146.947098,135.732239,135.790100,133.376877,133.690918,137.310760,138.228088,150.971909,169.699188,187.757034,202.062820,216.046295,218.013229,205.583481,181.748779,158.335556,146.707458,144.690918,140.599991,109.674393,91.228111,106.360344,117.376869,86.112411,42.864479,17.296713,12.781837,10.981833,9.836380,13.152081,14.256213,6.370257,1.159506,1.491738,0.918183,0.528100,0.478514,0.401653,0.347935,0.087603,0.000000,0.000000,2.757851,0.000000,0.000000,0.000000 -601710.555000,4612205.550000,4842,5905,121.208282,178.943832,176.191757,164.266144,148.472748,136.365295,136.778534,134.828110,135.100830,137.001678,138.985153,151.042999,169.034729,188.175232,201.555405,215.158707,217.092590,204.563660,181.092590,157.464493,146.993408,143.927292,140.472748,109.315712,91.183487,105.365295,117.960342,84.323982,42.861176,17.666962,12.770267,11.645470,10.399190,10.795884,10.226461,4.690091,0.612398,0.400001,0.127273,0.137191,0.000000,0.000000,0.242977,0.579340,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.155000,4612205.550000,4865,5905,103.980995,182.080185,177.807465,164.931412,147.055374,136.204147,136.146286,134.972733,135.658691,138.262009,139.311600,152.047119,170.625626,188.989288,202.518204,215.964493,218.121521,205.625641,181.749619,158.493408,147.989273,145.625626,140.790939,108.840508,91.766136,106.014061,118.154556,85.303322,42.865307,17.521507,12.799193,12.514894,10.185968,11.568610,12.698364,6.685132,0.623142,0.171901,0.207438,0.131406,0.267769,0.000000,0.455374,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.955000,4612205.550000,4904,5905,122.135551,186.177689,177.723145,165.657028,148.210739,137.028931,137.285126,134.739685,134.946304,139.194214,139.516525,152.260330,170.095047,188.871902,203.566116,217.483475,218.475204,204.367767,180.466949,158.194214,147.524796,146.086777,140.227280,109.599182,91.400841,108.210754,117.747948,85.351257,42.681839,17.511587,12.747953,11.484313,8.138858,12.982661,13.453735,6.547945,1.816533,0.509092,0.154546,0.143802,0.191737,0.000000,0.481820,0.156199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.755000,4612205.550000,4918,5905,122.945473,186.160339,176.085953,162.945465,148.656204,135.928940,137.193390,133.375214,134.995056,137.879349,138.127274,150.788437,168.689255,187.986786,202.094223,215.457855,216.639679,203.251236,178.656204,157.697525,145.639679,145.300827,139.309097,108.168617,90.928940,105.672745,117.846291,85.507454,42.540520,15.181835,12.664481,13.028115,9.628116,9.574394,12.655388,5.215711,0.646283,0.047934,0.290910,0.000000,0.080166,0.000000,0.324794,0.147108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.355000,4612205.550000,4941,5905,118.017365,194.670242,179.447098,165.794235,149.934723,136.951248,137.777695,134.901657,135.942993,140.595886,139.719849,152.009109,169.728088,187.885117,203.240494,217.397522,218.116531,203.480164,181.116531,159.471909,147.050430,144.595886,140.554565,110.579346,90.604149,107.447113,118.339676,86.769432,44.620686,16.947954,12.777705,13.584314,10.743819,10.514894,13.232249,4.703314,1.007441,0.050413,0.000000,0.000000,0.004959,0.049587,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.755000,4612205.550000,4978,5905,132.961990,184.168594,175.019836,163.061157,147.986786,134.928925,137.267776,133.185120,133.871078,139.854553,137.400009,149.887604,167.738846,187.317352,201.804962,216.383484,217.763657,202.813232,180.871078,159.085953,149.639679,146.995041,141.763641,110.226448,92.879349,109.259506,119.937195,87.879349,43.598366,17.157867,12.887622,14.588447,10.681009,12.292579,12.970264,6.621499,1.370250,0.575208,0.101653,0.086777,0.034711,0.027273,0.690910,0.258678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601746.955000,4612205.550000,5024,5905,136.942993,198.471909,180.562820,168.405792,150.604141,136.686783,137.819016,135.116531,135.422333,142.736374,139.488449,151.785965,169.785965,189.290100,205.009109,218.075226,219.695053,204.653732,182.901672,160.116547,149.339676,146.422333,140.554565,108.157867,91.661995,109.149597,120.438850,86.157867,43.347954,16.439688,12.777705,12.669436,8.847125,11.281009,11.919851,6.633069,1.011573,0.343802,0.584298,0.015703,0.071901,0.017356,0.404959,0.000000,4.798348,0.000000,0.000000,0.000000,1.860331,0.000000 -601752.955000,4612205.550000,5054,5905,149.816574,197.651245,184.014877,171.328934,150.419846,137.072739,136.700836,136.056213,136.543808,144.758682,140.452896,153.204971,170.568604,190.527283,205.543808,218.684311,220.047943,203.163635,182.717361,161.477692,150.138855,146.221497,141.618195,108.618195,92.552078,110.188446,120.519020,87.064476,42.973576,17.062828,12.874401,14.495886,9.966133,11.237206,11.660346,7.843812,1.359506,0.300827,0.205786,0.018182,0.081819,0.000000,0.548761,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.555000,4612205.550000,5082,5905,106.043808,168.035538,170.994217,158.366104,144.490067,134.052078,133.622314,129.564468,129.498352,132.060333,134.506622,146.333054,165.886765,181.663635,195.853745,207.035553,208.655396,198.167786,176.514877,154.076843,142.547928,139.580978,133.663635,104.118187,86.076874,102.250420,116.217361,85.713234,41.729771,15.299191,12.151258,7.352078,9.320677,11.646297,10.902493,5.535547,0.341323,0.198348,0.196695,0.004959,0.079339,0.180992,0.159505,0.300827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.555000,4612205.550000,5122,5905,101.037209,165.615707,173.830582,158.376038,145.880173,134.904968,134.359528,132.466965,131.880188,133.971085,135.202499,148.152893,167.293396,184.210739,197.855377,209.896698,212.285126,200.301651,178.838837,155.938019,144.483475,141.880173,136.863647,106.433899,88.938034,105.582664,118.500015,88.400841,44.210770,17.400845,12.442168,9.388444,11.469440,11.489274,12.969437,6.510752,1.145456,0.176860,0.188431,0.002479,0.000827,0.000000,0.111571,0.060331,0.000000,0.000000,1.303306,0.000000,0.000000,0.000000 -601779.355000,4612205.550000,5186,5905,108.788452,166.163635,171.990082,158.395050,142.808273,133.833069,132.849594,129.990097,130.279358,132.328934,134.965302,146.386780,166.171906,183.337204,196.535538,209.254547,211.155380,200.229752,178.378525,156.304138,146.056198,140.502487,135.345474,104.857864,87.378532,103.337204,118.089272,87.932243,44.882664,17.757868,12.304152,10.052907,9.696712,10.977703,11.701668,5.840506,1.299176,0.188430,0.022315,0.000000,0.000000,0.000000,0.002479,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601800.155000,4612205.550000,5290,5905,94.732246,163.252884,169.525620,156.938843,142.327271,133.938858,132.500824,130.476044,131.079346,132.781830,135.319016,147.624786,166.228088,182.558670,198.095871,208.971893,211.599991,200.757019,179.500824,156.476028,145.178513,140.757019,135.054565,105.252907,86.889267,103.616539,118.525635,87.137199,42.542175,16.164480,12.277704,9.222328,9.061999,9.859521,12.405801,5.356207,1.069423,0.234712,0.200001,0.005785,0.009918,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.155000,4612205.550000,5440,5905,112.974396,168.916534,168.742981,158.693390,144.709915,133.090088,132.957855,130.222321,129.933075,133.866959,135.858688,147.445465,166.693390,183.461990,197.685120,210.329758,211.197525,202.676865,179.619019,158.114883,145.354553,142.164459,136.990906,105.734718,85.792580,104.098358,118.511581,87.900017,44.131428,15.814894,12.453737,6.285964,10.184315,11.177703,11.777702,5.634720,0.540497,0.053719,0.128099,0.159504,0.015703,0.000000,0.179339,0.017356,0.000000,0.000000,1.281818,0.000000,0.000000,0.000000 -601841.555000,4612205.550000,5497,5905,99.040520,171.015717,170.387619,159.891754,144.627289,132.941345,132.164490,130.610779,130.842178,134.949600,135.412415,148.255386,167.057037,185.453735,198.982666,211.247101,213.652054,203.238861,181.809113,159.280182,146.974396,143.255386,137.172745,105.933075,87.833900,103.296715,119.338036,90.131432,43.156219,16.557045,12.470267,6.282655,10.130598,11.642993,13.274397,5.014059,0.400828,0.367769,0.152066,0.033885,0.195042,0.000000,0.067769,0.036364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601848.355000,4612205.550000,5531,5905,105.655388,174.572723,169.390900,159.233871,144.490112,132.374390,132.490082,131.242157,130.192566,134.787613,134.572739,147.787613,165.903290,183.539658,199.167770,210.671890,212.283463,202.820663,180.159500,159.630569,147.118195,143.465317,138.027283,105.804138,87.820671,105.638847,119.845459,89.903313,42.804150,17.459522,12.547953,7.148772,9.849604,10.045472,13.500843,4.561166,0.758680,0.185125,0.157025,0.056199,0.121488,0.000000,0.370249,0.677687,1.630579,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.155000,4612205.550000,5570,5905,102.609116,166.526459,164.700012,151.369431,139.333908,130.557037,130.226456,126.904144,126.052902,127.813232,129.003311,141.705811,161.590103,178.234726,191.408264,204.507446,207.168594,195.110748,172.160355,150.672745,140.333908,136.755386,130.127289,101.639687,84.449608,99.995064,114.193405,82.656219,39.904152,15.247952,11.829771,7.357038,9.216545,9.655386,12.692577,5.267777,1.580993,1.734712,1.436364,1.444628,1.846282,1.709091,1.600001,1.041324,0.000000,2.018182,0.000000,1.070248,0.000000,0.000000 -601867.755000,4612205.550000,5628,5905,109.613235,172.604980,172.092575,157.704147,142.348785,130.745468,130.695877,128.695877,127.390091,130.489273,131.514053,143.803329,162.563644,179.439697,193.340515,205.828110,208.001663,195.943832,173.009949,152.596710,141.679367,137.679367,130.654556,101.315712,84.026459,100.315712,113.398354,84.249596,41.505806,16.216547,11.877705,10.621502,11.157868,11.909934,11.723982,5.528934,0.977688,0.161158,0.201653,0.004959,0.004132,0.000000,0.102480,0.165290,0.000000,0.000000,0.000000,1.248760,0.000000,0.000000 -601882.355000,4612205.550000,5701,5905,111.323151,178.604156,168.926468,158.058685,141.504974,128.232239,129.182648,127.133064,127.488434,130.736374,130.281830,142.347946,161.951248,179.463669,192.223999,206.058701,207.290100,194.769455,172.116547,152.075226,141.604141,137.356216,131.554565,100.860344,83.133072,97.810760,112.670258,81.562820,38.595890,16.150431,11.959523,9.711584,9.163651,10.537207,11.167785,4.885959,0.570249,0.104133,0.051240,0.011570,0.000000,0.000000,0.312398,0.138017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601896.755000,4612205.550000,5773,5905,119.995064,182.102478,168.763641,160.672729,141.598343,129.639679,128.846298,127.011581,128.069427,132.532242,130.077698,142.689255,160.350418,180.102478,192.251236,207.193390,207.094223,193.358688,171.358688,151.920670,140.433060,137.523972,130.400009,99.755386,84.796715,99.482658,111.317375,82.209938,39.887623,13.972746,11.854564,12.490098,8.902496,10.175223,12.201670,4.437198,0.403307,0.148761,0.219835,0.241323,0.003306,0.000000,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601905.555000,4612205.550000,5817,5905,118.790092,191.517365,172.575226,162.575226,140.633072,130.021500,129.327286,127.790092,127.583481,133.583481,129.938858,142.872742,159.963654,177.955383,192.484314,207.319016,208.004974,192.806625,170.790100,151.376877,139.178528,136.897522,129.781830,99.790092,83.294228,100.442986,112.641335,78.996704,37.517376,14.041340,11.798365,12.249602,8.235551,11.179353,10.195884,4.564471,0.543803,0.146281,0.000000,0.123141,0.000000,0.000000,0.225620,0.157852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601914.955000,4612205.550000,5864,5905,126.775223,192.328934,174.469421,161.552078,141.295868,129.469421,130.915710,128.006622,128.552078,135.849594,131.866119,143.337204,160.857864,179.386780,193.841324,208.271088,208.271088,191.857864,171.229752,151.262817,140.519012,136.990082,131.072739,100.667786,84.775223,101.428108,107.593391,77.957047,36.733902,16.049604,11.915721,15.434727,9.267784,9.846296,11.689272,6.796704,0.271901,0.255372,0.155373,0.000000,0.240497,0.000000,0.024794,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601928.755000,4612205.550000,5933,5905,93.561996,151.157028,153.330582,141.165283,127.942162,118.685966,118.355385,116.859520,117.297539,118.991753,122.363655,133.231415,150.330582,166.983475,180.082642,191.801651,194.537186,185.041321,163.867767,142.801651,133.809937,131.735550,126.545471,98.520676,83.388443,96.272743,105.553734,78.752083,38.429768,16.200846,11.504150,9.584312,10.120678,11.835554,13.020678,6.676870,0.962812,0.411571,0.238844,0.000000,0.000827,0.000000,0.000000,0.509918,2.309918,0.000000,0.000000,0.000000,0.000000,0.000000 -601943.955000,4612205.550000,6009,5905,94.379356,145.290939,149.274399,137.803329,123.076042,115.051247,113.588440,112.439682,112.571907,115.646294,118.018188,128.819839,146.348785,163.018204,176.935562,188.571930,192.125641,182.076065,160.745483,141.654572,131.505798,128.373566,123.563644,96.481003,79.902489,94.348770,106.414886,78.390091,38.348778,16.111588,11.233078,10.543817,11.043819,12.678530,12.659521,8.449598,1.818186,0.714051,0.330580,0.209091,0.345455,0.719835,0.608266,0.825622,0.000000,2.085124,0.000000,1.115703,1.295868,0.000000 -601952.155000,4612205.550000,6050,5905,75.112411,141.119827,141.863632,130.805786,115.814056,108.293396,104.590927,102.938034,103.896713,106.516541,108.028931,118.681824,136.169418,150.822311,164.070251,176.483475,177.830582,167.665283,148.673553,131.012405,121.780998,118.500008,112.409096,86.309929,69.855385,85.276871,100.665306,76.235542,35.475227,11.916547,10.219028,7.467782,9.285968,11.928943,13.547124,8.789268,1.041325,0.135538,0.121488,0.145455,0.000000,0.103306,0.082645,1.040497,4.420661,0.000000,0.000000,0.000000,0.000000,0.000000 -601956.955000,4612205.550000,6074,5905,99.048782,133.853745,136.407455,126.919861,111.423988,103.638863,99.291756,95.961182,95.159523,96.911591,99.300026,109.126472,127.399193,143.167786,155.316528,165.002502,166.828934,156.754547,138.043823,118.159523,108.952911,105.184319,100.300026,73.696716,57.349606,77.052086,95.109940,73.217377,33.407455,10.946299,9.118201,7.990094,9.276874,8.950427,12.512410,7.050424,0.657027,0.306613,0.116529,0.000000,0.000000,0.000000,0.000000,0.385125,3.392562,3.684298,0.000000,1.408265,0.000000,2.910744 -601960.555000,4612205.550000,6092,5905,113.861176,140.654556,141.770264,131.770264,116.514069,106.795059,104.654564,101.902489,99.877693,101.588440,103.133904,113.828117,133.538864,149.390091,161.216537,172.580170,173.340500,162.852905,142.770264,122.919029,112.051254,108.762001,103.836380,74.745461,58.919029,80.100838,97.315712,72.604965,35.852913,13.876879,9.439688,10.502491,12.601667,10.278526,12.330593,7.339680,2.124797,0.848763,0.434712,0.643803,0.634711,0.348761,0.023141,0.581820,0.000000,3.897521,0.000000,0.000000,3.383471,0.000000 -601965.555000,4612205.550000,6117,5905,81.218201,105.665306,96.501671,87.466133,73.008278,66.433899,63.425636,59.910759,59.819847,59.588444,59.662823,68.596710,80.347122,91.037209,99.538864,108.861176,109.623985,104.500015,92.995880,79.304977,73.729767,71.566956,68.145470,47.960342,34.399189,52.286789,80.010765,72.687622,33.989273,8.534725,6.195057,10.725634,13.484313,18.849604,26.713240,24.710758,9.863643,5.931410,7.126450,6.059507,5.532235,5.319837,5.207440,4.090911,25.996695,7.242150,8.454547,3.838017,18.251242,19.206614 -601253.155000,4612195.550000,2555,5955,214.495880,238.438034,230.247955,227.049606,223.281006,227.983490,236.793411,240.867783,246.190094,256.818207,268.165314,286.520660,309.330566,328.090912,343.462799,352.785126,353.140503,338.438019,290.322327,254.049606,240.776871,234.041336,222.181839,187.355392,165.355377,167.504135,161.280991,111.702492,50.793407,23.371920,20.198368,17.432249,17.551258,17.715721,19.624813,13.886792,4.288438,2.753725,1.214052,0.819838,0.812399,0.000000,0.692564,0.794217,1.347934,0.000000,0.000000,0.000000,0.000000,4.439670 -601259.355000,4612195.550000,2586,5955,214.134720,236.506622,233.704971,231.002487,227.374390,233.366119,244.382645,249.316528,254.729752,264.895050,278.895050,294.911591,315.176025,332.399170,345.300018,354.481812,351.382660,332.994232,279.010742,241.787613,227.266953,218.985962,205.572739,171.696701,153.093399,151.614059,138.721497,94.614067,42.283493,20.467787,18.688448,17.361176,16.031422,17.109108,14.487622,11.776875,2.532239,2.355379,1.242151,0.695043,1.025622,0.784298,2.424796,1.762812,1.413223,0.000000,1.204132,0.000000,1.351240,0.000000 -601268.555000,4612195.550000,2632,5955,206.409103,230.219025,235.971085,232.367783,231.309937,237.491745,246.582657,251.466965,259.599182,268.690094,280.731445,297.227295,316.805817,335.772766,348.714905,355.227295,352.632263,334.797546,281.557892,242.607452,228.615723,218.888443,205.409103,173.524811,154.095062,151.177704,139.227295,94.128105,42.855389,20.700848,18.673574,14.151258,14.735556,15.969440,13.735556,8.734726,3.781826,1.989263,1.366119,0.590910,1.153721,0.547935,0.838019,1.890912,5.547108,0.000000,0.000000,0.000000,0.000000,0.000000 -601282.155000,4612195.550000,2700,5955,226.808289,233.899185,234.014877,232.279343,231.229752,236.576859,245.444641,250.890915,257.593384,268.262817,279.609955,297.122345,317.800049,336.130615,349.593414,358.229797,357.882690,341.155396,286.857880,248.229752,234.667770,225.841324,213.618195,177.527283,157.766953,157.874390,147.171906,99.948769,44.923985,22.485970,19.419853,16.862003,17.423986,16.058697,16.066135,8.201667,3.534719,2.558684,1.227277,1.424797,1.105787,0.754547,0.930580,1.007439,1.420661,0.000000,0.000000,1.132231,0.000000,2.284298 -601302.155000,4612195.550000,2800,5955,213.176041,227.423981,224.688431,222.250427,218.134720,222.209091,229.390915,233.465302,238.878525,249.192566,257.762817,273.498352,291.523193,308.415741,322.333099,331.085175,334.159546,322.870300,284.085175,252.275208,241.366119,234.407440,226.300003,193.696701,175.010757,177.514877,172.861984,125.382652,57.399193,24.402498,20.572746,13.607454,18.237207,19.822332,22.600845,13.349603,3.094222,2.449592,1.101655,1.139673,0.777688,0.004959,0.501654,0.761158,4.036364,2.802480,1.181818,1.090909,2.661157,0.000000 -601316.955000,4612195.550000,2874,5955,182.928940,194.532257,198.995056,194.788452,193.821503,195.019852,203.920685,207.499191,210.846298,221.019852,231.771912,248.119019,267.441345,286.904114,302.639679,315.457886,322.986786,322.664490,300.771912,277.829742,270.094238,266.044647,262.945465,233.937180,214.036377,225.474396,232.242981,192.614899,103.738861,28.094233,23.904152,16.143820,27.161177,38.342167,53.590103,39.895885,3.778520,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.069422,0.000000,0.825620,0.000000,1.071075,0.000000 -601326.155000,4612195.550000,2920,5955,205.899185,219.361984,217.279343,216.419846,212.337204,214.477692,221.634720,225.560333,228.659515,238.990082,249.758682,265.973572,284.320709,302.725647,317.543854,328.105835,331.221527,325.469452,294.543854,266.461151,255.766953,249.543808,243.072739,212.229752,192.907440,198.700836,204.411575,160.775223,80.560349,26.957045,22.097540,15.338034,22.601671,27.357044,37.378532,27.042168,3.056207,2.111573,0.305787,0.014876,0.143803,0.077686,0.023967,0.235538,1.240496,1.219008,1.097521,1.053719,3.835537,2.171901 -601331.755000,4612195.550000,2948,5955,130.849609,146.162003,139.558685,133.938858,121.195053,113.748772,113.624809,111.889267,109.368607,112.409927,114.236374,125.062820,138.021500,151.277695,160.674377,168.327286,170.261169,170.608276,157.641342,142.236374,131.831421,128.980179,127.509102,100.963646,78.575218,98.434723,140.467789,136.451248,74.682655,16.897539,11.591756,9.296706,18.621508,33.646301,48.732254,36.974400,1.769426,0.081819,0.010744,0.000000,0.000000,0.174380,0.000000,0.000000,1.301654,0.867769,0.845455,0.000000,0.595041,0.000000 -601357.355000,4612195.550000,3076,5955,178.157867,195.265289,174.893387,167.579330,152.852066,141.604141,140.852081,142.009109,142.422333,149.290085,149.876862,163.380981,182.579330,201.827271,217.290085,230.893387,232.628922,225.620651,201.951233,179.909912,168.174377,163.777679,158.554535,127.190926,105.438858,120.612411,134.893402,104.397537,48.480183,18.623159,14.414067,10.064476,11.138032,11.423155,14.784314,6.515715,2.328105,0.545456,0.331407,0.017356,0.026446,0.000000,0.000000,0.251241,0.000000,1.295041,0.000000,0.000000,0.000000,0.000000 -601361.355000,4612195.550000,3096,5955,160.770279,181.406631,176.968628,166.166962,152.571930,142.472748,142.993408,142.844650,143.621521,148.522339,152.357056,165.299194,186.885971,204.555405,219.695892,233.894241,236.481018,228.456223,205.786804,183.282669,171.844650,169.836395,163.381851,131.728943,108.704140,125.175217,142.447952,107.638023,50.985142,19.408281,14.852912,10.523156,12.812413,16.027290,16.518200,9.557040,1.129756,0.736366,0.137193,0.191736,0.023141,0.049587,0.057852,0.009918,5.128926,0.000000,1.171901,1.035537,0.000000,0.000000 -601367.555000,4612195.550000,3127,5955,144.598373,173.333893,174.623138,162.887604,150.557022,142.052902,143.391739,142.416534,142.978516,147.631409,151.185120,165.226456,185.854553,202.119019,217.681000,229.466125,232.515701,226.581818,205.011566,184.978516,172.804962,171.780167,168.309097,135.052917,113.193405,130.193405,156.912399,123.003326,58.598370,20.765310,15.300846,14.028115,13.921506,17.709112,22.128119,12.927287,1.438021,0.188432,0.401655,0.023141,0.019835,0.000000,0.376860,0.065290,0.000000,1.216529,1.122314,0.000000,0.000000,0.000000 -601377.155000,4612195.550000,3175,5955,132.755386,185.424820,173.152084,165.292587,151.119034,141.383484,141.507462,139.755386,140.920685,143.920685,145.193405,158.036377,175.606628,193.011597,204.962006,216.416550,217.333908,212.292587,192.664490,170.383484,159.557037,158.052917,155.854568,124.482666,102.887611,118.590096,147.201675,117.152077,55.656219,18.555391,14.168614,10.977702,12.073572,15.205803,20.594234,8.602490,1.122318,0.003306,0.022314,0.000000,0.084298,0.000000,0.000000,0.000000,0.000000,1.197521,1.052893,3.176033,0.000000,0.000000 -601382.155000,4612195.550000,3200,5955,140.285126,179.243805,172.714874,163.210739,149.747940,138.780991,139.971069,138.450409,139.417358,143.128098,143.904953,157.838837,172.747940,189.706604,202.896683,213.962799,216.739655,208.714859,189.028931,169.797501,158.929749,156.648758,154.318176,123.822319,102.202484,118.739677,143.838837,112.045464,49.557873,18.966961,14.028945,13.790928,10.219852,11.755390,16.313240,9.548775,1.033061,0.298348,0.000000,0.008265,0.000000,0.000000,0.000000,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.355000,4612195.550000,3226,5955,142.494232,186.700836,174.097534,166.791748,151.998352,141.552094,142.519028,142.188446,142.643005,145.890915,146.700851,160.320663,177.403336,194.204971,206.684311,217.485977,220.180191,213.254562,192.816528,172.312424,161.552078,160.188431,156.072739,125.725639,104.659515,120.262825,143.485977,111.114067,51.750435,18.083490,14.188449,12.890099,12.863654,15.563654,16.370264,8.460342,1.503308,0.396695,0.256199,0.071901,0.090909,0.000000,0.000000,0.057025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601394.955000,4612195.550000,3264,5955,149.267792,191.763657,174.730591,169.424820,153.044647,142.548782,142.821503,142.482666,143.449600,147.474396,147.995056,159.623154,177.209930,194.557037,205.631424,218.449600,219.995056,209.796707,190.829773,169.879364,159.846298,157.416550,151.672745,121.573563,101.606628,117.358688,133.449600,98.854568,45.300846,16.641340,13.788449,13.595056,11.747952,13.570266,14.505801,8.899184,0.954547,0.491737,0.412398,0.154546,0.029753,0.000000,0.102480,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601405.155000,4612195.550000,3315,5955,142.111588,197.797516,180.475220,169.830597,155.210754,144.359543,143.483505,142.070282,143.400864,149.764481,147.425659,160.235550,177.541336,194.433884,207.466949,219.252060,219.863632,211.623962,192.574387,173.309937,163.318192,160.185974,157.045471,125.194221,106.376038,122.574387,140.847137,105.723152,50.623985,19.247952,14.276878,14.133902,12.747125,14.185142,17.834728,9.340509,0.958680,0.427274,0.206612,0.067769,0.042976,0.262810,0.110744,0.281819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601412.155000,4612195.550000,3350,5955,157.242981,196.978516,180.978516,172.358688,156.069427,142.276031,143.143799,142.201660,143.482651,150.639679,147.011566,158.838013,176.160339,192.375214,206.358688,218.267776,218.953720,207.796692,188.416534,168.110748,156.970245,154.771912,151.127274,118.400009,99.771919,116.325630,135.499191,100.895889,46.069447,17.420681,13.738861,15.363652,10.783488,11.634727,13.499191,8.071085,0.627274,0.490084,0.125620,0.060331,0.023141,0.000000,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601415.355000,4612195.550000,3366,5955,159.700012,196.228943,180.666946,170.947937,154.981003,143.014053,142.526459,141.923157,142.939682,150.609100,147.576050,158.956207,174.460342,190.551254,203.443802,215.385941,215.989243,206.005783,188.063644,169.989273,159.154556,156.807449,153.609100,123.121498,103.336372,120.890091,135.997528,101.923149,47.832253,17.045473,13.964480,15.132249,11.233901,13.480183,17.113241,8.389268,1.006614,0.554546,0.219009,0.114877,0.099174,0.000000,0.100827,0.002479,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601418.755000,4612195.550000,3383,5955,116.858704,163.914062,153.170258,145.699188,129.649597,119.319023,118.393402,116.327286,115.376869,120.013237,117.170258,127.509102,140.021500,152.996704,165.434723,176.054565,178.633072,172.682663,163.170258,150.624802,143.112411,141.170258,139.781830,114.806625,97.013237,116.517365,143.310760,121.740509,65.806633,17.024811,12.707456,13.462827,12.887620,21.170267,30.790102,23.127291,0.703309,0.101653,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601423.155000,4612195.550000,3405,5955,96.780998,138.839676,141.285965,131.806625,118.814888,109.881004,108.881004,106.327286,106.492577,107.451256,109.327286,119.558693,134.120667,146.856216,158.633072,168.327286,171.732239,169.922333,157.963654,143.773560,136.798355,134.988449,134.418198,108.302490,88.071098,109.757034,143.343811,127.575218,69.922333,17.071093,12.219853,11.123982,14.500844,23.273573,34.029770,25.166962,0.752895,0.176034,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.482646,0.000000,0.000000,0.000000,0.000000,0.000000 -601427.555000,4612195.550000,3427,5955,123.949608,161.941345,166.453735,158.825638,144.519836,135.594223,133.941330,133.147949,134.304977,136.610748,139.156204,151.329773,171.387619,187.503326,201.635559,214.329773,217.007462,209.660355,189.858704,168.726471,157.346298,153.825638,149.263657,116.040512,94.866959,112.726463,137.842148,105.924812,49.420685,17.047125,13.569441,9.809104,10.228944,12.687621,15.154563,5.695879,0.875208,0.004959,0.175207,0.000000,0.034711,0.000000,0.017356,0.198347,0.000000,0.000000,0.000000,1.072727,0.000000,0.000000 -601430.355000,4612195.550000,3441,5955,114.045471,164.714890,167.698364,157.144638,144.632248,137.491745,135.747955,134.698364,135.400848,138.458694,141.549606,154.152908,173.483490,190.442169,206.714890,220.020676,225.161179,219.789276,201.739685,180.995880,170.384308,170.549606,165.954559,132.458694,109.665306,130.309937,155.574402,121.657043,58.095062,19.195885,15.086796,11.433074,12.862001,15.581009,20.622328,11.763651,0.963639,0.191736,0.295868,0.000000,0.090910,0.000000,0.078513,0.075207,0.000000,1.156198,0.000000,0.000000,0.000000,2.101653 -601435.755000,4612195.550000,3468,5955,106.008278,157.917358,167.404953,157.991730,145.933899,137.305817,135.380188,135.099182,136.371933,138.743835,142.578552,155.396698,174.603302,191.752060,205.206604,218.157028,222.826447,216.793396,197.710739,177.942154,167.247940,166.057846,164.363632,132.528946,109.702492,129.710754,153.355377,121.396713,59.132252,20.677706,14.942167,12.523983,14.781010,17.598366,21.752909,13.501669,2.499178,0.402481,0.154546,0.254546,0.148761,0.000000,0.013223,0.127274,1.323967,0.000000,0.000000,0.000000,0.000000,0.000000 -601440.755000,4612195.550000,3493,5955,108.131416,160.081833,166.619034,156.329773,142.833908,135.999191,134.313232,134.098358,135.362823,138.296707,142.040512,155.123154,173.999191,190.676880,205.338043,217.090103,220.850433,213.280182,193.371094,172.561172,162.123154,161.032257,155.536377,123.354553,102.106621,121.197533,139.048782,107.189270,51.023987,17.243820,14.139688,9.975222,11.530595,13.982661,17.286795,6.407447,1.131409,0.073555,0.163637,0.013223,0.073554,0.000000,0.016529,0.000000,1.315703,0.000000,0.000000,0.000000,0.000000,0.000000 -601444.155000,4612195.550000,3510,5955,98.239677,154.578522,159.074402,150.008286,139.090927,131.752075,129.429764,129.264465,129.479340,131.793396,134.322327,145.669434,164.115723,177.314072,191.041336,201.000015,203.570267,198.446304,182.016541,164.314072,154.694229,152.247955,147.727295,120.900833,98.801666,118.388435,141.165298,111.768600,56.099190,15.978532,13.429770,9.619021,12.510762,16.048779,20.792582,11.789268,0.611574,0.076860,0.020661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601446.955000,4612195.550000,3524,5955,84.014893,144.719040,152.752106,145.281021,131.983490,124.487617,122.305801,121.281006,121.214890,123.256218,124.752083,134.892563,150.239700,163.586807,175.661194,185.363647,189.000031,183.396729,168.123993,151.876068,143.636398,140.396729,138.181854,110.487610,89.545464,109.966949,136.917374,116.090919,58.743816,16.311588,12.562002,9.568609,12.587620,17.728945,23.130596,15.115718,1.352896,0.171902,0.019835,0.200827,0.000000,0.000000,0.000000,0.000827,0.000000,0.000000,0.943802,0.000000,0.000000,0.000000 -601449.755000,4612195.550000,3538,5955,83.509926,129.914886,137.303314,127.947945,115.014061,105.559517,105.088440,101.939690,101.675232,102.716537,104.733070,113.551247,130.700012,142.443832,155.047119,165.559509,170.212402,166.931412,155.402496,139.633896,131.319839,129.617371,127.609100,98.823982,78.335548,99.485138,136.303314,120.633896,62.485146,16.338860,11.600845,8.854559,13.814067,22.697538,31.869440,24.002499,1.276864,0.382645,0.134711,0.000000,0.000000,0.000000,0.000000,0.104132,0.000000,0.000000,0.891736,0.000000,1.591736,0.000000 -601453.355000,4612195.550000,3556,5955,91.394226,136.305801,148.355392,139.066132,126.743820,117.578529,115.396713,112.619850,112.611588,114.107452,116.082664,126.429771,143.834732,155.809937,170.528946,181.231415,185.066132,182.206635,167.966965,152.016541,140.975220,141.016541,137.909103,108.148773,86.445465,106.876053,141.421509,120.181831,61.933903,17.804152,12.537210,8.708277,15.154562,19.064482,25.778532,20.585968,1.665295,0.296696,0.271075,0.120662,0.065290,0.000000,0.019008,0.008265,0.000000,0.000000,0.000000,0.000000,1.232232,0.000000 -601460.355000,4612195.550000,3591,5955,101.616539,157.608276,161.071091,152.872742,140.790100,132.525620,131.509094,129.418182,129.914047,132.244629,134.897522,146.938858,165.162003,181.294235,195.203323,207.608276,210.500839,205.525635,187.385132,169.889267,160.310760,156.385132,152.509109,121.484299,100.740509,119.533890,141.459518,111.914062,53.484318,17.999191,13.864482,9.348776,12.407454,15.240513,17.157043,10.838856,2.478518,0.226448,0.535540,0.038017,0.009918,0.000000,0.030579,0.157852,1.364463,0.000000,0.000000,0.000000,0.000000,0.000000 -601462.955000,4612195.550000,3604,5955,119.263649,161.478516,163.990906,156.552917,145.685150,137.023987,134.238861,133.098358,133.271912,137.156219,138.321503,149.552917,167.453720,183.809113,197.858704,208.420685,212.197540,206.354568,188.296707,168.321487,157.280182,154.701675,151.172745,119.999184,98.238861,118.106628,137.528122,106.313240,50.999191,18.323986,13.742994,9.647122,12.206629,15.214894,15.580183,9.620674,0.921492,0.204133,0.037191,0.000000,0.039670,0.000000,0.014050,0.158678,0.000000,1.342975,0.000000,0.000000,0.000000,0.000000 -601466.355000,4612195.550000,3621,5955,119.362823,166.073563,167.908264,157.594223,145.569443,136.875229,134.924805,133.073563,133.362823,136.230591,138.726471,149.875229,168.032242,183.602493,198.197540,210.619034,213.652084,207.619034,189.354568,170.065292,159.767776,155.164459,151.900024,120.040504,99.990921,117.023979,136.354568,105.156212,49.495060,18.367788,13.809112,9.293403,10.327290,13.452910,16.114893,5.844639,0.832235,0.047108,0.076860,0.081818,0.095042,0.000000,0.021488,0.210744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.355000,4612195.550000,3636,5955,114.678535,161.835541,169.843796,160.876862,144.000824,137.397522,136.380981,134.397537,134.587616,137.290100,139.752884,151.025620,169.339661,186.257019,201.339661,213.141312,218.149582,213.595871,193.033875,173.314880,164.579330,160.306610,156.827271,123.901672,102.951263,120.223991,139.042145,105.488449,48.785973,17.147125,14.257044,8.162822,9.772744,14.097538,13.847950,7.014887,0.391737,0.272729,0.033058,0.073554,0.016529,0.129752,0.021488,0.224794,0.000000,0.000000,0.000000,2.082645,0.000000,0.000000 -601473.955000,4612195.550000,3659,5955,119.391747,170.474396,173.441345,165.143814,151.267792,141.796707,139.424820,137.970261,138.482666,141.110764,143.185150,155.176880,173.920685,190.143814,203.747131,217.003326,221.474396,215.854568,195.036377,174.854568,164.623154,160.846298,156.400024,124.904144,103.499184,121.366951,138.201675,105.226456,48.251255,17.802498,14.218202,8.698360,11.222331,12.217372,16.163652,8.295878,0.815705,0.711572,0.251240,0.019008,0.000000,0.025620,0.114050,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,2.299174 -601480.155000,4612195.550000,3690,5955,127.592583,178.212402,174.584305,165.906616,154.881821,145.981003,143.402496,143.336380,143.361160,147.113235,150.171082,163.947937,184.369431,203.022324,221.576019,237.138016,244.352905,240.104965,217.625610,195.187607,186.138031,183.592575,177.881805,143.303314,120.865311,137.385956,154.253723,114.625641,52.493412,19.880184,16.171095,11.197537,13.876879,15.161174,14.861176,10.843816,1.753726,0.595044,0.409918,0.297522,0.261984,0.000000,0.523141,0.324794,0.000000,0.000000,0.000000,0.000000,1.375207,4.366942 -601484.355000,4612195.550000,3711,5955,140.750427,176.833069,176.965302,168.874390,155.477692,145.923981,143.221497,140.824799,140.279343,144.370255,145.576859,158.626450,177.271088,194.370255,210.568604,224.494217,230.138855,222.692566,194.254547,170.163635,158.155380,154.808273,147.981827,114.138855,95.461174,108.543816,120.254562,83.808281,36.692585,17.248779,13.452911,8.366129,10.758696,10.923983,10.804974,5.504971,2.620668,1.644632,0.237192,0.428101,0.121488,0.116530,0.779341,0.257852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.755000,4612195.550000,3728,5955,138.785141,181.371918,179.123978,170.826462,157.743820,148.644638,143.917374,140.752075,139.314072,142.090927,143.165298,152.942169,169.429764,185.074402,195.818192,205.958694,209.173569,198.561996,170.578522,146.603317,135.413239,130.619858,123.363655,93.867783,78.578529,90.090927,95.933899,63.859520,29.818201,13.844646,11.214895,8.019023,8.304973,7.888446,7.180178,3.604967,1.292566,0.869424,0.376862,0.285125,0.595042,0.226447,0.494216,0.376860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.555000,4612195.550000,3757,5955,141.571930,181.952087,180.299194,171.753738,157.191757,148.224823,144.803329,141.778534,142.067795,144.679367,146.142181,156.687622,173.125626,188.902512,200.844650,210.323990,213.307465,205.216553,181.390106,158.935562,149.142181,145.200027,140.654572,112.133896,94.472740,107.571907,118.423149,85.373566,36.629768,15.302498,12.786797,8.107454,9.897536,8.645470,10.404975,4.671084,1.033061,1.190912,0.500003,0.710746,0.119009,0.201655,0.845456,1.169423,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601552.155000,4612195.550000,4050,5955,121.651253,173.775208,167.560333,157.452911,141.064484,129.056213,129.328934,127.452904,126.940514,129.907455,128.204971,140.469437,155.791763,171.750427,185.519028,198.171921,199.411591,189.114075,170.494217,152.238037,141.287628,139.800018,133.890930,103.899185,85.238037,102.395058,121.733902,92.147125,43.469440,16.834728,12.171920,11.418197,11.059521,12.799191,13.469440,6.375216,0.480993,0.247935,0.047934,0.135538,0.000000,0.000000,0.002479,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612195.550000,4064,5955,115.593414,180.816528,173.320663,160.130585,144.246292,131.395050,130.502487,127.634727,127.064476,132.312408,130.155380,141.932236,158.147110,175.320663,188.692566,201.742157,203.163635,193.089264,172.717361,151.684311,141.105789,137.676041,133.709106,102.138855,84.676048,101.676048,117.915718,87.105797,40.841347,15.357870,12.155391,9.362825,8.664476,8.829767,10.648777,4.837200,0.782646,0.325621,0.492563,0.133058,0.000000,0.152894,0.323141,0.564463,1.748760,0.000000,0.000000,0.000000,1.712397,0.000000 -601557.955000,4612195.550000,4079,5955,111.291756,182.771103,172.052094,160.258698,146.316559,134.043823,132.142990,129.762817,128.324814,132.366135,132.010757,142.457047,158.680191,175.779358,188.622330,201.027298,203.804153,192.448776,170.837219,148.729782,139.324814,134.432251,133.300018,102.779350,84.514900,100.985962,114.333069,85.523155,40.828949,15.871919,12.118200,6.424807,9.085965,10.193405,9.502496,3.720672,0.757854,0.593390,0.019835,0.338844,0.125620,0.160332,0.213224,0.541323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601562.755000,4612195.550000,4103,5955,118.674400,175.269455,173.368622,160.013229,144.418213,132.757050,132.277710,129.236389,128.905807,132.376877,132.104156,142.095901,158.302490,175.046310,187.343826,200.566956,202.996704,192.261185,169.228119,147.666138,136.905807,134.112411,130.872742,100.790100,83.343826,98.856216,111.881012,80.963654,39.649609,16.158697,11.897540,7.785139,9.133073,10.523983,8.728113,3.957036,1.188432,0.381819,0.214051,0.140496,0.186777,0.090911,0.752068,0.369422,0.000000,0.000000,1.336364,0.000000,0.000000,0.000000 -601569.155000,4612195.550000,4135,5955,110.323982,177.563629,171.175201,160.505783,145.919022,133.638031,132.009933,130.365311,129.819855,132.927292,133.753738,143.051254,159.596710,176.117355,189.472717,201.613235,204.158691,194.175217,170.596710,148.919022,136.381821,133.133896,129.472748,100.332253,84.084312,99.051254,110.357040,82.034729,37.844654,15.185969,11.770268,5.351254,9.008280,7.710760,9.561174,2.954555,0.787606,0.358678,0.033886,0.129753,0.128926,0.123968,0.623142,0.238017,1.531405,0.000000,1.537190,0.000000,0.000000,0.000000 -601578.755000,4612195.550000,4183,5955,124.276047,170.259521,172.912415,160.226471,144.102493,133.416534,132.879349,129.862823,129.424805,132.862823,132.895874,144.119034,160.317368,176.400024,190.457870,202.036377,205.895889,195.606628,171.325638,148.457870,137.565308,134.623154,131.309097,101.160339,84.094223,99.457863,108.490921,79.730591,38.656219,15.400845,11.937208,8.181006,8.973568,9.213239,9.613239,3.611581,1.447938,0.971077,0.160332,0.222315,0.837191,0.188431,0.392563,0.528100,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601594.155000,4612195.550000,4260,5955,105.252083,167.466965,171.723145,157.359528,144.698364,134.450424,132.690094,131.301666,131.301666,134.012405,134.607452,146.012405,163.268616,180.475204,194.400833,206.690094,209.012405,198.896698,174.971069,151.623962,140.714890,136.276871,133.772751,103.285141,87.557869,100.450432,112.268608,81.822327,40.541348,15.762829,12.161176,6.837204,8.970262,8.095056,11.809106,4.677695,0.885953,0.595042,0.091736,0.317356,0.180992,0.047935,0.512398,0.323141,0.000000,0.000000,0.000000,0.000000,1.267769,2.243802 -601617.955000,4612195.550000,4379,5955,117.999184,161.999176,171.205795,159.445465,145.255371,136.511566,135.445465,134.197525,133.900009,137.544632,138.594223,151.610748,169.891739,186.676865,201.395874,213.949585,216.957855,206.701660,182.602478,158.809097,147.966125,144.552902,141.081818,109.354546,92.379341,105.685127,120.090088,87.511574,43.825642,18.029772,12.825638,11.339685,10.638860,11.197535,12.189272,6.631416,1.288433,0.169422,0.334712,0.429754,0.334711,0.101654,0.650415,0.995869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.755000,4612195.550000,4558,5955,117.110756,167.829773,172.325638,159.457870,146.028122,136.143814,135.267776,132.689270,133.515717,135.664490,138.317368,150.953735,169.540512,185.895889,200.052917,213.449600,216.110764,205.854568,180.102493,158.003326,147.317368,143.433075,140.763657,109.639679,91.061165,106.838028,118.573563,85.309105,43.218201,16.804977,12.796714,9.796708,10.871092,11.181834,13.156216,5.841332,1.358681,0.134712,0.254546,0.019009,0.152067,0.039670,0.660332,0.662811,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.955000,4612195.550000,4669,5955,108.709106,170.180176,175.841324,158.535538,144.064484,134.320679,134.609924,131.742157,132.411591,135.337204,136.419861,149.485977,167.783478,185.700836,198.899185,213.246292,216.279343,204.535538,179.576859,157.519012,146.039688,143.171921,138.981842,107.791748,90.279350,105.684311,117.287621,84.642990,43.519028,15.453738,12.634730,9.915717,9.495060,10.242991,12.159519,4.660339,1.290912,0.285951,0.196695,0.002479,0.033885,0.018182,0.217356,0.228099,0.000000,0.000000,0.000000,1.171901,0.000000,4.391736 -601687.155000,4612195.550000,4725,5955,111.164482,169.073563,175.974380,160.164490,145.908279,136.156219,135.395874,132.933075,134.164474,135.842148,137.271927,149.751266,168.668594,186.230576,201.098343,213.842148,217.023972,203.974380,180.296692,157.900024,147.627289,144.313248,139.445480,109.602501,90.800827,106.404152,118.271912,85.552902,42.891758,16.695059,12.676879,10.982660,9.872744,11.299190,10.970263,7.090920,1.181821,0.311571,0.194216,0.015703,0.192562,0.020661,0.211571,0.315703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.755000,4612195.550000,4748,5955,103.982658,167.734726,172.230591,159.569443,143.900024,134.974396,133.957855,132.759521,131.924805,135.040512,136.387619,148.974396,168.660355,185.577698,200.379364,212.949600,215.900024,204.156219,180.338043,156.561172,145.462006,145.048782,139.536377,109.652077,91.610756,107.156212,117.602493,86.437202,42.610764,16.700020,12.685143,10.613236,8.701670,11.041339,12.341341,4.972736,1.179341,0.730580,0.246282,0.062810,0.003306,0.000000,0.207438,0.452067,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601695.755000,4612195.550000,4768,5955,123.933075,175.924789,177.321487,163.164459,147.594238,136.503311,138.073563,135.470245,135.147949,138.114883,139.040497,152.329773,170.792572,188.999176,202.503311,215.718185,217.900009,204.470245,181.461990,159.214050,147.652084,145.833893,141.445465,110.602493,92.817368,107.032242,118.709930,84.544640,44.742996,19.524811,12.858696,12.239686,11.500018,12.684314,12.897537,6.515713,1.715707,0.248761,0.207438,0.018182,0.062810,0.022314,0.817357,0.516529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.755000,4612195.550000,4793,5955,111.219025,178.781006,176.995880,163.177704,146.706635,133.483490,134.533081,132.847122,132.962830,135.814072,137.491745,149.111588,168.111588,185.045471,199.533081,212.830597,214.979355,203.194229,179.334732,157.111588,145.194229,143.739685,138.590927,107.086792,89.376053,104.871918,115.425636,85.144646,43.723160,16.293407,12.599193,10.612412,10.347125,11.438859,12.685967,6.306621,0.775208,0.732233,0.000000,0.263637,0.000000,0.000000,0.116530,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.755000,4612195.550000,4813,5955,104.129768,178.339676,176.474396,163.325623,146.730576,137.242996,137.077698,134.457870,135.267792,138.011566,138.871078,151.036362,169.730576,187.854553,202.119019,215.920670,218.672729,206.069427,181.986801,160.185120,148.647934,145.457855,140.763641,110.953728,91.895882,106.730591,118.135551,86.028130,42.623161,16.920679,12.796713,10.069437,9.499191,12.904975,13.879355,6.462819,0.833887,0.864464,0.962812,0.026447,0.204959,0.000000,0.084298,0.671076,0.000000,0.000000,0.000000,1.804132,0.000000,0.000000 -601709.555000,4612195.550000,4837,5955,118.106621,187.619034,177.652084,163.858704,147.941345,133.990921,137.569443,134.040497,134.999191,138.883484,138.552917,152.015717,169.676880,188.346298,202.304977,216.057037,217.891754,205.519852,181.866959,158.924820,148.205811,146.751266,141.354568,109.883484,92.172737,106.916542,120.296707,86.255394,43.693409,18.825640,12.850432,13.904977,13.036381,12.675224,12.848777,5.726455,2.058681,0.523142,0.444630,0.425621,0.084298,0.147108,0.541324,0.709919,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601715.355000,4612195.550000,4866,5955,122.953735,179.575226,177.120667,166.269440,149.112411,138.583481,138.608276,137.112411,137.195053,141.153732,141.211578,153.583481,172.244629,191.112396,205.211563,218.542145,221.930573,207.922318,184.426453,161.980179,149.889267,147.798355,145.327286,111.781830,93.881004,108.608276,122.327286,89.988449,45.616550,19.128117,13.211588,15.906628,12.337208,13.114064,16.447124,6.742160,1.627276,0.003306,0.100001,0.390911,0.125621,0.000000,0.441323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612195.550000,4894,5955,119.693398,178.263657,173.544647,160.230591,144.908279,132.676865,132.536377,130.065308,130.982651,134.866959,133.833893,146.800842,165.957870,183.742981,199.445465,213.007446,213.627274,200.742981,178.676880,157.470261,146.453735,143.933075,138.809113,108.230591,89.866951,106.668610,118.503319,85.197533,42.676880,15.429770,12.619028,12.297536,8.852082,10.464478,12.609934,5.898355,1.771077,0.675208,0.491737,0.466117,0.199174,0.470249,0.031405,0.291736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.755000,4612195.550000,4923,5955,110.276878,176.123138,172.155380,161.320663,143.592590,130.881821,130.411575,126.477692,127.733894,132.841324,131.560349,144.328949,162.138016,180.377686,195.063629,210.353729,212.320663,198.543808,177.692566,155.601654,145.700851,142.965317,138.436386,106.559525,88.906631,105.381004,118.522324,83.373573,41.471916,15.695058,12.585142,13.352906,9.343817,12.562827,13.797536,9.909099,4.537193,4.542150,3.479340,4.548762,3.639671,1.266117,0.755373,0.635538,0.819835,0.000000,0.000000,0.472727,0.646281,0.000000 -601729.755000,4612195.550000,4938,5955,125.631424,181.094238,176.763641,163.292572,146.433075,131.937210,134.540512,132.862823,131.854568,138.747131,136.714066,149.681015,169.383469,187.085953,202.201675,215.598343,216.226456,201.813248,179.342148,158.523972,146.259521,143.829773,138.490921,106.995064,89.499191,105.466133,118.317375,85.242996,41.449608,15.695059,12.590103,13.726462,9.123156,9.137207,13.351254,6.004142,1.178515,0.504960,0.130579,0.160331,0.009918,0.000000,0.203306,0.469422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.955000,4612195.550000,4959,5955,131.701675,195.544647,179.304977,168.371094,150.007462,135.544632,137.263657,135.172745,136.065292,141.949600,140.007462,152.230591,170.139694,189.561172,203.759506,218.379349,219.090088,204.709930,182.693405,161.395889,149.445480,147.825623,141.900024,109.404144,92.271912,110.057037,122.181000,87.759514,45.387623,17.542995,12.900020,14.018199,9.700842,10.876877,13.242991,8.828111,1.114879,0.347935,0.323141,0.041323,0.297521,0.057852,0.402480,0.000000,0.000000,3.204959,2.757025,0.000000,0.000000,0.000000 -601740.555000,4612195.550000,4992,5955,137.288452,185.096710,179.220688,171.085968,149.773560,135.360352,134.647949,132.766129,134.377701,139.964493,137.005798,148.493408,167.964493,186.226471,202.715714,216.988449,216.765305,203.938858,182.823151,162.566956,150.806625,148.591751,146.145462,111.576874,95.196709,114.056213,123.897545,87.667786,46.004978,18.702496,13.285970,18.357040,11.048778,13.631421,16.774395,13.111583,2.828103,1.566944,1.299176,1.290084,1.217357,0.246281,0.204133,0.166942,1.357025,1.210744,0.000000,0.000000,0.000000,0.000000 -601746.155000,4612195.550000,5020,5955,142.350433,194.342163,178.441345,167.920685,149.598373,137.689270,139.846298,136.391754,137.904144,144.573578,139.722336,153.127289,170.557037,189.945480,206.548767,219.895874,220.127274,203.457870,183.499191,162.267792,150.887619,148.284317,142.854568,110.251251,93.036385,110.664474,122.813232,88.639679,44.143822,17.870266,12.986795,15.828942,10.811585,12.797538,13.171090,8.869433,1.528929,0.316530,0.314051,0.032232,0.019008,0.017356,0.094215,0.109091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601749.155000,4612195.550000,5035,5955,100.297531,170.157059,174.570282,159.264496,145.198380,135.223160,134.545471,132.413239,131.917358,133.818192,136.975235,148.173584,167.867798,184.975235,197.876068,210.876068,213.057877,202.694244,179.330612,157.157059,146.652924,143.347137,137.727310,106.933891,87.661171,104.694221,119.471085,88.818192,44.578537,18.029772,12.520681,11.478530,12.534727,11.721506,12.952909,7.213234,0.719836,0.277687,0.139670,0.066116,0.025620,0.000000,0.174381,0.061984,2.400000,0.000000,1.317355,0.000000,0.000000,0.000000 -601753.355000,4612195.550000,5056,5955,106.163651,160.477707,172.171906,158.609924,142.229782,134.163635,132.866119,130.403305,130.180176,132.642975,134.609924,146.676056,166.312408,182.353729,196.634720,208.155396,211.047958,200.419846,177.766953,155.957047,143.998367,142.188446,135.618195,105.973557,86.593391,102.254555,118.171906,87.196701,42.742176,16.461174,12.328944,10.355386,10.357040,10.849603,10.215717,6.757862,0.319835,0.098348,0.478513,0.016529,0.011570,0.000000,0.017356,0.235538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.955000,4612195.550000,5089,5955,104.622330,165.000854,172.810760,157.942993,144.240524,134.529770,134.240509,132.042160,131.066956,132.496704,136.612427,147.868622,167.149597,183.529770,197.852097,209.182663,211.670258,201.513229,178.207458,157.025635,145.719864,143.405807,135.736374,105.976044,87.414062,105.364479,118.868607,88.314888,44.149605,16.809109,12.339687,10.172744,9.912413,13.361175,11.305802,4.796701,1.460333,0.222314,0.163637,0.230579,0.000000,0.000000,0.000000,0.155373,0.000000,0.000000,0.000000,0.000000,0.000000,3.099174 -601770.755000,4612195.550000,5143,5955,100.727287,162.826462,172.603317,158.495880,144.363647,134.438034,133.297531,131.123978,132.074402,133.297531,136.041336,147.347122,166.801666,183.925629,197.338852,209.347122,212.140518,200.966965,179.495880,156.553741,145.644638,141.504150,136.000015,105.867783,88.190102,104.975220,118.157043,86.115715,43.611591,17.159521,12.363655,10.019848,9.460347,10.885966,11.392578,6.348770,0.785126,0.419009,0.003306,0.009091,0.014050,0.000000,0.142976,0.296695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601788.555000,4612195.550000,5232,5955,99.559532,167.080170,170.790924,156.733063,142.245468,132.700012,131.584320,130.270264,130.228943,133.369446,134.799194,146.898376,166.187607,183.410751,198.501663,209.939682,212.377701,201.981003,179.385956,157.278519,144.600830,140.807449,136.245468,105.848785,86.642166,103.766136,118.262001,87.262001,42.766136,14.766131,12.385969,7.654558,9.480182,10.340511,11.980183,6.234720,1.010745,0.147108,0.423142,0.005785,0.000000,0.000000,0.070248,0.267769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.955000,4612195.550000,5374,5955,106.738037,171.241318,167.447922,157.257843,142.861176,134.092575,132.257858,129.869431,131.249603,133.514053,135.753723,147.505798,166.489243,184.233063,198.117355,210.133911,212.679367,202.720657,180.629745,157.555359,145.745468,141.720688,135.836380,106.464470,87.142159,104.621498,118.919022,89.034721,43.200016,16.251257,12.348778,6.903319,9.928941,10.406628,11.558693,6.002487,0.608266,0.084298,0.225620,0.311571,0.004959,0.000000,0.000000,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.355000,4612195.550000,5476,5955,117.742172,170.717361,171.775208,158.080994,143.320663,132.337219,132.651260,131.006638,129.667786,133.221497,134.180176,146.370255,165.849594,183.560333,198.271088,210.337219,213.428116,203.279358,180.833069,158.874390,146.204971,141.932236,135.436371,106.750427,88.039696,104.229767,117.940514,88.733910,42.155392,16.318199,12.312416,7.534725,9.176049,11.348778,11.881006,4.604966,1.098349,0.277687,0.147935,0.002479,0.004959,0.202479,0.032232,0.590910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.155000,4612195.550000,5545,5955,97.797539,170.483490,168.855392,154.111588,141.326462,128.706635,129.252075,127.880173,127.590919,128.070251,130.871902,143.615723,162.252075,178.103302,191.880188,203.359528,205.615723,195.351257,171.185974,151.070267,139.756210,137.086792,130.954559,102.136383,83.078529,100.417374,113.921501,82.334724,39.599194,14.782662,11.904977,9.936378,9.721504,11.036379,11.300843,5.938852,0.349587,0.347935,0.240497,0.023141,0.001653,0.085951,0.342150,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601865.555000,4612195.550000,5617,5955,103.045471,173.185974,167.549606,156.789276,139.359528,129.962830,129.491745,127.243820,126.929771,128.789276,131.202499,141.880188,161.946304,178.574402,191.169434,204.293411,205.830582,194.508286,171.921509,150.128113,139.128113,135.987625,129.772751,100.533073,82.268608,96.640503,112.334724,80.516548,40.119854,14.497538,11.797540,7.980178,9.480180,9.535552,9.414888,4.781826,0.584299,0.476861,0.058678,0.000827,0.000000,0.000000,0.509918,0.535538,0.000000,0.000000,0.000000,3.480992,0.000000,0.000000 -601883.555000,4612195.550000,5707,5955,110.728943,177.067780,171.042984,158.828110,141.290924,128.629761,128.671082,127.431419,127.133896,131.786789,129.819839,141.778519,160.266129,178.927277,193.018188,206.398361,206.819839,194.844635,171.869431,151.447937,139.547119,135.076050,129.472733,100.233078,82.381836,98.638031,112.266136,81.762001,38.092583,15.734729,11.770267,11.109933,8.508282,9.584311,13.295060,6.139679,1.016531,0.185951,0.226447,0.008265,0.000000,0.000000,0.018182,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,3.185124 -601891.755000,4612195.550000,5748,5955,120.285957,185.120651,170.550415,158.723969,142.732239,130.211578,130.269424,127.641335,128.277695,133.550430,130.608276,142.666122,160.137192,179.128922,194.285965,207.690903,207.219833,193.302490,172.170242,150.550430,139.897537,135.517365,131.145462,100.740517,83.294235,98.409927,111.071091,80.269440,38.500847,13.363653,11.922334,12.019850,8.207454,8.677702,10.056214,4.559513,0.710745,0.267769,0.180166,0.014050,0.013223,0.000000,0.117356,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601899.155000,4612195.550000,5785,5955,116.852913,191.869446,172.638046,161.357056,142.323990,131.332245,131.266129,129.208282,129.018204,134.910751,132.571915,144.282669,161.894241,180.447952,195.985153,207.844650,209.753738,195.332260,171.753738,152.803329,141.299194,137.943832,132.290924,102.109108,85.580185,99.728943,109.662827,77.638031,37.175224,15.481834,12.026465,11.131419,7.580179,9.333073,11.714065,5.771911,0.551241,0.298348,0.115703,0.000000,0.084298,0.000000,0.297521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601909.155000,4612195.550000,5835,5955,116.111588,180.417374,169.194229,158.516541,140.219025,128.954559,128.938034,127.004150,128.293411,133.764481,131.739685,143.367783,159.962830,178.880188,193.012405,206.731415,208.078522,193.971085,172.045471,152.004150,141.169434,138.384308,133.954559,103.384315,86.681824,102.070267,109.566124,77.723152,38.615719,15.086795,12.177705,13.290098,9.360346,11.202496,10.266956,5.607448,0.924795,0.085124,0.118182,0.123141,0.027273,0.244628,0.180993,0.198347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601924.755000,4612195.550000,5913,5955,91.090103,147.792587,151.982666,138.643799,124.668602,115.776047,116.908279,114.594223,115.280174,117.238853,121.040504,132.288437,149.933075,165.387619,180.073578,193.296707,195.379364,185.280182,162.338043,142.742981,133.742981,131.619019,126.900002,99.247124,82.197540,96.156219,106.230591,77.445473,38.544647,13.957044,11.536383,9.081008,9.667785,11.367785,12.408282,6.095051,1.392565,0.185124,0.133885,0.000000,0.201654,0.000000,0.393389,0.140496,1.506612,1.939669,0.000000,0.000000,3.113223,0.000000 -601938.755000,4612195.550000,5983,5955,102.509941,144.244644,147.186783,134.905792,121.228111,112.401665,110.641335,109.401665,110.641335,113.277702,116.170258,125.930588,144.038025,161.327271,175.236374,186.748779,189.600006,180.038025,158.120651,138.666122,129.533890,127.013237,121.145470,94.748772,77.178535,92.426468,104.996704,76.971924,37.707455,13.762001,11.013242,10.575222,9.581834,10.350430,12.166959,7.552077,1.320664,0.514877,0.264463,0.207439,0.003306,0.747108,0.051240,0.409092,1.427273,4.287604,2.300827,1.133884,0.000000,0.000000 -601944.755000,4612195.550000,6013,5955,93.053726,134.886795,140.688431,127.886795,112.713234,104.911583,102.787613,102.283478,102.142982,104.771088,107.101669,117.349602,135.142990,150.647110,163.506622,174.176041,176.390915,167.795868,148.481827,129.473572,120.556213,117.597534,113.754562,86.019020,69.275223,86.713226,100.738022,75.994232,36.275230,11.985142,10.341341,7.640510,9.388446,9.071917,11.948777,6.795876,1.517357,0.361984,0.364463,0.071901,0.207439,0.491736,0.436364,0.386778,1.358678,0.000000,0.000000,1.053719,2.943802,0.000000 -601243.155000,4612185.550000,2505,6005,232.491745,231.698364,230.781006,224.838852,222.177704,226.309937,235.425629,238.673569,244.615723,255.342987,265.706635,286.904999,311.698364,332.714905,349.202515,359.880188,361.293427,348.904999,305.053741,269.714905,256.252075,249.599182,237.227295,200.508286,176.417358,182.152893,181.144623,131.913239,60.830605,25.045473,21.566133,19.676052,18.764481,19.516546,24.209934,17.237206,5.062817,1.535541,1.918186,1.229754,0.507441,0.771075,0.276860,1.251242,5.604959,1.282645,3.446281,3.291736,4.031405,0.000000 -601248.355000,4612185.550000,2531,6005,216.853729,230.795868,234.275208,230.109924,228.820663,233.200836,242.787613,247.159515,253.779343,264.696716,277.704987,296.242188,317.382690,335.341370,350.109955,360.333099,359.291779,339.820709,289.200867,251.490082,236.870255,229.895050,214.481827,180.291748,161.911575,161.738022,148.076859,101.250427,45.845474,21.622334,19.498365,15.440513,16.677704,18.244644,15.634729,12.100016,4.148770,3.211578,3.602485,1.425622,0.481819,0.094216,0.621489,2.761987,0.000000,1.259504,0.000000,0.000000,2.682645,0.000000 -601256.755000,4612185.550000,2573,6005,221.484314,233.277695,233.327286,232.244644,230.517365,235.517365,246.054565,251.038025,257.459503,267.624817,279.442993,294.740509,314.963654,332.393402,345.327271,352.757050,352.228119,332.657867,279.765289,242.294235,228.558685,219.038025,205.600006,171.757034,152.699188,152.682663,137.847946,93.922325,42.740517,22.261175,18.690929,15.233078,15.278530,16.738861,15.535556,9.165304,5.244640,1.828931,0.811573,1.186780,0.209092,0.035538,1.171076,1.933887,1.347108,1.333058,0.000000,2.340496,1.353719,0.000000 -601269.355000,4612185.550000,2636,6005,216.086792,236.731415,238.260345,235.475220,231.557861,237.119858,248.070267,252.483490,258.690094,269.549622,281.987640,298.913269,319.078522,337.524780,351.690094,361.235535,361.243805,345.623962,293.409119,255.045486,240.938034,234.276871,221.500015,186.508286,164.301666,165.871918,156.376053,106.194229,47.169437,22.227293,20.136383,15.347127,16.961176,16.342993,17.822334,7.023981,3.866125,2.649594,1.257028,0.730580,1.005787,0.320662,0.568596,0.434712,2.737190,0.000000,0.000000,1.228926,0.000000,4.309917 -601288.155000,4612185.550000,2730,6005,216.930588,237.971909,233.872742,231.294235,229.484314,234.186783,242.269440,246.914062,252.393402,262.013245,272.897522,289.112427,307.839722,326.393402,338.401672,347.657867,348.699188,333.285950,283.831451,248.170273,237.426453,228.723984,219.418198,186.376877,165.591751,165.021500,157.186783,109.219849,48.484318,24.252914,19.947126,16.980185,19.257044,16.784315,18.088449,14.474398,4.976868,3.524801,1.987611,1.232234,1.237192,1.457028,1.594218,2.312399,1.498347,0.000000,0.000000,0.000000,0.000000,2.160331 -601303.755000,4612185.550000,2808,6005,182.216537,198.604965,204.084290,201.323975,198.381821,201.373566,206.390076,210.067764,211.390076,220.282639,230.018173,244.811569,261.646301,277.497559,292.381836,303.844666,307.596710,305.125641,279.712433,257.224792,248.952072,244.067764,239.018173,211.026443,192.009933,201.290924,205.993378,168.001663,87.737206,28.960350,21.728945,17.926466,24.398367,32.894234,43.952084,34.466961,2.867776,0.336365,0.404960,0.309918,0.041323,0.000000,0.000000,0.049587,2.441323,0.000000,1.060331,0.000000,1.209091,0.000000 -601312.955000,4612185.550000,2854,6005,184.727310,187.148788,189.247971,185.041351,182.024826,184.438049,191.247971,193.082657,196.685974,207.462830,217.371918,235.702484,256.991760,277.553741,296.057892,309.628143,315.677704,314.165314,292.157043,270.487640,261.636383,258.743805,251.636383,222.421494,200.413239,213.487625,230.396698,193.330597,104.603317,28.520679,22.876051,16.701672,27.241341,40.636383,55.966957,43.636387,4.340505,0.087604,0.253719,0.000000,0.000000,0.000000,0.000000,0.000000,1.073554,0.000000,2.315703,0.620661,0.000000,3.919008 -601318.555000,4612185.550000,2882,6005,211.004150,213.144638,207.351257,204.896713,199.309937,198.210754,201.037201,201.301666,203.450424,210.747955,217.359528,230.185974,245.524811,259.657043,271.442139,280.260345,282.747925,276.557861,250.070267,225.623978,215.202499,209.425629,202.318192,174.111588,155.913239,163.921509,171.566132,137.425629,67.136383,23.149605,18.392580,16.943819,18.190926,21.847124,31.442169,22.471918,4.026453,1.828931,1.070251,0.727274,0.335538,0.287604,0.363637,0.008265,4.345455,2.452893,1.044628,3.865290,2.228926,6.262810 -601353.955000,4612185.550000,3059,6005,159.761993,178.654572,170.836395,160.852921,144.100830,136.439697,137.092590,136.447952,135.960342,139.778534,144.183487,158.960342,179.952087,198.034714,213.323975,227.390076,231.067764,220.919022,199.621490,178.530609,165.795074,163.588440,157.200012,124.869431,103.266129,119.224800,137.166962,102.828110,48.563656,17.438860,14.290927,12.422329,12.214066,14.093405,15.244645,8.742159,1.443805,0.462812,0.263638,0.565291,0.020661,0.205785,0.000000,0.055373,1.183471,3.423967,0.000000,0.971901,0.000000,4.864463 -601359.155000,4612185.550000,3085,6005,139.185944,174.392563,167.103302,156.483475,142.673569,134.500015,133.491745,131.830597,132.830597,135.376053,138.781006,153.227280,175.607452,192.665283,207.466949,221.045456,223.764465,217.417358,196.987610,176.202499,163.045456,161.425613,156.227280,121.020676,98.673569,118.698364,152.061981,120.880180,56.781017,17.818199,14.202497,13.897536,12.774398,15.823985,18.789274,9.313235,0.824797,0.414878,0.017356,0.085951,0.000000,0.000000,0.000000,0.008265,1.233058,0.000000,1.571075,0.000000,2.257852,6.488430 -601367.555000,4612185.550000,3127,6005,137.007462,180.941345,168.486801,158.974396,144.817368,133.891754,135.181000,132.329758,132.842163,135.271912,137.462006,151.685150,170.321503,188.668610,200.569443,213.437210,215.263657,209.040512,189.982666,169.627289,157.916550,155.891754,150.627289,118.428940,96.139687,114.817368,148.032257,119.676872,56.428947,16.620680,13.693407,11.985966,11.666958,15.431421,20.384317,12.764475,0.947937,0.163637,0.223141,0.085124,0.000000,0.000000,0.000000,0.042976,2.587604,0.000000,0.000000,0.846281,0.000000,0.000000 -601378.155000,4612185.550000,3180,6005,138.456207,181.695862,172.150421,162.505798,149.414886,139.406616,140.084305,138.109100,139.638031,142.737198,144.018188,156.811584,174.654556,191.290909,204.125610,215.323959,217.596695,211.150406,192.687592,171.976868,162.076050,161.613235,158.927277,128.447937,106.266121,124.365288,152.497528,121.233063,58.125637,20.871920,14.447951,14.562000,14.081009,18.628944,22.747950,12.547947,1.138846,0.171075,0.173555,0.101653,0.010744,0.000000,0.000000,0.000000,0.000000,1.268595,0.000000,0.993389,0.000000,0.000000 -601383.755000,4612185.550000,3208,6005,139.445480,183.255371,171.139679,162.957855,147.709930,137.387604,137.478516,135.569427,136.280182,139.982666,140.090103,153.321503,170.610733,187.800827,200.073563,212.114868,212.123123,206.139694,187.610764,167.619019,157.313248,155.395889,150.445480,119.676872,100.214058,116.445465,141.726471,113.090096,52.643822,16.813242,13.676879,12.090098,11.881836,13.746300,19.908283,9.012409,0.340497,0.000000,0.215703,0.000000,0.075207,0.000000,0.033058,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601387.955000,4612185.550000,3229,6005,123.662819,178.439682,166.414871,157.133896,143.753723,132.076050,132.852905,130.266129,130.216537,134.390091,133.315720,145.621490,161.183472,177.662827,188.968597,200.125626,202.117371,195.952072,182.315720,164.249573,154.200012,154.406616,153.109100,121.563644,100.447945,119.588440,154.720673,128.604965,62.844650,18.867788,13.919027,14.785968,13.457043,21.138861,27.233078,18.226461,0.580994,0.329753,0.113224,0.147934,0.054546,0.000000,0.000000,0.004959,1.352066,0.000000,0.000000,1.077686,0.000000,0.000000 -601391.955000,4612185.550000,3249,6005,109.470261,151.433884,138.871902,129.863647,113.177696,103.037209,100.276878,98.896713,97.466957,100.309937,97.433899,106.177696,120.433891,133.425629,143.739670,154.334717,155.384293,150.219009,140.814056,128.268600,120.078522,119.756203,118.227280,92.078529,71.152916,93.442169,139.557846,127.285133,69.053741,13.176878,10.747953,13.618199,12.866959,22.681009,35.863659,23.119026,0.243803,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601395.955000,4612185.550000,3269,6005,94.571091,135.137207,111.971916,107.310760,88.038040,76.186798,76.087616,71.707451,70.137199,73.847954,69.095879,76.690926,89.087616,101.426460,111.690926,122.310760,123.038033,118.798363,113.509102,101.310760,94.294228,92.955391,93.963646,69.856209,49.013245,74.616547,123.723976,120.674393,70.161995,14.005802,8.542167,18.759523,17.123985,30.459522,48.352089,40.062832,1.295045,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601399.955000,4612185.550000,3289,6005,105.971916,146.684311,128.072739,118.659515,103.370262,90.081009,90.295883,88.056221,85.593407,91.667786,86.766960,97.923981,110.246292,124.626457,135.824814,147.188431,149.700836,145.204971,138.485962,127.163651,119.047951,119.857864,120.981834,93.824806,72.461182,98.105804,140.328934,127.890923,70.568611,14.555389,10.998365,19.281010,18.068613,32.064480,48.593410,40.040516,1.236367,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.772727,0.000000,0.000000 -601404.955000,4612185.550000,3314,6005,133.502487,172.031433,152.733902,145.725647,131.188446,117.684311,117.915718,115.072739,116.097534,121.213234,116.552078,128.510757,143.494232,158.791748,171.965302,183.072739,184.634720,178.056198,167.841324,152.535553,142.733902,142.436386,141.254562,110.320679,89.477699,112.081009,150.271103,128.717377,67.039688,19.046301,12.841342,17.751259,15.704150,24.019854,35.254562,24.562828,1.274384,0.038017,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.952066,0.000000,2.209918 -601412.555000,4612185.550000,3352,6005,129.557037,166.540512,163.490921,154.507462,139.292587,132.755386,131.416534,128.557037,129.441330,131.730591,133.647949,144.813248,160.788452,176.267792,188.350433,197.953735,200.780182,195.763657,178.945480,161.168610,151.540512,151.499191,147.490921,117.838028,96.639679,115.705795,138.168610,111.342163,54.499191,18.315722,13.408284,10.866956,10.921506,16.475225,20.342993,12.463653,1.085954,0.571076,0.086777,0.255373,0.043802,0.000000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601437.955000,4612185.550000,3479,6005,80.428116,137.659515,139.948761,132.576874,119.444641,111.725632,110.618195,108.766960,108.039680,108.981834,111.130592,120.419846,135.138855,147.279343,156.874390,166.642975,169.163635,165.700836,153.469421,139.824799,131.246292,129.593399,127.890923,100.783485,83.552078,100.841339,133.882660,117.229767,62.791752,17.963655,11.626465,10.372743,14.487620,21.956219,33.257870,22.542992,1.020665,0.106612,0.238017,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,0.000000,0.000000,3.049587,0.000000,0.000000 -601441.155000,4612185.550000,3495,6005,45.234722,89.159515,93.774399,83.146301,71.085968,62.790924,59.812412,56.819843,55.371914,54.818195,55.004971,60.251255,68.899193,76.368607,84.427292,92.361168,94.111588,92.723976,85.555389,75.865311,69.348770,67.550423,66.327293,48.784309,36.289265,50.960342,91.869431,94.093391,53.870266,10.331420,6.029768,7.160343,12.163651,26.192583,39.795887,33.766960,1.962814,0.153719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.955000,4612185.550000,3624,6005,127.511581,171.561157,176.627274,164.304977,151.974396,143.197540,139.883484,137.321487,137.214050,140.015717,142.073578,155.205811,175.015701,191.495056,208.833908,224.304977,229.304977,227.536377,206.850433,186.701675,175.619019,174.544632,168.172729,132.090088,109.205795,129.519852,157.395889,124.271912,57.850433,19.205805,15.288449,10.619850,12.661175,17.428946,18.125637,9.785138,1.652071,0.357852,0.228100,0.000000,0.000000,0.044629,0.214877,0.268595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601470.155000,4612185.550000,3640,6005,108.207458,166.075211,175.480179,165.108261,153.926468,143.124817,142.124817,138.248795,138.934738,143.257050,144.868622,158.744644,177.843811,194.381012,210.761169,226.703323,233.108276,231.926453,212.331421,192.331421,182.141342,179.190918,175.736374,141.951263,121.339691,140.827301,166.504959,134.356216,62.860348,19.670267,15.976053,10.352081,13.920678,18.157869,25.647125,13.351254,1.731409,0.714051,0.191736,0.255374,0.000000,0.000000,0.079339,0.466116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601473.755000,4612185.550000,3658,6005,111.628113,167.752060,173.297516,163.876038,150.991730,142.933884,140.892563,140.454544,141.272720,144.421494,149.190079,163.000000,182.661163,202.280991,219.677689,235.925613,243.396698,242.487610,224.966949,205.396698,196.066116,194.041321,188.909088,156.942154,132.504135,153.090912,177.157028,140.842972,69.727287,21.776880,17.173574,9.866128,13.851256,19.356216,29.054562,15.615718,1.010749,0.216530,0.001653,0.091736,0.147108,0.000000,0.000000,0.227273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.755000,4612185.550000,3673,6005,141.916550,180.809082,180.858658,174.280151,161.974380,153.742981,152.131409,151.189255,150.709915,155.742981,159.453720,176.032211,198.949570,219.304947,241.280167,260.106628,271.057037,266.999207,242.536362,220.288422,211.470230,206.032211,200.081802,163.222321,137.362808,155.238846,173.321472,129.875214,59.032249,22.156216,18.189276,12.237206,16.212416,16.940514,20.301674,11.995883,3.865298,1.440499,0.866119,0.318183,0.108265,0.045455,0.479339,0.231405,1.500000,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.355000,4612185.550000,3691,6005,141.328110,181.815689,183.286774,172.518173,158.071899,148.733047,142.923141,136.757874,134.848785,135.352905,134.220673,142.840500,157.096695,170.923141,181.857025,191.625610,194.220657,181.642136,152.567764,127.443817,115.567787,109.047127,102.427292,74.419037,62.956215,73.204147,79.295052,53.352909,22.749605,13.755388,9.311589,7.574393,8.661173,7.189269,6.276044,3.093395,1.295046,0.024794,0.707440,0.737192,0.000000,0.332233,0.390083,0.867769,0.000000,0.000000,1.380165,0.000000,0.000000,0.000000 -601483.555000,4612185.550000,3707,6005,141.938858,183.847946,179.360336,167.971909,157.162003,145.120667,140.228119,134.657867,132.814896,133.004974,131.583481,140.558685,154.095886,166.872742,178.162003,188.467789,189.723984,180.228119,152.790100,129.038025,117.310760,111.418198,106.145470,76.707451,64.269447,76.616539,81.013237,55.418205,24.378532,12.077704,9.649605,7.252905,6.136378,5.314887,5.161993,2.576866,2.113229,0.936367,0.666944,0.132232,0.436364,0.166116,0.834713,0.363637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.555000,4612185.550000,3727,6005,122.125641,146.166946,147.975204,139.672745,124.780174,116.133904,110.206627,108.059517,107.133896,107.993401,109.125633,117.332253,129.712402,141.412415,151.786789,161.480988,165.638016,161.720657,147.803314,132.456207,124.959518,123.091751,121.318199,98.954559,84.961182,95.983490,117.232246,101.348770,48.133907,13.545469,11.028944,7.126458,13.204150,17.031424,25.510763,17.581009,3.204138,1.392566,0.128100,0.309918,0.088430,0.000000,0.685125,1.154547,0.000000,0.374380,0.000000,0.000000,0.000000,0.000000 -601537.155000,4612185.550000,3975,6005,80.214890,132.455383,129.893402,119.414062,105.860344,93.595879,92.711586,90.017365,88.819023,88.620674,87.389267,96.810760,110.405800,121.686790,130.306625,140.728119,142.562820,136.141342,126.901665,115.852081,106.091751,105.124809,102.190926,75.075218,55.810764,78.876869,123.281830,119.579353,62.835560,13.342994,9.290102,10.504147,13.454561,23.362001,35.223988,21.064480,0.386778,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601540.155000,4612185.550000,3990,6005,104.118195,160.003311,149.771912,141.482666,125.499184,114.846291,115.094223,111.358688,111.449600,114.003319,113.110756,125.441330,141.689270,156.540497,169.276047,179.606613,181.912399,173.978516,160.507446,144.995056,133.788452,132.672745,131.036377,100.838036,79.714066,100.846298,140.970261,120.557037,58.457870,17.766958,11.912416,10.187617,11.352908,19.690100,26.074396,13.956211,0.445456,0.009918,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.555000,4612185.550000,4007,6005,116.199188,171.769440,160.521500,151.852081,136.133072,124.182655,126.100014,122.670258,122.430588,126.744644,125.496704,138.794235,155.777695,173.347946,186.488449,198.802490,199.414062,189.777695,174.645462,158.414062,146.769440,143.323151,140.736374,109.190926,89.984314,108.620674,138.257034,110.645470,51.810760,15.995886,12.794232,11.666958,11.693406,14.772745,18.418200,8.014061,1.741326,0.000000,0.067769,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601549.155000,4612185.550000,4035,6005,107.188446,173.618210,167.097549,155.386795,139.791763,127.618187,126.998352,125.915710,123.766945,128.651245,127.188438,138.089279,153.932251,171.808289,184.651260,197.519028,197.072754,184.841339,166.114075,145.345474,135.519012,132.890915,132.527283,101.609924,83.750420,101.279343,124.378517,97.196701,44.089275,14.886794,12.047953,6.079351,10.212412,8.581832,9.578528,7.095053,0.920663,0.000000,0.062811,0.085125,0.057025,0.025620,0.333059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601553.155000,4612185.550000,4055,6005,107.427299,172.857040,168.700012,156.766144,141.361176,129.906616,127.947945,125.749603,125.154564,127.476868,129.154556,139.419037,155.832245,172.741333,185.228943,196.699997,198.485123,186.807434,166.931412,146.295074,134.848770,132.402496,131.790924,100.592583,82.898361,99.799194,118.369438,92.187622,43.815720,16.679359,11.981010,6.442162,9.400015,9.810759,11.058695,2.993398,1.392565,0.308265,0.155373,0.143802,0.062810,0.059505,0.638844,0.692563,1.476860,0.000000,0.000000,0.000000,0.000000,0.000000 -601559.355000,4612185.550000,4086,6005,107.042160,171.133072,168.447098,156.290085,140.389252,129.488449,128.777695,126.050415,125.992569,129.645462,129.843811,139.918182,157.339661,173.678528,186.364456,199.232224,200.678513,190.695038,169.025620,147.405777,135.819016,133.025635,130.827271,100.025635,82.620674,99.521500,116.761162,87.372742,42.331429,15.626466,11.893406,6.915716,7.696709,8.185964,9.446297,3.695876,0.947937,0.180166,0.224794,0.071901,0.342976,0.007438,0.548762,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601569.155000,4612185.550000,4135,6005,107.001671,161.307465,164.745483,154.877716,140.910767,128.985138,128.216553,125.836380,125.679359,129.166962,129.613235,141.183502,158.100845,175.282669,188.613251,200.770279,204.018204,192.753738,171.489288,149.852921,136.679367,133.447952,130.745468,100.266136,82.588448,99.869438,113.249603,84.100845,41.737209,14.904978,11.885970,6.063650,8.686791,8.986790,8.454560,4.307449,0.430580,0.129753,0.093389,0.209918,0.514051,0.033885,0.306613,0.070248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601583.755000,4612185.550000,4208,6005,107.045471,165.053741,168.483490,155.888443,142.830597,132.938019,132.392563,128.747955,129.053741,132.698349,133.838852,145.086792,162.929764,179.342987,193.500015,207.061996,209.954559,198.764481,176.260345,152.979355,142.185974,138.400848,134.500015,104.409088,86.772743,103.061981,115.400833,84.888443,43.342995,16.228943,12.227290,7.745468,9.633900,9.407452,10.933073,5.101664,1.337193,0.202480,0.542977,0.000000,0.504960,0.021488,0.550415,1.072729,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.355000,4612185.550000,4316,6005,94.409927,165.137207,169.963654,156.864471,143.633072,134.699188,133.467789,131.591751,132.517365,134.674393,137.633072,149.740509,167.963654,183.790100,199.542160,212.310760,215.195053,204.608276,181.748779,158.285965,147.426453,144.071091,139.327286,109.798363,90.988441,106.459518,120.467781,87.525635,44.897541,16.709936,12.666135,8.390097,10.255387,11.643818,12.728941,5.913232,0.499175,0.568597,0.586778,0.028100,0.277687,0.035538,0.161984,0.483472,0.000000,3.112397,0.000000,0.000000,2.781818,0.000000 -601639.755000,4612185.550000,4488,6005,98.026466,164.836395,170.431427,158.216537,143.092575,134.241333,134.390091,131.704147,132.828110,134.811584,137.571915,149.051254,168.249619,186.307449,199.861160,213.695877,216.646286,205.786789,181.530609,158.563644,147.175217,144.018188,140.381821,109.282654,90.935555,106.968605,117.580185,85.323982,43.439690,16.471092,12.762002,8.828115,9.623158,10.076050,12.137206,5.471910,0.838846,0.190083,0.063637,0.011571,0.369422,0.000000,0.378514,0.614878,1.361157,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.755000,4612185.550000,4618,6005,95.400017,167.523972,174.069427,157.416534,143.598373,135.259521,134.515717,131.821503,132.854568,134.573578,136.978531,148.813248,167.019836,184.375214,199.052902,212.276031,215.358688,205.077682,180.573563,157.647934,145.755386,142.606628,139.218201,108.507454,90.738861,106.325638,118.267792,85.168617,42.763657,17.844646,12.656218,10.342163,8.630593,10.596710,13.266131,4.789264,0.809093,0.301654,0.606613,0.047935,0.137191,0.000000,0.330580,0.566943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.355000,4612185.550000,4681,6005,105.361176,168.737213,169.447952,158.142181,142.133911,132.109100,133.844635,130.571915,130.968597,135.150421,135.638031,148.629776,166.720688,184.910767,199.109116,213.166962,216.142181,202.968628,178.638046,157.497543,145.877716,144.398376,138.927292,107.431412,90.960350,106.100838,116.869431,84.340515,41.968613,14.831422,12.629772,7.671915,8.572743,10.534728,13.138032,5.574388,1.222317,0.571076,0.146281,0.004959,0.124794,0.000000,0.485952,0.271902,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601684.555000,4612185.550000,4712,6005,113.752907,172.471893,174.967758,160.166107,144.604141,134.471909,135.744644,133.050430,133.389267,136.133072,137.463654,149.604126,168.232224,186.389252,200.190903,214.447098,217.529755,204.331406,181.504959,158.430573,148.091736,145.157852,140.009109,108.827286,90.802490,107.670258,118.174393,86.471916,43.637211,18.294233,12.728117,11.843817,10.223158,11.738860,12.403321,5.019844,1.215705,0.580166,0.271901,0.340496,0.479340,0.000000,0.247109,0.670249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612185.550000,4745,6005,124.033897,170.893402,177.397537,160.926437,146.612411,135.695053,136.298355,134.314896,134.810760,138.414062,140.323151,152.480179,171.719833,190.281830,202.174393,215.323151,218.430588,205.761169,180.463654,157.604126,146.678528,144.455383,139.009109,107.090103,89.222336,106.990929,118.496712,87.670258,43.661999,16.795059,12.637208,11.332245,11.561999,13.421504,15.271917,8.776043,2.287607,1.430580,1.297522,1.052067,2.972729,2.368596,0.340497,1.600003,0.000000,0.000000,0.000000,3.776033,0.000000,0.000000 -601694.355000,4612185.550000,4761,6005,101.795052,181.439697,174.861176,160.919037,145.935562,135.522324,136.084305,133.679352,133.563644,136.943832,136.993408,150.762009,169.679367,187.381851,200.885971,213.902512,216.869446,204.671097,180.960358,158.646301,148.100845,144.307465,140.381851,108.720673,90.894234,104.894234,117.522324,84.761993,42.662827,16.788448,12.762001,11.309106,11.072743,10.566957,14.109108,6.872738,1.729755,0.596696,0.852895,0.000000,0.227274,0.236364,0.318182,0.652894,3.190909,0.000000,0.000000,0.000000,2.533058,0.000000 -601697.155000,4612185.550000,4775,6005,111.842171,178.974396,174.643814,160.503326,146.371094,134.131424,134.858704,133.139694,132.321503,135.495056,136.941345,150.065308,168.164490,186.197540,199.668610,214.271927,216.032257,203.759521,179.594238,157.800842,147.271927,144.511597,139.718201,109.486794,90.032249,106.090103,117.908287,87.048782,42.321507,15.896713,12.701672,10.901668,9.323158,9.377700,11.628941,6.839679,0.434712,0.267769,0.193389,0.004132,0.004132,0.000000,0.068595,0.581820,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.755000,4612185.550000,4798,6005,122.195053,177.690918,178.079346,163.980179,147.781830,135.459518,137.550430,133.748779,135.649597,138.029770,138.038025,151.682663,170.517365,188.277695,203.285965,216.484314,218.343811,206.409927,181.930588,160.013229,148.600006,147.442993,141.509109,109.666130,91.137215,107.806625,120.773567,88.021507,45.806633,17.090101,12.864482,12.202496,11.033076,10.912412,13.392580,4.635547,1.700003,0.280993,0.455373,0.000000,0.000000,0.000000,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.755000,4612185.550000,4823,6005,91.767792,165.985138,163.771927,151.996719,137.641342,127.548775,129.102493,126.995064,126.639687,129.036377,129.771927,141.981827,161.395050,180.847122,195.158691,209.514053,212.571915,200.191742,178.351257,156.714890,146.219025,143.756210,139.100006,107.827286,91.372742,105.744644,118.314888,87.133080,42.876877,15.529770,12.645474,12.242990,8.331420,10.874393,13.759521,7.304141,3.231407,2.597522,2.966117,1.742150,4.483473,6.362812,0.871903,1.384299,0.000000,0.000000,0.000000,4.256199,0.000000,0.000000 -601711.155000,4612185.550000,4845,6005,118.752914,182.768600,173.710739,160.966949,146.619827,134.000031,136.033081,135.760345,135.842987,140.421509,139.429764,152.900833,171.628098,189.727280,203.512390,216.644623,217.983475,205.570251,182.206604,159.024796,148.190079,145.363632,140.181839,108.471092,90.198357,105.867790,119.231430,87.454559,44.033077,15.298365,12.743821,11.160346,10.423985,12.015718,13.190925,6.321497,1.304135,0.297521,0.000000,0.017356,0.135538,0.249587,0.021488,0.226447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.155000,4612185.550000,4870,6005,117.191750,182.701660,175.090088,165.916534,147.569427,134.842163,136.850418,135.412399,134.999191,139.098343,138.007446,150.734711,169.901672,188.637207,202.628937,216.719849,215.802490,204.290100,181.951248,158.504974,148.587616,146.926453,141.918198,108.455391,92.124817,108.942993,120.381012,87.562828,44.554562,16.780184,12.901671,14.367785,9.415719,12.382662,13.115720,7.515711,1.057027,1.386779,1.035538,0.728927,1.176034,0.482645,0.971075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.335537 -601720.755000,4612185.550000,4893,6005,120.307457,193.365295,176.282654,165.753708,147.522324,134.927277,136.456207,134.646286,135.960342,139.604965,138.431412,151.795044,169.216522,188.423157,203.183472,215.629745,218.489243,204.257843,182.282654,160.580154,148.299179,145.489273,140.563644,108.084312,90.505806,107.902489,120.638023,87.629768,43.150436,16.542994,12.778532,14.228116,10.143820,12.296713,12.559520,6.257860,1.081820,0.453720,0.468596,0.574381,0.514050,0.674381,0.687604,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601726.355000,4612185.550000,4921,6005,126.884323,191.140503,177.636368,165.239670,149.082642,137.595047,138.429749,136.082642,136.950409,143.338837,139.322311,152.760330,171.355377,190.661163,204.479340,218.834717,219.925613,205.429749,184.462814,161.239670,150.578506,147.933884,143.636368,110.421501,93.206627,111.016548,121.140511,87.140511,44.396717,15.823157,13.057871,14.022331,9.347126,13.278530,11.866131,5.929762,1.552069,0.165290,0.001653,0.186778,0.001653,0.000000,0.457026,0.000000,0.000000,0.000000,3.880992,0.000000,0.000000,0.000000 -601735.155000,4612185.550000,4965,6005,133.347946,196.890091,177.900833,166.586792,147.396713,134.719025,135.454559,133.619858,134.826462,141.404968,137.975204,149.991745,168.487610,187.247955,203.446304,216.263641,218.247116,204.098343,182.453720,160.660339,151.057022,148.371078,142.445465,110.098358,92.032249,110.833893,121.238853,86.081833,43.362835,15.556216,12.949606,14.623984,9.790101,11.842990,11.481008,8.313235,1.379342,1.364464,1.043803,0.434711,0.957852,0.654546,0.306612,0.852067,0.000000,0.000000,0.000000,0.000000,1.290083,0.000000 -601746.755000,4612185.550000,5023,6005,104.306625,161.909927,172.174393,158.777695,141.852081,133.471909,133.306625,130.190918,130.843811,132.819016,135.471909,146.761169,166.100006,182.595886,196.728119,208.281830,210.571091,201.810760,178.571091,156.240509,145.149597,142.265305,135.645462,105.546295,87.835556,105.174393,117.240509,86.562828,42.422333,16.700846,12.331424,9.911587,10.036381,10.509108,12.188446,4.999183,0.621489,0.220662,0.221488,0.020662,0.008265,0.037190,0.224794,0.072728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.555000,4612185.550000,5072,6005,104.738861,165.176895,172.052933,159.590118,144.474396,133.548782,132.862823,130.986801,130.887619,132.623154,135.895889,147.400040,166.738876,183.300858,197.532257,209.887619,212.102493,200.573578,178.433090,156.672760,145.160355,141.796707,136.581833,105.697540,87.052910,104.391754,118.813240,86.895889,43.135559,16.040514,12.416549,7.883487,10.874396,11.290926,12.783487,5.323976,0.809918,0.076033,0.241324,0.011570,0.007438,0.000000,0.332233,0.214877,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.955000,4612185.550000,5134,6005,101.557045,163.407455,170.655396,157.704987,142.184326,133.159531,132.440521,130.952911,130.696716,132.985977,136.085144,148.514893,166.630600,183.804153,198.019028,209.605804,212.291763,201.118210,178.481842,157.101669,145.746307,143.192581,136.390930,106.233902,87.994240,105.217369,119.209106,87.308289,43.589275,17.449604,12.399193,8.421500,10.185966,10.718198,11.805801,6.497532,1.194217,0.352068,0.000000,0.054546,0.004133,0.184298,0.143802,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.955000,4612185.550000,5229,6005,113.739685,164.805801,167.524811,156.119858,140.913239,133.103317,131.285141,128.962830,128.814072,132.648773,134.210754,146.235550,165.805801,183.260345,196.392578,208.979355,210.161179,200.582657,179.293411,156.095062,145.392578,141.169434,135.681839,104.888443,86.243820,104.202492,119.152908,88.326469,43.896713,16.349604,12.334730,8.430592,9.102497,10.211586,11.213239,5.340505,0.372728,0.297521,0.004959,0.010744,0.008265,0.000000,0.061157,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601811.555000,4612185.550000,5347,6005,117.104149,167.980179,169.591736,158.600006,143.922333,133.310760,131.426453,128.699188,129.352081,132.930588,134.509109,147.062820,165.814896,183.707428,197.533890,209.104141,211.162003,202.732239,180.062805,157.765305,145.996704,142.277695,137.145462,104.955383,87.343811,104.178528,118.302490,89.343811,42.980190,17.780184,12.467787,7.093403,10.022331,9.934727,10.357040,4.682653,0.613225,0.133884,0.092563,0.003306,0.004133,0.000000,0.252893,0.082645,1.577686,0.000000,0.000000,0.000000,0.000000,3.088430 -601829.555000,4612185.550000,5437,6005,103.822319,173.438843,170.066940,157.901657,144.364456,130.959518,130.240509,128.620667,128.488449,132.984314,133.298355,144.992554,164.257019,182.819000,196.984299,209.976028,212.810745,202.455368,179.653717,156.215698,145.331406,142.455368,135.372726,106.397537,86.918198,103.653732,118.554558,89.042160,42.595890,16.181837,12.306629,7.753733,10.074397,11.483488,11.458694,5.148769,2.247937,0.063637,0.014876,0.020661,0.033885,0.000000,0.000000,0.406613,0.000000,0.000000,1.719008,0.000000,0.000000,0.000000 -601841.755000,4612185.550000,5498,6005,103.899185,167.362000,167.031433,155.510773,140.271103,129.229767,129.056213,125.998360,125.800018,127.998360,129.833069,141.857880,160.452911,177.262848,191.915741,203.593430,205.254578,195.171936,173.064499,150.609940,139.320679,135.337204,129.436371,99.006615,83.006622,98.833061,112.271088,83.816544,39.130592,15.912416,11.766961,8.187616,8.185142,9.500015,9.936378,5.060340,0.361158,0.331405,0.334712,0.327273,0.000000,0.000000,0.105786,0.119009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601856.555000,4612185.550000,5572,6005,114.716537,172.171082,169.377701,157.104965,140.419022,130.939667,129.724792,126.989265,126.898346,130.195862,130.427277,143.419022,162.832245,179.592575,193.402466,205.212402,207.906616,195.675201,172.088440,152.237198,140.923157,137.104965,131.154541,101.204140,84.402489,98.823975,114.468605,84.270256,41.890099,16.885967,11.923160,10.779353,11.255388,12.245470,11.920677,6.295877,1.229754,0.280166,0.122314,0.212397,0.031405,0.000000,0.196694,0.311571,1.480165,0.000000,0.000000,1.605785,0.000000,0.000000 -601876.955000,4612185.550000,5674,6005,113.302498,178.002487,167.035538,154.622314,137.721512,128.060349,130.291748,127.853737,127.919846,132.514893,131.415710,142.837219,161.142975,179.159515,193.655396,206.498367,207.952911,194.283493,172.523148,152.217377,142.184326,137.969437,133.027283,103.225632,86.688446,101.787621,113.738029,83.126457,41.688450,16.288446,12.093407,12.958694,10.742990,9.485139,12.543818,5.678522,0.867771,0.204959,0.001653,0.006612,0.004132,0.034711,0.381819,0.177686,0.000000,0.000000,0.000000,1.695868,0.000000,3.282645 -601887.155000,4612185.550000,5725,6005,124.027306,179.622314,170.052078,160.291748,141.870255,129.721497,130.440506,128.217377,128.895050,133.795883,131.225632,143.514877,161.126450,179.539673,194.630585,208.655380,207.415710,193.911575,171.903305,151.209091,140.457031,137.928101,132.572739,102.374397,84.233902,100.002495,108.804146,77.349609,37.713245,13.495887,12.052086,14.057041,7.072742,9.118199,9.644643,4.578520,0.319835,0.230579,0.243802,0.052893,0.053720,0.000000,0.103306,0.285951,0.000000,1.605785,0.000000,0.000000,0.000000,0.000000 -601890.755000,4612185.550000,5743,6005,127.689270,192.094238,173.193405,163.838043,146.714066,133.152084,134.581833,130.912415,131.523972,138.705811,135.152084,147.904144,164.838043,183.094238,198.689270,212.441345,212.557037,197.755386,175.300842,155.548782,143.829773,141.962006,135.309097,104.887611,87.457863,104.507439,112.986786,80.309105,39.523987,16.658695,12.300845,14.828115,9.526462,10.170263,12.357868,4.540503,0.433885,0.059504,0.319009,0.242150,0.071075,0.025620,0.409092,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601893.955000,4612185.550000,5759,6005,128.719025,189.388443,176.462814,165.231415,147.214890,132.909103,133.776871,132.876053,133.570267,140.471085,136.768616,148.305801,165.636383,183.892563,199.950424,213.561981,215.165283,198.107452,177.157028,156.818192,145.396713,142.024811,137.909103,106.917374,88.876053,103.909103,113.338860,80.000015,39.611591,16.253738,12.537210,15.870264,9.553734,11.356215,12.011585,7.116538,0.708266,0.923969,0.563638,0.089257,0.000000,0.018182,0.185951,0.243802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601898.955000,4612185.550000,5784,6005,136.018204,184.001663,170.604965,157.249603,141.728943,130.629776,130.588440,128.166962,129.249603,136.671082,133.712418,145.795044,162.456207,180.142151,195.836380,209.852905,210.720673,196.662827,175.728943,154.976868,144.935547,140.208267,136.109116,105.373573,89.414894,104.423157,112.910759,79.249603,38.249607,16.268612,12.373572,13.037207,10.604976,12.059521,12.091751,6.628936,0.673555,0.133058,0.265290,0.004959,0.018182,0.021488,0.094216,0.300001,0.000000,0.000000,0.000000,0.000000,1.469422,0.000000 -601907.355000,4612185.550000,5826,6005,96.725632,148.006622,152.791748,140.560333,125.833069,116.395058,116.320679,114.370262,115.477699,117.676048,120.866127,132.667786,150.576859,167.295868,181.155380,193.527283,195.800003,187.824799,164.353729,144.800003,135.188446,132.419846,127.345467,100.196709,81.899185,96.609932,107.097534,79.535561,38.560352,13.333076,11.576880,8.287618,10.927292,8.675223,11.692578,5.824803,1.431408,0.176860,0.269422,0.230579,0.005785,0.000000,0.304133,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601921.155000,4612185.550000,5895,6005,91.362007,146.109100,147.357040,137.340515,124.728935,114.274391,114.274391,113.191742,114.076042,116.869431,119.902489,131.547119,149.985138,166.373550,179.654556,192.877686,196.018173,186.034714,164.034698,143.109116,133.712402,130.935547,126.472740,99.621498,80.671089,96.745461,107.877693,78.431427,38.009933,14.650431,11.497539,8.166956,9.150429,10.890099,11.993405,6.088439,1.371904,0.604134,0.169422,0.264463,0.343802,0.000000,0.398348,0.321488,0.000000,0.000000,0.000000,0.000000,0.000000,2.155372 -601934.355000,4612185.550000,5961,6005,90.476051,137.031433,141.254562,130.527298,116.733910,109.485970,107.568619,105.138863,106.560356,108.138863,110.775230,122.337212,139.601669,156.816559,170.072754,181.560349,185.006638,174.841339,154.386795,134.552094,125.750435,122.353745,118.072746,90.585144,74.651260,89.560356,104.320686,76.973579,35.775227,13.210761,10.733904,9.940512,10.568613,10.395057,11.934729,6.880174,2.261987,0.872729,0.274381,0.287604,0.111571,0.676034,0.482646,0.563638,4.423141,0.000000,0.000000,2.634711,0.000000,3.050414 -601940.955000,4612185.550000,5994,6005,98.812401,132.827301,131.951248,118.926460,104.562828,94.645477,94.058701,90.934731,92.116547,93.612419,95.620682,105.942993,123.199188,137.835556,148.984299,159.736359,162.595871,156.042145,139.447113,124.240509,114.752907,113.703323,109.372749,83.860352,66.347954,85.215714,104.033905,80.769440,38.901672,11.413241,9.942994,8.338032,11.463654,12.715717,15.507457,10.208279,1.166118,0.542977,0.228926,0.139670,0.179339,1.766944,7.557026,4.057026,29.548761,17.996695,10.495868,13.695042,17.864464,11.964463 -601243.155000,4612175.550000,2505,6055,216.000015,233.975220,231.909103,232.719025,227.090927,231.975220,242.586792,245.024811,251.190094,260.140503,272.272766,290.528931,311.760345,329.132233,341.281006,349.396698,347.471069,328.826447,278.611572,240.652908,227.413239,217.537201,204.818192,170.925629,151.785141,152.247955,141.214890,95.256218,45.115719,24.033077,18.619854,17.990101,15.044648,19.118200,17.576878,8.402493,4.595051,2.680999,1.858681,0.879342,0.951242,0.680166,1.417359,2.376863,1.487603,1.311570,1.125620,0.000000,0.000000,0.000000 -601250.755000,4612175.550000,2543,6055,221.068604,235.779358,236.919846,233.895050,228.721497,233.671906,245.159515,248.961166,255.415710,265.176056,276.994232,295.688446,315.903320,335.828918,349.547943,357.506622,356.647125,337.688446,287.134705,247.961166,234.638855,225.167770,211.209106,177.481842,158.969437,157.300018,145.176056,98.985962,45.060349,23.597540,19.200848,17.338861,16.636381,18.444645,17.810762,7.944643,4.558689,3.190090,0.963641,1.126449,0.538844,0.559507,0.664464,0.990910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601263.355000,4612175.550000,2606,6055,210.879349,232.102463,233.317337,233.548752,230.780151,234.945435,247.457840,251.408264,258.565308,268.664459,282.821503,299.763641,320.251251,339.061188,352.656219,361.466125,359.862823,340.953735,285.185150,243.953705,229.672714,222.168579,208.763626,173.094223,151.937210,151.267792,142.499191,94.557037,42.176880,20.669439,18.978531,15.792581,16.435556,14.663655,14.301671,8.512410,3.510752,2.753726,1.486781,0.874382,1.447936,0.095869,0.785126,1.731407,1.477686,0.000000,0.000000,0.000000,0.000000,0.000000 -601283.355000,4612175.550000,2706,6055,212.301682,230.648788,225.723175,225.384323,222.285156,224.814087,233.533096,237.062012,242.152924,250.541351,261.582672,275.582672,292.450439,310.376068,322.111603,330.144653,332.095062,319.450439,275.210785,241.822342,229.392593,222.351273,212.590942,181.400864,162.714905,164.367798,156.491760,110.466949,50.227287,22.420681,19.326464,15.308283,17.481010,18.048782,18.791756,11.166133,3.828108,2.815709,1.354550,0.638018,0.727275,0.317358,1.140498,1.114877,0.000000,1.520661,2.633058,0.000000,1.373554,2.337190 -601295.355000,4612175.550000,2766,6055,174.682663,183.245468,180.865295,174.410767,167.873581,165.931427,170.253738,171.187622,172.088455,178.030609,184.394226,197.534714,215.038849,230.377716,242.435562,251.154572,255.344650,251.385971,232.443817,212.890091,202.939682,199.080170,193.245468,168.518204,149.113251,160.146301,179.220688,150.071930,81.468605,21.898365,17.567787,14.629768,21.149605,30.410763,41.410763,32.196716,3.090915,0.334712,0.028926,0.020661,0.039670,0.071075,0.000000,1.068595,0.000000,1.291736,2.939670,2.641323,1.208265,3.470248 -601302.555000,4612175.550000,2802,6055,193.509094,198.343796,196.038010,191.996689,186.599991,187.178513,191.385117,194.327271,196.947098,205.963638,213.294235,230.748779,251.409927,269.550415,284.773560,296.434753,299.881042,294.600037,269.285950,245.054565,233.352081,228.533890,221.690918,190.558670,167.079330,179.715698,200.054565,167.029755,86.765312,26.052084,20.153738,17.483490,20.451258,31.098366,44.360352,33.938034,4.076039,0.450415,0.046281,0.095042,0.393389,0.166116,0.000000,0.000000,2.346281,0.000000,1.064463,1.700827,0.852893,5.912397 -601349.555000,4612175.550000,3037,6055,152.965302,180.378525,169.642975,155.452896,141.221497,132.568604,132.915710,132.122330,132.552078,136.378540,139.543808,154.494217,176.287613,194.444641,208.469421,222.899185,226.477692,217.031418,195.246292,173.485962,163.122314,160.147110,153.618195,122.543808,100.535553,116.676041,133.196716,100.213234,47.155396,17.655390,13.965308,17.362827,12.561999,14.423984,16.822330,12.059518,1.416535,0.675209,0.295042,0.136365,0.533059,0.050413,0.000000,0.011571,0.000000,3.338017,3.403306,0.000000,0.000000,0.000000 -601353.955000,4612175.550000,3059,6055,142.684311,177.147110,168.221497,157.742157,144.717361,137.097534,137.733887,135.361984,136.932236,141.138855,144.403305,159.601654,180.229752,198.609924,213.254547,226.659515,229.469421,223.047943,200.378525,180.684311,168.998352,166.039673,159.890915,126.114059,105.122330,122.576874,143.262817,113.609932,51.320675,18.385971,14.535556,13.992577,13.339686,14.665307,19.227291,10.522326,1.814881,0.517357,0.281819,0.488431,0.059504,0.000000,0.000000,0.050414,0.000000,0.000000,0.000000,1.890909,0.000000,0.000000 -601361.155000,4612175.550000,3095,6055,136.892578,175.719009,168.066116,157.446274,142.371902,132.413239,132.694229,129.727295,129.793411,131.561996,132.074402,146.644623,166.669418,183.752060,196.669418,210.380173,213.793396,207.495865,189.371902,168.016525,154.702484,151.611572,147.545456,109.561996,87.752083,109.735550,149.768600,124.528938,59.157043,18.356216,13.413242,12.390099,12.344645,16.952909,20.654564,12.857867,0.576035,0.256199,0.042149,0.086777,0.000000,0.058678,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,4.155372 -601372.955000,4612175.550000,3154,6055,138.426453,177.856216,167.013229,155.376877,143.715714,130.955383,131.914047,129.261169,129.938843,131.806610,132.418182,146.153732,164.600006,180.823151,194.947113,208.616547,211.219849,204.864471,188.533890,167.004974,155.558685,153.674393,149.509109,114.649590,92.071091,113.128929,151.004974,125.236366,60.170265,17.785967,13.591756,12.952083,13.696711,17.123159,22.169439,11.953733,0.882649,0.372728,0.180993,0.102480,0.000000,0.000000,0.015703,0.077686,1.278512,0.000000,1.185124,0.978513,0.000000,0.000000 -601404.555000,4612175.550000,3312,6055,105.277710,155.105789,147.692581,139.023163,124.923981,112.312408,110.866127,107.477699,108.064476,110.709106,108.791748,119.047951,134.188446,147.386795,157.552078,167.651245,169.981827,163.138855,152.543808,138.948776,129.923981,128.981827,127.618195,97.527290,78.609924,100.626457,135.874405,116.023155,60.353733,16.668612,11.601671,14.728941,13.869438,20.505802,29.196712,21.097540,1.347110,0.069422,0.113223,0.010744,0.000000,0.000000,0.398347,0.002479,0.000000,1.080992,0.000000,0.000000,0.000000,0.000000 -601407.555000,4612175.550000,3327,6055,96.138847,143.685120,141.643799,132.015701,119.957855,109.924797,108.379341,105.255379,103.627274,104.544632,104.842155,114.701653,128.619019,141.660339,151.205795,160.990906,164.147934,161.850418,150.090088,135.635544,126.792564,124.437195,123.081818,92.767769,72.205803,94.726448,132.354553,117.230583,62.585968,16.071920,11.189275,9.137204,14.450430,21.119028,30.660351,19.779358,0.945457,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.206612,0.000000 -601412.155000,4612175.550000,3350,6055,40.694221,74.459518,77.515717,66.270264,53.523987,45.313240,41.628937,37.962822,36.009106,36.091747,35.491753,41.230591,50.711590,59.839684,66.917374,74.433891,76.661987,77.246284,72.056213,62.485966,55.567787,54.934731,53.827293,32.972740,21.000839,38.040508,86.515717,96.274391,57.662827,9.061997,4.893405,7.735548,15.819025,27.623987,45.976879,36.695057,3.459511,0.137191,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.777686,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.555000,4612175.550000,3567,6055,118.303314,160.580994,159.837219,151.589279,138.390930,127.481834,123.663651,120.985962,119.291748,119.721504,121.638855,133.539688,152.928116,168.622314,185.159515,199.523163,207.300018,204.870270,189.523148,169.762817,158.250443,153.804153,151.845474,113.010757,91.118195,116.432243,157.432251,130.076874,63.250431,17.576880,13.804151,9.093403,12.857042,15.947951,22.003323,13.994230,0.706614,0.085125,0.011570,0.197521,0.097521,0.000000,0.000000,0.092562,0.000000,1.248760,0.000000,0.000000,0.000000,0.000000 -601462.755000,4612175.550000,3603,6055,74.811584,134.584320,139.559494,129.633896,113.427292,103.807457,98.799194,95.576050,92.815720,93.419029,93.600845,104.154564,121.096710,137.435547,152.121475,167.675201,174.270248,172.857025,160.989243,143.898346,128.666962,126.493408,127.245476,87.733078,63.005806,94.162827,153.047104,143.757843,74.171089,17.228943,11.567787,5.727284,13.117373,20.523159,32.047127,22.346298,0.809093,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.755000,4612175.550000,3618,6055,107.529762,149.422333,152.653732,141.918182,126.529762,115.042160,110.769432,106.595879,103.133072,102.744644,102.174393,112.042160,125.992577,140.207428,152.719849,165.281845,170.562836,168.314911,155.868622,137.083466,124.695053,123.785965,120.463646,85.042160,64.819023,91.785965,141.108261,129.389267,66.042168,15.214068,10.951258,6.127285,10.757867,15.447950,25.661177,15.775221,0.669423,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.050413,0.000000,0.000000,0.000000,0.000000,1.328926,0.000000 -601468.955000,4612175.550000,3634,6055,97.434731,150.128937,151.732239,140.790100,127.633080,116.583488,111.203323,107.781837,104.699196,104.343826,103.641342,112.798370,126.013245,137.352081,151.285950,163.120651,166.442978,164.451233,153.418182,136.624802,124.781837,122.285973,120.963654,88.814896,69.178535,92.492584,137.558685,123.219856,63.558701,13.897540,10.996715,5.333895,10.052082,16.824812,25.654566,14.455391,0.564464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601472.555000,4612175.550000,3652,6055,116.342995,158.516541,162.111588,153.442169,139.640518,128.714890,124.425636,119.268608,118.243820,118.020676,118.070267,127.425636,143.855392,156.433899,169.301666,181.648773,185.268616,182.673569,168.219025,150.400848,139.103317,135.665298,133.681839,100.260345,80.599190,103.409103,143.450424,124.078529,62.466957,16.716547,12.152911,6.141334,11.865307,15.102497,20.891754,12.523155,0.187605,0.000000,0.142149,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.181818,0.000000,0.000000 -601477.955000,4612175.550000,3679,6055,126.686790,172.471909,171.422348,164.521515,149.025650,139.414078,136.662018,133.157867,131.314896,133.281845,134.290100,146.116562,164.000854,179.199188,193.852066,208.273544,214.405777,211.141312,195.166107,175.108276,164.562836,161.339691,158.463669,123.149597,101.182655,122.802490,155.810776,132.017365,63.290104,20.748779,14.405804,9.289269,14.362828,17.531424,23.650433,15.828941,1.148764,0.238844,0.305786,0.268596,0.000000,0.000000,0.000000,0.185951,4.326447,0.000000,0.000000,0.000000,0.000000,0.000000 -601480.955000,4612175.550000,3694,6055,110.693398,173.528122,171.751266,163.916550,152.362823,142.495056,140.230591,137.974396,136.817368,139.404144,141.933075,154.982666,172.966141,188.478531,204.594238,218.842163,225.296707,221.503326,205.519852,186.379364,177.073578,174.205811,171.263657,137.792587,117.379349,135.230591,164.528122,139.238861,68.693398,21.675224,15.569441,11.248777,15.644647,22.025639,27.342993,16.449604,2.567775,0.133059,0.016529,0.057852,0.074380,0.119835,0.213224,0.094215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.555000,4612175.550000,3712,6055,117.770264,167.505798,168.381805,162.348755,151.290909,141.761993,139.720673,139.208267,138.092575,141.885956,144.811569,157.191727,174.009918,191.588440,206.646286,220.547119,226.018188,223.472733,204.266129,187.282654,177.059494,176.133881,174.290909,143.456192,123.092575,141.885941,171.315720,144.786774,73.687622,20.048780,15.844646,8.147949,14.108281,22.311588,31.737209,20.390928,1.247938,0.133058,0.033058,0.144629,0.000000,0.000000,0.103306,0.200000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.355000,4612175.550000,3726,6055,124.866127,184.750397,185.403290,177.056183,165.419830,153.890915,153.171906,150.395050,149.080994,153.196701,154.915710,165.799988,184.130569,202.006607,215.576843,228.428101,232.502487,226.204956,201.659500,176.833054,166.783463,162.518997,156.345459,124.684311,105.866127,120.609932,132.981827,97.089272,42.527290,17.497540,14.213241,9.775221,12.247124,12.202497,13.531421,7.734722,3.047113,1.122317,0.566945,0.360332,0.282645,0.205786,0.390083,0.400000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601535.755000,4612175.550000,3968,6055,99.551254,149.303314,139.220657,128.947952,113.468613,103.179359,103.220680,99.609108,98.080185,100.394234,98.171089,108.964478,123.295059,136.005798,144.890106,154.146286,153.567780,145.832245,134.832245,121.022331,110.799194,110.410759,108.881836,81.344643,63.815727,83.931419,125.361176,117.807457,60.030605,14.471093,9.898366,12.401667,11.262828,18.828117,31.262001,16.739687,0.366117,0.050413,0.019008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.796694,0.000000,0.000000,0.000000,0.000000 -601538.955000,4612175.550000,3984,6055,96.390930,158.164490,151.090103,140.833908,126.784302,114.602501,115.189278,112.561180,110.974396,113.296715,112.528122,123.842163,140.090103,155.048782,165.767792,174.883484,173.602493,165.619034,152.437210,138.544647,127.470268,125.866951,124.172745,96.247124,76.685143,96.445473,135.362823,118.057037,59.222332,16.990101,11.288449,13.900018,12.626464,19.057045,24.577705,15.354562,0.371076,0.125620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.188430,0.000000,0.000000,0.000000,0.000000,0.000000 -601543.155000,4612175.550000,4005,6055,108.597542,163.605789,159.291748,146.159515,134.713226,120.333061,119.870255,118.531410,117.903313,122.316536,121.878517,133.539673,150.614059,168.853729,181.928101,193.457031,194.002487,186.787613,169.895050,153.713226,141.746292,141.118195,142.300003,113.176041,89.547943,112.407448,148.126450,122.390915,62.258698,19.483490,12.936382,7.484310,11.219852,15.635554,21.380186,11.114889,0.781821,0.143803,0.142975,0.063637,0.020661,0.000000,0.132232,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601547.755000,4612175.550000,4028,6055,95.746307,163.704971,161.729752,151.605789,134.498367,122.638863,122.605804,119.581017,120.043823,124.176056,124.093414,135.126465,152.316528,170.225632,184.035538,195.440506,197.680176,190.101654,172.870255,152.762817,141.985962,141.085129,139.572739,108.266968,87.614067,109.746307,139.374390,113.746307,52.647125,17.019852,12.688448,7.558689,8.822331,11.421504,14.999190,6.356207,0.671903,0.176860,0.073554,0.104959,0.057852,0.023141,0.380993,0.661985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601554.955000,4612175.550000,4064,6055,99.257050,165.488449,166.273590,152.777695,138.662003,127.166130,126.703316,124.364479,123.397537,126.885139,127.000839,137.860336,156.075226,173.347931,186.711563,196.794205,198.488434,189.058670,169.075241,147.719849,138.182663,135.223984,134.009109,103.728111,83.802498,103.157867,129.265305,100.562820,48.868610,15.650432,12.182664,6.743814,10.112412,10.188445,13.947124,5.552903,0.663638,0.599175,0.372728,0.408265,0.010744,0.024794,0.258678,0.302480,1.400827,0.000000,2.552893,1.314050,0.000000,0.000000 -601565.755000,4612175.550000,4118,6055,112.204971,163.510773,163.634735,153.700851,137.180191,126.659508,126.064468,124.238022,123.742157,127.659508,127.907448,139.882660,157.056213,173.370270,187.105804,199.783493,201.502502,191.667786,170.452911,149.014893,137.833084,134.395050,132.618195,102.122322,83.428108,100.279343,117.337196,89.171906,41.808285,13.357042,12.056216,7.037202,8.322330,8.109931,8.928940,3.337197,1.009920,0.238017,0.028099,0.150414,0.000000,0.010744,0.387604,0.266116,0.000000,0.000000,1.370248,0.000000,0.000000,0.000000 -601582.555000,4612175.550000,4202,6055,113.471916,165.207458,164.918198,152.050430,138.802490,129.670258,129.480179,126.951256,126.992577,131.033890,131.604141,142.819016,161.538025,178.017365,193.182663,205.430588,207.496704,198.802490,176.389267,153.223984,142.265305,138.959518,134.918198,104.422325,86.025635,102.951256,118.513237,87.009102,42.992584,14.574398,12.265308,8.702493,9.204974,9.170263,11.890099,4.809100,1.029754,0.166943,0.066116,0.198348,0.171901,0.021488,0.337191,0.667770,0.000000,1.330579,0.000000,0.000000,0.000000,0.000000 -601607.955000,4612175.550000,4329,6055,101.938866,163.368607,171.137207,157.980179,143.765305,133.790100,132.244644,130.385132,131.062820,134.302505,136.533890,148.806625,165.847946,184.285965,198.509109,211.707458,215.575226,204.153732,181.963654,159.442993,146.947113,143.938858,140.418198,108.905800,89.823151,106.881004,119.236374,88.409927,45.013245,17.466135,12.765308,9.358692,10.642992,9.681007,11.364478,6.176042,0.452067,0.204959,0.000000,0.027274,0.019835,0.000000,0.271902,1.026448,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.155000,4612175.550000,4500,6055,102.136383,166.285126,171.615707,158.433884,141.384308,133.615723,132.442169,131.152908,130.921509,133.500015,136.623962,147.838852,165.797516,184.756195,199.128098,212.318176,215.747940,203.904953,181.202484,157.268600,146.210739,143.070267,138.954559,107.136383,88.177696,105.260345,117.946297,84.929771,42.095062,15.567786,12.632252,9.898362,8.823985,9.814065,12.533074,5.553727,0.882646,0.201654,0.126446,0.006612,0.225620,0.000000,0.113224,0.310745,2.793389,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.555000,4612175.550000,4602,6055,96.643822,167.610764,171.296707,157.652084,141.313248,132.767792,133.106644,130.577698,130.685150,132.412415,135.205811,147.668594,166.966141,182.982651,198.172729,211.296692,214.635544,201.726456,179.106613,156.957870,143.924820,142.875229,137.536377,106.957863,88.643822,105.263649,116.751259,85.676880,41.900021,15.456217,12.503325,8.923156,9.252082,10.925635,11.204148,6.313233,0.778515,0.448762,0.128926,0.022314,0.155373,0.019008,0.314051,0.694216,1.573554,0.000000,0.000000,2.226446,1.297521,0.000000 -601674.355000,4612175.550000,4661,6055,111.967789,175.242966,174.011551,161.714035,146.284302,136.457870,137.019852,134.747116,134.672745,137.325638,138.565292,151.490906,170.457840,188.201645,202.242966,216.350403,219.309082,207.152054,182.879333,160.565277,150.333893,147.804962,142.127274,109.796707,92.474396,107.614891,119.895882,88.143822,44.449608,18.882662,12.920682,12.054562,10.864480,12.162827,13.567785,7.326456,1.360334,0.256199,0.097521,0.180992,0.154547,0.338017,0.618184,0.395869,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.555000,4612175.550000,4682,6055,99.323166,174.628937,173.199188,157.769440,145.976044,134.984314,134.810760,132.339676,131.777695,133.447113,136.108276,149.918198,168.182663,185.529770,200.381012,214.190918,216.372742,204.438858,181.992569,157.662003,146.810760,144.000839,139.463654,108.174393,89.620682,104.562820,117.876869,84.942986,41.000847,15.552909,12.678532,10.951255,9.701671,10.381008,11.333074,5.795876,1.225623,0.394216,0.274381,0.000000,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,6.530579,0.000000,0.000000,0.000000 -601681.555000,4612175.550000,4697,6055,122.693405,173.643799,175.090088,159.453720,145.817352,135.023987,135.205811,132.660355,134.057037,136.106628,137.139694,150.643799,169.552902,187.313232,200.759506,214.734711,217.181000,205.668594,182.577698,159.949585,148.156204,146.247116,140.263657,109.057053,92.032257,105.908295,119.404160,87.685150,42.718204,17.562828,12.751259,11.103321,9.273570,10.791752,13.119024,6.247116,1.062812,0.172728,0.109918,0.318182,0.000000,0.000000,0.028099,0.719836,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.955000,4612175.550000,4719,6055,112.711586,178.033890,172.546295,157.149597,143.430588,132.645462,133.438858,131.133072,130.852081,133.653732,135.447113,147.967789,167.761169,185.976044,199.951248,213.207458,215.587616,204.612411,180.058685,158.050430,147.728119,145.124802,139.190918,107.587616,91.017365,105.480179,118.893402,86.240509,40.257046,15.658697,12.653738,9.960344,9.719026,10.392577,11.189273,4.600008,0.914052,0.107438,0.195868,0.033059,0.000000,0.019008,0.209918,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601689.955000,4612175.550000,4739,6055,120.185966,185.904968,179.599182,163.590927,146.971085,136.657043,137.822327,135.309937,134.880188,138.235550,139.673569,152.442169,172.367783,190.028946,204.078522,216.962830,220.880188,208.194229,183.723160,162.987625,149.838852,148.574402,143.590927,111.301666,92.797539,107.690102,121.830597,87.252083,43.359524,17.333076,13.053739,11.347952,11.162827,11.277702,13.745472,5.383481,0.832234,0.366943,0.190083,0.012397,0.133885,0.052066,0.299175,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.355000,4612175.550000,4761,6055,115.828934,182.068604,173.638855,162.093399,145.994217,134.977692,134.647110,133.415710,132.985962,135.754547,136.564468,150.002487,169.068604,187.200836,201.109924,215.795868,217.928101,204.043808,181.638855,158.771088,147.192566,144.928101,140.845459,108.209099,92.101662,105.878517,120.052071,88.333061,42.374401,15.787621,12.804151,9.811587,9.494232,10.622331,13.478529,5.518190,1.489259,0.749588,0.306612,0.277686,0.175207,0.000000,0.009091,0.103306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.955000,4612175.550000,4779,6055,118.337196,177.543808,173.857864,161.816528,146.890915,134.601654,136.882645,134.213226,133.502487,138.006622,139.271088,151.957031,170.543808,189.023148,203.320663,217.395050,219.502487,206.725632,183.601654,160.345459,150.130585,147.163635,142.800003,109.403313,91.700836,107.808273,120.444633,87.386780,44.403324,17.462830,12.981835,13.183487,10.866132,13.070265,13.766958,7.082654,1.564465,0.639670,0.459505,0.007438,0.237191,0.181818,0.075207,0.125620,3.029752,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.155000,4612175.550000,4800,6055,115.351265,182.243805,176.293396,163.706604,146.863647,135.690094,136.417374,133.450439,135.243820,138.070267,138.326462,151.714890,170.805786,188.301651,202.954544,216.301651,217.557846,206.004135,182.599167,161.219009,150.260345,147.070267,142.409103,109.888451,92.169449,108.384323,121.268616,87.053741,43.202503,16.897539,12.946301,11.404974,10.114066,12.084314,12.896710,5.855381,1.587606,0.624794,0.357025,0.102480,0.019835,0.000000,0.628927,0.007438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601706.555000,4612175.550000,4822,6055,116.684319,186.071930,172.790939,163.633911,146.121521,135.675232,137.799194,135.675217,136.609116,140.212418,138.881851,151.815735,170.501678,189.468628,203.452087,216.890106,219.104980,205.526474,182.981018,161.055405,149.501678,147.245483,141.427292,109.906631,90.890099,106.956215,120.567787,86.542992,43.038860,15.680183,12.857044,11.709932,10.635553,11.809109,14.110760,5.928108,0.821490,0.000000,0.180166,0.043802,0.031405,0.000000,0.044628,0.162810,0.000000,0.000000,1.371074,0.000000,0.000000,0.000000 -601709.355000,4612175.550000,4836,6055,122.831421,192.867783,178.388443,163.388443,146.471085,133.165298,134.842987,133.438034,134.867783,139.570267,137.917374,151.735550,168.826462,187.842987,201.024811,215.603317,217.281006,202.595062,180.570267,159.256210,147.173569,144.438034,139.818192,107.495880,90.471092,107.471092,119.388443,87.677704,43.074402,15.319853,12.710763,14.999190,9.377701,12.702497,12.862825,7.663646,1.545457,0.663638,0.229752,0.369423,0.326447,0.373554,0.451241,0.009091,0.000000,4.960331,0.000000,0.000000,0.000000,0.000000 -601713.755000,4612175.550000,4858,6055,118.725639,187.337204,175.899185,164.882645,147.221497,134.271088,135.279343,132.271088,133.915710,139.320663,137.477692,150.502487,168.609924,188.535538,203.204971,216.965302,217.866119,204.287613,181.585129,159.890915,148.304138,146.692566,141.709091,109.238022,91.742165,108.998352,119.469429,87.304138,45.122334,15.457042,12.882663,14.918198,8.671090,11.585967,12.442165,8.778524,0.877688,0.801655,0.060331,0.077687,0.095868,0.027273,0.320662,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601720.955000,4612175.550000,4894,6055,131.252899,192.002487,175.878525,168.655380,153.266953,141.052078,142.564468,140.291748,141.043808,147.911575,144.242157,156.812408,175.134720,193.572739,208.506622,222.176041,223.977692,209.316528,187.308273,165.300003,153.109924,151.357864,144.663635,112.357864,94.374397,111.622330,121.994232,87.159515,44.663658,16.551258,13.151259,15.770265,8.927289,11.166132,12.800843,7.857035,1.263639,0.510745,0.248761,0.380166,0.359505,0.000000,0.076034,0.134711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.155000,4612175.550000,4935,6055,143.268616,199.536377,182.081833,169.941345,151.528122,137.734726,136.916550,134.156219,135.850433,142.503326,138.842163,152.057037,169.825638,189.181015,204.957870,218.941345,221.147949,205.528122,184.577698,161.908279,149.990921,148.900024,143.718201,109.561180,91.817375,110.280182,121.222321,86.833893,42.662003,18.678532,13.065309,16.201670,10.691751,11.717372,14.279355,8.418191,1.891738,1.527274,1.314051,0.423968,0.519008,0.332232,0.177687,0.000000,0.000000,0.000000,0.000000,0.593389,0.000000,0.000000 -601738.355000,4612175.550000,4981,6055,113.619850,165.504150,169.438034,157.024826,142.281006,133.570267,132.049606,128.429779,129.289276,131.272751,133.446304,145.793411,164.719025,182.330597,195.123978,207.347122,209.950424,199.528946,176.429764,154.562012,144.008286,140.950424,134.818207,105.619850,85.867783,103.413239,118.082672,84.793404,41.495888,14.995059,12.256218,7.330591,8.717372,8.751256,11.414065,4.914059,0.676034,0.012397,0.061158,0.000000,0.006612,0.000000,0.266116,0.501654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601751.955000,4612175.550000,5049,6055,100.761169,161.347946,169.951248,157.133072,143.009109,133.075226,132.157867,128.992569,129.091751,131.876877,134.199173,146.166122,164.976044,182.951248,196.926453,208.819016,210.612411,199.637207,177.852081,155.885132,143.637207,140.719849,134.100021,104.513237,86.290092,104.017365,116.860344,86.810760,42.381008,15.208282,12.190928,9.065304,9.159521,10.485969,11.204975,4.919843,0.687605,0.211571,0.190083,0.000000,0.000000,0.000000,0.304134,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.955000,4612175.550000,5134,6055,106.283478,167.928101,170.779343,157.704971,142.919846,133.804138,132.341324,130.738022,131.192566,132.861984,134.886780,147.407440,166.184311,184.258682,197.547943,209.895065,212.539688,201.605789,178.845459,157.969421,145.366119,142.473557,136.754547,106.415710,88.622322,105.076866,119.043808,89.547943,43.514896,16.021505,12.432251,9.937204,10.336379,11.410760,11.114065,5.828934,0.822316,0.192562,0.211571,0.100827,0.016529,0.000000,0.073555,0.080165,0.000000,0.000000,0.000000,2.279339,1.339670,0.000000 -601785.355000,4612175.550000,5216,6055,99.785141,160.900833,169.049591,155.016525,141.157028,131.545471,131.603317,129.173569,129.743820,132.115723,134.107452,146.380173,165.132233,182.876038,196.702484,209.206604,211.793396,201.512390,178.966949,157.140503,145.264465,142.107437,136.090927,106.239685,85.595055,103.768608,118.132248,89.363655,43.099197,16.787621,12.371920,8.722328,9.757868,10.444646,10.417371,4.818191,1.215705,0.000000,0.067769,0.144628,0.006612,0.042975,0.077686,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.155000,4612175.550000,5300,6055,105.462830,169.239670,167.595047,156.851242,142.760330,132.545456,130.074387,128.925629,128.388443,132.413239,134.338852,145.991730,163.958679,182.413223,196.900833,208.611572,210.900833,201.553726,179.214874,157.008270,146.256195,142.173553,136.090927,105.760345,87.669441,103.314064,118.909103,88.429771,42.107464,16.010763,12.371920,8.323155,10.296711,10.357868,10.052082,5.190917,0.504960,0.216530,0.109092,0.019009,0.000000,0.020661,0.096695,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.955000,4612175.550000,5404,6055,102.657043,181.037186,171.557861,158.698364,144.863647,133.095062,133.061996,130.450424,131.334732,135.020676,136.830597,147.590927,165.979340,185.020660,199.285141,212.814072,214.194229,204.632248,181.582642,159.458694,147.004150,142.938034,137.500015,107.607452,87.491753,103.392578,118.847122,89.061996,42.747955,16.394232,12.500018,6.355384,8.776875,10.347949,10.232246,5.083479,0.915704,0.015703,0.091736,0.000000,0.075207,0.000000,0.353720,0.205786,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601830.755000,4612175.550000,5443,6055,108.831429,183.633072,171.897522,160.550415,143.409912,131.244644,131.451248,129.938858,128.385132,133.252899,134.038025,145.550415,164.087601,182.542160,196.814880,210.806610,213.690903,203.947098,180.360336,157.500839,146.269440,142.120651,136.509094,105.046303,85.856216,103.484322,117.947128,87.971924,41.046303,16.317373,12.409936,5.552904,7.637207,8.662826,10.089271,4.654552,1.025622,0.280993,0.378513,0.018182,0.014876,0.038843,0.164463,0.043802,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.355000,4612175.550000,5471,6055,109.416534,163.957031,170.345459,155.659531,138.461182,129.122314,128.717361,126.171906,125.485954,128.833069,129.742157,142.923996,161.304153,178.543808,191.105804,204.494232,207.965317,195.601669,173.502487,152.304153,140.097534,138.345459,130.618195,100.882652,84.056206,99.031410,113.428108,84.031410,39.907455,15.774397,11.874400,8.271914,9.839685,11.352082,10.829768,3.098354,1.519837,0.648762,0.544629,0.000000,0.127273,0.145455,0.267769,0.249587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601843.755000,4612175.550000,5508,6055,110.671921,171.638870,169.539688,155.432251,140.085144,129.713242,129.630600,128.134735,127.052086,128.911591,130.795883,142.845474,162.349609,178.597549,192.283493,205.746307,207.498367,195.837219,173.729782,151.969437,141.630600,138.432251,130.754562,101.985970,84.647133,99.291748,114.415718,85.357872,41.845474,16.232250,11.886796,12.481833,10.533074,10.672744,12.206628,4.625627,0.600827,0.368596,0.179339,0.000000,0.000000,0.000000,0.167769,0.004959,2.221488,0.000000,0.000000,0.000000,0.000000,0.000000 -601855.555000,4612175.550000,5567,6055,112.222328,170.361984,166.684311,154.114059,140.180176,127.814888,128.195053,126.542152,125.038025,129.368607,128.889267,141.856216,160.021500,176.864471,192.327286,205.269440,207.839676,194.963654,172.401672,151.128937,141.261169,138.938858,130.872726,101.781830,84.137215,100.294228,113.236366,83.732254,39.988449,15.883490,11.897541,10.842991,8.743819,10.071092,11.802494,5.428935,1.476863,0.421489,0.799175,0.280992,0.244628,0.000000,0.189257,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.755000,4612175.550000,5638,6055,112.942154,180.942169,171.157028,158.181824,141.677704,130.388443,131.173569,128.867783,128.727280,132.776871,132.289261,144.537201,162.049591,180.942169,194.561996,207.884308,208.206635,195.826462,173.859528,151.033081,141.619858,138.173569,132.272736,102.214882,84.239677,98.570259,110.884308,80.173561,39.281013,13.691753,12.024812,11.059518,8.949604,10.627289,14.729769,4.190919,0.810745,0.275207,0.114876,0.000000,0.000000,0.023967,0.216530,0.071075,0.000000,1.532231,0.000000,0.000000,0.000000,0.000000 -601883.555000,4612175.550000,5707,6055,114.333900,184.747131,173.854568,164.730591,145.813248,134.209930,134.689270,133.614883,133.763641,140.714066,137.342163,148.945480,166.846298,185.697540,200.317368,216.135559,216.548782,201.160355,178.912415,158.201675,147.697540,144.813248,138.854568,107.441330,91.135551,106.466125,115.581841,83.548775,41.036385,17.040514,12.623159,13.166131,9.491752,11.608281,11.368610,7.754558,1.410746,0.304959,0.129752,0.000000,0.055372,0.000000,0.382646,0.321489,0.000000,0.000000,1.332232,0.000000,0.000000,0.000000 -601894.155000,4612175.550000,5760,6055,103.228119,166.170258,159.872742,147.236374,132.616547,122.112404,122.021492,121.046288,122.715706,126.327278,126.798355,138.128937,156.087616,173.442993,187.657883,202.087616,203.856216,192.881012,170.162003,150.153732,139.980179,137.657867,130.781830,103.170258,86.401665,101.583481,110.773560,81.790100,39.566963,15.023984,11.889276,12.672743,10.047951,10.612412,11.618196,6.637202,1.785127,0.402480,0.000000,0.154546,0.004132,0.097521,0.027273,0.166943,1.509917,0.000000,0.000000,0.000000,0.000000,0.000000 -601904.555000,4612175.550000,5812,6055,93.901665,144.624802,152.285965,138.980179,125.798370,116.616539,117.352081,114.897537,116.170258,119.723976,121.905800,132.616547,151.021500,168.178528,181.732239,195.228119,198.153732,187.922333,165.856216,145.376877,136.517365,132.566956,128.509109,101.360344,83.319023,99.153732,107.517365,78.533897,38.476055,16.181009,11.682663,11.137206,11.025637,12.368612,12.619851,6.152075,0.801655,0.340497,0.121488,0.070248,0.076860,0.252066,0.627274,0.471075,0.000000,1.411570,1.923141,0.000000,2.473554,0.000000 -601919.155000,4612175.550000,5885,6055,95.434723,142.670258,145.190918,132.248779,120.149597,111.595879,109.538033,108.794228,109.389267,111.670258,114.124809,125.595879,143.356216,161.025635,174.223984,186.711578,189.042160,180.852081,158.827286,139.133072,129.174393,126.248772,121.918198,93.314888,77.290092,93.513237,107.000839,78.133072,36.967789,13.156216,11.083489,9.081832,9.790927,10.815720,12.157042,8.042159,1.484301,0.324794,0.297522,0.076860,0.167769,0.186777,0.434712,0.350414,1.517356,2.014050,4.144629,1.176860,0.000000,0.000000 -601926.755000,4612175.550000,5923,6055,90.933075,141.426453,142.046310,128.294235,115.368607,107.509102,105.641335,103.674393,104.219849,105.963646,108.674393,119.980179,138.418213,153.971924,168.285980,180.715698,183.161987,173.013245,152.897552,134.426453,124.740509,122.542160,117.327286,89.930588,73.219849,89.550423,106.236374,76.889267,36.476055,12.549603,10.666134,7.757038,9.970264,11.523156,12.910761,7.787614,1.323143,0.468596,0.317356,0.145455,0.107438,0.284298,0.214050,0.722316,2.109091,6.299174,0.000000,2.680992,2.510744,1.980992 -601932.355000,4612175.550000,5951,6055,86.792564,126.922325,130.484299,118.401665,104.798363,95.542160,94.409927,92.385139,92.442986,94.666130,96.145470,107.178528,123.583481,138.773560,151.062820,161.013229,163.112411,155.748779,139.178528,122.153732,113.624809,111.244644,107.781830,81.922325,64.930603,83.161995,100.360344,78.872742,36.806633,11.888446,9.798367,9.798360,9.801668,12.849602,15.909935,13.686790,2.662815,0.385952,0.596696,0.422315,0.453720,0.909093,1.305786,0.549588,21.340498,3.895042,4.618182,6.612397,2.642149,5.822315 -601235.155000,4612165.550000,2465,6105,232.230576,235.321487,235.362808,231.875214,227.767776,231.982651,242.073563,246.412399,252.073563,262.660339,274.395874,291.817383,313.569427,332.652100,345.891724,353.214050,355.734711,338.114868,287.676880,249.685120,236.114883,227.784302,214.900009,180.255371,159.999176,160.131409,151.230576,103.709938,46.652084,22.124811,19.536383,17.767786,18.271919,17.766134,19.723156,9.519849,4.080174,2.352898,2.228103,1.404962,1.597525,0.036364,0.850416,0.692563,2.757025,2.758678,0.000000,3.271901,0.000000,6.163637 -601238.355000,4612165.550000,2481,6105,227.104980,237.873581,236.303329,231.691757,229.650436,234.509949,243.352921,249.113251,254.220688,265.113251,275.658661,293.493408,312.576050,330.633911,344.509949,351.724823,349.947968,330.047119,277.675201,239.551270,225.947952,216.724823,203.427292,170.022324,150.005798,150.063644,137.981003,92.402496,42.666962,21.840515,18.493408,17.261175,16.635555,17.190928,16.566961,9.964478,4.155382,2.338023,1.831408,1.588433,1.357028,0.216530,0.951242,1.778515,1.415703,4.149587,1.266942,1.127273,1.402479,2.209091 -601243.755000,4612165.550000,2508,6105,215.546295,232.174393,233.356216,228.711578,226.306625,229.480179,237.438858,240.843811,246.744644,254.538025,268.100037,289.091766,313.091766,332.587646,345.571106,355.447144,353.587646,333.058716,278.612396,241.281830,225.901672,216.174393,202.463654,167.794235,145.670258,148.612411,140.637207,95.083473,43.149601,20.323162,18.405806,14.322332,16.503325,15.899192,15.003324,9.238032,3.228937,2.412403,1.194217,0.552894,1.197523,0.037191,1.318185,2.011574,1.423141,0.000000,0.000000,0.000000,0.000000,0.000000 -601252.755000,4612165.550000,2553,6105,209.409927,231.327286,234.550430,233.699188,231.112411,235.922333,247.616547,252.922333,260.533905,272.186798,283.872711,300.682648,320.988403,340.806580,354.757050,361.682648,360.368622,339.368561,280.219818,238.914062,224.277695,215.054565,202.781830,166.409927,146.335556,145.302490,134.120682,87.748779,39.905807,20.269440,18.434731,15.344646,16.030598,15.050432,14.190926,7.510759,3.412407,2.203312,1.403310,1.223144,0.968597,0.973555,1.659507,1.114051,0.000000,4.346281,1.357851,2.265290,1.414876,2.279339 -601267.755000,4612165.550000,2628,6105,200.090088,219.577682,225.172729,226.114883,221.304962,228.577698,238.123154,242.214050,249.280182,260.966125,273.189270,288.007446,306.172760,323.726471,337.404144,345.660339,344.048767,325.263641,269.371094,229.139694,214.404129,206.048767,194.536362,160.693390,142.023987,140.635559,129.271912,83.569443,36.412415,19.496714,17.685143,12.184315,14.417374,13.852911,12.071918,7.283485,3.528108,1.838021,1.906616,1.017358,0.989258,0.220662,1.061986,2.303309,1.399174,0.000000,0.000000,0.000000,1.336364,2.200827 -601280.755000,4612165.550000,2693,6105,167.210739,197.177673,197.045456,193.483475,185.717361,186.766953,189.692566,190.436371,191.519012,197.213226,204.766953,216.764450,232.896698,246.169418,258.400848,266.830597,268.913239,262.566132,237.772720,215.971054,205.202484,200.227280,193.863632,167.293396,150.345459,157.235535,166.533051,133.235565,67.822327,19.465307,17.623985,14.469438,20.391752,23.976879,31.972748,23.382662,2.987611,0.823969,0.642151,0.954547,0.206612,0.224794,0.437192,0.514050,1.422314,1.388430,0.471901,0.950413,2.880992,0.000000 -601288.555000,4612165.550000,2732,6105,39.396702,45.859512,42.127285,37.285961,33.297531,30.953728,32.449596,32.672737,33.416542,35.335545,39.252075,47.891747,60.525631,70.998360,82.557037,91.758690,96.475212,99.640503,91.646301,83.726456,76.394234,74.594223,71.990921,52.904144,38.327282,54.143814,97.710754,108.922325,61.434731,10.890097,6.544643,8.338028,21.810762,42.839691,67.575226,54.591755,9.007449,0.231406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.234711,0.000000,0.506612,0.000000 -601293.155000,4612165.550000,2755,6105,177.634720,189.874390,189.469421,182.742157,174.973557,171.411575,173.857864,173.957031,175.072739,179.626450,185.667770,201.469421,221.519012,237.064468,249.585129,261.031403,262.477692,257.725616,234.684311,213.866119,202.089264,197.700836,190.709091,159.370255,137.585129,154.114059,175.609924,148.485962,77.725639,22.130596,17.337208,16.692579,17.858696,27.626465,39.502502,32.729771,4.451248,0.381819,0.131405,0.171901,0.145455,0.280166,0.000000,0.000000,5.067769,9.404961,1.552066,0.000000,4.328926,3.935538 -601355.955000,4612165.550000,3069,6105,143.194229,177.979355,170.814072,159.086792,145.169434,135.367783,135.896713,134.111572,134.714890,138.962830,140.723160,155.285141,176.243820,193.871918,208.880203,222.508301,224.863663,217.425659,196.971085,176.334732,164.582657,160.929764,155.500015,120.433891,98.367783,117.450424,142.458694,112.169426,52.979355,18.069441,14.136383,13.554563,11.479354,16.349604,20.348780,8.956210,2.068599,0.424795,0.090910,0.053719,0.000000,0.000000,0.000000,0.015703,1.240496,0.000000,1.056198,1.990083,1.283471,0.000000 -601363.755000,4612165.550000,3108,6105,140.940506,179.072754,167.866135,157.196716,144.163666,132.676056,134.527283,130.990112,131.370270,134.750443,134.337219,148.485977,166.948776,183.378525,197.766937,211.378525,214.378525,207.519012,189.634705,168.659515,156.312424,153.948776,150.163666,115.345467,91.981842,112.246307,150.254562,122.940521,58.056217,18.227293,13.651259,14.422330,12.153737,15.823158,20.585970,10.333072,1.432237,0.258679,0.309092,0.221488,0.000000,0.000000,0.000000,0.028926,0.000000,0.000000,1.957851,0.000000,1.141322,0.000000 -601376.755000,4612165.550000,3173,6105,148.103317,180.921509,164.128113,156.210754,142.698364,128.400833,129.541336,126.342987,127.814056,130.764465,129.557861,141.367783,157.078506,172.549606,183.855392,195.747955,197.599182,192.450424,178.938034,161.541336,152.838837,151.938019,149.409088,117.524803,97.491745,116.929764,148.913223,123.665298,61.152916,17.227291,13.582664,17.301674,12.997539,19.781012,27.319857,19.500021,0.925623,0.261984,0.091736,0.000000,0.019008,0.000000,0.000000,0.062810,0.000000,1.247108,0.000000,0.000000,0.000000,0.000000 -601451.155000,4612165.550000,3545,6105,73.833893,124.245453,128.683472,119.650414,106.179359,94.559525,91.823982,86.757866,85.823982,84.592583,86.286797,97.741341,113.964462,128.104965,144.195877,160.278519,165.774384,166.675217,156.270264,140.055374,127.113228,125.369423,125.336365,86.939690,62.873573,93.212418,156.865295,148.873566,81.518196,17.323160,11.394234,6.905797,15.348779,26.162830,37.361172,28.463655,1.029754,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.755000,4612165.550000,3563,6105,84.532249,133.680176,138.754562,127.828949,113.994240,102.258698,97.027298,91.498367,88.713249,87.895065,87.539696,97.126472,113.076881,126.341347,142.473572,158.432251,163.167786,163.233902,152.531433,132.589279,117.589279,115.671921,114.300026,73.688454,50.663654,80.506638,148.101669,141.134735,74.027298,14.938035,10.390928,6.199185,9.728942,19.277704,28.332249,18.895884,0.410745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.755000,4612165.550000,3593,6105,98.702492,155.231415,155.760345,145.884293,133.570267,122.793404,118.636383,114.446297,112.752083,113.000015,113.619850,123.950432,140.049591,153.504150,166.694229,179.504150,183.264481,183.190094,169.892578,151.851257,140.611572,139.181824,136.454544,101.826462,80.471092,105.471092,151.512405,135.628113,69.504150,18.906631,12.404978,8.641336,12.938861,21.384317,29.380186,19.697540,0.969425,0.042975,0.000000,0.000000,0.071901,0.000000,0.000827,0.002479,0.000000,0.000000,1.104132,0.000000,0.000000,0.000000 -601463.355000,4612165.550000,3606,6105,99.475227,150.739670,151.979340,145.376038,128.880173,118.458694,113.384315,109.516548,105.243820,104.995880,104.260353,112.268600,125.392570,137.466949,149.524796,159.252060,163.747940,161.268600,149.863632,132.574387,121.723152,119.417366,117.863647,85.640518,67.648781,90.243828,133.425629,121.442154,60.028946,15.785971,10.714896,8.042162,10.782661,17.050430,26.746300,14.397537,0.647936,0.025620,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,1.289256,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.355000,4612165.550000,3621,6105,106.407455,149.035538,149.952896,141.754547,125.994225,114.093391,107.671906,101.605789,98.068604,95.374390,92.861992,99.878517,110.333061,119.432236,128.961166,139.498352,143.779343,140.043808,129.547943,114.647118,103.647118,99.936371,98.754555,65.961174,51.564480,75.969437,118.746284,111.043808,56.581009,13.037208,8.977704,5.538027,10.179354,13.784314,23.078533,14.186792,0.790911,0.056199,0.000000,0.000000,0.057025,0.000000,0.000000,0.052893,1.350413,0.000000,0.000000,0.000000,0.000000,0.000000 -601469.155000,4612165.550000,3635,6105,93.156219,155.354568,155.139694,146.296707,132.007462,118.511589,111.842171,106.189278,102.866959,101.222336,98.850433,105.247124,116.891754,125.759521,135.569443,147.247131,151.164490,146.676880,135.594238,119.949608,109.222336,106.552910,103.809113,71.495064,55.850433,80.751259,123.255394,114.354568,58.610764,13.652912,9.437209,5.859515,10.080180,15.462827,24.944647,15.768612,0.343803,0.000000,0.029752,0.000000,0.000000,0.147108,0.052066,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.955000,4612165.550000,3649,6105,115.776054,160.676865,164.866943,154.147934,139.503311,127.172745,122.751259,118.123161,115.147957,114.693405,114.057045,122.412415,135.809113,147.619019,159.214050,171.048767,175.941330,172.404129,159.916534,142.519836,132.090103,128.627289,126.172745,91.767792,74.395889,97.329773,136.817368,120.602501,61.602493,17.149603,11.470266,6.877699,11.754562,16.200844,23.274399,14.050429,0.699175,0.045455,0.061157,0.000000,0.000000,0.000000,0.121488,0.166942,2.838843,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.155000,4612165.550000,3665,6105,107.837212,166.349594,167.159531,158.638870,144.151245,134.655380,130.597549,127.275230,125.795891,126.895065,127.382668,138.837204,153.812408,166.432251,179.200836,191.432251,197.531433,194.547958,179.878525,161.523163,151.341324,148.060333,145.209091,112.531425,92.506638,114.167793,147.754547,127.721512,62.614067,16.891752,13.200845,7.057037,10.847125,17.176050,23.975225,15.542990,0.769424,0.060331,0.000000,0.013223,0.001653,0.000000,0.018182,0.275207,0.000000,0.000000,1.221488,0.000000,0.000000,0.000000 -601481.355000,4612165.550000,3696,6105,142.359543,174.086807,178.243835,168.623993,156.863663,147.136398,144.938049,143.318207,142.731430,144.971100,146.657059,157.243835,174.954575,190.062012,202.533096,214.144653,216.177719,213.351273,196.252106,177.847137,166.847137,164.838882,162.227310,131.384308,109.342987,129.252075,160.557877,135.665298,67.086792,20.427290,14.747953,8.442162,15.536383,19.549604,29.739689,15.186791,1.407442,0.111571,0.049587,0.000000,0.208265,0.074380,0.295869,0.211571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.355000,4612165.550000,3711,6105,136.386780,180.023148,180.684311,173.990082,162.130585,151.709091,150.122314,149.485962,147.634720,151.833069,153.816528,166.733887,183.576859,200.254547,214.601654,227.684311,233.014877,228.642975,209.031418,189.552078,179.254547,177.229752,173.800003,142.014877,119.833069,139.221497,169.147110,143.147110,70.081017,22.052084,15.800018,9.895881,16.980185,19.857870,30.281010,16.157040,1.940501,0.459505,0.057025,0.149587,0.080992,0.038843,0.084298,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601487.155000,4612165.550000,3725,6105,143.489273,184.629761,185.282654,177.381821,165.224808,154.728943,152.100830,151.373566,151.067780,155.034714,156.092575,168.613235,187.621490,206.563644,220.671082,233.414886,238.026459,232.133896,209.381821,187.902496,176.588440,172.613235,171.200012,138.257858,115.770256,133.976868,160.919022,128.216537,59.844650,19.456219,15.563655,9.090097,11.721505,15.288448,23.219856,10.140508,1.447937,0.525621,0.390084,0.295042,0.000000,0.014876,0.252066,0.349587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601490.555000,4612165.550000,3742,6105,146.961166,192.010757,187.035538,181.093399,167.523148,155.688431,152.514877,150.961166,149.911575,152.820663,154.746292,167.192581,184.233887,201.184311,214.167770,224.622314,226.448761,219.754547,197.721497,175.027283,163.523163,161.159531,158.209091,126.771088,107.192574,122.556213,145.143005,113.969437,51.969440,18.473574,14.382664,10.298362,11.409934,14.356215,18.352911,11.195056,2.988434,0.950415,1.014879,0.275208,0.005785,0.212398,0.663637,0.553719,0.000000,1.442975,0.000000,0.000000,0.000000,0.000000 -601496.555000,4612165.550000,3772,6105,122.409927,187.748779,180.723984,172.145462,157.790100,143.021500,142.451248,140.062820,137.624802,141.847946,141.798355,153.401672,170.128937,188.732239,201.864471,212.228119,213.864471,206.219849,185.277695,161.360336,151.029770,147.715714,144.509109,113.112411,92.781830,109.608276,134.170258,103.608276,46.013245,16.937210,13.137209,9.044643,11.950429,14.490927,13.933075,9.035550,1.873558,0.723142,0.323142,0.304959,0.135537,0.069422,0.440497,0.740497,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.955000,4612165.550000,3959,6105,59.714062,118.094223,109.383484,96.499184,82.474388,70.722336,68.631424,64.044647,62.003326,64.185143,59.284317,67.292580,79.350426,89.879349,97.623154,105.788445,105.490921,101.135551,93.697533,83.044640,73.945473,73.375221,72.036385,47.433079,30.449606,51.664482,100.672737,106.672737,57.325638,9.407453,6.548779,10.261170,10.981006,25.863655,41.449608,26.881008,1.246284,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.904959,0.000000,0.000000,0.468595,0.000000,0.000000 -601536.955000,4612165.550000,3974,6105,46.304977,127.797531,121.169441,112.508270,94.020668,81.987617,78.805794,76.466957,74.574394,76.020676,73.962830,81.623985,93.599182,105.962814,113.252083,121.938034,123.334724,119.549606,111.309929,98.508270,90.037209,87.822327,89.409096,64.161171,45.623993,68.458694,116.508278,118.409103,67.020676,12.553736,8.128118,6.297532,11.452083,21.559525,38.582668,25.200018,0.545456,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601541.755000,4612165.550000,3998,6105,91.859520,140.826462,137.107452,127.454559,111.107452,99.685966,96.595055,94.049606,92.892578,94.528938,93.966957,103.669449,117.281006,131.776871,141.785141,151.677704,152.198364,147.495880,136.942169,121.066132,111.033081,109.603333,110.545479,82.561996,63.727287,85.099190,133.413239,122.950432,66.198364,13.147125,10.049606,7.333898,10.953737,18.241341,29.380184,20.528118,0.604133,0.080992,0.000000,0.000000,0.044628,0.000000,0.000000,0.000000,1.423967,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.355000,4612165.550000,4031,6105,104.493408,164.724808,155.146286,146.245468,130.071915,118.328110,117.361168,114.906624,114.666954,117.733070,118.939682,130.071915,148.352905,165.261993,177.286789,189.857040,192.162827,186.633896,170.352905,152.038849,140.204147,139.030594,140.336380,108.923149,87.096703,109.427284,144.435547,119.815712,59.625641,16.602497,12.757870,7.416540,10.929770,13.630596,19.509937,11.768608,0.881820,0.042977,0.001653,0.000000,0.000000,0.000000,0.072728,0.157852,0.000000,1.284298,0.000000,0.000000,0.000000,0.000000 -601557.555000,4612165.550000,4077,6105,96.907448,163.345474,159.171921,147.568604,134.271088,123.031410,121.940506,118.923973,118.981827,122.833061,122.907448,133.923981,151.543808,167.271088,181.444641,192.866119,194.452896,184.800003,166.866119,146.122314,136.998352,133.312408,132.345459,101.634720,81.262817,101.899178,130.742157,103.196701,48.833080,15.325638,12.031424,6.938854,8.001669,10.658693,12.995055,7.231416,0.413224,0.108265,0.000000,0.000000,0.074380,0.192562,0.157852,0.413224,0.000000,0.000000,0.000000,2.520661,0.000000,0.000000 -601570.955000,4612165.550000,4144,6105,90.610764,159.238861,162.032257,150.784317,137.205811,126.792580,127.652084,123.718201,124.949608,127.362831,128.065308,139.726471,157.445480,173.313248,187.362823,199.437210,200.858704,192.437210,172.462006,150.643814,139.594238,136.924820,133.900024,101.858696,83.552910,101.891754,123.123161,93.916550,45.528118,16.403324,12.172747,9.588446,10.750430,8.976048,11.351255,4.283480,0.934713,0.317356,0.018182,0.061984,0.237191,0.505785,0.256200,0.674381,1.297521,0.000000,0.000000,0.000000,1.485951,0.000000 -601589.755000,4612165.550000,4238,6105,98.800018,164.560333,168.973557,158.246292,142.353729,132.337204,130.659515,130.089264,129.568604,132.345459,133.923981,145.188431,164.320663,179.915710,195.758682,209.494217,212.196701,201.353729,180.229752,158.072739,145.510757,142.866119,139.527283,106.841331,88.039680,106.841331,122.899178,89.419846,44.709106,16.557045,12.684316,7.695880,10.447124,11.656216,12.140511,6.668605,0.761986,0.147108,0.032232,0.113224,0.150414,0.028926,0.271075,0.885125,0.000000,0.000000,0.000000,1.067769,0.000000,0.000000 -601611.955000,4612165.550000,4349,6105,99.475220,170.318161,170.210724,158.318161,143.962830,134.070251,133.995865,131.177689,130.904953,133.615707,136.723160,147.904938,167.169403,184.499985,199.202469,213.805771,217.615692,205.838821,183.227249,161.111557,148.822296,145.632248,141.500015,110.276871,92.037209,107.144638,121.987602,90.483490,45.070267,17.625639,12.863653,8.847946,9.802495,11.169438,15.150430,7.271084,0.412398,0.235538,0.002479,0.116530,0.077686,0.000000,0.240497,0.483472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.955000,4612165.550000,4504,6105,114.057869,166.462830,173.082657,159.041336,144.685974,136.462830,135.231415,131.396713,132.694229,133.958694,136.322327,148.719025,168.652908,185.082657,200.859528,214.314072,217.090927,204.016541,181.049606,158.181839,147.041336,145.355392,139.181839,108.933899,89.024811,105.578529,120.049606,86.834724,42.818203,16.388449,12.652912,10.023155,11.163654,10.210759,12.069438,8.254556,0.700002,0.818184,0.195868,0.020662,0.052067,0.424794,0.551242,0.507439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601660.355000,4612165.550000,4591,6105,115.457039,173.771103,175.027298,160.035553,146.448792,134.184311,135.357864,132.473572,132.506622,135.027283,137.688446,150.837219,169.283493,186.911575,201.663666,214.407455,218.200851,207.184326,183.085144,159.126465,149.919861,146.093430,141.481857,109.754562,91.977699,107.407455,120.671913,88.696709,43.738029,15.241341,12.862002,11.000841,9.843819,11.785140,12.346297,7.335546,1.128928,0.385951,0.474381,0.638845,0.154546,0.015703,0.263638,0.333059,0.000000,1.307438,0.000000,0.000000,0.000000,0.000000 -601666.955000,4612165.550000,4624,6105,112.757034,179.046295,175.079346,159.145462,145.889267,135.062820,135.170258,133.418198,132.790100,136.649597,137.947113,151.128937,169.839661,187.409927,202.980179,215.707458,219.145462,206.409927,182.575226,160.732224,149.633072,146.178528,141.418198,109.674393,91.971916,106.864479,122.252907,88.996712,43.773571,17.938034,12.856217,10.350428,11.168612,13.770265,12.600843,6.698356,0.442976,0.109918,0.124794,0.067770,0.352067,0.042976,0.736366,0.545456,1.579339,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.355000,4612165.550000,4651,6105,116.305794,169.464462,173.018173,161.315689,146.588440,135.753723,134.100845,133.208282,134.447952,135.629761,137.679337,150.447922,170.034698,187.654541,201.745453,216.059494,219.357025,206.489243,183.290909,159.307434,148.067780,147.803314,141.109100,108.323982,91.216545,106.266136,119.662827,86.472748,42.439686,16.841341,12.828119,10.025636,9.171918,10.018196,11.620677,7.011580,0.891738,0.800828,0.298348,0.214877,0.020662,0.084298,0.399175,0.172728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.555000,4612165.550000,4667,6105,121.384323,174.004150,172.805801,160.648773,146.070267,135.607452,135.995880,133.004150,134.524811,136.012405,138.202499,150.962830,170.731415,188.442169,201.904968,215.095062,217.657043,206.392578,182.524811,160.657043,148.830597,147.904968,141.954559,109.830597,92.210762,106.326462,120.971092,88.946297,44.334728,17.248777,12.904978,11.478527,11.200018,11.217372,12.628116,7.865300,1.038846,0.213224,0.328926,0.066116,0.001653,0.526447,0.009918,0.509918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.355000,4612165.550000,4681,6105,114.854568,177.879349,171.961990,160.664459,144.697525,133.689270,134.590088,131.978531,132.920670,135.581818,136.970261,150.548767,169.879364,186.548782,202.143814,215.242996,217.920685,205.904144,182.598343,160.763641,148.871078,145.838013,140.490906,110.358696,91.325638,107.722336,120.168610,88.276054,43.573574,16.603321,12.771920,12.117372,9.572744,11.162826,12.450428,5.895877,1.234714,0.167769,0.000000,0.428926,0.395868,0.266116,0.309919,0.092562,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.555000,4612165.550000,4702,6105,119.691750,178.604126,173.769424,160.794235,142.909943,134.695053,134.488449,131.670258,131.918198,136.554581,136.265305,149.785965,169.058685,187.141312,201.075211,214.562805,218.298340,205.736359,183.628922,160.926453,149.463638,148.347931,142.100006,109.364479,92.529762,107.761169,120.604149,88.885139,45.215721,17.153738,12.918200,10.989271,9.273570,10.554563,13.998363,6.356208,0.509918,0.265290,0.334711,0.163637,0.166116,0.000000,0.419010,0.828927,0.000000,0.000000,5.374381,1.945455,0.000000,0.000000 -601685.555000,4612165.550000,4717,6105,94.030594,175.691757,173.914902,161.997543,145.914886,133.319855,135.749603,133.311584,134.518204,137.551254,137.088440,150.559525,169.014069,187.319855,201.807465,216.055405,218.642181,206.204163,182.658707,159.956223,150.377716,147.138031,142.336380,109.997536,91.096710,107.113243,120.427292,87.377701,43.666962,17.106628,12.939687,11.213240,9.853736,10.864478,11.763653,5.822322,0.833887,0.177686,0.355373,0.004959,0.005785,0.000000,0.226448,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.555000,4612165.550000,4747,6105,111.383492,187.469406,176.667755,162.023148,148.833069,136.304138,137.477692,134.469437,135.320679,140.188431,138.973557,152.262817,170.477692,189.841309,205.072723,218.213211,221.328918,207.998337,186.221481,163.262817,151.981827,148.874390,144.436371,112.791756,93.948784,110.105804,123.196716,90.023163,44.800018,17.871920,13.130598,11.902495,12.018199,11.262829,12.292579,6.398357,0.925622,0.369422,0.110744,0.000000,0.086778,0.000000,0.256199,0.000000,1.577686,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.755000,4612165.550000,4773,6105,133.031433,178.957047,176.081009,163.155396,146.857864,135.081009,136.709091,134.923981,135.204987,139.262833,138.601669,151.998367,170.981842,189.568619,203.700836,217.750427,219.138855,206.031418,184.981842,161.419861,150.535553,148.254562,142.436386,110.568619,92.510765,109.238037,122.502502,87.899193,44.502499,18.028942,12.948780,12.245470,10.749602,12.929770,14.003324,6.009101,1.052069,0.328100,0.212397,0.114877,0.080992,0.020661,0.000000,0.223141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.555000,4612165.550000,4787,6105,123.633072,190.171906,176.915710,163.907440,146.923981,136.452911,137.229782,134.552094,135.337219,138.973572,139.089279,152.031418,170.047943,189.014877,203.080994,218.428101,220.254547,207.221497,183.915710,160.750427,151.775208,148.543808,142.890915,111.833069,93.833069,108.981834,122.105797,88.196709,45.271095,18.090101,12.990101,12.638858,9.756214,13.007456,12.457041,7.724804,1.111572,0.491736,0.057025,0.276860,0.000000,0.000000,0.111571,0.217356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.155000,4612165.550000,4810,6105,130.309097,184.978531,180.986801,170.033081,153.380188,139.289276,140.066132,137.565308,138.565308,143.986801,142.061172,154.763657,172.259521,191.804977,204.788422,220.690063,221.168579,207.226440,186.647949,164.801666,154.595062,153.909103,149.000015,119.190102,98.644646,115.256218,127.264481,93.247948,49.347122,21.066135,13.545473,17.416546,13.214067,14.399190,15.827290,8.794227,2.276864,0.850415,0.487604,0.314877,0.723968,0.344629,1.038844,0.090083,3.329752,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.755000,4612165.550000,4848,6105,131.552078,192.262817,177.965302,165.742157,149.758682,134.676041,135.312408,133.948776,135.014893,140.808273,138.436371,152.080994,169.626450,188.783478,202.824799,218.899185,218.560333,203.973557,183.634720,159.890915,149.783478,145.899185,142.345459,109.907455,91.353737,109.171913,120.684311,85.618195,42.056221,16.686794,12.940515,14.419024,8.504148,11.049603,11.765305,7.343812,0.774382,0.114050,0.000000,0.056199,0.195868,0.070248,0.157025,0.238017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601721.155000,4612165.550000,4895,6105,147.013229,200.214050,179.057022,168.131424,151.643799,138.635544,137.536362,136.304962,137.742981,144.685120,140.090088,153.627274,171.875229,190.552917,205.379349,221.090088,220.825623,205.081833,184.891739,163.197540,151.817352,148.263641,144.809097,110.313232,93.073570,111.147942,121.817368,87.635559,44.643822,16.652084,13.164481,14.247125,10.964481,11.279354,15.318199,7.520671,0.905787,0.115703,0.000000,0.009918,0.466944,0.000000,0.219835,0.157025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.355000,4612165.550000,4911,6105,142.168610,200.999176,182.701660,170.883484,150.098343,137.420685,138.619034,136.767776,136.726456,144.048782,141.800842,153.900009,170.833893,191.619019,207.536362,221.371078,222.933060,207.437195,186.594223,164.602478,154.164459,150.156204,146.536377,111.833893,95.040504,113.825630,124.643814,87.709930,44.569443,18.965309,13.321507,16.123158,10.591751,11.786793,15.141339,8.924805,2.263640,0.803307,0.934712,0.227274,0.893389,0.194216,0.768596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601727.155000,4612165.550000,4925,6105,111.413239,179.043808,176.911575,164.638855,148.804138,136.828934,136.936371,134.771088,135.357864,139.812408,138.638855,152.043808,169.564468,187.498352,203.060333,216.572739,217.630585,204.060333,183.671906,162.283478,149.845459,147.704971,142.572739,109.911575,90.638855,109.423973,120.407448,86.994232,42.886795,17.509935,12.961175,13.101668,10.575223,11.273570,12.433074,6.385960,1.217359,0.472729,0.318182,0.017356,0.072728,0.025620,0.059504,0.225620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.555000,4612165.550000,4947,6105,97.196709,164.725632,173.494217,157.271088,142.692566,132.965302,132.659515,131.171921,131.981827,133.229767,135.287613,146.890915,166.378525,182.519012,196.130585,209.585129,210.725632,200.700836,177.849594,155.981827,145.378525,142.337204,136.436371,106.684311,87.907455,103.948776,117.378525,86.238029,42.692585,16.876051,12.403325,9.442988,9.603323,10.850430,11.676048,5.850422,0.980994,0.141323,0.133885,0.000000,0.004132,0.000000,0.630579,0.323968,1.389256,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612165.550000,4980,6105,100.695885,166.804138,169.721512,158.820679,143.399200,133.952911,132.333069,131.242157,131.407455,133.101669,134.919846,147.349594,166.465317,183.547943,196.564484,209.300018,211.985977,200.944656,178.159515,156.382645,145.382660,142.357880,136.390915,106.176048,88.696709,104.316544,117.688446,86.233902,43.019024,15.657043,12.399192,8.927288,10.179357,10.225636,12.219025,4.980173,0.467770,0.104133,0.020662,0.011571,0.004959,0.210744,0.230579,0.447108,0.000000,0.000000,0.000000,2.290909,0.000000,0.000000 -601748.755000,4612165.550000,5033,6105,105.465302,166.481842,169.936386,158.010773,143.886795,134.209091,133.440506,131.283478,130.969421,133.390915,135.142975,148.498367,167.614075,184.655396,197.787628,210.655396,213.052094,203.085144,180.035553,159.250443,146.795883,144.498367,137.209106,108.167793,89.357872,105.985970,119.977699,88.167793,43.589275,17.660351,12.473574,8.962824,9.426463,12.754563,11.488445,6.164473,1.135540,0.279339,0.071075,0.024794,0.030579,0.000000,0.209091,0.483472,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601766.355000,4612165.550000,5121,6105,91.874390,163.667786,167.965317,155.254562,140.659531,132.238037,130.634720,129.857880,128.998367,131.667786,133.849594,146.328949,164.915726,182.626465,196.948776,209.072754,210.940521,201.775223,178.957031,157.452911,145.023163,141.593414,135.436386,105.072731,87.047951,104.047943,117.733894,87.585129,42.304150,16.211590,12.312415,7.566957,9.110760,8.799190,10.963653,3.530584,0.726448,0.064463,0.140496,0.004132,0.014876,0.000000,0.271075,0.406612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.955000,4612165.550000,5179,6105,94.891754,165.461990,168.007431,155.982651,141.007462,131.916550,130.329773,129.015717,128.503326,132.197540,133.643814,145.379349,165.073547,182.197510,197.106598,209.957840,211.007431,202.577667,179.726440,156.222321,146.214050,141.685150,135.809113,105.833900,86.602501,104.387619,117.214081,88.156219,44.304977,17.009935,12.346300,7.162822,10.130595,10.438859,11.731421,4.952901,0.515704,0.013223,0.149587,0.010744,0.012397,0.000000,0.119009,0.317356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601786.955000,4612165.550000,5224,6105,118.125641,167.745468,168.580170,156.968597,143.613235,132.200012,131.828110,130.687622,130.596710,132.976883,135.001663,147.654556,166.117371,183.770264,198.109100,210.902466,213.447922,202.968597,180.191742,158.340500,147.018188,143.100830,136.654556,106.902496,88.852913,105.200020,119.307457,89.274399,44.332253,17.321505,12.423161,9.232247,12.018201,10.928117,9.229767,4.485959,0.876861,0.210744,0.074381,0.157852,0.005786,0.025620,0.362811,0.454546,0.000000,1.461157,0.000000,1.177686,0.000000,0.000000 -601798.755000,4612165.550000,5283,6105,110.130592,169.147934,169.949600,157.900009,143.321487,132.147949,131.478531,129.404144,130.048767,134.081833,135.503326,147.908264,166.073578,184.495056,198.371094,211.428940,214.577698,204.817368,181.247131,158.883484,146.957855,143.610748,137.990906,106.577690,89.164467,105.180992,120.552902,90.577698,43.866966,16.973572,12.544646,9.558693,12.231422,10.150430,10.791751,5.717365,1.304961,0.243802,0.446283,0.003306,0.000000,0.000000,0.158678,0.174380,0.000000,2.095868,0.000000,1.635537,0.000000,0.000000 -601817.155000,4612165.550000,5375,6105,100.274391,170.456207,167.200012,156.795044,142.059509,129.588440,130.158691,128.175217,128.398361,132.315720,132.142151,144.109100,163.795044,181.869431,196.481003,209.026459,212.753723,202.183487,178.638031,157.481003,144.943817,140.257858,134.290924,104.943810,85.596703,102.117363,117.935547,87.315712,41.985146,14.864481,12.208282,6.081006,9.814065,8.520677,9.806626,4.419015,1.009093,0.064464,0.017356,0.080992,0.000000,0.000000,0.245455,0.090083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.955000,4612165.550000,5429,6105,102.000847,167.207458,168.414062,154.042160,137.620667,127.538033,129.397537,125.331421,125.438858,127.471916,129.579346,140.893402,160.422333,178.306625,191.843811,203.488449,205.364471,194.579346,172.529770,150.149597,139.711578,136.538025,130.009109,100.100006,82.827293,98.248772,112.248772,82.157875,39.190926,15.509936,11.819027,8.534726,8.136380,9.585967,12.132248,5.488438,0.450414,0.188430,0.180166,0.000000,0.076860,0.000000,0.030579,0.048761,0.000000,0.000000,0.000000,0.000000,0.000000,2.508265 -601832.955000,4612165.550000,5454,6105,106.409103,170.921509,170.194229,156.078522,141.326462,129.450424,130.202484,127.326447,127.020668,129.367767,131.194214,143.235550,163.185974,178.103317,194.458694,206.359528,208.318192,196.400848,174.252075,152.268616,141.376053,138.805801,131.954559,102.152908,84.169441,99.070267,115.987617,85.318199,40.880184,15.736382,11.995887,8.359518,11.075223,11.252083,11.731419,5.604141,0.783473,0.263637,0.000000,0.279339,0.014876,0.000000,0.214051,0.290910,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601838.355000,4612165.550000,5481,6105,117.061996,171.797516,166.252060,155.516525,140.491730,129.276886,129.475235,126.582672,127.301674,129.458694,130.103317,142.061981,161.367767,178.491730,192.632233,205.318176,207.863632,195.929749,172.657028,152.334717,140.119827,137.334732,130.863663,101.582649,83.648781,98.855377,112.681831,84.359520,40.508289,17.000019,11.896713,11.328113,9.376048,10.784313,12.206628,4.956208,0.991737,0.719836,0.000000,0.136364,0.064463,0.014050,0.026446,0.257852,0.000000,0.000000,1.402479,0.000000,0.000000,0.000000 -601846.555000,4612165.550000,5522,6105,111.196709,172.717361,168.535538,156.957031,141.684311,128.791748,130.171921,127.196709,127.419846,129.998367,130.213242,142.758682,161.386780,179.229752,193.403336,206.684326,208.006638,195.634735,172.676041,152.080994,140.535553,137.816528,131.527283,101.196709,83.932243,98.229767,111.304146,82.130592,38.990097,15.568614,11.957044,10.383488,9.630595,9.712415,10.666131,3.487609,0.615704,0.000000,0.121488,0.071901,0.062810,0.000000,0.242149,0.114050,0.000000,0.000000,0.000000,2.402479,0.000000,0.000000 -601859.755000,4612165.550000,5588,6105,119.032242,183.858704,169.577698,155.792587,141.032257,130.007446,131.238861,128.544632,128.238861,132.817368,131.073563,144.643814,161.569443,180.238861,193.181015,207.329773,209.602493,195.619034,173.652084,150.619034,140.825638,138.453735,131.536377,102.445457,85.238861,99.048782,111.346283,79.379356,37.718201,15.607456,11.957870,10.747123,8.004974,9.166958,12.366959,5.915710,0.403307,0.052066,0.185124,0.018182,0.000000,0.000000,0.116529,0.289257,0.000000,1.946281,0.000000,0.000000,0.000000,2.338017 -601866.755000,4612165.550000,5623,6105,115.311584,180.997543,171.171097,159.071930,141.542984,128.518204,131.113235,129.460342,128.716553,134.336380,131.410767,144.914886,161.303329,181.071930,195.303314,208.212402,210.427277,196.881821,173.832260,153.576050,142.551254,139.493393,133.336380,102.782661,85.947952,100.551254,110.071922,81.369438,37.782665,14.075225,12.121507,12.133897,8.756215,9.213240,11.757866,5.000836,1.000002,0.057851,0.047934,0.071901,0.014876,0.000000,0.028099,0.000000,1.618182,0.000000,0.000000,0.000000,0.000000,0.000000 -601873.555000,4612165.550000,5657,6105,126.114899,188.172729,170.561157,160.321503,143.288452,130.445480,131.271927,129.883484,130.346298,135.908279,133.453735,146.271927,164.329758,183.428925,198.371078,212.635544,213.536362,199.329758,176.519836,155.569427,144.751266,142.007462,136.718201,106.478531,87.883492,104.313240,113.982666,82.098366,39.156219,15.233077,12.428945,13.498363,8.120678,8.976049,10.037205,4.198354,0.617357,0.247935,0.185124,0.000000,0.190084,0.000000,0.064463,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601883.355000,4612165.550000,5706,6105,120.021507,190.847946,172.922333,162.352081,144.029770,132.277695,133.467789,131.219849,134.095886,140.128937,137.087616,149.839676,168.137207,188.029770,202.401672,217.682663,219.897537,203.352081,182.071091,161.649597,151.335556,147.376877,142.509109,109.600014,93.161995,107.385139,118.963646,83.690926,41.649609,15.971918,12.955390,14.579355,10.734727,12.296711,12.971917,7.597531,1.174382,0.523968,0.265290,0.095042,0.033885,0.038017,0.290910,0.028099,0.000000,0.000000,0.000000,1.161157,0.000000,0.000000 -601899.155000,4612165.550000,5785,6105,88.217369,144.615723,148.037201,135.524811,122.921501,115.400841,114.020676,111.954559,113.103325,115.607452,118.863655,129.938034,148.764481,166.268600,180.243805,193.045456,196.987610,187.665283,165.524796,145.053726,134.227295,131.971085,127.318199,98.904976,80.128113,97.376053,108.475220,79.078529,37.607464,13.809935,11.574399,7.787618,8.747952,8.528942,11.050430,5.943811,1.072729,0.343802,0.280167,0.082645,0.000827,0.000000,0.178513,0.362811,0.000000,0.000000,0.000000,1.530579,0.000000,0.000000 -601914.155000,4612165.550000,5860,6105,112.652077,148.172745,147.288452,131.990921,119.114891,110.007446,107.271912,106.354553,106.197533,109.784309,111.585960,123.577698,142.271927,158.288452,172.371094,183.693405,186.395889,178.263657,156.412415,136.437210,127.875221,124.181000,119.172737,92.949600,75.032242,90.693398,104.544640,76.693398,38.271919,14.366960,10.833903,12.034726,11.231423,12.176877,11.022331,9.620672,1.819011,0.740497,0.697522,0.092562,0.435538,0.538017,0.353720,0.650415,1.435537,4.693388,1.169422,3.616529,8.766116,2.077686 -601233.155000,4612155.550000,2455,6155,219.594238,235.321487,235.205795,230.552902,227.809097,235.123138,244.420670,247.420670,254.875214,264.875214,276.296722,292.685120,312.734711,329.065277,340.990906,348.941345,345.238861,324.618988,267.966125,230.627274,216.321487,205.073563,194.172745,160.569443,142.817368,139.858704,129.404144,85.205803,37.701672,19.650431,17.652086,15.714068,14.600018,16.742994,15.054563,8.033899,4.094223,2.201659,2.059507,1.028928,1.741326,0.715704,0.905788,1.178514,8.023968,0.000000,2.218182,2.233058,1.416529,0.000000 -601238.955000,4612155.550000,2484,6155,219.425629,230.359497,233.152908,229.838837,229.045456,235.020660,245.235550,251.285141,257.838867,270.210785,282.657043,297.491760,317.425659,335.309937,347.929749,356.739655,354.012390,331.582672,271.888458,230.219009,216.491730,206.566116,193.954559,161.690109,142.615723,139.028946,123.028938,81.219025,35.805809,18.659523,17.632252,13.586793,14.765307,12.112413,13.279355,7.678526,3.524802,2.142982,0.695043,1.041325,0.914877,0.014876,0.957028,2.527275,1.464463,1.458678,0.000000,2.128099,0.000000,0.000000 -601247.555000,4612155.550000,2527,6155,222.976044,224.951248,231.124802,228.587616,228.810760,234.562820,245.711578,252.116547,258.901672,271.620667,284.133118,300.496704,321.976044,339.000854,350.372742,358.488434,354.645477,329.967773,266.587616,224.529770,208.752899,198.306625,187.554565,151.976044,133.562820,130.736374,118.025635,73.314888,34.604149,19.974400,17.050432,14.264480,15.070267,15.638035,12.091750,7.134723,4.352904,2.719841,0.945457,1.306616,2.259509,0.273554,1.701656,1.149588,0.000000,0.000000,1.213223,0.000000,1.341322,2.187603 -601258.755000,4612155.550000,2583,6155,211.771927,225.978516,228.466141,225.292587,224.482666,229.209930,238.350433,243.251236,250.928925,262.242981,274.358704,289.218201,308.127289,324.193420,337.267792,343.358704,341.647949,320.317383,263.193420,223.152084,209.234726,199.276047,188.218201,155.028122,136.986786,135.862808,121.342163,79.044647,35.259525,19.985970,17.110764,10.694230,14.403324,12.319026,14.475225,7.869436,2.967777,2.815709,1.842978,0.994217,1.309094,0.058678,1.252896,1.405788,1.419008,0.000000,3.520662,1.138017,1.331405,6.638017 -601269.555000,4612155.550000,2637,6155,125.262825,143.611572,140.034698,134.818192,126.685966,122.148773,122.936378,121.911583,121.176048,124.390923,130.134720,139.917358,153.815689,167.109100,177.009933,186.150421,188.803314,186.166946,173.555374,159.456192,151.150406,146.985123,142.472717,121.539680,103.374397,118.076874,141.563629,127.646301,69.026466,17.358696,12.952085,13.275222,19.609936,33.020679,45.447952,36.364479,3.488436,0.561158,0.090083,0.230579,0.348761,0.152893,0.000000,0.076033,5.447108,2.811571,1.212397,2.358678,2.686777,0.000000 -601276.355000,4612155.550000,2671,6155,0.274380,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.036364,0.785125,0.547935,0.583472,0.000000,1.697525,14.074394,24.541336,36.280186,33.912411,39.372746,41.709106,38.651257,45.898365,35.894230,20.302488,15.761164,11.561988,0.122314,0.000000,2.120661,0.918182,3.352893,4.164464 -601352.955000,4612155.550000,3054,6155,152.978516,180.953705,167.267761,156.821472,141.895874,132.400024,134.375229,132.267792,132.391754,136.697540,138.457855,153.961975,176.292542,194.251221,208.433044,224.548752,227.218170,218.276016,197.747101,177.003296,164.565277,162.036346,154.854538,119.135559,98.028122,116.259521,139.738846,107.094231,49.044647,18.370266,14.077705,15.793406,13.912414,15.861176,19.454563,12.097536,3.539677,0.800003,0.504960,0.123968,0.048760,0.000000,0.000000,0.000000,0.000000,1.215703,0.000000,0.000000,0.000000,0.000000 -601356.555000,4612155.550000,3072,6155,145.423981,179.283493,165.035553,158.771103,143.952896,133.985977,135.498367,133.151260,132.812424,138.308289,138.845459,154.184311,175.564484,193.209106,209.258682,223.052078,228.374390,217.142975,196.167786,173.523163,161.952911,159.506638,151.936371,116.688454,93.994240,113.572746,135.762833,104.184319,48.680183,16.869440,13.812415,16.538860,11.630596,13.527288,16.707457,8.610755,1.534716,0.235539,0.031406,0.148761,0.128926,0.474380,0.000000,0.033885,0.000000,1.247108,2.038017,0.000000,2.304132,0.000000 -601362.355000,4612155.550000,3101,6155,150.485977,192.791763,171.535553,162.213242,148.940521,137.709106,138.494232,137.485977,137.138870,141.535553,141.089279,156.643005,176.180191,193.238037,208.386795,222.485977,225.014893,215.857880,196.105804,177.312424,163.923996,161.609940,155.618210,122.419846,99.461174,118.039680,148.461182,116.213234,56.353737,18.271093,14.147126,13.776049,11.687620,18.085970,21.434731,11.650426,2.261163,0.524795,0.178515,0.192562,0.000000,0.000000,0.000000,0.010744,0.000000,0.000000,1.085124,0.000000,2.385124,0.000000 -601371.755000,4612155.550000,3148,6155,152.245483,184.146301,171.319855,160.989288,147.592590,135.237213,135.914902,133.807449,134.038864,139.633911,138.931427,150.890106,168.352921,186.038864,200.096725,213.212418,216.220688,208.220688,192.220688,172.774399,160.989288,159.658707,157.609116,122.022331,101.650421,122.022324,154.592590,125.402496,59.096710,16.865309,14.328118,13.100017,14.395885,18.362831,24.233078,14.976875,0.686780,0.227273,0.023141,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601379.555000,4612155.550000,3187,6155,129.957047,166.808273,144.072739,134.948776,118.932243,106.163651,105.923981,101.312416,100.568619,104.791748,99.808289,109.899185,121.485962,135.023148,145.262817,156.485962,158.097534,151.370255,143.271088,131.386795,123.155388,123.031418,122.072739,94.494240,76.304146,98.428123,136.973557,121.684311,64.138863,16.176050,11.097540,19.599192,17.182661,26.231422,38.089279,32.023159,1.513227,0.109091,0.122314,0.023967,0.000000,0.000000,0.000000,0.000000,1.125620,2.160331,0.000000,0.000000,1.048760,0.000000 -601455.155000,4612155.550000,3565,6155,102.496704,154.058685,154.306625,145.463654,132.215714,119.843811,117.248772,113.967781,112.620674,113.661995,114.248772,127.504974,147.100006,165.091751,182.513229,198.810760,204.009109,203.678528,189.852081,167.852081,152.893402,150.100006,148.281830,104.017365,79.207451,108.298363,169.967789,153.116547,76.257034,20.947126,13.480185,9.226460,15.138862,22.021505,31.257046,18.740513,0.680168,0.002479,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.955000,4612155.550000,3579,6155,99.416550,146.474396,153.242996,145.433075,132.705811,120.565308,117.209938,116.226463,114.466133,116.532249,118.242996,131.317368,151.259521,166.813248,182.714066,195.242981,200.614883,202.267776,185.623154,164.879364,152.771927,151.838043,149.127289,112.375229,85.821510,113.366959,169.705811,151.358704,76.887619,17.902496,13.557044,9.435552,15.290928,22.722334,32.358696,22.189276,1.099176,0.000000,0.032232,0.000000,0.000000,0.000000,0.021488,0.000000,0.000000,0.000000,2.137190,0.000000,0.000000,0.000000 -601462.155000,4612155.550000,3600,6155,98.009933,148.456192,151.836365,143.042969,130.158691,121.076050,118.282661,115.927292,115.927292,118.704147,120.001671,131.737213,148.811569,163.340500,177.894226,188.547119,193.861160,195.968597,181.836380,162.257858,152.662796,150.588425,150.290909,117.224808,92.704147,116.852913,166.522324,152.373550,81.067787,20.045473,13.662829,9.242990,17.061174,25.905804,40.216545,26.737209,0.404961,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601466.555000,4612155.550000,3622,6155,81.556213,135.245468,137.617371,130.071915,114.931412,106.923149,103.815712,100.187614,97.857033,99.518188,99.840508,109.022324,122.716537,136.485138,148.468597,159.509933,164.790924,163.253723,153.055374,139.857040,128.939682,128.328110,126.609100,98.385963,75.708282,99.352905,143.666946,138.774384,75.476868,16.670267,11.509936,5.656210,14.372745,27.104977,39.253742,30.551260,0.313224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601475.755000,4612155.550000,3668,6155,104.402489,161.253723,158.452072,149.989273,133.311584,122.881828,115.609100,108.055382,104.187614,102.840508,98.981003,102.509926,109.509926,116.493401,124.460342,132.633896,134.526459,131.890091,122.361168,109.253731,99.501663,96.733070,95.609100,69.700020,56.369442,76.204140,109.700012,100.427284,53.295063,13.665307,8.691754,4.550424,8.081832,11.757042,21.167788,11.403319,0.228101,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601478.355000,4612155.550000,3681,6155,125.009102,177.670258,176.513229,170.554565,157.670258,148.157852,145.033890,142.364471,143.009109,144.620651,145.893402,157.992569,174.182663,189.909927,204.843811,217.967804,223.323166,218.852097,200.529770,179.695053,168.876877,165.571091,161.372742,127.777702,106.529762,126.488441,155.571075,128.058685,60.496712,19.044647,14.670267,8.413237,13.747952,18.115723,24.508282,10.698362,2.644633,0.231406,0.480993,0.490910,0.000000,0.000000,0.051240,0.261157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601484.355000,4612155.550000,3711,6155,112.266136,175.588440,172.481003,166.530594,153.158707,140.522339,137.985153,133.034729,130.952087,131.993408,131.009933,137.671097,148.745483,160.447937,170.307449,179.505798,181.952057,177.406616,164.431412,148.497543,139.943832,137.092590,134.745468,107.282661,91.290924,107.646301,134.059525,114.067787,57.538860,16.090927,12.249605,6.514889,11.647950,13.809107,21.280182,13.952909,0.792564,0.178513,0.000000,0.000000,0.077686,0.000000,0.085951,0.000000,0.000000,0.000000,2.447934,0.000000,0.000000,0.000000 -601487.555000,4612155.550000,3727,6155,132.757874,186.030594,179.369431,171.129761,157.063660,144.468597,140.625641,136.328110,132.534714,134.319839,131.022324,137.914902,146.890106,156.113251,165.534714,175.088440,176.146286,173.212402,160.154572,145.063660,138.005814,134.592575,133.790924,106.931419,92.022339,106.700020,132.493393,115.790916,57.766136,17.538036,12.162828,8.006624,11.436380,17.704149,25.154564,12.037204,1.214052,0.026446,0.054546,0.224794,0.000000,0.042976,0.000000,0.361157,0.000000,0.000000,0.000000,2.694215,0.000000,0.000000 -601501.955000,4612155.550000,3799,6155,118.428947,171.081818,169.255371,158.858688,144.222321,131.817368,130.106613,124.833893,122.941330,122.552902,122.635551,132.544632,148.883469,162.214050,174.040497,185.073563,186.602478,179.957855,161.073563,142.131409,131.222321,129.957855,126.627281,95.833893,79.032249,96.891747,120.693398,92.883484,41.453739,16.502497,11.511589,10.075222,11.030594,10.605801,12.703320,6.797534,2.546286,0.464464,0.859506,0.319836,0.143802,0.002479,0.642977,0.152066,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.555000,4612155.550000,3812,6155,117.089279,169.328934,166.857864,154.981827,141.006622,128.006622,125.940514,121.882660,118.758690,119.733902,118.171913,128.452911,144.477692,158.932236,170.684311,180.733887,182.733887,175.006622,155.568604,136.130600,125.031418,123.461174,119.618195,89.684311,72.824814,89.576874,113.676048,85.932243,36.684319,13.336383,10.874400,8.747949,8.667784,9.575223,11.295058,5.419846,0.798349,0.338018,0.135539,0.067769,0.192562,0.000000,0.504960,0.317356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601507.355000,4612155.550000,3826,6155,122.554565,158.802490,158.777695,148.356216,132.645462,119.331421,117.232246,112.752914,112.785965,113.223991,113.248779,124.951256,142.265305,156.984314,172.678528,183.538025,185.595886,178.356216,163.802490,145.703323,135.397537,136.166122,136.009109,104.298363,81.637199,103.711586,143.885132,118.926460,54.356220,14.638860,12.364482,8.686791,11.450429,15.571918,20.677702,11.209105,0.368596,0.287604,0.000000,0.304133,0.147108,0.000000,0.049587,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.755000,4612155.550000,3853,6155,84.876038,155.272720,150.909088,136.198349,120.685966,108.380173,104.867775,99.495872,97.677696,96.041328,93.008270,100.719017,110.768600,121.413239,128.867783,136.768600,137.983475,133.735550,122.900841,112.512405,103.347115,103.148766,100.909096,76.355377,59.429771,78.669426,113.942162,100.363647,51.380184,12.597540,9.173573,10.079356,11.508283,16.015720,27.618200,16.525639,0.699175,0.328926,0.095868,0.000000,0.000000,0.594215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601515.755000,4612155.550000,3868,6155,100.570259,155.781021,144.392578,131.095062,114.533073,100.392578,99.359520,96.070267,94.227287,95.103325,94.276878,102.566132,115.103325,126.648773,136.359543,146.516556,149.896729,144.838882,135.367783,124.566132,115.805801,115.557869,113.590927,87.260345,70.342995,89.863655,123.995880,109.995880,54.855389,14.429770,10.326466,11.432246,14.193406,22.745474,32.896713,18.488445,0.718184,0.301654,0.032232,0.059504,0.000000,0.000000,0.000000,0.000000,3.316529,0.000000,0.000000,0.000000,0.000000,0.000000 -601548.755000,4612155.550000,4033,6155,65.963654,135.949585,137.404129,127.230591,111.825630,100.800835,99.709930,98.040504,96.751251,99.726456,100.519844,111.156212,127.181000,142.428925,153.800827,164.676865,167.404129,161.759506,149.726456,134.734726,123.255386,121.949600,124.081841,93.825638,72.792587,96.528107,142.900009,129.990921,68.569443,14.761176,11.280186,7.540509,11.651258,20.376051,29.255394,19.781008,0.553722,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.436364,0.000000,0.000000,0.000000,4.180992 -601553.355000,4612155.550000,4056,6155,77.902496,157.158676,150.142151,142.117371,124.638031,115.762001,114.257866,112.588448,112.018196,114.654564,116.522331,128.514069,145.960342,163.406601,176.233047,188.695862,192.414871,186.084290,172.976852,153.365280,142.332245,141.786789,140.927277,108.786797,86.233078,109.464478,146.844635,123.538864,60.414894,16.581011,12.811589,7.583485,10.549603,15.945471,21.511587,10.561996,0.909095,0.192564,0.079339,0.078513,0.009918,0.169422,0.005786,0.063637,1.291736,0.000000,0.000000,0.000000,0.000000,0.000000 -601560.155000,4612155.550000,4090,6155,108.116539,155.554565,157.066956,145.356216,133.075226,122.215714,121.347946,120.174393,118.926460,122.909927,124.719849,135.050430,153.538025,169.538025,183.810760,195.331421,198.678528,191.471909,174.984314,155.802490,143.091766,141.967789,141.009109,108.909927,87.331413,108.149597,140.083481,112.579361,55.290100,17.967787,12.819027,9.009108,10.768613,12.987620,15.390927,8.770260,1.107440,0.028100,0.057852,0.030579,0.000000,0.159504,0.037190,0.254546,1.137190,0.000000,0.000000,0.000000,2.737190,0.000000 -601570.955000,4612155.550000,4144,6155,97.750435,154.436371,159.981827,148.684311,134.105789,124.130585,124.064468,121.717361,121.667778,124.502487,126.361992,138.403336,155.973557,173.609924,187.593399,200.915710,202.287613,194.229752,175.386780,153.552078,143.254562,140.006638,137.163666,105.849594,86.543823,104.444633,127.692566,99.064476,47.601677,16.321507,12.469441,7.870263,9.787621,10.085138,11.915717,5.815711,0.738844,0.162811,0.316529,0.000000,0.086777,0.000000,0.536365,0.182645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601582.955000,4612155.550000,4204,6155,96.416542,155.664459,165.573547,152.986801,137.986801,129.383484,129.755386,126.771912,127.193398,129.069427,132.152084,142.590103,161.127258,178.548752,191.722305,205.085938,208.970230,200.350403,181.284286,158.019836,146.342163,142.871094,138.581833,107.788452,87.862831,106.011589,125.218193,93.614899,46.838036,18.888449,12.598368,10.299189,12.941340,13.432249,14.416547,6.450422,0.802482,0.176860,0.000000,0.421488,0.345456,0.000000,0.380166,0.393389,0.000000,0.000000,1.151240,0.000000,0.000000,0.000000 -601597.155000,4612155.550000,4275,6155,110.314888,161.860321,166.124786,154.992554,140.116531,130.876862,128.273560,128.430588,128.075226,129.852081,133.314880,144.959503,164.471893,179.819000,196.554535,208.422318,214.075211,203.538010,181.215698,159.347931,146.835541,144.108261,141.918182,108.207451,88.571091,106.571091,123.736374,91.075218,43.860352,17.398367,12.901670,8.077702,9.510759,11.682663,10.816545,4.948768,1.196696,0.635539,0.291736,0.078513,0.080165,0.026446,0.183472,0.355373,0.000000,4.217356,0.000000,1.171075,0.000000,0.000000 -601616.555000,4612155.550000,4372,6155,100.097542,165.742172,172.593414,159.221512,144.337219,135.428116,134.609940,131.560349,132.452911,135.114059,137.899200,150.428101,169.353745,186.626450,201.833084,214.444656,217.890930,208.998367,185.138855,161.353745,151.254547,148.089279,144.527298,112.304146,93.874405,110.378532,123.651253,92.419861,46.221508,17.709934,13.138863,10.576048,10.834728,12.469440,16.890926,5.808274,1.137193,0.917358,0.558678,0.037191,0.152893,0.000000,0.186778,0.728927,3.152066,0.000000,0.000000,0.000000,2.657025,0.000000 -601645.155000,4612155.550000,4515,6155,95.965302,171.957031,173.568604,159.808273,144.841339,133.907455,135.386795,133.535553,134.006622,136.188446,138.808289,151.477692,170.717361,188.180176,203.287613,216.353729,220.899185,208.634720,185.254547,162.361984,151.064468,147.601669,143.618210,112.527283,93.469429,109.684303,122.361992,89.229759,45.709110,17.352087,13.056217,11.576876,11.487621,11.867785,13.124809,7.030588,1.409093,0.680166,0.345456,0.077686,0.346282,0.328100,0.557853,0.800828,0.000000,1.569422,0.000000,1.280992,0.000000,0.000000 -601659.955000,4612155.550000,4589,6155,105.864479,165.013245,172.467804,158.938873,144.178528,134.269440,133.732239,132.641342,132.476044,134.996704,137.922348,149.550446,169.649612,186.261169,200.938858,214.947113,219.054565,206.757034,183.013229,159.302505,148.847961,147.087616,143.327286,111.285965,90.740509,107.029762,120.600014,86.120682,43.319027,16.966135,13.029771,8.891750,8.807455,9.553734,10.697536,4.279346,0.678514,0.295042,0.063637,0.000000,0.059504,0.000000,0.159505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601666.755000,4612155.550000,4623,6155,121.046295,177.583466,173.500824,160.517349,144.930573,134.211578,136.641342,133.533890,134.500839,138.013229,138.980179,150.748764,170.426437,187.145447,202.492554,216.790085,220.409912,207.814880,185.409912,161.831406,150.004959,147.748764,144.418182,112.087616,92.211586,107.740509,122.029755,87.847939,44.509117,17.900019,13.128944,12.721504,11.014068,11.183487,13.238032,6.774390,0.987606,0.413224,0.000000,0.000000,0.161158,0.000000,0.233059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.755000,4612155.550000,4648,6155,101.048782,174.223160,173.542160,160.446304,143.842987,131.842987,133.831421,131.682663,132.319016,135.261169,137.343811,148.294235,168.343811,185.657867,200.715714,213.046295,216.343811,205.550430,181.252899,158.624802,147.666122,145.533890,140.509109,111.294228,91.633072,109.153732,122.285965,88.715714,44.947128,16.353737,12.773573,12.466133,10.763655,12.438858,15.962826,7.677696,2.287608,1.424796,1.220663,1.188431,0.852067,0.321488,0.094216,1.318184,0.000000,0.000000,0.000000,0.200827,0.000000,0.000000 -601676.955000,4612155.550000,4674,6155,128.491745,181.541351,175.938049,164.276886,147.450439,137.136398,137.466980,135.789291,136.012436,138.326477,138.995895,152.483505,171.822342,189.045486,203.301666,218.227280,219.921494,208.491730,185.177719,162.987625,152.128128,149.367798,143.136398,112.847122,93.301666,107.466957,121.458694,90.433899,44.979359,17.356215,13.012415,13.112412,11.700844,11.006628,15.186791,6.631414,1.333061,0.638845,0.027273,0.033885,0.192562,0.000000,0.238844,0.500827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.755000,4612155.550000,4693,6155,103.838860,182.388443,172.785141,160.404968,144.909103,133.396713,134.528946,133.132248,132.487625,136.595062,136.966965,150.652908,168.000015,186.628113,201.768616,215.281006,217.694229,205.892578,182.099182,160.793411,147.727295,146.528946,141.545471,108.776878,91.942162,104.479355,118.702492,86.115715,41.842995,16.857044,12.867787,13.827291,11.006627,11.388447,12.608280,5.227282,0.543803,0.615704,0.141323,0.000000,0.071901,0.000000,0.314877,0.610745,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.755000,4612155.550000,4723,6155,110.228111,182.856216,174.600006,162.343811,146.484314,134.170258,134.814896,133.682663,134.476044,137.955383,137.566956,150.566956,169.856216,187.269440,201.930588,216.657867,219.162003,206.203323,183.401672,162.021500,150.021500,147.004974,144.145462,109.335548,91.682655,108.740509,120.261169,87.095879,44.781837,17.010763,13.104151,12.576874,10.323982,10.014066,11.101667,6.265298,1.410746,0.423142,0.189257,0.023141,0.000000,0.021488,0.260331,0.151240,0.000000,2.795868,0.000000,0.000000,0.000000,0.000000 -601690.355000,4612155.550000,4741,6155,120.680183,191.790100,178.757034,163.252914,147.327286,134.319016,134.285950,131.690918,132.847946,137.178543,136.963669,150.112411,169.244644,187.302490,202.310760,215.864471,218.029770,205.881012,182.525635,161.583481,150.583496,147.847946,143.781830,111.186790,92.723976,108.533897,120.616547,89.666130,43.823162,17.485144,13.071095,13.381835,11.790101,12.947952,11.667785,8.414887,1.478515,0.930580,0.899175,0.597521,0.795869,0.348760,0.290910,0.610745,6.144629,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.355000,4612155.550000,4771,6155,122.633904,191.138016,176.014053,163.733063,146.576050,135.394226,136.642136,133.047119,134.757874,139.047104,138.476868,150.873566,169.576019,187.923141,203.154541,218.658676,218.666931,205.576019,183.939667,161.509933,151.683487,147.666946,143.154541,111.063652,93.171089,109.832253,120.931419,87.047127,43.096710,17.210762,13.014069,13.485141,10.400841,11.285140,14.671916,6.179349,1.305787,0.209918,0.084298,0.171075,0.157852,0.000000,0.539670,0.214050,0.000000,1.555372,0.000000,0.000000,2.036364,0.000000 -601704.955000,4612155.550000,4814,6155,121.650429,195.559509,178.171082,169.162827,151.030594,138.534714,137.914886,135.443817,137.038849,144.038849,141.650421,153.633896,172.716537,191.749603,207.138031,221.650421,222.675217,208.278519,186.923157,164.204147,153.063644,149.881821,145.427277,112.187622,93.675224,112.138031,123.088448,88.402504,44.931427,18.466963,13.220680,15.128942,10.942993,13.814067,13.333900,7.915714,1.457028,0.178513,0.355373,0.153720,0.425621,0.029752,0.386778,0.346282,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601714.755000,4612155.550000,4863,6155,132.064484,194.631424,179.471909,168.290100,151.926453,136.554565,137.554565,135.124802,134.323151,141.422333,138.000839,150.794235,169.306625,187.703323,204.819016,219.298355,221.381012,206.612411,187.033890,165.223984,154.364471,151.504974,146.463654,113.414062,96.124809,114.471916,122.438858,89.174393,45.023987,17.354563,13.314895,16.295059,9.642164,11.029767,12.347123,6.485133,0.808266,0.318183,0.336364,0.109092,0.390083,0.328926,0.159505,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601724.755000,4612155.550000,4913,6155,100.564468,162.448776,169.886795,158.043823,142.514877,133.200836,131.134720,129.200836,130.696701,131.721497,134.225632,146.498367,165.779358,182.523148,196.465302,208.316528,211.027283,201.134720,178.266953,157.143005,145.746292,142.184311,136.209091,106.407448,87.911575,105.638847,118.192566,86.266945,41.655392,15.984316,12.382664,8.101666,10.123158,9.910760,11.689272,4.945463,1.751242,0.199174,0.000000,0.005785,0.009091,0.000000,0.148761,0.239670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.355000,4612155.550000,4941,6155,98.172745,159.390915,168.762817,154.308273,141.523148,131.581009,131.283493,128.415710,128.126465,130.911591,133.944641,145.845459,164.134720,181.506622,196.250427,208.283478,211.481812,200.837204,177.655380,155.010757,144.895050,142.002487,135.118195,105.019020,87.002502,104.382660,117.217369,86.671921,42.109940,15.088449,12.283490,10.070265,8.112412,10.137207,10.518196,5.892570,0.266116,0.000000,0.009918,0.000000,0.247935,0.000000,0.238844,0.057851,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.155000,4612155.550000,4975,6155,107.251259,162.665283,169.144623,156.871902,141.078522,132.417374,132.119858,130.334732,130.260345,132.144638,135.367783,147.549591,166.309921,184.376038,197.028931,211.194214,212.417358,202.210739,180.657028,156.971069,147.119827,143.731400,138.681839,107.285141,88.400841,105.417374,119.012413,86.962830,43.797535,16.104149,12.607456,9.438858,10.181009,11.616546,12.039684,6.347944,0.709919,0.448761,0.009918,0.113224,0.096694,0.295868,0.187604,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.555000,4612155.550000,5027,6155,103.328934,162.229752,170.750427,157.651260,141.651245,133.312408,133.155380,129.783478,130.271088,132.626450,134.287613,147.138855,166.395050,183.651245,197.155396,210.535553,212.907455,201.419861,179.287613,158.023163,146.271088,142.857864,137.072739,107.246284,88.295876,104.461166,119.543808,87.295876,43.932251,17.155392,12.461176,10.170264,11.611588,9.531423,10.776050,6.474391,0.823968,0.016529,0.163637,0.000000,0.004959,0.000000,0.019835,0.407439,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601764.555000,4612155.550000,5112,6155,111.221497,165.171906,168.485962,155.750427,141.395050,132.345459,131.609924,130.328934,128.213226,132.213226,133.882645,147.287613,164.304138,182.403336,197.114075,209.039688,212.180191,201.229782,179.213242,157.171906,145.915710,141.923981,136.345459,106.221497,86.436371,103.733894,118.659508,88.254555,42.362007,16.457870,12.395061,7.838029,9.999191,10.694230,9.803321,4.435545,1.293391,0.114050,0.409092,0.018182,0.000000,0.000000,0.057851,0.072727,0.000000,0.000000,0.000000,1.579339,0.000000,0.000000 -601774.155000,4612155.550000,5160,6155,119.626450,162.990082,167.271088,157.320663,144.213226,134.312408,132.469421,130.800018,130.180176,133.923981,135.907440,147.593399,166.576859,184.295883,197.386795,211.114075,214.527298,204.320679,180.750443,158.204971,147.221497,144.229752,138.709091,106.824806,87.725632,104.295883,118.750427,87.750427,43.692585,15.654563,12.609936,7.957039,8.278529,10.766958,10.289272,4.794223,0.196695,0.061984,0.225620,0.005785,0.071901,0.000000,0.018182,0.387604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.955000,4612155.550000,5189,6155,102.126472,162.068619,165.985962,156.010757,141.771088,131.663651,130.688446,129.903320,129.614059,132.779358,134.903320,146.861984,165.721512,182.779343,197.903305,210.250427,213.440506,202.845459,180.795868,158.357864,145.448761,142.374390,137.209106,107.060349,87.233902,104.589272,118.382660,87.225632,44.192577,16.188448,12.473573,7.280179,9.663653,11.026464,12.195058,4.500009,0.419009,0.276033,0.206613,0.000000,0.004132,0.000000,0.176860,0.201653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.155000,4612155.550000,5210,6155,108.066956,164.174393,165.860336,156.843811,141.157867,133.058685,131.893402,130.075226,129.893402,133.133072,135.075226,147.414062,165.868607,183.166122,197.645462,210.604141,214.091751,203.777695,180.083481,158.290100,146.736374,143.430588,137.100006,107.529762,86.703316,103.645470,118.587616,86.199188,43.546303,16.161175,12.463655,8.126460,9.554563,9.659522,10.958694,5.780174,0.491736,0.085124,0.026447,0.007438,0.000000,0.000000,0.292563,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601791.155000,4612155.550000,5245,6155,93.033897,167.199188,170.223984,156.108276,142.000839,131.959518,130.521500,128.752899,129.273560,132.612411,135.372742,146.414062,165.414062,183.314896,197.579346,210.529770,212.769440,203.678528,179.951248,157.810760,146.835556,142.521500,137.009109,106.009094,87.405792,104.116531,118.504967,88.339676,42.852081,16.180183,12.455391,8.444643,10.509106,11.354563,11.580181,4.978521,0.631406,0.426447,0.230579,0.000000,0.000000,0.039670,0.100000,0.277687,0.000000,2.033885,0.000000,0.000000,0.000000,0.000000 -601802.755000,4612155.550000,5303,6155,110.313240,167.379364,168.181015,157.643814,142.842163,133.726471,132.817368,130.511597,129.594238,134.106628,134.032257,147.114899,165.610764,183.833908,198.280182,211.437210,214.817368,204.900024,181.296707,158.941345,147.114883,143.073578,137.990906,107.280174,88.114899,105.313232,119.833893,89.428947,42.643822,18.296713,12.544647,6.828936,10.584314,9.347950,11.092577,3.961165,0.295868,0.143802,0.523141,0.000000,0.028926,0.000000,0.327274,0.402481,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601822.155000,4612155.550000,5400,6155,100.019020,168.432236,167.671906,154.415710,139.242157,129.407455,129.134720,126.291748,126.638855,128.952911,131.184311,142.481827,161.275208,179.085129,191.688431,205.680176,207.531418,195.457031,172.382645,152.101654,139.506622,136.861984,131.118195,101.597534,83.828941,98.597534,112.671913,82.407455,39.423988,16.359524,11.919854,11.617372,9.829769,10.339685,11.359520,5.736373,1.145457,0.292563,0.132232,0.142149,0.000000,0.069422,0.189257,0.263637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601834.955000,4612155.550000,5464,6155,114.825630,170.891754,168.255386,157.147949,140.858704,128.619019,130.238861,127.875221,127.255386,129.585968,131.106628,142.619034,162.503326,178.437210,192.214066,207.817368,208.577698,197.255386,172.751266,151.263657,140.073578,138.247131,131.081833,101.817368,83.412407,99.453728,111.362823,84.486786,38.842167,13.931423,11.916549,10.195884,9.894233,9.707454,11.032247,6.106620,0.601654,0.249587,0.328100,0.000000,0.000000,0.000000,0.191736,0.104133,0.000000,0.000000,0.000000,1.740496,0.000000,0.000000 -601846.955000,4612155.550000,5524,6155,109.884308,177.669434,167.669434,156.322327,143.057861,127.652901,130.066116,127.710754,127.041328,131.471085,131.099182,144.123978,161.991745,180.396713,193.884308,207.991745,208.785141,196.256210,173.727295,151.628113,140.619858,137.818192,131.363647,102.099182,84.991760,97.991745,112.206619,81.157043,38.702499,14.614895,11.942168,11.487617,7.877703,9.130596,10.267784,3.792569,0.452894,0.356199,0.218182,0.000000,0.000000,0.000000,0.021488,0.113223,0.000000,0.000000,0.000000,0.000000,1.428099,0.000000 -601859.955000,4612155.550000,5589,6155,120.527298,179.948761,169.114059,159.196701,140.337219,128.940506,130.337204,127.849594,128.097534,133.271088,132.659515,145.345459,163.320663,182.519012,196.411575,210.295868,211.502487,198.238022,175.155380,155.304138,142.932251,140.585129,134.981827,104.304153,87.072739,100.965309,112.469437,80.634727,38.957043,14.506630,12.271093,11.822330,9.801669,9.748776,10.999188,4.597529,0.767770,0.343802,0.314050,0.137190,0.000000,0.000000,0.024794,0.232232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601864.955000,4612155.550000,5614,6155,123.118202,188.647095,171.142975,160.035538,143.109924,130.903320,132.407455,129.820679,131.390930,137.192566,135.316544,148.498352,165.523148,184.159515,199.977661,214.432220,214.233871,200.680145,179.795868,158.448761,147.085129,145.250427,137.936371,108.027290,89.870262,105.167786,116.448776,84.126457,40.862007,16.186794,12.539689,14.376876,9.247125,11.769440,13.475223,4.535544,0.596696,0.402480,0.277687,0.157025,0.024794,0.000000,0.219009,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601869.155000,4612155.550000,5635,6155,127.363655,185.231415,173.008286,161.000015,144.371918,129.925629,131.421509,130.719025,131.297531,138.876053,135.652908,147.586792,165.677704,186.578522,200.644638,215.876053,216.702499,202.438034,180.677704,160.578522,148.107452,144.942169,141.363647,107.925636,90.512413,105.876053,117.818199,83.776886,41.685970,16.478529,12.851259,14.532248,10.921505,13.313240,12.145471,5.417365,0.491736,0.209091,0.142976,0.000000,0.012397,0.000000,0.266943,0.176860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601875.155000,4612155.550000,5665,6155,136.195877,195.435547,177.154556,163.650421,145.055374,133.162827,132.617371,132.311584,133.733063,139.774384,136.121490,148.336380,166.658691,185.931412,201.138031,217.766129,217.716537,201.766129,181.857040,160.261993,149.700012,146.253723,140.700012,108.609100,91.402489,108.857033,117.542984,82.154556,41.187626,16.933905,12.790928,14.263654,11.540513,11.095059,13.427287,7.001663,1.295870,0.322315,0.249587,0.026447,0.000000,0.033884,0.060331,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601884.955000,4612155.550000,5714,6155,85.300835,148.096725,149.584320,136.369446,124.914894,116.452087,115.286797,113.493408,115.071922,118.005806,119.997536,132.311584,150.724823,167.716553,182.038864,194.799194,198.708298,188.138046,166.262009,146.650436,136.352921,134.187607,128.609116,99.898361,82.642166,97.311584,109.129768,79.939690,36.038860,15.069440,11.691755,8.184311,10.360348,11.370264,12.133075,6.073563,1.180168,0.000000,0.320662,0.000000,0.009091,0.000000,0.304960,0.470249,0.000000,1.553719,0.000000,2.201653,0.000000,3.195042 -601901.155000,4612155.550000,5795,6155,90.337204,141.195877,142.956223,131.162827,117.592575,109.658684,108.749596,106.600838,107.352905,109.253731,112.873566,124.625633,142.782669,160.914886,175.733063,189.361160,191.542984,182.014053,160.559509,140.319855,130.047119,127.460342,121.790916,93.865295,75.038849,92.394226,107.336372,79.361168,36.576054,12.623983,11.071919,7.514891,8.934727,11.282660,11.816545,5.709099,1.029754,0.797522,0.068596,0.195042,0.000827,0.103306,0.197521,0.298348,0.000000,0.000000,1.201653,0.000000,3.604959,0.000000 -601914.555000,4612155.550000,5862,6155,95.804146,134.087616,137.451248,125.690926,110.881004,103.616539,101.352081,99.484314,99.938858,102.864479,105.930588,117.038033,135.219849,152.616531,166.062805,177.004959,180.004959,172.071075,150.988434,131.071091,121.748772,119.500839,114.690926,88.575218,70.608276,87.186790,101.153732,74.409927,33.971920,11.638860,10.426465,8.707454,8.921504,10.264479,12.304149,10.009103,2.200004,0.496696,1.230580,0.285125,0.182645,0.704133,0.183472,0.926448,5.685124,5.889256,5.809918,5.058678,4.045455,0.000000 -601223.155000,4612145.550000,2405,6205,228.175232,238.290924,234.464462,230.348755,228.885941,234.009918,243.687592,249.811584,255.927277,266.191772,279.398376,296.720673,317.795074,337.679352,352.340515,363.241333,364.158691,346.679352,291.282684,251.571899,238.753708,230.348755,217.472733,181.175217,159.133911,160.737213,153.323975,103.712410,46.456215,23.206629,19.770266,18.894232,18.192581,19.566961,20.081011,11.710760,4.726456,3.552074,2.148765,1.723145,2.365294,0.979341,1.980169,2.947938,1.485951,0.000000,1.161157,0.000000,4.193388,4.139669 -601228.555000,4612145.550000,2432,6205,217.577698,226.949600,229.825638,227.263657,224.544647,231.371094,242.288452,247.982666,256.685150,268.404144,280.974396,296.486786,317.007446,335.999237,347.734772,351.585999,348.230621,322.164520,254.900024,211.023987,196.974396,187.503326,174.172745,140.048782,123.255386,118.627281,105.990921,68.800842,31.164484,19.321507,15.833903,14.044645,14.591754,12.316545,11.918199,7.622325,2.836372,1.448768,1.867773,1.004961,0.782648,0.361158,0.842153,1.395871,2.596694,3.695868,0.000000,2.212397,2.676033,2.136364 -601236.755000,4612145.550000,2473,6205,214.459518,233.352066,229.343796,227.409912,225.004959,231.666107,242.128922,249.938843,257.674408,269.930603,283.814880,298.525635,318.195068,337.054565,348.476044,354.897522,349.872742,322.740509,256.054565,212.211563,196.542160,187.145462,174.327271,140.715714,121.765305,118.509102,104.666130,65.211586,30.120678,17.066961,15.847954,12.057866,12.462001,11.303325,9.857039,5.837199,3.397529,1.724799,1.458680,1.209094,0.998350,0.904133,1.896699,1.558680,4.231405,1.295868,1.261157,2.200827,3.949588,0.000000 -601246.155000,4612145.550000,2520,6205,211.665298,224.706635,225.632233,224.376053,221.458694,226.764481,238.466949,244.466949,252.590927,263.830597,276.177673,291.516541,310.938019,328.433899,338.161163,343.690094,337.714874,309.276855,246.045456,202.797531,189.045471,179.227295,164.954559,133.929779,119.285141,114.334724,100.185966,62.318199,30.293409,16.707458,14.995887,12.800015,13.015720,11.793406,9.612410,5.865299,3.490089,2.114882,1.459507,0.595871,1.426450,0.383472,0.599177,2.203309,1.441322,0.000000,2.400827,2.245455,2.699174,8.859505 -601251.955000,4612145.550000,2549,6205,200.555359,221.026443,221.142136,219.671066,215.282639,220.084290,228.216522,231.596695,237.042969,245.993378,257.795044,270.910767,289.414917,305.646301,316.737183,324.224792,323.778503,307.249603,258.869415,223.861145,212.629745,202.381805,191.018173,160.514038,143.439667,142.795029,131.323990,89.183487,39.084316,20.423161,17.365309,16.275225,16.177706,17.217371,16.061172,11.266958,3.328109,4.282655,4.601660,2.827276,2.971908,1.559505,2.185131,3.626452,11.118182,4.004133,3.490910,4.509092,0.000000,2.261157 -601256.155000,4612145.550000,2570,6205,131.905792,134.655380,135.603317,130.251251,123.294235,121.933899,121.850433,120.584305,120.823975,123.107452,125.925636,134.362823,143.647949,153.512390,160.629745,166.404129,167.381821,162.533051,144.658691,128.637207,121.866959,116.830597,111.736374,93.239685,81.510757,86.952911,100.357864,85.281837,41.997540,13.527287,10.157867,10.252080,15.026464,22.716547,31.934731,26.707458,4.714886,1.819839,1.857028,0.615704,1.272729,0.809918,0.482645,0.704961,4.592563,9.734712,1.142149,6.096695,1.813223,4.385124 -601260.355000,4612145.550000,2591,6205,6.042979,1.189258,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.390083,0.791737,0.846283,1.432233,1.255374,0.752067,0.430580,0.331406,0.445455,0.000000,0.000000,0.071075,9.548768,23.068609,13.619021,1.849591,0.040497,4.312404,16.957867,32.462002,50.219849,46.773567,13.107450,6.910749,3.602484,3.791739,3.704134,0.786777,3.119836,0.000000,3.461157,0.038843,0.000000,0.000000,0.000000,0.110744 -601264.355000,4612145.550000,2611,6205,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.563638,0.471075,0.035537,0.000000,2.266946,12.681831,21.005798,30.829767,29.680182,27.137207,31.446297,35.720676,30.717365,30.930590,20.302488,12.790088,15.066121,10.016531,8.883472,10.398349,11.914051,8.610745,21.765291 -601359.955000,4612145.550000,3089,6205,154.395889,194.354568,170.577698,159.197525,146.114883,134.073578,136.098373,134.660355,134.957870,140.048767,140.478516,155.941330,176.015701,194.726471,208.966141,225.354568,227.280182,217.181015,197.230591,176.371078,164.652084,160.850433,154.445465,117.329765,96.916550,116.569435,138.486786,106.776054,50.743000,18.394232,14.040515,15.357869,13.436381,14.940514,18.763653,11.520677,1.657856,1.041326,0.178514,0.200001,0.000000,0.208265,0.000000,0.014050,1.358678,0.000000,0.000000,0.000000,0.000000,0.000000 -601365.155000,4612145.550000,3115,6205,170.708252,189.278519,175.716537,163.675217,150.989273,139.823975,140.402496,137.617371,140.080170,145.220673,143.724808,157.650421,176.485123,195.650421,211.113220,224.947922,228.650406,216.600815,195.683487,175.179337,161.848770,158.559509,151.700012,116.394234,96.493408,113.402489,134.782669,103.427292,48.162830,15.276052,13.790929,13.644644,10.811588,12.719025,12.966958,7.361167,1.489260,0.085951,0.275208,0.151240,0.183471,0.112397,0.000000,0.015703,1.218182,0.000000,0.000000,0.000000,0.000000,0.000000 -601373.555000,4612145.550000,3157,6205,151.893402,201.174393,178.100006,170.579346,153.678528,141.719849,142.736374,140.992569,142.893402,149.703323,146.215714,159.488449,176.620667,194.223984,209.405792,223.934723,223.347946,214.587616,196.959518,178.339676,168.455383,165.546295,161.736374,127.587608,106.893394,124.918190,148.852081,115.959511,55.761177,19.362003,14.703324,16.677704,14.150431,19.245472,21.195061,11.957039,1.861988,0.288431,0.188432,0.082645,0.090910,0.132232,0.000000,0.072727,0.000000,0.000000,2.304132,0.000000,0.000000,0.000000 -601382.555000,4612145.550000,3202,6205,102.935555,137.160339,131.829758,121.251244,105.102486,95.408264,92.416534,88.201653,86.482651,88.044632,85.135559,93.391739,104.176865,115.209923,124.433060,134.714066,136.094238,132.788437,125.333885,114.490913,106.218185,105.226448,104.309097,77.743820,59.950432,82.598366,121.829758,111.920662,62.705807,13.110760,9.482663,11.559517,15.224811,24.803326,38.796719,29.398367,1.129756,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601455.555000,4612145.550000,3567,6205,117.531418,166.382645,166.374390,159.225632,146.060333,135.547958,133.498367,131.630600,131.192581,133.655380,136.010773,150.176041,168.795868,185.564468,201.688431,213.415710,216.845459,218.812408,201.035538,176.928101,163.341324,162.407440,159.845459,122.002495,97.093407,121.828941,169.076859,146.630585,72.176048,20.157869,14.531425,9.176875,15.581838,21.003323,29.680185,16.659523,0.884300,0.087603,0.000000,0.000000,0.079339,0.000000,0.020661,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.755000,4612145.550000,3593,6205,105.482658,161.955383,159.120667,153.616547,141.294235,132.046295,131.459518,131.368607,130.938858,134.558685,137.798355,149.525635,164.980179,180.228119,193.996704,203.649597,208.864471,212.269440,198.715714,180.319016,170.566956,170.252899,169.054565,139.153732,115.476044,137.583481,175.492569,155.285965,82.335548,21.019854,15.368614,9.791750,19.399193,26.604980,40.732254,29.161177,1.408268,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601464.755000,4612145.550000,3613,6205,89.152077,135.960358,137.662827,131.067780,117.671082,107.695877,106.125633,103.307449,101.233070,103.249596,104.332245,113.439682,124.009926,137.720688,147.927277,156.919006,161.811569,164.249573,153.414886,141.828125,132.233063,131.919022,131.745468,106.538849,85.315712,105.431412,146.042984,139.216553,79.100853,18.497538,11.976877,6.876872,18.999191,30.390100,43.514069,31.470268,2.616534,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.955000,4612145.550000,3629,6205,83.386780,141.509109,145.120667,137.054565,121.947121,109.509102,103.476044,96.798363,92.120674,91.401665,88.186790,91.856209,96.980179,103.228111,110.352081,117.616539,120.319023,118.542160,110.839684,101.509102,94.269432,92.418198,91.327286,70.310760,55.442993,73.839691,106.285965,101.955383,56.558693,12.819025,8.302498,5.346290,12.277700,22.622334,31.705805,19.645473,1.146284,0.089257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601471.355000,4612145.550000,3646,6205,95.048775,155.404144,155.123154,146.825638,131.519852,118.387611,113.271912,104.428940,99.800835,97.933067,94.685135,97.131416,101.288445,107.404144,112.949600,120.222328,121.503319,119.189270,109.304970,98.379349,91.263649,87.767776,86.718193,63.106632,49.858692,68.123161,100.346291,96.346291,50.635551,11.847953,7.883491,5.852903,9.294230,16.162001,25.792582,12.952908,0.528929,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601476.555000,4612145.550000,3672,6205,104.443810,161.278519,159.088440,148.377701,133.815720,119.146294,114.121498,107.559517,102.171082,101.435547,97.030586,99.576042,106.914886,112.972740,119.336372,128.402496,132.253723,128.179352,119.733070,107.245461,98.526459,96.914886,95.609100,69.617371,55.501675,74.022324,108.997528,104.179352,55.419029,12.652909,8.691754,4.857860,9.742164,17.176052,24.071918,14.053736,0.719837,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.086777,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.955000,4612145.550000,3689,6205,103.404984,162.115707,153.404953,145.272720,131.652893,116.595055,109.743820,102.380188,95.661171,93.892586,88.628120,89.595062,93.694229,98.438026,104.305794,111.512413,113.677704,110.231422,101.966957,91.950432,83.272736,80.685959,79.181824,57.471096,43.520679,62.380180,95.785133,94.611580,49.991753,13.151258,7.198366,3.857861,10.240512,15.485141,24.966961,17.209108,0.498349,0.031405,0.033884,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.555000,4612145.550000,3702,6205,98.775223,167.378555,161.957062,150.452911,135.965317,120.709106,115.287621,107.130592,100.998360,99.543816,93.965302,95.378525,99.461174,104.733902,110.403320,117.527290,119.213234,117.072739,108.585136,97.841339,89.386795,87.634727,86.254562,62.849602,50.328945,66.138855,100.014893,96.849602,51.312416,13.128943,7.841342,4.200010,11.376050,17.349604,25.014894,17.628942,0.929754,0.031405,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.555000,4612145.550000,3717,6205,109.581841,166.457855,163.077682,153.201660,138.036362,122.672745,115.267792,108.400017,102.102501,101.011589,96.276054,97.143822,101.218201,106.838036,112.325638,119.771919,120.292580,117.730598,109.523987,98.433075,90.895889,88.325638,87.672745,65.284325,52.920685,67.557045,98.342171,94.424812,49.019859,10.956216,7.970267,3.512409,8.973567,14.526464,23.757044,12.728115,0.658680,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.355000,4612145.550000,3731,6205,95.013245,164.120697,162.674408,148.608292,132.971909,120.971916,114.004974,106.600014,101.905800,99.095886,95.360352,98.145477,105.236374,110.608276,117.616539,125.666130,128.327271,123.641335,116.062820,103.930588,96.971924,96.897545,93.418198,70.319031,57.757046,74.360352,104.633072,93.996696,47.434723,11.499192,8.492581,6.389268,8.946297,14.923159,23.782665,9.876047,0.328927,0.027273,0.024794,0.000000,0.000000,0.000000,0.071075,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601493.155000,4612145.550000,3755,6205,97.620674,154.017365,154.868591,139.992569,124.587616,109.959526,104.265312,96.066956,91.810760,88.546295,84.835548,88.843811,97.496704,104.480186,112.736382,122.182655,125.025635,118.819031,110.728119,98.215721,87.480179,85.538033,83.554565,54.000847,42.827293,63.083492,101.852089,96.298363,46.463657,11.300018,7.595887,8.176046,8.066128,14.642993,22.592583,12.281005,0.823970,0.025620,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.288430,0.000000,0.000000,0.000000,0.000000 -601495.955000,4612145.550000,3769,6205,97.729767,155.159531,152.300018,142.928116,124.820679,111.655388,105.688446,99.159515,93.407448,90.481834,86.614067,92.440514,101.390923,108.713234,117.085136,125.762825,128.341339,122.895050,114.010757,101.068611,89.085136,86.919846,83.300018,56.010757,42.655388,64.366127,101.250420,95.506615,47.225636,11.524812,7.572747,8.298362,7.695057,13.755390,19.371094,9.702492,0.747110,0.026447,0.026446,0.000000,0.085951,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601498.555000,4612145.550000,3782,6205,102.819855,157.125626,154.861160,142.877701,127.076050,113.828117,109.919029,102.530594,98.943817,97.390099,94.084312,101.530594,113.803322,123.357040,134.348785,146.282654,149.059509,141.505798,130.786789,116.183487,105.481010,103.042992,99.654564,68.348778,53.943825,74.266136,110.737206,101.009933,48.142170,13.760348,9.059524,8.127285,7.547120,13.352907,19.519852,8.619022,0.444630,0.123968,0.000000,0.000000,0.077686,0.000000,0.039670,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.755000,4612145.550000,3888,6205,114.147125,165.700836,157.130585,146.006638,130.494232,118.353737,115.593407,111.717369,109.585129,111.642990,110.469437,121.213234,134.684311,148.973572,160.089279,171.370255,174.519012,171.105789,160.213226,145.659531,136.692581,136.155396,136.709106,108.758682,89.081001,109.502487,145.973572,128.386795,68.246292,18.600845,12.428117,10.094229,15.062000,21.328947,30.692583,20.795887,1.451243,0.428927,0.007438,0.021488,0.061984,0.000000,0.054546,0.046281,0.000000,0.000000,0.000000,1.346281,0.000000,0.000000 -601523.155000,4612145.550000,3905,6205,124.519020,170.370255,158.568604,146.560349,131.031418,117.444641,114.932243,112.056213,110.469437,113.874397,112.634727,123.642990,139.634735,153.775223,164.213226,176.006622,179.370255,176.733887,164.023148,149.510773,140.312424,140.957047,141.345474,113.105797,92.899185,114.436378,148.965317,127.642990,67.428116,17.504980,12.849607,10.294228,14.035556,22.810762,33.766964,19.871092,3.226452,0.320662,0.309918,0.000000,0.092563,0.000000,0.196695,0.198348,0.000000,3.052067,1.428099,0.000000,1.316529,2.459504 -601560.155000,4612145.550000,4090,6205,83.841339,139.781845,141.814911,129.575226,117.054558,106.004974,105.699188,103.988441,103.831421,107.699188,109.368607,120.847946,137.666138,153.178543,165.558701,175.699173,178.971893,175.897522,165.467804,149.509125,138.352097,135.112411,135.054565,104.517365,84.170258,108.401665,147.740524,127.938858,69.376877,18.183489,12.277704,9.657040,15.773572,22.515720,32.259525,20.840513,1.856203,0.000000,0.064463,0.000000,0.000000,0.143802,0.000000,0.000000,1.171075,0.000000,0.000000,0.000000,1.088430,0.000000 -601565.155000,4612145.550000,4115,6205,77.906631,138.493408,146.212418,135.617371,120.460342,110.972740,113.171082,110.724800,110.658684,114.088440,115.567780,126.823975,145.832260,160.666962,171.873581,183.295074,189.237213,183.981018,172.138046,154.972748,145.113251,142.402512,141.609116,109.666954,88.485138,112.700012,150.749619,129.857040,67.369438,18.338036,12.873573,10.207452,13.352908,22.386797,28.241343,19.862000,0.867772,0.025620,0.050413,0.000000,0.000000,0.071901,0.230579,0.004959,0.000000,0.000000,0.000000,0.898347,0.000000,0.000000 -601570.555000,4612145.550000,4142,6205,65.068611,143.161179,148.004150,134.962814,118.995872,112.061989,109.929764,109.566124,109.359512,114.053726,115.425629,127.095047,146.161179,162.582672,176.541351,188.343002,192.673584,189.376068,175.979370,157.640533,147.871918,146.260345,145.863647,113.433891,89.954552,114.202484,155.144638,132.128113,67.326469,16.518200,13.260348,8.560343,12.232246,20.965305,27.235556,17.344646,0.282646,0.010744,0.041323,0.000000,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,1.717356,0.000000,0.000000 -601575.955000,4612145.550000,4169,6205,89.023987,149.313248,154.048782,139.371094,125.908279,118.800835,118.858688,117.495056,117.123154,120.321503,122.486786,135.321503,154.685150,171.164459,186.561142,199.850403,206.313217,199.742966,186.337997,169.718201,157.941345,157.015717,156.445480,121.057037,97.668617,122.709930,160.313248,133.015717,69.015724,19.530596,14.222333,12.612412,14.265306,18.719854,26.379360,17.466135,0.921491,0.101654,0.061984,0.000000,0.000000,0.120661,0.000000,0.100827,1.175207,0.000000,0.000000,2.191736,1.170248,0.000000 -601582.155000,4612145.550000,4200,6205,90.835556,153.298355,159.504974,147.339676,132.133072,124.785965,123.686798,120.802498,121.662003,125.273575,128.133072,140.157883,159.480179,176.066956,190.909927,205.248779,208.604141,201.843811,184.752899,164.248779,152.571091,150.050430,148.190918,114.265312,91.422325,113.529770,143.777710,112.356216,54.678528,17.545473,13.471920,11.011587,12.619025,13.604151,16.025639,8.192574,1.482648,0.095868,0.225620,0.179339,0.002479,0.000000,0.141323,0.080992,0.000000,1.200827,0.000000,0.000000,0.000000,0.000000 -601589.955000,4612145.550000,4239,6205,86.449608,159.143814,164.755386,150.300842,136.069443,128.548782,127.639687,124.813240,126.110764,128.970261,130.325638,141.854568,161.722336,177.251266,192.317368,204.499191,208.887619,199.416550,181.697540,158.366959,148.036377,144.862823,141.127289,109.176880,88.796715,109.176880,128.523987,100.350433,48.788452,17.358696,12.829771,8.308281,9.404975,10.892579,13.252082,6.710753,0.700002,0.257852,0.000000,0.006612,0.107439,0.000000,0.119836,0.241323,0.000000,0.000000,0.000000,2.122314,0.000000,0.000000 -601601.155000,4612145.550000,4295,6205,101.874397,162.576859,166.923981,152.114059,138.824799,131.527283,131.072739,128.659515,128.676041,132.072739,134.428116,146.428101,165.535538,183.419846,197.552078,211.866119,216.105789,206.824799,185.105789,162.667770,151.758682,148.576859,144.436371,112.014893,92.948776,109.444641,128.171921,95.130592,47.684319,15.845473,13.130598,11.353735,11.195887,11.558696,12.688446,4.927281,0.674382,0.075207,0.000000,0.036364,0.113225,0.315703,0.380993,0.353720,0.000000,0.000000,1.099174,0.000000,0.000000,0.000000 -601618.155000,4612145.550000,4380,6205,102.106628,168.271912,169.371078,155.833893,142.362808,133.660339,133.784302,133.197525,132.222321,135.081833,137.767776,151.015701,170.288437,188.230576,201.313232,215.982651,220.825623,210.676865,187.131409,164.734711,153.280167,151.222321,145.354553,113.313232,95.090096,112.255386,125.379349,92.536377,45.511593,16.941341,13.214069,10.284312,10.235555,9.807455,15.573572,8.946292,0.687605,0.161984,0.139670,0.019008,0.317357,0.323141,0.243803,1.178515,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.355000,4612145.550000,4501,6205,95.795883,164.601654,167.665283,155.545456,141.330597,132.479355,133.776871,131.690094,132.756210,134.731415,136.863632,150.417358,169.020660,186.946274,201.095047,216.954544,219.202484,207.607437,185.202484,162.838837,151.185944,148.111588,144.272766,111.942162,94.595055,108.590927,122.698364,89.731422,46.024818,16.947126,13.115721,12.046296,9.556215,12.957868,14.940513,7.260339,1.101654,0.671903,0.869423,0.385951,0.714877,0.494216,0.266116,0.671903,0.000000,0.000000,0.000000,1.047934,0.000000,0.000000 -601652.755000,4612145.550000,4553,6205,117.828110,168.919022,175.563644,160.051254,143.852905,133.588440,135.514053,132.952072,132.340500,135.076035,138.332245,150.092575,170.861160,186.976868,202.084305,216.547119,220.671082,207.819839,186.092575,161.439682,151.274384,148.323975,143.381821,111.555382,93.563644,109.737198,124.869431,87.671082,44.009937,17.951258,13.034730,9.508278,10.392578,10.882660,12.995884,5.933066,0.831407,0.276034,0.091736,0.031405,0.274381,0.021488,0.157026,0.289257,0.000000,0.000000,0.000000,0.000000,0.000000,2.255372 -601659.955000,4612145.550000,4589,6205,106.547951,174.283478,173.275223,162.126450,144.423981,135.589279,136.490112,133.200836,133.448776,136.961166,138.209091,152.217361,170.448761,187.969437,202.019028,217.027283,221.316528,208.919846,185.746307,162.498352,152.200836,149.109924,144.754547,112.225632,93.481834,109.060349,122.547951,90.374397,45.432251,15.807457,13.159524,11.164479,9.508283,12.780183,13.423984,6.960341,1.000829,0.341324,0.300001,0.205785,0.000000,0.000000,0.084298,0.657852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.955000,4612145.550000,4629,6205,111.857872,185.560333,177.114059,161.105789,145.436386,134.246292,136.411591,134.279358,133.750427,137.229752,139.229782,151.725647,171.171906,188.833069,203.378525,218.229752,220.824799,209.337204,185.304138,163.816528,151.725647,150.626465,145.709106,112.634727,93.626457,108.907455,123.609932,91.064484,44.642994,19.151258,13.246300,11.015718,9.383489,11.730595,11.540511,5.467780,1.092565,0.328927,0.079339,0.077686,0.000000,0.000000,0.183472,0.145455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.555000,4612145.550000,4662,6205,115.914894,177.466141,174.962006,160.424820,146.366959,134.234726,136.251266,132.788452,134.152084,137.391754,137.962006,151.424820,170.011597,188.276047,203.433060,218.532242,220.234711,207.887604,184.036377,162.532257,150.804977,148.094238,142.763657,111.069443,92.193405,109.218201,122.044647,88.780182,44.755386,15.443819,12.978531,12.445469,8.495059,12.438859,10.861171,7.003316,2.117359,0.459506,0.937192,0.000000,0.048761,0.000000,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.155000,4612145.550000,4690,6205,99.757874,181.981003,174.038849,161.419022,146.014053,132.757874,133.402496,134.055389,132.782669,136.642151,137.245468,150.237198,169.138031,188.245468,202.675217,217.195877,220.212402,207.138031,183.906616,161.228943,149.939682,148.691742,143.063644,111.526474,92.228943,106.600853,122.014076,88.286797,41.080185,14.233075,13.005804,13.173571,10.365307,9.563651,12.003321,7.372737,0.195868,0.246282,0.320662,0.019835,0.071075,0.000000,0.000000,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601682.955000,4612145.550000,4704,6205,118.485962,179.337204,174.494217,162.452896,147.353729,134.130585,135.295868,134.246292,135.469421,139.130585,138.700836,151.155380,169.469421,188.758682,203.890915,218.932236,220.378525,208.808273,186.039673,163.890915,153.254547,149.585129,145.345459,112.659515,94.469437,109.791748,123.105797,89.469437,43.692585,15.447124,13.213242,13.298364,10.219851,11.249603,15.645473,5.764473,0.688431,0.488431,0.095868,0.000000,0.082645,0.029752,0.400828,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601686.755000,4612145.550000,4723,6205,120.858688,185.789261,177.384293,164.491745,147.847122,136.706635,138.309937,135.979355,136.830597,141.161179,140.037201,152.599182,172.549591,190.615707,206.359497,220.169403,221.764465,208.987595,187.342972,164.169434,153.830597,151.847122,146.318192,114.929764,94.723152,112.136383,123.888435,90.086792,45.475227,17.462830,13.301672,14.001670,11.109108,11.888446,15.049603,8.442986,0.810745,0.302480,0.192563,0.218183,0.147935,0.277686,0.433059,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601692.355000,4612145.550000,4751,6205,136.056213,194.428085,177.601669,166.766968,149.824814,136.362000,137.287628,135.609940,137.452911,141.940521,140.353745,152.915726,170.973557,190.642960,206.204956,221.114044,222.560318,208.824783,185.783493,164.601669,153.403336,151.866135,145.618210,113.238037,94.915726,111.717377,123.056221,89.130600,47.089275,17.133902,13.238036,14.990100,12.428944,11.761174,15.830597,6.046291,0.823142,0.667770,1.115704,0.085952,0.014050,0.000000,0.652067,0.638017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601700.755000,4612145.550000,4793,6205,129.610764,194.007462,176.528107,167.214066,150.428940,138.701660,138.040497,136.420670,136.908264,143.594223,140.412399,153.205826,172.742981,190.875229,207.156219,221.519852,222.073578,208.065308,186.619034,164.784317,153.974411,151.007477,147.081848,113.114891,94.957863,112.875221,124.809105,88.833893,44.933079,17.952909,13.371093,15.298363,11.319853,11.344645,12.359520,8.234721,0.673555,0.126447,0.137190,0.186777,0.089256,0.000000,0.400827,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.955000,4612145.550000,4809,6205,130.133072,194.141342,178.438858,167.752914,150.529785,137.777710,137.736389,136.447113,137.314911,144.595901,140.761185,153.819031,171.843826,191.124802,206.546295,221.736374,222.951248,207.976044,188.075226,164.736389,155.554581,151.356232,146.100037,112.579353,94.918198,113.414062,125.571091,89.686790,45.678532,18.858692,13.281838,16.702496,11.559523,13.810760,14.019026,8.079350,1.115705,0.304960,0.057851,0.076034,0.102480,0.000000,0.306612,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.355000,4612145.550000,4826,6205,153.162842,193.162842,176.956223,169.071930,150.518188,137.410751,137.278519,135.576050,137.204147,142.724808,140.989288,152.419022,171.361176,190.509949,206.088455,222.088440,223.212402,207.617371,186.865311,164.724808,153.435547,149.352905,144.609100,112.228935,94.757858,113.815712,123.857033,87.055389,44.559521,16.787622,13.146299,14.566131,10.918199,12.029769,14.061172,6.183480,1.248763,0.300001,0.178513,0.028100,0.000000,0.017356,0.220661,0.260331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.755000,4612145.550000,4853,6205,116.734718,180.420685,173.627289,162.850433,145.065308,133.817368,134.404144,133.304138,134.742981,141.007462,138.742996,150.866959,168.693405,187.940506,203.585129,218.494217,219.047943,205.709091,185.287613,161.643005,151.262833,148.485962,141.618210,107.866119,90.213234,107.527290,119.163651,85.072739,42.188446,16.268614,12.874399,14.436379,10.750428,12.747952,17.237207,11.357862,5.628931,4.700828,3.188431,3.652068,2.920662,1.119009,2.354547,0.296695,1.551240,0.000000,0.768595,0.000000,0.000000,0.000000 -601721.755000,4612145.550000,4898,6205,96.605797,158.366135,169.465317,156.762833,141.589279,133.052078,131.209106,129.440506,129.440506,132.804153,134.490097,146.630600,165.523163,182.085144,196.845474,209.746307,210.771103,199.696716,178.465317,157.374405,146.027298,140.721512,137.027298,106.457039,88.374405,102.556213,118.804146,86.043823,42.572746,16.299192,12.457045,8.537204,10.756215,11.285140,8.877701,6.537200,1.553722,0.000000,0.067769,0.088430,0.000000,0.007438,0.320662,0.233058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601734.355000,4612145.550000,4961,6205,112.335548,159.641312,171.261169,157.790085,141.558670,132.996704,131.814896,128.798355,129.922333,130.955383,134.013229,146.145447,165.120651,181.839676,196.715714,209.393402,211.600006,201.558685,178.409927,156.252884,146.112396,142.426437,137.054565,106.467781,86.459518,104.500839,118.938850,86.996704,42.616550,17.160351,12.459523,10.223154,8.211587,10.748776,10.904973,5.602489,0.195869,0.221488,0.174381,0.000000,0.117356,0.000000,0.136364,0.357852,1.261157,0.000000,0.000000,0.000000,0.000000,0.000000 -601748.155000,4612145.550000,5030,6205,106.293404,165.731415,170.483490,157.028946,142.243820,133.367783,132.764481,130.433899,130.913239,133.400848,135.805801,147.830597,166.665298,183.896713,198.053741,209.376053,213.863647,202.483490,181.285141,157.640518,146.789276,142.698364,137.045471,106.995880,90.309937,106.590927,118.971092,87.979355,42.599194,18.148779,12.458697,9.869437,10.850431,10.500842,14.109109,6.079349,0.727274,0.066116,0.069422,0.139670,0.000000,0.000000,0.105785,0.126446,0.000000,0.000000,0.000000,0.000000,3.624794,0.000000 -601767.755000,4612145.550000,5128,6205,91.407463,161.622314,165.514877,157.919846,142.853729,132.109924,132.366135,130.316528,131.068604,133.498352,135.969421,146.663635,167.275208,183.680176,198.738022,210.977692,214.184311,203.870255,180.820663,159.440506,147.085129,143.275208,137.572739,106.721504,88.547951,104.506622,119.589272,89.217369,43.176056,16.119028,12.506630,6.874393,9.393405,9.095057,11.633900,4.758686,0.661985,0.018182,0.014876,0.086777,0.067769,0.000000,0.000000,0.033885,2.170248,0.000000,0.000000,3.723967,0.000000,0.000000 -601774.755000,4612145.550000,5163,6205,116.710754,163.545471,168.264481,156.305801,141.776871,130.983475,132.148773,129.264465,129.148773,132.867783,135.347122,146.338852,165.223160,184.173569,197.148773,209.528946,213.371918,203.380188,179.851257,158.487625,146.338852,142.289276,136.818192,106.272736,88.206619,103.033066,117.330589,86.958687,42.917370,15.649604,12.438036,7.810759,9.505803,9.868613,11.670263,5.793398,0.541324,0.000000,0.180993,0.004132,0.000827,0.000000,0.054546,0.178513,5.276860,0.000000,0.000000,0.000000,0.000000,0.000000 -601778.955000,4612145.550000,5184,6205,107.258698,161.994232,167.275223,155.465317,140.738037,130.539688,130.300018,127.994240,128.109940,131.242172,133.275223,145.572754,164.035553,182.151260,196.349609,208.903336,212.085144,201.878540,178.680191,157.035553,145.085144,142.514893,135.663666,106.490105,87.597542,103.382668,118.349609,87.729774,43.795887,14.807455,12.333077,5.431419,9.116546,9.255388,12.100015,4.186784,0.580993,0.157025,0.138844,0.080166,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601784.555000,4612145.550000,5212,6205,116.141342,167.166122,166.951248,155.595886,142.752899,131.769440,131.976059,129.471924,129.281845,132.703323,135.223984,147.108276,165.141342,183.174393,198.587616,210.133072,213.108276,203.976044,179.480179,158.091751,147.025635,143.463654,137.190918,106.265312,89.009109,104.976051,117.785973,87.860352,42.050434,15.659524,12.471920,5.681005,9.022332,10.511586,10.409934,4.678521,0.151241,0.223141,0.157852,0.000000,0.014050,0.000000,0.038017,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601793.355000,4612145.550000,5256,6205,106.114075,168.090103,167.536377,159.313248,142.371078,130.362823,131.131424,126.990929,128.552917,131.941345,133.602493,145.792603,163.627289,181.784302,197.106613,209.486786,212.685120,203.412399,179.916534,157.371109,145.470245,143.313232,135.990921,106.569443,86.569443,104.015724,118.528122,87.437210,43.007458,14.315720,12.362828,6.787616,8.581834,9.340510,10.071914,4.250421,0.990085,0.383472,0.473555,0.163637,0.200000,0.000000,0.280166,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601807.955000,4612145.550000,5329,6205,122.269440,180.666122,173.566956,160.699188,145.327286,132.500839,133.376877,131.566956,130.748779,135.732239,135.699188,147.889267,165.343811,185.798355,199.244644,212.566956,215.740509,205.723984,182.600006,159.690918,148.195053,145.393402,138.690918,108.244644,88.566956,105.021500,119.757034,88.583481,43.062832,16.576048,12.608283,8.334722,10.328117,10.723157,12.332247,6.764472,1.041324,0.375208,0.238844,0.038017,0.000000,0.275207,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,1.909091,0.000000 -601831.755000,4612145.550000,5448,6205,102.673576,174.276855,169.871902,158.995880,140.516525,129.020676,130.904968,127.607445,127.161163,130.326462,131.549606,143.417358,163.053741,180.086777,192.929749,206.706604,208.458679,196.615707,173.847107,152.103302,141.004135,137.747940,131.681839,101.615715,84.326469,99.483490,112.524803,83.946304,39.342999,16.100018,11.971094,11.352082,10.033902,11.171090,10.184312,4.696702,1.531407,0.183471,0.362811,0.000000,0.000827,0.000000,0.114050,0.075207,0.000000,0.000000,0.000000,8.427274,0.000000,0.000000 -601849.955000,4612145.550000,5539,6205,107.901665,183.116547,170.686783,158.885132,142.290100,128.711594,131.686798,129.447128,129.389282,134.397552,133.620667,145.480179,163.752899,182.876877,197.050430,210.777679,212.488434,198.819016,178.546295,155.645462,144.992569,140.719849,135.190933,105.455391,86.513245,102.240509,114.100021,84.347954,39.058693,15.541342,12.290103,10.902493,9.902498,10.462000,11.573570,4.509925,0.904134,0.181819,0.145455,0.000000,0.000000,0.037190,0.020661,0.000000,0.000000,1.515703,0.000000,0.000000,0.000000,0.000000 -601864.355000,4612145.550000,5611,6205,122.341331,178.465286,172.291733,161.605774,144.572739,131.440506,132.440506,130.258682,132.068604,138.085129,136.085129,147.828949,165.853714,185.209076,201.076843,215.961151,216.101639,201.481812,180.523132,159.060318,147.828949,145.936386,139.027283,108.589264,91.663643,107.787613,115.977692,83.333069,39.415722,16.444645,12.638863,12.339684,10.828117,10.509933,12.016544,5.116538,0.066942,0.315704,0.188430,0.000000,0.011571,0.000000,0.327273,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601874.955000,4612145.550000,5664,6205,100.698364,141.657043,149.723160,138.690094,123.582664,116.615715,115.623985,114.194229,115.078529,117.458694,120.789276,133.152908,151.260345,168.706635,182.119858,195.657043,199.169434,188.747955,165.863647,145.508286,136.706635,132.111588,128.500015,100.880180,83.359520,97.838860,109.037209,78.557869,37.136383,15.172745,11.681837,9.945469,10.614066,11.140513,12.233901,5.108273,1.931407,0.584298,0.460332,0.136364,0.132232,0.000000,0.008265,0.056199,0.000000,0.000000,1.157851,0.000000,0.000000,4.258678 -601888.355000,4612145.550000,5731,6205,83.493416,135.496704,145.116547,132.215714,119.909927,112.381004,111.967781,110.215714,111.893402,114.000839,116.785965,129.405792,147.819016,165.157867,180.430588,194.405792,197.091751,187.124802,165.546295,145.075226,135.257034,132.133072,126.281830,98.744644,80.471924,97.736374,108.571091,79.942993,37.199192,12.221503,11.480184,8.424807,8.334725,9.830595,10.844645,6.134719,0.861159,0.276034,0.080993,0.171901,0.019835,0.000000,0.081819,0.266943,0.000000,0.000000,0.000000,1.024794,0.000000,0.000000 -601904.155000,4612145.550000,5810,6205,91.226456,137.223984,141.199188,129.174393,115.661995,108.174393,106.306625,104.976044,105.083481,108.876869,111.050423,122.777702,141.339676,157.885147,172.728134,185.009109,188.612411,179.430603,157.281845,137.901672,128.033890,125.529762,119.918198,92.488441,74.042160,92.447121,107.100014,79.628937,38.323162,13.505803,10.901671,9.344643,9.585968,11.857868,12.874397,8.427284,2.571905,0.269422,0.192563,0.443802,0.024794,0.403306,0.724795,0.922316,1.442975,1.448761,3.129752,5.829752,2.559504,14.869422 -601911.555000,4612145.550000,5847,6205,96.398354,134.849594,135.609924,123.576874,108.527290,100.386795,98.419846,97.709106,98.403320,100.717369,103.461174,115.039680,133.006622,149.485977,162.758682,174.717361,178.014877,169.097534,149.576889,130.700836,120.990097,119.089272,114.618195,87.882652,69.130592,86.725624,103.742165,77.370262,37.320679,12.322331,10.419853,9.779353,10.863653,11.537205,13.971091,9.817367,2.224797,0.806614,0.315703,0.216530,0.000000,0.604960,1.345456,0.428101,10.744629,6.929752,6.254546,5.323141,1.258678,1.990083 -601213.155000,4612135.550000,2355,6255,221.604965,228.390076,227.084290,224.191727,219.902466,223.348755,234.216522,238.208252,244.191727,255.042984,266.100861,281.778503,300.993378,320.150421,332.935516,341.613220,339.439667,321.076019,265.538849,225.175201,211.604950,204.117355,191.745453,156.390091,136.877701,137.158691,130.588440,86.092583,36.257874,19.331425,17.431423,14.735556,12.855388,14.817372,13.806628,8.823982,3.853728,2.145462,2.223144,1.008267,2.001658,0.132232,0.767771,1.287606,3.720662,0.000000,2.388430,2.935538,1.266116,8.689258 -601218.955000,4612135.550000,2384,6255,208.812439,221.407455,220.952911,216.738037,215.192581,219.936386,231.828949,237.019028,245.862015,256.771118,269.597565,284.432251,303.952942,324.134735,336.556244,343.052094,338.862030,314.134735,250.217392,207.324829,192.143021,182.481857,170.663666,135.225632,117.556213,114.333069,106.283485,68.052078,30.052086,15.190929,15.514896,12.673570,12.927291,12.550430,12.299190,6.547946,3.523975,3.375214,2.872733,1.084300,1.619838,1.100828,1.437193,0.761986,2.710744,3.423141,1.209091,1.035537,3.742149,0.000000 -601226.955000,4612135.550000,2424,6255,205.788452,224.482666,220.499191,218.771927,218.937210,227.036377,235.656219,243.094238,251.879364,264.127289,276.606628,291.623169,310.416534,327.705811,337.185150,340.912415,333.416534,303.201660,233.978531,189.689270,175.466141,164.846298,151.672745,122.185135,107.887619,102.185135,86.804970,54.342167,26.672747,15.228118,13.788449,11.634727,10.709936,10.271089,9.380180,3.641330,2.772732,1.653722,0.861160,1.151243,0.971903,0.080166,1.223143,2.266119,2.815703,5.393389,1.073554,1.015703,1.287603,4.315703 -601234.755000,4612135.550000,2463,6255,212.269440,226.947113,225.914062,221.500839,218.517365,224.244644,232.641342,238.368607,243.723984,254.244644,263.723969,279.385132,297.591766,314.715729,324.773560,330.046295,326.773560,303.162018,248.360336,209.434723,196.823151,186.442993,175.327286,144.509109,127.046295,125.285965,113.319023,73.757050,33.459522,17.695885,15.938862,14.059520,14.615721,14.571092,12.845470,7.053730,3.499183,3.044636,2.225623,1.839674,2.285129,0.042975,2.076865,2.356202,6.687604,0.000000,3.619009,3.448761,7.714877,0.000000 -601239.555000,4612135.550000,2487,6255,194.869415,213.910751,207.505783,201.514038,195.968597,195.770248,199.431396,200.505783,201.497513,206.026459,212.423157,223.894211,237.505814,249.166962,257.009949,261.315735,258.489258,245.051270,209.819839,181.307434,170.224792,162.836365,153.472733,128.200012,113.902489,115.042984,111.745461,78.307457,37.836380,16.581011,13.952084,14.875222,14.452084,16.098364,18.300844,12.759518,6.437202,5.395875,4.169427,2.985955,3.694221,3.694217,3.311576,3.923971,12.275208,10.241323,17.496695,4.239670,4.652893,3.254546 -601365.155000,4612135.550000,3115,6255,150.287628,177.140503,153.669418,149.611588,130.933899,118.264481,118.528938,115.567780,115.476868,121.162819,116.997528,129.708267,146.479355,161.991745,176.214874,189.628098,191.074387,182.041321,169.115707,151.661179,139.917358,137.785141,132.181839,98.551247,79.667793,100.578529,132.702499,108.099190,52.991756,15.214894,12.016547,18.771093,10.881009,17.184317,23.298367,19.162001,1.903310,0.400828,0.425621,0.066116,0.113223,0.145455,0.223141,0.000000,0.000000,0.795041,3.000827,0.000000,1.286777,0.000000 -601368.955000,4612135.550000,3134,6255,168.840500,195.212402,168.022324,160.286789,143.997528,131.253723,131.518188,129.443817,130.476868,135.848770,132.071915,145.981003,164.766129,182.435547,197.080170,211.617371,211.700012,201.584305,185.419022,163.881821,152.377701,148.022324,141.154556,107.104973,86.766144,107.832253,134.650421,103.485138,48.071922,15.114065,12.832251,15.738859,12.064478,13.377703,15.508282,13.100013,1.498351,0.424796,0.019835,0.051240,0.020662,0.189256,0.000000,0.038017,1.346281,0.000000,0.000000,1.836364,1.303306,0.000000 -601374.355000,4612135.550000,3161,6255,174.900009,201.594223,177.395874,168.751236,149.685120,138.635544,137.139679,136.561157,136.015701,143.585953,138.544632,151.040497,167.999176,185.346283,201.437195,216.800827,218.726456,203.982651,187.271912,167.015701,153.437195,149.338013,143.354553,107.106621,89.486786,109.470261,131.718201,98.189270,45.428944,16.253738,13.032249,13.571092,9.642992,12.752911,15.349605,9.252078,1.638020,0.197521,0.002479,0.000000,0.000000,0.000000,0.004959,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601381.955000,4612135.550000,3199,6255,111.428116,155.783478,156.833069,148.576859,137.105789,127.717369,127.180183,123.882660,125.510757,126.700844,128.386795,140.295868,157.783478,171.750427,186.080994,199.213226,203.047943,199.254547,183.386780,165.568604,154.271088,153.783478,149.345459,117.469437,93.932243,116.279350,152.147110,128.023148,62.948780,18.158695,13.576878,11.717371,13.790925,17.924810,27.485970,14.370262,0.847113,0.024794,0.013223,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,1.171075,0.000000,0.000000,0.000000,0.000000 -601387.555000,4612135.550000,3227,6255,88.207451,131.727295,136.322342,126.876053,113.727287,105.396713,102.272743,98.264481,97.256218,96.223160,97.148773,105.132248,117.314064,128.272751,138.512436,148.322342,152.157059,149.016556,138.851273,126.107452,117.057869,115.264481,112.636383,84.446297,64.636383,88.578529,128.140518,118.454559,64.355392,15.167788,10.239689,9.119848,15.634728,24.167788,34.974400,25.897537,0.866118,0.060331,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601452.955000,4612135.550000,3554,6255,99.536385,149.230576,153.759506,147.982651,134.197525,123.321487,122.288429,120.544632,120.321487,123.709923,124.908264,138.445465,156.594223,171.619019,187.461990,199.197525,203.858688,204.883469,190.858688,170.495041,158.941330,158.635544,156.627274,120.081818,96.503319,119.792564,168.214050,148.594223,77.164474,19.666960,14.238861,8.904972,16.687620,23.814898,34.842167,22.746298,0.574383,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,2.489257,0.000000,0.000000,0.000000,0.000000,0.000000 -601456.355000,4612135.550000,3571,6255,117.495880,172.429764,172.479355,164.586792,151.520676,143.776871,143.760345,143.553741,143.694229,147.991745,152.520676,166.743820,186.033081,203.685974,220.719025,232.553741,236.710754,239.107452,221.950424,199.719025,189.140518,185.975220,184.090927,149.297531,124.140511,145.173569,180.942169,152.198364,75.033089,21.746300,16.735556,8.304145,15.800844,21.605804,31.743822,18.047125,1.668599,0.091736,0.000000,0.028926,0.000000,0.000000,0.000000,0.120661,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601459.555000,4612135.550000,3587,6255,131.322327,186.975220,186.785141,182.512405,168.223160,161.264465,160.446274,160.157028,160.578506,164.537186,168.107452,182.595062,200.297531,217.834732,232.809937,245.859528,249.785141,250.057861,229.933899,206.512405,194.297531,193.495880,191.000015,153.768616,131.446289,150.900848,180.314072,146.115723,70.438034,22.710764,17.363657,10.047122,17.389275,19.998365,27.669437,17.884315,2.213229,0.326448,0.480166,0.057025,0.202480,0.002480,0.261158,0.203306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601467.955000,4612135.550000,3629,6255,72.081841,111.707451,108.434723,100.996704,89.046295,77.724808,75.104973,73.799194,70.303322,72.435555,71.658699,81.104973,94.319023,108.500839,121.748772,136.905792,143.707458,145.327286,138.038025,125.261169,116.847946,115.814888,116.327286,88.270264,67.504974,90.733078,140.930588,139.922333,80.195053,15.388447,10.575227,6.108275,18.566959,32.633076,51.476055,40.057877,1.760335,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.317355,0.000000,0.000000,0.000000,0.000000,0.000000 -601482.955000,4612135.550000,3704,6255,100.706635,149.070251,145.491730,131.698364,114.136383,101.607452,94.772743,88.095055,85.152908,80.615715,78.144646,85.954559,98.640511,110.285141,122.805801,138.508286,142.491745,136.119858,127.698364,109.657043,96.086792,95.599190,93.227287,55.838863,39.177708,67.483490,126.004150,121.078529,61.871922,14.596712,8.475225,8.250426,10.739686,18.047125,29.521505,15.462826,0.352068,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601495.955000,4612135.550000,3769,6255,81.371918,148.214050,142.329758,126.776047,112.304970,98.784317,93.106621,86.643822,82.453735,80.139687,76.957870,83.288452,95.123161,104.503326,115.098358,128.164474,131.428940,126.346291,117.676872,104.288452,93.164474,91.354568,88.354568,55.114895,39.470268,64.023987,111.296707,108.081833,53.503326,11.910763,8.032250,6.780177,10.229767,17.300846,27.405804,15.827291,0.370249,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.555000,4612135.550000,3852,6255,91.452072,157.209091,144.630585,132.804138,115.291740,101.498352,96.225624,89.498352,85.357864,84.597527,79.506638,85.068611,94.366119,103.671906,111.539673,121.217361,122.911575,115.531410,108.663643,95.961166,86.581001,84.093414,81.663658,55.531422,40.209110,62.349606,102.233894,99.696701,50.936382,11.999190,7.423986,7.752905,8.278526,15.166959,20.934731,14.785964,0.715706,0.000000,0.012397,0.000000,0.000000,0.000000,0.000000,0.100827,1.268595,0.000000,1.095041,0.000000,0.000000,0.000000 -601515.155000,4612135.550000,3865,6255,92.332253,156.844635,146.753738,134.778519,118.621498,103.646294,98.910759,93.216545,88.819855,89.009933,85.671089,91.935555,101.910751,114.613235,123.208275,134.100830,137.117386,131.836380,122.753731,108.919029,99.968605,95.919029,96.563652,66.183487,49.563656,71.026466,116.919022,109.257858,59.034729,13.232250,8.778532,5.604144,10.095881,17.241341,27.960350,17.493404,0.605788,0.076033,0.093389,0.000000,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601519.555000,4612135.550000,3887,6255,87.867783,152.099182,145.157043,132.297531,116.809937,101.024811,96.371918,91.173569,87.264481,86.247948,83.140511,91.528938,103.066132,115.520676,126.479355,138.380188,141.074402,136.859528,127.760345,114.206627,102.223160,100.165306,99.727287,67.570267,49.768612,75.066132,122.826462,116.776878,62.322330,13.112414,9.066133,6.549598,11.884314,17.726465,26.492582,17.386795,0.726448,0.000000,0.000000,0.000000,0.000000,0.000000,0.001653,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601526.755000,4612135.550000,3923,6255,76.495895,147.884308,140.578522,130.132248,111.239685,97.454559,92.438042,85.884323,82.165314,81.752090,78.190109,85.330605,97.123985,107.942162,117.512413,128.338852,132.388443,127.760345,118.851257,105.454559,94.677711,94.033081,92.727287,61.479355,44.727291,67.512413,117.570267,114.826462,61.603321,14.421507,8.429771,6.710757,11.277702,17.915718,30.983492,19.220678,1.000830,0.282645,0.072728,0.000000,0.000000,0.000000,0.000000,0.049587,4.446281,0.000000,0.000000,0.000000,0.000000,0.000000 -601533.755000,4612135.550000,3958,6255,113.828110,149.034714,139.373566,126.365295,109.497528,97.175217,91.819847,85.679352,82.348770,80.571907,78.257858,83.497528,93.084305,101.266129,109.737198,117.737198,120.315712,118.042984,109.811577,98.431412,88.282654,87.927284,87.018188,61.150433,44.960350,65.233078,107.125633,103.001663,56.299194,11.266132,7.910764,7.604973,10.739686,21.066135,32.753738,24.320681,1.724797,0.250414,0.068595,0.000000,0.000000,0.091736,0.000000,0.470248,2.770248,5.651240,1.261984,1.049587,2.482645,2.169421 -601586.955000,4612135.550000,4224,6255,75.140511,129.348785,137.877716,123.406616,108.910751,100.654556,98.059517,94.439690,93.175224,96.051254,96.497536,106.580177,121.274391,134.142166,145.423172,158.026474,161.001678,156.125641,147.770279,134.687607,121.671082,121.183479,120.745461,89.257866,68.762001,94.307457,140.224823,126.150421,68.795059,15.598366,10.976878,9.232248,12.928116,20.142168,31.932249,22.676876,1.274386,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.947108,0.000000,0.000000,0.000000,0.000000 -601592.755000,4612135.550000,4253,6255,86.052917,153.325638,160.507462,145.391754,131.804977,124.209930,122.408279,120.226456,120.961998,123.656212,124.441330,138.127289,156.242996,172.540512,187.333908,200.433075,205.391754,198.424820,183.614899,162.226471,151.565308,149.019852,145.854568,111.804970,90.383492,113.631416,141.697540,110.854553,55.251259,17.874399,13.259523,9.055387,9.865305,13.495885,16.319027,8.586789,1.364466,0.462811,0.064464,0.000000,0.000000,0.201653,0.009091,0.106612,0.000000,0.000000,1.250413,0.000000,0.000000,0.000000 -601602.355000,4612135.550000,4301,6255,105.725632,160.593399,165.130585,151.560333,138.345459,127.866119,128.370239,126.709099,128.568588,130.204956,133.320663,146.866135,166.601654,183.238022,199.510757,213.469421,216.923981,207.833069,189.312408,165.147110,155.519012,151.915710,148.072739,115.361984,94.362000,112.981819,135.849594,102.601669,50.709114,17.623159,13.461176,13.032248,10.146298,12.503324,13.534728,7.607449,0.829754,0.004960,0.198348,0.000000,0.006612,0.000000,0.006612,0.148761,0.000000,0.000000,0.000000,0.000000,1.234711,0.000000 -601618.355000,4612135.550000,4381,6255,112.413239,169.347107,171.165283,157.479340,142.570282,133.264481,133.925629,132.578522,132.553741,135.950439,139.206650,152.148758,171.487610,188.942154,204.231400,218.388428,222.851242,213.454544,191.867767,169.421494,159.347107,154.867767,151.272720,118.619850,97.512413,117.388443,135.388443,99.016548,49.942173,18.844646,13.752085,11.838034,12.210760,14.175224,15.636380,9.015714,0.531407,0.274381,0.000000,0.022314,0.054546,0.307438,0.037190,0.191736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601636.755000,4612135.550000,4473,6255,100.553726,167.115723,169.628113,158.694229,141.239685,132.264465,133.685959,132.090912,131.743805,135.165298,137.702499,150.264481,169.942169,186.851257,202.462830,217.487625,221.074402,211.595062,188.553741,165.991745,155.033081,152.561996,147.727295,115.545464,94.818192,113.082649,126.066116,92.214882,45.082664,16.069441,13.429771,9.417371,8.479356,10.560346,10.218197,7.169434,0.339670,0.114878,0.160331,0.123967,0.058678,0.185124,0.061158,0.264464,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.955000,4612135.550000,4534,6255,118.523987,176.317368,175.135559,161.548782,145.325638,134.895889,136.771927,134.697540,135.391754,137.705811,139.631424,153.209930,173.226471,191.474396,204.962006,220.722336,223.995056,212.928940,190.962006,166.573578,155.714066,153.276047,149.945480,115.598366,98.052910,112.424812,126.639687,93.788452,48.391754,18.138035,13.631423,11.656214,10.870266,15.252085,13.575223,8.465300,1.914055,0.554547,0.385951,0.072727,0.219009,0.000000,0.000000,0.666117,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.355000,4612135.550000,4556,6255,115.318199,178.359497,175.392563,161.384308,145.714890,134.764465,135.863632,134.194214,135.185944,137.690094,140.566132,154.309937,172.987610,190.566116,205.169418,221.318192,225.359528,212.814072,190.599167,167.004150,156.169434,154.714890,149.954559,117.475204,96.293404,112.929749,125.599174,94.004150,46.954567,18.959526,13.632250,15.064481,10.402496,15.216548,13.191751,8.088441,0.971079,0.980169,0.695042,0.366117,0.670250,0.071901,1.144630,1.289257,2.835537,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.355000,4612135.550000,4571,6255,119.694229,171.670258,165.967789,155.108276,142.050430,131.298355,132.025635,129.546295,130.091751,133.562820,135.595901,148.496704,167.711578,185.752899,201.232239,216.149582,220.133057,208.182663,184.662003,161.942993,153.182663,150.785965,144.372757,113.281830,94.141335,109.000839,122.992577,90.885147,44.207455,15.604977,13.124811,9.624808,7.158694,12.689274,11.653734,6.172737,1.303309,0.341324,0.473554,0.195041,0.352066,0.000000,0.095041,0.353721,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.555000,4612135.550000,4587,6255,90.382652,174.367767,167.177689,155.995056,142.821503,132.535553,135.279358,132.667786,132.452911,135.609940,135.948776,149.775208,169.271088,189.056198,203.485962,219.196716,223.395065,212.163666,189.114059,167.337204,156.766953,154.709091,148.345474,117.981827,98.203308,114.056206,128.320679,92.990097,47.244648,18.990929,13.485969,11.815719,9.838860,10.835553,12.582661,6.082654,0.312398,0.624795,0.295868,0.022315,0.017356,0.203306,0.861985,0.109918,3.092562,0.000000,0.000000,0.000000,0.000000,4.515703 -601664.355000,4612135.550000,4611,6255,125.195053,179.484314,172.137207,163.004974,148.021500,135.228119,136.525635,135.418198,135.591751,139.393402,140.558685,153.327286,172.831421,192.426453,207.013229,221.071091,224.889267,213.476044,189.608276,165.864471,156.203323,153.319016,147.145462,116.087616,96.889267,112.666130,126.773567,91.996704,44.831425,18.614069,13.376879,12.670265,11.103324,10.612413,15.769439,7.482654,1.001655,0.014050,0.090083,0.025620,0.012397,0.000000,0.046282,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,2.277686 -601670.755000,4612135.550000,4643,6255,124.936378,176.448776,176.820679,165.531433,148.936371,137.820663,138.184311,136.911575,136.283478,140.490082,142.093399,155.688431,173.696716,192.382660,207.622330,222.738037,226.457047,213.052094,190.985977,168.828949,157.134720,153.779343,149.481827,116.787613,98.638855,113.795883,126.126450,93.250427,47.547951,20.035555,13.589274,13.613240,11.947125,14.327290,14.642163,10.372739,0.841324,0.435539,0.480993,0.013224,0.087604,0.000000,0.028099,0.807440,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.755000,4612135.550000,4673,6255,110.410759,188.956207,176.427277,163.104965,147.063644,135.956207,137.138031,135.088440,136.253723,139.741333,139.501663,153.377701,170.195877,190.460342,205.245468,220.939682,222.286789,209.766129,186.865295,164.956207,152.749603,150.286789,145.427277,114.609108,94.245476,110.030594,122.468613,89.633904,43.757874,14.600845,13.220681,12.285966,8.588447,11.090928,12.628117,4.257031,0.494216,0.248761,0.066116,0.051240,0.113224,0.000000,0.319835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.858678 -601684.355000,4612135.550000,4711,6255,118.619019,191.181015,175.214066,163.519821,148.428909,135.296707,136.933060,134.395874,137.106613,140.453720,139.329758,153.321472,170.842163,190.999191,205.552917,221.015717,223.131424,209.288452,188.065308,165.280151,153.098328,150.156189,146.445435,113.321503,94.676872,110.362823,122.718193,89.023979,43.784317,17.652908,13.313242,16.066959,10.307455,10.848776,13.471089,6.681002,1.477689,0.550415,0.102480,0.014050,0.000000,0.039670,0.749588,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.155000,4612135.550000,4745,6255,132.337219,192.477707,178.924011,167.452927,147.684326,137.940506,137.461182,135.948776,136.370255,142.907440,140.485962,152.750443,171.320694,189.477722,206.502487,221.618195,222.271088,209.361984,187.444672,165.469467,154.601669,151.618210,149.436386,114.527290,96.676048,114.543816,124.981834,89.386795,44.262825,16.681837,13.585142,13.696711,11.815721,14.381009,15.389271,7.125629,0.638845,0.240496,0.176034,0.198348,0.125620,0.000000,0.283472,0.567769,0.000000,0.000000,0.000000,0.000000,0.000000,3.384298 -601700.955000,4612135.550000,4794,6255,143.408279,196.366943,179.317352,168.391739,149.705795,136.730576,137.193390,135.548782,137.499176,143.928925,139.846283,153.276031,171.548767,190.705795,207.276031,221.755371,222.218185,208.623138,188.019836,165.466125,153.879349,151.077682,147.400009,112.780182,95.995064,112.813240,124.986794,86.995041,44.028122,17.574400,13.400019,17.087620,11.466959,13.371917,14.666960,8.067780,1.132234,0.695043,0.169422,0.076034,0.304133,0.041322,0.032232,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.355000,4612135.550000,4831,6255,115.775223,167.932236,170.510757,159.262817,143.923981,135.047943,135.204971,132.147125,132.014893,135.006622,137.494217,147.841324,167.031418,184.031418,198.742157,211.618195,215.180176,203.568604,181.899185,159.204971,147.304138,144.717361,140.890915,109.791748,90.626472,107.196709,120.345467,87.849609,43.816551,17.625635,12.808284,10.095883,10.989275,12.077704,12.172745,6.421497,0.400827,0.359505,0.027273,0.234711,0.000000,0.000000,0.309091,0.109091,3.042976,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.955000,4612135.550000,4874,6255,103.262001,161.757874,170.691757,154.840515,142.113251,132.394226,133.460342,129.195892,129.369446,131.972748,133.873566,147.113251,165.080185,182.410767,196.030609,209.964493,212.005814,201.931427,179.171097,156.452087,146.055405,143.138046,135.700027,106.774399,87.609108,104.609108,117.939682,85.642166,41.592579,15.050431,12.336384,9.461999,9.580182,10.545470,11.496709,5.701661,0.632233,0.066116,0.063637,0.006612,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.155000,4612135.550000,4940,6255,104.230591,161.883469,170.123154,157.214050,140.338043,132.007462,131.858704,128.933075,129.627289,132.081833,134.850433,146.577698,165.453720,182.933075,197.114899,209.619034,213.362823,202.371094,179.172745,158.023972,147.445480,142.701675,138.536377,107.304977,88.767792,104.701675,119.585968,86.495064,43.428947,15.835557,12.594234,10.108278,9.286794,11.759522,10.282661,5.923149,0.867770,0.152894,0.142976,0.021488,0.010744,0.051240,0.300827,0.119008,0.000000,0.000000,0.000000,0.000000,1.812397,0.000000 -601749.555000,4612135.550000,5037,6255,106.893402,165.455383,169.455383,158.711578,143.232239,134.513229,134.835556,131.918198,131.777695,134.959518,136.662018,149.480179,167.860336,185.876892,199.347961,212.827286,215.471909,205.405807,182.885147,160.174393,148.182663,145.562820,139.918198,110.190926,90.149597,105.777702,120.290092,88.025635,45.248775,18.813240,12.719852,10.381831,11.795058,13.103323,12.373570,5.245463,1.023142,0.282645,0.161984,0.000000,0.035538,0.256198,0.055372,0.138843,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.555000,4612135.550000,5132,6255,113.985970,165.961182,165.341324,154.572739,140.176056,132.159515,130.994232,127.952911,129.432251,132.680176,135.027283,146.746292,165.754547,182.242157,197.068604,210.779358,213.283493,202.614075,179.853729,158.043808,147.002487,143.333069,137.118210,107.374405,88.680191,103.870270,118.812416,88.300026,42.448780,16.176878,12.465309,7.869437,10.619025,11.246299,9.930593,5.481000,0.499175,0.152066,0.161984,0.087603,0.000000,0.000000,0.058678,0.021488,0.000000,1.549587,0.000000,0.000000,0.000000,0.000000 -601776.155000,4612135.550000,5170,6255,98.307465,166.223999,167.711594,155.860336,142.017380,132.042160,132.298355,129.141342,129.381012,132.951263,134.934723,146.339676,165.769455,183.810776,197.992584,210.943008,214.587631,204.058701,181.777710,158.248795,147.835556,143.199203,136.736389,107.314896,87.959526,104.554565,119.604156,89.058701,43.670265,16.695887,12.430598,7.230593,9.091752,9.809107,10.919851,4.218190,0.068595,0.153719,0.104133,0.004132,0.000000,0.000000,0.219009,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.355000,4612135.550000,5201,6255,113.596718,169.960342,166.357040,158.034714,144.712402,132.761993,131.894226,131.307449,130.323975,133.414886,135.894226,147.604965,166.067780,184.059509,199.687607,213.224823,215.720688,205.414902,181.968597,159.481003,148.588440,144.952072,139.290924,107.927284,88.059517,105.737198,121.018188,89.505798,44.885971,17.929768,12.662828,6.807451,12.053736,11.045470,12.068611,5.710752,0.993391,0.433059,0.224794,0.159504,0.000000,0.000000,0.299175,0.320662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.955000,4612135.550000,5244,6255,106.991753,174.768616,170.553741,158.057877,145.272751,132.694229,132.173569,130.826462,130.231415,133.900833,134.933899,147.231415,165.900848,184.595062,198.074402,212.471085,215.148773,205.066132,182.768616,159.223175,146.504150,144.371918,138.909103,108.619843,90.057869,106.322319,119.388435,89.942162,43.256218,16.953739,12.628119,7.265300,9.973571,8.794231,12.246296,4.357031,0.337191,0.887606,0.375208,0.007438,0.112398,0.000000,0.148761,0.400827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601804.555000,4612135.550000,5312,6255,107.707451,168.856216,167.608276,156.814896,141.211578,130.327286,129.881012,127.079353,126.798363,129.203323,130.988449,143.947113,161.401672,179.550415,193.715714,206.864471,209.591751,198.095886,176.021484,154.335556,142.310760,138.476044,132.690918,102.938858,85.732246,101.533897,114.740509,84.856209,40.285973,15.228944,12.062829,7.891749,8.093405,9.212413,10.672741,4.394223,0.853721,0.131405,0.252893,0.000000,0.067769,0.000000,0.295042,0.273555,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.955000,4612135.550000,5424,6255,112.287621,173.163635,169.642975,158.758682,140.899185,130.287613,132.196716,128.651260,128.965302,131.957047,132.238037,145.114044,164.023148,180.775208,194.527283,208.990082,211.287613,198.725632,175.295868,153.758667,144.147110,139.808273,134.527283,104.312408,86.998360,101.395058,114.411583,83.056213,40.130600,17.137207,12.229772,12.004976,9.763653,12.452910,11.553733,6.743811,1.132234,0.298348,0.248761,0.011570,0.000000,0.000000,0.009091,0.295042,0.000000,0.000000,0.000000,4.847108,1.776860,0.000000 -601849.155000,4612135.550000,5535,6255,141.228119,190.905792,172.393402,159.368607,142.261169,129.922318,132.418182,130.542160,130.914047,136.393402,134.781830,146.955383,165.583481,185.393402,199.533890,213.467789,215.426453,201.352081,178.426453,156.624802,147.542160,143.748779,138.418198,107.723969,90.029755,105.442978,114.517357,83.335556,41.137211,15.972747,12.583490,14.991753,13.236382,11.540514,12.544644,4.964472,0.327274,0.200827,0.203306,0.280992,0.000000,0.000000,0.119835,0.000000,0.000000,0.000000,0.000000,0.000000,1.439669,0.000000 -601869.155000,4612135.550000,5635,6255,101.819855,146.328949,149.452911,138.609940,126.064476,116.006622,115.527290,114.899185,116.411583,118.733902,121.981834,133.783493,152.725647,169.386795,183.816559,197.014893,200.180191,190.800018,168.932251,148.428116,139.171921,136.857880,130.618195,102.064476,84.519020,99.122330,110.196709,79.634727,38.733906,15.809936,11.874400,9.829766,10.888448,12.250432,12.662827,7.214060,1.430581,0.115703,0.109918,0.241323,0.011570,0.186777,0.111571,0.200000,1.442149,0.000000,1.787603,0.000000,0.000000,2.083471 -601886.955000,4612135.550000,5724,6255,93.788452,141.114059,146.271088,133.882645,121.725632,112.659515,112.915718,111.948776,113.229767,116.833069,119.576874,131.395050,150.122314,168.593399,183.147110,196.874390,200.337204,189.436371,167.221497,147.642975,137.609924,135.345474,130.163651,102.064476,83.287621,98.733902,111.395058,81.783485,39.890930,14.842994,11.833077,8.766130,11.298365,12.562828,14.556216,6.694225,1.346284,0.561984,0.180993,0.084298,0.123967,0.350413,0.350414,0.495869,0.000000,1.521488,0.000000,0.000000,0.000000,0.000000 -601901.355000,4612135.550000,5796,6255,99.521507,138.651260,139.081009,127.006622,112.783493,105.659523,104.271095,102.370270,103.849609,106.221512,108.709114,120.411583,138.163666,155.667786,169.684326,182.114075,185.419861,177.072754,157.312424,137.320679,127.923981,125.213234,121.618195,92.800018,74.783493,92.419846,109.138863,79.800026,37.039688,12.668612,11.056217,10.190098,9.391751,11.652082,13.227289,7.602489,1.892566,0.566944,0.294217,0.346282,0.270248,0.648761,0.147935,0.836365,7.147108,3.377686,1.281818,3.042976,5.980165,0.000000 -601147.555000,4612125.550000,2027,6305,236.090103,235.313217,208.853729,205.660339,198.527283,197.378525,205.238022,207.634720,211.014877,221.395050,227.064468,241.419846,258.164459,276.621490,289.974396,301.900024,301.652100,290.057037,253.685120,224.589264,212.688431,208.414871,198.927261,166.014877,147.147110,151.560333,153.792572,111.280174,49.652084,17.699192,18.084318,20.811588,15.940516,20.445473,23.364479,18.965305,9.489268,3.167774,2.853724,1.301656,0.383472,0.940497,0.666943,0.871903,1.271075,2.461157,2.023967,0.962810,4.169422,0.000000 -601150.355000,4612125.550000,2041,6305,238.089279,237.841339,215.031433,210.758698,203.403336,199.519028,207.494232,208.452911,211.386795,220.866135,225.155396,239.560349,255.626465,273.626465,287.039673,297.841339,298.519012,288.519012,251.915726,224.295883,213.692581,209.163666,201.072754,168.692581,148.940521,153.585144,154.593414,111.436386,50.981838,20.770266,18.279358,22.553736,17.961174,21.081833,22.602495,17.570265,7.342985,3.469428,2.545461,0.942150,0.381819,0.664464,0.059504,1.550415,2.507438,1.271075,1.812397,2.943802,0.000000,0.000000 -601153.355000,4612125.550000,2056,6305,227.832230,241.295029,215.898346,212.881805,204.270248,201.237183,209.592560,210.113220,214.038834,221.865280,226.691727,241.212387,257.749573,274.733093,287.485138,297.071930,296.989288,286.435577,249.080154,221.997513,210.840485,205.377686,196.699997,164.683472,148.187592,148.675201,148.377686,108.055389,45.559521,18.260349,17.881836,20.570265,16.809935,19.302498,20.249603,14.401670,6.873565,2.417361,2.491740,1.663640,0.578514,0.608265,0.440496,0.315703,2.642149,2.682645,1.001653,3.128926,5.160331,0.000000 -601156.555000,4612125.550000,2072,6305,230.244644,231.071091,215.988449,211.418198,204.203323,202.459518,211.872742,211.864471,215.170258,224.219849,229.517365,242.277695,260.252899,276.905792,290.682678,301.443024,302.443024,290.864502,251.600006,221.269440,209.401672,204.112411,195.872742,161.947113,143.112411,146.244644,146.847946,102.600014,45.707458,20.647953,17.806631,21.287621,16.378531,19.745472,21.424810,13.836379,4.477695,4.209097,3.571907,1.838020,0.509918,1.288431,0.367770,0.508266,5.435538,4.873554,5.504960,0.000000,0.000000,4.099174 -601160.155000,4612125.550000,2090,6305,227.810760,235.827286,224.281830,218.695053,213.306625,213.075226,220.174393,224.075226,225.736374,234.405777,241.025620,254.422318,271.984314,288.414093,300.876892,311.885162,312.620697,296.810791,254.810760,222.703323,212.876877,203.835541,195.736374,162.083481,143.678528,141.637207,139.009109,95.422325,40.397537,20.279360,17.794233,17.238861,15.682662,15.731423,17.324810,11.517371,5.052902,2.304965,1.667773,1.500002,1.567772,0.000000,0.347935,1.152069,10.484299,8.068596,4.653719,3.068595,1.308265,4.199174 -601164.155000,4612125.550000,2110,6305,225.795868,237.035538,226.134720,220.010757,213.804138,214.266953,222.432236,223.729752,226.696701,236.002487,241.738022,253.845459,270.853760,285.638885,298.704987,307.308289,309.903351,294.746307,250.432236,218.052078,206.151245,199.721497,190.027283,157.928101,139.316528,138.870255,133.961166,91.308273,40.531422,19.062004,17.275225,15.894233,14.906629,15.225637,15.364480,9.057865,4.292570,2.611576,2.800833,1.780994,0.635539,0.217356,0.361159,0.733060,4.050414,3.830579,3.653719,4.852067,0.000000,2.201653 -601168.155000,4612125.550000,2130,6305,227.171921,240.353729,224.775208,220.337204,215.411575,215.990082,224.238022,225.204971,228.766953,236.428101,242.304138,253.841324,269.618195,284.651276,295.924011,305.006653,305.180206,290.362030,245.436371,215.452896,203.287628,196.271103,187.981842,156.519028,137.775223,139.122330,131.808273,90.213234,41.312416,18.823158,17.089275,17.714893,16.054564,16.309111,17.706629,11.182660,5.223979,2.586784,1.881823,1.901656,1.881824,0.852067,1.445459,1.081821,5.608265,1.307438,1.168595,0.000000,1.293389,0.000000 -601172.555000,4612125.550000,2152,6305,226.397537,234.414062,227.628922,222.397522,216.678513,215.471893,224.042145,225.232224,228.604126,236.075226,242.248779,255.347946,270.273560,285.645477,297.298370,306.728119,308.942993,295.430603,252.414062,218.538010,207.314880,201.157852,192.009094,157.686768,139.901657,141.711563,140.372726,97.951256,41.901672,19.112415,17.455391,15.194232,13.748778,16.485968,16.768614,9.252079,4.076043,2.029759,2.247938,1.095871,0.925623,0.058678,1.168598,1.287606,1.388430,0.000000,3.744628,1.128099,3.924794,4.505785 -601177.355000,4612125.550000,2176,6305,221.591751,226.732239,226.244644,220.765305,213.938858,215.401672,222.657867,224.153732,227.219849,233.922333,240.558685,253.476044,270.294220,286.360352,297.823151,307.971924,309.823151,294.723969,252.442993,221.798355,208.608276,201.294235,191.054565,159.277695,140.178528,141.723984,142.657867,98.872742,43.219856,19.200018,17.368614,12.763654,14.355388,15.262827,14.509108,7.605799,3.431413,2.236371,1.269424,0.695869,1.157853,0.782645,1.207442,1.717358,0.000000,0.000000,2.408265,4.491736,0.000000,0.000000 -601182.755000,4612125.550000,2203,6305,218.903305,235.142975,226.680161,223.994202,218.746277,221.349579,228.837173,234.093384,237.159500,245.630569,255.217346,269.630615,288.647156,305.688477,317.853760,327.771118,328.002533,311.994263,263.828918,227.572723,213.828918,207.151230,195.754532,162.490082,141.911575,142.176041,141.622314,93.523155,40.093410,21.638861,17.795887,13.352082,13.709934,15.261175,13.982662,8.409105,3.296702,2.090090,1.186780,1.210746,1.140499,0.907439,1.644631,1.623143,0.000000,0.000000,1.248760,0.000000,2.656199,0.000000 -601188.755000,4612125.550000,2233,6305,215.238861,234.048782,230.627289,226.023987,221.511597,222.610764,232.809113,236.577698,240.817368,249.313248,260.660339,274.214081,293.577698,309.990967,324.701660,334.387634,334.900024,318.205811,268.784302,233.015717,218.387619,213.023987,201.627289,166.982666,145.767792,146.982666,144.329773,96.619019,42.585968,22.015722,18.329771,16.539688,14.238860,16.547953,17.285969,11.595055,3.786787,2.308271,2.666121,1.690912,1.164465,0.741324,0.401654,2.661160,0.000000,3.876034,4.543802,2.242975,0.000000,0.000000 -601195.355000,4612125.550000,2266,6305,219.479355,231.504150,229.892578,226.561996,221.314072,225.661179,234.413239,238.198364,243.785141,253.289276,263.462830,279.479370,299.710785,319.421509,334.181854,344.917389,343.537231,326.404999,275.049622,236.809937,223.305801,215.578522,205.181839,169.710754,146.545486,150.685989,149.214905,100.727280,44.057869,21.380186,18.652910,16.914894,15.085968,16.881838,16.006630,12.217370,3.487613,3.560338,2.799180,1.285954,1.011573,0.704961,1.534715,1.985954,1.490909,3.968595,0.000000,0.000000,2.633884,4.420661 -601202.755000,4612125.550000,2303,6305,221.605804,233.614059,228.820663,226.316528,222.647110,227.903305,236.382645,240.729752,246.655380,254.572739,265.366150,282.547974,304.903351,323.820709,338.225647,348.093414,347.118225,332.490112,280.985992,242.390915,227.366119,219.308273,208.481827,172.647110,147.614075,152.853745,153.738037,105.184311,46.093407,20.541342,18.952913,13.962827,15.358695,15.698364,15.441340,10.461172,4.901663,2.236369,1.313227,1.161159,0.733886,1.342150,1.731407,1.796698,0.000000,1.374380,1.115703,1.119008,0.000000,4.259504 -601210.955000,4612125.550000,2344,6305,222.164490,230.751266,231.900009,227.850418,226.098343,231.792572,242.858688,247.966125,254.850433,266.726471,277.247162,292.718231,313.015747,331.585999,344.561218,349.726501,345.792603,323.891785,263.685150,222.693390,206.776031,197.652084,185.718201,151.643814,132.891754,130.189270,121.106628,78.693405,34.825638,19.241343,16.883490,15.158695,13.437207,15.979357,13.418199,6.779351,3.449599,2.827282,3.343807,1.014053,1.579343,0.068595,0.885126,2.063639,4.448761,5.376860,0.000000,3.403306,0.000000,4.314877 -601221.155000,4612125.550000,2395,6305,211.682648,222.178513,222.277679,220.476028,217.376862,222.029755,231.153717,235.236359,241.219833,251.955368,264.699188,280.252899,299.947113,316.889252,328.476013,335.319000,331.285919,309.360352,253.484299,213.327271,200.161987,190.500824,178.418182,146.459534,129.600021,127.517380,114.550446,74.079369,33.558693,18.104151,16.219854,13.609108,13.890927,13.304977,12.152082,8.214061,3.266123,3.718191,2.142152,1.852898,1.379342,0.095042,2.462816,2.267771,4.449587,6.827273,1.119835,5.609091,4.118182,0.000000 -601227.955000,4612125.550000,2429,6305,182.344635,186.563660,182.001678,173.133911,166.403305,164.296707,165.362823,164.916550,166.040512,168.023987,172.123154,181.478531,192.569443,202.883484,209.519852,211.966141,209.470261,198.900024,168.222336,147.014069,138.311600,131.890106,123.881836,102.967781,90.463646,94.161171,90.890099,62.883492,26.880182,12.390099,11.262000,10.735551,11.726463,13.627290,16.418200,14.622327,11.597530,11.290916,14.080173,12.328932,12.716536,15.756205,8.481824,14.609097,6.747935,12.554547,6.007439,7.794217,15.966944,15.425621 -601380.955000,4612125.550000,3194,6305,118.058693,161.141342,162.885132,150.546295,141.339676,131.703323,129.628937,126.174393,126.769432,128.290100,130.447113,142.273560,160.050430,175.885132,191.009109,204.885132,209.761169,203.686783,185.521500,162.595886,149.232239,146.504974,139.827286,104.810760,84.025635,104.323151,135.604141,110.042160,50.620682,17.171919,12.711589,8.582659,11.407455,14.781009,18.042168,9.845469,1.147936,0.300827,0.400003,0.154546,0.180166,0.234711,0.000000,0.005785,0.000000,1.151240,0.000000,1.030579,0.000000,0.000000 -601386.155000,4612125.550000,3220,6305,103.366127,157.275208,160.275208,151.506622,140.390915,131.448776,128.870270,125.655388,125.192574,126.820679,128.440506,139.861984,157.754547,172.638870,188.432236,204.696701,209.324799,203.886780,186.969421,166.985962,155.184311,152.134720,149.209091,110.605789,87.233894,111.291740,151.440506,124.390923,61.176048,18.066961,13.564482,9.476875,11.981009,17.247952,21.866133,13.615718,1.617358,0.263637,0.048761,0.042976,0.019835,0.676860,0.181819,0.081818,0.000000,1.014050,0.000000,0.000000,0.000000,0.000000 -601393.555000,4612125.550000,3257,6305,99.225632,135.434723,135.633072,125.434715,113.095871,104.352074,101.690910,98.550415,96.459511,95.616531,96.467773,103.525627,113.509094,123.864471,132.426453,141.938858,145.922333,141.930588,132.310760,121.186783,112.319016,110.674385,107.145462,82.839684,66.889275,87.484299,125.128929,114.211578,65.864479,15.882663,9.740515,11.125635,14.227290,25.681839,35.583492,26.479357,1.157854,0.157025,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,1.870248,0.000000,0.000000,0.000000,0.000000,0.000000 -601400.355000,4612125.550000,3291,6305,88.030594,133.872742,139.905792,130.542160,117.385139,109.525635,107.087616,103.021500,102.029762,101.186790,103.641335,111.079353,124.294228,134.633057,145.104141,155.004974,157.690918,154.823151,143.616547,130.814880,122.484314,119.137199,117.145470,89.360352,73.451263,92.087624,124.442986,109.046295,57.624813,13.795059,10.649606,8.272739,11.747124,17.403322,28.252909,16.331421,1.098350,0.004959,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.578513,0.000000,0.000000,0.000000 -601446.555000,4612125.550000,3522,6305,62.310757,110.799202,107.823990,99.005814,83.071930,69.733086,63.295059,56.270267,51.485142,48.865307,46.063656,50.022331,58.286793,66.518196,75.666969,87.055397,91.146309,88.038872,81.964485,69.237213,57.063656,54.865307,54.881836,21.867785,7.852083,35.476879,95.485153,106.468620,57.989273,9.928942,4.989275,3.197528,9.596709,20.783489,33.749603,20.541338,0.142976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601449.155000,4612125.550000,3535,6305,72.916534,133.586792,130.305801,120.768608,107.479355,96.900833,91.677696,87.338852,86.107445,85.933899,84.752083,97.487610,111.438034,124.826462,139.859497,153.603302,158.884293,157.595047,148.669418,131.454559,117.099190,116.024811,114.545471,77.024811,53.537209,83.578522,142.702484,140.760330,75.355385,16.910763,10.413241,6.060343,15.390926,26.289276,40.024815,23.911589,0.461159,0.005785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601451.955000,4612125.550000,3549,6305,96.326469,137.888443,142.640518,135.797531,120.863663,109.739693,108.971100,106.111595,105.797546,108.309944,108.995895,121.756226,140.781006,155.781006,170.921494,184.252060,189.061981,190.557846,177.582642,159.095047,145.714890,144.516541,143.863647,106.309944,80.326469,109.863663,166.731400,152.979355,80.161171,20.150431,13.078531,8.104971,15.067786,23.475225,36.034733,23.531424,1.243804,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.555000,4612125.550000,3562,6305,122.459526,163.624802,160.476028,155.095871,140.393387,130.137207,128.723984,127.360344,128.285965,131.409927,133.261169,146.054535,164.484299,181.335556,196.203323,206.566956,210.550430,211.583481,195.806625,174.881012,163.335541,161.038010,158.781815,124.021500,100.600014,124.161995,167.558685,146.112396,74.707458,18.372746,14.434729,8.630590,13.923158,20.033901,29.426468,18.259520,1.249593,0.025620,0.000000,0.000000,0.102479,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.555000,4612125.550000,3577,6305,125.743828,188.495880,183.123978,178.206635,164.826462,156.016541,155.347122,155.743820,155.793411,158.975220,162.198364,175.950424,193.793411,210.181839,225.636383,236.330597,239.851257,239.289276,219.446304,194.752075,182.520676,181.570267,178.818192,143.652908,119.743820,139.264481,169.528946,136.991745,64.545471,20.826464,16.256218,9.514063,14.517373,17.919853,24.041340,15.267783,2.195048,0.208265,0.131405,0.052893,0.190910,0.103306,0.347935,0.036364,0.000000,0.000000,0.000000,0.000000,1.411570,0.000000 -601464.155000,4612125.550000,3610,6305,174.576889,208.973572,202.700836,195.717361,185.651260,177.304153,180.948776,180.494232,181.461182,187.502502,190.957031,205.114059,220.337204,237.800003,251.114059,261.948761,266.328918,264.833069,238.791748,215.775208,205.783478,202.221497,198.345459,168.304153,147.411591,160.072754,175.915726,138.857880,65.089264,23.064482,18.031424,12.846297,15.533077,20.137209,28.444647,19.135555,2.834718,0.520663,0.157026,0.235538,0.766943,0.075207,1.089258,1.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601479.555000,4612125.550000,3687,6305,60.342983,108.266129,106.555382,91.803322,75.530594,61.315720,53.431423,45.332249,39.712414,35.200016,30.290930,35.869438,45.803322,53.770267,64.200020,76.059525,77.439690,70.662827,65.406631,49.877705,36.943821,35.249603,33.836380,4.672739,0.352896,15.440515,77.629761,95.423157,50.861176,8.008280,3.076052,6.776045,8.309104,15.819025,30.341343,19.663652,0.420662,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601485.555000,4612125.550000,3717,6305,83.229767,136.490921,134.052902,118.928940,101.681000,87.672737,80.813232,73.333893,67.854568,63.714069,59.366962,66.986794,80.912407,91.482658,105.160339,121.532242,124.267776,116.697533,108.672737,90.755386,74.829765,73.201668,69.672745,30.466135,16.733902,42.375225,106.747116,110.862823,53.267788,10.919025,6.333904,6.278523,8.036375,11.581008,19.604151,8.119849,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.033058,0.000000,0.000000,0.000000,0.000000,0.000000 -601488.555000,4612125.550000,3732,6305,88.616547,139.029755,139.765289,127.285957,110.385139,94.104156,89.699196,82.905807,79.087624,75.971924,72.393410,81.038040,97.153740,111.013237,125.715706,143.608261,147.814880,140.004959,130.591736,112.806625,96.451263,93.467789,89.418205,48.128948,31.914068,59.104153,121.021492,116.046295,54.955395,11.996712,8.128944,5.784308,9.421503,12.993407,22.023985,12.313239,0.591737,0.000000,0.076033,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.031405,0.000000,0.000000 -601493.555000,4612125.550000,3757,6305,87.778534,151.596725,146.687622,134.390106,116.026451,102.109100,98.737198,92.555389,88.563652,86.844643,84.563652,94.340515,111.456207,126.811584,141.985153,157.720688,161.208298,154.166962,143.629776,124.018196,110.885963,107.538849,104.563644,62.976879,45.704151,71.935555,129.059525,116.439674,54.720680,14.988449,9.505805,9.952082,9.311585,16.595886,21.677704,13.061172,0.382646,0.326447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.955000,4612125.550000,3794,6305,90.368607,151.046280,145.112411,133.608276,117.046295,103.525635,100.649597,95.153732,91.765305,92.649597,88.624809,98.624809,114.327286,128.261169,141.467789,156.095886,158.533890,150.558685,140.029770,124.203316,111.988441,111.137199,108.509102,72.153732,52.905811,78.236374,129.930588,115.153732,55.376881,12.179356,9.864482,6.565301,8.115715,14.271091,21.649605,11.920676,0.309918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.025620,0.000000,0.000000,0.000000,0.000000,1.259504,0.000000 -601508.355000,4612125.550000,3831,6305,110.332253,148.861176,144.869446,133.034714,114.398354,100.464470,94.910751,89.704147,85.795059,86.257866,82.976875,89.257866,100.877693,112.877693,120.803314,132.076050,133.786789,130.051254,121.472740,107.935547,98.241333,97.216537,95.927292,67.084312,49.588451,72.266136,116.042984,112.208275,61.208286,12.962828,8.720681,7.437203,10.074395,18.683489,28.695890,19.692581,0.571075,0.000000,0.000000,0.000000,0.000000,0.000000,0.142149,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601512.355000,4612125.550000,3851,6305,91.047958,140.031433,139.816559,125.957047,109.833084,94.766968,90.254570,85.105804,82.585144,81.618202,79.023163,84.519028,95.841347,106.262833,114.750435,125.428123,128.089264,125.163651,117.849609,104.295891,95.171921,93.238037,93.072746,63.932251,47.527290,70.428123,114.370270,111.204979,61.585144,12.186794,8.461176,6.677699,10.704148,18.778530,32.056217,20.604977,0.737193,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.155000,4612125.550000,3880,6305,96.476875,149.865280,143.179352,128.617371,111.832253,98.518196,93.617371,88.823982,85.262001,84.518196,81.733078,87.733078,98.526466,109.228943,117.832253,127.609108,129.443817,125.402496,118.766136,105.501671,96.526466,94.716545,94.609108,66.832253,50.435562,71.981010,114.212418,111.303322,60.278534,12.609936,8.600846,7.790097,13.687622,20.643820,31.774401,22.756216,0.561159,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.006612,0.000000,0.000000,0.000000,0.000000,2.565289,0.000000 -601527.155000,4612125.550000,3925,6305,102.021507,155.170258,144.252899,132.814880,115.137215,103.310760,98.550423,94.591759,92.013245,93.120682,92.327293,102.839684,119.418198,135.583481,149.426453,162.657867,165.087616,160.889267,149.905792,132.236374,122.145470,121.219849,121.327286,90.343826,67.616539,93.054565,143.203323,129.004959,65.781830,14.311588,11.029771,5.028937,12.071093,19.397539,28.038038,15.070264,0.555374,0.000000,0.000000,0.000000,0.004132,0.000000,0.000000,0.015703,0.000000,1.212397,0.000000,0.000000,0.000000,0.000000 -601537.955000,4612125.550000,3979,6305,94.724808,148.931412,146.476883,135.625626,118.410759,107.848778,103.947952,99.344643,98.014069,98.716545,98.005806,106.609108,119.080185,131.129761,142.171097,152.551254,155.576050,151.427277,141.981018,128.022324,119.633904,118.931419,118.245476,90.914894,74.113243,95.435555,132.336380,120.063652,66.369438,15.100019,10.749606,11.608280,15.519027,25.749607,32.584316,28.476051,2.485956,0.272728,0.095868,0.302480,0.000000,0.523967,0.001653,0.079339,0.000000,3.706612,1.018182,0.000000,0.000000,0.000000 -601585.355000,4612125.550000,4216,6305,39.136375,83.566963,84.752907,74.455383,57.571087,47.496708,45.471912,39.586792,37.479355,36.166962,35.410763,41.801670,51.852077,61.620674,70.645470,80.546288,84.215721,82.215714,78.356209,66.397537,58.116543,56.347946,57.100014,28.038860,12.227287,36.035553,96.496696,108.364471,65.554565,10.293405,5.190928,9.368610,16.526464,32.211590,50.942993,41.779354,2.410750,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.468596,0.642149,0.957852,0.763637,0.000000,0.000000 -601589.955000,4612125.550000,4239,6305,61.717365,120.868614,129.934738,114.744652,100.323158,92.438866,90.761177,86.223991,85.612419,87.066963,87.554565,95.149605,108.868614,120.562828,130.157867,141.075226,145.463654,141.571091,134.025635,120.711594,110.769440,108.504982,108.281837,77.091759,58.488449,83.637215,132.124817,125.496712,68.752914,14.204151,9.843822,9.169436,13.983487,23.128944,37.723164,27.242992,1.214053,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.555000,4612125.550000,4277,6305,88.407448,143.430588,156.794205,145.240509,128.430588,120.827286,121.967781,119.372742,121.703316,123.843811,126.529762,139.695053,159.728119,176.265289,190.785950,203.992554,208.777679,203.306610,190.298340,170.744644,160.223984,159.323151,158.099991,121.463646,98.744644,124.794228,158.298355,128.232239,65.612411,19.458696,14.372746,13.390100,12.078527,15.605802,23.404152,13.890924,0.889260,0.041323,0.024794,0.005785,0.130579,0.133058,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601610.355000,4612125.550000,4341,6305,105.771919,163.317368,167.168610,154.226471,140.697540,130.342163,131.127289,129.102493,130.375214,133.185135,136.209930,148.515717,167.284317,185.416565,200.879364,212.846298,216.267792,206.887619,187.366974,166.234726,156.606628,152.970261,152.309113,117.821503,98.573563,119.110756,147.085968,113.366951,57.143822,18.704151,13.846300,11.968612,14.513242,15.909109,18.112415,13.558693,0.434713,0.298348,0.019835,0.000000,0.026446,0.000000,0.000000,0.063637,1.461984,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.155000,4612125.550000,4435,6305,111.919022,171.414886,173.745468,159.200012,145.852905,136.373566,136.828110,134.993393,135.687607,136.761993,140.613235,154.489273,173.026459,192.034714,206.919022,221.348770,224.902496,215.067780,194.745468,171.547119,161.828110,159.034714,155.018188,122.803314,101.224808,120.348770,140.456207,103.762001,51.282665,18.976049,14.092581,11.338861,13.095883,12.962827,14.565308,9.026460,0.387604,0.376862,0.210745,0.000000,0.026446,0.000000,0.041323,0.152893,0.000000,1.388430,0.000000,0.000000,0.000000,0.000000 -601637.955000,4612125.550000,4479,6305,115.221512,173.130585,176.700836,161.105789,146.824799,135.543808,136.304153,136.626450,136.998352,139.254547,142.163635,155.023148,175.527283,194.469421,209.204971,223.056198,228.163635,216.452896,194.452896,173.171906,161.419846,158.940506,153.981827,120.709106,101.155388,118.733902,135.047943,99.709106,50.262833,19.494234,13.998366,13.721505,14.114067,14.847125,14.837208,9.233897,1.330583,0.132233,0.309918,0.044629,0.232233,0.024794,0.405787,0.222315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.555000,4612125.550000,4522,6305,116.366951,177.730576,174.499176,161.457855,146.242981,135.052902,137.218185,134.928940,135.358688,137.928925,141.292572,155.276031,173.656204,192.226456,207.061172,222.689270,226.548767,215.474396,191.780167,169.912399,158.342148,156.606613,151.945465,117.242989,98.904144,113.937202,130.011581,96.548775,46.259525,18.239687,13.813243,11.668612,11.433904,12.969440,12.989273,6.621498,0.306615,0.100828,0.144629,0.000000,0.118182,0.000000,0.062810,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.955000,4612125.550000,4554,6305,116.884308,179.000015,173.785126,161.537201,144.619873,134.272736,135.586792,133.247940,134.438019,136.818207,139.148788,152.545471,172.628098,190.446304,205.537201,221.628113,225.099182,213.471085,190.132248,168.123978,156.504150,154.206635,149.000015,116.462814,96.214882,112.520668,128.355392,92.545464,46.851257,16.463654,13.545473,13.280182,8.766958,11.849604,13.981009,7.559513,1.101656,0.545456,0.234711,0.000000,0.000000,0.000000,0.052893,0.255372,0.000000,0.000000,0.000000,1.879339,0.000000,0.000000 -601657.555000,4612125.550000,4577,6305,116.210762,182.003311,172.838013,162.961990,147.788437,135.409927,135.515717,133.507462,135.433075,139.490952,141.375244,154.112411,172.657867,192.988449,206.393387,223.252884,224.385117,214.418182,190.600006,167.228119,156.988449,156.525635,149.509109,117.690933,98.467781,113.856216,128.186798,94.484314,46.484318,18.576052,13.591755,13.803323,11.851258,14.676876,15.134728,7.942986,0.898349,0.636365,0.523968,0.325621,0.306612,0.000000,0.176861,1.280994,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601662.555000,4612125.550000,4602,6305,110.320679,185.783463,173.370255,161.204971,147.213226,134.593399,134.709091,134.395050,135.717361,139.271088,140.576859,153.634720,173.014877,191.510727,207.436356,221.890900,226.353714,213.163620,191.395035,168.667770,157.634720,155.725632,151.618195,116.568604,97.981827,114.304146,127.320679,93.138847,46.568619,16.451258,13.783490,10.588448,9.676876,11.171091,13.116545,6.741332,2.012400,0.318182,0.200000,0.179339,0.016529,0.000000,0.000000,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.355000,4612125.550000,4616,6305,113.890915,189.526459,177.237183,166.708267,148.369431,135.865295,137.419022,135.633896,136.476868,141.394226,141.625626,155.485138,174.815689,193.344635,209.476868,223.931412,227.766129,214.551254,192.187607,169.394226,157.452072,155.146286,150.154556,117.526459,97.493401,113.534721,126.658684,93.650421,45.964485,18.337208,13.650432,13.094233,11.723158,12.691752,13.671090,8.519019,0.904135,0.559506,0.352067,0.057025,0.242976,0.000000,0.301654,0.086777,0.000000,2.743802,0.000000,0.000000,0.000000,0.000000 -601668.355000,4612125.550000,4631,6305,108.294228,184.195068,173.087631,161.591766,146.856232,134.980179,136.930588,135.120667,135.980179,140.748795,140.748795,153.434738,173.195068,192.823151,208.343796,224.847931,226.360336,214.525620,191.104141,169.864487,157.509125,154.847961,150.054581,116.905800,97.881004,112.781830,126.393402,93.376869,44.517372,15.849605,13.641340,11.873570,10.551256,13.195059,13.527288,5.685133,0.285952,0.226447,0.042149,0.020661,0.000000,0.000000,0.226447,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601672.955000,4612125.550000,4654,6305,124.019852,187.928925,173.986786,163.333893,147.664490,135.383484,137.606613,135.788437,134.887619,139.953720,140.333908,153.705795,172.995041,192.499176,207.441330,222.143799,224.961990,212.085953,189.284302,167.160339,155.928925,154.317352,149.309113,115.623154,96.094231,112.259514,126.044640,91.780182,44.408283,16.362001,13.573572,11.823156,9.060348,10.527290,12.150429,6.665300,0.698348,0.424794,0.063637,0.046281,0.014876,0.045455,0.376860,0.266943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.755000,4612125.550000,4668,6305,103.348778,188.590912,180.780991,171.095047,158.392563,143.491730,143.045456,139.243805,140.276855,145.590912,142.913223,157.673553,175.772720,195.780991,211.326447,226.979340,229.855377,216.772720,194.409088,172.367767,161.061981,157.764465,152.863632,117.921494,98.756203,116.119843,126.475212,90.838852,45.202499,16.938034,13.896712,16.720678,11.940515,13.520678,16.197536,10.671910,3.270251,2.480167,1.798349,1.692563,1.039670,0.000000,0.127273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.755000,4612125.550000,4683,6305,124.591759,198.120651,177.624802,163.145477,146.401688,132.451263,134.938858,132.269440,133.195068,140.087631,137.699203,151.864487,170.856232,189.988434,204.938843,220.426437,223.360321,209.137192,187.566940,165.558701,154.451263,153.153748,146.690918,112.914062,94.269432,111.591751,123.112411,90.310768,44.674397,16.043819,13.335556,14.995059,11.240514,12.231421,12.483487,6.352077,1.969425,0.368596,0.690910,0.561984,0.208265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601683.755000,4612125.550000,4708,6305,138.861984,194.861984,178.580994,166.878525,151.200836,139.159515,139.614059,136.952896,138.432236,144.415710,143.002487,155.828934,174.580994,193.564468,209.093399,224.738022,227.085129,212.324799,190.200836,169.746292,156.729752,153.969421,150.936371,117.382668,98.043816,116.696716,127.076881,93.795883,47.448784,18.615723,13.721506,13.992578,12.033076,13.266960,16.855389,10.038856,1.127275,0.258678,0.080166,0.028100,0.089256,0.026446,0.123141,0.824794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601691.955000,4612125.550000,4749,6305,134.444656,194.204971,180.452911,168.874390,151.585144,144.180191,146.676056,145.849609,147.676056,156.072754,150.824814,163.990112,181.089279,200.097534,215.535538,231.221497,231.866119,215.485962,194.957031,171.642975,159.775223,156.543823,150.436386,116.709114,99.419861,115.998367,125.510765,90.155396,44.262829,17.476051,13.676053,14.987620,10.544645,12.763654,14.530595,8.393398,1.366945,0.363638,0.298348,0.065290,0.077686,0.022314,0.342976,0.025620,0.000000,0.000000,1.965289,0.000000,0.000000,0.000000 -601705.755000,4612125.550000,4818,6305,111.468620,164.369431,172.609100,157.592590,143.369446,135.146301,132.914902,130.939697,131.096725,134.435562,137.311600,148.625641,167.220688,184.303314,197.452072,211.600830,214.964478,205.195877,181.063644,158.890106,147.460358,144.790939,139.609116,109.989281,91.361183,107.055397,120.840523,86.939697,43.493404,16.347126,12.691754,8.548777,9.901669,11.004974,11.130596,7.792572,1.214878,0.146282,0.110744,0.011570,0.049587,0.000000,0.130579,0.128926,0.000000,0.000000,0.000000,0.000000,1.861984,0.000000 -601719.955000,4612125.550000,4889,6305,96.287621,163.370255,168.105789,154.800003,141.229782,133.428101,132.601654,130.816528,131.014877,132.791748,135.213226,147.824799,167.510727,183.585144,197.560333,210.890915,215.047943,204.221497,181.527298,159.444626,148.527283,145.676041,139.072739,109.056206,90.733902,108.171906,120.990089,87.353737,43.485970,16.923159,12.642993,9.182659,9.910761,11.640513,11.499187,5.285133,0.696696,0.142149,0.199174,0.170248,0.055372,0.000000,0.048761,0.356199,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.755000,4612125.550000,4983,6305,93.432243,157.985962,169.614059,156.514877,142.308273,132.448776,131.638855,130.159515,130.886795,134.027283,135.919846,148.043808,166.192566,184.341324,198.490082,211.233887,215.176041,204.258682,182.514877,158.936371,147.870255,144.366119,138.754547,107.961174,89.109932,105.076874,118.523155,85.547951,42.870270,17.024809,12.614069,8.228939,9.578528,8.998363,10.843818,4.476040,0.680993,0.317356,0.203306,0.016529,0.019835,0.000000,0.045455,0.069422,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601759.955000,4612125.550000,5089,6305,105.733910,164.138870,166.676056,157.932251,142.667786,133.138855,131.725632,130.114059,131.452896,133.395050,135.700836,147.634735,165.907455,183.552078,197.973557,211.791748,215.543808,204.477692,182.485962,158.527298,148.089279,144.700851,138.981842,108.915718,89.866119,106.155388,120.502487,89.221497,44.576878,16.009935,12.634729,9.676049,12.136381,10.767785,11.052082,5.600009,0.933060,0.297521,0.441323,0.080992,0.000000,0.000000,0.052893,0.229753,0.000000,0.000000,1.347934,0.000000,0.000000,3.061157 -601776.355000,4612125.550000,5171,6305,110.774399,165.650421,167.625626,156.542999,142.237198,131.518204,129.369446,127.724800,129.080185,132.270264,133.964478,145.146286,163.171082,182.088455,196.245483,210.047119,214.212402,203.633911,180.790939,157.766129,146.121521,142.964478,135.972733,105.658684,87.385963,104.385963,117.716537,88.691742,42.600849,15.592581,12.361176,5.146292,8.769440,9.002495,10.919024,4.704967,1.357853,0.153719,0.088430,0.000000,0.011570,0.000000,0.000000,0.098347,3.120661,0.000000,7.055373,0.000000,5.379339,0.000000 -601789.155000,4612125.550000,5235,6305,123.404144,174.908279,169.304977,158.627289,143.800827,130.800842,131.635544,129.602493,129.866959,133.635544,135.081833,146.676880,164.949600,184.172745,198.610764,212.470245,215.701660,205.214066,181.825638,159.693405,148.023987,144.073563,137.263641,108.767776,88.139679,105.057037,119.734718,90.255386,42.949612,16.153736,12.478531,8.766956,9.272744,10.196711,11.280180,5.276042,0.452894,0.290910,0.033059,0.000000,0.024794,0.000000,0.034711,0.351240,4.901653,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.555000,4612125.550000,5317,6305,109.747948,164.119858,169.392563,155.169434,138.252075,127.888435,128.458679,125.615707,125.326454,128.888443,130.169434,141.318192,160.078522,178.152908,191.309937,204.037186,207.210739,195.805801,171.995880,151.632248,140.516541,136.896713,131.409103,101.409103,83.557869,98.971092,112.681831,82.714890,38.971096,15.565306,11.946300,10.590922,9.647950,9.347122,10.060345,5.614059,1.132234,0.143802,0.389257,0.000000,0.314050,0.301653,0.149587,0.194215,0.000000,0.000000,0.924794,0.000000,0.000000,0.000000 -601822.355000,4612125.550000,5401,6305,104.522339,171.373566,167.687607,156.092575,140.646286,129.249603,130.224808,128.018188,128.001663,131.348770,131.538849,143.183487,161.728943,179.233063,193.175217,207.076050,208.778519,196.761993,173.894226,152.051254,141.728943,138.976868,133.290924,102.224808,85.125648,99.836372,112.629761,82.009933,40.315720,14.742167,12.117374,10.685141,9.491752,8.913240,10.004973,4.530586,0.835539,0.632233,0.123967,0.140496,0.117356,0.051240,0.000000,0.013223,0.000000,0.000000,0.000000,1.266942,0.000000,0.000000 -601838.755000,4612125.550000,5483,6305,101.896721,180.557846,169.095047,157.590912,141.103302,128.053726,129.500015,127.376038,128.376038,133.417358,132.144638,145.119827,163.425613,181.814056,195.590912,210.657028,211.698349,198.599167,176.185944,155.285126,145.227280,141.458679,135.500000,104.318199,86.400841,102.318199,112.747940,82.533081,38.714901,14.105804,12.318201,11.567784,9.172746,11.209936,12.447950,5.826457,0.926448,0.121488,0.051240,0.076860,0.027273,0.000000,0.065289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601851.755000,4612125.550000,5548,6305,131.058685,195.736374,173.645462,162.876877,146.430588,133.298355,135.521500,133.215714,134.595886,140.091751,138.414078,151.199188,169.562820,188.504974,204.736374,218.339691,219.364487,204.860336,182.959518,161.281830,150.695053,148.265305,143.918198,111.339684,93.595879,109.058693,117.604149,86.430588,41.695061,18.027290,13.083489,17.431423,10.808281,12.596712,14.477702,6.339679,0.504133,0.117356,0.269422,0.077686,0.121488,0.000000,0.247108,0.196695,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601866.155000,4612125.550000,5620,6305,97.557045,145.449600,152.242996,137.821503,123.928947,116.267792,117.011589,114.333900,115.631424,119.358696,122.705803,134.276047,152.623154,169.714066,184.590103,198.119034,201.722336,191.796707,169.416550,149.416550,139.681015,136.953735,131.945480,103.540512,85.598366,99.912415,111.449608,81.945473,39.069443,14.276051,11.995061,9.440511,9.847123,12.466133,11.533901,6.473564,1.265292,0.375208,0.123968,0.217356,0.188430,0.000000,0.288431,0.350414,1.248760,2.080992,0.000000,0.000000,0.000000,2.154546 -601880.155000,4612125.550000,5690,6305,100.978531,141.686783,143.819016,135.298355,119.554558,113.000839,112.000839,110.918198,112.364479,117.000839,119.372742,131.959518,150.323151,167.546295,183.000839,195.463638,199.885117,190.595871,168.670258,148.066956,139.364471,137.389267,131.009109,103.678528,83.686790,101.190926,111.133072,81.546295,38.455395,14.610761,11.909937,9.506627,10.843820,11.277702,13.919026,6.400836,0.966118,0.696697,0.300002,0.106613,0.004132,0.000000,0.242149,0.344629,1.442975,0.000000,1.238843,0.000000,3.061984,3.205785 -601890.355000,4612125.550000,5741,6305,87.490921,139.895889,139.978531,128.829758,115.862823,107.135551,106.573563,104.986786,106.061165,109.242989,112.466125,124.094223,142.697540,160.085968,174.639694,187.019852,189.904144,182.614899,161.358704,141.995056,133.664490,130.978531,124.763649,97.672745,78.771919,95.209938,112.581833,82.763657,38.879356,13.825638,11.342168,7.574394,10.040514,11.809935,13.228117,7.895051,0.927275,0.277687,0.178514,0.258678,0.000000,0.452893,0.203306,0.338844,3.543802,1.956198,1.731405,2.052066,0.000000,2.918182 -601898.155000,4612125.550000,5780,6305,89.881012,131.100021,130.124817,117.529762,103.695053,94.835548,93.835548,92.190933,93.281830,96.050423,99.223976,111.017365,129.447128,146.554565,161.257034,174.488449,180.827286,177.876877,164.381012,149.926453,142.628937,142.066956,140.100006,110.719849,90.124817,113.430588,143.050430,115.984314,56.066963,16.009109,12.736383,13.131422,14.745471,18.096712,27.465309,23.029770,2.349592,0.686780,0.112397,0.055372,0.353719,0.471902,0.416529,0.295043,4.639669,6.685125,6.888431,3.094215,1.227273,9.826447 -601117.955000,4612115.550000,1879,6355,259.209930,260.375214,225.110748,222.755371,209.581818,206.887604,213.598343,215.887604,217.540497,230.408264,227.457855,240.557022,255.466125,273.755371,288.598328,300.523987,300.152100,288.242950,257.391724,229.937195,219.755371,215.383469,206.672729,172.094223,153.226456,163.730576,166.697525,119.953735,56.433075,22.700018,18.788448,23.785143,19.161173,21.589273,26.059523,19.294231,6.176042,2.749593,1.572732,0.500001,0.461985,1.133885,1.326447,1.427275,4.341323,0.000000,2.434711,1.232232,2.915703,0.000000 -601121.155000,4612115.550000,1895,6355,242.619858,256.793396,226.909088,224.123962,213.793396,211.107437,218.570251,219.148758,223.165283,237.280991,236.454544,249.520660,265.297546,282.694244,297.975250,309.743835,311.570282,297.479370,263.776886,234.991730,223.661163,218.950409,209.636368,175.157028,155.066116,163.537186,164.801651,115.586792,53.628124,22.793407,19.057869,22.169439,16.706631,19.644646,23.597538,16.609936,5.258686,1.885955,2.078517,0.580993,0.638018,0.009918,0.618183,1.087606,2.858678,0.000000,0.000000,0.000000,4.173554,0.000000 -601125.155000,4612115.550000,1915,6355,251.233078,248.629776,224.481018,224.414902,211.728958,208.728958,215.282669,215.786804,219.315735,229.183502,229.208298,240.596725,256.555389,273.200012,286.274414,298.290955,299.026489,285.919037,252.414902,225.563660,212.522339,207.100845,201.018204,165.935562,146.290939,153.935562,158.290939,114.266129,53.175224,22.076054,18.274401,23.464479,19.100843,19.221508,23.671095,18.617373,3.745463,1.502485,1.856203,1.483473,0.487605,0.218182,0.983473,0.633887,2.868595,1.379339,3.829752,0.000000,0.000000,0.000000 -601130.155000,4612115.550000,1940,6355,242.273544,250.587601,225.447098,225.091736,218.108261,213.133057,222.422318,224.521484,228.521484,239.521484,241.579330,253.885117,269.290100,288.471954,299.984344,311.595917,312.157898,297.133057,256.521515,225.339661,211.670242,205.885117,197.190903,161.066956,143.075226,145.885132,145.389267,99.223991,45.397541,20.110762,17.926466,19.538033,16.375225,19.134729,17.138859,10.971914,3.558686,2.190915,2.017361,0.899176,0.822316,0.000000,0.605787,0.618183,1.387603,1.418182,0.000000,2.276860,4.036364,0.000000 -601136.155000,4612115.550000,1970,6355,229.150421,243.076050,228.365295,224.332245,216.208267,213.662827,221.249603,223.604965,226.257858,236.877701,237.910751,252.406616,265.373566,283.340515,297.563660,308.158691,307.844666,294.580200,253.687607,222.233063,210.299179,204.042984,195.472733,160.795044,140.447937,143.935547,146.811584,103.100838,44.580185,19.283489,17.770266,18.599192,13.587622,15.752912,17.504978,10.455387,3.276043,1.407444,2.023144,0.789257,0.800002,0.846282,1.254548,0.752894,0.000000,0.000000,0.000000,1.092562,1.351240,0.000000 -601143.355000,4612115.550000,2006,6355,225.292572,245.036362,228.400009,223.581818,217.152069,215.788437,226.317352,228.309097,231.127274,242.342148,246.714050,259.978546,277.995056,295.474426,309.036407,321.416595,321.028137,305.424835,261.077698,227.995041,213.333893,208.614883,199.400024,160.871094,139.904144,142.862823,147.168610,103.639679,44.069443,19.796715,18.127293,16.504148,15.329769,16.484316,19.629772,10.048775,2.680173,1.341328,2.032235,0.768597,1.069424,0.417356,0.970250,0.627274,0.000000,1.328099,0.000000,0.000000,1.387603,0.000000 -601151.955000,4612115.550000,2049,6355,203.771927,236.573578,225.309113,221.094238,212.647949,211.466141,218.036377,220.085968,221.937210,228.904144,233.557037,246.218201,262.970276,279.466125,293.821503,305.292572,307.838043,298.292572,260.846313,231.168610,217.689270,213.928940,206.218201,169.523987,148.317368,153.821503,166.499191,123.871086,54.928947,21.910761,18.747126,16.708282,17.243820,18.394230,21.648777,14.257041,3.763645,1.558682,1.748765,0.457025,0.488431,0.957025,0.421489,0.681820,2.831405,2.758678,3.700827,1.096694,0.000000,4.388430 -601161.755000,4612115.550000,2098,6355,216.835556,232.538025,228.761169,225.496704,217.215714,219.248779,226.637207,227.843811,231.802490,240.538025,247.091751,261.711578,281.240509,301.447113,317.058685,329.901703,334.612427,325.306671,284.686798,252.157867,241.298355,235.893402,228.372742,190.182663,167.290100,174.653732,184.967789,137.992569,63.141338,23.273571,20.761175,20.144644,18.529770,23.685143,24.823984,16.681007,4.866123,2.995047,1.594217,0.395871,0.657853,0.623141,0.128927,1.347110,0.000000,1.403306,2.325620,2.214876,0.000000,6.735537 -601172.555000,4612115.550000,2152,6355,215.473557,233.399185,230.622314,227.242157,222.622314,224.068604,234.002487,236.977692,241.490082,249.217361,259.382660,274.217377,294.862000,314.498352,330.457031,342.523132,345.878510,333.151245,290.225616,257.399170,244.010757,237.845459,231.027283,192.828934,171.275208,175.101654,179.531418,130.795883,58.142998,25.090927,21.002501,19.014893,19.159525,22.704979,24.200846,16.121506,4.804141,3.279344,1.849591,0.720665,0.808267,0.390083,0.488431,2.203309,0.000000,4.105785,0.000000,0.000000,4.100000,0.000000 -601184.155000,4612115.550000,2210,6355,211.302490,234.327286,227.757034,224.211578,220.674393,223.806625,231.195053,235.418198,239.112411,248.203323,258.087616,274.723969,295.806610,314.261169,329.558685,341.228119,342.467773,328.319031,285.707458,250.996704,237.732239,231.905792,222.781830,187.219849,165.748779,170.195053,171.525635,123.533897,54.864483,22.583492,20.252914,18.452085,16.462004,19.172747,23.644648,12.918197,3.264470,2.320666,1.009094,0.684300,0.917358,0.070249,1.238019,1.102481,1.293389,5.249588,1.149587,0.000000,1.295868,2.173554 -601196.955000,4612115.550000,2274,6355,226.539688,230.713226,230.589264,227.176041,224.820663,226.812408,238.052078,242.142975,248.192566,256.630585,269.390930,285.176086,304.597565,324.275238,336.035583,344.101685,342.944672,325.490112,274.994263,235.845459,222.407440,214.795868,201.936371,169.399185,148.052078,149.787613,141.101654,94.465302,41.787624,20.085970,18.357870,14.299191,16.309935,19.012415,14.717372,9.332246,3.443810,2.504140,1.090085,0.528927,1.638847,0.000000,1.152070,1.016531,4.191736,5.293389,2.282645,0.000000,2.543802,0.000000 -601207.355000,4612115.550000,2326,6355,212.079346,224.162003,230.864471,227.112411,226.409927,229.881012,239.839676,243.211578,248.434723,258.732239,272.525635,287.393402,305.484344,323.476044,334.740509,343.558685,341.575226,320.732239,268.823151,231.418198,218.153732,209.732239,196.600006,164.442993,147.137192,145.376862,132.236374,88.426460,40.004974,20.436384,17.872747,15.972745,16.061176,15.787621,14.780184,8.199187,3.823149,2.567775,1.851244,1.489259,1.421490,0.566116,1.147938,2.052068,4.228926,7.933059,2.304133,0.000000,1.246281,2.185951 -601216.355000,4612115.550000,2371,6355,210.057022,217.800827,218.205795,214.850418,209.585953,212.982651,219.784302,222.577682,226.247116,233.585953,243.776016,259.263641,278.577698,294.966125,307.404144,318.652100,319.238861,307.040527,267.569427,235.767776,225.172729,217.379349,205.990906,175.528107,156.337997,160.404114,157.817337,110.222328,48.123161,20.693405,18.726463,19.362827,15.202498,18.223984,21.299191,11.202497,5.285137,2.476040,1.778516,1.111573,1.599177,0.122315,1.989261,4.038021,0.000000,0.000000,5.971076,1.133058,2.676033,0.000000 -601387.155000,4612115.550000,3225,6355,102.209099,146.180161,150.543808,140.056198,127.932236,117.940506,115.039673,109.998352,108.601662,109.081001,109.122322,118.940506,133.791748,146.204971,157.882645,171.981842,176.535553,170.320679,157.519012,138.998352,126.642982,122.957031,119.618187,86.006638,65.535553,88.940521,128.461166,111.122322,56.485970,15.972746,10.874399,9.346296,11.457868,17.366135,22.606630,14.668611,2.368600,0.434712,0.159505,0.259505,0.000827,0.190910,0.386777,0.000000,2.182645,5.915703,2.824794,3.553720,0.000000,0.000000 -601391.155000,4612115.550000,3245,6355,113.843811,147.724808,156.567780,146.774384,134.295044,124.832253,119.526466,115.766136,114.319855,112.658699,112.286797,122.195885,138.633896,153.733063,168.799179,184.807449,190.138031,182.253723,166.939682,143.592575,125.104973,121.766136,116.609108,76.931412,60.162823,82.857033,131.757874,112.443817,54.171093,15.432249,10.600845,6.894227,7.690925,9.271089,12.488445,7.734722,0.760333,0.119008,0.130579,0.056199,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,1.190909,0.000000,0.000000,0.000000 -601397.955000,4612115.550000,3279,6355,105.894226,151.166946,153.588440,143.828110,132.158691,123.133896,118.447945,115.497528,114.200012,113.695877,114.679352,123.373566,139.704147,153.778519,167.323975,181.406616,186.241333,181.530594,167.638031,148.522324,135.943817,132.786789,129.563644,91.786789,71.216537,96.109100,139.489273,122.233070,58.885967,16.459522,11.778531,7.454556,9.608280,15.490927,21.957869,13.627287,0.819836,0.000000,0.138843,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,1.122314,0.906612,0.000000,0.000000,0.000000 -601404.355000,4612115.550000,3311,6355,99.201668,136.588455,135.952087,128.960342,113.514069,106.679359,102.687622,97.753738,96.059525,95.737206,96.307457,103.125641,116.150429,125.728943,135.323990,146.456207,149.323975,146.042984,137.472748,125.084312,115.224808,112.208282,110.200020,80.431419,62.646297,85.885971,125.596710,114.662827,60.844646,14.700845,10.018202,7.209104,12.850430,20.019852,28.875225,21.143820,0.501654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601408.955000,4612115.550000,3334,6355,75.381836,127.605797,128.374390,120.663651,106.647125,100.043816,95.787621,92.366127,90.647125,91.068611,91.663651,100.035553,111.341339,120.085136,129.721497,139.531418,142.423981,138.944641,131.126465,118.457039,110.151253,107.605797,104.027290,78.952904,62.738041,84.225632,119.919846,108.151253,61.415726,14.852911,9.457045,6.494226,11.917372,19.801672,29.638859,23.741339,0.661986,0.006612,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.980165,0.000000,0.000000,0.000000,0.000000 -601413.955000,4612115.550000,3359,6355,90.522324,124.935547,131.894226,122.092575,109.803314,100.836372,97.976868,93.720673,92.852905,92.282654,93.109100,101.034721,114.183479,125.720673,137.142151,148.092575,152.778519,149.100830,139.109100,125.621498,115.902489,112.315712,109.745461,79.216537,60.381840,83.175217,127.604965,115.778519,61.596718,11.448778,9.976878,7.104144,10.647949,19.635557,31.819857,18.442991,0.475208,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601454.555000,4612115.550000,3562,6355,73.812401,119.057045,110.957870,97.957870,82.470261,68.230591,63.453739,56.875221,52.428940,51.362823,48.214066,54.619022,67.098366,80.106621,93.354568,108.065308,113.379356,110.990929,105.495064,89.172737,74.247124,72.412415,71.809105,32.437210,14.697535,42.569443,113.015724,125.453735,70.362823,13.453736,6.528118,5.147116,11.055387,23.109938,37.371094,24.027290,0.199175,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601457.355000,4612115.550000,3576,6355,106.271095,144.442169,136.235550,124.070267,110.417374,95.136383,92.202492,88.285141,85.458694,87.747948,84.880180,96.111588,110.880173,126.285141,140.491745,155.260345,160.913239,159.698364,149.987625,132.747955,117.475212,115.657036,113.954552,73.590927,51.509117,81.706627,140.789276,139.500015,73.756218,16.763653,10.359524,6.638029,13.496710,25.662003,34.541344,24.952913,0.701656,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601460.555000,4612115.550000,3592,6355,149.047943,188.386780,182.923981,174.560333,159.700836,147.229752,145.436386,143.444656,143.056213,145.246307,145.857864,159.014877,176.560333,194.105789,207.775208,222.122314,224.452896,222.535538,200.411575,176.651245,162.006622,159.700836,155.709106,116.353737,94.279350,117.444641,152.097534,123.411583,60.014900,18.236383,14.155392,6.614064,10.471091,13.319026,20.848780,8.333070,1.738848,0.145455,0.106612,0.256199,0.000000,0.037190,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601465.755000,4612115.550000,3618,6355,179.526459,209.931412,205.981003,196.757858,185.468597,176.708267,178.361160,178.295044,179.055374,182.419022,186.369431,199.096710,214.055374,229.080170,241.658691,250.534714,251.278519,245.898361,219.385956,194.567780,183.394226,181.857040,175.881821,146.129761,129.228943,138.063644,147.799179,110.947945,48.931423,19.614069,15.989275,14.110760,14.264481,17.385145,19.432249,11.238856,1.738847,1.503310,1.579342,1.460334,0.780167,0.816531,1.251242,1.380167,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601468.755000,4612115.550000,3633,6355,214.979355,218.888443,201.590927,190.896713,178.243820,171.797531,171.929764,171.227295,171.103317,172.706635,176.392578,187.557861,201.293411,214.417374,223.351257,232.326462,233.252075,229.392578,206.210754,186.723160,178.400848,176.946304,172.772751,145.524811,130.301666,140.227295,151.004150,116.739685,54.458698,17.954563,15.706631,17.350431,15.557043,21.836382,25.433903,18.597538,5.047118,1.535542,2.172733,0.946284,1.262813,0.607439,0.865292,1.161987,8.042150,1.350413,9.429754,1.052066,2.428099,4.641323 -601497.755000,4612115.550000,3778,6355,88.266960,152.704987,143.176041,132.242157,115.217361,102.845467,100.457039,95.680183,93.985962,94.985962,94.076874,105.539680,123.423973,140.093414,152.969421,164.804138,167.589264,161.481827,151.490112,134.415710,124.903313,122.597527,121.209099,86.341339,67.638863,92.109932,134.738022,118.630585,58.316547,14.919853,11.019029,13.249603,11.396712,20.146299,28.415724,19.386793,1.426449,0.270249,0.000000,0.049587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601500.355000,4612115.550000,3791,6355,92.228951,153.228958,146.195877,133.617371,116.567787,104.303322,101.253746,98.964485,96.881844,100.352921,99.212425,112.352913,130.749603,149.708267,163.890106,178.187607,182.410751,178.410751,166.691757,149.410751,138.567780,137.402496,137.518188,102.741341,80.460350,107.427292,152.790924,134.369431,68.154564,15.750432,12.501672,9.283484,13.525638,21.847954,33.361176,23.653736,1.619014,0.371075,0.152893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601504.755000,4612115.550000,3813,6355,92.106621,142.503326,134.891754,124.238853,108.263649,94.519844,90.759514,85.288445,83.131424,83.354568,81.569435,88.395882,101.172737,114.461998,123.759514,136.569427,139.676865,137.387604,129.081833,115.933067,106.933067,103.809105,103.900009,73.238861,55.371094,79.982666,121.511581,116.941330,62.503326,13.857869,9.445474,7.733072,11.901669,20.139688,32.433903,22.854561,0.676035,0.068595,0.000000,0.000000,0.007438,0.000000,0.000000,0.090083,0.000000,0.000000,0.000000,0.000000,1.376860,0.000000 -601510.355000,4612115.550000,3841,6355,82.787621,145.225647,137.366135,123.209099,105.176041,93.200844,89.109932,84.366127,80.465302,81.407455,79.242165,86.614067,98.233902,109.374390,120.035545,131.076874,134.771088,132.837204,125.200836,112.366119,102.068611,100.936378,100.845467,70.903320,53.531422,76.275223,121.977692,119.324799,63.895061,14.088449,9.167788,8.053731,13.065307,23.038036,34.928116,25.605803,0.894217,0.047934,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601518.755000,4612115.550000,3883,6355,121.279350,167.576889,161.593430,149.841324,134.254562,121.808281,120.543816,117.758690,117.155388,120.246292,120.593407,133.279358,151.138855,168.709137,183.072754,195.047958,201.204987,197.543823,179.651260,161.428131,152.130585,151.444641,149.709091,119.138855,97.651253,119.089272,150.320663,121.907455,59.585148,18.083490,13.609936,8.378527,13.292582,15.796712,22.193405,13.138859,1.280169,0.685125,0.219836,0.149587,0.206613,0.000000,0.955374,0.301654,0.000000,1.428099,0.000000,0.000000,0.000000,0.000000 -601530.555000,4612115.550000,3942,6355,106.030602,162.617355,152.890091,140.617355,126.394234,113.369446,110.402504,107.790932,106.906631,109.286804,111.700027,124.179359,141.964462,160.162827,174.385956,187.022324,192.344635,188.534714,174.468597,157.344635,147.154556,147.741333,147.609100,118.096710,95.179359,119.551254,157.584305,134.129761,67.609108,17.149603,13.419028,9.642992,14.014068,21.570269,30.148781,22.599192,0.906614,0.034712,0.112397,0.000000,0.004132,0.000000,0.011571,0.348762,5.578513,1.561984,0.000000,2.067769,0.000000,2.214876 -601541.755000,4612115.550000,3998,6355,100.166954,132.443817,127.989265,114.460342,95.873566,83.278519,77.724800,71.311584,67.567780,65.741333,63.022331,67.766136,75.385963,82.642159,89.633896,98.576042,100.592575,97.038849,92.113235,81.419022,74.187614,73.493401,72.609100,48.700016,32.716549,54.377705,95.402489,96.096703,55.187622,9.728115,6.600846,7.723153,10.636380,21.992580,33.357044,24.200020,1.747110,0.000000,0.000000,0.000000,0.000000,0.072728,0.146281,0.000000,7.275208,1.384298,3.083471,1.920661,0.000000,3.930579 -601547.555000,4612115.550000,4027,6355,19.609097,27.558685,20.916533,16.406618,10.246287,7.348765,5.457856,4.083475,3.352896,3.220665,2.989259,3.776037,6.085128,8.931411,10.852071,13.636370,14.930585,14.524799,13.714882,10.323973,9.014055,8.286782,8.245460,2.574383,0.361158,4.462814,23.168602,30.547117,19.300011,2.149592,0.749592,8.496703,20.728939,45.014069,66.096710,67.462830,49.314892,52.188446,47.536373,51.080177,49.877697,49.694221,56.932240,39.110752,44.538021,34.738846,38.193390,38.824795,25.519838,32.671078 -601580.755000,4612115.550000,4193,6355,27.514885,33.410755,27.737204,14.672741,6.761166,2.161988,1.101656,0.247108,0.025620,0.048761,0.000000,0.210745,0.984300,3.305792,7.408274,12.830590,16.207451,14.716541,12.961996,6.288440,3.745462,2.761163,2.790915,0.004132,0.000000,0.199174,41.849606,74.028122,50.333904,3.494223,0.253725,7.410756,15.846298,37.871094,64.738861,58.887623,7.276867,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.419009,5.663640,3.872729,3.176860,0.661984,2.197522,1.418183 -601584.355000,4612115.550000,4211,6355,49.126457,85.238869,85.379364,69.676880,55.346302,44.081833,38.974396,33.759525,31.304976,30.610762,27.924810,34.139690,44.693405,53.833900,61.420681,71.933075,75.354568,72.552910,68.726463,56.966137,48.329773,47.230598,47.990929,18.297539,5.557036,27.204975,89.784317,105.833900,63.900017,8.267783,4.362829,9.499187,13.314067,30.445473,49.247128,43.933075,2.202483,0.041322,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.666943,1.561157,1.312397,0.000000,0.672727,0.000000 -601590.155000,4612115.550000,4240,6355,59.821503,105.096718,106.683495,94.865318,77.022339,67.278534,64.303322,59.567787,56.270271,56.476883,55.410767,61.881836,73.030602,82.055397,90.981018,100.542999,105.171089,101.245483,96.014076,84.567795,75.443825,73.385979,73.700027,45.890106,27.997538,53.972748,107.460350,114.154564,66.311584,11.842991,6.700019,10.325634,14.244645,26.931423,44.328121,35.878532,0.947938,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.850413,0.904132,0.828926,0.000000,0.000000,0.000000 -601599.555000,4612115.550000,4287,6355,66.080177,128.407440,133.506622,121.242157,106.837196,95.895050,95.498352,91.341331,89.531410,90.837196,91.225624,101.465294,113.539673,124.870255,134.738022,145.076859,149.209091,145.746292,137.498352,125.035545,115.275215,114.300003,113.754555,83.357857,63.771091,87.771088,135.440506,127.374390,71.093391,15.118201,10.341341,11.790925,14.789274,25.078533,36.514896,30.043821,0.723143,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.021488 -601614.955000,4612115.550000,4364,6355,96.382660,157.152908,163.781006,149.623978,134.342987,125.913231,126.409096,124.301659,125.442154,127.458687,130.582657,144.202499,164.185974,181.904968,196.756210,209.425629,212.400848,203.433899,186.607452,167.657043,156.376053,156.293411,156.045471,123.235542,100.714882,121.938026,160.781006,129.871902,64.648773,18.115721,14.185969,11.665304,11.809106,17.176878,22.644646,15.467786,0.758680,0.144629,0.077686,0.028099,0.000000,0.000000,0.000000,0.074380,1.403306,0.000000,0.000000,0.000000,0.000000,0.000000 -601629.355000,4612115.550000,4436,6355,110.452896,168.312408,170.452896,159.254547,145.122314,135.039673,134.973557,134.395050,134.452896,137.676041,139.452896,153.998352,172.948761,191.395065,205.990082,219.932236,224.163635,214.618195,194.510773,173.138855,162.122314,160.642975,157.436371,122.543808,102.907448,121.700836,144.386780,110.502487,54.188454,19.739689,14.312415,13.009108,12.722330,13.670265,18.755392,10.139684,1.692565,0.244630,0.170249,0.237190,0.035537,0.000000,0.114876,0.219009,0.000000,0.000000,0.000000,1.095868,0.000000,0.000000 -601636.355000,4612115.550000,4471,6355,114.495880,176.421494,171.504135,160.710739,144.190079,135.504150,136.024811,132.636383,134.842987,137.719009,140.561981,153.892563,173.652893,191.851242,206.148758,221.033051,225.719009,215.256195,193.586777,171.719009,160.264465,160.173553,155.181824,120.264481,100.347122,118.082664,135.190094,100.000015,48.958698,17.771093,14.107457,11.289273,10.998363,10.023983,13.314894,7.823152,1.050418,0.285953,0.021488,0.000000,0.000000,0.000000,0.201654,0.029752,0.000000,3.014876,0.000000,0.000000,0.000000,0.000000 -601639.755000,4612115.550000,4488,6355,120.057037,173.792572,174.263641,161.181000,146.883469,135.941345,137.404129,135.866959,136.800827,139.288437,142.519836,155.875214,175.974380,194.536377,208.676865,223.561157,228.561157,218.222321,196.767792,172.908264,162.230576,160.519836,155.627274,120.900009,100.676872,118.090096,137.271912,101.974388,50.189281,18.919855,14.147952,13.360349,11.581007,13.818199,15.466959,9.719021,1.349592,0.301655,0.087604,0.091736,0.038843,0.000000,0.185951,0.126447,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.355000,4612115.550000,4516,6355,124.246284,176.800003,175.204971,162.990082,147.403305,136.254547,137.676041,136.155380,135.717361,139.990082,141.981827,155.519012,176.444641,194.345459,210.973557,225.386780,230.105774,219.014877,196.965302,174.452896,162.155380,160.535538,155.890915,121.171906,99.841331,116.990089,134.353729,98.841331,48.808285,18.494234,14.171920,13.169437,11.844645,13.172744,14.703322,7.023978,1.122317,0.680168,0.272728,0.097521,0.000000,0.000000,0.099174,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601652.355000,4612115.550000,4551,6355,111.561180,180.288437,174.974380,160.924789,147.106613,136.321503,139.528122,137.825638,138.552917,141.916550,143.123154,157.660339,175.850418,196.214050,210.974380,227.461990,230.362808,219.106613,195.461990,172.842148,161.503311,158.594223,154.536362,119.371094,100.106628,115.230598,130.957870,95.858696,46.379364,17.969440,14.048779,12.306628,11.359521,13.610763,13.620679,7.386788,0.663640,0.449589,0.181819,0.099174,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,2.509091,0.000000,0.000000,0.000000 -601658.955000,4612115.550000,4584,6355,105.881004,173.629776,170.819855,158.200027,141.781021,132.971085,135.388443,134.191757,136.776886,140.553757,141.760361,155.033096,173.687622,192.745483,207.927292,223.398376,226.613251,214.100845,189.224823,167.439697,156.191757,152.852921,150.018204,115.778534,96.084312,110.960350,127.927292,94.563652,45.885971,16.600019,13.638037,12.196711,10.123983,13.362001,14.649604,9.609101,1.770252,0.747935,0.502480,0.694216,1.028926,0.190909,0.304960,0.113224,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.155000,4612115.550000,4625,6355,123.273567,189.742981,175.561172,162.437210,148.090103,136.205811,137.652084,135.619034,137.147949,143.627289,141.833908,155.726471,173.536377,193.999176,210.123154,226.197525,228.850418,215.627289,193.751236,170.858704,158.858704,156.023987,152.354568,119.032242,100.453728,115.412407,127.470261,92.999184,44.759518,16.989273,13.850432,14.600017,9.201670,12.397537,13.575224,8.024803,0.776035,0.157852,0.110744,0.095868,0.000000,0.000000,0.033058,0.159504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601673.355000,4612115.550000,4656,6355,124.510750,191.890900,177.419830,163.700821,147.444641,137.246277,140.039658,137.816513,139.370239,144.990082,144.147095,156.419830,176.238007,196.428101,211.990082,227.411591,230.841339,216.469421,193.502472,172.089249,160.122299,158.626434,153.345459,119.089264,100.932243,118.031418,128.775208,92.808281,46.023159,16.979357,13.940516,14.913240,10.442166,13.307455,15.095883,8.386789,1.306615,0.321489,0.391737,0.012397,0.299174,0.000000,0.004959,0.140496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601681.155000,4612115.550000,4695,6355,137.333893,201.499191,181.160339,170.028107,151.904144,140.036362,141.317352,140.069427,140.879349,148.895889,145.119019,158.251236,176.350418,196.226471,212.647934,227.656204,231.069427,215.614883,194.350433,173.441330,160.375214,158.400009,154.854568,120.366951,101.325638,119.747116,128.573563,94.127289,48.309113,19.717377,14.077704,15.951257,12.263655,13.519026,14.172743,7.691747,0.860333,0.528928,0.339670,0.065290,0.064463,0.000000,0.433058,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601690.555000,4612115.550000,4742,6355,129.528946,183.636398,175.925659,162.892593,145.727310,135.446304,134.966965,134.801666,134.826462,140.677704,139.793411,151.669449,170.793427,188.776886,203.537216,219.859543,221.553757,208.231430,186.066147,164.983505,154.322342,151.371933,145.636383,114.008278,95.950432,112.826462,122.685966,88.429771,43.925636,16.720680,13.239690,13.651258,10.881836,13.200018,11.550430,6.528934,1.238019,0.316530,0.042149,0.087604,0.030579,0.037190,0.180166,0.022314,0.000000,0.000000,1.911570,0.000000,0.000000,0.000000 -601704.955000,4612115.550000,4814,6355,93.613243,167.563660,174.109116,158.629776,144.439697,136.150421,134.621490,134.051254,134.687607,136.571915,139.547134,151.762009,170.307465,187.522339,202.604980,215.266144,218.257874,207.852921,184.282669,162.695892,151.654572,148.233078,143.381851,113.695877,94.348770,109.968605,121.795052,89.340508,45.464481,16.930597,13.034728,10.637206,10.958694,13.999190,14.776876,6.918192,0.824795,0.013224,0.167769,0.019009,0.009918,0.000000,0.144628,0.306612,0.000000,0.000000,0.000000,0.000000,1.421488,0.000000 -601725.755000,4612115.550000,4918,6355,102.708282,157.220673,169.121490,156.956207,143.394226,133.675217,134.848770,132.179352,133.071915,136.179352,138.724808,150.022324,169.311584,186.385956,201.311569,214.088440,216.931412,207.815720,183.865295,161.452072,150.022324,146.427277,141.336380,111.518188,92.270256,108.485130,120.071907,89.443810,44.683495,18.418201,12.848779,9.814066,10.154561,9.919024,12.349604,4.709099,0.961986,0.304133,0.003306,0.000000,0.009918,0.000000,0.316530,0.615704,2.251240,6.355373,0.000000,0.000000,0.000000,0.000000 -601742.555000,4612115.550000,5002,6355,109.014061,161.633911,171.625641,157.757874,143.253738,133.757858,133.303314,130.964478,131.576050,133.947937,137.443817,148.220688,167.799194,184.890106,199.509949,212.890106,216.551270,206.815735,183.485153,160.584320,150.419037,144.724808,139.881821,109.154564,90.923164,106.394234,120.749603,88.939697,42.609112,16.758696,12.716549,8.361998,9.730596,9.006628,11.672745,5.872736,1.161160,0.105786,0.028100,0.012397,0.006612,0.000000,0.000000,0.085124,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601757.355000,4612115.550000,5076,6355,111.406631,164.125626,168.580170,156.960342,142.076065,132.943817,132.852905,131.852905,131.481003,134.150436,136.662842,148.695877,166.654556,184.819839,198.646271,212.704147,216.481003,205.737183,183.588440,159.464478,149.042984,145.067780,139.927292,109.241341,88.819855,105.985138,119.712418,89.844643,43.481014,15.871092,12.720680,9.121503,9.389271,10.478529,12.840512,6.650422,1.170250,0.345456,0.075207,0.014876,0.000000,0.000000,0.144629,0.390084,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.355000,4612115.550000,5176,6355,96.505798,167.646286,167.910751,157.166946,140.604965,130.679352,130.365295,129.514053,129.266129,132.927277,133.695877,145.571915,165.208298,183.323975,198.117371,211.712402,215.241333,206.009933,181.654556,158.547119,147.720673,143.836380,138.109100,107.778519,88.943810,105.216537,120.034721,88.976868,41.877708,15.269439,12.555390,6.521498,8.281008,10.906628,10.437203,4.250422,0.705787,0.148761,0.404960,0.128926,0.134712,0.000000,0.382646,0.501653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.955000,4612115.550000,5229,6355,102.504150,174.595062,171.628113,158.090927,143.942169,132.115723,131.330597,130.272751,130.066132,135.140503,135.421509,147.264481,164.727295,184.090927,199.330597,213.512405,216.198364,205.760345,181.842987,158.793411,148.008286,144.123978,139.090927,108.669426,88.884315,103.776878,118.760345,89.347122,43.314072,15.446299,12.644647,6.125630,9.821503,9.043817,10.398362,4.911578,0.629754,0.232233,0.130579,0.242149,0.076034,0.000000,0.028926,0.041323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601798.955000,4612115.550000,5284,6355,111.907455,172.057846,168.421494,154.702484,139.330582,129.198364,130.041336,126.685966,126.041336,129.347122,130.983490,143.033081,161.231400,177.239670,191.909088,205.355377,208.917358,195.280991,173.181824,152.024796,141.049591,138.157028,131.909103,102.793404,84.685966,99.264488,113.024818,82.768616,40.512417,14.366134,11.991755,11.621505,10.705801,10.379355,11.342993,4.528107,0.880167,0.109918,0.200001,0.136364,0.146281,0.000000,0.191736,1.098349,0.000000,0.000000,0.000000,0.000000,1.601653,0.000000 -601813.355000,4612115.550000,5356,6355,107.961174,174.423981,168.828934,157.134720,141.043823,130.787613,131.622330,128.919846,128.630600,132.101669,132.605804,144.787628,162.820663,180.795883,194.564484,208.052094,210.291763,198.539688,175.985962,154.134735,144.019028,140.738037,135.390930,104.895058,87.473572,101.316544,113.101669,83.490097,40.415722,18.708284,12.308284,11.853737,11.052910,11.245472,12.143817,7.522325,1.176035,0.191736,0.279340,0.001653,0.001653,0.000000,0.137191,0.238843,0.000000,2.012397,0.000000,0.000000,0.000000,0.000000 -601822.155000,4612115.550000,5400,6355,97.457870,174.209915,168.276031,155.920670,142.482666,128.912415,130.424805,128.152084,127.953720,131.689270,132.242981,144.871094,162.879349,181.119019,195.276031,208.639679,211.160339,197.986786,175.722321,154.755386,144.193405,141.127274,134.309113,104.821510,86.094231,100.209938,114.069435,82.846298,39.408283,15.288448,12.209936,12.950428,9.873570,12.904976,13.723157,5.843812,2.321491,0.307439,0.268596,0.095042,0.145455,0.000000,0.066943,0.135538,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.555000,4612115.550000,5452,6355,99.229774,178.378525,166.378525,156.659515,141.725647,127.543816,128.238037,127.196709,127.444641,133.163651,131.056213,143.973572,161.428101,180.147110,195.238022,210.494217,212.568604,198.659515,175.882645,155.171906,144.717377,142.089279,134.254562,104.717369,87.204979,101.932243,113.791748,82.428116,38.023163,13.239688,12.204977,10.599189,7.657042,8.990925,11.848776,4.964472,0.457026,0.144628,0.000000,0.000000,0.017356,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601841.955000,4612115.550000,5499,6355,128.870255,185.283478,172.217377,160.465317,143.085144,130.192566,131.523148,129.977692,131.266953,137.019028,135.291748,147.779358,165.878540,185.060349,200.514877,215.961166,215.895050,201.944641,181.043823,159.233902,148.928116,146.572754,141.209106,108.771080,91.680168,106.622322,115.514885,81.423973,40.506630,15.338861,12.837208,14.333899,9.439686,10.704974,10.890096,6.943812,0.588431,0.224794,0.289257,0.035538,0.139670,0.028926,0.095042,0.087604,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601847.955000,4612115.550000,5529,6355,139.722336,187.912415,173.490921,161.937210,142.061172,131.796707,132.069427,131.846298,132.259521,138.300842,135.193405,149.061172,165.962006,185.176880,201.689270,216.631424,217.689270,203.829773,181.747131,160.242996,148.763657,146.532257,142.218201,109.565308,92.408287,107.796715,115.821503,81.722336,41.226467,16.436382,12.928945,16.304976,9.352083,10.650431,12.965307,5.559514,1.200828,0.295868,0.124794,0.000000,0.028926,0.045455,0.119009,0.611571,0.000000,2.134711,0.000000,0.000000,0.000000,0.000000 -601855.555000,4612115.550000,5567,6355,102.974388,148.774384,151.542984,138.526459,125.427284,116.047119,115.766129,115.460342,116.096703,119.799187,122.270256,134.609085,152.741333,170.385956,184.410751,199.063644,201.700012,192.592575,169.435547,149.890091,138.666946,136.774384,132.336365,104.460342,86.253738,99.567780,110.923149,80.939697,39.005806,14.944645,12.030598,10.529767,11.496711,12.185141,13.055388,6.950424,1.864467,0.218183,0.038844,0.448761,0.014050,0.000000,0.504133,0.517356,4.479339,3.010744,0.000000,0.000000,0.000000,3.233058 -601867.355000,4612115.550000,5626,6355,98.332245,147.942154,149.694214,136.000015,121.181831,113.876053,114.347122,113.404976,114.603325,118.710762,122.578529,134.347122,153.958679,171.644623,185.570251,199.429749,203.272720,194.768600,170.760330,152.016525,142.239670,139.528931,134.727295,106.520676,88.066132,103.404976,113.371918,81.900841,39.214901,14.341339,12.247952,12.269439,11.584315,13.441339,13.805802,6.960340,1.119011,0.809920,0.580168,0.149588,0.009918,0.000000,0.199174,0.592564,5.076860,3.025620,3.757025,0.000000,1.701653,2.141322 -601875.955000,4612115.550000,5669,6355,109.790916,143.252075,143.285141,131.830597,118.078529,110.202484,110.268600,108.913231,110.747940,114.458694,117.210762,129.987625,147.863647,164.392578,178.367783,191.185974,195.615723,187.243820,166.871918,149.524811,140.235550,138.243820,135.227295,106.061989,87.574394,104.706619,117.863655,88.400841,41.871922,14.155390,12.293407,12.452909,12.366134,13.590100,15.097539,10.273566,1.959510,0.771077,0.369423,0.374381,0.175207,0.499174,0.464464,0.528101,0.000000,0.000000,3.536364,0.000000,1.289256,2.893389 -601880.555000,4612115.550000,5692,6355,91.252083,136.571915,138.514053,129.323990,112.604973,104.968613,104.489273,104.109108,104.175224,107.332253,109.786797,121.563652,139.704147,155.340515,168.390091,180.026459,182.927277,176.158691,159.332260,143.315720,134.538864,132.844650,129.472748,103.348778,83.406631,102.166962,120.059525,92.629768,43.233078,15.064482,11.770267,12.266957,13.111588,13.014892,17.462826,12.889270,1.562814,0.572730,0.433885,0.216530,0.077686,0.466943,0.394215,0.357853,0.000000,8.638017,0.000000,1.434711,1.083471,1.895868 -601884.555000,4612115.550000,5712,6355,85.456215,124.420677,122.106628,110.949608,98.123161,89.590927,88.238861,85.462006,86.417374,88.833900,90.858696,101.718201,117.519852,132.040512,143.767792,154.776047,158.924820,154.395889,142.379364,128.734726,120.255394,119.908287,118.536385,92.247124,74.610764,94.957870,121.015717,99.189270,50.528118,14.411587,10.776052,11.328940,13.150429,18.069439,26.053740,21.927288,3.834718,0.545457,0.600828,0.498349,0.398348,0.391736,1.116530,0.290084,18.334713,10.864464,5.513224,8.298347,3.957852,1.452893 -601887.755000,4612115.550000,5728,6355,27.540504,48.261177,43.335548,32.640511,23.408276,18.785959,17.892572,16.505795,16.291744,16.856209,17.428934,23.337200,32.076874,40.325634,50.014069,60.285969,66.866959,69.098366,67.635559,60.091751,53.533073,54.858696,57.100018,34.100845,22.604143,42.106628,95.391754,101.375229,56.672745,6.529766,5.190927,8.850426,19.505800,36.416550,55.846302,50.730598,5.391743,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.105785,5.342977,7.178514,0.386777,0.156199,2.847108,5.776860 -601093.155000,4612105.550000,1755,6405,207.907425,213.568588,201.766953,202.328934,195.023148,195.535538,198.965302,200.684311,203.031418,210.510727,217.196686,228.634720,243.824799,258.262817,270.147125,280.940521,284.213257,276.362030,242.485962,214.147095,204.361969,199.452896,190.072739,160.915726,142.328949,146.990112,149.601669,111.568619,48.857868,18.982664,17.279358,15.855389,16.810762,20.778530,21.300018,14.438857,6.592571,3.860337,2.268599,1.822316,0.453720,0.683473,1.186777,0.993389,9.729753,7.119009,5.122314,3.954546,1.187603,0.000000 -601096.755000,4612105.550000,1773,6405,206.858704,211.544647,204.924820,205.255386,197.726471,198.329773,203.883484,204.825638,207.346298,215.338043,221.817368,232.247131,246.916550,263.205811,275.594269,285.048798,289.528137,280.437256,244.106628,214.577698,202.933075,196.718201,188.263657,157.147949,139.693405,144.544647,143.594238,104.924805,45.858696,19.375225,17.114895,15.102497,15.714067,17.155390,17.323158,12.275222,5.293398,2.011575,2.028929,1.042151,0.228926,1.625621,0.000000,0.118182,4.900000,3.552067,2.033058,1.748761,3.828100,6.742149 -601101.355000,4612105.550000,1796,6405,209.490082,215.291763,208.787628,204.845459,198.738022,196.432236,201.754547,203.589264,205.242157,211.200851,216.440521,227.407455,240.283493,254.936386,267.184326,277.052094,278.291779,269.903320,235.126465,207.870255,195.415710,188.944641,181.936371,151.390930,132.027283,138.093414,139.994232,102.804146,45.357868,18.623159,16.539688,12.269438,14.257868,15.261175,16.452908,9.710757,2.985132,2.647939,1.225622,1.559508,0.520662,0.767770,0.317356,1.404134,0.000000,2.495868,0.000000,1.942149,2.436364,2.035537 -601106.955000,4612105.550000,1824,6405,222.789276,252.227295,228.838837,226.599167,214.566132,210.623978,215.921509,218.169434,219.847122,232.566132,229.681824,241.086792,252.549606,269.995880,283.194275,295.673584,293.797546,279.186005,245.293396,217.657043,203.880173,199.210739,192.318176,157.367767,138.896713,144.632248,146.706604,103.119850,47.400848,20.516548,17.483492,20.021505,13.761175,16.211588,17.022331,10.362823,2.666949,1.396701,1.447110,0.395869,0.676035,0.121488,0.835539,0.389257,0.000000,0.000000,0.000000,0.000000,0.000000,2.547108 -601113.955000,4612105.550000,1859,6405,218.115738,254.966980,230.231415,226.396713,216.735565,211.743835,218.297546,219.975235,222.157059,234.694229,232.528946,243.454559,257.371948,274.793427,287.223175,298.181854,298.140533,284.586823,249.611588,220.446320,208.289291,202.454575,196.090927,159.586807,140.677719,146.570282,149.537216,105.768608,46.851257,21.421505,17.826464,18.059523,14.681010,16.532251,18.809111,10.798362,2.599183,2.638025,1.597524,0.808267,0.746283,0.110744,0.725622,0.842976,1.591736,0.000000,0.000000,0.000000,1.390083,2.396694 -601122.555000,4612105.550000,1902,6405,229.792587,247.585968,225.875214,223.924789,214.114883,209.941330,216.800827,219.065292,222.098343,230.470245,232.486786,244.718201,259.189270,277.800812,290.247101,301.147919,302.949585,289.635529,253.916550,224.114883,211.048767,206.189255,198.172729,162.362808,142.313232,148.957855,154.478516,110.875229,48.387619,21.225639,18.015722,18.028942,15.493405,17.228117,20.099192,10.919848,4.312406,1.709096,0.587606,0.685126,0.838845,0.492562,1.165292,1.663639,1.442149,0.000000,3.676033,0.000000,2.991736,0.000000 -601133.155000,4612105.550000,1955,6405,211.451248,245.054581,224.145462,222.409927,212.914062,209.500839,216.963654,219.004974,221.905792,230.004974,232.095886,245.401672,262.732239,279.666168,292.806671,303.723969,306.079346,296.591736,261.707458,230.798355,217.476044,213.120667,205.690918,170.269440,147.401672,154.790100,165.054565,121.806618,54.988445,22.111591,18.699192,18.960350,15.479357,20.488449,22.925638,14.133900,3.040504,1.279343,1.081822,0.864464,1.114052,0.016529,0.852068,0.942150,1.466116,0.000000,2.403306,0.000000,0.000000,0.000000 -601146.155000,4612105.550000,2020,6405,208.267776,237.862808,224.705795,220.614883,213.094223,211.433060,219.771912,222.829758,225.003311,233.127274,239.102478,253.771912,273.408295,293.788452,309.441345,322.722321,325.540527,318.077698,283.490936,250.309097,235.755371,232.623138,225.400009,185.606613,160.755371,169.590088,190.895874,146.507446,68.457878,24.962004,20.490929,18.385967,19.414896,24.930597,29.408283,19.049603,2.814881,0.840498,0.890911,1.327275,0.365290,0.314050,0.311571,0.603307,0.000000,2.579339,0.000000,1.114876,1.247108,0.000000 -601160.555000,4612105.550000,2092,6405,211.173569,235.322327,225.173569,222.793411,217.578522,218.355392,227.801666,231.082642,235.107437,242.991730,253.694229,271.281036,291.884369,311.479370,326.818207,340.991760,343.520691,333.413269,293.173584,262.495880,251.388443,245.057846,236.181824,202.181839,178.892563,183.743805,188.776871,141.867783,66.520683,24.685970,21.471094,18.755392,18.633904,23.504152,28.950434,17.762001,3.525626,0.828102,0.914879,0.352068,0.833887,0.000000,0.711573,1.153722,0.000000,5.441322,7.966943,2.070248,0.000000,0.000000 -601172.955000,4612105.550000,2154,6405,218.975220,227.719025,226.471069,223.239655,218.867752,220.619812,230.297516,231.933884,238.231400,246.851257,257.710754,274.512451,296.330566,313.851257,329.000031,340.586823,341.776886,331.264496,290.520721,259.661163,248.892563,241.842972,232.181824,199.842972,179.975204,182.024796,179.752060,130.421509,61.371922,24.119028,21.107458,18.887621,19.962004,21.147953,26.188448,19.444647,3.174387,2.933062,1.680995,1.287607,0.628928,0.619835,1.093391,1.223143,0.000000,0.000000,2.426447,3.154546,1.238017,2.158678 -601182.955000,4612105.550000,2204,6405,211.625626,227.377701,228.212402,223.104965,220.708267,223.633896,233.228912,236.923141,242.344620,250.766129,262.509918,278.774414,297.716553,315.262024,329.352905,339.741333,341.443817,327.104980,285.237213,252.807449,240.972733,233.914871,224.336380,191.146286,172.633896,174.187607,165.534714,117.047119,53.534733,22.746304,20.394234,17.428118,18.345472,19.871922,21.207457,14.288445,4.288438,3.122319,1.331409,0.848764,1.068597,0.387604,0.595869,1.550416,2.775207,0.000000,0.000000,2.324794,0.000000,0.000000 -601190.555000,4612105.550000,2242,6405,209.337219,225.138870,226.287628,223.494232,218.510773,224.378540,234.031433,236.204987,240.766968,249.279358,261.229767,276.915710,295.395050,314.031403,326.957031,336.337189,338.254547,324.766937,285.502472,254.800018,244.105804,238.213242,227.800018,196.940521,179.436386,179.204987,171.138870,123.948784,56.957043,23.709110,20.709110,19.009935,18.528118,21.162828,26.284317,16.265305,4.168602,1.801656,1.987608,0.719838,1.150416,0.252893,0.705787,0.999175,2.795041,2.584298,2.464463,2.957025,2.692562,0.000000 -601196.355000,4612105.550000,2271,6405,198.405792,220.133072,223.769440,219.529770,213.827286,216.951248,223.356216,227.116547,230.860336,239.248779,248.372742,263.182648,281.711578,297.827332,309.248810,318.876892,319.438873,309.232269,271.083496,240.314896,229.356216,223.587616,214.372742,183.447113,164.166122,167.488449,166.785965,122.761162,58.207458,23.597542,19.488449,16.900845,18.307457,21.027290,26.474398,18.277704,5.268605,3.653725,2.104137,2.835541,0.715704,1.228927,0.772730,1.496697,17.147936,10.278514,4.505786,2.076033,3.666943,8.500001 -601200.755000,4612105.550000,2293,6405,182.733063,186.914886,189.592575,186.485138,179.840500,182.609100,187.088440,188.625626,190.485138,196.650421,206.584305,219.733063,237.344635,253.195877,265.989288,274.840515,278.162842,273.344666,249.815720,228.245468,219.129761,213.476868,207.336380,180.452072,161.080170,171.774384,181.642151,148.509933,76.055397,22.356215,18.848778,16.023985,21.723158,32.040516,44.047127,33.634727,4.269429,1.308268,0.804134,0.533886,0.233885,0.678514,0.314050,0.747936,3.576033,0.000000,2.139670,0.737190,5.034711,1.690083 -601208.955000,4612105.550000,2334,6405,208.428101,221.295883,217.403336,214.047958,208.568619,211.535553,218.188446,221.362000,225.808289,233.659531,244.899200,262.990112,284.618195,303.510803,318.461243,330.494293,334.609985,324.609985,289.899200,259.444641,249.841339,243.023163,234.709106,201.105789,178.180191,186.023163,186.932236,137.039673,64.105797,22.973570,21.337208,19.581009,20.555391,24.882664,28.786797,18.485968,4.440503,3.309097,1.471078,0.865293,1.361160,0.004132,1.579343,0.885125,0.000000,1.271901,0.000000,0.000000,5.242975,0.000000 -601213.155000,4612105.550000,2355,6405,197.904968,213.342987,214.119858,209.243820,204.681839,206.665298,211.078522,214.500015,217.962830,228.962830,236.500015,253.838882,274.219055,293.078522,308.260345,321.210754,326.913208,320.772736,288.789246,262.764496,252.855408,247.747955,239.681839,204.896713,183.896713,192.665298,200.954559,153.285141,72.781013,26.681837,21.789272,18.404974,23.160345,28.367786,31.938032,24.347950,5.650421,2.877692,1.194217,0.959509,0.968599,0.000000,0.565291,0.956200,1.300827,0.000000,3.591736,0.000000,0.000000,2.234711 -601389.955000,4612105.550000,3239,6405,76.209930,70.801659,63.946293,56.197533,47.519848,39.957035,36.513233,33.233067,31.588440,30.528934,30.107447,33.472736,39.962818,46.838852,53.641335,61.089268,63.816540,61.824802,57.725632,49.434723,42.309925,41.326454,39.381828,20.822325,11.362820,26.471085,61.397533,66.202492,37.548771,7.647118,3.580176,6.081001,12.949602,26.443819,38.440517,37.450432,12.704142,6.511574,7.004136,6.371904,5.017358,2.207439,0.790084,1.996696,1.778513,6.912399,3.209092,2.225621,1.678513,2.619009 -601403.555000,4612105.550000,3307,6405,101.452911,147.452911,151.047958,141.204987,129.800018,117.990105,111.642998,109.122337,106.171921,104.981842,101.791756,109.601677,124.866135,136.362000,149.304153,165.907455,172.775223,166.238037,154.014893,131.271103,114.428123,110.279358,106.254570,65.684319,50.287621,73.618202,131.775223,120.254570,56.023159,13.874397,9.659524,6.241336,8.006629,9.873571,16.473570,8.304145,0.720663,0.076033,0.061157,0.087604,0.000000,0.028926,0.000000,0.000000,1.152066,1.174380,0.000000,0.000000,1.130579,0.000000 -601408.355000,4612105.550000,3331,6405,102.084312,152.761978,153.266113,142.728912,130.762009,119.646301,117.241341,112.224808,110.092583,109.679359,108.150429,116.877701,132.340515,146.398346,161.390076,178.109085,185.919006,179.142136,166.257843,142.819824,127.290924,122.571922,120.109108,77.290924,58.390099,83.042992,140.191727,126.208282,59.431423,13.557042,10.919027,4.571912,9.320678,11.649604,17.537209,8.224805,0.530580,0.000000,0.290083,0.057025,0.100000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601413.555000,4612105.550000,3357,6405,94.561165,142.551254,146.766129,135.030594,123.931412,115.460342,110.972740,107.394226,105.749596,106.947945,106.534721,115.319847,129.542984,141.956223,153.972733,165.146286,170.501663,167.344635,156.691742,140.509949,130.493393,125.997528,123.609100,91.790916,69.947945,93.237198,140.377716,124.600838,64.286797,15.571918,11.237209,5.857037,10.440512,17.133902,26.972748,17.441339,0.417357,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.224793,0.000000,0.000000,0.000000,2.119009,0.000000 -601417.555000,4612105.550000,3377,6405,82.021500,121.081001,125.188438,113.940506,100.923981,92.138855,88.948776,85.783485,82.940514,83.469437,83.362000,90.808281,102.568611,113.304138,122.312401,134.411575,137.692566,135.477692,127.510750,115.130585,105.857864,104.593407,101.800018,73.692574,55.097538,78.246292,121.081001,118.328934,65.957047,13.821505,9.254564,6.565302,12.654562,22.490929,35.932251,23.475225,0.537193,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.834711,1.300827,0.000000,0.866116,0.000000 -601422.955000,4612105.550000,3404,6405,51.507454,88.566956,85.988441,77.715729,63.666134,54.062828,46.616547,41.046299,37.285969,36.558693,33.957043,38.674397,46.674397,54.963654,63.600018,73.021515,75.847954,74.368622,69.277718,59.558693,51.335556,49.046299,48.418198,21.776876,7.433897,27.726463,84.327286,98.021500,57.971916,9.713239,4.401672,4.255380,14.017372,25.106628,45.277702,34.433899,1.665294,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601463.755000,4612105.550000,3608,6405,136.269440,173.104126,166.476028,154.814880,139.054535,128.459518,127.195053,122.558693,121.335548,122.261169,123.781830,136.542160,153.591736,168.252884,185.500824,200.633057,206.161987,202.244629,186.922318,167.335541,154.244629,154.971893,150.781815,110.897537,90.170258,114.492577,159.451233,136.054565,68.360344,18.634729,13.707457,10.996710,15.642167,24.327293,33.591755,21.023159,0.781821,0.115703,0.114876,0.008265,0.013223,0.000000,0.000000,0.475208,0.000000,2.490909,3.298347,0.000000,0.000000,0.000000 -601467.355000,4612105.550000,3626,6405,201.255386,212.255386,200.222336,190.238861,176.123154,166.759521,164.726471,162.106628,161.214066,162.486801,164.528122,176.676880,194.420685,206.850433,217.825638,227.486801,227.354568,219.189270,193.023987,168.404144,158.040512,154.304977,147.172745,115.842163,99.412407,112.866951,128.172745,94.015717,39.346298,15.431425,13.379358,13.972745,12.420678,13.630597,15.009937,10.747949,3.031411,1.793393,1.496701,1.823145,1.390911,0.826451,3.759510,3.219012,2.889256,5.630579,0.000000,2.429752,0.000000,4.533885 -601502.155000,4612105.550000,3800,6405,79.608269,90.904968,76.540504,64.730591,50.137203,37.621498,33.316540,28.762823,26.439682,25.588444,24.461170,27.650425,33.936375,41.384304,46.610756,53.155388,56.667782,54.485966,51.271088,44.585140,38.714890,37.788441,36.781830,20.076044,10.928110,24.688442,64.819847,73.533066,42.130589,6.009928,3.343816,8.514062,11.599190,26.000845,40.877701,39.266132,8.606621,1.920663,2.040497,1.691736,1.268596,0.195042,1.066942,0.670248,15.965293,2.784298,5.811572,3.566943,2.580992,3.733058 -601505.555000,4612105.550000,3817,6405,115.536385,139.681854,123.838860,110.706627,95.764481,82.177704,79.177704,75.871918,74.045471,75.615715,74.830597,85.797539,101.260345,115.301666,127.359520,139.351273,143.648788,141.252106,132.483490,120.640511,111.194229,110.847122,111.681831,83.673569,62.590927,88.334724,134.929764,126.971092,70.078529,13.568614,10.152912,9.755387,16.196712,28.144648,44.425636,37.986801,2.674387,0.141323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.353719,4.775208,0.000000,0.000000,1.119835,0.000000 -601510.555000,4612105.550000,3842,6405,109.711586,146.190903,136.785950,126.116539,109.628937,96.058693,93.513237,88.703316,87.488441,89.381004,88.075218,98.430588,112.562820,125.728111,136.827286,148.827271,153.265289,150.620651,142.149582,130.265305,121.339684,120.083481,119.009102,89.926460,73.339684,94.405800,131.471909,116.281830,64.149605,14.934729,10.819027,9.451254,14.213241,20.884317,35.000851,23.859522,1.575212,0.001653,0.000000,0.009091,0.000000,0.137190,0.000000,0.000000,5.478513,1.400827,0.000000,1.126446,0.000000,0.000000 -601516.955000,4612105.550000,3874,6405,115.810745,157.959518,145.695053,134.901657,119.438850,107.488434,106.141327,101.587608,100.438850,102.422318,103.934715,115.951248,131.777695,147.166122,160.166122,173.166122,178.066956,175.009109,163.529770,148.637207,140.174393,136.604141,136.645462,106.124802,86.810760,109.422318,143.455383,124.430580,65.075226,16.274399,12.422333,8.648773,13.899192,21.872744,30.595886,23.052910,2.144633,0.066117,0.104959,0.262811,0.019008,0.127273,0.052066,0.337191,1.231405,1.572727,1.190909,1.013223,2.520661,0.000000 -601521.755000,4612105.550000,3898,6405,125.376053,161.318176,158.946274,146.318176,131.458679,118.690094,115.260338,112.847115,111.855377,113.971085,114.896706,126.086784,145.500000,161.417358,175.615738,187.500000,193.301651,187.326462,171.830612,153.888428,144.780991,142.590912,141.136368,108.995872,89.367783,111.384308,139.210739,112.516541,55.690102,17.033073,12.830597,13.128116,14.407455,16.790926,24.136379,17.301668,2.374385,0.865292,0.293390,0.515704,0.046282,0.462810,2.037193,2.003311,12.995869,4.940496,3.255372,2.528926,2.478513,4.849587 -601527.155000,4612105.550000,3925,6405,96.204964,140.398376,134.555374,122.712410,106.935547,94.472740,91.092575,86.629761,83.241333,84.728935,83.654556,92.571907,104.976868,116.894226,126.613235,137.770279,141.621521,139.175232,132.472733,120.728935,113.241333,112.001663,112.200012,86.290916,69.398361,89.133896,126.671082,114.613235,62.538860,14.505803,10.200020,11.781832,15.921506,23.899193,36.128117,24.894232,1.882648,0.638844,0.046281,0.000000,0.000000,0.109091,0.000000,0.026447,5.871075,0.000000,3.325620,2.166116,0.977686,4.091736 -601533.155000,4612105.550000,3955,6405,92.568611,126.366951,111.738853,97.218193,81.532242,68.656212,62.185143,55.391754,50.862831,47.928944,46.276051,49.325638,56.548779,61.978531,68.937202,75.829765,79.019844,77.176872,72.416542,63.061176,57.110764,56.102497,54.309109,33.003323,19.761999,40.160351,80.647942,86.515717,49.986797,7.612411,4.937210,7.490096,12.884315,22.156216,35.656219,31.594233,2.280995,0.000000,0.004959,0.003306,0.002479,0.000000,0.000000,0.000000,0.000000,2.837190,0.966116,1.411570,7.235538,7.494215 -601538.155000,4612105.550000,3980,6405,83.036385,95.853737,84.726463,67.857864,51.134724,38.943821,35.034725,29.331419,25.419024,23.257040,20.918198,25.339684,31.600842,38.181835,43.930595,51.447952,53.971916,53.219852,48.869438,40.250427,33.617371,34.349602,32.527287,14.395881,5.228109,20.578529,64.517372,76.830597,46.590931,7.790095,2.957042,10.161998,14.075223,30.849606,46.420681,45.015720,9.171909,5.114879,4.685954,3.251242,2.780166,2.395043,2.123141,2.073554,7.107440,4.750415,5.975208,1.195868,3.581819,5.444629 -601581.355000,4612105.550000,4196,6405,18.268608,44.021507,41.210766,27.008282,11.228113,3.251247,1.581823,0.420663,0.066116,0.025620,0.000000,0.051240,1.418186,4.377697,10.992578,19.128115,23.571918,21.457041,19.028116,9.951255,5.240506,3.633893,3.372735,0.000000,0.000000,0.361985,56.292580,86.011581,56.722332,4.857862,0.306619,9.244640,17.153736,36.391754,61.441341,48.565308,3.810751,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.821489,0.785951,0.282645,0.000000,0.000000,0.000000 -601585.755000,4612105.550000,4218,6405,43.600018,69.992577,69.521500,54.744648,37.752911,28.114069,21.371094,16.256216,13.010759,10.399187,9.826462,13.781008,22.500021,32.128117,39.893410,49.819031,54.422337,51.951260,49.513241,38.124809,29.108284,28.433903,29.136381,5.117365,0.803308,11.078526,78.050423,96.695053,61.562828,5.040508,2.648779,9.831417,14.268610,32.959522,51.521507,46.959522,2.267773,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.508265,1.505785,0.000000,0.465289,0.000000,0.000000 -601593.155000,4612105.550000,4255,6405,64.140511,93.358688,98.176872,82.614891,67.309105,55.408279,50.961998,44.804974,43.449608,40.557045,39.482662,45.193405,55.284313,63.904148,72.928940,82.069435,85.383484,83.127281,79.689270,66.614891,59.003323,59.011585,57.672741,28.317375,11.038858,36.218201,97.656212,106.433067,62.714066,10.233900,5.242995,7.798360,14.385142,28.705805,48.846298,41.366962,0.760333,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.508265,0.000000,0.736364,0.000000,0.000000,0.000000 -601604.755000,4612105.550000,4313,6405,78.771912,123.819855,122.514069,107.100845,94.133904,82.943817,81.117371,77.042992,75.712418,76.092583,75.960350,85.902496,98.679359,110.348778,121.704147,132.175232,136.927292,135.051254,128.216553,115.885971,107.414894,107.257866,106.109108,77.530594,57.538860,83.365311,134.018204,128.679352,74.076050,16.258696,9.646299,11.680181,15.423984,31.811590,44.447952,37.876053,1.044632,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.294215,0.000000,0.000000,0.000000,0.000000 -601620.755000,4612105.550000,4393,6405,105.484314,168.831421,167.550430,153.856216,139.244644,128.219849,129.847946,125.525635,127.261169,129.294235,131.897537,144.723984,164.484314,181.955383,196.310760,209.153732,213.641342,205.046295,188.079346,167.294235,157.550430,154.914062,154.509109,117.558693,97.120674,117.699188,151.699188,120.087616,60.409935,19.385143,14.046299,11.234726,11.829767,15.908283,19.245472,9.723978,1.331410,0.359507,0.000000,0.026446,0.024794,0.000000,0.026446,0.234711,0.000000,0.000000,0.000000,4.333885,1.245455,0.000000 -601627.955000,4612105.550000,4429,6405,109.320679,177.295883,167.287628,156.072754,142.386795,132.642990,133.485962,130.469437,131.362000,133.634720,136.684326,151.031433,171.866135,190.171921,205.014877,220.948761,225.857864,217.808273,197.709106,176.940521,165.370270,162.717377,159.527298,121.998360,99.932243,120.758690,149.733902,113.485962,56.138863,19.796709,14.502499,15.361174,13.185968,16.276878,17.073572,9.686790,0.827275,0.375208,0.000000,0.000000,0.000000,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.475207 -601631.355000,4612105.550000,4446,6405,116.295883,168.351257,167.361176,156.542999,143.352921,133.600006,135.228119,133.542160,133.657867,136.707458,140.905792,153.823151,174.930588,193.583481,210.079346,226.442993,231.285965,222.294235,202.409927,180.996704,167.674393,167.079346,164.054565,125.492584,103.757050,124.930603,150.442993,114.062828,54.128944,19.217377,14.914068,15.892578,11.366958,15.900018,17.599190,9.394227,3.352900,0.652067,0.509092,0.550414,0.800001,0.291736,0.361157,0.045455,0.000000,0.000000,0.745455,0.000000,0.000000,0.000000 -601634.755000,4612105.550000,4463,6405,116.842171,171.858704,169.032257,157.023987,141.222336,131.552917,132.742996,131.354568,132.015717,134.528122,136.718201,151.197540,172.222336,191.495056,206.172745,222.776031,228.057022,218.941330,198.933075,176.569443,164.536377,162.445480,158.263657,121.181007,99.767792,118.833900,143.809113,107.495064,52.139690,17.874399,14.387623,13.015719,11.357040,12.635552,14.454562,8.096706,0.686779,0.266944,0.316530,0.219009,0.029752,0.000000,0.157852,0.341323,0.000000,0.000000,2.593389,0.000000,0.000000,0.000000 -601640.155000,4612105.550000,4490,6405,110.476051,175.790100,172.773560,158.666122,144.856216,133.261169,134.798355,133.186783,133.385132,137.649597,139.319016,153.690918,174.269440,193.095886,208.897537,224.839676,229.831421,218.864471,198.137207,176.996704,164.955383,162.707458,157.963654,122.170258,100.847946,119.533897,141.690918,103.881012,51.352089,17.663654,14.360350,12.965305,11.914892,13.299191,17.317373,9.633073,1.190913,0.013223,0.070249,0.000000,0.000000,0.285951,0.000000,0.000000,0.000000,0.000000,0.000000,1.759504,0.000000,0.000000 -601646.755000,4612105.550000,4523,6405,124.508278,176.541321,174.483475,158.847122,144.714874,133.987610,135.409103,132.979340,135.458694,139.235550,140.111588,153.516525,173.466949,193.376038,207.814056,224.235535,229.466949,218.607437,197.557846,174.838837,162.962830,159.169434,155.500015,120.384308,99.764473,117.095047,136.400848,100.227280,49.227287,18.940514,14.136382,14.721506,11.289274,14.923158,13.196711,7.490093,1.192566,0.052067,0.056199,0.000000,0.108265,0.000000,0.060331,0.038017,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601649.755000,4612105.550000,4538,6405,120.738037,177.316528,169.341324,159.820663,145.333069,134.366135,136.787613,134.556198,134.795868,140.308273,141.275208,155.118195,175.556198,195.118195,210.771088,226.209091,230.680176,219.118195,196.721497,174.473557,165.944641,160.159515,156.845459,121.266960,100.977699,118.415718,136.721497,102.176048,50.374401,17.502499,14.258698,13.591754,12.349606,13.033902,16.329771,7.950426,0.574382,0.185952,0.102480,0.000000,0.031405,0.000000,0.000000,0.357026,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.555000,4612105.550000,4557,6405,122.655388,180.076889,175.812424,161.952896,148.176041,137.035553,138.961182,137.506638,138.597565,143.845459,144.944641,158.729752,177.804153,196.911575,212.440521,228.068619,231.043823,220.200851,198.614059,175.804153,163.514877,162.010757,157.572739,121.581009,102.688446,119.994232,135.242157,98.622330,50.704983,18.139688,14.324812,14.375225,12.362827,15.451259,16.819025,8.992575,0.866120,0.295870,0.165290,0.000000,0.139671,0.000000,0.279340,0.098348,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.755000,4612105.550000,4583,6405,125.579353,185.397537,177.257034,162.108276,147.257034,135.752899,136.554565,136.769440,136.959518,142.100006,142.571091,156.761169,175.670258,196.405792,209.777695,226.976044,230.091751,218.827286,196.595886,174.595886,162.628937,161.438858,156.827286,121.166130,101.645470,118.918198,133.050430,97.612411,48.827293,18.254564,14.257044,13.100844,11.185142,14.142166,13.052909,8.330590,1.487607,0.167770,0.302480,0.026446,0.000000,0.000000,0.272728,0.078513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601667.155000,4612105.550000,4625,6405,139.525635,195.038025,179.013229,166.360336,150.723984,137.674393,139.153732,137.748779,139.087616,146.600006,144.442993,157.062820,175.285965,195.120667,211.897537,227.872742,231.558685,217.302490,196.550430,173.178528,163.285965,161.798355,156.145462,122.112419,102.335556,121.252914,132.674408,96.905807,47.327293,18.547127,14.195062,17.088448,12.306629,13.983490,16.165308,8.567780,1.090086,0.208267,0.384298,0.089257,0.045455,0.000000,0.379340,0.033885,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.955000,4612105.550000,4674,6405,122.018196,196.793396,179.462814,164.975204,148.983475,136.429764,136.545456,136.338852,137.479340,144.512390,141.685944,154.247940,171.603302,193.446274,209.256195,225.975204,227.388428,212.925613,192.719009,169.950409,160.578506,156.479340,153.818176,120.157043,101.743820,119.900841,129.380188,93.966957,45.107452,17.654566,13.983490,14.841340,10.376876,13.714893,13.282660,8.873566,0.403307,0.287604,0.548761,0.033058,0.100827,0.000000,0.038843,0.242976,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.355000,4612105.550000,4716,6405,103.328949,167.849594,171.634720,156.626465,143.560349,134.609940,134.601669,132.965302,133.643005,135.948776,139.560349,151.948761,170.246292,186.246292,201.006622,215.171906,218.651245,208.502487,185.064468,163.428116,154.089264,150.105789,145.618210,113.800026,96.006638,112.634735,122.337212,90.758698,45.056217,17.541338,13.238036,11.706629,11.398365,13.663655,15.058696,6.404141,0.877688,0.274382,0.206612,0.000000,0.042149,0.000000,0.185951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.092562 -601696.955000,4612105.550000,4774,6405,97.749611,159.873566,168.014053,155.228943,143.080170,133.104980,132.724823,130.352921,130.790939,133.724823,137.576065,148.857040,167.683487,183.881821,197.559509,212.088440,216.204147,205.245468,182.311584,160.394226,150.022324,146.526459,141.609100,110.989281,91.526474,107.542999,120.518211,87.402504,43.592583,15.685969,12.873572,9.122331,8.614891,11.533076,11.447950,6.244638,1.098350,0.397522,0.028926,0.004959,0.004132,0.000000,0.333885,0.109091,0.000000,1.490909,1.220661,0.000000,0.000000,0.000000 -601715.155000,4612105.550000,4865,6405,95.352905,158.890091,167.204147,155.352905,140.683487,132.179352,131.237198,128.906616,131.253723,131.972733,135.881821,147.080170,165.708267,182.823975,198.071899,211.633896,215.419022,204.700012,181.063644,160.014053,148.476868,144.493393,140.700012,109.906624,91.443810,106.947945,121.344635,87.220673,42.005806,17.244644,12.790928,7.887617,10.002495,9.811586,11.063653,5.535545,0.796696,0.209918,0.190910,0.053719,0.280166,0.000000,0.065290,0.206612,1.521488,1.505785,0.000000,0.000000,0.000000,0.000000 -601733.355000,4612105.550000,4956,6405,107.300842,161.804977,170.085968,155.259521,142.416534,132.904144,132.573563,129.366959,130.862823,133.804977,136.846283,149.077698,166.738861,185.226471,200.366959,214.044647,216.920685,208.466141,184.044647,161.317352,149.375229,146.193390,141.400009,110.218201,91.152084,107.738861,121.391754,89.201675,44.127296,17.556217,12.854566,8.198361,10.294232,10.928117,13.144647,5.438025,0.665291,0.031406,0.210745,0.013223,0.000000,0.114050,0.235538,0.417356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.955000,4612105.550000,4999,6405,106.964478,166.617355,169.410736,157.683472,141.187592,135.055374,133.361176,132.220673,131.435562,134.245468,136.757843,149.096695,167.823959,185.625610,200.939667,214.410736,216.774368,208.683472,185.980988,161.997513,151.154541,147.675201,141.154541,110.377701,91.873573,106.666962,120.931419,90.295059,45.377705,16.975225,12.832251,8.057865,10.004148,11.090925,11.609935,5.010751,1.423144,0.343803,0.269423,0.390083,0.004959,0.000000,0.012397,0.141323,0.000000,0.000000,2.284298,0.000000,0.000000,0.000000 -601750.355000,4612105.550000,5041,6405,116.995880,165.557846,170.045456,155.219009,141.863632,132.433899,132.020676,129.904968,130.921509,133.756210,136.524811,147.723145,166.301651,184.111572,199.136368,212.789261,215.954544,207.417358,184.756195,160.648758,149.095047,145.657028,139.954544,109.640511,91.219025,106.541336,120.847122,90.731422,42.962833,16.148779,12.723160,8.419850,10.341340,9.509934,11.834728,6.537200,0.827275,0.332232,0.038017,0.000000,0.097521,0.000000,0.000000,0.087603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601762.355000,4612105.550000,5101,6405,113.488449,166.298355,168.381012,155.637207,140.513229,131.414047,130.959503,128.521500,128.835541,132.860336,134.959503,147.761169,165.546295,183.381012,197.893402,211.893402,214.670258,205.752899,181.595886,158.298355,149.174393,143.843811,138.554565,108.579361,89.843811,104.959526,119.182648,89.670258,44.868614,16.190102,12.595885,7.675220,9.139686,10.460346,12.078528,4.624801,1.519837,0.119009,0.281819,0.000000,0.150413,0.026446,0.327274,0.259505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601777.355000,4612105.550000,5176,6405,108.417381,172.681824,165.780991,156.615707,140.144623,130.185974,130.119858,128.326462,128.309937,132.995880,133.607452,145.367767,162.921494,182.706604,196.582642,211.103302,214.566116,202.880173,181.351242,158.285126,146.954544,143.136368,137.863632,106.053734,87.252083,103.607452,116.764481,86.466957,42.028950,16.174398,12.533077,6.088441,7.767785,9.515718,9.461999,5.487612,0.476035,0.023141,0.182645,0.000000,0.023967,0.000000,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601782.555000,4612105.550000,5202,6405,108.630592,171.738022,173.275208,159.936371,144.448776,132.547943,132.151245,130.952896,129.498352,134.837204,135.399185,146.985962,165.085129,183.804138,198.638855,212.804138,217.498352,205.663635,180.729752,160.779343,148.134720,144.019012,138.118210,108.423981,89.275215,105.597534,118.928116,89.473572,40.035557,16.136381,12.556216,7.491748,10.444645,11.065305,11.506627,4.471081,1.386780,0.075207,0.265290,0.003306,0.197522,0.000000,0.504134,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601785.955000,4612105.550000,5219,6405,100.096718,163.774384,166.204147,153.468597,137.129761,125.840508,126.228935,124.427284,124.113235,126.179352,128.873566,140.741333,158.600830,175.881821,190.104950,203.047104,207.171066,194.584290,171.807449,150.022324,138.328110,136.129761,130.972733,102.195877,83.187614,100.038849,111.452072,80.154564,38.691753,13.814067,11.906630,9.847949,7.904148,9.282659,10.511584,3.797528,0.583472,0.211571,0.114876,0.000000,0.000000,0.000000,0.005785,0.187603,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.755000,4612105.550000,5243,6405,107.538033,169.670242,166.091736,157.356201,138.967789,128.480179,129.504974,126.166130,126.604149,129.397537,130.058685,143.381012,160.661987,177.042145,192.182663,205.885117,208.422318,197.174393,174.009094,152.926437,140.678528,139.414062,132.645462,103.389267,84.273567,99.893402,113.868607,82.033897,39.959530,15.414067,12.058696,10.869436,8.309107,10.621503,12.631422,5.275215,0.838018,0.271901,0.263637,0.000000,0.004959,0.000000,0.256199,0.151240,0.000000,0.000000,0.000000,0.000000,1.386777,0.000000 -601798.555000,4612105.550000,5282,6405,98.222343,171.883484,168.172729,155.247116,140.594223,129.404144,129.181000,126.635559,126.304977,129.156204,129.908279,142.709915,160.974396,177.693390,192.949585,206.023972,208.205795,196.461990,174.147949,152.139679,141.371078,139.982651,132.536377,102.569443,85.106636,97.957870,112.255394,82.280182,39.032253,15.989273,12.048779,11.552908,10.357867,10.876049,10.622330,6.481002,1.456201,0.521489,0.195868,0.254546,0.234711,0.025620,0.113224,0.214877,0.000000,0.000000,0.000000,1.232232,0.000000,0.000000 -601810.555000,4612105.550000,5342,6405,105.692574,171.948776,167.320679,155.039673,139.849609,128.130600,130.568604,127.874397,127.006622,131.171921,131.915710,144.485962,162.411591,179.643005,194.890930,208.213242,210.915726,198.362000,175.659531,155.246307,143.229782,140.560349,134.527283,104.560356,87.031425,101.957039,113.833069,83.609940,40.494232,15.973571,12.229772,12.176876,9.460347,11.955387,11.936379,5.095877,0.627274,0.280992,0.193389,0.218182,0.009918,0.000000,0.105786,0.312397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601817.355000,4612105.550000,5376,6405,109.079353,179.550415,168.195038,156.773544,141.186768,128.021500,128.823151,127.641335,127.211586,130.839676,130.947113,143.575226,162.624786,180.120651,195.599991,209.095871,211.467758,197.112396,175.145447,154.302475,143.352066,140.798340,134.690918,105.145470,85.641335,101.550423,114.112411,81.806625,40.451260,14.128943,12.244648,11.440510,9.355389,11.466133,11.844645,5.247118,0.295042,0.055372,0.165290,0.000000,0.000000,0.000000,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.955000,4612105.550000,5394,6405,105.519859,179.610748,167.858688,157.156219,140.528122,129.577698,128.263657,127.825638,126.660347,131.181000,130.652084,143.371094,161.809097,180.395874,194.313248,209.966125,210.957855,198.280182,176.833893,155.569443,143.957870,140.767792,135.718201,104.329773,86.321510,102.924812,113.362831,83.032249,40.114891,14.757044,12.338037,12.103322,9.524810,10.290098,9.885139,6.830590,0.773555,0.081818,0.060331,0.141323,0.014876,0.039670,0.000000,0.023968,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601826.955000,4612105.550000,5424,6405,121.061165,175.218201,172.606628,159.581833,139.548782,129.557037,129.548767,128.499191,128.846298,134.201660,132.705795,145.623154,162.565308,182.408279,196.796707,211.069443,212.557037,198.523987,177.656219,156.143814,144.474396,141.681015,135.763657,106.788445,88.457863,103.730591,113.325630,81.689270,37.978531,15.369441,12.342168,12.123983,8.898364,11.041341,12.557043,5.385961,0.857026,0.258678,0.735539,0.000000,0.014050,0.000000,0.123968,0.004959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601832.955000,4612105.550000,5454,6405,121.721512,190.539658,170.333054,160.010757,144.622314,131.250427,131.572739,130.002487,131.820679,137.101654,134.457047,147.622314,164.721497,185.217346,200.093384,214.564453,216.837173,203.291733,180.159500,158.704971,149.043808,144.142975,139.754547,109.473572,91.787621,107.159515,117.093407,83.977707,43.176056,16.749607,12.704978,13.140513,10.818199,12.386794,12.470264,6.109926,2.113227,0.306612,0.323141,0.004132,0.014876,0.000000,0.230579,0.377687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601839.555000,4612105.550000,5487,6405,121.431419,189.976883,170.282669,162.323990,144.671097,131.224808,132.629776,130.613235,132.191757,138.514069,136.439697,148.522339,165.472748,184.489288,201.299164,214.943802,216.274368,201.208298,180.671097,159.728958,149.786804,145.638046,140.654572,108.770264,91.406624,107.927292,117.216545,81.439690,40.423157,17.222332,12.786796,15.925637,10.875224,12.748777,13.019850,7.129762,0.977688,0.324795,0.163637,0.125621,0.016529,0.080992,0.354546,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601844.355000,4612105.550000,5511,6405,124.433899,188.541336,170.582657,162.938034,143.921524,131.747955,131.500015,130.053741,132.235550,140.367798,135.309921,148.524826,165.243820,184.756210,200.946304,214.623978,216.276871,200.962830,180.706635,158.764481,148.202515,146.136398,141.772766,109.838852,92.078529,107.665298,117.119843,83.061996,41.119854,16.885143,12.888449,15.863652,10.470263,12.000018,11.713238,7.181002,1.197523,0.504960,0.028926,0.127274,0.018182,0.619835,0.604960,0.000000,0.000000,0.000000,0.000000,0.000000,1.134711,0.000000 -601848.955000,4612105.550000,5534,6405,111.871086,146.565292,151.482651,136.400024,124.292572,116.193398,115.515717,115.656212,116.234718,119.317368,123.069435,135.102493,153.573563,170.077682,185.945465,199.474380,202.912399,193.135544,171.730576,151.482651,141.590088,140.110748,134.490921,107.449600,88.003326,102.689270,113.441330,80.259514,37.689281,15.582662,12.226464,9.726460,9.450430,12.185966,11.786793,6.467777,1.440500,0.519837,0.406613,0.135538,0.041323,0.309091,0.535538,0.431406,1.439669,0.000000,0.000000,2.290910,0.000000,0.000000 -601855.955000,4612105.550000,5569,6405,106.831429,147.245483,149.171097,137.419022,124.319855,116.336380,116.633904,116.419029,117.708282,120.476875,124.733078,136.724808,155.981018,172.989273,188.328110,202.005798,206.666946,197.055374,176.088440,155.452087,147.377701,145.047119,140.245468,110.518196,91.906631,107.005806,117.369438,86.675224,41.377708,16.619026,12.749605,11.214892,12.342993,12.059521,15.691753,9.158689,1.461160,0.334712,0.364465,0.021488,0.009091,0.351240,0.265290,0.676861,0.000000,2.091736,0.000000,1.079339,4.736364,4.204959 -601866.155000,4612105.550000,5620,6405,96.602501,140.279343,144.353729,132.899185,120.023155,112.436371,112.857857,110.841331,112.750420,117.180183,120.510757,133.246292,152.717361,170.800003,185.857864,200.080994,206.089264,198.725632,178.312408,158.601654,151.105789,148.419846,144.527283,114.229759,95.031418,113.287613,127.370262,92.576874,44.560352,16.293407,13.138862,12.709932,12.405802,16.214893,17.504148,11.670261,2.415708,0.951243,0.284299,0.517358,0.102480,0.396695,0.513224,0.377687,4.052893,0.000000,1.093389,0.000000,7.565290,2.044628 -601873.155000,4612105.550000,5655,6405,27.838024,30.790916,29.419846,22.228107,18.072733,15.087609,15.715710,14.923973,15.370255,16.295048,18.440502,22.689264,30.766125,38.833897,47.682659,56.629761,63.406620,64.993401,64.165298,58.642986,56.939678,57.723148,59.445465,45.017365,35.210751,50.309101,89.758690,93.442162,53.085968,8.267779,5.404143,9.780178,21.869440,42.940510,65.050430,56.215721,9.381001,1.268596,1.256200,0.454546,0.666116,0.098347,0.069422,0.291736,2.871075,0.657025,1.096695,0.157851,0.376860,1.239670 -601065.755000,4612095.550000,1618,6455,192.120667,193.633087,188.128952,184.112427,176.211594,174.765305,176.228134,175.104156,175.575241,180.021515,184.690933,195.120697,209.211578,221.476044,234.525650,243.558685,245.674408,241.707474,217.277695,196.476059,187.269455,183.608292,176.963669,149.947113,132.790100,142.360336,150.715714,119.153732,57.269444,18.185970,16.087622,16.331423,15.155390,23.212416,25.727293,21.945473,5.080173,1.338019,1.594218,0.808266,0.895044,0.754547,1.142976,0.686777,6.411571,8.516530,3.643802,0.000000,4.364464,1.841322 -601068.955000,4612095.550000,1634,6455,192.438049,199.330597,191.727310,185.876068,175.710770,174.644653,176.975235,174.818207,175.479370,178.991760,183.843002,192.281021,205.157043,218.479340,229.173553,239.165283,241.710739,237.173553,210.710739,188.719040,179.743835,174.330612,168.636398,141.008301,124.743813,133.917374,143.330612,112.892570,52.363651,17.676878,15.330599,13.552084,13.625638,16.555389,22.746300,15.662001,2.904966,1.671078,1.285954,0.353720,0.407440,0.495869,0.226446,0.000000,5.819835,6.827273,2.887604,8.158679,4.310744,0.000000 -601072.955000,4612095.550000,1654,6455,187.895050,197.275208,195.374390,189.919846,183.589264,179.614059,183.291748,183.597534,183.861984,189.457031,193.994217,203.696701,216.853729,230.547943,243.002502,252.316559,255.795883,251.366135,222.746292,199.432236,189.357864,184.448761,177.390915,148.580994,128.746292,139.390915,150.101654,115.861992,53.837212,17.414894,16.126467,12.771090,15.371918,18.629770,22.077705,14.830595,2.825625,1.577690,1.025622,0.732233,0.296695,0.111571,2.204960,0.546281,3.461984,1.170248,1.008265,0.917355,2.433885,0.000000 -601077.955000,4612095.550000,1679,6455,180.515717,202.383484,200.119034,196.036377,188.887619,187.689270,190.507462,190.639694,192.119034,197.176880,203.036377,212.573578,224.449600,239.036377,249.854568,259.846313,262.656219,257.176880,225.780182,199.590103,188.722336,183.135559,176.581833,147.366959,128.094223,135.755386,144.011597,110.457863,48.119026,18.687624,16.052912,13.364480,13.850430,15.638862,19.616549,9.977700,2.280172,1.255376,0.885126,0.445456,0.367769,1.242150,0.570248,0.072728,2.387604,1.077686,3.053720,0.992562,0.000000,0.000000 -601084.155000,4612095.550000,1710,6455,197.459518,207.525635,206.947113,202.104141,196.707458,196.393402,201.095886,201.509109,203.715714,209.600006,215.128937,225.327286,239.343811,253.385132,265.657867,277.054596,279.509125,271.831421,237.343811,210.071091,198.856216,192.542160,184.781830,152.897537,133.046280,139.219849,146.930588,110.277702,49.633080,20.502501,16.798367,14.409109,14.154563,15.184316,17.831425,11.481008,2.474386,2.040500,1.000002,1.297524,1.120662,0.930580,0.000000,0.295869,2.492562,3.640496,0.000000,3.067769,1.257851,0.000000 -601091.955000,4612095.550000,1749,6455,193.271088,211.576859,211.370255,206.056198,201.709091,202.180176,207.138855,208.279343,211.833069,219.907440,225.626450,236.882629,252.122314,267.221497,280.791779,291.957062,295.436401,286.469452,250.229752,216.766953,204.700836,198.502487,190.527283,154.899200,134.138870,140.105804,149.990112,108.634735,46.758701,19.519028,17.320681,11.765305,15.284315,15.138862,17.790100,8.739683,3.716536,2.483477,1.095871,1.873556,0.295869,0.552067,0.797521,0.261158,0.000000,2.618182,4.490083,0.000000,1.383471,2.238017 -601101.555000,4612095.550000,1797,6455,235.970245,250.978516,225.342148,222.160339,209.738846,205.565292,212.540497,213.681000,216.697525,229.152069,226.697525,238.978516,253.085953,271.581848,286.052948,298.094238,298.887634,287.490967,256.672729,227.647934,215.300827,208.804962,204.854553,166.565292,146.383469,154.557022,164.590088,122.565300,55.102501,21.343822,18.623161,20.415722,15.580184,19.532251,21.839691,12.604148,2.171907,1.276863,0.690911,0.258678,0.334711,0.047935,0.590910,0.621489,0.000000,1.383471,0.000000,1.166116,0.000000,0.000000 -601113.555000,4612095.550000,1857,6455,214.604126,239.314896,218.604141,215.100006,207.058670,203.025620,211.521484,213.306625,215.959518,226.306625,226.257034,242.397537,260.992584,281.794250,296.901703,311.149628,314.372772,307.719879,279.786011,252.662003,239.769440,236.719849,230.645462,190.604126,167.810745,178.405777,199.612396,156.215698,75.306625,24.538036,20.967787,23.085142,20.847954,27.616549,33.843822,24.780184,2.812402,0.484299,0.379340,0.161984,0.279340,0.000000,0.116530,0.424795,1.415703,1.289256,0.000000,0.000000,0.000000,2.326447 -601126.955000,4612095.550000,1924,6455,209.063644,232.716522,219.427261,215.881805,208.402496,207.509918,216.063629,219.980988,223.625610,233.443802,238.749573,255.700027,277.237213,297.865326,315.377716,328.245453,331.328094,327.005768,296.369446,265.592560,250.923157,249.625626,244.063644,203.666946,177.261978,189.204132,216.071899,174.460327,85.443817,27.071918,22.187624,23.190102,22.847954,32.840515,42.625637,29.664480,4.711576,0.548762,0.195870,0.000000,0.301653,0.000000,0.110744,0.010744,0.000000,1.175207,1.219008,0.000000,1.306612,0.000000 -601137.355000,4612095.550000,1976,6455,196.382645,228.671906,215.010757,211.266953,205.283478,205.176041,216.911575,216.423981,220.928101,228.688431,237.126450,254.101654,273.498352,293.638855,309.498352,323.977692,327.746277,321.308258,291.498352,266.134705,255.580994,253.919846,246.754547,214.671906,192.771088,198.308289,211.754547,166.506622,83.043816,28.176052,22.432253,24.859522,23.158697,33.142994,42.531418,29.420681,5.098357,0.337192,0.674383,0.028099,0.088431,0.000000,0.055372,0.275207,1.176033,1.221488,0.000000,3.182645,1.296694,4.298347 -601145.955000,4612095.550000,2019,6455,214.185989,228.756210,217.169434,215.450424,208.681839,209.235550,218.417374,220.962830,223.954559,232.351257,240.698364,259.359528,281.425659,299.772766,314.293427,326.012421,329.185974,317.582672,282.062012,256.442169,245.095078,239.714890,229.863647,198.103317,179.508286,182.574402,185.227295,139.665298,67.078529,24.359522,20.896713,22.157043,22.045475,26.778530,33.557869,23.400845,5.531414,2.803311,1.942980,0.840498,0.350415,0.988431,0.818183,1.365291,6.585124,2.533885,5.654546,4.318182,1.269422,4.379339 -601153.755000,4612095.550000,2058,6455,226.970261,224.978516,218.829742,215.143784,211.061142,213.474365,222.714035,224.317337,227.664444,236.036362,246.383469,262.383484,282.920685,300.523987,314.482666,325.375244,327.342194,316.309113,281.408295,254.838043,244.697510,238.110733,227.036346,198.028122,179.325623,181.879349,178.515701,134.557037,64.284317,24.533901,20.639688,22.926464,20.529770,24.276051,31.440514,22.466961,7.371910,2.923972,1.577690,1.322317,0.902481,1.637192,1.380169,1.173557,5.576034,1.393389,9.502480,3.154546,2.587604,0.000000 -601160.555000,4612095.550000,2092,6455,204.928940,229.482651,220.953705,218.052887,211.383453,213.523956,221.730560,224.680984,228.573547,237.664444,246.011551,261.375214,279.871094,297.358704,308.292572,318.383484,319.317383,306.036377,268.813232,241.094208,231.160324,223.846268,212.945435,185.168594,167.755386,167.259521,163.962006,119.838028,55.160351,22.359524,19.358698,17.338036,18.461176,22.737207,25.730598,18.199192,5.453727,2.307442,2.500005,2.129756,1.352895,0.749587,0.892565,1.595872,12.209091,9.272728,2.199174,3.147108,6.329752,0.000000 -601166.355000,4612095.550000,2121,6455,214.790100,222.633072,218.137207,215.740509,210.269440,212.277695,220.054565,222.500839,225.054565,232.839676,243.013229,257.360352,276.269440,291.509094,303.938843,314.500854,316.790100,304.434723,269.442993,242.244644,232.352081,225.864471,216.327286,186.153732,168.823151,171.790100,167.170258,125.261169,59.806633,23.796713,19.666134,20.836382,20.347128,22.813242,27.276052,23.731422,6.322324,3.339674,2.622319,1.878517,1.633887,2.468597,0.973555,2.370253,16.105787,7.438844,6.603306,3.092563,4.811571,0.000000 -601171.155000,4612095.550000,2145,6455,193.479355,215.694229,214.867783,208.983490,204.925629,205.330597,213.636383,214.776871,218.495880,225.371918,236.413239,252.628113,271.107483,286.818207,300.115723,310.710815,311.975281,301.033081,268.537201,243.165298,232.842987,226.785141,217.000015,187.471085,168.570267,172.231415,176.504150,131.867767,63.793407,23.647951,19.727291,21.709110,19.874399,25.822334,32.107460,22.975227,6.455382,2.551244,3.060336,2.092567,1.585127,4.365293,2.804961,2.060335,16.595043,6.107439,8.933886,0.918182,7.102480,8.390909 -601175.355000,4612095.550000,2166,6455,176.861984,193.366135,188.415710,181.704971,173.374390,173.333069,178.266953,176.696701,178.027283,182.688446,189.771103,201.605804,217.928116,231.159531,241.424011,250.291779,252.655411,244.928131,220.415726,200.027298,190.300018,185.845474,177.936371,152.143005,135.738037,142.605804,152.498367,124.614067,61.994232,18.981836,16.176052,18.049603,18.540514,26.888449,34.539684,30.171093,5.971084,2.147939,2.028930,1.481822,0.569423,0.262811,1.503307,0.558680,11.883472,11.477686,7.797522,2.788430,5.666943,3.746281 -601202.955000,4612095.550000,2304,6455,189.854553,208.887604,209.722321,205.928925,202.044632,204.705795,211.466125,215.970245,220.201660,228.391739,239.871078,262.069427,285.995056,306.284302,322.928955,336.143829,340.135559,334.135559,299.804993,271.259521,260.631409,252.887604,245.036362,205.061157,182.581818,194.309097,203.267776,154.631409,71.771919,24.350433,22.276052,18.924812,20.461176,26.970268,33.218201,25.517374,6.469431,1.023970,1.328929,0.785126,0.434713,0.436364,0.828102,1.154548,2.680992,4.923967,0.000000,2.047934,2.644628,0.000000 -601205.955000,4612095.550000,2319,6455,188.954575,206.938049,211.128128,207.764496,202.210770,205.070282,213.607468,217.161194,221.309952,230.301666,241.028946,259.458679,282.285156,300.772766,316.938049,330.062012,334.301697,325.566162,292.037231,263.417389,251.508286,247.144638,237.409103,201.921524,180.533096,188.896729,191.946320,142.731430,65.747948,23.210762,21.582663,16.391754,19.069441,22.535555,29.714893,21.089275,4.210750,1.830582,1.518185,0.714052,0.608268,0.719835,1.126449,1.346284,2.738017,2.447934,2.327273,1.008265,0.000000,2.100827 -601210.755000,4612095.550000,2343,6455,183.120667,200.335541,191.583466,189.170242,182.814880,181.765289,186.128922,186.558670,188.252884,193.484299,201.599991,216.641312,234.252899,248.095886,258.740540,268.575226,269.881012,264.748779,237.558685,215.178513,205.500824,200.657852,192.509094,163.418182,144.419022,154.790924,161.492569,124.633072,60.591751,19.054562,17.500843,16.140514,17.487621,22.616549,29.409937,22.611588,4.477695,2.364467,2.171905,1.084301,0.902481,0.919836,0.880993,1.495044,3.076860,3.555372,8.390910,2.028926,1.743802,1.557025 -601416.155000,4612095.550000,3370,6455,39.372738,59.604977,54.028118,47.809933,34.839684,26.262823,22.698359,16.511580,14.590092,13.887612,11.340506,14.157860,20.059513,26.846292,32.883484,40.619022,43.852909,41.410759,37.980183,30.061169,21.525631,20.000010,18.236372,3.706617,0.682646,7.423975,56.966965,85.090927,47.752083,4.533069,1.657861,2.969429,12.389272,21.364479,39.517376,30.695059,2.457855,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.342149,0.000000,0.203306,0.000000,0.809918,0.000000 -601418.955000,4612095.550000,3384,6455,45.846298,85.495071,90.344650,78.559532,64.648781,51.213242,43.732254,37.090103,32.843819,31.476048,27.716545,32.537205,42.414894,52.615723,61.318203,73.833908,77.709946,73.990936,69.354576,55.918201,43.355389,40.023987,37.881836,11.172739,3.107444,19.109932,84.435562,101.501671,57.906628,8.157039,3.443820,3.156206,9.332247,18.766958,35.971092,24.387621,0.600001,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.938843,0.000000,0.375207,0.000000,0.000000 -601422.355000,4612095.550000,3401,6455,74.900009,113.435547,113.369431,103.344643,89.113243,74.526466,69.559525,62.055389,57.534729,56.030598,53.559521,59.931423,73.452087,85.542992,97.278534,109.551247,114.741333,110.832253,104.823982,90.212418,78.981010,75.997536,72.881836,35.394234,18.739687,46.237209,110.840515,117.047119,62.129768,11.129768,6.625639,4.935547,11.485967,21.061174,32.633904,23.158695,0.463637,0.055372,0.000000,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.853719,0.823967,0.703306,0.000000,0.000000 -601426.555000,4612095.550000,3422,6455,81.276878,116.473557,109.366119,102.721497,87.539680,75.944641,69.589279,64.366135,61.134727,59.903324,60.159523,68.151253,82.547951,96.828934,108.192566,121.696701,128.010757,124.936371,119.085129,106.266945,96.729759,92.109932,90.572739,54.762829,33.663658,62.762829,124.349594,127.126450,70.862000,15.287621,8.233903,6.239679,14.933900,26.748777,39.250431,31.231424,2.064467,0.011570,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.020662,1.014050,0.861984,0.000000,0.000000,0.000000 -601470.755000,4612095.550000,3643,6455,172.316528,210.142975,198.027283,190.465302,178.944641,170.531418,172.027283,170.746292,171.928101,175.233887,177.490082,190.795868,206.415710,221.886780,233.985962,244.580994,248.167770,244.506622,222.878525,202.423981,193.200836,192.167770,186.118195,157.895050,140.010757,151.771088,167.795868,131.324814,61.324818,20.866135,16.919853,18.784317,17.157869,24.123987,30.176052,22.907457,4.439680,0.797525,1.158680,0.401655,0.527274,0.146281,1.064466,2.022318,5.580166,2.593389,0.000000,1.068595,0.000000,0.000000 -601583.355000,4612095.550000,4206,6455,13.574389,34.679352,34.112415,19.629768,9.757865,2.724800,0.867771,0.369423,0.030579,0.004132,0.042149,0.095042,1.364467,4.452076,10.190097,20.787621,25.408281,24.766136,22.582663,14.047949,7.101665,7.083483,8.681832,0.031405,0.000000,0.752895,65.356209,94.819016,58.711586,4.422325,0.789270,7.904143,16.776876,38.686798,57.199192,53.628937,2.847939,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.642149,0.252066,0.264463,0.000000,0.000000 -601586.555000,4612095.550000,4222,6455,24.357035,64.126465,63.647125,48.366135,34.043819,21.960348,17.645472,10.479356,7.563651,6.109930,4.839681,8.884313,18.034727,25.762001,36.009933,46.481838,50.795887,50.638863,47.019028,37.688450,28.447952,27.431423,28.745472,3.956208,0.000000,10.462000,81.671921,101.002495,62.225639,7.481832,2.613242,8.669436,18.423157,34.266960,56.225639,50.853737,1.689260,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.257025,0.797521,0.000000,0.000000,1.550413,0.000000 -601591.555000,4612095.550000,4247,6455,34.457863,67.638039,63.926468,47.430599,33.522331,19.580181,16.443817,11.900013,8.366955,7.295053,6.298358,9.748774,18.845469,25.366959,33.681007,44.662003,48.579361,47.058701,45.033905,33.439686,26.101669,25.553736,25.218199,4.041331,0.247935,7.783483,73.372749,94.356216,57.496712,7.222326,2.292580,8.390923,12.670266,32.240517,54.215725,41.976051,2.027278,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.290083,0.000000,0.000000 -601599.355000,4612095.550000,4286,6455,56.249599,97.650436,100.336388,86.278542,71.328125,60.460350,55.385971,51.080189,48.997540,46.518196,45.716541,54.022335,66.452087,76.427299,85.592590,97.096718,99.650436,96.807465,92.187630,80.270271,72.890106,72.071930,70.427299,39.832253,23.115721,48.567783,107.385979,112.352921,67.518196,10.916544,6.402499,10.451253,14.805801,28.040516,44.956215,36.527290,1.802484,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.850413,0.000000,0.000000,0.000000,0.000000,1.587603 -601611.955000,4612095.550000,4349,6455,96.380173,148.898376,149.047134,135.005798,122.782661,109.956215,111.121506,108.493408,108.336380,111.865311,114.171089,126.848778,146.104980,163.394241,177.576065,192.352921,196.658707,191.782669,179.319855,161.700027,150.311600,150.857056,148.609116,111.823982,89.038864,116.204147,165.625641,140.881851,74.443817,20.287624,13.509937,14.782661,13.817372,22.725641,33.840515,19.978531,1.323143,0.000000,0.064463,0.000000,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601622.555000,4612095.550000,4402,6455,110.350433,167.019836,166.482651,151.424789,134.697540,127.085968,127.763657,125.920677,126.813240,130.639694,133.110764,147.887604,170.011566,188.581833,204.747131,220.623154,225.085968,217.300842,201.052917,178.937195,169.242981,166.813232,165.309097,126.433075,103.995064,124.639687,158.209915,123.697540,58.978531,19.533905,15.028117,14.701670,12.698362,16.119850,20.897537,12.213238,1.120665,0.189257,0.039670,0.110744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.676033,0.000000,2.515703,8.401653 -601626.755000,4612095.550000,4423,6455,114.126450,166.316528,162.630585,152.448761,137.366135,127.316536,128.655380,126.316536,127.969429,131.374390,133.357864,148.671921,169.473557,188.919846,203.390915,218.944641,223.704971,214.837204,197.142975,176.291748,166.663635,163.547943,160.118195,122.812401,100.647118,121.911575,150.531418,117.233894,57.465309,19.384317,14.556216,14.072743,11.462000,15.423158,19.469440,10.635551,0.779342,0.239671,0.061158,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.276860,0.000000 -601630.955000,4612095.550000,4444,6455,108.328949,177.981842,170.923996,156.733902,142.196716,131.279358,132.188446,130.312408,131.659515,134.899185,136.643005,151.213242,172.138870,191.312424,206.494232,223.295883,227.833084,219.039688,201.246307,179.940521,168.626465,167.114075,164.709106,126.634727,102.758690,125.320679,150.940521,117.452904,57.998367,19.023985,14.973573,13.031422,14.043818,16.153736,20.094234,9.823156,0.437193,0.654547,0.461985,0.000000,0.000000,0.000000,0.003306,0.209092,0.000000,0.000000,0.000000,0.000000,2.508265,0.000000 -601634.555000,4612095.550000,4462,6455,103.312408,174.568604,169.006622,158.378525,142.700836,131.783493,131.824814,129.651260,130.337204,134.461166,136.841324,151.221497,171.543808,190.279343,205.452896,221.361984,224.609924,215.965302,196.304138,175.271088,163.998352,161.940506,157.618195,120.907455,100.014893,118.527290,144.105789,107.642990,51.651260,18.642994,14.328945,14.197536,11.648777,15.188446,17.437210,7.717368,0.757854,0.048761,0.060331,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.297521,1.795042,0.000000,0.000000 -601637.755000,4612095.550000,4478,6455,104.957870,175.452072,171.071915,157.419022,142.104965,131.278534,132.989273,131.063660,131.939682,134.559525,136.807449,150.981003,171.840500,191.493393,205.691742,222.906616,226.336380,217.237198,197.237198,174.906616,163.551254,162.476868,157.245468,121.154572,100.617371,121.253746,142.518188,106.385971,52.666965,18.050430,14.295061,13.708282,10.662000,14.843820,16.515720,7.647945,2.213227,0.126447,0.272728,0.000000,0.000000,0.000000,0.036364,0.201654,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.555000,4612095.550000,4507,6455,107.961174,179.721497,169.903305,160.415710,143.060333,132.448776,135.448761,132.523148,133.258698,136.704971,138.432236,152.812408,172.663635,192.572723,208.035538,223.142975,227.878525,217.564468,197.506607,176.853729,164.308273,160.762817,156.663635,120.225632,100.539680,119.349602,140.589264,104.060349,51.903324,17.862003,14.242168,14.603324,11.214068,14.403323,15.456217,10.023155,0.509920,0.026447,0.175207,0.000000,0.034711,0.000000,0.000000,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601646.755000,4612095.550000,4523,6455,111.997536,180.633911,171.823990,160.038864,144.104980,134.435547,135.485138,133.419022,135.617371,139.344650,139.237213,153.501678,173.237213,192.228958,208.790939,225.733078,228.567795,217.518204,198.262009,175.675232,163.295074,160.724823,156.336395,121.014061,100.914894,118.509926,139.576065,102.270256,50.526463,18.509937,14.212416,15.901670,12.367785,14.451257,16.956217,8.875221,1.012401,0.041324,0.209092,0.000000,0.000000,0.000000,0.084298,0.241323,0.000000,0.000000,0.000000,1.128926,0.000000,0.000000 -601649.755000,4612095.550000,4538,6455,135.671097,185.158691,171.150421,159.786789,145.059509,131.803329,134.985153,133.067780,133.381851,138.943817,137.604965,152.340500,171.514053,190.431412,206.712402,221.811584,226.704147,214.208267,194.885956,173.009933,161.026459,159.852905,154.018188,118.034737,98.348785,116.927299,134.266129,101.257874,50.687622,18.191753,14.001672,16.373571,11.855388,13.057867,17.846298,9.059516,0.934715,0.316530,0.000000,0.006612,0.009091,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.355000,4612095.550000,4556,6455,108.147957,181.547119,168.530594,159.315720,143.993393,132.770264,134.828110,134.365295,132.464478,137.571915,137.406616,151.307449,169.861160,190.588440,205.604965,224.166946,226.208267,214.753723,194.505798,173.902496,163.530594,160.340500,155.472733,119.679352,99.538849,118.133896,134.811584,100.795052,50.133907,19.687624,14.133904,15.579357,10.331422,13.780182,14.927289,8.557862,0.569425,0.052067,0.032232,0.000000,0.000000,0.250414,0.009918,0.000000,0.000000,0.000000,0.000000,1.812397,0.000000,0.000000 -601659.355000,4612095.550000,4586,6455,129.414062,186.777679,176.000854,164.207474,147.885132,135.009109,136.835556,135.405792,136.083481,143.389267,140.298355,154.124802,172.066971,193.182663,208.843811,225.042160,226.885132,215.496704,194.356216,172.918198,161.281845,158.166138,155.100006,119.133072,100.149597,118.579353,131.868607,99.075218,51.066959,18.936382,14.100020,16.068613,12.909935,12.919027,15.325638,5.798359,1.573559,0.193390,0.000000,0.000000,0.025620,0.000000,0.285951,0.207438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601669.155000,4612095.550000,4635,6455,137.561172,194.395874,179.701660,167.660339,150.040512,138.453735,137.908295,136.619049,138.147949,144.999176,141.214066,155.230576,173.098343,191.933060,208.825623,225.023972,226.982651,212.759506,193.040497,170.561157,159.263641,157.172729,152.354553,117.734734,98.924812,117.585968,131.255386,92.809113,45.734734,19.519854,13.850432,16.205799,11.058696,13.524811,13.685141,8.985137,1.445457,0.528928,0.176034,0.036364,0.027273,0.000000,0.239670,0.252893,0.000000,0.000000,1.480992,0.000000,0.000000,0.000000 -601676.355000,4612095.550000,4671,6455,135.129776,178.923141,174.526443,163.840500,146.981003,135.410751,134.741333,132.964478,134.311584,138.716537,138.675217,150.559509,169.584305,187.096695,202.055359,217.460342,221.063644,209.997528,187.328094,165.476868,154.278519,150.799179,147.518188,114.625641,96.179359,114.815720,124.815720,91.782661,46.336384,16.827293,13.410765,13.980185,10.575224,12.271919,13.431424,6.580175,1.707440,0.144629,0.262811,0.138017,0.110744,0.000000,0.183472,0.021488,0.000000,0.000000,0.000000,0.000000,1.295868,0.000000 -601679.555000,4612095.550000,4687,6455,109.704140,160.910751,167.365295,154.009933,139.125626,130.142151,129.332245,128.406616,128.861160,130.175217,133.836380,145.423157,164.109100,181.018188,196.538849,210.100830,213.828110,204.836380,182.158691,159.274384,147.282654,147.084305,142.018188,110.150421,90.654556,108.018188,122.084305,89.464470,44.034733,14.695059,12.910763,9.059519,9.709107,10.549603,11.776052,6.500839,0.442151,0.014050,0.044629,0.361158,0.037191,0.000000,0.017356,0.034711,0.000000,0.000000,0.000000,0.000000,1.804132,0.000000 -601684.755000,4612095.550000,4713,6455,104.938034,159.954559,167.888443,156.004150,140.425629,132.789276,132.417374,130.177704,129.797531,132.433899,134.938034,146.962830,165.359528,183.202499,197.409103,211.028946,214.623978,204.533081,183.318192,160.756210,149.342987,146.136383,141.863647,110.152908,91.954559,108.202492,120.458694,91.698364,45.045475,16.290926,12.896713,9.590924,10.454560,10.492578,13.549603,5.782654,0.711572,0.381820,0.014876,0.321488,0.038844,0.000000,0.003306,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601693.555000,4612095.550000,4757,6455,102.805809,159.574387,167.500000,155.954544,141.053726,132.648773,132.731415,129.433899,129.359528,132.475220,135.161163,146.830582,165.070251,183.219009,197.268600,211.681824,215.582642,204.855377,182.433884,160.020660,149.797516,146.830582,141.681824,109.690109,90.880188,108.888451,119.863655,88.979362,44.417374,17.516546,12.880184,10.218198,10.676050,11.627291,12.767787,4.771910,1.740499,0.090910,0.276034,0.021488,0.000000,0.000000,0.172728,0.357025,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601708.155000,4612095.550000,4830,6455,106.326462,160.590912,165.789261,156.648758,141.119827,132.450424,131.880188,130.417374,130.954559,133.367783,136.789261,148.954544,167.326447,183.954544,200.301651,213.830582,217.475204,207.508270,184.921494,161.814056,150.904953,145.888428,142.136368,111.524818,91.128120,109.037216,119.648773,90.979362,42.483494,18.196712,12.921507,8.690924,9.309107,11.447125,10.252910,5.805794,0.322315,0.320662,0.146282,0.000000,0.009918,0.000000,0.400001,0.134711,0.000000,0.000000,1.261157,1.423141,0.000000,0.000000 -601729.955000,4612095.550000,4939,6455,113.796707,163.771927,167.705811,155.011597,141.532257,134.342163,132.995056,130.904144,131.904144,134.416534,137.052917,149.383484,167.474396,185.995056,200.523987,214.176880,217.747131,208.614899,184.730591,161.821503,150.623154,148.176880,142.400024,111.714058,91.978523,108.854553,122.391747,91.350426,44.829773,17.631424,12.945473,8.850429,11.234727,11.584315,12.552910,6.800010,1.273557,0.271076,0.205786,0.014876,0.012397,0.000000,0.057025,0.062810,0.000000,0.000000,0.000000,1.188430,0.000000,0.000000 -601739.755000,4612095.550000,4988,6455,112.888443,163.276871,167.904968,155.731415,141.756210,131.252075,131.252075,129.409103,130.690094,133.549606,135.880188,147.896713,167.004150,184.516541,199.805801,212.210754,217.781006,207.301666,184.235550,160.896713,148.830597,147.194229,141.318192,110.508278,91.111588,105.929771,121.276878,89.913239,43.326466,16.453737,12.847127,9.121503,11.130596,9.711587,10.359520,5.122323,0.385952,0.563637,0.045455,0.000000,0.000827,0.000000,0.113223,0.029752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.955000,4612095.550000,5004,6455,108.314056,169.867783,165.942169,155.942169,143.446304,132.727280,132.487610,131.057861,130.495880,134.752075,137.520676,148.743820,167.884308,186.123978,201.652908,214.768616,218.710754,208.768616,184.785141,162.702499,151.694229,147.561996,143.090927,110.859512,91.752075,108.297531,121.603317,90.694221,44.909111,17.009109,13.008284,6.561172,10.347123,11.223157,10.695884,6.584307,1.335541,0.042150,0.193389,0.080992,0.009091,0.000000,0.061157,0.091736,0.000000,0.000000,0.000000,3.386777,0.000000,0.000000 -601748.155000,4612095.550000,5030,6455,102.285973,167.451263,168.219864,156.674408,141.781830,131.963654,130.938858,130.930588,129.856216,133.798355,136.922333,148.095901,166.814911,184.980194,199.443008,213.591766,217.401688,207.137222,183.980194,161.360367,150.393417,147.219864,140.781830,110.178535,90.864494,106.360352,122.343826,89.831436,44.079357,15.714894,12.798367,7.361171,10.520679,11.099190,13.137208,7.984307,0.528927,0.157025,0.215704,0.000000,0.188431,0.200827,0.107438,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.755000,4612095.550000,5073,6455,122.056213,175.932236,166.725632,158.791748,144.452896,133.626450,132.122314,131.609924,131.742157,134.750427,137.890915,148.973557,167.130585,185.345459,200.709091,214.700836,217.800003,209.163635,184.932236,161.667770,150.890915,145.849594,142.345459,111.138847,91.428116,108.948769,120.147125,89.709106,44.568615,17.715719,12.940515,7.766129,8.742991,10.094232,10.411585,4.978521,0.461160,0.261159,0.006612,0.314050,0.143803,0.000000,0.076033,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.155000,4612095.550000,5145,6455,121.521507,171.959518,167.323151,156.430588,141.529770,129.389267,129.447113,128.595886,128.455383,133.356216,134.182663,145.447113,164.496704,182.703323,198.331406,213.042145,216.695038,204.257019,181.488449,160.364471,147.364471,144.199188,138.372742,108.042160,87.108276,103.678528,117.777702,88.265305,40.670269,15.293407,12.579358,6.195877,8.902496,8.604145,10.561998,4.617364,0.763638,0.171902,0.223141,0.152893,0.000000,0.000000,0.127273,0.039670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.755000,4612095.550000,5198,6455,107.938026,167.226471,166.573578,152.333908,139.168610,128.375214,127.788452,126.218193,125.226463,128.871094,129.705811,142.143814,161.028122,177.044647,191.573578,205.317368,208.664490,196.623154,174.168610,152.036377,141.656219,137.755386,131.036377,104.598358,85.408287,100.796707,113.482658,82.085968,40.160351,14.885967,11.912416,9.324806,9.678529,11.146297,11.331420,5.250422,1.108267,0.278513,0.314050,0.069422,0.080166,0.000000,0.308265,0.791737,0.000000,0.000000,0.000000,0.000000,3.626447,0.000000 -601788.555000,4612095.550000,5232,6455,113.618187,170.436386,167.395065,153.915710,137.808273,127.890915,129.494217,126.254555,125.535545,128.378525,129.626450,142.320663,160.535553,177.337204,191.221512,204.353745,208.229782,195.808289,173.981827,151.014877,141.254547,139.072739,130.709091,102.907448,84.419846,99.502495,112.238022,82.444641,37.056221,14.835554,11.882663,10.451253,8.214893,9.691751,11.683487,4.232241,0.405786,0.530580,0.053719,0.052893,0.000000,0.000000,0.119835,0.374381,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.155000,4612095.550000,5275,6455,109.327293,174.459518,170.195053,155.930588,140.674393,129.484314,130.128952,127.905807,127.013245,130.476059,131.583496,144.013229,162.492569,179.773560,194.484299,208.302475,211.343811,199.120651,176.170258,155.004974,143.773560,140.624802,135.236374,104.310760,87.186790,101.922325,114.583481,83.120674,40.071095,16.087622,12.294235,9.977700,10.730596,12.285141,11.614892,5.436372,0.849589,0.371902,0.288431,0.000000,0.030579,0.000000,0.313224,0.004959,0.000000,0.000000,0.000000,6.547934,0.000000,0.000000 -601802.755000,4612095.550000,5303,6455,98.581009,177.556244,168.465332,156.457062,140.457047,128.523148,131.242157,128.176041,128.242157,132.010757,132.126465,145.176056,162.159546,180.415741,194.432266,209.746323,211.085159,199.614090,175.547974,154.969467,143.738037,141.746307,135.209106,106.192566,86.002495,101.655388,114.919838,83.597534,39.473572,15.299191,12.291755,12.682662,11.036381,10.760347,12.828115,5.246291,0.753721,0.309092,0.419836,0.000000,0.000000,0.000000,0.076860,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601808.955000,4612095.550000,5334,6455,114.952087,176.390091,169.803314,155.885941,141.084305,129.588440,131.166962,128.208282,129.018204,132.828110,133.142166,145.208267,163.018173,181.290924,196.456223,210.960342,211.786789,200.001678,177.059509,156.290909,144.142151,142.224808,137.018188,106.183487,88.166962,102.654564,114.257866,82.522331,40.803329,16.400845,12.456217,11.308279,10.021504,10.557867,12.708281,6.799184,0.690084,0.257852,0.388430,0.014050,0.023967,0.000000,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601816.155000,4612095.550000,5370,6455,96.691750,184.104965,171.104965,157.600830,142.336380,127.774399,130.584320,127.865311,128.485138,133.319855,131.038864,144.931412,162.427277,181.716537,195.584305,210.592575,212.741333,200.022324,177.542984,157.476868,144.766129,142.088440,135.881821,106.989265,86.195877,102.435547,114.493401,82.253738,39.733078,15.976051,12.352912,12.890925,9.507456,10.572744,11.627289,4.492570,0.142149,0.457026,0.053719,0.063637,0.020662,0.000000,0.000000,0.270249,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601820.955000,4612095.550000,5394,6455,128.143814,182.226456,170.168610,157.656219,141.871078,128.681015,130.391754,127.846298,128.573578,133.953735,131.747116,144.714050,162.598373,181.986786,196.879349,211.697525,213.631409,199.259506,176.631409,157.284317,146.309097,143.003311,136.672729,105.871094,87.466133,103.119026,114.127289,81.507454,40.813244,15.098366,12.424812,12.379354,9.823984,10.690926,13.321504,6.100010,0.967770,0.142149,0.000000,0.423141,0.023967,0.000000,0.080166,0.255372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601827.355000,4612095.550000,5426,6455,135.064468,182.709091,171.370239,160.676041,143.866119,130.626450,131.295868,130.080994,130.213226,136.560333,133.618195,146.378525,164.353714,183.469421,199.576859,213.882645,214.915710,200.915710,179.428101,158.089264,147.337204,145.080994,139.345459,107.857857,89.328934,104.477692,116.469429,81.700844,40.337212,15.524811,12.667789,15.757869,10.543818,10.751256,10.795883,6.026456,0.413224,0.312398,0.072727,0.006612,0.214877,0.000000,0.269422,0.195041,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601831.955000,4612095.550000,5449,6455,132.692581,189.461166,171.923981,161.271088,142.560349,130.469437,131.700836,129.395050,130.428116,137.204987,134.138855,147.403305,162.981827,182.676041,198.651245,214.064468,215.519012,200.576859,179.155380,158.378525,148.130585,144.593414,139.709106,108.973557,90.651253,106.915710,117.047943,81.585136,40.122330,15.409109,12.700845,14.090099,9.679356,12.023984,11.493404,7.875218,1.120663,0.399175,0.070248,0.009918,0.013223,0.132232,0.025620,0.295042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601837.155000,4612095.550000,5475,6455,129.625641,188.857056,169.088440,159.509933,142.419022,131.526459,133.071915,130.741333,133.022324,138.633896,136.518188,148.790924,166.369446,184.873581,201.823990,217.319855,217.939697,203.154572,181.981018,161.014053,151.204147,148.245468,143.063644,112.410759,93.022331,109.179359,116.766136,82.964478,40.733074,17.255390,13.005804,15.609936,10.570265,12.552910,13.163651,6.980175,0.645456,0.347935,0.218182,0.083471,0.038843,0.000000,0.103306,0.190083,1.517356,0.000000,0.000000,1.120661,0.000000,0.000000 -601845.155000,4612095.550000,5515,6455,91.848785,147.815720,151.559509,138.997528,124.625641,117.576050,118.005806,116.799194,118.625641,121.063652,124.947952,137.253723,156.328110,174.675217,189.146286,202.931412,206.476868,197.691742,175.807449,155.319839,145.782654,143.080170,138.336380,109.005806,89.898376,103.567787,114.286797,83.501671,38.014069,15.361175,12.576052,9.925635,11.048777,12.272743,13.181835,6.905794,1.857029,0.452894,0.409919,0.056199,0.014876,0.000000,0.119836,0.311571,1.386777,3.478513,0.000000,1.188430,1.233884,0.000000 -601856.155000,4612095.550000,5570,6455,90.770264,141.972733,138.179352,124.947945,114.014061,105.493401,106.195877,106.071907,107.171082,110.468605,114.022324,125.625633,142.617371,158.493393,171.733063,184.633896,188.964478,184.038849,169.328110,154.658691,146.931412,147.261993,144.609100,118.369431,98.666962,118.427284,137.187607,108.956215,52.848782,16.651258,13.146299,12.027288,12.467786,18.082664,22.076054,13.267784,2.132236,0.347935,0.108265,0.017356,0.102480,0.250414,0.000000,0.080165,4.238843,2.672728,1.022314,0.929752,3.296695,0.000000 -601043.155000,4612085.550000,1505,6505,173.578522,200.960342,195.381821,190.960342,184.563644,185.464478,191.076050,191.051254,194.348770,199.555374,206.811584,217.803314,232.373566,247.290924,259.621490,269.869446,271.076050,262.464478,228.274384,202.638031,192.786789,187.224808,179.563644,150.406616,133.910767,139.009933,139.803314,100.439690,43.753738,17.173571,16.323986,16.335554,14.719028,15.509934,20.586794,14.146297,4.810751,1.815707,1.407441,1.442978,0.506613,0.881821,0.832232,0.000827,10.614878,4.609091,4.084298,1.753719,4.278513,3.852067 -601046.955000,4612085.550000,1524,6505,182.341324,203.341324,203.250427,196.961166,194.415710,196.514877,202.407440,205.506622,209.713242,217.374405,226.068619,237.547958,252.944656,266.638855,278.812408,287.580994,286.647125,273.192566,230.936371,199.399185,189.333069,182.242157,171.663635,143.333084,127.283478,127.878517,120.671906,78.837212,33.994232,17.434729,15.605804,17.091753,13.119026,15.367787,13.844645,10.342988,4.875216,2.856204,3.206618,1.100003,1.175208,2.693392,1.938017,0.622315,8.291737,3.316529,2.097521,5.528927,2.311570,0.000000 -601051.755000,4612085.550000,1548,6505,188.288452,200.825638,202.693405,197.602493,191.181015,191.825638,196.701675,197.668610,200.313248,205.660355,212.982666,223.668610,237.048782,249.676880,262.742981,271.875214,272.379364,262.544647,225.866959,196.643814,187.015717,179.891754,174.445480,142.462006,123.304970,129.371078,130.602493,92.313232,38.412415,17.633904,15.858697,13.110761,13.957044,14.125638,17.497538,9.771916,4.157033,1.724799,1.695871,1.075209,0.223967,0.795869,0.283471,0.204133,2.344628,3.590909,2.037190,0.843802,4.784298,4.103306 -601057.755000,4612085.550000,1578,6505,185.275208,202.399185,202.572739,196.010757,190.068604,189.539673,194.729752,194.688431,196.556198,201.663635,207.341324,217.109924,230.027283,244.225632,255.250427,264.564484,266.820679,258.118195,225.134720,197.390915,188.109924,181.605789,174.300003,142.820679,125.366127,131.374405,135.374405,99.390923,43.060349,18.729771,15.845474,13.265306,13.436380,14.622332,16.837208,9.838856,3.947943,2.188435,0.659506,0.980168,0.387604,0.822315,0.809091,0.149588,4.906612,2.528099,2.980992,0.985124,0.000000,12.784299 -601065.155000,4612085.550000,1615,6505,192.759506,205.412399,202.470245,199.205795,191.106613,191.643799,194.701660,194.751236,197.032242,201.941330,208.247116,217.329758,230.147934,244.048782,256.065308,264.106628,267.329773,259.933075,227.139679,198.900009,187.742981,182.304962,175.263641,144.081818,123.181000,130.776047,138.726486,102.263649,44.957867,18.238861,15.933077,13.332248,14.539686,13.744646,15.571917,10.407454,2.246289,1.931411,0.980994,0.848762,0.570249,0.443803,0.049587,0.109091,3.738017,1.231405,4.093389,0.933058,4.691736,2.054546 -601074.555000,4612085.550000,1662,6505,179.460342,201.857040,203.319839,201.261993,193.700012,192.104965,196.716537,197.906616,200.468597,206.642151,211.171082,223.385956,238.708267,254.700012,267.427277,279.501678,283.195892,277.774414,246.534714,219.964478,210.030594,203.625626,196.427277,163.749603,141.823975,149.683487,160.956207,125.501663,55.774399,20.724812,17.857042,11.724812,15.273573,17.109108,21.613241,13.333072,2.359510,1.024796,0.609093,0.697522,0.000000,0.559505,0.003306,0.198348,2.413224,0.000000,0.000000,0.000000,0.000000,0.000000 -601086.155000,4612085.550000,1720,6505,196.346268,207.585938,205.602463,201.495041,194.941330,195.123138,200.197525,202.371094,203.561157,211.809082,218.147919,231.503296,247.842163,264.288452,278.767792,289.900024,295.296722,290.842163,261.842163,233.767776,221.602463,217.040482,210.263626,177.379349,153.594208,162.825607,174.751221,137.106613,61.453739,21.329769,19.114895,13.285143,16.733904,20.063656,25.409937,13.190925,2.967774,0.939673,0.595043,0.904134,0.330579,0.000000,0.010744,0.000000,1.273554,0.000000,0.000000,1.065289,1.188430,0.000000 -601098.555000,4612085.550000,1782,6505,205.891739,227.098373,199.941315,196.668579,183.602478,178.924820,186.081802,186.387589,189.131393,200.428909,197.304947,212.040482,228.536362,246.850418,262.652100,274.362823,276.048737,269.635559,251.569443,229.139679,219.759491,218.090073,212.172714,181.338043,158.652069,173.544647,194.982635,160.908279,84.495064,25.815720,19.288448,24.481836,24.277704,32.672745,46.842167,34.164482,2.313229,0.098348,0.000000,0.000000,0.000000,0.026446,0.000000,0.000000,1.267769,2.534711,0.000000,0.769422,0.000000,2.107438 -601108.755000,4612085.550000,1833,6505,191.805801,232.194229,215.111588,213.764481,205.442169,204.119858,212.871918,215.276871,220.202499,231.194214,233.185944,249.871902,267.764465,287.177704,301.210785,313.566162,315.789276,305.037231,277.549622,253.491730,241.690079,238.111588,230.136368,199.764481,181.706635,186.863647,189.376053,145.483490,70.293404,23.423988,20.921511,20.832251,20.922333,26.219028,35.814064,25.305803,4.227280,0.624795,0.660333,0.328100,0.137191,0.739670,0.417357,0.339670,3.785124,0.000000,2.295868,1.099174,1.243802,10.975206 -601116.755000,4612085.550000,1873,6505,216.328125,223.708298,204.485153,202.551270,195.344650,194.303329,203.228958,204.171097,206.394241,214.286804,221.096725,237.286804,254.237213,272.022339,284.873566,296.981018,299.063660,289.410767,265.733063,245.088455,235.683502,232.700027,222.700027,198.245483,181.501678,186.576065,188.666962,148.187622,75.435555,23.685143,20.245474,22.524811,22.669439,31.747128,40.848782,30.956219,3.257030,0.798349,0.795869,0.254547,0.103306,0.283472,0.778513,0.000000,5.028926,0.000000,4.123968,2.980992,2.504133,0.000000 -601123.155000,4612085.550000,1905,6505,196.012405,217.814072,205.185974,201.888443,195.921509,195.086792,203.574402,205.020676,208.334732,217.450424,223.103317,239.285141,256.805786,274.210785,285.756256,297.392609,300.285156,290.227295,265.194244,244.797531,235.615723,230.880188,222.227295,196.648773,181.714890,183.913239,184.756210,144.962830,73.185966,24.542994,20.202499,23.535555,24.367788,32.896713,42.078533,30.758699,6.641333,2.358682,1.114878,1.364466,0.582646,1.359507,0.988431,0.069422,8.681819,4.979340,1.215703,3.847934,0.000000,0.000000 -601128.155000,4612085.550000,1930,6505,181.283478,195.754547,177.167770,171.771088,162.630585,158.531418,164.324799,164.010757,163.291748,170.597534,174.977692,189.655380,206.275208,220.225632,232.250427,242.861984,246.671906,238.969421,218.622314,202.952896,193.481827,190.200836,183.300003,157.812408,142.977692,149.961166,165.142975,139.060333,71.109940,21.752911,16.663656,21.009108,21.974400,33.068615,45.655396,38.179356,4.390091,1.078516,1.533060,0.456200,0.552067,1.067770,0.205786,0.690911,17.118185,4.409092,8.078514,3.413224,5.724794,3.837190 -601131.955000,4612085.550000,1949,6505,126.500015,134.047119,122.199188,114.683487,108.271919,103.398354,107.885963,104.679352,103.971092,108.615715,110.896713,120.795052,131.505798,142.173569,149.611588,158.000839,159.962006,156.052917,143.242996,131.166946,126.099190,123.244644,117.690926,101.308281,89.696709,96.787621,113.468605,100.278519,53.810760,14.846296,10.699188,16.161173,21.785143,35.568615,54.249603,47.489273,22.223978,17.510750,19.705790,20.537193,19.349590,17.406614,15.950418,14.100828,14.337194,10.960332,8.384299,17.966120,12.451242,14.117358 -601201.355000,4612085.550000,2296,6505,190.333069,206.217377,207.382660,201.828949,198.068619,199.341339,207.167786,209.671921,213.944656,223.291763,232.680191,253.787628,276.795898,296.275208,312.349579,325.324829,331.209137,326.283508,293.862030,266.052094,254.440521,248.688446,238.663666,202.333084,179.333084,191.754562,199.349609,151.250427,72.473572,25.415722,21.696714,21.517374,21.275225,27.820681,33.952911,28.790926,6.482655,3.755378,1.107442,1.361986,1.014054,1.480167,1.494219,1.889260,4.935538,4.824794,8.984299,3.215703,2.491736,2.012397 -601205.955000,4612085.550000,2319,6505,180.307434,190.629745,183.340485,181.472717,172.514038,170.968582,173.555359,174.654541,175.216522,180.927261,189.257843,206.406601,228.819839,244.646271,256.968597,265.332214,268.885956,262.158661,236.538849,210.952057,200.869415,195.373550,184.745453,154.345459,133.684311,147.403305,162.712387,125.836372,59.852913,19.214069,16.795059,18.971918,16.396711,22.788446,29.811590,26.863653,7.308277,3.171080,2.469425,1.833889,2.009094,3.390086,0.981820,2.619838,5.050414,8.871902,8.391737,7.859506,3.010744,0.000000 -601458.755000,4612085.550000,3583,6505,16.139675,27.938032,19.747950,10.061993,2.770252,0.756201,0.278513,0.013223,0.000000,0.000000,0.000000,0.000000,0.195868,0.868597,2.761161,7.705792,9.697529,7.839676,6.737196,3.452897,1.138018,1.073555,1.100002,0.000000,0.000000,0.071901,22.880177,48.281830,24.983488,2.015707,0.100002,6.022324,11.631419,24.294231,42.523987,33.374397,7.195876,1.194217,1.740498,0.370249,0.475207,0.142976,0.000000,0.000000,0.254546,0.169422,0.000000,0.000000,0.000000,0.401653 -601461.555000,4612085.550000,3597,6505,66.758690,98.333893,87.300835,71.854553,52.755390,38.895885,32.061172,23.794233,19.849604,16.452908,13.427286,16.916544,23.023983,30.741341,42.218201,57.028118,60.730598,55.003326,50.672745,37.036385,25.544645,23.566957,21.490927,2.348764,0.455374,11.575219,71.887611,89.292572,49.366962,6.736377,1.953736,7.000838,9.698361,20.918200,34.254562,24.076878,0.772729,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.668595,0.000000,0.509091,0.000000,1.593389,0.000000 -601466.355000,4612085.550000,3621,6505,128.668610,173.881821,162.328110,154.460342,137.476868,124.452087,125.559525,121.807457,119.559525,118.931419,119.790924,131.799194,146.361160,159.551254,172.485138,186.071915,190.204147,185.261993,172.774384,157.468597,146.534714,145.914886,141.972733,108.964478,91.993408,111.823982,147.377701,130.642166,66.493408,16.972746,12.906631,17.788446,17.665308,28.708284,37.749603,25.343821,1.064466,0.093389,0.033058,0.000000,0.000000,0.000000,0.000000,0.013223,1.037190,0.000000,0.000000,0.000000,0.000000,0.000000 -601591.955000,4612085.550000,4249,6505,7.804964,15.007446,12.014056,6.568601,3.175210,1.485952,1.104134,0.529754,0.371076,0.147934,0.101653,0.453720,1.361159,2.549590,3.810747,6.238848,7.060336,7.249592,6.688435,4.874384,2.803309,2.969424,2.818185,0.286778,0.000000,0.533059,29.409935,64.381828,41.852909,3.653727,0.256202,8.138029,15.690099,29.461178,51.861176,44.823982,4.133892,0.189258,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.373554,0.679339,0.000000,0.222314,1.194215,0.000000 -601597.755000,4612085.550000,4278,6505,20.713234,62.439686,64.317375,50.432247,34.761173,26.136379,22.571089,18.175220,15.982658,13.222327,13.804146,18.594231,26.243818,34.521507,42.468613,52.165306,55.828117,54.386795,52.009933,42.350433,34.819851,33.959522,34.463654,10.915715,2.461163,17.804974,77.028122,94.482658,57.871094,6.642161,3.133075,8.907451,13.115719,31.272747,46.259525,40.745472,2.638847,0.023141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.054546,0.000000,0.000000,0.000000 -601607.355000,4612085.550000,4326,6505,82.944633,132.792587,130.883484,118.172745,101.784317,93.371094,91.519852,87.181007,85.734734,86.329773,86.197540,94.842171,109.106628,121.147957,131.462006,141.123154,145.866959,141.866959,133.536377,119.908279,110.139687,110.156212,108.536385,78.065308,59.404152,83.371094,132.594238,124.825638,69.891754,15.540515,9.866961,11.690924,14.804149,26.577705,39.911591,26.580183,0.646284,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.355000,4612085.550000,4381,6505,106.167786,164.059525,157.563660,146.869431,132.456207,120.877686,122.919006,121.241325,121.604958,124.216530,127.051239,140.910767,160.142181,178.257874,192.654572,206.819855,211.919022,202.613251,190.332260,170.993408,160.869446,159.596725,158.018204,121.993393,100.431404,123.117355,160.770279,132.522308,66.315720,18.559525,14.365308,13.552082,13.387619,18.716549,27.795061,14.756214,0.485952,0.000000,0.059504,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.619835,0.000000,0.000000,2.424793,2.088430 -601627.155000,4612085.550000,4425,6505,115.767792,172.245453,167.113220,154.311569,139.733047,126.716545,127.716545,127.700020,127.476875,131.848785,133.088440,146.848755,166.989243,186.171066,202.468582,217.187592,220.303299,212.518173,195.683472,177.096695,165.534698,165.129745,163.427261,126.625641,104.237206,126.179359,160.501648,127.253738,64.394234,20.584314,14.857043,16.750431,14.436379,15.466133,24.997540,14.414893,2.239675,0.401654,0.434712,0.090910,0.000000,0.000000,0.039670,0.263637,2.719008,0.000000,1.234711,5.151240,0.000000,0.000000 -601632.155000,4612085.550000,4450,6505,105.541336,174.822327,167.814072,156.483490,140.698364,129.814072,131.392578,131.086792,132.061996,135.433899,136.301666,150.268616,171.012405,191.028946,204.888428,219.177704,221.789276,213.318192,195.194229,175.524811,163.995880,162.731415,160.590927,125.053734,103.260345,124.243820,153.913239,119.698364,58.979359,19.088448,14.599193,15.241339,11.779355,15.954562,20.885967,10.719024,1.270253,0.163637,0.176034,0.035538,0.200827,0.000000,0.000000,0.207439,1.454546,0.000000,0.000000,0.000000,0.000000,0.000000 -601635.755000,4612085.550000,4468,6505,112.814064,175.607437,168.367767,156.458710,139.987640,129.400848,131.078522,131.367783,132.351242,136.318192,136.268616,151.301682,171.202484,189.136368,206.045456,220.359497,223.830582,213.442154,195.780991,175.301651,164.599167,162.814056,159.500000,125.425636,103.119850,124.384315,149.954575,116.838860,57.409107,19.947126,14.500018,14.136380,11.985967,14.582662,17.373571,14.537207,1.242152,0.145455,0.052894,0.109918,0.000000,0.000000,0.089257,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601640.955000,4612085.550000,4494,6505,104.190933,185.438858,173.480179,159.612411,143.752899,132.595886,134.141342,132.736374,134.496704,138.232239,137.926453,153.000839,172.281830,191.967789,207.678528,222.058685,226.331421,214.918198,198.042160,177.521500,166.356216,164.149597,161.372742,125.133072,105.066956,123.802490,148.504974,113.447121,55.984318,18.348780,14.670267,15.740515,12.747952,15.904977,18.704977,10.003321,1.178515,0.433059,0.056200,0.000000,0.000000,0.000000,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601649.355000,4612085.550000,4536,6505,120.322327,185.438034,170.231415,161.157028,144.438019,130.991745,133.925629,132.140518,132.776871,139.768600,138.702484,151.289261,170.884308,190.785141,206.760345,222.553741,225.851257,214.636383,195.347122,173.198364,162.322311,159.669418,155.363632,119.669441,97.677704,120.735550,137.330597,101.834724,50.066135,15.752085,14.123985,14.823158,10.988446,12.205803,14.390925,6.901666,0.576861,0.088430,0.140496,0.000000,0.000000,0.000000,0.000000,0.136364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601656.955000,4612085.550000,4574,6505,125.587616,194.207428,174.827271,163.430588,147.273560,134.785965,134.281830,132.967789,133.976044,141.372742,139.075226,152.091736,171.744629,192.323135,207.744644,223.909927,228.190903,214.529770,194.752884,173.240494,159.918198,158.215714,154.827271,118.562813,99.166130,118.133072,134.827301,96.868607,49.050434,18.976051,14.075227,16.038036,10.009934,11.427289,14.957042,6.281003,0.877689,0.309092,0.000000,0.000000,0.000000,0.000000,0.099174,0.008265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601665.555000,4612085.550000,4617,6505,139.125626,191.092560,174.067764,164.563629,146.596695,133.869446,133.323990,132.563660,133.514069,141.976868,137.439682,151.117355,168.993378,189.497513,206.472717,221.720657,225.059494,212.332230,192.315689,169.125626,158.133881,155.133881,151.927261,115.629768,95.439690,117.224808,129.580185,92.299194,46.695889,16.419853,13.811589,12.967785,7.842992,12.090926,13.710762,8.321499,1.568597,0.488430,0.867769,0.264463,0.380992,0.141322,0.000000,0.590084,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601676.355000,4612085.550000,4671,6505,96.873573,163.394226,169.914886,156.617355,140.129761,131.981003,131.650436,128.799194,129.584320,132.468613,135.228943,146.972733,166.377701,183.319839,198.005798,211.832230,216.848755,206.898346,185.204147,163.344635,151.724792,148.071915,143.790924,112.741341,92.848778,110.427292,125.121506,93.385971,46.253742,18.208282,13.071919,10.033074,11.656216,12.065306,14.229770,7.498357,0.745456,0.323142,0.161158,0.008265,0.000000,0.000000,0.000000,0.015703,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601685.155000,4612085.550000,4715,6505,104.895058,162.415741,168.862015,154.547958,141.167786,132.382660,130.663651,129.597534,130.027283,132.969437,134.985962,147.704987,166.630615,184.027283,198.663635,212.754562,217.176056,206.886795,184.423981,162.862015,151.779358,148.308289,144.209106,111.349602,91.771088,109.870262,123.481834,91.771088,44.696712,17.697540,13.109936,10.914066,11.132248,11.842993,14.793406,7.560341,1.227275,0.018182,0.109918,0.114876,0.026447,0.000000,0.024794,0.071901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.955000,4612085.550000,4774,6505,115.319847,162.237198,169.815735,155.005798,141.253723,132.104965,132.253723,130.443817,130.047119,133.691742,135.551254,148.526459,166.146286,184.906631,200.319839,214.295029,218.493378,208.873550,185.964493,163.534714,152.989273,147.931412,143.245468,112.005798,92.336372,110.576042,123.906624,91.443810,44.757874,18.967785,13.022334,9.642164,11.100843,12.395058,12.918199,6.855382,1.655376,0.574382,0.323968,0.052893,0.009091,0.000000,0.241323,0.006612,0.000000,0.000000,1.795041,0.000000,0.000000,0.000000 -601715.355000,4612085.550000,4866,6505,99.842171,159.098373,166.850418,155.362823,139.230591,131.304977,131.189270,128.536377,129.462006,132.247131,135.139694,147.900024,166.007446,183.495041,198.875214,213.412399,217.776031,207.214050,184.825623,161.982651,150.900024,146.544647,141.445480,110.139679,91.189278,107.709930,122.817375,90.528122,44.776051,17.208282,12.858697,9.887620,10.176875,10.534726,9.997536,4.628933,1.033887,0.264464,0.141323,0.000000,0.000000,0.000000,0.000000,0.163637,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601733.955000,4612085.550000,4959,6505,112.551262,165.906616,167.617371,157.154556,144.047119,135.815720,133.171097,133.518204,133.047134,136.138031,138.452072,150.270264,169.642151,188.179352,202.311584,216.394226,220.567780,210.427277,186.228943,164.542984,153.468597,149.823975,144.427277,113.022324,94.402496,110.187614,124.840515,92.981010,45.476883,18.755386,13.129771,8.660346,12.844646,13.186794,12.997538,6.165299,0.781821,0.510746,0.520663,0.158678,0.035538,0.000000,0.147934,0.048761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601742.755000,4612085.550000,5003,6505,109.442162,168.417374,166.904953,158.359497,144.433899,134.028946,133.855392,131.805801,131.557861,136.045471,138.888443,150.822327,169.078506,187.657028,202.574387,216.301651,220.400833,210.309921,186.500015,164.409088,153.136383,149.747955,143.500015,112.384315,93.582649,108.061996,122.814056,92.384308,44.276878,19.276052,13.045473,9.100014,12.042992,12.929770,12.079356,6.330587,0.911573,0.297521,0.321489,0.083471,0.267769,0.000000,0.175207,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601747.955000,4612085.550000,5029,6505,105.203316,168.434738,167.352081,156.773560,141.897552,132.277695,132.418198,129.831421,130.955383,133.947113,136.723984,148.228119,166.715714,185.120667,200.137192,214.021500,217.930588,208.600006,185.195038,162.467789,150.021500,146.715714,142.054581,111.558693,90.971916,107.616539,119.484314,91.046295,42.657867,17.364481,12.914068,6.350425,9.694232,9.685140,10.848777,4.418190,0.383474,0.312398,0.238017,0.142149,0.066116,0.000000,0.071901,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.555000,4612085.550000,5062,6505,114.528122,169.734726,167.404144,156.131424,141.544647,129.371094,131.544647,128.660355,129.478531,133.412415,135.519852,147.164490,165.420685,182.800842,199.081833,212.842148,217.238846,207.040497,183.230591,160.825638,148.858704,145.247131,140.536377,110.602501,90.238861,106.379356,119.271919,88.214066,42.230598,15.966960,12.776052,6.213236,9.798364,9.350429,9.114064,3.804141,0.894217,0.360332,0.190083,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601764.755000,4612085.550000,5113,6505,119.272743,172.289276,169.123978,159.074402,145.801666,131.661179,131.719025,129.975220,130.214890,134.909103,136.380188,147.768616,166.677704,185.768616,200.752075,213.495880,218.041336,208.322327,184.603317,161.016541,148.950424,146.165298,140.181839,110.008278,89.842995,107.330597,119.851257,88.429771,43.471096,16.302496,12.743821,7.435549,10.064480,10.004148,12.845470,3.498354,1.559507,0.624796,0.167769,0.000000,0.014050,0.171075,0.100827,0.105785,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.355000,4612085.550000,5196,6505,109.287621,170.849594,169.560333,153.295868,138.543808,128.461166,129.006622,126.783485,126.766960,128.948776,131.667786,143.791748,161.940506,179.229782,193.428101,207.403305,210.254547,199.328934,175.337219,154.684311,143.866119,140.874390,133.618195,105.097534,86.494232,100.362000,114.758690,83.494232,40.585144,17.226465,12.147126,11.295882,11.235555,12.497538,12.711587,5.881001,0.239670,0.053719,0.134711,0.070248,0.071075,0.000000,0.000000,0.219835,0.000000,0.000000,0.000000,3.376860,0.000000,0.000000 -601794.955000,4612085.550000,5264,6505,97.621506,165.613235,166.249603,151.522324,137.555374,127.638031,128.836380,126.687622,125.596710,129.431427,131.026459,142.274384,162.109100,179.621490,193.183487,208.761993,210.158691,198.514053,174.935547,155.621490,143.009933,141.175217,134.109116,103.877701,85.563652,101.464478,114.894234,80.257866,39.654568,14.561174,12.191755,11.304148,9.777703,11.285968,10.475222,4.528108,0.365290,0.000000,0.428101,0.000000,0.084298,0.000000,0.190083,0.102480,0.000000,0.000000,0.000000,0.000000,0.000000,2.976033 -601800.755000,4612085.550000,5293,6505,104.804977,178.342163,168.309128,155.119049,141.218216,129.441345,129.755386,128.110764,128.656219,131.821503,131.639694,144.383499,162.871109,180.862823,195.325638,210.028107,212.664459,200.160339,176.895889,156.424835,145.623169,143.656235,136.490921,105.449608,87.383492,102.457870,113.755394,84.986794,39.424812,16.465307,12.408285,11.438859,10.609109,11.228116,14.000017,4.550422,0.718183,0.058678,0.183472,0.000000,0.011570,0.000000,0.128926,0.165290,4.743802,1.887603,0.000000,0.000000,0.000000,0.000000 -601805.755000,4612085.550000,5318,6505,115.821503,183.019852,169.342148,156.003326,141.656204,129.862823,128.928925,128.102493,128.234726,133.433060,132.143799,145.110748,163.185120,181.730576,196.309113,210.780182,213.639694,199.358704,177.383469,156.647934,144.953720,143.961990,136.581818,105.391747,88.300835,102.267776,114.598358,83.350433,40.185143,16.854563,12.416549,10.522327,10.548776,10.064477,13.117372,5.585133,0.654547,0.371902,0.129752,0.000000,0.029753,0.029752,0.345455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.955000,4612085.550000,5354,6505,110.824814,176.477692,169.180176,155.510757,141.271103,128.155396,129.907455,127.246307,128.039688,132.312424,131.238037,143.502502,160.667770,181.494217,194.750427,210.378525,212.709091,198.444641,177.361984,156.080994,144.601654,142.833084,137.345474,105.229774,87.362007,101.262833,113.766968,81.965309,38.370266,15.648780,12.485970,12.141338,8.911588,11.156215,10.981007,5.043811,0.927275,0.138843,0.372728,0.013223,0.000000,0.000000,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601824.555000,4612085.550000,5412,6505,128.072739,177.494232,171.469421,159.378525,143.229752,131.642990,133.899185,130.370270,130.122330,137.717361,133.965302,147.246292,164.783478,183.609924,200.205002,215.023163,216.155396,200.866135,180.866119,160.196701,149.130585,147.080994,141.709091,110.262825,91.031418,106.138855,117.171913,83.403320,38.461174,17.067789,12.882663,12.583486,8.869440,9.587620,11.838860,6.195052,1.573556,0.221488,0.190910,0.028099,0.000000,0.000000,0.300001,0.677687,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601836.155000,4612085.550000,5470,6505,88.787621,149.957855,149.528107,137.875214,125.974388,116.602493,117.354553,116.230591,117.313232,121.106621,124.726456,136.627289,156.395874,174.536362,189.114883,203.635544,208.007462,198.528107,176.073563,155.280167,144.817352,142.181000,137.718185,108.643814,89.800842,104.313232,115.445465,83.635559,40.040512,15.766960,12.519853,9.899189,11.070265,11.972744,12.143818,7.202489,1.056203,0.356200,0.232233,0.244629,0.018182,0.481818,0.353720,0.580167,1.453719,0.000000,0.000000,0.000000,0.000000,2.137190 -601848.555000,4612085.550000,5532,6505,105.328117,141.944641,146.159515,134.787613,120.721504,113.374397,113.663651,113.126457,114.795883,117.928116,120.704971,134.498367,152.895050,171.407440,186.754547,201.200836,206.134720,196.820663,175.200836,154.465302,145.853729,143.696701,139.390915,109.853737,90.093414,106.076874,117.531418,86.407463,41.539688,15.441339,12.671920,11.393403,11.919025,12.782660,14.530597,9.728937,1.925625,0.642151,0.159506,0.420663,0.104959,0.119835,0.315703,0.588431,6.614876,0.000000,0.000000,0.000000,0.000000,0.000000 -601858.555000,4612085.550000,5582,6505,105.624809,134.087601,130.980179,120.550423,105.971916,99.856209,100.847946,98.641335,101.649597,106.525635,110.897537,124.666130,144.707458,164.319016,183.153732,199.872742,208.682663,207.600006,194.153732,180.343811,173.905792,175.145462,174.781830,145.517380,122.087616,146.054565,171.178528,137.385132,69.409927,20.160347,15.889276,17.798365,20.204151,26.062004,37.459526,29.266136,5.050421,0.490083,0.552894,0.038843,0.025620,0.080992,0.023967,0.036364,6.614876,2.758678,5.215703,0.000000,1.677686,3.967769 -601864.955000,4612085.550000,5614,6505,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.063639,17.406624,33.908276,53.861172,57.585960,87.124809,114.604149,128.233078,143.509125,161.735550,151.038864,144.452911,167.810760,97.661987,125.420677,150.766953,186.604965,231.743835,223.392578 -601027.955000,4612075.550000,1429,6555,188.076065,198.823151,196.608276,192.806625,185.484314,186.823151,191.459518,192.649597,194.806625,201.376877,209.525635,220.104141,234.872742,248.583481,261.376862,270.029755,270.881012,261.376862,227.509109,200.831421,190.244644,185.757034,177.145462,147.690918,129.765305,135.856216,136.104141,98.178528,43.533905,17.511587,16.104151,18.882664,13.571918,17.292578,19.087622,14.182662,4.563644,1.194219,2.014054,1.392565,1.525623,1.366946,1.250414,0.571901,8.001654,8.085952,2.852893,3.590083,3.347934,0.000000 -601031.555000,4612075.550000,1447,6555,174.364471,198.414062,201.281830,198.331421,190.455383,191.719849,197.918198,198.587616,203.066956,209.695053,215.835556,229.009109,243.670258,261.215729,275.637238,287.430634,290.108307,280.852112,246.364471,218.719849,207.042160,202.058685,195.100006,161.628937,141.785965,149.455383,155.414062,111.810745,51.430592,20.438034,17.736383,18.213242,17.942995,19.385971,22.769440,13.605801,5.089265,2.330583,2.348764,1.328929,1.073556,1.604134,1.394215,1.176033,6.306612,6.166943,3.172728,0.000000,0.000000,3.996695 -601036.555000,4612075.550000,1472,6555,173.274368,199.547104,200.406601,193.844620,188.530579,188.051239,193.563629,195.530579,198.249573,203.530579,210.819824,223.431396,240.885941,258.414856,272.985138,286.778534,291.819855,286.795074,255.125610,228.596695,215.621475,212.092560,205.472717,169.042984,144.117371,156.902496,174.158676,133.497543,60.811596,20.809109,18.679359,17.362827,17.760349,21.070267,27.158695,17.378529,3.534716,0.775210,1.137192,0.552895,0.552067,0.628101,0.404959,0.420661,3.596694,1.247934,0.000000,2.770248,2.152893,6.112397 -601043.355000,4612075.550000,1506,6555,186.236389,197.385132,200.442993,198.385132,191.038025,192.426453,196.583481,200.732239,203.434723,209.806625,216.723984,231.442993,251.112411,266.938843,284.707458,298.748779,303.872742,300.112396,267.922333,239.790100,227.492569,222.500839,216.509109,176.542160,154.525635,166.525635,183.170258,140.707458,65.137215,23.409935,19.682663,17.809109,17.644648,21.723988,27.310762,17.965305,4.084306,1.784302,0.297522,1.485955,0.271075,0.565290,0.942976,0.218183,2.489256,1.076033,1.974380,3.668596,2.265290,3.948761 -601052.755000,4612075.550000,1553,6555,177.629776,192.761993,197.051254,192.481003,187.398361,185.770264,191.952072,193.861160,196.795044,201.638031,209.795044,222.505798,240.100845,257.299194,273.927307,287.332245,293.621521,291.307465,264.480988,239.233078,227.629776,222.836380,218.745468,182.505798,157.142181,171.224808,190.919022,150.472748,72.910751,24.279358,19.885971,15.896712,19.042168,25.768616,31.092579,21.545473,3.285957,0.651243,0.385952,0.442151,0.209091,0.372728,0.000000,0.116529,4.371902,5.533885,2.110744,0.000000,0.000000,2.049587 -601065.155000,4612075.550000,1615,6555,183.529770,196.339661,200.240494,196.240494,188.852066,188.984299,194.595871,195.901657,197.934708,204.794205,210.645447,223.554535,240.471893,257.554565,271.430603,282.538055,287.438873,285.744659,258.571075,234.380981,225.124786,219.447098,213.736359,182.364456,163.339676,170.976044,179.496689,140.554565,66.918205,21.901672,19.430597,14.495884,19.568613,23.749605,27.265308,17.668612,2.934717,0.657028,1.251243,0.554549,0.280166,0.655373,0.000000,0.018182,1.162810,1.115703,1.929752,2.780165,0.000000,0.000000 -601074.755000,4612075.550000,1663,6555,181.478531,201.561142,196.230591,192.420685,187.371078,187.495056,193.131424,195.676880,197.329773,204.470261,212.023956,225.197510,243.412384,260.222321,275.784302,286.139679,290.081879,288.462006,261.280182,235.461975,224.569412,220.999161,216.627258,184.569412,161.693390,171.751221,187.098328,151.123154,73.114899,24.139688,19.693407,16.390100,18.934732,25.669441,35.182663,21.536381,4.642156,0.804136,0.506613,0.103307,0.552067,0.245455,0.021488,0.071075,2.393389,4.785951,3.828926,2.668595,1.154546,1.933884 -601082.755000,4612075.550000,1703,6555,196.042160,201.529770,198.876877,196.678528,191.604141,192.686783,196.967789,201.554535,202.752884,210.653717,217.587601,231.265289,247.736359,263.281830,277.876862,286.670258,289.232239,285.728119,257.959503,234.546280,224.257019,221.083466,211.645447,184.232239,164.827286,172.628937,181.339676,143.868607,70.604156,21.957869,19.240517,15.991754,19.682663,25.658695,33.909939,24.614893,4.954554,1.868599,0.625622,0.592562,0.609918,0.535539,0.266942,0.966942,3.471075,4.643802,2.964463,3.609092,6.795869,4.181818 -601089.355000,4612075.550000,1736,6555,221.121475,224.757843,192.427277,192.220673,178.749603,174.923141,181.633896,183.278519,185.146286,198.138031,196.683487,212.121475,226.865280,244.857025,260.030579,273.666962,273.683502,265.187622,246.617371,229.146271,220.650406,217.675201,210.609085,184.452072,169.981018,181.319839,188.204147,153.666962,83.204147,25.303326,19.146301,30.862829,26.273575,39.700016,53.840519,44.838036,5.028936,1.189258,0.343803,0.526448,0.001653,0.782646,0.247108,0.147108,7.540496,5.879340,1.167769,3.193389,3.763637,2.072727 -601094.755000,4612075.550000,1763,6555,195.905792,197.409927,171.988434,169.252899,158.104126,154.277695,160.525620,159.814880,162.649582,173.112411,174.327286,190.120667,205.723984,223.963654,238.211578,252.038025,254.095886,246.641342,231.856216,217.996704,210.079346,206.914062,200.509109,175.302490,160.401657,169.963638,185.765305,155.021500,85.732254,22.362829,18.228119,26.575226,24.629772,38.938866,57.583492,49.839691,5.640505,0.312398,0.007438,0.042149,0.000000,0.000000,0.055372,0.436364,10.657027,2.452066,2.944628,0.663637,4.878513,1.916529 -601099.155000,4612075.550000,1785,6555,183.662003,174.335556,151.276031,148.136368,138.931396,133.419006,139.683472,139.691727,140.443802,150.509918,152.113220,164.559509,181.815735,197.022339,208.971085,218.904984,222.161194,214.301666,199.161179,184.914902,176.460358,172.625641,166.154572,142.799164,128.592575,137.493378,156.201660,133.318192,72.938034,19.071089,15.104977,26.190926,23.732252,39.929771,53.756218,47.574402,8.813234,1.740499,1.676861,1.260332,1.683472,2.545456,3.988433,1.739671,15.559505,17.430582,5.814877,4.302481,4.923968,4.442149 -601102.755000,4612075.550000,1803,6555,60.090092,58.172737,44.251247,41.314056,36.580170,33.788437,33.978516,33.581825,33.659508,36.193390,35.403313,41.266121,46.480999,52.132240,56.545464,60.637196,61.069427,59.176868,55.614056,50.380173,47.530579,45.927277,43.745461,35.246288,29.783478,35.210747,49.441330,45.986790,25.435545,4.110750,3.976867,18.971090,18.012411,32.451256,50.766956,46.539684,35.426460,37.807449,45.509106,46.401661,50.503319,40.433064,49.681828,52.925629,50.964470,20.211575,29.672733,55.820667,50.416531,51.971081 -601199.955000,4612075.550000,2289,6555,190.237213,197.146301,196.865311,190.840515,185.377716,185.592590,187.460358,188.319855,190.972748,196.956223,205.997543,224.410767,248.658707,266.700012,279.105011,290.014099,290.956238,282.476929,250.815735,225.567795,213.303329,208.410767,195.518204,163.146301,141.253738,154.295074,165.485153,124.138031,59.047127,20.733078,17.774401,17.808283,17.281837,20.485970,26.278532,21.532249,7.428936,2.765295,2.196699,2.101657,0.866118,2.270250,1.682647,0.800829,5.063637,7.509918,5.192563,1.204959,4.915703,2.250413 -601463.355000,4612075.550000,3606,6555,81.000847,119.267792,106.962006,94.127289,76.209938,63.714069,61.755390,54.862831,49.829773,50.069435,47.036385,55.044647,64.581841,75.838036,86.829781,101.259521,105.400024,102.408287,95.614906,84.499199,74.408287,72.796715,71.127289,39.160351,24.566959,50.300842,100.466133,104.061180,56.209934,9.261172,6.466135,12.290925,14.247125,26.120680,38.656219,28.486794,0.995045,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.934711,0.000000,0.542975,0.208265,0.000000,0.000000 -601469.955000,4612075.550000,3639,6555,208.041351,231.082672,209.157043,200.000015,185.595062,177.595062,180.413239,179.595062,179.123978,185.743820,186.495880,199.776871,213.016541,230.066132,241.123978,251.702499,255.611603,251.281021,229.041336,209.801666,201.694229,198.041336,193.272751,166.983505,150.487640,159.611603,170.975235,133.314056,64.000015,20.258698,17.570269,19.719027,19.275227,24.975225,32.148777,24.465307,4.761165,2.065294,1.680996,0.731407,0.972728,0.523141,2.966948,4.595874,8.149588,6.557025,4.971075,2.711571,1.276033,0.000000 -601593.155000,4612075.550000,4255,6555,29.597536,66.582664,57.623985,44.574402,27.347954,16.338034,10.902494,6.413235,4.442159,3.260339,2.767776,5.619020,14.135553,23.028944,33.434731,45.318203,51.260349,49.938038,49.119854,39.023159,28.899193,27.984316,30.209110,3.671082,0.001653,9.367783,82.136383,101.847115,60.830597,7.434724,2.746300,10.238030,16.027288,35.185970,56.004154,48.384319,3.285957,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.661157,0.000000,0.000000,0.465289,0.588430,0.000000 -601599.755000,4612075.550000,4288,6555,41.821503,83.353737,82.651253,68.304146,52.411591,37.356216,33.899193,29.009109,25.662004,24.232252,22.749605,30.133080,43.287621,54.254562,62.833076,74.973572,77.981834,77.337204,72.890923,62.064480,52.758698,51.725639,51.800018,19.414894,4.931415,30.213243,98.171913,112.783485,64.684319,7.580179,4.709110,10.711584,12.920677,34.271091,51.287621,42.114067,1.861988,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.835537,0.000000,0.000000,0.000000,0.000000,0.000000 -601607.155000,4612075.550000,4325,6555,72.568611,109.166954,107.704140,94.423149,77.778534,68.803322,64.406631,58.621506,56.563656,54.695885,53.919025,61.753738,75.447952,86.398354,96.555382,106.770256,110.200012,106.249596,102.522324,88.282654,80.638031,79.786789,78.018196,50.803322,29.613243,56.456215,115.034721,115.142159,68.489273,9.829765,7.092582,11.750428,14.059521,30.547127,46.580185,33.753738,1.208267,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601612.755000,4612075.550000,4353,6555,53.072735,124.021492,115.947113,104.442978,87.434731,76.806633,75.219856,70.294235,68.451263,68.319031,67.633072,77.170265,91.732254,103.790085,112.847939,124.715706,127.897522,124.633072,119.467773,107.071075,98.732254,98.352081,97.781830,66.558693,47.459522,74.252914,129.261169,125.071091,69.277710,12.985142,8.889277,13.938033,14.621503,29.378531,43.385139,31.309935,0.625622,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.611571,0.000000,0.000000,0.000000,0.000000,0.000000 -601619.355000,4612075.550000,4386,6555,92.575218,145.490112,137.795883,124.134727,108.828941,97.465302,97.663651,94.126457,93.481842,96.473572,94.862000,106.101669,123.820679,137.019028,149.233902,160.498367,164.316528,159.333069,149.754562,135.961166,125.969437,125.481834,125.481834,91.647133,70.614075,96.514893,145.886795,132.316544,73.209114,15.986796,11.407457,14.057866,15.241340,24.366959,37.969440,30.017376,0.652068,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.395869,1.105785,0.000000 -601622.955000,4612075.550000,4404,6555,107.745476,166.439682,162.299179,149.447937,135.067780,122.208282,124.604973,121.828117,122.059525,125.332253,126.076050,140.679352,162.150421,179.852905,193.505798,208.795044,213.001663,206.241333,191.869431,172.563644,160.390091,159.778519,156.472733,120.183487,98.274399,121.332253,156.778519,127.009933,64.307457,20.305803,14.224813,16.047949,14.140514,19.754562,26.408281,17.074396,0.852070,0.010744,0.041323,0.026446,0.000000,0.231405,0.000000,0.013223,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601628.955000,4612075.550000,4434,6555,106.663651,177.481842,165.374420,152.622360,136.019028,126.498352,127.465294,125.820671,127.514885,131.597534,132.176041,147.349609,167.738037,188.423996,204.341354,220.572754,228.423996,219.366135,203.779373,186.308289,175.366135,175.440521,172.481842,133.754562,109.060333,133.539688,171.010788,136.845474,66.622330,20.328119,15.680183,16.271919,14.496711,19.455391,25.011589,15.143819,1.405789,0.102480,0.000000,0.097521,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.155000,4612075.550000,4460,6555,134.837189,181.093399,167.820663,156.473557,140.019012,129.473557,130.622314,131.300003,130.539673,136.217361,136.465302,150.159515,170.382645,190.514877,206.547943,221.142975,224.448761,215.159515,197.804138,177.258682,166.738022,165.762817,161.209091,123.853729,102.159508,125.432236,152.448761,116.324799,58.630596,18.355391,14.655391,14.563652,12.087619,17.039688,18.202496,10.147122,1.183474,0.458679,0.474381,0.000000,0.000000,0.000000,0.000000,0.053719,4.593389,0.000000,0.000000,0.000000,0.000000,0.000000 -601639.555000,4612075.550000,4487,6555,151.604965,176.547119,169.431412,160.018188,141.638031,130.894226,129.960342,131.638031,132.034729,136.993393,137.604965,152.092575,171.910751,192.861160,207.927277,223.348770,228.481003,217.282654,200.307449,180.530594,169.431412,167.943817,164.745468,127.125641,104.935555,127.836372,153.133896,118.530594,56.447956,19.540516,14.976878,19.085142,13.425637,17.991756,20.104153,12.779355,0.698350,0.294216,0.044629,0.000000,0.000000,0.000000,0.109091,0.078513,0.000000,0.000000,0.000000,0.000000,5.494215,0.000000 -601647.555000,4612075.550000,4527,6555,124.664482,191.135544,174.961990,162.978516,145.664459,134.036362,134.110748,134.333893,135.358688,141.573563,139.970245,153.912399,173.300827,193.862808,210.433060,227.135544,229.209915,218.548767,199.895874,178.523972,168.391739,166.532242,163.854553,126.160332,105.647942,127.259506,145.110748,110.201668,55.474403,18.338863,14.895886,16.854561,11.522328,15.025636,19.390928,9.989270,1.070251,0.123967,0.049588,0.097521,0.046281,0.310744,0.000000,0.356199,0.000000,0.000000,0.000000,1.079339,1.315703,0.000000 -601655.555000,4612075.550000,4567,6555,131.018188,191.332260,177.654572,166.216537,147.753738,135.563644,137.142181,135.919022,137.084320,145.381851,142.299194,156.216553,174.646301,194.175232,211.728943,228.530594,230.200012,218.133896,200.795074,178.257874,167.728943,164.861160,161.109100,123.679359,103.861176,125.150429,140.481018,103.257866,50.985142,20.266136,14.646299,16.667788,12.182662,13.573571,15.500843,10.655389,1.302484,0.635539,0.522316,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.355000,4612075.550000,4581,6555,139.765305,199.451233,177.178513,167.566940,148.542160,136.517380,135.798370,136.004974,137.087616,145.195053,141.021500,153.980179,172.682648,193.509094,210.104126,227.120651,230.054535,216.690903,197.434708,176.682648,165.021484,163.079330,158.418182,121.790092,103.038033,123.707451,138.690918,100.327286,50.112415,19.600849,14.401671,16.785143,11.580180,13.193406,16.352083,10.223980,1.147111,0.176033,0.004132,0.000000,0.000000,0.000000,0.322315,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601663.155000,4612075.550000,4605,6555,110.557045,167.631424,169.953735,154.780182,139.879364,131.523987,132.515717,130.937210,132.391754,133.895889,136.755386,149.532257,167.581833,185.755386,200.705811,215.656219,220.581833,211.143814,189.796707,167.061172,155.771927,153.416550,149.127289,115.962006,95.705803,113.044647,129.284317,96.003326,47.276051,19.081011,13.557044,12.966133,9.886793,12.766131,14.033901,8.165302,1.234715,0.238018,0.142150,0.023967,0.009091,0.000000,0.000000,0.178513,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601671.155000,4612075.550000,4645,6555,101.575218,159.211578,167.872742,154.980179,140.128937,131.178513,131.368607,129.823151,130.442978,132.087601,135.203308,148.385132,167.352081,184.732239,199.004974,214.104141,218.889267,209.071091,185.525635,164.195053,153.649597,149.930588,145.600006,113.451256,94.385132,109.889267,126.038025,93.633064,45.236385,17.355391,13.236382,10.650429,10.170265,11.536379,11.457043,6.933896,0.842978,0.245456,0.300828,0.000000,0.015703,0.000000,0.005785,0.073554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601684.355000,4612075.550000,4711,6555,96.730598,163.763641,167.143799,155.606613,140.647934,132.523972,132.474380,129.912399,131.259506,133.565292,136.358688,148.714050,167.548767,185.689255,200.143799,216.168594,219.656204,210.085953,186.201660,165.061157,154.119019,150.532242,145.490906,113.433067,93.945457,110.961998,124.862816,93.433060,46.234734,16.509935,13.226464,10.339685,10.560346,11.940512,12.487619,6.131413,1.181821,0.098348,0.087604,0.094215,0.038017,0.000000,0.060331,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601701.355000,4612075.550000,4796,6555,108.924812,160.933075,166.462006,154.966141,141.387619,132.172745,131.462006,129.585968,130.090103,132.999191,135.949600,147.784317,166.544647,185.288437,200.247116,213.990906,218.338013,209.123138,186.858688,163.718201,152.205811,148.759521,144.081833,111.172745,91.255394,109.321510,123.676880,91.776054,44.990929,17.160351,13.098366,8.981007,10.082661,11.469438,13.406630,5.366124,1.237193,0.414878,0.229753,0.013223,0.442149,0.208265,0.077686,0.092562,0.000000,0.000000,0.000000,0.000000,1.235537,0.000000 -601721.755000,4612075.550000,4898,6555,109.009933,166.423172,167.728958,154.629776,139.745483,132.224808,130.365311,130.671097,129.671097,132.885971,135.960358,147.662842,166.753738,186.100830,199.629761,213.960342,218.150421,208.191742,185.712402,163.357056,150.613251,147.836395,141.836395,110.803322,91.803322,107.795059,123.481010,90.943817,44.067787,15.877705,12.894235,7.958693,9.998363,9.851255,12.833901,5.362817,1.550417,0.016529,0.214877,0.002479,0.015703,0.000000,0.042149,0.214876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.155000,4612075.550000,4980,6555,105.750427,164.345474,165.238037,156.923981,141.419861,131.568604,131.857864,129.973572,130.758698,133.444641,136.047958,147.857880,166.105804,184.874405,200.039688,214.568604,218.535538,208.213226,184.601669,162.684326,150.973572,146.849609,141.618210,110.841331,92.543816,107.180168,120.180183,89.461174,42.560349,15.653736,12.874399,6.084311,9.526462,9.387620,11.384313,4.661164,0.242150,0.168596,0.090083,0.000000,0.210744,0.000000,0.089257,0.123967,0.000000,1.486777,0.000000,0.000000,0.000000,0.000000 -601744.555000,4612075.550000,5012,6555,108.133904,165.704163,168.084305,155.778534,140.993408,131.274399,129.968597,129.431412,128.216553,133.150421,134.183472,146.257874,165.646301,183.828110,199.390091,213.447937,217.704147,208.100830,184.290924,161.125641,149.662842,146.679367,141.200027,109.687622,89.365311,105.836380,119.365311,89.018196,43.472744,15.295059,12.836381,6.233070,8.752909,10.681009,9.021502,3.513229,0.654548,0.206612,0.084298,0.000000,0.025620,0.030579,0.121488,0.342150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601749.755000,4612075.550000,5038,6555,116.022331,175.592590,169.799194,158.972748,142.906631,133.212418,133.022339,131.195892,130.708282,135.452087,136.914902,148.807465,167.443832,186.385971,200.914902,215.708298,218.947952,209.890106,185.757874,163.220688,152.014069,148.146301,142.154572,111.030594,91.005806,106.881836,122.328117,90.419029,43.840515,17.966135,12.923161,8.957867,11.938035,11.228116,12.228941,6.320671,0.771077,0.036365,0.445456,0.159504,0.090910,0.000000,0.147934,0.009091,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601756.955000,4612075.550000,5074,6555,101.055389,168.361145,167.509918,157.468582,143.848770,130.675232,132.435562,130.427292,130.683487,135.435547,135.485138,147.914871,165.724792,185.691727,200.336365,214.980988,219.278503,208.261978,184.898346,162.187592,150.468582,146.823975,142.336380,110.121506,90.468613,107.253738,119.551254,88.981010,42.749603,18.038036,12.939690,7.636377,10.826464,10.712415,11.063652,4.495049,1.227276,0.481820,0.233885,0.160331,0.116529,0.000000,0.093389,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601768.155000,4612075.550000,5130,6555,106.284325,162.408279,167.631424,154.036377,139.276047,129.829773,131.424820,128.127289,127.598366,130.614899,132.052917,143.647949,162.028122,179.449600,193.904144,207.672729,210.656204,199.209930,176.449600,155.614899,143.639694,141.408279,135.854568,105.102501,87.383492,101.532249,114.119026,83.598366,39.928944,15.994233,12.350432,9.992577,11.291753,11.466132,12.333075,6.128934,1.028928,0.081818,0.078513,0.129752,0.176860,0.000000,0.052067,0.576034,4.628099,0.000000,1.879339,0.000000,0.000000,0.000000 -601783.755000,4612075.550000,5208,6555,108.204147,164.402512,166.468628,152.642181,139.005814,127.435555,127.947952,125.790924,125.708282,129.162827,128.749603,142.179367,161.741348,179.195892,194.038864,208.005814,210.782669,199.030609,175.220688,154.262009,143.658707,142.328125,133.609100,104.989273,86.782661,99.906631,113.923157,81.774399,38.526463,15.849606,12.146300,10.799190,10.524810,10.258694,11.639685,5.922324,0.316530,0.504960,0.305786,0.000000,0.000827,0.000000,0.321488,0.205785,0.000000,0.000000,0.000000,3.558678,0.000000,0.000000 -601799.555000,4612075.550000,5287,6555,112.889267,179.302490,166.732239,156.079346,140.492569,128.013229,129.748779,127.046295,127.624809,132.657867,131.699188,144.500839,162.476044,182.087616,195.963654,212.038025,213.674393,201.484314,178.550430,157.228119,146.649597,144.781830,137.236374,106.757034,88.608276,103.624809,114.914062,85.550423,39.004978,17.315720,12.476052,11.984313,9.776050,10.940513,13.785968,6.790920,0.496695,0.059504,0.304959,0.018182,0.097521,0.000000,0.000000,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,2.246281 -601808.955000,4612075.550000,5334,6555,114.495064,185.924789,171.280167,157.784302,143.602493,130.387619,131.767776,129.214066,129.933075,135.676865,133.528107,145.412415,163.974380,182.949585,199.643799,213.784302,216.544632,201.759506,180.528107,159.263657,148.825638,145.338043,140.263657,108.602493,90.346298,106.412407,117.916542,83.718201,41.387623,17.487621,12.751260,15.038860,9.622332,11.430596,13.735555,6.249597,1.146283,0.257852,0.272728,0.066942,0.037191,0.000000,0.413224,0.119008,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601819.355000,4612075.550000,5386,6555,133.361160,189.518188,172.435547,161.286789,143.774384,132.807449,132.939682,132.848770,132.757858,140.972733,136.658691,149.385956,167.799179,187.427277,203.815720,219.443817,219.766129,205.509933,184.237198,162.972733,152.518188,150.278519,145.427277,112.716537,94.542984,110.509926,116.534721,81.295052,38.757874,17.366137,13.220680,14.457869,11.490927,11.282661,11.719851,6.634722,0.952894,0.168596,0.076860,0.019835,0.001653,0.000000,0.207438,0.033885,0.000000,0.000000,0.000000,1.264463,0.000000,0.000000 -601834.755000,4612075.550000,5463,6555,96.864479,140.385956,147.204147,133.468597,122.609100,113.419022,114.559517,113.361168,115.245461,118.319847,122.121498,135.129761,155.501663,173.501663,188.782654,203.526459,208.063644,199.228943,176.476868,155.617371,146.559509,144.526459,139.154556,108.716537,89.683479,105.823975,117.923149,87.534721,41.410767,14.518199,12.650432,9.871914,12.280182,12.932249,12.872744,7.267779,0.673557,0.100001,0.194216,0.169422,0.236364,0.247934,0.171076,0.338844,4.303306,0.000000,1.192562,0.000000,2.397521,3.107438 -601848.955000,4612075.550000,5534,6555,98.117371,143.216522,142.935532,132.315720,118.472748,110.282661,109.530594,108.819855,111.059525,114.885971,118.274399,131.001663,150.745453,168.894211,184.034698,199.266113,203.885941,196.571899,174.704147,155.150406,146.299164,145.307434,141.654541,110.505806,89.737206,108.737206,121.935555,89.952087,42.604984,16.063654,12.877705,11.863651,12.809935,13.360348,15.524811,10.180178,1.441328,0.274383,0.806614,0.381820,0.181819,0.581819,0.075207,0.326448,3.528099,3.927273,4.532232,1.060331,1.747934,0.000000 -601856.155000,4612075.550000,5570,6555,87.223976,105.309937,103.235550,91.946297,78.749603,71.190926,71.954559,72.417374,73.070267,78.450432,83.648773,98.500015,117.615715,138.351273,157.045456,177.285126,189.293396,190.466949,182.004135,169.574387,165.863632,169.260330,170.227280,138.326477,115.276878,143.971100,179.971069,151.946274,79.739685,18.557043,15.475225,19.659523,22.123985,35.574398,50.483486,40.793404,4.240503,0.387604,0.376034,0.049587,0.123967,0.166116,0.405786,0.167769,1.280992,11.330580,8.006612,3.291736,1.950413,2.852893 -601015.755000,4612065.550000,1368,6605,210.304138,206.758682,196.932236,193.783478,189.510757,191.725632,198.717361,203.097534,206.882645,218.188431,227.659515,239.618195,255.527283,272.866119,285.957031,297.105804,298.824799,284.147125,240.576859,209.080994,197.882645,190.585129,180.254547,149.775208,132.651260,133.362000,125.907455,86.163651,36.188454,18.047953,16.386797,17.071091,14.937207,16.101671,15.926462,11.088445,5.395051,4.114058,3.768600,2.876038,2.880170,3.209096,1.254546,2.071902,8.357025,4.678513,7.220662,8.593389,4.728100,6.337191 -601019.555000,4612065.550000,1387,6605,206.466125,210.143799,199.515701,195.656204,192.788437,193.945465,201.259506,205.441330,209.689255,220.681000,230.292572,242.681000,259.730591,279.317352,294.540497,307.457825,311.143799,294.738831,247.986786,214.003311,201.714050,194.036362,184.309097,149.986786,129.747116,134.937195,133.309097,91.069443,38.168617,18.666960,16.755392,12.456215,16.260349,15.800845,16.097538,10.861171,6.025630,4.295050,3.385129,1.723145,2.501656,2.516532,2.817356,0.908266,5.385951,6.346282,4.226447,11.915704,3.743802,4.257852 -601024.955000,4612065.550000,1414,6605,197.093399,206.399185,205.258682,200.382645,196.010757,198.324799,204.423981,207.696701,210.886780,220.060333,228.374390,242.052078,261.614044,280.680176,295.043854,309.721527,313.176086,304.010773,261.671906,229.060333,214.911575,208.754547,201.663635,160.870255,137.035538,147.853729,158.680176,113.002495,50.159523,21.876051,18.333076,17.857870,16.176052,19.840513,22.385967,13.611585,5.238025,3.500008,1.719011,2.200831,0.538843,3.337193,0.376034,0.294216,0.000000,2.473554,7.661984,3.090909,6.965291,5.907438 -601032.955000,4612065.550000,1454,6605,199.590103,209.218185,207.416550,205.052902,198.813248,200.251266,208.565292,211.433060,216.912399,224.490906,233.780167,249.433060,269.416534,290.127289,307.912415,323.160339,328.730591,321.920685,283.796722,252.176865,238.226456,233.829758,225.218185,182.920670,156.466125,169.110748,181.358688,135.953735,60.590103,24.780184,20.474400,21.128115,20.217375,23.909109,29.187620,17.925636,6.215713,2.806618,1.291739,2.185128,0.635539,2.223969,0.755373,0.966118,7.495042,6.946281,2.344628,1.026446,1.123967,7.891736 -601042.955000,4612065.550000,1504,6605,183.709091,195.320663,195.990082,192.560333,186.097534,186.411575,191.229752,193.899185,197.800003,205.337204,212.791748,227.709091,246.866119,265.899170,283.857849,297.899170,304.221497,303.824799,275.957031,249.882645,239.213226,234.353729,228.163635,191.072739,166.882645,181.370255,198.304138,159.254547,76.461189,24.568613,20.742167,19.240515,20.214893,27.854563,34.411594,24.421505,4.733894,1.097524,0.586778,0.387605,0.465290,0.411572,0.252893,0.000000,5.680993,2.131405,4.618182,4.421488,4.196695,1.975207 -601052.355000,4612065.550000,1551,6605,156.257858,181.967758,182.744629,180.232224,173.405777,171.223969,174.810745,176.719833,177.976028,182.323135,188.471893,200.281815,215.496689,231.182648,244.339661,254.909927,258.678528,257.356201,235.372726,214.719833,206.356201,202.843796,197.827271,168.653717,148.265305,160.000824,177.058670,144.298355,73.091751,22.024813,17.984318,16.333902,19.202497,26.419855,37.678532,26.957045,2.582651,0.290911,0.308266,0.042149,0.108265,0.285125,0.286777,0.000000,6.100828,3.152893,3.403306,4.607439,2.910744,3.950413 -601058.555000,4612065.550000,1582,6605,69.771088,80.081009,81.240517,73.703316,64.000847,62.959526,62.918201,60.472744,59.667786,63.363655,67.975220,78.364487,92.042175,103.232254,114.819023,124.116539,127.455383,128.083481,119.769432,110.595886,104.736382,103.273575,98.736382,82.108284,68.671089,83.009109,109.984322,106.835556,59.992584,12.042165,8.976053,8.682656,21.430595,39.017376,54.719856,43.458698,5.796702,0.278513,0.000000,0.000000,0.000000,0.000000,0.305785,0.000000,1.594216,1.887604,0.090083,0.021488,0.504959,1.056198 -601063.355000,4612065.550000,1606,6605,45.908276,44.464478,45.220680,41.340511,32.095882,29.904970,30.806625,29.700842,29.548771,32.204147,36.095058,47.194229,63.367786,77.185974,89.012421,97.916550,102.081833,102.222336,94.635559,84.817375,77.997536,75.297546,71.481834,52.800014,38.658691,55.509933,97.090103,106.346291,60.652081,10.002492,6.498366,8.940509,19.898365,39.709938,62.577702,46.036381,4.377695,0.063637,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,1.271902,0.100827,0.609918,0.000000,0.772728,3.451241 -601067.155000,4612065.550000,1625,6605,7.821491,12.041329,10.035543,9.771906,6.560335,5.244632,5.210747,4.653722,4.590086,5.498351,6.137194,8.323145,12.638849,16.828932,21.130585,24.225626,25.170258,26.009100,23.153727,19.900833,17.636372,16.415709,15.027279,10.614882,6.480169,10.326452,28.789265,41.535553,21.699186,3.155377,1.366122,3.550420,15.971917,30.827290,48.825634,37.265305,11.829762,5.502484,5.300004,4.947937,2.676861,1.845456,2.154546,0.208265,3.361158,3.464464,1.400827,1.067769,0.548760,1.813224 -601194.355000,4612065.550000,2261,6605,170.457855,197.532242,198.201660,192.441330,185.234711,184.821487,188.185120,190.862808,193.871078,201.143799,209.730576,230.358688,255.813232,274.276093,288.143860,299.912445,301.557068,293.003357,263.383484,234.838013,223.730576,216.664459,204.854553,171.094223,148.400009,160.838013,173.722321,130.573578,61.862835,22.218201,18.623159,18.781012,18.338036,20.922335,26.557045,22.323160,5.167777,2.190087,2.554551,1.513226,1.489259,0.385951,1.361159,1.876037,4.065289,4.009091,2.179339,4.178513,5.267769,0.000000 -601457.955000,4612065.550000,3579,6605,91.906631,124.856209,108.062820,96.897537,82.872742,70.682655,70.773567,66.459526,64.053741,65.045471,65.090103,75.734734,87.814888,100.633072,114.798363,129.170258,134.285965,129.988449,125.228111,113.773567,104.079353,105.145470,101.781830,72.177704,55.357044,78.809113,126.525635,122.666130,68.674393,12.246298,9.252912,19.645472,19.090929,35.864479,54.781837,41.765305,2.185955,0.224794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.732231,2.041323,0.508265,0.000000,0.355372,0.000000 -601461.555000,4612065.550000,3597,6605,116.709938,148.117371,130.249603,119.323975,102.001663,89.885963,85.704140,79.398361,76.001671,76.183487,73.076042,79.869431,87.514061,97.299187,105.803314,117.910751,119.447945,116.919022,110.456207,100.869431,93.447945,92.530586,89.654556,64.315720,51.100849,72.481003,105.398354,101.604965,54.522335,11.172743,8.150432,13.688445,14.579356,26.304977,38.043819,29.890102,1.724797,0.171075,0.155372,0.000000,0.000000,0.000000,0.198347,0.000000,0.000000,2.360331,0.000000,0.000000,1.904959,0.000000 -601467.555000,4612065.550000,3627,6605,217.008286,203.735550,181.165329,169.834747,156.958710,146.115723,146.413254,144.479370,141.520676,148.884323,149.388458,159.942184,173.454575,189.991745,201.512405,215.876053,222.231415,221.289276,206.487625,191.925629,184.446304,183.115723,180.636383,152.603333,137.008286,154.115738,175.338852,148.793427,80.264481,19.495886,16.421507,16.784315,21.505804,31.322332,46.595062,37.958694,4.357032,0.091736,0.053719,0.000000,0.000000,0.000000,0.022314,0.264464,1.543802,7.679339,0.000000,3.659505,2.742149,0.000000 -601592.355000,4612065.550000,4251,6605,42.365307,85.783493,76.890930,66.560349,48.213242,36.800018,32.097538,25.910761,23.890928,21.337208,19.837206,26.535555,39.940514,50.295887,59.262829,70.857872,75.990105,74.800026,71.279358,59.973572,51.717373,50.527290,50.345474,19.268614,4.604142,30.198362,95.750435,108.147133,66.246300,7.084312,4.576879,8.741335,16.119852,34.138863,54.791756,42.609936,0.719010,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.800000,0.780992,0.000000,0.565289,0.000000,1.521488 -601598.755000,4612065.550000,4283,6605,61.047947,102.097534,100.502495,87.031418,70.039680,57.031422,54.576878,49.188450,46.403324,46.130600,44.709106,51.791756,64.965302,76.147125,85.328941,96.568611,100.353737,98.866127,93.882660,82.180183,72.816544,72.965302,72.436378,42.568615,23.986795,50.874397,110.180183,114.618195,67.213242,8.972743,6.585143,10.909934,15.127290,32.520679,48.932251,38.123161,0.877689,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.175207,0.000000,2.419836,0.000000,0.000000,3.368595 -601603.355000,4612065.550000,4306,6605,59.812412,117.539680,113.060349,98.382660,82.142990,70.258698,68.399193,62.779358,60.192585,59.655392,58.581013,66.085144,79.052078,89.895058,99.366127,108.382660,113.060349,110.762825,105.390923,93.597534,83.738029,85.275223,84.481834,53.233906,34.622337,58.870266,116.531418,118.052078,66.961174,12.357869,7.680184,11.572742,15.061173,30.432249,46.432255,33.868614,0.551243,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601606.555000,4612065.550000,4322,6605,74.595055,122.057861,113.735542,101.347115,84.826462,73.363663,71.876060,66.446297,64.289276,64.628120,62.520687,71.793411,83.892578,95.247940,104.595047,114.966949,118.818192,117.297531,110.991745,98.752075,90.867783,90.735550,89.909103,59.512421,40.421509,65.115715,120.644638,118.710754,67.338860,12.522329,8.173573,13.129768,13.256214,30.123983,44.735554,35.074398,0.790912,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.719835,0.000000,0.000000,0.000000,0.000000,0.000000 -601613.955000,4612065.550000,4359,6605,70.428947,143.209106,135.754547,121.738029,105.870262,93.151260,93.134735,89.093414,88.423988,89.043823,87.523163,98.655396,112.729767,125.382660,135.647110,147.589279,150.126465,146.671921,138.300018,125.126457,114.423981,114.258690,114.481834,81.432251,61.696712,87.506638,136.647125,125.209106,68.812416,14.976878,10.407457,14.507454,14.315719,25.804152,38.944645,30.519028,1.204134,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.848761,0.000000,0.000000 -601616.955000,4612065.550000,4374,6605,86.641327,146.262009,139.592590,125.609093,110.220673,97.898354,97.914886,94.823975,93.658699,96.716537,93.931419,105.642159,121.138023,133.220673,144.923172,156.154572,159.617386,154.790939,146.923172,132.526443,123.410751,123.278519,121.609100,89.633904,70.402496,94.584312,143.195892,131.749588,71.914894,17.421505,11.055390,15.158694,14.975223,28.805805,39.981010,29.088449,1.326451,0.158678,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.461984,0.000000,0.000000,0.000000,0.000000,0.000000 -601621.755000,4612065.550000,4398,6605,103.255386,160.172729,153.156204,141.255371,125.503319,113.817368,114.734718,112.635551,113.470261,116.974388,115.891747,128.528107,147.007446,163.676865,178.371078,191.156204,194.701660,189.222321,177.552902,159.511566,149.511566,148.734711,148.445465,112.858688,90.825630,116.685135,156.577682,134.519852,67.751251,19.044647,13.495060,14.534727,13.524809,22.528118,31.767788,20.890928,0.480167,0.000000,0.028099,0.023141,0.000000,0.000000,0.000000,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601627.555000,4612065.550000,4427,6605,109.652084,170.999176,162.819839,150.249603,134.569443,123.685135,124.304970,123.323975,124.687614,128.175217,127.919022,141.935547,161.357040,180.877701,195.861160,212.125610,214.547104,206.472717,189.712402,171.472733,160.166946,158.357040,157.290924,118.968605,97.778519,119.795059,153.340500,119.877693,59.175224,19.684317,14.299192,17.633900,13.440512,18.102495,23.373571,13.256213,2.378515,1.039670,0.695043,0.480992,0.000000,17.414877,1.441323,17.971901,27.123140,19.709917,25.685123,23.481817,26.197519,24.619007 -601631.755000,4612065.550000,4448,6605,104.784317,177.356216,163.604141,153.597534,137.349594,124.546295,127.670258,126.050423,127.124809,133.471909,133.430588,147.116547,166.868607,185.300003,200.417358,216.136368,219.971069,210.789261,194.334717,175.921494,165.392563,164.881821,162.518188,125.733078,104.890099,128.633896,161.038849,125.526466,63.286800,22.442169,14.774399,18.636381,13.928116,19.076876,22.488449,15.072742,2.089260,1.902480,1.356200,1.413224,1.076033,0.919009,0.251240,0.674381,0.000000,0.000000,0.910744,0.000000,0.000000,0.000000 -601638.555000,4612065.550000,4482,6605,125.818199,188.801651,173.702499,163.239685,143.504166,132.471085,135.206635,132.942169,133.983490,141.380203,138.809952,152.917374,172.776871,193.008270,208.669418,224.545456,226.413223,214.768600,201.479340,181.520660,169.925629,169.454559,166.818192,129.785141,107.024811,130.462830,158.140518,123.958694,61.239685,20.685143,15.165310,18.733902,14.590926,19.299191,24.120680,15.187619,1.507442,0.861159,0.434711,0.000000,0.000000,0.000000,0.000000,0.162810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601648.755000,4612065.550000,4533,6605,139.966965,196.561996,174.330612,165.223160,145.421509,133.735550,136.214890,133.933899,135.570267,144.008286,140.371918,154.975220,174.867798,194.000015,212.190094,229.239685,230.355392,218.115723,203.264481,181.752106,170.545471,169.900848,166.727295,128.892578,107.561996,131.669434,152.760345,113.330597,57.024815,20.481010,15.157044,17.629770,11.797537,15.577703,20.444647,10.271089,0.704136,1.073556,0.072728,0.000000,0.013223,0.000000,0.407439,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601654.755000,4612065.550000,4563,6605,111.786797,166.499176,167.457855,154.490906,140.829758,130.879364,130.780182,129.672745,130.705811,133.251266,136.573563,149.284302,169.193390,186.242981,202.036362,217.499191,223.160355,213.152084,193.978516,172.763641,161.681000,157.614883,154.854553,119.077705,99.557045,118.499191,138.300827,103.945473,49.490932,17.341341,14.077704,12.594232,11.213240,13.913240,15.224812,6.431416,0.962813,0.233059,0.064463,0.023967,0.000000,0.208265,0.025620,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601658.955000,4612065.550000,4584,6605,105.719849,159.970261,165.036377,153.375229,137.722336,129.441345,130.069443,128.127289,129.904144,131.342163,134.499191,147.276047,166.449600,184.135559,199.185120,213.449585,218.515701,209.069427,189.028107,167.747131,156.242996,154.102493,149.672745,116.325638,95.540512,114.664482,132.722336,99.218201,47.069443,17.620678,13.606630,10.255386,11.707453,12.475221,13.744645,7.317367,1.227277,0.335538,0.125620,0.030579,0.000000,0.000000,0.012397,0.004132,1.460331,0.000000,0.000000,0.990909,0.000000,0.000000 -601665.955000,4612065.550000,4619,6605,87.606628,158.457855,165.796692,152.424789,138.085968,129.375229,129.259521,128.259521,128.945480,130.904144,133.755386,147.300842,164.664459,182.978516,199.581818,212.044632,216.763641,206.366943,187.218185,166.135544,154.763641,151.813232,147.036377,115.276054,94.019852,111.647957,129.763657,95.928947,46.036385,16.215721,13.366961,10.609107,9.536380,12.910760,13.684315,5.515713,0.984302,0.032232,0.049587,0.461158,0.015703,0.000000,0.019009,0.112397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.555000,4612065.550000,4677,6605,98.757866,159.352921,165.286789,153.600830,140.162827,131.600830,131.278519,129.501663,130.204147,132.757858,136.419022,148.691757,168.642181,186.303329,200.592575,216.179352,220.104965,211.286789,189.642151,167.055405,156.311584,154.055374,148.063660,115.352905,94.724808,113.377701,130.129761,96.377701,47.030602,18.215721,13.460349,10.676873,9.628115,11.414064,12.978528,6.472736,0.845458,0.197522,0.210745,0.089256,0.012397,0.000000,0.252893,0.010744,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601696.555000,4612065.550000,4772,6605,100.455383,160.794235,164.248779,153.686783,139.331421,130.108276,130.430588,128.174393,129.017365,131.050430,135.984314,146.909927,165.901672,184.116547,199.752899,213.843811,217.785965,209.562820,186.513229,163.810760,152.265305,148.091751,143.281830,110.579353,91.546295,108.587616,124.711586,92.587616,44.397537,15.878530,13.025639,7.324806,9.041337,8.239682,10.148775,4.636371,0.402482,0.200827,0.176034,0.000000,0.000000,0.126446,0.188430,0.000000,1.451240,0.000000,0.000000,0.000000,0.000000,0.000000 -601711.355000,4612065.550000,4846,6605,93.036377,162.102493,166.152084,152.970261,140.375229,131.028107,130.804977,128.920670,129.276047,132.424805,136.085968,147.714066,166.185150,184.400024,200.094238,213.962006,218.879364,208.540512,186.193405,162.714066,151.854568,148.209930,142.854568,111.003319,91.490921,108.590096,122.557037,91.672737,43.036385,16.765306,12.986796,9.154560,10.304975,10.970264,12.243820,5.150422,0.177687,0.447935,0.076033,0.000000,0.034711,0.000000,0.078513,0.209918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601725.555000,4612065.550000,4917,6605,96.371094,165.495041,165.420670,157.147934,142.387604,132.776047,132.197525,129.544632,130.428940,134.412399,137.222321,148.412399,167.338013,184.784302,200.470245,215.676865,219.164459,211.222321,186.916534,163.577682,152.048767,149.255371,143.172729,112.685135,92.048775,108.395882,123.015717,91.519844,44.850433,16.780184,13.015720,8.166956,10.459520,11.847125,11.645471,5.804142,0.812399,0.261985,0.365291,0.166942,0.203306,0.208265,0.056199,0.077686,1.929752,0.000000,0.000000,0.000000,1.783471,0.000000 -601739.355000,4612065.550000,4986,6605,101.019852,168.457855,166.771912,156.416534,143.292587,131.937195,133.292572,131.251251,131.267776,135.681015,137.292587,148.647934,167.689255,185.771912,202.342148,216.209915,221.226456,209.937195,186.383469,164.358688,153.160339,148.424789,143.854568,111.995064,92.143822,108.920677,121.945473,92.614899,45.499191,16.829771,13.077704,8.251253,10.755388,12.309110,12.637205,6.037200,1.152895,0.179340,0.167769,0.000000,0.088430,0.323141,0.121488,0.242150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601750.155000,4612065.550000,5040,6605,106.366135,172.936371,169.043808,158.638855,143.845459,131.828934,131.919846,131.118195,130.093399,135.523148,135.647110,147.333069,166.754547,186.316559,201.349609,216.688431,220.547943,210.341324,185.878540,162.671906,152.184280,148.804123,142.209091,111.795876,92.043808,108.275215,122.539673,89.390915,42.027290,16.700846,12.928118,7.160343,10.978529,10.137207,11.708280,4.589264,1.258681,0.323969,0.000000,0.036364,0.057025,0.000000,0.114050,0.195042,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.555000,4612065.550000,5062,6605,108.554558,171.901672,168.876877,156.347946,142.215714,129.695053,129.612411,129.455383,128.480179,130.678528,133.785965,144.967789,164.182663,182.637207,197.430588,212.331421,214.347946,203.455368,181.033890,158.248779,147.885132,144.149597,138.190918,107.868607,89.521500,103.860344,118.306625,87.100014,40.612419,15.618200,12.562829,7.869435,8.376050,9.277703,11.835552,4.885132,1.250416,0.370249,0.070248,0.000000,0.038843,0.289256,0.664465,0.000000,2.239670,0.000000,0.000000,0.000000,0.000000,0.000000 -601758.955000,4612065.550000,5084,6605,103.430588,164.438858,164.298355,152.058685,136.595886,128.157867,126.744644,125.347946,125.612419,128.091751,129.653732,141.942993,161.066956,177.232239,192.529770,206.389267,209.521500,197.521500,175.901672,154.083481,142.579346,139.810760,134.372742,104.686790,86.042160,100.885139,114.794228,82.372742,39.595890,14.703323,12.215721,9.790097,9.414894,8.686791,10.019023,5.119844,0.632233,0.378513,0.347108,0.001653,0.024794,0.029752,0.151240,0.200001,0.000000,0.000000,1.239670,0.000000,0.000000,0.000000 -601765.755000,4612065.550000,5118,6605,113.825630,165.222321,167.247116,154.073563,138.726456,130.619019,129.933075,128.048767,128.280182,130.238861,133.214066,144.742981,162.619019,180.263641,195.040512,208.470245,212.701660,200.924820,178.420670,155.652069,145.660339,143.329758,136.536362,106.933067,88.858688,103.445465,115.073563,83.288445,42.462006,17.318199,12.412417,11.640511,11.680182,11.452084,13.685141,4.719843,1.337193,0.692563,0.062810,0.275207,0.401654,0.000000,0.157026,0.689257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601776.755000,4612065.550000,5173,6605,107.336372,170.733063,167.352905,153.642151,139.088440,127.212410,128.766129,127.047119,126.518188,129.559509,130.972733,143.749603,162.361160,179.972733,194.848770,208.518188,212.071915,199.733063,176.840500,155.683487,145.005798,141.542984,135.972733,105.666954,86.204140,101.476868,113.881828,83.295052,40.609112,15.104976,12.361176,9.738031,9.228115,11.531421,12.255387,5.997530,0.991737,0.153720,0.385951,0.010744,0.003306,0.000000,0.002479,0.237191,0.000000,0.000000,0.000000,3.455372,0.000000,2.152066 -601788.955000,4612065.550000,5234,6605,106.233910,173.382645,169.151245,155.614059,139.242157,127.531425,129.366135,127.159515,127.762833,131.440521,131.630600,144.390915,162.580994,181.605789,196.738022,211.977692,213.589264,201.200836,179.498352,157.704971,146.771088,144.283478,138.118195,107.952911,89.333084,103.985970,118.481834,85.316544,39.266964,16.227291,12.556217,12.893403,10.065307,11.061174,11.026462,6.842159,0.952895,0.125620,0.256199,0.061157,0.061984,0.000000,0.166942,0.236364,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601798.555000,4612065.550000,5282,6605,121.128113,173.789276,167.772766,155.781021,140.004166,127.293396,128.202484,126.971085,126.830589,131.855377,132.557861,143.739700,162.541351,182.194229,198.268631,212.962845,214.979370,201.838882,179.632248,158.326477,148.095078,145.623993,138.863663,107.111588,88.830597,104.673569,116.607452,85.648773,40.491756,14.184315,12.623987,12.804976,9.747125,9.688445,11.800016,3.912404,1.252895,0.077686,0.000000,0.039670,0.016529,0.000000,0.024794,0.081819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601805.355000,4612065.550000,5316,6605,128.384308,181.847107,170.450409,159.871902,141.169418,130.855392,130.706635,128.830597,130.326462,136.185974,134.012405,147.078506,165.756195,185.334717,201.136368,215.235535,217.136368,203.491730,182.037186,161.095047,150.053726,147.367783,143.136368,110.524803,92.533073,106.987610,118.185959,83.871925,41.202499,15.618199,13.012416,12.177702,9.681836,11.628943,12.057041,7.954556,0.624795,0.376861,0.073554,0.079339,0.000000,0.000000,0.078513,0.169422,1.502479,0.000000,0.000000,0.000000,0.000000,0.000000 -601809.355000,4612065.550000,5336,6605,137.756210,190.450409,171.037201,159.863647,144.351257,131.053726,132.004135,131.392563,132.855377,139.152908,137.491745,148.392578,167.045471,187.318176,203.359497,218.177704,220.293411,205.814072,183.144638,162.367783,151.632248,150.219025,144.681839,112.433899,95.268608,109.086792,117.863655,82.971092,39.814072,17.435555,13.152912,14.365305,10.860347,10.614892,11.746295,7.509929,0.772729,0.112398,0.062810,0.075207,0.089257,0.000000,0.057852,0.009091,2.314876,0.000000,0.000000,0.000000,1.508265,0.000000 -601815.955000,4612065.550000,5369,6605,121.569443,177.742981,169.437195,157.172729,139.850433,130.015717,130.709930,128.792572,131.296707,138.561172,135.850433,148.304962,166.701675,186.412399,202.643799,218.610748,220.759506,205.023972,184.230576,162.858704,153.338013,150.643799,146.081833,113.817375,95.164482,110.941345,118.445465,83.643822,40.098366,14.516546,13.280185,15.377704,9.385966,12.067786,11.845469,5.289265,1.223970,0.215703,0.060331,0.170248,0.113223,0.000000,0.123967,0.198348,0.000000,0.000000,5.906612,0.000000,0.000000,2.161983 -601826.955000,4612065.550000,5424,6605,87.842995,141.267792,144.267792,133.152084,119.317368,110.928947,112.185135,111.077705,112.854553,116.185135,120.143814,133.011597,151.590103,170.722305,187.598328,200.722305,204.201645,195.664444,173.945435,154.681015,144.193405,142.003326,137.127289,108.292580,87.854553,104.300842,117.548775,87.342171,42.143822,16.217375,12.466134,12.052909,10.586794,13.680182,14.398366,8.919020,1.731410,0.729755,0.150415,0.023141,0.016529,0.281819,0.389257,0.138843,2.805785,0.000000,1.064463,0.000000,0.000000,0.000000 -601837.755000,4612065.550000,5478,6605,104.949615,138.471085,142.148773,130.256210,116.710762,108.768608,107.735550,107.595055,109.099190,112.867783,117.429771,129.024811,149.198364,166.578522,182.793411,197.223160,201.231415,193.115723,171.611588,151.512405,143.123978,141.636383,137.454559,107.000015,86.479362,104.479355,117.859520,86.388451,40.851261,13.978531,12.495887,10.230592,9.289272,11.851255,12.919851,8.068605,1.695047,0.519838,0.184298,0.154546,0.157025,0.457025,0.488431,0.450415,4.086777,0.000000,1.795041,1.578513,0.000000,2.038017 -601844.955000,4612065.550000,5514,6605,97.459518,135.626450,139.634720,129.593399,114.742157,107.395050,106.700836,106.419838,108.188438,111.932236,116.064468,128.841324,148.271088,166.485962,182.213226,197.130585,202.800003,195.006622,174.105789,154.378525,146.758682,143.907440,142.163635,111.155380,90.378532,108.717361,123.031410,90.543823,42.725643,13.266132,12.923985,10.904972,10.615718,13.042991,14.465304,9.535551,1.773558,0.276861,0.587605,0.253720,0.200827,0.323141,0.133885,0.590911,3.513223,1.515703,1.039670,0.000000,3.552067,0.000000 -601850.955000,4612065.550000,5544,6605,99.244659,113.171097,113.501678,102.774399,89.121513,83.047134,84.419037,83.022331,85.468620,89.914894,94.394234,107.873581,127.609116,147.774384,165.435547,183.452072,193.658691,194.402496,182.914886,170.319839,164.815720,166.319839,166.972733,136.923157,112.881844,139.584305,173.113235,143.311584,74.014069,20.129770,15.179358,15.477703,20.310760,30.764481,40.104977,34.046299,3.029758,0.447109,0.172729,0.110744,0.147108,92.165291,356.521454,550.116455,660.085938,680.927246,733.579346,775.725586,772.103333,842.375183 -601003.155000,4612055.550000,1305,6655,191.563644,190.001663,189.026459,184.257858,180.720673,181.257858,189.522324,193.720673,198.894226,208.943817,217.679352,230.092575,244.447952,259.753723,269.654541,277.662811,275.976898,256.472748,209.282654,176.439682,165.067780,156.092575,145.381821,117.935547,103.687622,102.753738,90.852913,57.555393,24.927290,13.662000,13.216548,12.185967,11.797536,11.615719,12.430594,10.009104,5.281002,4.017363,4.494221,2.893393,4.091741,2.805789,1.878514,1.161157,17.481821,6.657852,4.851241,7.286778,12.455373,4.014050 -601006.355000,4612055.550000,1321,6655,196.300842,204.433075,196.019852,190.573578,184.780182,187.416550,195.747131,199.119034,203.937210,214.350433,224.383484,236.003326,253.846298,270.763641,284.375214,295.383484,295.565308,279.424805,231.375229,195.738861,183.598373,175.424820,165.945480,132.738861,115.383484,116.614891,110.251251,74.804970,28.904152,13.522332,15.085969,12.431420,12.420676,11.941339,11.577703,9.319848,4.764471,3.138023,1.653722,1.108267,1.738845,1.376862,2.885125,1.871902,16.985126,6.020662,8.202480,4.053720,3.445455,6.343802 -601010.955000,4612055.550000,1344,6655,209.475204,208.359497,199.971069,193.938019,190.706604,192.210739,197.904953,202.136368,204.706604,215.780991,223.855377,238.086777,258.772766,278.508301,295.516571,311.062012,315.219055,301.202515,257.623993,220.285126,205.847107,199.210739,191.681824,150.599182,125.987617,135.623978,150.599182,107.921501,45.863659,18.427290,17.425640,14.865307,14.518200,17.589275,18.514067,13.264478,4.952899,3.254550,1.571903,0.802481,1.937194,1.705788,1.248761,0.557852,7.438844,4.763637,4.205786,3.864463,3.723967,2.061984 -601017.555000,4612055.550000,1377,6655,202.400009,208.475204,201.425613,197.326447,193.871902,194.227280,199.623962,204.061981,207.227280,217.756195,225.500000,239.673553,260.541351,281.276886,300.144653,316.243835,323.045502,314.781036,278.425659,246.392563,231.359497,224.136368,218.227280,175.136383,148.004150,161.772751,179.764465,137.789276,61.500019,22.763657,19.838863,15.511587,18.785143,22.976051,27.703325,16.424810,3.444636,3.116537,1.514879,0.752069,0.619836,0.997522,0.068596,0.149588,0.000000,1.222314,3.435537,2.931405,6.463637,2.104959 -601027.155000,4612055.550000,1425,6655,193.223984,208.728119,199.992569,196.116547,192.637207,190.662003,197.463654,202.017365,204.860336,214.686783,220.926453,237.711578,258.306610,278.918182,297.347961,314.728119,323.017365,321.521515,289.504974,260.248779,249.025635,245.381012,238.554565,196.480179,169.728119,182.662003,203.984314,161.926453,74.951271,25.761173,21.686798,16.913240,22.025639,25.314896,34.529774,21.190928,5.042159,2.425626,1.072731,1.233061,0.761985,0.555373,0.000000,0.184298,7.873554,4.946281,0.000000,0.000000,1.297521,0.000000 -601032.755000,4612055.550000,1453,6655,214.693405,216.478531,201.734726,197.685150,191.362823,191.280182,198.635559,201.511566,205.461990,216.957870,223.833908,239.478531,259.858704,280.156219,299.065338,313.379395,319.825684,320.106659,290.156219,261.585968,249.916550,246.247131,239.536377,202.304977,177.635559,189.271927,203.081818,160.619034,76.536385,24.585970,21.776052,16.487621,21.332251,28.139688,33.390930,23.583488,3.763646,1.595047,0.862812,1.425625,1.143803,0.455373,0.000000,0.104959,1.382645,1.371074,3.135537,2.125620,1.371074,0.000000 -601035.955000,4612055.550000,1469,6655,202.199188,212.422318,197.166107,193.133057,189.538010,188.794205,196.108261,199.752869,201.471878,211.356186,218.347916,233.099991,251.091751,270.653717,286.810760,297.901672,304.083496,301.703308,273.257050,247.860321,237.166107,233.372726,227.190903,194.380966,173.199173,180.752884,193.174377,151.645462,71.728119,23.721504,20.653738,16.253736,19.593405,26.364479,33.058697,22.708282,2.990918,1.722318,1.152895,0.127274,0.386778,0.509092,0.038843,0.030579,1.291736,0.000000,0.000000,3.147108,2.456198,0.000000 -601040.555000,4612055.550000,1492,6655,175.078552,182.243820,178.632248,174.863647,167.334732,171.045471,173.442169,174.425629,175.723160,181.582657,187.871918,202.012405,217.309952,231.566116,244.698364,254.888458,258.500031,256.070282,234.995865,216.276871,208.334732,204.962830,199.227295,174.979355,158.020691,165.822342,174.698364,143.971085,75.838867,22.414068,18.111588,18.847124,20.885967,30.657045,40.260345,32.295059,3.916537,0.320664,0.051240,0.314050,0.047934,0.099174,0.582645,0.528099,7.253720,6.685951,2.967769,5.255373,4.584298,7.668595 -601045.155000,4612055.550000,1515,6655,44.170258,45.617367,39.116535,35.244637,30.412403,28.056206,28.057858,26.080172,25.367775,27.104965,27.623970,30.527279,36.176868,40.228104,43.633064,46.814880,47.856205,46.848770,43.149593,38.637196,36.581825,35.606617,32.709099,25.532236,21.697529,26.240501,37.360340,39.223980,21.083481,4.885130,2.973561,5.457033,13.631418,24.666960,37.829762,30.855389,22.333899,18.832239,24.466125,24.623974,27.438852,15.278518,14.847939,21.681824,12.769425,9.167771,7.738844,21.370253,22.759508,17.660336 -601454.755000,4612055.550000,3563,6655,41.216537,42.691750,24.667780,14.176869,6.417362,1.523970,0.763638,0.314050,0.190909,0.180165,0.039670,0.105785,0.178513,0.261157,0.885126,1.935540,2.576036,2.380995,2.420665,1.391738,0.717357,0.482646,0.845456,0.014876,0.000000,0.180165,15.768608,37.791756,21.442991,2.329757,0.076861,7.946292,11.783486,29.034729,45.685139,41.280182,8.044638,1.963640,1.237192,0.054546,0.000000,0.509091,0.000000,0.004959,2.256200,1.733059,1.314877,0.343802,1.877687,1.045455 -601457.755000,4612055.550000,3578,6655,141.834732,164.043808,145.903305,134.812424,120.300026,108.109932,107.043816,102.159515,98.762825,101.043816,99.523155,107.771088,119.349609,131.076889,142.572739,155.498352,160.341324,159.589264,151.266953,139.738022,132.886795,131.109940,128.118210,103.776878,89.016548,108.944641,142.514877,130.390930,73.911583,16.166960,11.647126,11.460344,20.791754,33.271091,48.795891,38.333073,3.247114,0.239670,0.214050,0.000000,0.004959,0.000000,0.000000,0.117356,3.164463,7.376034,4.451241,4.330580,4.357852,0.000000 -601462.555000,4612055.550000,3602,6655,177.736374,202.314896,183.703323,176.215714,164.364471,157.017365,159.108276,157.670258,155.976044,161.909927,165.141342,177.794235,191.976044,208.587616,222.058685,237.670258,244.314896,242.819016,227.438858,211.769440,204.686783,203.645462,199.463654,172.918198,159.133072,172.662003,189.686783,157.215714,84.364479,21.423161,18.133078,18.413244,21.951258,31.827291,46.430595,36.455387,4.423975,0.110744,0.303306,0.050413,0.232232,0.384298,0.007438,0.405786,5.622315,5.766116,4.577686,3.173554,3.831405,2.173554 -601590.555000,4612055.550000,4242,6655,27.335550,66.181831,64.181831,50.760345,33.644646,20.656216,17.281836,12.022329,9.062824,7.095880,6.054556,10.800841,19.242165,28.462828,35.818203,46.363655,50.049603,48.760345,47.900841,39.049606,30.388449,30.628117,30.090927,5.421498,0.839672,12.786793,77.520676,94.586792,58.347122,6.990095,2.735556,9.689272,17.859522,34.917374,53.223156,43.958694,1.434715,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.455373,0.342975,0.000000,2.714050 -601593.355000,4612055.550000,4256,6655,45.201668,83.551254,79.220680,64.435562,49.526463,37.278534,34.790932,28.195061,24.365309,24.079357,22.496714,30.286797,41.121510,50.939690,59.857048,69.807457,73.749603,72.361176,70.162827,60.394234,52.501675,53.030602,53.063660,24.178530,9.247121,34.071922,95.361176,105.675224,62.807457,9.399189,4.823986,12.831421,16.951258,33.840515,53.344646,46.074402,2.237195,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.858678,1.602480,0.000000,0.000000,0.000000,0.000000 -601596.355000,4612055.550000,4271,6655,56.871086,94.799194,91.253738,76.055389,60.857044,49.385963,47.195881,41.328114,38.600845,37.906628,36.981010,44.460350,57.873573,68.253738,78.088448,88.336380,93.476875,91.964478,88.435555,77.708282,69.981010,70.981010,69.427292,41.873573,22.304976,50.022327,110.055389,115.989273,68.749603,10.734724,6.311589,12.437205,17.659521,34.906628,54.956215,43.733074,1.565293,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.874380,0.000000,1.325620,1.254546,0.000000,0.000000 -601599.555000,4612055.550000,4287,6655,62.703320,103.681000,97.515717,83.862831,67.945473,54.474400,53.036385,48.309109,46.011589,45.267788,43.160351,50.598366,64.061180,74.722336,84.474396,94.738853,99.763649,97.400009,93.482658,83.366959,74.011589,74.780182,74.581841,44.780186,25.813240,53.978531,112.755386,115.714058,68.490929,10.011584,6.780185,14.065307,17.878529,34.185139,51.342167,42.276051,1.055375,0.057852,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.045455,0.000000,0.000000,0.000000,0.000000 -601604.755000,4612055.550000,4313,6655,70.307449,124.182655,113.389267,100.620674,83.670258,72.083481,69.356209,64.918198,61.835556,63.257042,60.984314,70.538033,84.447121,96.257034,107.909927,119.430588,123.389267,121.182655,114.909927,103.885139,94.405800,94.430588,94.918198,62.025639,42.058701,67.868607,127.637199,126.190926,73.240509,13.236381,8.628944,12.065307,17.269442,32.480186,48.199196,38.059517,0.685953,0.028926,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.614876,0.893389,0.000000,0.000000 -601609.355000,4612055.550000,4336,6655,70.590927,130.919846,126.407455,111.151253,94.151253,82.779350,82.671913,77.944641,76.465309,78.481842,75.490105,86.126457,100.556213,115.010757,126.390923,137.498352,141.341324,137.886780,130.878525,117.589272,107.390923,108.324806,108.572739,74.721512,54.870270,80.936378,134.886795,127.622330,69.729774,14.474399,9.870268,11.415718,15.143819,28.622335,42.870270,31.581835,1.435541,0.040496,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.170248,0.000000,0.000000,0.000000,0.000000,3.718182 -601616.155000,4612055.550000,4370,6655,92.500839,150.529770,145.174393,132.546280,116.719856,105.686790,107.339684,105.463646,106.719849,109.819031,110.182655,121.653740,139.587616,154.628937,168.174393,180.918198,185.017365,179.488449,169.248779,153.901672,145.868607,145.207458,144.918198,110.066963,90.265297,112.976051,152.405792,134.017365,71.199196,17.167788,13.174399,15.857869,13.891753,23.850433,33.752911,25.005802,0.726448,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.037190,0.000000,0.000000,0.000000,2.002480,0.000000,0.000000 -601619.755000,4612055.550000,4388,6655,110.697540,173.887604,161.961990,153.573563,139.209915,126.590103,128.813248,127.102501,127.796715,132.292587,133.127289,146.722321,166.094223,184.152069,200.251236,215.201660,217.995041,208.590088,193.714050,175.242981,163.796692,162.193390,160.400009,122.879356,101.218201,125.069443,154.614883,120.796715,60.052906,20.909935,14.581839,17.806629,13.205801,17.623983,21.533075,14.119850,1.238020,0.331406,0.132232,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601625.555000,4612055.550000,4417,6655,121.109924,178.233871,162.614059,155.308289,138.457047,127.448769,128.680176,128.242157,129.250427,134.928116,133.944641,148.010773,166.176025,185.531418,201.663620,215.457016,218.647095,208.969406,193.250397,173.630569,164.019012,161.738037,160.572754,123.382652,102.109924,125.349594,156.167786,119.671906,60.225639,19.459522,14.597538,16.509108,13.214065,17.215719,21.884317,14.334726,1.342153,0.146281,0.172729,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.403306,0.000000,0.000000,1.333058,0.000000 -601633.555000,4612055.550000,4457,6655,128.061172,181.424820,164.681015,158.722336,139.771927,129.019852,131.135559,128.606628,130.879349,138.424820,135.251266,148.738861,167.755386,186.557037,202.317368,218.276047,220.077698,207.350433,193.433075,174.895889,163.986801,163.077698,164.036377,128.606628,106.077698,130.152084,159.548782,129.573563,63.945473,19.740513,14.912416,17.352909,12.826463,18.617373,26.267786,15.986794,1.454549,0.095041,0.023141,0.027273,0.000000,0.000000,0.000000,0.000000,1.448761,0.000000,0.000000,4.403306,0.000000,0.000000 -601644.155000,4612055.550000,4510,6655,135.973557,193.527283,171.634720,161.221497,144.246292,133.791748,134.857864,133.535553,136.196716,144.039673,140.138855,154.965302,172.783478,192.965302,209.626434,224.725616,226.700821,214.907425,199.766953,181.411575,169.866119,168.618195,167.618195,130.204971,110.097534,135.089264,156.519012,119.056213,59.948780,21.517374,15.238035,19.623985,13.243817,18.317373,22.214897,13.297537,1.274383,0.187604,0.196695,0.019835,0.000000,0.000000,0.170248,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601653.755000,4612055.550000,4558,6655,96.027290,157.731415,166.582657,154.574402,138.995880,130.615723,131.896713,129.549606,131.805801,133.268616,136.648773,150.070267,169.582657,187.128113,202.814072,215.855392,221.194229,213.723160,193.533081,172.838852,162.599182,159.450424,155.863647,123.342995,101.756218,120.797539,139.136383,104.681831,49.880184,18.351255,14.169439,11.725634,12.119024,14.552084,14.990100,8.052906,1.021491,0.236365,0.069422,0.071075,0.000000,0.000000,0.000000,0.144629,0.000000,1.330579,0.000000,0.000000,0.000000,0.000000 -601661.955000,4612055.550000,4599,6655,98.695053,159.456223,166.299194,153.960358,139.547119,131.431427,131.373566,130.166962,130.976883,132.662827,136.390106,149.042999,167.638046,185.183487,199.175232,213.836395,218.042999,208.985153,188.704163,167.084320,156.786804,154.596725,149.290939,116.778534,96.753738,115.638031,134.373566,100.051254,49.588448,19.858698,13.571919,12.668611,12.257043,13.873569,15.035554,8.711582,1.354550,0.449588,0.097522,0.157852,0.000000,0.135537,0.022314,0.009918,0.000000,0.000000,1.152066,0.000000,1.176033,0.000000 -601673.155000,4612055.550000,4655,6655,106.774399,158.538864,164.059509,152.811584,138.100830,130.150421,130.323975,129.018188,129.613235,131.927277,135.481003,147.919022,167.290924,184.836380,200.538864,214.993393,218.662827,208.538864,188.720688,166.406616,156.588440,152.811584,148.290924,114.580177,94.704140,113.927284,131.952072,98.968605,48.464485,17.246300,13.481010,9.151252,10.476875,11.676048,13.573571,6.845466,1.345460,0.190910,0.041323,0.023967,0.000000,0.328926,0.000000,0.071075,0.000000,0.000000,0.000000,3.199174,0.000000,0.000000 -601690.955000,4612055.550000,4744,6655,99.557037,162.309097,166.623138,151.614883,138.251236,130.259521,130.259521,128.590088,129.152084,131.953735,135.780182,147.961990,167.532242,186.995056,201.433075,217.209915,221.573563,212.152069,189.400024,166.763641,156.523972,151.813232,147.400009,114.127281,92.895882,112.069435,130.573563,97.598358,47.904152,17.103325,13.400019,9.065302,9.866132,11.461999,12.685141,5.112405,1.247112,0.403307,0.179340,0.146282,0.000000,0.000000,0.000000,0.033058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601703.555000,4612055.550000,4807,6655,103.792580,164.792572,167.371078,154.552902,140.106613,131.048767,130.933075,128.974396,130.098358,133.139679,135.635559,147.875214,167.709915,185.238846,201.974380,215.189255,219.205795,210.437195,188.428925,165.875214,153.883469,150.635544,143.718185,112.139679,92.379356,109.685143,126.767776,94.817375,45.569443,18.225641,13.065308,8.119022,9.846295,9.738857,12.550430,5.410752,1.049590,0.291737,0.103306,0.145455,0.000000,0.000000,0.000000,0.074380,0.000000,3.013223,0.000000,0.000000,1.256199,0.000000 -601710.555000,4612055.550000,4842,6655,99.966957,165.694229,165.082657,154.652908,140.239685,131.388428,130.652893,128.454544,128.545456,132.727280,135.958679,147.818192,166.446304,185.107422,200.892563,215.305786,220.396698,210.504135,186.842972,163.966965,154.281006,150.776871,144.818192,112.710762,92.479355,108.247948,124.975220,93.570267,44.958698,16.298367,13.165308,8.084311,10.629767,11.165305,12.787619,4.847115,0.994218,0.440497,0.247935,0.089256,0.040496,0.000000,0.135537,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601718.555000,4612055.550000,4882,6655,110.551254,169.237198,168.319839,154.749603,141.295044,131.179352,130.972733,130.080170,129.171082,132.923157,135.435547,147.972733,166.923157,185.336380,201.815720,216.212402,220.088440,210.832245,188.129761,164.204147,153.261993,149.468597,143.700012,110.741333,92.063652,108.642166,125.815712,93.923157,44.187626,16.119026,13.063656,10.163650,10.823157,10.863651,12.774397,6.326456,1.633061,0.312397,0.142976,0.017356,0.009091,0.249587,0.067769,0.148761,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601729.355000,4612055.550000,4936,6655,95.932251,165.957047,165.378540,156.221512,142.800018,130.866135,131.155396,129.527298,130.147125,134.138870,135.758698,147.585144,166.667786,186.081009,201.436371,216.337204,219.353729,210.105789,187.147125,164.089279,152.775223,148.552094,142.618210,112.155396,91.147133,109.271095,123.948784,91.122337,43.130596,15.904976,12.965309,6.304145,9.569438,10.467785,11.923158,4.668602,1.348764,0.380993,0.013224,0.000000,0.031405,0.000000,0.090083,0.005785,0.000000,1.320661,0.000000,0.000000,3.268595,0.000000 -601736.155000,4612055.550000,4970,6655,107.958694,171.735535,168.140503,158.148758,144.066132,132.504150,132.760345,131.636383,131.388443,135.892578,138.281006,150.677689,169.033051,187.157028,203.016525,218.380173,220.818176,212.785126,187.892563,166.008270,154.231400,149.801651,144.909103,112.628113,92.950432,109.545471,124.917374,93.008278,44.719025,17.328943,13.173572,8.585137,10.118198,10.962826,12.418197,6.111579,1.262814,0.150416,0.202481,0.114050,0.057852,0.000000,0.128100,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601740.955000,4612055.550000,4994,6655,108.386803,169.337219,167.742172,155.138870,142.560349,130.097534,130.576874,129.386795,128.114059,134.320679,135.593399,146.733902,165.452911,185.238037,201.006622,216.361984,220.023148,209.907440,186.510773,163.791763,152.221512,147.676056,143.163666,111.618202,91.642998,107.180191,122.204979,90.651260,43.998367,16.983490,13.014895,6.831418,9.556214,10.717370,13.075224,5.409099,0.570250,0.126448,0.207439,0.076033,0.000000,0.000000,0.090909,0.285125,0.000000,0.000000,0.000000,0.000000,0.000000,2.373554 -601746.955000,4612055.550000,5024,6655,116.630600,176.457047,167.985977,157.638870,143.192581,130.572754,132.415726,130.093414,130.771103,135.514877,136.010757,148.952911,166.795883,185.506622,201.853729,216.762817,220.523148,210.564468,186.101654,163.151260,151.093414,148.448776,143.209106,111.862007,90.994240,107.465309,122.043823,91.407463,43.771091,15.984316,13.019027,6.932243,8.680181,10.221503,12.846297,4.032238,1.039672,0.520663,0.329753,0.166943,0.139670,0.000000,0.199174,0.365290,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601754.355000,4612055.550000,5061,6655,106.438034,166.636383,167.066132,154.826462,137.256210,127.338852,128.206619,126.297531,126.041328,127.867775,131.000015,143.421509,161.628113,179.760345,193.115723,208.760345,211.884308,200.264481,176.851257,156.165298,145.661179,142.462830,136.727295,106.785133,87.942162,102.066132,117.206619,83.900841,39.876053,14.407455,12.429770,9.480179,8.424809,10.808280,11.457041,5.447116,0.520663,0.588431,0.081818,0.000000,0.005785,0.000000,0.009918,0.171901,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601760.755000,4612055.550000,5093,6655,109.862831,173.044632,165.796692,153.788437,137.664459,127.821510,128.251266,126.838036,126.639687,128.573578,131.664490,144.242981,162.780167,180.259506,195.044632,210.226456,211.887604,201.441330,179.036362,156.722321,145.614883,143.160339,137.218185,105.490929,87.110764,103.160347,117.366959,87.375229,41.515720,16.028944,12.474399,10.206626,9.430594,12.037209,11.463652,5.050422,1.231409,0.123141,0.321488,0.077686,0.016529,0.000000,0.087604,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601769.755000,4612055.550000,5138,6655,113.485962,174.485962,163.998352,154.907455,138.890915,128.676041,130.056213,127.709106,127.163651,130.461166,131.882660,144.130585,163.841324,180.601654,196.213226,210.709091,213.841324,202.535538,178.783478,157.089264,146.238037,144.089264,138.345459,105.857864,87.758698,102.411583,117.998360,85.469444,40.180187,16.015720,12.576878,10.484313,10.333900,10.812413,11.850429,4.959513,0.718183,0.390084,0.381819,0.077686,0.000000,0.030579,0.031405,0.000000,0.000000,0.000000,0.000000,1.876033,0.000000,0.000000 -601781.755000,4612055.550000,5198,6655,111.438866,183.157867,168.306625,155.174393,140.595901,128.868607,130.810745,128.521500,128.703308,132.471909,132.314880,146.496704,164.422333,182.736374,198.414062,213.951248,215.769440,205.058685,181.612411,159.942993,149.364471,146.455399,140.463669,108.843811,90.000847,105.058701,118.298363,87.281837,40.595886,16.939690,12.769441,12.855388,10.219027,12.398365,14.021504,6.042158,1.307440,0.052066,0.057025,0.073554,0.355372,0.000000,0.176860,0.014050,0.000000,0.000000,1.134711,0.000000,0.000000,0.000000 -601786.555000,4612055.550000,5222,6655,109.738029,176.928101,167.275208,154.192566,140.729752,129.663651,130.060349,128.085144,129.655380,132.597534,133.589264,145.787613,165.233887,185.333069,199.828934,214.605789,217.919846,205.481827,182.490082,161.002487,151.729752,148.060333,142.209091,109.300018,91.085136,107.977699,119.415718,87.308281,41.787624,15.175225,12.928119,12.529769,10.633076,10.939686,13.947125,5.399184,0.975209,0.142976,0.450415,0.069422,0.013223,0.000000,0.221488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.755000,4612055.550000,5243,6655,111.467789,177.104141,167.252899,154.137207,137.294235,125.674393,126.748772,126.922325,127.252907,132.153732,132.013229,144.723984,162.798355,182.781830,197.914047,213.294205,215.806610,203.054535,181.542160,159.219849,147.608276,145.649597,141.600006,108.211594,88.955383,104.723991,116.533897,84.682655,37.922337,14.149605,12.872746,11.223157,10.060348,8.739684,12.442991,5.514060,0.543803,0.133058,0.134711,0.065289,0.019835,0.000000,0.033884,0.052893,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.155000,4612055.550000,5275,6655,126.416550,183.680984,168.391739,158.970245,142.300812,129.003311,130.780182,129.780182,130.358688,136.019852,134.829758,147.912384,165.474380,186.234695,200.647919,215.995026,218.218170,205.193375,182.441315,161.838013,151.565277,148.499161,143.127258,110.540504,92.532249,108.672737,118.970261,85.259521,40.953743,16.768614,13.011590,13.362828,10.105803,12.077703,12.529770,4.742982,0.828102,0.079339,0.069422,0.011571,0.070248,0.000000,0.342976,0.004959,1.488430,0.000000,0.000000,0.000000,0.000000,0.000000 -601802.555000,4612055.550000,5302,6655,132.845459,188.580994,170.696701,161.490082,142.886780,130.820663,132.093399,131.514877,132.622314,139.151245,137.159515,149.481827,166.333069,185.746292,202.308273,217.630585,219.481827,205.167770,182.184311,161.837204,150.977692,148.333069,143.300003,112.481834,93.481834,107.688446,115.936378,80.068611,39.341339,16.710762,13.027292,14.475222,10.586794,11.463654,10.587617,7.728111,0.954547,0.371075,0.349587,0.163637,0.008265,0.000000,0.331406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601806.555000,4612055.550000,5322,6655,144.828110,191.613235,170.885956,158.233063,140.935547,130.100830,130.406616,129.365295,129.968597,137.753723,135.943817,147.885956,165.514053,185.133896,202.588440,217.530594,219.737198,203.976868,182.828110,161.323975,151.563644,150.737198,143.745468,111.431412,93.249596,110.009926,116.720673,81.456207,39.604980,14.108280,13.067787,14.495058,8.190100,9.960345,11.828115,4.790917,0.451241,0.316529,0.065290,0.000000,0.000000,0.000000,0.162810,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601812.155000,4612055.550000,5350,6655,107.542168,147.162003,147.616562,135.542160,121.930588,114.881004,115.302490,113.732246,114.905800,118.674393,121.971916,134.872742,153.773590,171.740524,187.360321,201.682648,206.409912,196.418182,174.963669,154.633087,144.674393,141.095886,136.690918,107.459518,87.525642,103.823151,115.781830,83.690933,40.252911,14.547953,12.426466,10.481007,11.547952,12.868613,13.690100,6.758687,1.582650,0.898351,0.132233,0.228926,0.114050,0.172728,0.112397,0.103307,0.000000,4.326447,0.000000,0.000000,1.285124,0.000000 -601821.155000,4612055.550000,5395,6655,88.860344,142.445465,142.346283,130.156219,118.974396,110.891747,110.536377,110.271912,112.222328,115.776047,118.933075,132.181015,151.767776,170.081818,185.304962,199.817352,204.304962,195.007446,173.428925,152.949585,143.627274,141.635544,136.718185,107.503319,87.850426,103.742989,117.718201,86.280174,40.718204,14.165306,12.428944,9.445469,10.443818,12.181007,12.736380,5.935545,1.642978,0.695869,0.087604,0.041323,0.305786,0.112397,0.179340,0.489258,0.000000,3.972727,0.000000,0.000000,2.295868,6.029752 -601831.755000,4612055.550000,5448,6655,101.871918,135.357040,136.935547,126.150421,112.811577,105.894226,105.472740,104.852905,106.588440,111.737198,114.497528,128.373566,147.489273,167.580170,183.406616,199.497528,205.051254,199.604965,180.993393,162.770264,154.778519,154.051254,151.654556,120.514061,98.191742,120.133896,140.092575,106.414886,50.968616,16.920679,13.786796,13.134728,12.718198,16.951256,19.624813,14.878528,2.152071,0.425621,0.376860,0.166116,0.617356,0.376860,0.274381,0.743803,5.662810,3.945455,1.744628,7.115704,2.827273,0.000000 -600995.555000,4612045.550000,1267,6705,200.658676,200.385941,194.253708,190.526443,185.972717,189.931396,194.823959,199.741318,204.766113,213.352890,224.419006,236.261978,253.931396,270.047119,283.906647,294.534729,290.807465,275.683502,225.567764,191.675201,179.534698,171.088425,159.881805,129.807449,113.071930,113.509941,103.443825,67.204147,29.650433,14.156217,14.534730,17.132250,12.116545,12.544645,14.410761,8.508280,4.294224,3.257030,1.834714,1.314879,1.722318,1.953722,0.319009,1.402480,5.816529,5.837191,3.966943,7.133059,18.607441,12.246282 -600999.155000,4612045.550000,1285,6705,200.119873,198.425659,194.764496,189.128128,186.599213,186.185989,194.384323,198.028961,201.847137,211.781021,220.599213,234.888458,254.665329,271.483490,287.144653,300.541351,301.458710,286.888458,240.714905,203.880203,189.632263,182.607468,174.681854,137.888458,114.243820,122.351257,125.210762,87.359520,35.417370,16.652910,15.880185,12.999191,12.736382,13.602498,15.023158,9.660346,3.428105,2.248766,2.651244,1.864467,2.511575,0.677687,0.638843,1.553720,23.085953,6.913224,2.028099,4.499174,6.808265,4.056199 -601004.755000,4612045.550000,1313,6705,202.629776,206.712418,199.547134,196.993408,191.100845,192.547134,200.042999,203.464493,208.166962,217.745483,225.051270,238.976883,259.960358,279.877716,298.249603,313.464478,318.447968,307.943817,265.505798,230.728958,214.481018,208.472748,201.654572,157.745483,131.489273,143.249619,157.662842,116.836372,49.175224,19.493408,18.332251,16.767786,17.036383,18.711590,20.742167,12.838858,2.686783,2.125624,3.721493,2.120666,2.848763,1.061985,1.385125,0.160331,5.142149,5.857026,4.114876,3.806612,1.217355,2.123141 -601013.155000,4612045.550000,1355,6705,197.078552,211.657043,198.095078,198.623993,192.409119,191.177719,199.805817,200.971100,203.962845,214.367783,221.590927,237.648773,256.392578,278.119873,296.070282,313.376068,320.871948,318.285156,284.590942,254.549606,241.301682,237.541336,230.772766,187.904984,161.301651,174.252060,197.028961,153.880173,71.070274,24.062004,20.979359,17.122330,20.067789,26.902498,31.500019,20.330597,6.866126,3.223975,3.228931,1.086780,1.317358,1.753721,0.000000,0.028100,0.000000,4.981819,3.474381,7.374382,4.940496,2.229752 -601023.355000,4612045.550000,1406,6705,243.371094,251.057037,221.321503,218.288452,209.156219,205.156219,212.858704,216.338043,221.478531,235.462006,234.387619,252.908279,272.561188,294.536377,312.040527,329.114899,331.619019,321.842163,290.552917,261.114899,248.759521,244.445480,238.536377,195.933075,172.718201,185.057037,200.247131,154.040512,73.751259,25.723158,21.685143,26.542168,21.971094,30.475225,35.495060,27.947126,6.365298,1.859508,1.643807,0.245456,0.323142,0.324794,0.144629,0.498349,2.539670,2.657025,4.609091,0.000000,7.935538,4.671901 -601030.555000,4612045.550000,1442,6705,249.159515,238.787598,207.779343,202.597534,191.837204,188.572739,195.457031,195.861984,197.225632,208.068604,208.771088,222.680176,236.762802,251.300003,265.316528,277.928101,279.878510,267.308258,245.010727,226.250397,216.035538,212.961166,206.300003,178.787613,165.779343,170.308273,168.861984,130.556213,66.275230,21.647125,18.754564,25.523159,20.093407,30.531424,38.870270,30.366959,5.466950,2.893393,1.651243,0.588431,1.093392,1.228101,3.274382,0.959504,18.185125,3.551240,1.818182,4.657852,11.144630,4.300827 -601166.755000,4612045.550000,2123,6705,145.276871,178.506638,170.002502,162.126465,151.572754,147.498367,149.853745,149.944656,151.283493,157.878540,161.729782,178.828949,200.382645,217.019012,229.680176,243.977692,249.597534,257.109924,246.151245,226.878525,214.399185,211.052078,209.572739,167.068619,137.316559,161.176056,208.704971,175.266968,90.291748,22.638863,19.052086,20.014067,24.594234,36.870266,49.647125,36.167786,2.963644,0.331406,0.014050,0.076860,0.000000,0.022314,0.000000,0.014050,3.466116,1.047108,9.381819,0.000000,2.237190,0.000000 -601172.155000,4612045.550000,2150,6705,159.163635,171.578522,167.785126,161.677704,153.016525,150.438019,155.619858,155.140503,158.396713,164.950409,171.066132,187.975220,209.363647,224.685974,236.487625,248.471085,256.057861,260.909119,247.264481,229.438034,220.206635,218.776871,213.636383,181.958694,156.652908,177.049606,208.363647,174.024811,92.000008,23.188448,19.421507,22.678530,24.102497,38.438034,52.404976,43.752083,4.076869,0.509093,0.011571,0.000000,0.000000,0.118182,0.000000,0.011571,5.245455,3.196694,4.732232,0.876860,3.099174,2.080165 -601175.755000,4612045.550000,2168,6705,144.464493,159.966980,158.099213,151.628128,143.743835,138.206635,139.553757,140.421524,140.966980,145.752106,151.198380,166.586807,187.851273,201.611603,213.991760,225.000031,229.066147,231.719040,220.562012,205.438049,197.347137,193.636398,189.363663,157.487640,137.090927,157.892593,190.066147,161.628128,86.735550,23.023987,17.214893,17.800016,24.500845,35.300846,50.991753,43.983486,3.223148,0.491737,0.493390,0.091736,0.183471,0.067769,0.000000,0.836364,2.269422,7.315703,5.289257,3.502480,3.109091,0.000000 -601178.755000,4612045.550000,2183,6705,129.412415,141.954559,138.103317,130.152893,118.938034,111.554558,109.000839,106.926460,104.942986,106.777702,110.471916,129.066956,152.500000,165.640503,177.524796,188.425613,189.640503,187.590912,176.086777,159.136368,145.045456,142.557861,132.318192,101.628937,80.385139,104.942986,147.838852,130.334717,67.896713,16.299192,12.028945,14.112412,18.825640,26.938864,38.946301,29.209112,4.635546,0.503308,0.329753,0.334712,0.140496,0.414877,0.364463,0.207439,8.757026,6.180167,0.978513,1.814050,4.163637,1.854546 -601454.355000,4612045.550000,3561,6705,152.385132,160.731400,141.838837,130.318192,118.367783,103.161171,102.152908,97.169441,94.359520,96.061996,94.235550,102.061996,111.929771,122.946297,134.557861,147.723145,153.714874,152.004135,143.747940,131.615723,124.582664,124.466957,121.954559,95.268616,83.202492,100.285141,132.309937,123.053734,66.062004,13.668612,11.086796,10.906626,16.052910,29.090099,44.714897,33.285141,2.561162,0.236364,0.000000,0.184298,0.000000,0.036364,0.000000,0.000000,6.233059,4.036364,3.361158,2.825620,0.000000,0.000000 -601458.155000,4612045.550000,3580,6705,152.341324,196.952896,185.043793,173.928101,161.663635,152.936371,153.614059,152.531418,150.928101,155.316528,158.440506,172.209091,188.506607,206.448746,222.944626,240.407440,250.795868,248.415710,232.035538,215.043793,207.432220,204.903290,202.027267,168.366119,152.316528,170.589264,197.225616,167.300003,88.316544,23.559523,18.366137,18.081009,22.375223,33.220680,47.961178,38.043823,4.033892,0.271075,0.102480,0.000000,0.000000,0.266116,0.013223,0.298348,2.765290,8.300000,5.112397,4.882646,2.616529,2.048760 -601586.355000,4612045.550000,4221,6705,21.347120,43.843815,35.771919,23.021507,8.495054,2.038848,1.595046,0.436365,0.102480,0.058678,0.017356,0.131406,1.619013,4.329761,9.857039,18.454561,22.644646,22.347948,22.252085,14.591749,9.035549,8.775218,9.527286,0.210745,0.000000,1.134714,58.628948,82.819031,50.124813,4.264473,0.866128,9.661171,17.406630,35.104153,57.538036,49.810760,3.498352,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.066116,0.689257,0.000000,0.000000,2.480993,0.000000 -601591.555000,4612045.550000,4247,6705,21.950426,42.101673,30.914068,18.322334,5.620673,1.622318,0.635539,0.198348,0.084298,0.021488,0.006612,0.185125,0.889259,2.876039,7.564476,17.140514,22.205805,21.664482,22.823162,14.185966,7.700013,8.099186,8.518195,0.229753,0.000000,0.829754,61.025642,84.381004,48.843822,4.032241,0.774394,11.686790,16.571091,35.734730,58.496716,49.199196,3.244632,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.979339,0.000000,0.000000,1.174381,0.366942,0.000000 -601600.355000,4612045.550000,4291,6705,40.423981,94.552078,82.800018,70.477699,51.912415,40.339691,35.853737,31.324810,26.473570,25.782661,23.217371,29.283487,40.376881,49.849609,58.998371,70.651253,75.378525,73.188446,70.461174,61.039692,52.593410,52.733906,53.163658,22.654564,6.818195,29.771917,95.138855,105.461174,62.634727,8.127288,4.833077,13.653735,15.318200,35.362003,52.841347,42.072750,1.019011,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.481819,0.000000,0.000000,1.844629,0.000000,0.000000 -601604.555000,4612045.550000,4312,6705,58.609924,113.556213,106.754562,91.696709,76.432243,63.671917,61.407452,55.936378,51.928116,52.085144,50.134727,58.291752,70.035553,81.060349,90.663651,102.448776,107.225632,103.903320,101.233902,88.242165,81.242165,80.035553,80.027290,47.696712,28.242168,56.671917,115.192574,120.142990,68.300018,11.483487,7.275226,15.097538,17.143820,32.671921,50.721508,41.316547,0.344630,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.608265 -601609.555000,4612045.550000,4337,6705,66.678528,122.567780,115.600838,104.071907,86.129768,73.468613,71.914894,66.782669,64.509941,64.708282,62.262009,71.972748,84.361176,97.691750,107.551247,119.567780,123.592575,120.435547,115.633896,102.741341,93.832253,93.138031,91.336380,59.171097,42.096718,69.633904,125.270256,123.113235,69.716545,12.928943,8.303325,14.697537,13.774397,28.779356,45.410767,35.501675,0.709919,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.983471,0.000000,0.000000,0.000000,0.000000 -601615.555000,4612045.550000,4367,6705,91.223167,165.889252,155.823135,144.079330,127.533897,112.897537,115.500839,110.360344,111.294228,114.806625,114.781830,127.104149,147.244644,164.823135,180.451248,196.095886,200.798355,194.451248,183.418198,164.368607,155.426453,154.294205,150.872726,111.525635,89.666138,116.872742,158.798340,134.442978,68.707458,18.396713,13.715722,14.699190,13.756214,22.355392,32.550430,20.997538,1.840500,0.193389,0.045455,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.326446,0.000000 -601623.555000,4612045.550000,4407,6705,101.629768,169.431427,161.927277,147.514069,132.274399,120.952095,121.836372,118.671082,118.133896,125.935562,123.390106,136.704163,155.307449,172.935547,188.282639,204.084290,206.390091,195.786774,182.976868,164.481003,154.208267,152.249603,150.563644,114.059517,91.067780,115.943817,155.125626,124.191765,60.274399,17.276051,13.687621,15.540513,11.982660,17.414066,22.681009,11.898362,1.021490,0.129753,0.014876,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,2.957025,0.000000,0.000000,0.000000,0.000000 -601630.155000,4612045.550000,4440,6705,121.315712,181.290939,165.613251,154.026474,137.423172,124.406624,124.092575,122.968605,123.257858,129.976868,126.943802,140.629761,158.456223,177.282669,193.266144,207.993408,208.836395,198.299194,185.580185,167.695892,157.051270,156.332260,155.745483,118.497528,98.538864,125.596703,163.671097,134.290909,70.299194,21.902498,14.158696,19.865309,14.676877,21.976879,28.309111,20.703325,0.778517,0.377688,0.036364,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,2.978513,0.000000,1.074380,0.000000,0.000000 -601637.155000,4612045.550000,4475,6705,128.807449,196.807449,169.369431,157.741333,139.650421,126.617371,128.104980,125.989273,127.774399,136.245468,131.741333,144.964478,162.336380,182.270264,198.691742,213.253723,215.906616,204.361160,191.187607,172.857040,162.452072,160.741333,160.790924,124.385979,103.675232,130.286789,161.146286,127.319855,65.014069,20.857870,14.617374,18.413239,13.782661,19.884315,25.014894,17.341341,1.280169,0.052893,0.026447,0.104959,0.000000,0.000000,0.009918,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601647.555000,4612045.550000,4527,6705,96.989273,155.997528,161.741333,149.014053,135.815735,127.600838,127.154556,126.691742,127.799187,130.402496,135.179352,148.220673,167.270264,185.261993,199.890091,212.162827,218.485138,210.394226,192.633896,170.650436,162.212402,158.997528,155.154556,122.204140,100.063660,121.220673,144.237198,110.485138,55.038860,17.702496,14.104978,10.119851,11.766130,13.539687,16.741341,9.037205,0.557029,0.084298,0.132232,0.017356,0.000000,0.071901,0.000000,0.106612,0.000000,0.000000,0.000000,0.000000,0.000000,4.171901 -601662.355000,4612045.550000,4601,6705,104.444649,158.014877,163.766953,151.287613,138.080994,129.733902,130.461166,128.766953,130.337204,132.295883,135.006622,148.155380,165.923981,183.361984,198.287613,213.138855,216.494217,208.932236,189.634720,168.047943,157.345459,154.568604,149.436371,116.923973,96.271095,114.833061,135.461182,101.147125,49.469440,18.014894,13.585142,11.432246,10.655389,13.138860,14.117373,6.576042,1.101657,0.285951,0.110744,0.010744,0.000000,0.000000,0.000000,0.009091,2.602479,0.000000,0.000000,0.000000,0.000000,0.000000 -601678.955000,4612045.550000,4684,6705,109.937210,165.011566,167.424789,154.102493,140.565308,133.143814,131.391754,130.317368,132.738861,134.664490,138.871094,151.276047,170.656204,188.226456,204.085953,219.201660,225.309097,215.226456,193.011566,172.292587,162.185120,157.185150,151.672745,119.317375,99.490929,116.672745,134.804977,101.333900,49.019855,18.556217,13.788449,11.697536,13.901670,15.882662,14.671918,8.742163,1.003309,0.390910,0.419835,0.008265,0.047934,0.000000,0.000000,0.054546,0.000000,0.000000,2.462810,0.000000,2.642975,0.000000 -601698.355000,4612045.550000,4781,6705,114.065300,167.230576,165.643799,153.255371,139.982651,131.718201,130.420670,130.709930,130.842163,134.734726,137.304962,149.858688,170.321487,187.395889,203.048767,219.304962,223.833893,213.428925,191.817368,169.660339,158.685120,155.379349,149.263641,117.238853,95.519844,112.883484,131.354553,97.627281,48.379356,15.701672,13.569441,8.796707,11.523983,11.736380,14.521505,7.121499,1.704137,0.168596,0.145456,0.124794,0.000000,0.000000,0.206612,0.034711,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601704.955000,4612045.550000,4814,6705,104.568611,160.609924,165.709091,152.783478,140.849594,130.304153,130.676041,129.213242,128.981827,132.667786,136.039673,147.874390,167.370255,186.915710,201.890915,217.031418,222.436371,212.833069,190.006622,167.213226,155.353729,151.361984,147.345459,115.659515,93.791748,112.221504,128.758698,98.295883,46.031429,16.999191,13.395061,7.395054,9.742165,10.772742,11.128942,5.017364,0.617359,0.180167,0.080992,0.079339,0.000000,0.000000,0.121488,0.139670,0.000000,0.000000,1.741322,0.000000,0.000000,0.000000 -601708.355000,4612045.550000,4831,6705,108.761177,163.004150,164.632233,154.938034,139.475220,130.508286,129.235550,128.673569,129.260345,132.962830,135.640518,148.144638,167.260330,185.681824,202.698334,218.004120,221.772705,212.590897,190.078506,168.334717,155.433899,152.028946,146.590927,114.111588,92.557869,110.516548,129.384308,95.921501,45.979359,17.119850,13.326466,9.677699,10.376048,11.828115,11.481008,6.985136,0.882649,0.228927,0.030579,0.108265,0.017356,0.000000,0.123967,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.755000,4612045.550000,4853,6705,111.442162,164.681839,165.252060,152.607452,141.086792,130.698364,129.871902,129.318192,129.425629,132.285126,137.152924,148.433899,166.814072,185.698349,202.384293,217.086777,221.566116,212.615707,189.549591,167.227280,155.533081,151.747955,147.500015,113.607452,93.814064,110.533073,127.500015,97.359520,45.458694,16.157043,13.409109,8.266954,10.056212,11.920676,13.069438,5.358687,0.722318,0.157852,0.034711,0.090083,0.009918,0.129752,0.000000,0.084298,4.880992,0.000000,0.000000,0.000000,0.000000,0.000000 -601719.955000,4612045.550000,4889,6705,123.076057,170.175217,165.563644,154.001663,140.869431,130.679367,130.290939,128.704163,128.778534,133.018204,136.447937,148.290924,167.538849,186.604965,202.910751,217.927261,221.431396,213.266113,189.274384,167.084305,154.720673,151.588440,145.745468,114.604973,92.200027,109.290924,127.414902,96.348785,45.456219,17.101671,13.249606,6.676872,10.760346,10.196708,12.603321,4.839677,0.938019,0.276035,0.642977,0.043802,0.000000,0.395042,0.102480,0.106612,0.000000,0.000000,0.000000,0.000000,1.711570,0.000000 -601728.355000,4612045.550000,4931,6705,118.869431,172.224808,168.200012,156.059509,142.877701,132.158691,130.712402,130.671082,131.323975,134.472733,136.919022,149.447937,167.935562,187.753723,203.142151,219.340500,222.282654,213.398361,190.629761,167.390091,155.968597,151.910751,146.836380,114.323975,93.836372,109.109100,125.753731,94.629761,44.662830,17.402496,13.348779,9.373568,11.490099,9.977700,12.187619,4.983479,1.160335,0.261985,0.159505,0.042976,0.052893,0.000000,0.106612,0.200001,0.000000,0.000000,0.000000,0.000000,0.000000,3.074380 -601731.955000,4612045.550000,4949,6705,104.752907,171.496704,166.538025,156.942993,142.149597,132.157867,130.430588,130.009109,129.835556,134.604141,135.992569,148.042160,167.215714,186.166122,202.248779,218.190918,221.976044,212.141342,188.744644,166.215714,155.066956,150.752899,143.645462,112.174385,92.703316,109.992569,124.653732,93.843811,44.471920,16.223986,13.058697,8.994229,10.488446,11.151255,13.457042,5.637198,1.764467,0.125621,0.074381,0.000000,0.027273,0.000000,0.135538,0.227273,0.000000,0.000000,0.000000,4.699174,0.000000,0.000000 -601735.955000,4612045.550000,4969,6705,104.919029,179.902512,170.497543,159.976883,142.828125,132.274384,131.654556,130.654556,130.555374,135.299179,135.993393,148.861176,167.819855,186.770279,202.704147,216.778519,222.216537,212.844635,188.456223,165.910767,155.241348,150.150436,146.654572,112.894226,93.902496,109.778519,124.142159,93.894234,45.299191,15.316547,13.332249,7.294230,10.830595,9.361173,12.909109,4.527283,0.863639,0.091737,0.189257,0.000000,0.066943,0.000000,0.037190,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.555000,4612045.550000,4997,6705,105.828949,160.200836,166.407440,151.936371,137.895050,128.101669,127.068611,126.101669,126.498360,129.696716,131.184311,143.663635,164.225632,181.432236,195.820663,211.109924,215.192566,204.266953,181.506622,160.043808,147.010757,145.366119,139.481827,108.101669,88.539680,104.911583,119.134727,88.481842,41.184315,14.952911,12.680185,10.231421,10.795058,12.035553,13.022332,5.776042,1.014878,0.005785,0.304960,0.060331,0.044629,0.000000,0.000000,0.089257,0.000000,1.631405,0.000000,0.000000,0.000000,0.000000 -601748.355000,4612045.550000,5031,6705,102.918205,164.662003,166.455383,152.207458,137.066956,128.108276,128.422333,125.736374,125.934723,128.430588,130.356216,142.893402,162.645462,179.976028,195.554535,208.769440,213.281830,202.620651,179.571075,157.761169,145.670258,143.397537,137.827286,106.314896,87.835556,102.190933,118.703316,86.405807,41.306633,14.882662,12.529772,10.752909,9.843820,9.834727,11.743819,6.192571,1.035540,0.579340,0.161158,0.003306,0.000000,0.000000,0.157852,0.228926,0.000000,0.000000,1.015703,0.000000,1.395041,0.000000 -601758.955000,4612045.550000,5084,6705,109.979355,171.871933,166.855392,152.524811,138.698364,127.070267,128.797531,126.880180,126.921501,129.070267,131.433899,144.351242,162.830597,181.037216,196.706650,211.177719,214.896729,203.657059,179.971100,158.599182,145.904953,143.830582,139.500000,107.210754,88.152908,103.640503,119.053726,87.152908,42.417374,15.147951,12.681837,11.495884,10.281836,13.328942,14.307456,5.752902,1.326449,0.328927,0.103307,0.010744,0.023967,0.000000,0.052893,0.245455,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601772.755000,4612045.550000,5153,6705,102.553734,175.958694,165.735550,154.041336,138.231400,127.743820,129.140518,128.223160,127.859520,132.173569,132.727295,146.867783,165.289276,184.520676,199.173569,214.438034,217.586792,205.512405,182.314072,160.942169,150.561996,148.206635,142.090927,109.206627,91.206627,105.876053,119.909103,87.917374,42.471096,14.952911,12.917375,11.211587,9.371917,10.857867,12.999190,5.742985,0.563638,0.278513,0.001653,0.159504,0.025620,0.000000,0.204133,0.407439,0.000000,0.000000,0.000000,0.000000,2.594215,0.000000 -601783.755000,4612045.550000,5208,6705,119.570267,177.719025,166.785141,156.305801,141.966965,129.173569,131.710754,129.371918,130.520676,135.702499,135.057861,148.289276,166.305801,186.652908,201.991745,217.305801,219.900848,204.909103,182.710754,162.082657,152.231415,149.619858,144.000015,110.429771,92.909103,107.809937,118.958694,87.165306,41.553738,15.462829,13.090928,14.900844,11.023158,11.938860,14.515718,5.944638,0.903308,0.453720,0.144628,0.138017,0.042976,0.037190,0.097521,0.180166,0.000000,4.466116,0.000000,0.000000,0.000000,0.000000 -601790.155000,4612045.550000,5240,6705,113.079361,179.690918,169.442993,158.740509,141.748779,129.162003,130.385147,128.170273,129.393402,136.566971,134.600021,147.112411,164.624802,184.641342,200.600006,216.178528,218.062820,204.740509,182.004974,160.690918,151.021500,147.905792,143.418198,111.244652,92.963654,108.038040,117.657875,83.517380,40.707458,15.382663,13.038035,10.183486,9.776875,12.057867,11.578528,4.733066,0.624795,0.072728,0.280993,0.100827,0.037190,0.000000,0.071075,0.133058,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601797.755000,4612045.550000,5278,6705,138.088455,182.766144,171.518204,161.063660,143.799194,130.906631,132.815720,132.303329,133.344650,140.278534,137.146301,150.592590,168.055405,186.931427,202.931427,218.468628,221.394241,204.799194,184.286804,164.443832,154.295074,151.038864,145.063660,113.782661,95.319855,111.377701,118.443817,83.906631,39.509933,17.479357,13.187623,14.838034,11.607456,12.147951,13.690098,7.361994,1.355374,0.490084,0.000000,0.010744,0.065290,0.000000,0.313224,0.248761,0.000000,0.000000,0.000000,0.000000,1.432232,0.000000 -601804.755000,4612045.550000,5313,6705,99.056206,147.340500,147.844635,134.811584,121.654556,114.125633,114.786789,113.133896,115.257858,119.266129,121.877693,135.158691,153.828110,172.390091,188.125626,202.447937,207.819839,197.894226,175.803314,154.877701,146.249603,143.109100,138.927277,109.274391,89.472740,104.720673,119.125633,85.390091,41.786800,15.254563,12.629771,11.397534,12.521503,12.956214,14.435553,7.895878,1.198353,0.777688,0.428928,0.309092,0.119835,0.295868,0.227273,0.373555,0.000000,1.509917,1.726446,0.000000,1.694215,0.000000 -601811.555000,4612045.550000,5347,6705,99.156212,142.289276,143.281006,132.958694,119.132240,110.966949,110.619835,111.206612,112.057854,115.520668,119.578522,131.809937,151.173569,170.363647,186.322327,199.785126,205.363632,196.512390,174.314072,154.074402,145.380188,143.247955,138.181839,108.082642,88.504150,104.016541,118.520668,87.264481,40.776878,13.938859,12.562001,10.835552,10.116545,11.757040,16.123158,9.425632,1.101658,0.134713,0.091736,0.148762,0.335538,0.000000,0.806613,0.419836,10.498347,0.000000,1.733058,1.544628,0.000000,0.000000 -601820.755000,4612045.550000,5393,6705,92.932251,137.974380,138.668610,126.668610,114.552902,106.850426,108.263649,106.486786,108.271912,112.007446,115.214058,128.974396,148.379333,166.767761,183.048767,196.635544,203.222321,195.156204,175.189255,155.387589,146.842148,145.982651,140.263641,110.040504,88.486794,109.090096,125.238853,93.891754,43.139690,15.958694,12.751259,12.536381,11.466957,14.800843,16.813240,10.344644,2.569427,0.765292,0.338844,0.203307,0.471902,0.372728,0.397521,0.120662,9.780993,2.637190,3.393389,1.547934,1.096694,3.074380 -601827.355000,4612045.550000,5426,6705,107.508270,136.454559,134.347122,121.413239,108.628113,100.512413,102.190102,100.214882,102.157043,106.471092,110.471092,123.553734,144.256210,163.454544,179.396698,194.330597,202.305801,198.479355,182.776855,165.454544,159.975204,158.239670,156.363647,126.115715,103.644646,126.619850,151.975220,120.925636,57.380184,16.856216,14.214894,16.448776,14.762000,20.704155,28.563658,20.997540,2.774386,1.169424,0.842977,0.550414,0.361985,1.155374,1.231406,0.308265,17.872728,9.469423,8.071075,9.761984,5.355372,5.673554 -601832.555000,4612045.550000,5452,6705,0.018182,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.561159,5.196697,2.633886,0.695042,0.000000,4.500005,20.890924,36.805801,51.066132,46.331421,58.225636,77.975220,85.156212,90.140503,92.386780,91.328110,94.052910,110.510750,61.107441,114.463646,127.738022,160.323975,218.760345,242.589264 -600993.155000,4612035.550000,1255,6755,186.369431,199.559509,197.162827,190.799179,187.981003,190.121490,196.096710,198.080170,203.675217,212.964478,222.385956,236.609100,256.700012,276.460358,293.824005,307.195892,310.377716,293.600861,245.542984,207.286789,192.501663,185.344635,176.336380,133.840500,112.947945,122.865295,131.171082,92.171082,37.642170,16.942995,16.030598,16.624811,15.999191,14.634728,17.138035,11.099189,6.475216,3.582652,4.287611,2.004136,1.749591,2.082648,1.981819,0.710745,17.173555,14.202480,8.609093,9.667770,3.371901,1.970248 -600997.355000,4612035.550000,1276,6755,202.693405,200.503326,198.842163,193.263657,189.990921,192.395889,197.627289,200.371094,205.966141,214.602493,224.123154,237.825638,258.247131,277.817383,294.635559,309.453735,316.445465,304.668610,263.172760,227.924820,212.271927,206.462006,199.718201,155.123154,130.792587,141.718201,153.536377,110.131432,43.916550,18.257042,18.156218,15.270266,15.028944,15.323985,17.337208,13.471917,4.213230,1.621493,2.491742,0.983475,1.147110,1.807442,2.850415,0.476033,3.104133,5.706613,5.154546,8.065290,1.238843,0.000000 -601004.355000,4612035.550000,1311,6755,220.800827,208.354553,200.329758,196.784302,193.139679,192.470245,198.495041,201.817352,206.354553,216.379349,224.759506,240.123154,259.949615,280.296753,298.867004,315.850464,323.858734,317.437256,282.057068,250.346298,236.552917,231.825623,223.990906,181.610748,155.131409,168.817368,186.023972,142.528122,61.693409,22.478531,20.362829,18.141344,19.379358,23.999193,29.900019,18.278530,6.457035,2.331413,2.685129,3.121492,1.703309,1.315706,2.146282,0.981819,9.516530,3.759505,5.735538,3.983471,14.392563,2.079339 -601014.355000,4612035.550000,1361,6755,261.533905,256.947113,224.641312,221.682648,206.418182,204.938843,214.996689,217.947098,223.575211,238.847931,238.079330,255.930588,274.162018,297.881042,316.079346,331.666138,333.682648,321.732239,289.186829,258.137207,244.773544,239.930573,233.509094,192.666122,167.591736,180.418198,194.757034,145.591736,68.988441,25.465307,21.228121,27.104153,20.385145,27.385145,32.352089,23.814066,5.964472,2.585130,1.588433,1.729756,2.835541,0.849588,0.977688,0.815706,4.317356,0.000000,4.290910,4.559505,1.352893,0.000000 -601151.755000,4612035.550000,2048,6755,193.181839,192.537201,184.454559,176.446304,167.851257,164.611588,163.694229,163.991745,165.776871,170.719025,175.917374,190.636383,209.528946,221.966965,232.735550,239.958694,243.297531,240.016541,212.933899,188.702499,178.264481,174.305801,166.909103,136.148773,118.429771,127.347122,135.900848,97.140511,42.603325,18.211592,15.173573,18.016544,15.457870,17.025637,20.906630,16.621506,6.059517,3.341332,3.749594,3.106617,2.203311,2.634713,2.457029,3.341328,6.553720,2.557025,4.301653,11.855373,5.215703,4.038843 -601154.755000,4612035.550000,2063,6755,191.279343,191.130585,184.130585,175.890915,167.626450,159.849594,162.469421,160.742157,163.138855,168.973557,172.915710,188.700836,210.312408,224.717361,236.750427,246.593399,251.816528,253.552078,233.618195,210.023148,198.783478,194.180176,187.800003,151.014877,125.601669,143.609924,168.519012,130.824814,61.419853,20.587620,17.072746,17.411587,18.416546,21.152910,28.289276,22.945475,6.104970,2.329757,2.663641,2.444631,1.452070,1.333059,1.857854,1.638022,4.002480,5.255372,3.444628,0.000000,2.442149,4.266943 -601159.355000,4612035.550000,2086,6755,159.295074,153.160355,152.738861,143.656219,134.722321,128.209930,129.920670,129.036377,132.581833,136.945480,142.838043,161.044647,184.978516,201.796707,215.846268,228.292587,234.705811,241.499191,232.094238,214.887589,204.143814,200.036377,197.763657,158.804977,128.705795,155.433075,207.664490,180.813248,96.433067,22.616549,17.978529,20.489273,24.813242,38.102497,53.895889,47.135555,4.407446,0.337191,0.000000,0.000000,0.000000,0.014050,0.209918,0.373554,4.810745,4.912397,1.620661,1.962810,1.744628,3.542149 -601164.355000,4612035.550000,2111,6755,32.552902,38.281830,32.833073,27.410757,20.828112,18.408276,19.331415,18.598356,18.125631,20.259516,24.094227,34.822327,48.433067,59.739685,70.991753,81.528938,85.573563,91.871910,88.377693,80.793404,76.152908,75.503326,73.318199,51.798359,36.638859,56.878529,107.551247,116.257034,65.946304,7.929764,6.665306,10.708276,21.612413,43.777702,68.174393,59.628948,6.309926,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.618182,0.254546,0.338843,0.000000,0.000000,4.539670 -601459.555000,4612035.550000,3587,6755,183.364471,205.332260,180.584320,169.063660,153.426453,141.922333,139.314072,137.330582,135.719009,137.884308,140.462814,152.748779,170.914062,186.723984,200.594238,214.658707,219.394241,210.675232,188.790939,166.245483,157.452087,154.790939,147.427277,114.007446,100.285965,118.561165,137.007462,108.172737,49.866962,15.470264,13.402497,14.875225,17.070267,22.782661,30.956219,27.398363,12.132244,8.676042,9.741331,8.400832,12.130587,13.207443,18.231415,25.455383,59.542152,45.952072,65.957031,56.490913,56.380165,66.471909 -601483.155000,4612035.550000,3705,6755,89.711594,104.449600,94.185135,78.995064,60.714066,48.780182,42.904152,37.350430,35.482658,34.441341,35.185143,48.714066,69.193405,85.457863,101.226456,114.185135,120.408279,120.003319,115.780174,104.119019,96.449600,96.945465,93.400009,60.424809,38.986794,74.185143,135.226471,128.639679,70.763657,12.164479,8.490929,9.057864,14.330597,26.287622,43.829769,32.466961,1.702483,0.114876,0.000000,0.000000,0.000000,0.000000,0.054546,0.180992,16.185953,6.671076,6.436365,0.424794,3.644629,1.867769 -601489.155000,4612035.550000,3735,6755,110.963654,122.664474,110.912407,95.953728,79.507454,65.391754,57.581837,53.333908,50.168617,48.457874,49.234734,60.664482,80.821510,97.383484,111.532242,124.755386,129.813232,127.928940,120.920670,109.647942,100.350426,100.135551,98.400009,66.441345,43.226471,78.804977,133.871078,123.276047,63.499191,11.312415,8.945475,10.337206,10.818197,22.104151,33.266136,25.397537,1.180169,0.139670,0.000000,0.004959,0.000000,0.000000,0.312398,0.226446,16.863638,13.045457,7.492563,9.126448,13.906613,16.216528 -601495.555000,4612035.550000,3767,6755,129.699188,103.434723,80.773575,65.409935,49.938866,36.116550,30.918201,26.336386,24.621508,25.006630,27.745474,41.418201,62.674400,78.947128,94.211586,108.054558,113.335548,113.492577,110.889267,101.021500,95.145470,95.128937,94.872742,64.211594,41.211590,79.186798,134.963654,129.054565,72.930603,13.820678,8.624812,15.695886,22.013241,37.310764,55.252914,50.525642,4.735545,0.464464,0.093389,0.000000,0.000000,0.000000,0.000000,0.049587,37.950420,27.281822,11.557028,9.252895,13.184299,15.428926 -601581.755000,4612035.550000,4198,6755,82.270264,107.309105,91.681000,76.350426,59.201672,43.416546,39.069435,32.522335,28.902498,27.031425,23.799192,29.684319,40.722328,51.003323,60.507458,73.449600,77.127281,75.986786,72.945473,63.251259,53.771919,53.449600,52.036385,18.717371,5.823150,29.594234,95.846291,104.276047,63.317375,10.105800,4.730598,14.114066,15.425637,30.127293,48.152081,37.021503,1.673558,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.932232,1.891736,3.360331,0.000000,4.466943,0.000000 -601584.555000,4612035.550000,4212,6755,92.912415,117.766136,109.295059,92.204147,74.989273,62.981010,58.509933,51.584316,46.658695,46.113239,44.716545,52.129768,64.369438,73.947952,83.121506,95.567787,99.799194,97.419029,94.129768,83.468613,74.295059,73.857040,73.972748,40.195885,24.160351,51.195885,106.435555,110.336380,60.832249,11.182662,6.724812,13.207453,13.633900,28.845472,44.708282,32.638035,1.465292,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.140496,0.000000,0.000000,1.537190,3.766116,7.066116 -601589.355000,4612035.550000,4236,6755,83.635551,117.601669,110.229767,93.676048,74.213249,63.758701,60.006634,55.196716,51.791759,50.874401,48.419857,56.576881,66.791756,76.849609,85.081017,96.014893,101.196709,99.510757,95.502495,85.733910,77.923988,78.006638,78.618202,49.890930,33.081009,56.634735,110.147125,111.428116,64.568619,9.540510,7.147126,10.555387,15.269440,31.287622,48.469444,41.130600,1.707441,0.064463,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.882645,0.000000,0.000000,1.627273,0.000000 -601597.355000,4612035.550000,4276,6755,72.062820,114.509109,111.013245,96.476051,80.575211,68.409927,66.352081,60.219849,58.029766,58.533897,54.963650,61.971912,71.897537,81.566956,90.881012,102.409935,107.054565,103.550438,100.847954,91.550438,84.228111,85.178535,84.236382,59.021500,41.203323,63.071087,113.682663,113.451263,65.327286,9.784312,7.657870,15.354562,17.856216,31.467787,50.583485,42.021500,1.815706,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.513223,0.000000,5.613224,0.000000 -601603.755000,4612035.550000,4308,6755,65.037201,112.008286,97.008278,84.338860,67.421509,52.785145,50.396713,43.809937,40.892582,39.355392,36.008286,42.586796,52.570267,63.000019,71.057869,82.471092,85.396713,82.545471,79.504150,70.661171,62.132248,63.371922,61.454567,31.546301,16.277702,41.760349,101.413239,109.305801,65.223160,10.728115,5.586796,15.599190,16.749605,33.452084,52.099194,42.397541,2.020665,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.619008,0.000000,0.000000 -601609.755000,4612035.550000,4338,6755,95.198364,172.031418,154.039673,144.180191,125.742157,112.642982,112.056206,107.238022,104.560333,109.246284,104.742157,117.609924,136.105789,153.576859,166.320663,183.684311,188.849594,180.097534,169.874390,147.857880,134.014877,130.436371,124.527283,82.477699,64.337212,92.800003,144.469437,120.717361,60.039688,15.948778,11.320680,13.284314,10.069438,14.930594,18.880186,10.094226,0.784300,0.275207,0.000000,0.004132,0.000000,0.000000,0.055372,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601618.555000,4612035.550000,4382,6755,122.886803,177.399200,162.581009,150.746307,134.994232,119.019020,119.217369,115.176048,114.109932,117.895058,115.068611,129.746292,148.680191,167.118210,182.696716,198.977707,200.614075,191.291763,179.101669,159.192581,146.911591,144.217377,141.663666,102.390930,81.531425,110.151260,156.448776,128.903320,63.837208,18.541342,12.878532,14.577703,12.882662,17.723984,24.760349,12.067781,0.823144,0.487605,0.150414,0.072727,0.128926,0.000000,0.006612,0.013223,0.000000,0.000000,0.000000,1.129752,13.269423,0.000000 -601625.755000,4612035.550000,4418,6755,135.471909,186.715698,164.599991,154.971909,134.335556,121.583473,120.360336,118.492569,117.955376,123.823143,118.294220,132.525620,150.971909,170.277679,186.624786,199.955353,200.790070,189.004959,175.558670,157.244644,144.740509,142.600006,142.690918,103.823158,82.881012,111.509094,152.781830,124.641327,61.550434,18.776051,12.971920,16.622332,13.949604,18.148777,23.219027,17.580181,1.210747,0.198348,0.000001,0.000000,0.042976,0.000000,0.062810,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.176860 -601629.755000,4612035.550000,4438,6755,119.514900,190.316559,167.597549,153.490112,134.713242,122.597542,122.473579,120.514900,120.531425,126.266968,121.671921,135.622330,153.903336,173.390930,189.795883,204.539688,204.622330,193.143005,180.812424,161.291763,149.324814,148.258698,146.118210,107.961182,87.853745,115.382668,154.671921,122.167793,59.448780,17.812416,13.283489,18.399191,11.466132,16.297539,24.677704,13.308278,0.311572,0.240496,0.000000,0.000000,0.000000,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601634.755000,4612035.550000,4463,6755,104.066132,159.661179,161.471085,149.471100,133.066132,123.677704,123.504150,120.446297,121.314064,122.842995,125.809937,139.363663,158.231430,176.421509,190.900848,205.231415,207.842972,200.669434,186.049606,165.421509,154.281021,152.281021,148.909119,114.371918,92.041336,117.206627,150.933914,120.074394,59.942165,16.930597,13.537210,12.641337,11.801669,15.223159,22.414068,11.615719,0.614878,0.090910,0.017356,0.205786,0.000000,0.000000,0.000000,0.153720,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601642.755000,4612035.550000,4503,6755,82.767792,159.492569,164.963654,149.922333,135.600006,126.087624,126.492584,124.550438,124.864487,127.310768,130.905807,143.707458,163.715714,180.368607,196.335541,210.211578,213.591751,206.409912,188.095871,166.765305,156.013229,153.409927,149.963654,115.831429,94.831429,114.500847,142.881012,109.856216,53.748783,18.182661,13.633077,11.522327,13.400843,13.166133,18.253736,9.595055,0.943806,0.229753,0.330579,0.041323,0.000000,0.000000,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,1.214876,0.000000 -601655.755000,4612035.550000,4568,6755,96.132248,157.239700,161.132248,149.694244,133.933899,125.975212,125.512405,123.776871,124.090919,126.636375,130.082672,141.388458,160.570267,178.760345,194.090927,208.090927,212.735550,202.991745,183.628113,161.793411,151.272766,146.958710,142.636398,108.859512,89.165306,108.727280,129.677704,99.157036,45.834732,14.663654,12.966961,8.471087,7.587617,10.154560,12.069438,5.469430,0.757855,0.035538,0.093389,0.017356,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.355000,4612035.550000,4676,6755,98.719025,162.049606,164.966965,153.661179,137.330597,129.479355,129.214890,126.900841,127.727287,130.851257,134.677704,146.768616,167.297531,185.165298,201.809937,217.289276,220.826462,211.776871,191.198364,167.933899,158.281006,154.314072,149.090927,116.644646,95.429771,112.851257,133.685974,100.338860,48.421509,18.723156,13.553738,10.314065,11.319849,13.313239,12.929770,5.121495,1.560335,0.782647,0.200001,0.052893,0.000000,0.128926,0.000000,0.079339,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601694.755000,4612035.550000,4763,6755,103.043816,162.448761,163.349594,152.043823,138.630600,128.002487,128.647125,126.845467,127.101669,130.101669,134.093399,146.952911,165.671906,185.167770,199.605789,214.944641,219.093399,210.432236,188.308273,165.564468,155.002502,151.027298,146.300018,113.093407,93.853737,109.903320,130.952911,96.366127,45.250431,16.138037,13.300018,8.018194,10.209107,10.527288,15.237207,5.153728,0.495870,0.501654,0.109092,0.014876,0.000000,0.000000,0.025620,0.287604,0.000000,0.000000,0.000000,0.000000,1.757851,0.000000 -601707.355000,4612035.550000,4826,6755,111.468605,169.832245,165.947922,155.212402,140.154556,130.286789,130.857040,129.493393,129.303314,132.923157,136.038849,148.873566,168.757843,186.931412,203.113235,218.071915,223.617371,214.319839,191.253723,169.476868,156.600830,153.956207,147.972733,115.179352,94.171082,112.733070,131.460342,99.675217,47.939690,17.776052,13.452085,9.736379,12.911587,13.282660,14.921506,5.946291,1.558682,0.247108,0.170249,0.108265,0.000000,0.000000,0.042975,0.104959,0.000000,1.561157,0.000000,0.000000,0.000000,0.000000 -601717.555000,4612035.550000,4877,6755,107.043823,168.498367,167.324814,155.572754,141.085159,130.068604,129.390930,128.498367,128.671921,133.440506,135.547958,147.969467,167.366135,186.605789,202.473557,217.878525,223.341324,213.498352,189.994217,167.580994,156.143005,151.581024,147.209137,114.291748,93.233902,110.068611,127.977699,96.680183,46.308289,18.229769,13.382663,8.640510,11.045472,10.395059,13.720679,5.019016,0.795871,0.327274,0.076861,0.011570,0.000000,0.000000,0.000000,0.115703,2.266942,0.000000,0.000000,0.000000,0.000000,0.000000 -601730.955000,4612035.550000,4944,6755,122.449600,173.540497,166.904129,156.920670,142.061157,127.912399,129.995041,128.193390,128.821487,132.920670,134.119019,146.507446,166.590088,186.507446,201.234711,218.218185,222.234711,213.152069,188.920670,165.937195,154.722321,151.119019,145.854553,111.755379,92.366951,109.185127,126.680992,95.201668,44.937210,15.609110,13.259522,6.702492,9.140511,9.381832,9.763652,4.818191,1.184300,0.757853,0.109918,0.000000,0.000000,0.000000,0.000000,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601735.755000,4612035.550000,4968,6755,113.280998,161.983490,166.628113,150.000015,136.553741,126.636375,126.785133,124.231415,125.743813,129.371902,131.925629,143.743820,164.181839,181.355392,197.272751,212.578522,216.595062,205.090927,183.636383,160.223160,149.157043,146.223160,140.272751,109.206627,89.297531,106.933899,122.842987,89.735542,43.371918,16.690102,12.752085,12.330596,10.498363,11.505801,12.438033,6.900009,0.455374,0.220662,0.006612,0.155372,0.019835,0.000000,0.142976,0.488431,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601738.555000,4612035.550000,4982,6755,95.928116,163.423996,162.597549,151.027298,136.217377,126.010765,128.167786,125.275223,125.539680,128.200836,130.961166,143.233902,164.597549,182.547958,197.357880,212.671921,216.779358,205.349609,182.771103,161.225647,149.895065,147.581009,140.754562,108.771088,87.547951,104.531410,121.655388,88.126457,41.019028,15.934730,12.795887,9.937206,9.041340,10.118197,12.457870,5.280174,1.023970,0.149588,0.176034,0.085951,0.021488,0.121488,0.066116,0.217356,0.000000,0.000000,0.000000,0.000000,3.535537,0.000000 -601742.755000,4612035.550000,5003,6755,96.371086,166.726471,165.503326,151.685150,137.081833,127.098358,128.577698,125.949600,125.371086,129.205795,131.643814,144.164459,164.594238,182.362823,197.709930,212.205811,217.395889,206.594238,182.858704,161.040512,151.718201,147.552917,140.990921,109.891747,89.759514,106.164474,123.321503,89.379349,41.957870,15.547127,12.817375,10.698363,10.685142,11.140513,11.202497,4.870257,1.037194,0.318183,0.000000,0.009918,0.030579,0.000000,0.042976,0.128927,0.000000,0.000000,1.276033,0.000000,0.000000,0.000000 -601749.755000,4612035.550000,5038,6755,118.571091,172.662003,164.736374,152.389267,137.785965,126.347946,127.777702,126.587616,126.504974,128.893402,131.414062,145.058685,163.430588,182.918198,198.868607,212.645462,216.116547,204.761169,182.075226,161.306625,149.091751,147.554565,140.100006,109.802490,89.504974,104.595879,120.827286,88.719849,41.876881,15.081836,12.736382,9.018196,10.656215,10.962824,13.549603,5.768603,0.792565,0.137191,0.350414,0.000000,0.000000,0.000000,0.080992,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.355000,4612035.550000,5096,6755,108.195877,165.162827,163.220673,153.047119,138.964478,127.898354,129.204147,126.567780,127.476868,131.865295,133.460342,146.146286,165.799179,184.658691,199.956207,215.394241,219.460358,206.972748,184.319839,161.534714,151.658691,149.030594,143.336380,111.014061,92.129761,107.286789,120.542984,88.633904,41.848778,16.371920,13.030597,10.290924,11.046297,10.589272,13.752082,4.544637,1.357855,0.143802,0.145455,0.000000,0.019835,0.429752,0.052893,0.189257,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601779.755000,4612035.550000,5188,6755,137.597534,177.828934,168.580994,156.572739,141.060333,127.721504,129.052078,127.853737,129.043823,134.498367,133.614075,146.754547,164.465302,185.010757,199.952896,213.275208,216.266953,202.977692,180.696701,160.969421,149.886780,147.316528,142.209091,110.771088,92.118195,108.250427,116.688446,85.324806,41.225643,16.742994,12.928119,14.938035,10.785968,12.595057,12.814893,6.844637,1.528103,0.014876,0.312397,0.000000,0.062810,0.034711,0.319009,0.431406,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601787.755000,4612035.550000,5228,6755,127.220673,181.493393,168.807449,157.675217,140.071915,128.625626,129.336365,128.055374,129.691742,137.352905,134.790909,146.832245,164.493393,183.212402,199.253723,214.460342,217.237198,202.551254,182.022324,159.807449,149.328110,147.708267,143.154556,111.981003,93.997528,107.171082,116.096703,80.956207,38.931427,15.366961,13.014069,13.384313,8.612412,10.269437,10.332247,7.139680,0.914052,0.178513,0.076860,0.000000,0.000000,0.000000,0.172728,0.268596,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.555000,4612035.550000,5242,6755,125.097527,189.494217,168.378525,162.593399,142.543808,131.180176,133.527283,131.783478,132.866119,140.841324,137.428101,150.998352,169.411575,189.213226,206.056198,220.990082,222.238022,208.585129,187.304138,165.642975,154.973557,154.039673,147.709091,116.378517,99.361992,113.585129,120.229759,87.023148,42.593407,17.809111,13.428118,16.699190,11.121506,13.790926,13.597536,9.386789,1.303309,0.585126,0.214050,0.165290,0.000000,0.000000,0.150414,0.284298,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601795.355000,4612035.550000,5266,6755,114.325638,180.234711,163.656204,151.664459,134.986786,124.267776,124.763649,124.036377,125.573563,132.705795,131.829758,145.143799,163.557022,183.226456,199.457855,215.647919,218.895859,205.375214,184.482651,164.433060,155.168594,151.986786,146.945465,113.532242,96.383492,113.292572,123.879349,87.433083,42.515720,15.763655,13.358697,15.047126,10.185967,12.041337,14.562000,6.845466,1.665293,0.614878,0.193389,0.042149,0.120661,0.128926,0.409918,0.336364,0.000000,0.000000,0.000000,1.516529,0.000000,0.000000 -601803.355000,4612035.550000,5306,6755,118.847946,144.670258,140.695068,129.670258,114.967781,108.389267,108.761169,107.306625,108.992577,112.678528,116.852081,129.719849,149.422333,168.033890,185.662003,199.678528,206.000839,197.108276,176.488449,157.157867,147.100006,145.306625,140.372757,110.174393,88.752907,107.108276,124.339684,91.868607,44.050430,14.876878,12.761176,13.534728,12.699188,15.195886,16.673573,11.110759,1.531409,0.903308,0.678514,0.139670,0.380993,0.207438,0.938017,0.119009,10.153720,3.914050,0.000000,2.438017,3.951240,1.892562 -601810.955000,4612035.550000,5344,6755,101.602501,132.820679,132.027283,118.366127,107.490097,98.911583,99.101669,98.159515,99.316544,103.068611,107.473572,120.514893,139.961166,157.928101,174.564468,189.457031,196.225632,192.514877,178.407440,162.275208,155.002487,155.647110,153.845459,123.820679,100.275223,124.019020,150.415710,119.952904,58.589279,16.028944,13.985970,15.795885,15.236382,22.623158,30.795889,23.709934,3.688435,0.982647,0.280993,0.039670,0.123141,194.717361,347.373535,590.752930,1053.151245,1102.605713,1320.366089,1417.465210,1471.052002,1458.076782 -600983.155000,4612025.550000,1205,6805,209.400833,208.681824,201.185944,199.119827,193.450409,197.260330,207.301651,210.227280,215.756195,228.855377,238.582642,253.252060,272.797546,292.797546,307.442169,318.971069,321.946289,298.657043,246.293396,206.756195,192.557846,184.202484,170.681824,133.822327,117.392570,118.648766,114.309929,73.640518,32.334728,16.014069,15.516548,12.825637,15.163653,15.393406,12.576877,10.463653,3.704142,4.891746,2.733890,2.750421,1.719836,2.447111,2.865291,1.761158,10.923968,8.453720,17.342978,7.130579,2.604959,4.438016 -600988.955000,4612025.550000,1234,6805,220.920654,212.201645,210.019821,205.391724,200.036346,203.259491,210.995026,215.242966,221.714035,230.606598,240.937180,256.110718,276.309113,297.986786,315.127289,331.300842,336.400024,319.813232,271.226471,230.846268,214.846268,207.052887,196.854538,153.028091,127.937202,137.838043,144.209930,101.573570,42.400024,19.089273,17.895885,15.256218,16.859522,17.171089,14.535555,12.194231,4.240505,3.089261,2.361162,0.814052,0.787605,3.185127,0.815704,1.255376,1.344628,1.242149,1.160331,3.081819,5.037190,0.000000 -600997.155000,4612025.550000,1275,6805,209.557037,200.738861,200.358704,193.366959,187.705811,190.193405,197.011597,200.457870,206.036377,214.482666,222.722336,236.755371,257.185150,276.201660,294.689270,309.763641,316.466125,308.176880,270.416534,235.970245,223.441345,215.879364,208.945480,167.036377,141.639694,153.069443,167.879364,123.160339,53.276051,22.085970,18.995060,15.602497,16.935556,21.596712,25.021505,13.947124,3.742983,2.222319,1.778517,1.314055,2.159508,1.338018,0.755372,0.929753,3.695042,10.212398,2.910744,2.911571,4.463637,8.291736 -601004.355000,4612025.550000,1311,6805,197.592590,197.923172,195.576065,190.873581,185.080185,186.303329,192.857056,196.567780,200.311584,209.642136,217.410736,231.939667,251.898361,271.270264,289.311615,301.600861,305.890106,300.526459,270.460358,241.964462,231.278503,226.121475,220.336365,184.609116,161.096725,171.691757,187.939697,148.534729,70.460350,24.724813,20.030598,19.138037,22.562828,26.064484,35.311588,27.523985,6.236374,1.778517,1.701657,1.008267,1.163639,1.142152,0.586777,0.000000,4.315703,3.185951,1.977686,5.900827,4.715703,6.019835 -601008.955000,4612025.550000,1334,6805,133.129761,133.357040,118.852081,110.812408,107.994232,102.771088,103.952904,101.615715,99.542984,102.921501,105.904976,111.971092,119.919846,128.795883,135.637207,141.736374,143.843811,139.025635,126.298363,113.810760,108.605797,105.457039,99.300018,85.095055,74.881828,83.185966,89.835548,76.033897,38.907455,12.585137,9.027287,10.435551,17.064480,26.915718,35.150433,27.897537,12.722323,12.261164,15.642157,11.354550,11.199177,9.080169,10.278516,8.808267,28.706617,10.827275,18.299177,8.820663,19.071077,24.390083 -601143.955000,4612025.550000,2009,6805,205.136383,199.954559,184.574402,173.574402,163.177704,156.979355,158.665298,158.541336,158.896713,164.491745,169.185974,184.632248,205.582657,219.045471,229.111588,237.962830,239.921509,239.574402,216.574402,193.640518,184.260345,176.896713,171.136383,136.276871,115.466957,129.714890,148.533081,110.318199,48.929768,19.693407,15.557869,20.185141,15.343818,19.521505,23.282661,19.330597,6.464475,4.219017,2.408272,1.832235,1.736367,4.354549,3.215705,1.838020,18.219835,3.569422,9.809919,4.076860,3.525620,8.666943 -601147.155000,4612025.550000,2025,6805,190.598373,183.201675,177.846298,164.689270,153.325638,145.639694,145.829773,144.152084,145.061172,150.614899,153.623154,171.879364,199.416550,213.937210,225.838043,234.895889,240.656219,247.292587,234.573578,209.846298,197.143814,192.986801,187.218201,144.887619,114.490929,138.928940,186.143814,153.242996,72.639687,20.793409,17.019854,18.881836,18.618200,26.263653,35.383488,28.061176,4.538851,1.020664,0.692564,1.005788,0.839671,1.354547,1.541323,0.018182,10.120662,7.287604,7.186778,5.884298,3.557025,4.066942 -601152.155000,4612025.550000,2050,6805,156.364471,169.437210,164.660355,154.792587,146.585968,142.189270,145.048782,144.288452,145.420685,151.858704,157.999191,176.106628,199.800842,216.503326,228.478516,240.412399,246.057022,250.957870,237.222321,220.809097,210.858704,207.883484,201.445480,166.999191,140.536377,164.511597,202.676880,170.619034,89.453728,24.668617,18.313242,21.556217,26.205807,36.685143,52.238861,44.498367,7.825631,0.484300,0.046281,0.190084,0.079339,0.635538,0.340496,0.000000,7.928926,6.605785,2.881819,5.445456,4.160331,3.414876 -601447.555000,4612025.550000,3527,6805,204.486801,215.147949,198.486801,179.379364,163.015717,148.214066,142.652084,136.296707,132.610748,130.957855,130.081833,142.462006,160.503326,178.230591,197.619034,222.495056,229.966141,218.387619,198.164490,169.982666,153.329773,147.891754,144.263657,94.792580,78.478531,106.693398,152.610764,129.090088,57.635555,18.917374,13.114895,16.368612,14.722332,16.643818,24.279360,17.428942,2.724799,2.676039,0.834713,0.958681,0.908266,1.842977,2.557858,3.081823,3.251240,15.633884,6.178513,5.867770,1.405785,2.334711 -601450.555000,4612025.550000,3542,6805,204.071915,214.030594,204.873566,189.261993,179.080170,166.286789,165.733063,161.989273,160.592575,163.807449,166.427277,180.964478,199.501663,218.270264,234.799179,253.857040,262.509918,253.344635,227.154556,202.857040,190.658691,186.559509,180.063644,138.443817,122.700012,141.964478,165.187607,127.047119,56.741344,20.055391,16.369440,14.697537,16.465307,18.315722,24.394238,16.715719,5.196706,3.353727,2.250418,1.655375,1.604137,1.000828,3.439677,5.152073,12.712399,4.556199,7.349587,10.021488,4.341323,0.000000 -601455.155000,4612025.550000,3565,6805,100.524803,102.783478,90.865295,79.383484,67.390923,58.493397,55.741333,52.428104,50.308270,50.746288,50.800007,56.300007,65.507446,73.078529,82.275215,90.990097,94.342163,89.912407,80.031410,67.929771,61.475220,60.376045,56.500011,37.668602,30.609100,43.841331,64.637199,55.777699,24.266954,5.163645,5.136375,11.547120,20.977705,30.050432,46.409935,48.074402,42.970264,46.753735,55.102493,57.938858,64.127289,57.201668,72.885963,69.722328,95.603302,93.972740,97.165291,94.660332,121.830589,107.347115 -601478.355000,4612025.550000,3681,6805,78.835548,107.009933,95.712418,84.282661,64.828117,54.307457,46.952084,41.464481,38.976879,36.828117,37.885967,48.836380,68.175224,84.629768,99.472748,112.505806,116.447952,113.844643,108.960350,96.051254,84.803322,85.753738,83.654564,48.803322,27.819855,63.026463,128.762009,126.852913,69.555389,11.671918,7.604978,9.009104,11.558694,26.440514,40.084316,29.587622,1.137193,0.035537,0.000000,0.073554,0.000000,0.130579,0.028099,0.000000,10.711571,11.833059,5.159505,3.125620,3.971075,3.436364 -601482.155000,4612025.550000,3700,6805,91.585136,114.998367,108.833069,94.262825,78.056221,64.849609,59.097542,53.238041,49.543823,47.766964,48.700848,59.221512,77.362007,93.651253,106.907455,119.692581,121.915726,119.328949,112.791748,100.097534,90.923981,90.287621,90.072739,55.006634,35.337212,69.502502,130.560349,123.023163,66.957047,13.410762,8.188449,9.352080,11.584313,20.942995,32.857868,22.423986,0.835540,0.000000,0.000000,0.000000,0.000000,0.000000,0.262811,0.000000,13.319837,5.809091,3.138843,1.804959,1.749587,0.000000 -601488.555000,4612025.550000,3732,6805,105.214890,120.902496,113.861176,98.034729,81.629768,68.646301,63.150433,56.266136,53.737209,50.737209,49.877705,61.604977,79.257866,94.307457,108.505806,120.257866,123.852913,120.191750,112.654564,100.009933,90.166962,90.737206,87.200020,55.290928,36.125637,70.423157,127.836380,120.447952,63.100845,11.773571,7.927291,8.762824,10.372744,17.945475,28.164482,19.776052,0.619837,0.478513,0.123141,0.000000,0.000000,0.000000,0.110744,0.000000,3.983472,3.077686,3.766116,3.207438,0.000000,3.605785 -601499.155000,4612025.550000,3785,6805,48.457035,39.480183,27.763651,15.253730,6.496701,2.511575,1.193392,0.638018,0.487605,0.361985,0.666944,2.088433,5.775211,9.548768,13.964471,19.135548,21.862822,21.552904,21.209101,17.736372,14.892570,16.085958,15.100008,6.919839,2.410747,11.948768,50.459522,64.102493,40.978527,4.508276,1.372736,12.113235,18.904150,36.634727,58.180180,56.221508,9.550425,2.238847,0.976034,0.157025,0.000000,0.000000,0.000000,0.000000,23.709099,7.709921,7.024797,1.700828,2.203308,7.689258 -601586.155000,4612025.550000,4220,6805,114.761169,158.185974,145.962830,130.731415,115.756203,102.318192,102.169426,94.954552,94.400833,96.028931,94.607445,105.475212,122.524803,135.061996,147.723160,160.838852,165.830597,161.822327,153.946304,140.500015,131.838852,131.566116,127.863647,94.409096,76.004150,99.301659,143.731415,124.433891,65.714890,14.772744,11.623986,14.391751,13.490927,24.521507,37.533073,24.899191,1.210747,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.718182,0.000000,0.000000,2.033885,0.000000,4.214050 -601592.555000,4612025.550000,4252,6805,117.700836,163.428116,151.353745,138.990112,121.114067,109.709106,108.097534,102.642982,101.262817,103.221497,102.204964,112.634727,126.395058,139.419861,150.469437,162.601669,167.031433,162.626465,154.419861,141.262833,134.328934,133.080994,129.436371,99.659508,82.064476,103.634720,139.081009,120.973572,65.328941,15.548779,11.766962,15.808282,12.350430,21.995060,32.494236,24.186796,1.014054,0.000000,0.000000,0.072728,0.000000,0.000000,0.000000,0.004959,0.000000,2.787604,0.000000,0.000000,4.894216,0.000000 -601596.955000,4612025.550000,4274,6805,96.255394,169.545471,150.231415,136.809937,119.355385,108.132248,108.380180,102.132248,101.123985,102.049606,100.909103,111.190102,125.338860,137.801666,149.281006,160.272751,164.330597,159.669434,152.371918,139.768616,131.380188,130.272751,128.090927,98.231422,79.355385,103.396713,140.000015,121.958694,66.933907,15.452911,11.644648,16.113241,13.961175,24.366962,37.049606,24.736382,1.490086,0.014876,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601600.955000,4612025.550000,4294,6805,112.472748,155.895874,144.838013,129.738861,115.466125,102.714058,100.490921,95.821503,94.424805,97.523979,94.375221,103.251251,116.276047,129.474396,139.557022,151.796692,154.193390,149.747116,142.515701,130.928940,122.515717,122.557037,119.309105,91.242989,75.614891,97.028107,137.052887,124.342163,66.094231,17.019028,10.846300,18.203325,16.616547,26.143820,41.284321,29.840513,0.884300,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.267769,0.000000,0.000000,0.000000,0.000000,0.000000 -601605.155000,4612025.550000,4315,6805,104.199188,156.849609,136.915726,124.047943,106.700844,92.775223,91.890923,86.204971,84.618195,86.196709,82.833069,90.419846,102.659515,115.725632,125.783478,137.337204,141.155396,136.452896,130.990082,119.039673,110.609932,109.849602,107.254562,76.444641,59.816544,84.659515,130.965302,122.659508,69.485962,14.257044,9.750432,16.786797,15.614068,28.073576,42.593407,33.246300,0.898350,0.004132,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.420661,0.000000,0.000000,0.000000,2.047108,3.694215 -601610.955000,4612025.550000,4344,6805,121.076874,177.176056,158.184326,147.828949,129.754562,115.423981,117.374397,113.184311,114.019020,118.448776,115.448776,128.275223,145.762833,163.250443,177.465317,193.085144,196.506622,189.564484,181.258698,165.630600,152.696716,153.101669,148.663666,110.258690,89.118195,116.266960,157.564484,129.779358,67.556213,20.073572,13.514895,20.077705,15.786796,19.850433,26.371920,20.285141,0.685127,0.039670,0.045455,0.012397,0.135538,0.000000,0.000000,0.000000,0.000000,1.343802,0.000000,1.131405,1.141322,0.000000 -601620.355000,4612025.550000,4391,6805,141.017365,192.455383,172.290100,161.852081,142.463654,131.447113,130.628937,129.628937,129.934723,136.909927,131.984314,146.529770,164.711578,183.926453,198.967789,215.802490,217.207458,205.513229,189.347946,171.314896,161.017365,157.777695,153.190918,117.223976,97.752907,120.298363,146.562820,112.108276,55.232250,19.247953,13.926465,19.009935,13.025637,15.849605,20.261173,9.807453,0.521492,0.142150,0.181819,0.307438,0.033058,0.000000,0.000000,0.152894,1.559504,0.000000,0.000000,0.000000,0.000000,0.000000 -601631.755000,4612025.550000,4448,6805,92.647133,156.233902,163.167786,147.878540,135.845474,126.490105,127.366135,125.242172,125.217377,127.895065,130.961182,144.605804,164.118210,181.837219,197.217377,211.382645,215.680176,208.580994,188.539688,168.324814,157.333084,155.126465,149.663666,116.556221,95.465309,115.647133,140.952911,106.795891,50.167786,18.069439,13.605804,10.416542,9.589270,11.662825,15.400019,7.781004,0.917359,0.325621,0.020661,0.121489,0.000000,0.000000,0.100000,0.021488,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.155000,4612025.550000,4505,6805,94.262001,159.856201,163.938858,149.996704,136.566956,128.104156,128.046295,125.128937,125.806625,127.988449,131.996719,144.360336,163.112411,180.434708,196.162003,211.178528,215.517365,206.847946,186.930588,166.029770,155.112411,151.252899,147.327286,112.624809,93.203323,112.955383,135.980179,104.071091,48.252914,17.705803,13.393408,11.168612,12.860347,11.785965,15.926464,6.704144,1.054549,0.061985,0.045455,0.128099,0.000000,0.332232,0.000000,0.031405,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601659.355000,4612025.550000,4586,6805,107.795067,156.307449,162.571915,150.117371,135.952072,127.125648,127.026459,123.505806,125.737213,128.092590,131.357040,143.472733,162.290924,181.770264,196.365295,211.514053,216.414886,207.332245,187.514053,165.249603,154.290924,150.728943,146.018188,112.505806,91.728951,111.489273,132.456207,100.307465,45.423157,15.554564,13.274399,9.281832,10.973569,9.550427,13.825636,6.060339,1.636367,0.602481,0.000000,0.000000,0.000000,0.000000,0.000000,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601677.555000,4612025.550000,4677,6805,102.176048,164.837204,163.076859,150.473557,138.010757,130.457031,128.506622,126.911575,127.754555,130.704971,134.704971,146.729752,165.374390,184.936371,200.820663,216.233887,219.142975,210.498352,188.969421,167.655380,157.093399,154.010757,147.754547,115.539665,94.746277,112.043800,133.630585,100.275208,49.316547,17.492580,13.432250,8.118195,11.758695,11.648776,12.339686,6.000837,0.981822,0.116530,0.172728,0.032232,0.014876,0.199174,0.023141,0.068595,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601688.355000,4612025.550000,4731,6805,108.618195,160.064468,166.411575,153.304153,139.535553,129.791748,128.783493,128.097534,128.626465,132.452911,135.014893,146.990112,166.750427,185.419861,201.056213,215.378540,221.155396,210.948776,190.452911,167.064468,156.981842,152.849609,149.072754,114.940514,95.560356,113.461174,133.469437,99.998367,47.345474,16.197538,13.552086,7.315715,11.286794,12.271091,14.137207,5.901663,0.998351,0.291737,0.530580,0.107438,0.000000,0.000000,0.131405,0.092562,0.000000,0.000000,0.000000,0.000000,1.376860,2.152066 -601700.555000,4612025.550000,4792,6805,113.046295,163.641342,166.153732,156.087616,142.029770,131.616547,131.294235,128.905792,130.971909,133.897537,137.054565,149.947113,168.566956,188.624802,204.757034,219.930588,223.947113,215.062820,192.732239,170.996704,159.409927,155.947113,150.236374,116.781830,95.145470,113.633072,132.839676,100.707451,49.261177,18.083488,13.657870,8.651253,13.566960,13.907455,15.779356,7.856211,1.528930,0.088431,0.262811,0.209918,0.000000,0.000000,0.000000,0.076033,1.450413,0.000000,0.000000,1.132231,0.000000,0.000000 -601717.555000,4612025.550000,4877,6805,113.278542,169.625626,164.080170,155.088440,140.303314,128.509933,129.923157,127.625641,127.931419,133.898361,135.104980,148.675217,166.881821,186.584305,202.708267,218.014053,224.295044,214.724808,191.121490,168.914886,157.600830,153.419022,148.245468,114.898361,93.402496,111.402496,127.650421,97.716545,45.683495,17.168615,13.476878,8.804973,10.700017,12.381008,13.085141,6.495050,1.456205,0.483473,0.047934,0.198348,0.027273,0.000000,0.000000,0.195868,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601731.955000,4612025.550000,4949,6805,115.569443,169.114899,166.536377,152.205811,138.214066,127.585968,129.247131,127.668617,128.742996,131.015717,134.205811,146.371094,167.057037,185.809097,200.652069,216.164459,220.478516,208.387604,185.635544,164.693405,153.263657,149.891754,145.172729,112.090103,92.635559,108.214066,124.701675,91.718201,44.048775,16.828943,13.197539,11.682659,11.367785,12.418199,13.855389,4.739677,0.933061,0.450415,0.419010,0.078513,0.010744,0.000000,0.061984,0.142149,0.000000,2.080992,0.000000,0.000000,0.000000,0.000000 -601740.355000,4612025.550000,4991,6805,104.033073,164.355392,164.545471,151.107452,136.958694,126.537209,128.611588,125.247948,126.115715,129.371918,131.636383,144.842987,164.710754,182.975220,198.719025,214.851242,219.008270,207.851242,183.752075,163.074402,152.396713,150.132248,142.909103,110.363655,91.000015,106.793404,122.289276,89.561996,41.694237,15.412416,12.991755,12.237206,11.127290,12.181010,13.483487,5.086786,0.787606,0.229754,0.328926,0.064463,0.011570,0.119835,0.303306,0.461985,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601749.955000,4612025.550000,5039,6805,120.060349,172.589264,164.266953,153.035538,137.804138,129.779358,129.341339,128.647125,127.787621,131.118195,133.093399,147.258682,167.432251,186.432236,200.721497,215.655380,221.473557,209.713226,185.961166,163.209091,153.490082,150.498352,145.845459,111.547951,92.209106,108.713234,122.647125,89.300018,42.977699,17.474400,13.258697,13.169439,12.004150,13.413239,13.216547,4.738025,0.814052,0.613225,0.089257,0.007438,0.019835,0.000000,0.192563,0.185124,0.000000,0.000000,0.000000,2.352893,0.000000,0.000000 -601764.155000,4612025.550000,5110,6805,121.967781,174.356216,165.480179,155.083481,138.554565,126.562820,128.711578,127.777702,127.207451,131.852081,132.976044,145.835556,163.447113,183.223984,198.951248,212.488434,215.918182,203.695053,182.009109,160.100006,149.876877,148.347946,141.918198,110.843811,91.777702,106.661995,118.562820,86.347946,41.223988,16.036381,12.901671,12.854562,11.933075,11.943818,13.440512,6.204142,0.955374,0.140496,0.062810,0.076860,0.105786,0.000000,0.103306,0.022314,0.000000,1.542975,0.000000,0.000000,0.000000,0.000000 -601781.155000,4612025.550000,5195,6805,125.622337,186.192566,169.341324,157.936371,141.415726,129.506638,132.109924,130.539688,132.043823,138.895050,136.762817,149.746307,168.217377,187.291748,203.680176,219.060349,222.374405,208.200851,186.390915,165.779343,156.738037,154.490112,149.118210,116.324806,99.159523,113.886795,123.547958,88.101677,42.952911,17.057869,13.556217,14.928944,12.947950,14.285141,13.900018,7.070260,0.814878,0.853721,0.000000,0.119009,0.085951,0.000000,0.258679,0.525621,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601790.155000,4612025.550000,5240,6805,124.152908,154.425629,149.252075,136.268616,122.177704,112.417374,114.747948,113.020676,115.334724,119.194229,121.508278,135.971085,154.648773,173.070267,190.128113,205.739685,210.756210,202.607452,182.772751,163.995880,155.888443,154.111588,150.045471,117.888443,97.111588,117.508278,135.004150,100.227287,48.309937,18.123985,13.640514,14.038858,14.071091,16.914894,18.889273,13.393405,2.554551,0.581820,0.511572,0.089257,0.000000,0.158678,0.430579,0.146281,6.905786,1.380992,0.000000,3.540496,0.000000,1.957851 -601794.755000,4612025.550000,5263,6805,114.107452,138.688431,134.142975,120.506615,108.333069,99.985962,100.630592,99.663651,100.564476,105.176048,108.663643,121.804146,142.861984,160.556198,177.696701,192.316528,200.919846,196.630585,181.837204,165.316528,158.539673,158.440506,157.027283,125.514885,103.200844,125.663643,154.961166,123.324806,59.944653,17.873571,14.275226,15.471092,14.714068,21.547125,28.995886,23.495058,2.452898,0.855374,0.305786,0.152893,0.114876,0.749589,0.583472,0.005785,8.040497,4.795868,0.000000,5.994216,3.823967,4.778513 -600983.155000,4612015.550000,1205,6855,208.739685,215.359497,203.723145,203.326447,199.855377,201.904953,208.557846,213.086777,220.318176,230.243805,241.557846,256.318207,277.533081,296.210785,314.252106,328.136383,331.037231,315.409119,266.425629,227.995865,216.086777,206.392563,193.409088,155.714874,133.491745,138.590927,137.698364,94.541328,38.723156,19.640516,17.582663,15.102497,16.299191,17.242994,17.976877,9.569435,5.031414,4.961164,2.133888,1.489260,2.141325,3.155375,0.932232,0.357026,9.015704,3.579339,2.052893,7.011571,1.172727,4.471075 -600987.355000,4612015.550000,1226,6855,214.138870,211.899185,206.031433,201.800018,196.403336,199.791763,206.370270,209.262817,213.287613,223.519012,233.221497,248.742157,268.485962,288.163635,304.362030,317.560364,322.180206,308.833099,264.006622,228.436371,215.965302,207.031433,195.800018,155.932251,135.312408,143.072754,149.502502,105.634727,46.196712,20.626465,17.800018,16.819853,15.500844,17.080183,20.984314,12.224811,3.820669,3.436370,1.792566,2.587607,1.197522,2.717358,0.390909,0.588432,6.723141,2.482645,1.082645,8.173554,1.227273,0.000000 -600993.155000,4612015.550000,1255,6855,227.261169,208.905792,202.682663,196.666122,191.004974,191.657867,198.517365,201.889267,206.236374,213.930588,223.352081,237.905792,257.558685,274.823151,290.261169,304.484314,310.071075,302.385132,268.095886,237.633072,226.409927,220.343811,213.145462,177.682663,156.575226,165.343811,175.442993,131.864471,62.715721,22.500847,19.376881,20.012415,18.334730,23.004152,27.985144,20.645473,5.374390,2.251246,2.819841,0.822317,2.741325,2.852071,1.837191,0.626448,1.351240,8.010744,8.196695,4.861984,9.387605,8.228100 -601138.755000,4612015.550000,1983,6855,172.766953,187.519012,181.246292,170.171906,158.122314,152.502487,153.618195,152.229752,155.056198,160.279343,164.527283,182.642975,206.948761,221.692566,232.915710,244.031403,248.180176,251.114044,233.923981,210.229752,198.609924,192.758682,186.163635,147.973557,120.981827,141.874390,173.750427,136.304138,61.651257,19.042170,16.923986,18.215719,15.924809,20.983490,29.956219,20.585970,5.704142,1.257029,1.792567,2.064467,0.403307,1.532233,0.276860,2.058681,7.605785,9.954547,11.097522,4.992563,8.764462,6.324794 -601143.755000,4612015.550000,2008,6855,126.079353,136.675217,125.620674,114.899178,100.543808,94.470261,94.476868,91.625633,91.162819,95.402489,98.848770,115.931412,139.155380,151.816528,162.312408,172.039673,176.485962,180.386780,174.791748,159.114059,149.064468,144.625641,138.709091,106.246292,83.566132,106.701668,162.770248,148.179367,80.658684,17.876877,12.609935,18.323984,21.890928,34.675224,51.534733,45.485142,5.190092,0.657852,0.047934,0.053719,0.000000,0.290909,0.960331,0.380166,3.877687,3.212397,4.005786,1.808265,3.348761,1.023967 -601446.955000,4612015.550000,3524,6855,273.798370,217.426453,194.666122,173.575226,157.757034,144.856216,141.707458,135.558685,134.054565,136.203323,136.484314,150.434723,169.376877,185.806625,200.120667,216.376877,219.442993,206.575226,183.095886,157.847946,145.955383,141.319016,133.418198,97.343826,82.310768,103.649605,125.137199,94.881004,43.583492,15.830597,12.128944,15.366134,12.246297,14.570265,17.333076,17.361174,6.985961,5.118189,2.754551,3.423147,4.571080,5.564467,3.592567,5.487612,25.851242,28.430582,17.667770,15.872729,9.605785,18.264465 -601482.155000,4612015.550000,3700,6855,79.957863,99.690102,91.772743,75.871910,61.458694,46.020676,40.152908,33.747952,31.169439,29.673573,29.665308,42.615719,62.855389,79.648773,94.789276,107.979355,110.995872,109.409103,104.681831,92.623985,81.789276,82.169441,77.772743,43.987621,21.827291,57.301670,127.632248,127.309937,70.409103,12.900018,7.070268,10.333899,12.985140,25.405804,40.847122,29.070267,2.564467,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.065289,7.626447,9.751241,1.404959,0.000000,4.423141,0.000000 -601488.555000,4612015.550000,3732,6855,85.385979,113.877693,105.183487,90.034737,73.257866,59.861179,54.514072,48.166965,43.687626,41.885971,41.712418,53.687626,73.373573,89.869431,104.927284,116.332245,120.596703,118.390091,110.224800,96.183479,84.894226,84.365311,81.381844,47.654568,27.456217,61.390106,128.390091,128.166946,68.968620,14.553736,7.398366,11.657866,14.109933,22.199190,35.216549,26.841339,0.781820,0.000000,0.061984,0.000000,0.000000,0.000000,0.000000,0.051240,3.826447,3.780166,6.447935,2.661984,3.579340,0.000000 -601495.155000,4612015.550000,3765,6855,80.101669,96.266960,96.010757,77.572739,62.060349,49.828945,41.911594,36.019032,32.448780,29.754564,29.638861,42.787624,63.738041,80.498360,95.333069,107.366127,110.977699,109.647125,104.572739,92.308281,80.928116,82.291748,78.481834,43.721512,21.911589,57.837208,126.200844,127.366127,71.341347,12.952083,7.134730,10.358692,11.537207,24.695887,39.233906,28.011587,1.337193,0.012397,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,10.239672,7.775208,4.219835,3.282645,1.494215,1.747934 -601500.955000,4612015.550000,3794,6855,35.807449,34.003323,20.119024,7.252076,1.453722,0.195042,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.079339,0.271075,1.147110,2.100830,2.569425,2.487607,2.554549,1.314878,0.817357,0.762812,0.563638,0.000000,0.000000,0.161984,26.326464,46.979359,33.185970,3.667777,0.051241,10.411584,15.121501,31.574400,49.871922,51.566135,10.063647,1.566945,0.114877,0.012397,0.000000,0.000000,0.695868,0.000000,21.125628,6.290086,3.352070,0.352067,2.795871,6.214877 -601576.355000,4612015.550000,4171,6855,82.173569,142.566971,124.426460,112.261169,91.203316,77.277710,74.872749,67.401672,64.633072,63.641338,61.104149,72.054565,91.153732,106.302490,120.633072,140.004990,146.781845,140.930603,135.550430,117.467781,102.054558,100.442986,98.054558,49.261177,32.228119,63.624809,133.823151,130.062820,73.021507,14.998364,8.914069,13.247123,15.209934,24.121506,37.385147,30.419853,0.500829,0.023967,0.060331,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.355372,2.707438,1.857852,2.017356,0.000000 -601580.155000,4612015.550000,4190,6855,121.712418,151.690918,140.715714,125.401672,106.252914,94.707458,90.757050,85.327293,82.550438,82.583488,80.509109,92.319031,111.145477,126.657875,141.955383,159.881012,164.798355,159.302490,152.302490,135.492569,122.633080,121.228119,118.145477,72.153740,53.790104,84.029770,145.930588,133.492584,70.856216,17.040514,10.740515,15.916547,15.575225,26.872746,36.641342,30.244648,1.519839,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.200000,1.847108,8.153720,0.000000 -601585.955000,4612015.550000,4219,6855,124.945473,159.009109,146.347946,136.513229,118.422333,106.298370,104.323158,97.728119,96.009109,97.554565,95.141342,108.042168,125.819023,140.009109,154.066956,168.620667,173.438858,168.893402,161.240509,146.223984,135.323151,133.794235,130.009109,90.257050,70.595886,97.579361,147.645462,131.207458,68.976051,17.815722,11.819027,15.863655,16.120680,24.672747,33.992580,23.890099,0.667772,0.098347,0.000000,0.000000,0.000000,0.000000,0.000000,0.022314,0.000000,10.908266,0.000000,2.110744,3.655372,0.000000 -601592.955000,4612015.550000,4254,6855,126.286797,166.761154,147.471893,134.992569,118.257050,105.157867,103.174393,98.604156,96.951263,98.843811,95.356216,107.149597,124.645477,138.372726,152.827271,167.215698,170.612396,165.364456,158.711563,143.166107,133.381012,132.356216,128.554565,90.025642,70.290100,97.356209,146.438843,127.488441,66.554565,15.015720,11.686797,14.308282,13.090100,21.964481,32.785973,22.968611,0.567771,0.080166,0.126447,0.079339,0.000000,0.000000,0.042149,0.019835,5.404959,2.908265,0.000000,0.000000,0.000000,0.000000 -601595.955000,4612015.550000,4269,6855,121.114067,168.651245,151.014893,138.899200,121.411583,107.915718,106.295883,100.502495,99.849602,101.932243,99.733902,111.601669,128.221497,143.419861,156.411575,171.287613,175.651245,167.725632,161.692566,148.114075,137.461182,135.089264,131.890930,94.560349,74.353737,101.733902,146.957047,129.932251,67.948776,15.783488,11.990101,17.876053,13.198364,22.987623,34.279358,25.388449,0.724795,0.015703,0.000000,0.003306,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.234711,0.000000,0.000000,0.000000 -601600.955000,4612015.550000,4294,6855,136.598343,166.548767,149.904129,136.697540,119.895889,107.135559,107.466133,102.606628,101.755394,106.523987,101.631424,114.201675,130.433075,145.557022,157.044632,171.722321,174.292572,169.887604,161.424789,148.383469,138.102493,136.581833,133.400024,98.259521,77.871094,105.110764,147.490906,128.771927,69.515724,16.583490,12.127291,17.526464,12.662827,22.457870,35.325638,24.027290,1.453722,0.039670,0.107438,0.000000,0.000000,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601609.355000,4612015.550000,4336,6855,121.406631,179.976852,157.761993,147.150421,127.894234,115.191742,113.960342,111.026459,111.348770,117.150421,112.026459,125.216537,142.439697,157.935547,172.885941,188.001663,191.571915,182.753708,174.571899,158.877701,147.902496,146.431412,142.290939,105.638023,87.241341,113.241333,151.836380,128.456223,64.877701,16.502497,12.935556,15.642992,12.169438,21.264481,29.935556,16.767786,1.078514,0.098347,0.116529,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.938017,0.000000,0.000000 -601621.955000,4612015.550000,4399,6855,94.217369,154.047943,158.990082,146.585144,133.039688,123.295883,123.180183,119.849602,120.874397,122.444641,125.841339,137.923996,157.766953,174.948761,189.733887,205.370255,210.023148,203.923981,189.642975,169.791748,158.023148,155.444641,150.981827,115.642990,93.328941,117.221504,152.791748,124.733902,61.362003,18.894234,13.725638,11.828942,11.923158,16.485142,21.385971,12.482662,0.892566,0.604960,0.262811,0.051240,0.000000,0.000000,0.021488,0.039670,0.000000,0.000000,1.793389,0.000000,2.312397,0.000000 -601639.555000,4612015.550000,4487,6855,99.254562,159.804153,162.605804,145.787628,134.060349,125.812408,125.721504,122.903320,124.200844,126.200844,129.820679,142.473572,161.746307,180.911591,197.142975,211.936371,217.498352,209.068604,188.291748,167.721512,155.738037,154.415726,148.572754,114.539680,94.184311,113.399185,138.928116,105.184311,50.324814,16.122334,13.506631,10.095056,9.838858,12.649604,14.193405,6.790092,0.658681,0.356200,0.069422,0.182645,0.000000,0.128926,0.000000,0.060331,2.680992,0.000000,0.000000,0.000000,5.233058,0.000000 -601659.355000,4612015.550000,4586,6855,86.951263,159.050430,160.405792,148.835556,135.926453,126.595879,127.381012,124.918205,125.447128,127.992584,132.116547,143.868607,163.058685,181.248779,197.926453,211.992569,216.471909,208.174393,188.000839,168.223984,157.645462,154.447113,150.554565,118.248779,96.620682,118.414070,142.918198,110.587624,52.678532,18.338861,13.686796,10.237205,11.819024,13.458694,17.557043,7.361996,1.228104,0.287605,0.053720,0.000000,0.000000,0.000000,0.000000,0.307438,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601675.155000,4612015.550000,4665,6855,103.829773,162.284317,164.813248,152.193405,138.044647,128.771927,128.135559,127.416550,127.887619,131.127289,135.110764,147.714066,167.598373,186.276031,202.433044,217.796677,222.970230,214.672714,194.110733,170.540512,161.515717,158.697540,152.945480,119.358696,98.168610,117.928947,139.094238,105.325630,49.639694,18.000019,13.904152,7.965300,11.929769,11.575222,15.266133,7.199184,0.731407,0.428100,0.200001,0.220662,0.000000,0.207438,0.055372,0.120662,2.130579,0.000000,0.000000,0.000000,0.000000,0.000000 -601680.955000,4612015.550000,4694,6855,103.015717,166.974396,163.693405,152.627289,139.850433,129.800842,130.734726,129.809097,130.032242,133.561172,136.585968,149.214066,167.916550,187.379364,203.594223,218.619019,223.222321,214.544632,192.255371,169.742996,159.916550,154.850433,150.718201,117.759514,96.966125,115.313232,133.784302,101.685135,49.685143,18.996714,13.701673,9.912411,12.584315,12.971091,15.385968,8.734721,1.243806,1.018185,0.320662,0.290083,0.142149,0.015703,0.099174,0.040496,0.000000,0.000000,0.000000,0.000000,2.557025,0.000000 -601684.955000,4612015.550000,4714,6855,108.400841,158.896698,164.136368,153.623962,138.599167,129.285141,129.028946,128.136383,128.772751,132.219025,135.995880,147.805786,167.491730,186.128098,202.194214,216.690094,222.136383,212.880188,190.161163,167.971085,156.921494,153.252060,147.954544,115.640511,95.012413,112.417374,130.962830,97.913239,47.665314,16.879356,13.450432,10.330593,10.895885,12.819851,13.609109,6.118191,1.520666,0.550415,0.060331,0.040496,0.000000,0.000000,0.053719,0.208265,0.000000,4.452893,0.000000,0.000000,0.000000,0.000000 -601690.555000,4612015.550000,4742,6855,108.103325,161.086777,164.929749,154.938019,140.648758,130.946289,130.293396,129.169434,130.681824,134.103317,137.012390,150.086777,169.607437,188.698364,204.557846,219.095047,223.028931,214.731400,192.822327,170.210739,159.566116,156.359497,150.681824,119.425636,97.714890,114.607452,134.276871,100.194229,48.756218,18.014067,13.698365,9.225633,12.211587,13.114891,13.235554,8.201664,0.559507,0.260332,0.209919,0.059505,0.018182,0.000000,0.000000,0.077686,3.102479,0.000000,0.000000,0.000000,0.000000,0.000000 -601699.555000,4612015.550000,4787,6855,107.028122,168.763641,163.309097,152.945435,140.449600,129.350433,129.176865,127.590103,128.689270,132.862823,136.292572,148.466110,168.160339,187.441330,203.383484,217.879349,223.482651,214.135544,191.854553,169.763641,157.978516,155.523956,149.309082,117.317375,95.152084,112.838036,129.474396,99.366959,46.895885,17.092579,13.573574,8.462822,11.489272,12.553734,12.476875,5.194223,1.711575,0.432233,0.145456,0.140496,0.028099,0.000000,0.000000,1.142150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.355000,4612015.550000,4851,6855,107.960350,167.935562,166.522324,153.671082,140.778534,129.018188,129.290909,129.927277,128.943802,134.547104,136.266129,148.332245,167.158707,188.604980,204.158707,219.100830,224.447937,215.555374,191.464493,169.125626,158.414886,155.621490,150.018188,116.423141,96.266121,112.480995,128.522308,97.638023,45.877705,17.138037,13.638035,7.408278,10.627288,14.227288,12.612413,6.685960,1.445459,0.461985,0.290085,0.015703,0.082645,0.000000,0.000000,0.341323,0.000000,0.000000,0.000000,1.566942,0.000000,0.000000 -601722.955000,4612015.550000,4904,6855,100.957870,168.718185,163.693390,149.800827,135.792587,126.172745,127.718201,125.486786,126.982666,128.933075,132.338028,145.470245,166.214050,183.833893,200.007446,216.081818,219.916534,209.040497,186.660339,163.767776,153.189255,150.701660,143.990906,112.197540,91.949600,108.329773,123.561180,91.858688,42.701675,16.552086,13.090101,10.633073,10.352082,11.545470,13.262001,6.163646,0.833061,0.376035,0.330580,0.257025,0.038017,0.262810,0.165290,0.058678,1.440496,0.000000,1.723141,1.174380,0.000000,0.000000 -601731.955000,4612015.550000,4949,6855,115.928116,169.242188,165.556213,152.225632,138.052078,127.457039,130.076859,127.200844,127.225632,130.713226,134.134720,146.423981,166.151260,184.597565,201.300034,215.134750,219.564499,208.233917,185.068634,164.250443,153.514877,151.771088,144.390915,112.589272,93.399185,109.531418,123.440514,91.200844,44.531429,16.959522,13.126465,12.892578,11.433902,12.764481,14.309110,5.375216,1.793394,0.589258,0.412398,0.023141,0.000000,0.000000,0.492563,0.026447,0.000000,0.000000,1.198347,0.000000,0.000000,0.000000 -601734.955000,4612015.550000,4964,6855,114.386780,169.461166,161.014877,151.593399,136.634720,125.816536,126.973557,124.882652,126.097527,128.114059,131.436371,145.353729,164.808273,182.750427,198.849594,214.659515,218.138855,206.047943,183.816528,161.543808,151.800003,149.188431,142.527283,111.155380,91.709099,106.766945,120.543808,87.973572,42.105808,15.470265,12.957044,11.585139,11.904148,12.727290,12.361999,6.643811,1.437194,0.385125,0.188431,0.063637,0.000000,0.000000,0.171901,0.735538,0.000000,2.980165,0.000000,0.000000,0.000000,0.000000 -601737.555000,4612015.550000,4977,6855,119.047127,172.567780,168.195877,154.460342,138.633896,128.385971,130.369446,128.195892,128.319855,130.981018,133.691757,146.931412,166.171082,185.501663,200.931412,216.873550,220.691727,208.237183,185.195877,163.220673,153.104965,149.931412,144.972733,112.906631,93.336380,109.253738,122.146309,89.997536,42.774403,16.575224,13.179358,10.381833,12.622332,12.882662,14.352911,4.661165,1.204136,0.467771,0.607441,0.000000,0.009091,0.000000,0.094215,0.204959,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601741.955000,4612015.550000,4999,6855,99.348778,166.191757,167.042999,151.191757,137.323990,126.968605,128.100830,126.257858,126.753731,129.844635,132.976868,146.125641,165.133911,183.200027,198.604980,213.753738,218.762009,204.505814,183.728958,160.588455,150.844650,150.026474,142.654572,111.018196,91.150429,105.051254,120.042984,87.547127,41.952084,14.519027,12.968614,11.447124,10.287620,14.211588,12.068611,6.236373,1.471904,0.169423,0.344629,0.000000,0.021488,0.000000,0.181819,0.314877,0.000000,2.970248,0.000000,0.000000,0.000000,0.000000 -601749.155000,4612015.550000,5035,6855,112.676880,171.387604,163.817352,151.784302,136.784317,126.263649,128.321503,125.594223,127.015724,131.090103,132.065308,145.933075,164.255371,183.701660,199.073563,213.916534,217.453720,206.817352,183.346283,161.461990,150.767776,148.156204,143.809113,111.552902,92.519852,107.139679,119.817368,86.866959,41.156219,15.390926,13.073573,11.511586,10.995885,11.406629,12.199189,6.550422,1.038846,0.325621,0.066116,0.163637,0.030579,0.039670,0.204959,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601761.155000,4612015.550000,5095,6855,114.385963,180.815689,165.997513,153.964478,138.344635,125.724800,127.931412,127.204140,127.857033,132.782654,132.534714,144.319839,162.352905,182.600815,197.311584,210.857040,213.906616,201.551254,180.815689,159.956207,149.997528,147.576050,141.972733,110.733070,92.311584,107.509926,118.369431,85.518196,39.857048,15.724813,12.906631,13.085968,10.369438,12.727290,13.784314,5.899184,0.849589,0.165290,0.007438,0.314050,0.033058,0.000000,0.647935,0.042150,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601774.155000,4612015.550000,5160,6855,140.578506,184.611572,167.421494,155.272720,138.925613,126.776878,127.785141,128.099182,128.834732,136.396713,134.619858,148.165283,165.818176,186.413223,203.008270,218.297516,220.008270,207.603302,190.462814,171.669418,160.851242,160.702484,156.181824,122.702492,102.520676,122.570267,135.132248,100.603325,46.685970,18.000845,14.198366,18.014065,11.524809,15.728942,17.855389,8.777699,1.117358,0.595043,0.045455,0.122315,0.054546,0.148761,0.000000,0.492563,1.499174,0.000000,0.000000,0.000000,0.000000,0.000000 -601781.955000,4612015.550000,5199,6855,97.858688,122.538025,123.562813,112.637199,95.661995,90.992577,89.215714,88.843811,89.207451,93.166130,96.703316,109.075218,126.042152,141.463638,156.604126,170.149582,176.075211,171.339661,160.728088,146.414047,140.372726,141.670258,140.463654,111.587616,91.273567,114.331421,147.199173,125.281830,65.215721,17.774399,12.769440,16.708281,17.294233,26.204977,37.397537,30.616549,3.957032,0.901655,0.571076,0.000000,0.000000,0.000000,0.506612,1.466116,16.490910,7.838017,5.894216,0.619835,1.792562,1.920661 -601786.755000,4612015.550000,5223,6855,37.109100,41.475216,38.838028,30.050423,24.090092,20.242983,19.494221,18.301661,17.972733,18.865297,19.573561,23.541330,29.739677,36.090916,42.466125,49.244640,51.932243,51.492577,49.219849,44.250427,40.376869,41.156204,41.327282,28.382652,20.704140,31.952904,61.040512,67.346298,38.478531,5.023149,3.757036,10.400013,18.742992,35.247952,56.140511,51.355389,11.212408,4.667772,2.663639,1.907440,1.404134,0.629753,48.124794,84.057030,490.581848,745.724792,897.113220,907.123962,1026.665283,1060.895874 -601133.155000,4612005.550000,1955,6905,180.183487,177.877701,171.927277,159.299179,149.233078,141.373581,143.365311,142.604980,143.943832,148.745483,153.216553,170.679352,195.580170,209.885956,221.522324,231.803314,236.348770,244.646286,233.464478,212.092575,200.481003,195.728943,191.381821,150.323990,120.671089,146.142181,191.522324,158.712418,78.365318,20.447952,17.398365,20.107454,20.667788,29.092579,40.596710,31.885967,3.448766,1.222317,0.487605,0.314877,0.563638,1.120663,0.547934,0.029752,3.394215,9.301653,6.011571,1.626446,5.756199,2.011570 -601429.355000,4612005.550000,3436,6905,188.312408,163.519012,133.328934,120.973572,106.725632,94.194229,93.889267,89.170258,87.438034,90.776878,91.049606,101.325630,116.161995,129.957047,144.742157,160.857880,170.047943,168.824799,161.271088,149.618195,143.080994,141.419846,138.890915,110.198364,93.533897,115.228111,152.428101,140.510757,77.295883,16.938034,12.626466,17.970264,21.192581,36.626465,53.155396,42.866135,3.731412,0.106612,0.132232,0.052066,0.000000,0.000000,0.000000,0.000000,23.296698,5.879340,10.655375,6.985126,0.576860,3.271075 -601432.355000,4612005.550000,3451,6905,214.283493,189.754562,166.481842,153.919861,139.771103,130.506622,130.498367,126.043816,123.779350,128.283493,130.514893,140.184326,154.043823,168.258698,181.432251,195.200836,204.804138,202.572739,189.828934,177.357880,171.217377,169.052094,164.481842,137.837219,124.581009,140.523163,163.440521,143.357880,77.886795,18.711590,14.952912,17.166134,19.603325,36.423988,47.961178,40.680187,4.389264,0.347108,0.028926,0.043802,0.126447,0.104959,0.000000,0.000000,11.219836,16.636366,7.666943,9.460332,5.565290,6.245455 -601436.755000,4612005.550000,3473,6905,202.834747,194.471100,166.818207,152.652924,140.991760,130.272736,127.173561,124.884308,122.793396,124.586784,127.900833,137.785156,152.413254,167.801682,182.471100,197.859543,206.537216,204.214905,192.165329,177.851273,170.677719,170.628128,166.000031,135.752075,120.942154,139.562012,169.033096,146.578552,77.719025,18.645473,15.090928,17.752911,19.420679,33.545475,45.206627,37.223156,5.174389,0.168595,0.103306,0.047934,0.042149,0.230579,1.290083,0.463637,15.137192,15.361985,12.780993,4.643802,8.639670,17.004131 -601466.555000,4612005.550000,3622,6905,20.246284,4.039672,1.744630,0.342149,0.066942,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.075207,0.685951,2.129754,4.746284,6.305789,6.237194,6.030582,4.123144,3.014052,2.948763,2.809094,0.014876,0.000000,1.080993,20.298351,29.599182,17.480175,1.503309,0.255375,9.743814,20.339684,32.623985,57.856213,58.548771,43.199188,43.378525,45.761162,40.519840,36.545464,42.664467,42.351242,40.563637,26.668600,74.116531,36.666943,44.431408,56.557030,53.369427 -601469.555000,4612005.550000,3637,6905,5.433887,3.071077,0.337191,0.184298,0.027273,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.043802,0.200827,0.601654,1.703308,2.650415,2.988432,2.584300,1.576035,1.183473,1.147108,1.727275,0.010744,0.000000,0.216529,10.671906,16.420668,10.056203,1.458681,0.157027,9.719846,18.835552,35.958694,57.168606,59.386791,54.001667,56.993401,64.900009,62.771912,62.934723,50.982655,65.433891,70.845467,53.336369,68.687614,67.057030,71.204964,91.362823,115.623978 -601472.555000,4612005.550000,3652,6905,10.349590,4.406615,0.634712,0.229752,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.047934,0.190083,0.790911,1.876861,2.723969,2.880994,2.897523,2.248762,1.662812,1.829754,1.581820,0.099174,0.000000,0.690910,13.402485,21.849596,14.289265,1.700003,0.143803,9.152077,20.889273,38.610760,56.770267,59.495888,52.480183,52.499187,54.870258,54.879349,56.830589,60.271908,55.827282,55.715710,55.292568,58.415714,82.544640,86.144638,78.878517,95.066956 -601475.555000,4612005.550000,3667,6905,1.690910,0.123141,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.908266,5.784304,3.738848,0.468596,0.000000,8.932241,20.074396,32.907455,52.578529,58.892578,47.171093,43.719849,39.676872,44.605797,41.539680,36.968605,31.145462,32.347115,26.949591,19.266119,20.374382,37.659508,28.784300,33.480167 -601573.355000,4612005.550000,4156,6905,20.023151,49.628117,38.782654,21.153732,7.371911,1.876037,0.923969,0.306612,0.135538,0.081818,0.065289,0.057025,0.229753,1.520665,5.442157,18.652906,20.667784,15.205798,14.168609,3.423147,0.323968,0.279339,0.127273,0.000000,0.000000,0.000000,52.469437,101.138847,60.337204,7.126460,0.011571,9.412410,8.971913,21.485140,36.601673,29.059523,1.363639,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.474380,0.441323,1.527274,0.000000,1.534711,0.000000 -601578.755000,4612005.550000,4183,6905,76.939682,115.558693,104.343811,88.178528,69.228111,52.914070,46.616550,37.624813,32.451256,27.995886,22.122334,28.214891,39.517376,50.657871,65.881004,86.310760,91.872742,84.054558,80.500839,59.748775,40.178532,38.401672,36.690929,4.358684,0.948763,13.766129,101.327286,127.591751,69.996704,10.053735,3.335557,10.014063,9.754560,19.767786,34.653736,24.566132,0.181819,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.194215,0.000000,0.000000,0.000000,0.000000 -601586.355000,4612005.550000,4221,6905,68.790092,134.266129,115.621498,101.638023,83.224800,70.538849,67.742165,60.943825,57.915722,58.618202,54.238033,62.452911,74.001663,85.323975,96.679352,109.712410,112.976868,111.100838,107.414886,95.629761,87.398354,86.092575,82.563644,48.196712,31.626467,59.166965,115.018188,113.852905,64.753738,12.004147,7.505805,17.956217,14.805800,26.871094,45.142170,34.431427,1.022318,0.183471,0.023967,0.000000,0.000000,0.000000,0.000000,0.000000,1.145455,0.000000,0.000000,0.953719,0.000000,0.000000 -601591.155000,4612005.550000,4245,6905,98.034729,138.708298,123.262001,113.807457,95.295059,81.782669,79.096718,73.947952,70.642174,72.146301,68.542992,74.452095,86.220688,97.460358,108.121506,120.485138,126.030594,122.716545,118.617371,107.972748,100.931427,100.683487,98.245483,66.716545,52.096706,73.947960,121.700020,117.195885,67.311584,12.482661,8.931425,19.655388,16.252911,29.766134,41.394230,34.848778,0.665293,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.341323,0.000000 -601597.155000,4612005.550000,4275,6905,102.794228,147.011597,128.904144,117.995056,99.234718,87.342163,83.631416,79.400009,76.689270,79.284309,75.400009,82.714058,92.647942,105.003319,116.309105,127.102493,132.854553,129.714066,126.804970,116.069435,109.094223,108.251251,106.309105,75.176872,58.738861,83.986786,128.647949,119.862823,68.085968,13.258695,9.664482,18.114893,14.700018,32.533077,48.251255,35.193409,0.919838,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.031405,0.000000,1.175207,0.000000 -601606.555000,4612005.550000,4322,6905,117.547951,169.895050,155.961166,144.605789,123.638855,112.440514,109.035553,105.217369,103.911583,107.556213,101.853737,110.176048,122.432243,134.804153,148.225632,159.795868,163.804138,157.820663,151.539673,140.076859,128.457047,127.928116,126.663651,90.027290,75.134727,99.300018,136.564468,119.357864,65.605804,14.471919,11.514895,17.457043,13.366135,22.495058,32.556217,23.738033,0.667772,0.148762,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601620.755000,4612005.550000,4393,6905,92.392578,149.878525,156.795868,145.324814,130.481827,123.027290,122.506622,120.109932,119.324806,121.589272,125.812408,138.151260,157.696701,175.142975,189.622314,203.597534,208.407440,203.250427,190.225632,171.928101,161.771088,159.870255,155.936371,120.622337,98.795891,122.068611,156.539673,129.151260,65.862007,19.019028,14.176052,12.098362,13.892578,18.766136,24.954565,17.188448,1.513226,0.129753,0.000000,0.033884,0.000000,0.000000,0.014876,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601637.155000,4612005.550000,4475,6905,80.998360,148.224823,154.042999,140.464478,127.274399,119.770264,119.109108,117.315720,118.679359,120.414894,124.299194,138.819855,157.481018,175.307465,189.910767,204.481018,208.737213,201.704163,187.778534,169.522339,161.059525,158.828125,156.654572,123.927292,99.373573,124.398361,157.158707,127.596710,62.406631,17.510761,14.241343,9.566132,12.954563,16.675226,23.406631,14.761174,0.704961,0.170248,0.171075,0.000000,0.000000,0.000000,0.000000,0.000000,1.339670,0.000000,0.000000,0.000000,0.000000,0.000000 -601655.755000,4612005.550000,4568,6905,103.930588,146.657867,156.310760,144.335556,130.856216,121.533897,121.889267,119.856209,121.261169,124.732246,126.368607,140.071091,159.409927,178.269440,193.963654,209.310760,213.302490,206.112411,189.484314,169.211578,159.029770,158.442993,153.690918,120.814888,97.046295,120.806625,154.219849,123.178528,59.657871,17.492580,13.971919,9.851254,12.733072,16.923159,19.806631,11.172742,0.861160,0.052067,0.136364,0.000000,0.000000,0.000000,0.000000,0.041322,1.340496,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.555000,4612005.550000,4662,6905,115.396713,161.429749,164.173553,153.123962,138.842987,130.867783,129.537201,128.446304,129.082657,133.008286,135.487625,148.867767,169.123962,186.413223,204.041321,217.809921,224.578506,215.280991,193.975204,172.322311,161.074387,158.041321,152.000000,119.619850,98.239685,116.272743,135.950424,103.661171,49.983490,17.955393,13.818202,9.933073,14.504149,13.575223,15.354563,9.114887,1.158681,0.306614,0.397522,0.100000,0.038017,0.143802,0.051240,0.461158,0.000000,0.000000,0.000000,1.112397,0.000000,0.000000 -601682.155000,4612005.550000,4700,6905,105.476044,166.682663,163.310760,152.310776,140.104141,129.335556,127.971916,127.013237,128.566956,132.302490,135.385132,146.947144,165.335556,184.459518,198.765289,213.947098,219.591736,211.409912,190.566940,170.765305,160.591751,158.104156,151.963669,120.459518,99.352089,116.434723,139.128937,105.583488,49.666134,18.894232,13.814895,10.469437,10.964478,13.127290,16.417374,5.919018,1.161988,0.287605,0.128927,0.000000,0.000000,0.000000,0.071075,0.075207,0.000000,0.000000,0.000000,0.000000,1.291736,0.000000 -601688.755000,4612005.550000,4733,6905,118.893410,166.124802,166.678528,155.397537,140.835556,130.604156,129.562820,129.215714,129.281845,132.984314,136.447113,147.860336,166.695053,185.893387,202.422318,216.769409,222.207413,214.620636,192.860321,172.397537,160.141342,158.083481,154.009109,120.290100,99.645470,116.571098,136.719849,103.166138,48.926468,17.656216,14.000845,6.707450,12.572742,13.714891,12.661174,7.519845,1.692566,0.270250,0.246282,0.409918,0.047934,0.077686,0.000000,0.074380,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601697.955000,4612005.550000,4779,6905,104.506638,170.961166,166.275208,152.589264,139.721497,129.795883,129.704971,128.771088,128.713242,132.919846,136.556198,148.589264,167.333069,186.952896,204.010757,218.018997,223.589249,214.457016,191.895050,169.605789,159.936371,156.167770,150.663635,118.134727,96.647125,113.407455,130.390930,97.283485,46.490105,17.608284,13.696713,9.146295,10.194230,11.235555,13.250431,5.212405,1.298351,0.359505,0.212398,0.332232,0.033884,0.000000,0.000000,0.071075,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601707.955000,4612005.550000,4829,6905,118.652084,178.445465,166.891739,155.495041,142.933060,129.445480,127.619026,127.015724,127.784317,132.635559,134.139694,145.966125,165.222321,186.081818,201.594223,216.825623,221.503311,211.776031,189.222321,166.238846,155.643799,152.561157,146.900009,114.891754,93.949608,110.602501,126.825638,94.412415,44.081837,16.099192,13.354565,8.567783,9.685966,12.059521,13.657867,6.852076,0.903310,0.373555,0.770250,0.559505,0.168596,0.000000,0.104959,0.149587,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.155000,4612005.550000,4850,6905,113.023979,176.619034,169.263657,158.503326,143.387619,130.057037,130.470261,130.189270,129.916534,135.445480,135.428940,149.412415,167.800842,187.503326,204.858704,219.172745,223.478531,213.817368,191.015717,167.924820,157.189270,155.189270,148.627289,116.767776,96.420670,112.577698,127.776047,93.800835,43.817375,17.146299,13.511590,7.466956,10.544644,11.002497,13.802496,5.367779,0.914879,0.580994,0.046282,0.000000,0.066116,0.000000,0.034711,0.058678,1.636364,0.000000,0.000000,0.000000,0.000000,0.000000 -601716.555000,4612005.550000,4872,6905,106.638031,165.018204,165.704163,151.398376,136.514053,126.282654,127.514061,126.224800,126.761993,129.398361,132.447937,144.885971,164.712418,182.968628,198.927292,214.166962,218.481018,207.299194,185.266144,162.175232,152.604980,149.778534,143.836395,112.266129,93.084305,108.299187,123.315712,88.464478,42.398365,15.783489,13.076052,10.464479,11.054563,11.455389,14.072744,5.671909,0.875210,0.221489,0.080165,0.137190,0.104959,0.000000,0.042149,0.499175,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601723.355000,4612005.550000,4906,6905,121.736374,167.959518,166.595886,152.463654,138.438858,127.240509,128.852081,126.860344,128.116547,131.000839,133.306625,147.843811,166.314896,184.852081,200.901672,215.199188,219.860336,209.050430,184.521500,163.347946,153.347946,151.794235,145.736374,113.281830,94.207451,108.562820,123.736374,89.794228,43.000847,18.130596,13.248779,14.197537,11.502497,13.377703,13.527290,5.900836,1.033062,0.314051,0.286778,0.198348,0.190083,0.000000,0.093389,0.279340,0.000000,0.000000,1.358678,0.000000,1.323141,2.986777 -601734.355000,4612005.550000,4961,6905,117.560349,176.576859,165.246292,152.469421,138.271088,126.609932,128.618210,127.254562,127.890923,129.899185,132.014893,145.543808,166.064468,184.254547,199.320663,214.651245,218.337204,206.783478,183.733887,162.171906,151.783478,149.957031,144.072739,112.535553,91.676048,104.709106,121.254562,86.800018,41.444653,18.324812,13.097539,11.570264,11.152909,13.704975,13.212415,6.927282,1.381822,0.323969,0.432233,0.164463,0.042150,0.000000,0.216529,0.414050,0.000000,0.000000,0.000000,1.149587,0.000000,2.280992 -601742.955000,4612005.550000,5004,6905,128.819031,172.843796,165.992569,154.215714,139.777695,127.942993,128.397537,126.752914,127.819031,132.149612,132.901672,145.455383,164.223984,182.736359,197.546280,212.571075,215.653717,204.447098,181.414047,159.992569,150.554565,147.802490,141.918198,110.719849,92.347954,105.430603,119.207451,86.562820,40.587624,17.184317,12.901673,14.029769,10.239687,13.923985,14.528943,6.580176,1.013225,0.131405,0.157852,0.085124,0.046282,0.000000,0.366943,0.099175,0.000000,1.459504,0.000000,0.000000,0.000000,2.247934 -601753.955000,4612005.550000,5059,6905,115.214897,184.305786,167.710739,152.801651,136.752060,126.471100,127.884323,127.611588,129.636383,134.661179,134.115723,148.438019,166.239670,186.413223,202.165283,217.314056,221.066116,208.140503,187.429749,167.314056,157.214874,154.644623,150.363632,116.181839,97.826469,112.289284,124.314072,90.702507,42.454571,15.593406,13.669440,14.023158,11.858694,12.637206,15.738860,6.853729,0.972731,0.165290,0.160331,0.033885,0.000000,0.000000,0.000000,0.503306,0.000000,0.000000,0.000000,0.000000,1.466116,0.000000 -601764.955000,4612005.550000,5114,6905,134.330597,186.090912,162.314056,153.008270,137.090912,124.842995,127.669441,126.289276,128.206619,136.256210,134.347122,147.553726,165.768600,185.933884,202.561981,218.140503,221.396698,211.950409,196.231400,180.165283,172.099167,171.793396,168.909088,136.157043,116.099190,136.694214,155.561981,119.000015,57.446304,20.414896,15.355392,21.178528,14.831423,20.578531,24.090927,16.161175,1.400830,0.801656,0.147935,0.242976,0.000000,0.316529,0.072728,0.091736,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601771.555000,4612005.550000,5147,6905,26.494221,26.930588,16.241327,13.476865,8.485955,5.038846,4.939673,4.141325,3.891739,4.518186,3.033888,4.942979,7.752071,11.233889,14.777692,19.100004,20.762819,19.493397,19.401657,16.434717,13.476040,14.253725,13.972733,5.788434,2.830581,9.205791,34.832241,46.625629,29.767780,3.995047,1.270255,35.037209,14.600842,35.641342,52.966129,54.466957,13.290918,10.835540,8.883474,8.271077,6.089259,3.476034,2.333059,3.718183,3.634712,0.022314,0.271901,1.223141,0.089256,0.549587 -601123.155000,4611995.550000,1905,6955,183.777695,180.802490,166.331421,157.438858,143.397537,137.860336,137.984314,136.438858,137.893402,142.521500,146.157867,164.323151,188.323135,202.496689,214.430588,222.612411,226.918182,227.728088,213.521500,192.215698,180.571091,175.447113,168.372742,131.579361,107.202492,130.314896,164.893402,132.761185,62.612419,16.925638,15.306631,16.630596,17.907455,25.562828,35.248783,29.819855,5.743812,2.978518,1.863640,2.259509,2.464466,2.420666,4.209920,6.719012,42.479347,23.319838,14.200002,13.847110,9.497521,14.883471 -601126.355000,4611995.550000,1921,6955,180.697525,187.408264,179.259506,166.854553,155.168610,149.209930,150.218201,147.639694,151.317368,156.036377,159.201675,177.854553,203.747131,217.639679,228.383469,237.970245,242.209915,247.871078,234.986786,211.408264,197.342163,192.226471,187.672729,144.879364,117.209930,139.631424,178.391739,143.424820,66.672745,20.990101,17.061176,18.862001,17.812416,23.451258,30.995060,24.605804,3.048768,2.196700,1.191740,1.671078,0.412397,0.879340,0.450414,0.912399,12.043802,13.316529,11.338844,3.097521,7.090910,6.109091 -601131.555000,4611995.550000,1947,6955,148.172745,150.304977,146.693405,134.999191,124.610764,117.751259,119.742996,118.015724,120.767792,126.957870,129.462006,146.313248,172.139694,184.437210,196.387619,206.552917,213.858704,225.511597,223.032257,204.718201,193.561172,190.800842,188.718201,146.528122,114.247124,139.048782,198.792587,174.900024,91.759521,22.502499,17.156218,19.276876,24.726465,36.941341,53.569443,42.949608,4.595875,0.096695,0.073554,0.000000,0.113223,0.000000,0.000000,0.000000,8.714051,7.476860,3.192563,2.345455,0.833884,8.707438 -601425.155000,4611995.550000,3415,6955,127.452087,113.800842,91.154572,79.226463,66.615715,60.009930,57.657864,55.354557,53.653732,54.371086,55.304970,61.528111,70.410751,79.813240,88.495880,98.995880,105.257034,105.722336,101.620674,95.066956,88.960350,87.968613,85.427292,66.774391,55.776043,71.214890,103.882668,104.504150,57.900848,11.453733,7.766130,14.523983,22.534729,37.858696,59.214069,52.627293,10.611580,1.440498,0.308266,0.156199,0.164463,0.058678,0.907439,0.000000,9.028101,6.123969,5.836364,5.905787,6.236365,14.976861 -601430.755000,4611995.550000,3443,6955,16.470253,4.192564,0.548761,0.165289,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.033058,0.123967,0.148760,0.239670,0.206612,0.206612,0.140496,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,1.514878,10.387610,5.743807,0.245456,0.000000,6.417365,17.761999,37.328945,62.717373,66.320679,52.025639,40.622330,42.439682,44.740509,39.990093,30.476040,27.719015,19.368603,6.558680,5.663638,2.509092,2.796695,4.019009,5.719836 -601578.355000,4611995.550000,4181,6955,14.065297,35.195877,24.000011,14.989265,4.887610,1.528102,0.941324,0.312397,0.123141,0.048761,0.000000,0.077686,0.361158,1.508267,3.351245,9.020669,10.957861,9.448769,8.496703,4.517362,1.737193,1.518185,1.909094,0.000000,0.000000,0.223141,28.600014,58.113235,35.393410,3.020668,0.173557,15.233900,10.518196,24.947124,46.911583,40.079357,5.245461,0.438017,1.356200,0.495868,0.486777,0.000000,0.000000,0.323967,2.063637,5.501655,0.000000,1.371902,1.846281,1.460331 -601582.955000,4611995.550000,4204,6955,9.689260,22.450420,14.434717,8.541327,4.593392,2.476035,1.882647,1.434712,1.080993,1.386778,0.907439,1.163638,2.029754,2.911573,4.340499,6.640500,7.586781,7.304137,7.501657,4.969425,3.929755,3.786780,3.927276,1.064464,0.118182,1.750414,20.684307,37.890923,22.931419,2.811577,0.357028,18.784313,14.004973,31.150431,49.109936,44.106632,11.975217,4.279344,3.398352,1.116531,1.348762,0.257852,0.886777,0.554546,1.269422,0.242149,0.257852,2.834712,1.061158,5.796695 -601590.355000,4611995.550000,4241,6955,36.817364,70.973579,54.156212,43.568615,26.895882,16.875219,13.548771,9.762819,7.693397,8.034719,5.529758,7.862818,11.640507,16.225632,22.493401,31.424809,35.928940,32.646297,32.887615,24.847120,18.866127,18.999186,18.081829,4.261161,1.213225,8.160337,54.694237,70.396713,44.300018,4.971084,1.643815,16.395058,13.237205,25.431423,42.926464,43.386791,3.085130,0.371901,0.038843,0.000000,0.062810,0.000000,0.000000,0.142149,4.976034,1.333884,1.369422,1.932232,1.044628,4.548761 -601601.555000,4611995.550000,4297,6955,138.786804,192.447952,169.753738,159.423157,141.224823,130.786789,129.092575,124.092575,123.919022,130.398361,125.571907,135.208267,147.770279,160.365311,172.522339,185.489288,189.927292,183.233078,175.869446,162.398376,154.009949,153.481018,151.109116,119.423149,105.456223,124.241333,148.142181,124.233070,65.919029,18.719027,13.737209,19.129768,16.962000,25.244644,36.497540,25.976049,1.484302,0.452894,0.006612,0.038017,0.016529,0.000000,0.481819,1.080993,0.000000,0.000000,0.000000,1.344628,0.000000,0.000000 -601613.955000,4611995.550000,4359,6955,85.231430,141.135559,151.928940,138.962006,126.276054,117.251259,115.738861,111.755394,111.466133,112.614899,115.259521,125.317375,139.763657,151.590103,164.573563,176.681000,182.193390,180.986786,171.457855,157.895889,150.705811,149.119034,146.127289,116.433075,99.697540,119.127289,150.895889,131.267792,70.780190,16.219025,13.284316,11.225636,14.633902,25.841341,38.003323,28.871092,1.616532,0.030579,0.000000,0.000000,0.000000,0.000000,0.016529,0.000000,0.000000,0.000000,0.000000,1.171075,0.000000,0.000000 -601622.755000,4611995.550000,4403,6955,85.169426,140.054565,146.451248,134.715714,122.922325,113.806625,113.335548,109.633072,109.649597,112.021500,114.666130,124.872742,139.352081,151.757034,163.781830,175.095886,181.996704,179.616547,170.170258,157.558685,150.112411,149.757034,147.418198,118.013237,101.790092,119.244644,152.343811,130.352081,68.757034,17.513243,13.401670,10.705799,16.510761,27.260351,38.401669,25.397539,1.205788,0.000000,0.033058,0.000000,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,3.063637,0.000000,0.000000,0.000000 -601632.955000,4611995.550000,4454,6955,74.523979,132.666138,141.757034,128.633072,115.649605,107.004982,106.542168,102.790100,103.128944,105.434731,106.575226,118.409935,133.963654,148.071091,158.467789,170.690903,176.385117,173.914047,163.492569,150.633072,144.690918,142.228119,140.236374,110.228119,92.013245,112.467789,149.294235,131.649612,71.095886,16.565308,12.748779,9.571091,16.528118,24.855391,39.624813,28.064482,1.107442,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.886777,0.000000,0.000000,0.000000,0.000000,0.000000 -601645.755000,4611995.550000,4518,6955,74.106628,143.811600,146.323990,132.985138,119.117378,109.514076,108.968620,105.332260,104.472755,107.001678,108.704155,120.200027,137.803329,152.745483,165.629776,178.406616,182.166946,177.712402,166.133911,149.885971,140.290939,138.307465,134.381836,101.894241,81.282661,104.547134,150.092590,133.100845,68.927299,16.616549,12.216548,8.329766,13.691753,22.891754,31.894234,24.404980,0.995045,0.025620,0.000000,0.000000,0.000000,0.074380,0.000000,0.000000,1.300827,1.288430,2.246281,0.000000,0.000000,0.000000 -601657.955000,4611995.550000,4579,6955,91.803314,150.836380,162.728943,149.290924,134.076050,126.224800,124.745461,122.042984,122.985130,126.968605,129.481003,142.051254,163.009933,181.431412,198.109100,212.885956,218.200012,210.712402,191.018188,169.514053,156.885956,152.563644,146.290924,111.431412,89.522324,108.976868,136.803314,104.803314,51.282661,16.509109,13.299192,9.058691,11.448778,12.236380,13.481009,6.429763,0.731408,0.332233,0.085125,0.182645,0.000000,0.000000,0.000000,0.047108,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601674.555000,4611995.550000,4662,6955,112.341331,161.746292,158.349594,149.961166,137.192566,126.027283,125.837196,123.952896,124.738022,128.721497,131.597534,145.043808,165.457031,183.911575,199.845459,215.192566,221.068604,215.572739,198.432236,179.861984,168.655380,167.440506,161.390915,126.738022,102.531410,125.589264,156.035538,122.655380,57.919853,18.341341,14.671920,9.474395,12.800841,15.159522,20.368614,11.154560,1.482648,0.343803,0.067769,0.108265,0.000000,0.086777,0.000000,0.082645,0.000000,0.000000,0.000000,1.414050,0.000000,2.095042 -601688.155000,4611995.550000,4730,6955,104.367783,165.954544,165.913223,153.871902,139.929749,129.045471,128.632248,128.169434,127.896713,132.491745,134.855392,148.293396,169.500000,188.392563,206.161163,223.648758,229.384293,219.987610,198.566132,175.805786,164.582642,161.541321,155.863632,120.657043,98.913239,115.483490,139.285126,104.781006,49.070267,17.202499,14.169439,10.033897,10.527288,11.481006,13.691753,5.847944,0.687606,0.094216,0.233059,0.050414,0.041322,0.000000,0.000000,0.019835,4.547108,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.355000,4611995.550000,4801,6955,103.967789,175.323151,166.529770,155.347946,140.298355,129.207458,130.703323,128.496704,127.628937,134.190918,134.695053,147.860336,166.190918,186.794235,202.835556,218.562820,224.232239,214.810760,191.091751,169.695053,158.050430,153.645462,148.645462,114.562828,93.777710,111.075226,128.612411,96.232246,45.281837,15.731423,13.513242,7.481832,10.506627,11.955388,11.518199,4.915712,0.758680,0.334712,0.265290,0.027273,0.028926,0.000000,0.031405,0.137190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.955000,4611995.550000,4844,6955,102.806633,166.038025,163.633072,150.930588,135.401672,127.442986,127.401665,125.418198,125.558693,129.566956,131.509109,144.996704,166.038025,184.748779,199.145462,216.575226,220.790100,209.071091,186.219849,165.649597,153.649597,150.988449,144.236374,112.327286,92.509102,107.533897,122.930588,92.310760,39.476055,15.714068,13.112415,10.295882,10.647123,13.072742,13.324811,6.373562,0.808269,0.586780,0.814878,0.157025,0.014050,0.000000,0.000000,0.000000,0.000000,0.000000,2.471075,0.000000,4.733885,2.986777 -601717.555000,4611995.550000,4877,6955,108.652077,171.420670,167.354553,150.941330,137.098373,127.040512,129.090103,125.875229,126.511589,129.569443,131.792587,145.784317,166.404129,184.660339,200.048767,214.792572,219.693390,207.825623,185.495041,162.486786,152.214050,150.478516,144.718201,111.784317,91.511589,108.866959,123.362831,90.982666,42.453743,16.928118,13.156219,12.412413,10.675224,11.252083,13.764480,6.294224,0.929756,0.686780,0.189257,0.452893,0.040497,0.000000,0.079339,0.121488,0.000000,0.000000,0.000000,0.000000,6.653720,0.000000 -601726.355000,4611995.550000,4921,6955,113.300026,171.085144,163.936386,152.779358,136.209106,125.804153,127.985970,125.572746,125.779358,128.837219,130.837219,144.457047,164.547958,182.762833,198.523163,214.341339,218.159531,205.738037,182.738037,161.490112,152.085144,148.556213,142.936386,110.729774,89.481842,106.680191,121.688454,88.374405,40.663654,15.660349,12.994233,10.246298,10.943817,10.704975,12.382660,6.303315,0.776036,0.112398,0.122315,0.521489,0.013223,0.106612,0.087604,0.084298,0.000000,0.000000,0.000000,8.442976,0.000000,0.000000 -601740.155000,4611995.550000,4990,6955,118.200851,177.895050,164.151245,154.192566,138.572739,127.258682,129.688431,127.771080,129.217361,133.002487,134.862000,149.076859,167.696701,188.349594,205.101654,220.349594,223.300003,211.738022,189.828934,169.027283,158.324814,155.655396,150.027283,117.324799,98.043823,111.985954,124.762817,90.895065,43.374397,16.442167,13.638862,12.714894,11.848777,12.731421,13.668612,5.452076,1.109921,0.234712,0.229753,0.174381,0.005785,0.000000,0.074380,0.403307,3.023141,1.553719,0.000000,1.133884,0.000000,0.000000 -601751.555000,4611995.550000,5047,6955,136.595062,185.892578,165.429764,153.917374,137.867783,125.495880,127.545471,126.975220,128.851257,135.198349,134.297531,147.727295,165.636383,187.000000,203.074371,218.595032,221.074371,208.743790,188.504135,169.520676,159.115723,157.256210,152.909103,119.917374,99.694221,116.487617,129.214890,95.876038,46.214897,16.957870,13.900845,14.781834,10.911587,14.593404,15.199189,8.718194,1.688435,0.441324,0.029753,0.103306,0.034711,0.000000,0.007438,0.108265,1.361984,0.000000,2.398347,0.000000,0.000000,2.168595 -601757.955000,4611995.550000,5079,6955,148.254547,180.543808,159.395050,149.519012,131.882660,120.122330,121.519020,120.981834,123.436378,130.006622,128.213242,142.353729,159.485962,181.676041,197.692566,214.295868,217.791748,207.452896,193.039673,177.733887,168.932236,168.014877,166.890915,133.246292,113.320679,134.287613,158.023148,121.345467,60.279362,19.423983,15.171921,21.228943,14.239688,21.874399,26.841343,17.010763,1.889261,0.657853,0.060331,0.063637,0.000000,0.000000,0.118182,0.542976,0.000000,1.494215,1.192562,0.000000,0.000000,0.000000 -601762.355000,4611995.550000,5101,6955,115.898376,131.749603,118.972755,104.989281,86.838860,74.103333,74.037209,70.742996,70.049606,77.189278,72.066132,81.379356,95.549614,110.781013,123.971100,136.789291,141.789276,133.706635,130.169449,118.838867,110.723167,112.293411,111.772751,84.156219,68.826462,92.376869,134.452087,124.171089,68.584312,14.901670,10.161175,23.514067,17.388447,32.665310,44.584316,34.088448,1.414879,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.925620,1.253719,1.477686,2.792562,0.000000,0.000000 -601123.155000,4611985.550000,1905,7005,165.838013,169.614883,165.276031,152.879364,142.821503,135.499191,134.962006,133.714066,135.325638,140.251266,142.614899,160.466125,186.416534,198.490906,207.573547,217.276016,221.945435,233.780151,229.251236,210.085938,195.251236,190.135544,186.763641,139.953735,107.598366,133.226471,190.838013,162.598343,81.168625,20.507458,16.978531,18.457869,18.923161,29.771919,42.647953,32.929771,3.830585,0.647109,0.409919,0.114877,0.151240,0.433886,0.335537,0.866116,9.193390,7.402480,2.955372,1.926447,2.231405,5.946281 -601406.155000,4611985.550000,3320,7005,66.695053,82.873566,66.843811,59.195053,47.514885,41.129765,39.910755,35.750423,33.919018,34.803314,34.278522,39.814888,46.296707,54.289268,61.123978,69.892578,74.617363,75.286789,73.724800,71.154556,68.231422,68.983490,68.654564,58.209103,51.233067,60.325630,78.590103,75.487617,42.167782,8.190094,6.241334,15.500841,18.084312,33.339687,50.696712,41.944645,11.109928,7.514054,8.916533,9.196696,6.949591,3.519837,3.790084,1.600827,6.652894,3.134712,0.924794,0.653719,3.189256,3.436364 -601409.755000,4611985.550000,3338,7005,0.294215,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.038017,0.285951,0.000000,4.447939,12.532244,28.445471,51.805805,50.775227,53.928940,58.453735,68.807457,65.941345,70.232246,52.033070,58.449600,34.886787,25.157856,21.317358,9.448764,14.073557,30.762814,20.223143 -601415.955000,4611985.550000,3369,7005,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.193391,13.823979,31.428112,61.103321,67.258690,74.215714,91.066956,99.240509,107.100014,112.025635,87.477699,92.408287,69.185966,56.561993,42.091740,16.221491,18.274384,26.257030,39.471081 -601515.155000,4611985.550000,3865,7005,53.297535,50.457043,33.594231,20.394228,9.144637,3.803311,2.070252,0.547109,0.245456,0.171901,0.280993,1.666946,8.679348,17.790918,25.071915,32.254559,32.824806,29.739681,28.650427,20.523153,15.070260,13.458688,11.327282,0.398348,0.056199,3.974387,53.998363,73.816551,44.758701,4.147116,1.029762,10.261170,12.657039,28.864479,45.692581,42.466961,6.885959,0.638018,0.275207,0.000000,0.000000,0.079339,0.102480,0.261157,24.019014,15.446286,6.628104,4.309094,5.147937,16.682648 -601577.955000,4611985.550000,4179,7005,25.342155,36.368603,22.947943,15.303314,8.028106,3.249590,2.163639,1.224795,0.969423,0.860332,0.444630,1.017357,2.534714,5.440500,8.845461,15.345463,16.438850,14.049595,13.652901,9.493395,5.250418,5.080170,4.700004,0.023141,0.000000,1.400828,32.365299,56.147121,32.504147,2.663642,0.427277,21.600843,14.060346,28.709108,49.090099,49.057041,10.690093,3.727276,2.432234,2.720664,2.079341,1.819836,0.394215,0.948761,8.066943,5.450414,10.582646,4.823143,4.869422,8.305786 -601581.555000,4611985.550000,4197,7005,57.698357,90.643814,65.821503,53.757862,36.695053,23.333899,20.351254,16.399185,12.517366,12.837200,9.065298,13.407449,20.602493,29.990099,44.057865,62.447121,66.860344,59.066132,57.602497,42.581005,29.105799,27.528112,25.545469,3.019839,0.642976,8.799182,83.792572,103.766136,60.303322,6.761170,2.322330,17.850431,11.987617,26.915718,44.939686,38.785965,2.902485,1.188431,0.591736,0.275207,0.591736,0.365290,0.186777,0.000000,7.726448,4.850414,1.392563,2.466117,0.817356,7.245455 -601586.555000,4611985.550000,4222,7005,49.069431,84.314064,65.323982,52.714062,35.794231,24.803320,20.900013,17.068605,14.430590,14.472739,11.120672,15.861169,21.691748,29.262825,37.889275,49.161995,52.426464,49.829769,49.747124,41.442989,33.388443,31.692577,31.209105,8.877696,2.828104,16.370260,70.227287,83.804146,51.664482,6.397532,2.837205,18.833076,15.991752,31.495886,47.500015,43.764481,3.155376,0.361984,0.000000,0.029752,0.000000,0.000000,0.000000,0.000000,0.629752,0.026446,1.603306,0.538843,0.000000,3.912397 -601592.755000,4611985.550000,4253,7005,116.849609,173.047958,154.147125,145.833084,127.170265,117.236382,116.500847,112.748779,111.905807,117.881012,113.145477,124.616547,138.254562,153.081009,166.461182,179.973572,184.328949,176.312424,168.130600,153.849609,145.469437,144.775223,138.981842,104.550438,89.479355,112.047958,142.477707,118.923988,61.246300,14.670265,12.634728,19.190926,13.855388,23.928118,35.271091,29.900845,2.408270,0.501654,0.311572,0.651240,0.133885,0.816529,0.650414,0.495869,7.352893,2.869422,5.333058,4.495042,0.000000,0.000000 -601605.155000,4611985.550000,4315,7005,63.343811,110.260338,118.904968,106.549591,91.061989,81.392578,77.012413,70.731422,67.838860,66.020676,64.863655,72.219025,82.847115,92.078529,101.409096,112.334717,117.698357,116.508270,111.111580,99.904968,92.053726,89.367783,86.863655,56.906628,40.689270,61.880180,111.466949,110.475212,62.301670,12.974399,7.896713,12.439683,13.683489,26.923161,42.913239,31.416548,2.869428,0.170249,0.000000,0.000000,0.000000,0.000000,0.089256,0.000000,0.000000,0.000000,0.000000,0.682645,1.693388,0.000000 -601615.955000,4611985.550000,4369,7005,16.123150,42.345470,42.569431,30.274393,19.443815,13.537200,10.872737,7.015711,5.798355,4.809925,5.385957,7.249596,13.263647,18.048771,24.565302,32.374393,36.943817,36.715714,35.203320,29.109932,22.538029,22.581005,21.563650,5.990089,1.757853,10.184307,60.748775,80.814896,46.915718,6.112407,1.960342,7.271084,11.619021,28.738035,49.476051,42.569435,5.516537,0.094215,0.150414,0.009918,0.000000,0.000000,0.000000,0.000000,1.630579,4.433059,0.000000,0.430579,1.233884,1.055372 -601620.555000,4611985.550000,4392,7005,28.733072,72.362823,75.633896,65.377701,47.614063,37.069443,32.934731,28.331425,26.424810,25.414894,25.827291,32.382664,42.233898,51.349602,60.096710,72.361176,77.212410,77.270256,74.650421,64.923157,58.063656,58.567787,56.609108,31.987621,17.304974,38.690929,93.195885,102.187622,61.542992,8.366130,5.146300,10.167781,18.620680,33.486797,53.956215,45.220680,1.949591,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.224794,0.000000,0.000000,1.085124,0.000000,0.000000 -601625.555000,4611985.550000,4417,7005,33.477699,64.378532,69.238037,54.783489,41.469440,32.814892,27.672745,22.402496,18.917372,18.620678,18.468613,22.869440,33.023159,42.006630,50.923985,61.279358,66.122330,65.477707,64.023163,53.353737,47.147125,45.634727,45.254562,19.715719,8.074389,28.159523,83.452911,94.279358,56.651257,7.981004,4.114069,8.271914,16.181837,30.014894,50.147125,42.626465,2.402484,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.811570,1.314050,0.000000,0.000000,0.000000,0.000000 -601632.755000,4611985.550000,4453,7005,18.673563,44.953739,46.667782,35.888447,20.781008,13.811584,10.279351,6.819844,5.201662,4.933066,4.924802,9.168607,18.777702,27.055389,35.766956,46.775223,52.010757,52.531418,51.357864,41.105801,32.481834,32.428116,31.063654,8.177697,1.276863,13.419849,77.473572,96.771088,57.440510,6.426458,2.823985,6.270258,18.417374,33.432251,57.316544,45.423981,2.116533,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.391736,0.000000,0.000000,0.000000,0.000000,0.000000 -601643.755000,4611985.550000,4508,7005,81.954559,132.791748,138.304153,125.287621,112.213234,101.899185,102.957047,100.684311,100.593407,103.923981,106.056213,119.981834,140.345474,159.246307,174.122330,188.618210,194.204987,187.948776,175.725647,157.171921,147.147125,144.436386,141.254562,104.965302,81.312408,107.502495,151.676056,133.089264,68.386803,16.021505,12.841341,9.539684,13.462827,20.275223,29.354563,19.923159,0.712399,0.057851,0.000000,0.000000,0.000000,0.494216,0.278513,0.339670,1.793389,0.000000,0.000000,2.174381,0.000000,0.000000 -601652.555000,4611985.550000,4552,7005,85.895882,141.623978,148.822327,136.706635,124.921494,115.219017,114.847115,113.681824,114.665298,118.028931,120.673561,136.425629,160.690094,180.541336,196.838837,213.814056,219.161163,212.830582,196.004135,174.061996,160.764481,157.425629,151.136383,110.161163,86.309937,113.169426,153.690094,123.789261,58.450428,18.246300,13.739688,8.587617,11.068610,14.215719,19.183491,8.529765,1.615706,0.033058,0.136364,0.037190,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601668.955000,4611985.550000,4634,7005,100.815712,152.780182,155.697540,144.185150,130.763641,120.573563,119.573563,118.276047,119.375221,122.912407,125.110756,138.714066,158.747131,176.614899,192.499191,207.755371,213.995041,208.978516,194.391754,175.871094,165.218201,163.218201,157.945480,122.887611,99.416542,123.573563,159.152084,130.689270,63.755390,18.885967,14.358697,8.530591,12.559520,16.405802,23.906630,15.104975,0.858681,0.372728,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.942975,2.758678,0.000000,0.000000,2.373554,0.000000 -601704.955000,4611985.550000,4814,7005,101.720680,168.811584,164.894226,151.786789,134.109116,124.538864,125.464478,124.200020,125.621506,128.778534,131.638031,145.505798,166.695877,186.216522,201.852905,218.786789,222.786789,211.679352,190.142151,167.398361,156.952072,155.381821,147.018188,113.604973,94.216545,110.315720,130.092575,94.481010,44.208286,16.514069,13.365308,11.574396,11.598365,13.375224,14.042168,5.147941,0.683475,0.366118,0.103306,0.086777,0.000000,0.000000,0.021488,0.300828,0.000000,1.505785,1.855372,0.000000,2.476860,2.227273 -601710.555000,4611985.550000,4842,7005,117.695053,166.017365,163.637207,152.876877,136.455399,125.860344,127.422325,125.736374,126.314888,130.397537,133.620667,147.347946,169.083481,188.405792,203.752899,219.777695,225.397537,215.331421,192.157867,169.860336,159.339676,156.174393,148.918198,115.364479,95.290092,112.761169,130.414062,96.703316,45.166138,18.976051,13.538036,12.204148,12.871092,13.271091,15.980185,9.240508,1.282649,0.537192,0.166943,0.155373,0.038017,0.128099,0.050413,0.209918,0.000000,0.000000,0.000000,0.000000,1.200827,0.000000 -601721.955000,4611985.550000,4899,7005,105.758698,173.180191,161.717377,150.171921,135.783493,126.386803,127.684319,125.700851,126.576881,130.874405,133.337219,148.114075,167.576889,187.510773,204.461182,220.452911,223.469437,212.700851,190.841339,168.882660,158.386795,156.378540,148.890930,117.056221,96.097542,112.130600,127.568619,92.271095,42.874397,15.317373,13.535557,13.960347,10.832248,12.123156,14.647125,6.698357,1.401658,0.320662,0.306613,0.014050,0.000000,0.338843,0.163637,0.104133,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601737.755000,4611985.550000,4978,7005,136.703323,190.091751,165.447113,153.381012,137.339676,125.058693,127.471916,126.207451,128.571091,132.992569,133.538025,147.876877,167.835556,187.843811,204.414062,220.843811,224.802490,212.662003,191.083481,170.810760,159.909927,158.504974,152.463654,120.182655,99.248772,115.207451,128.521500,92.455383,43.455395,17.125637,13.860350,17.177704,12.891754,16.274399,14.319026,6.853732,1.551245,0.400003,0.152894,0.057025,0.127273,0.000000,0.009091,0.025620,0.000000,1.543802,1.247108,0.000000,0.000000,0.000000 -601123.155000,4611975.550000,1905,7055,156.910751,165.224808,153.695877,145.563644,135.836380,131.233078,131.952087,132.208282,133.976883,140.364487,142.679352,159.547119,183.481003,197.274384,207.472733,217.638031,223.985138,232.770279,224.902496,206.993393,194.100830,190.505798,188.472733,149.951263,121.852089,143.439682,191.084305,166.761993,87.555389,20.740513,17.133902,15.542992,21.851255,33.597538,46.952084,35.033073,5.205794,0.400001,0.206612,0.019835,0.109091,0.210744,0.699174,0.000000,5.763638,4.868596,4.977687,4.265290,1.919835,3.988430 -601364.355000,4611975.550000,3111,7055,124.532242,125.749603,105.576050,99.179359,87.815727,79.295067,79.790932,77.815727,74.981018,80.823990,82.832260,94.071922,110.319855,126.815720,142.443817,159.319839,169.790924,175.468597,169.286789,162.460342,158.088440,159.063644,155.881821,131.286789,117.237206,137.658691,170.493393,157.658691,87.691750,16.649603,14.171093,11.355385,26.274399,47.609104,71.733078,56.171089,5.754555,0.061157,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.979339,0.376033,0.000000,0.000000,0.000000 -601368.755000,4611975.550000,3133,7055,104.156212,106.163651,94.923981,85.370262,71.736374,65.777702,64.471916,60.835556,59.926464,62.447124,64.108284,75.934723,89.990097,103.337204,119.320679,134.080994,144.262833,147.031433,142.279358,135.907455,133.766953,134.056198,132.163635,112.717369,98.874397,117.915710,145.923996,136.981827,75.238029,14.334728,12.014894,16.760347,25.133904,49.634727,71.130592,56.196712,5.074388,0.085951,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.169424,1.973555,0.845455,2.755373,0.313223,5.539670 -601373.155000,4611975.550000,3155,7055,115.563652,131.626465,119.122330,110.204971,96.362000,88.353737,87.824806,84.667786,82.320679,84.089272,85.866127,96.370262,112.163651,126.800018,139.519028,153.833084,162.568619,163.981842,156.510757,148.403336,145.841354,146.717392,141.254578,121.676048,110.973572,126.758690,149.585144,136.915741,73.907455,16.151257,12.841343,19.671917,24.238035,42.188446,61.560345,51.882660,4.343809,0.042975,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.173554,2.851240,2.752068,1.769422,0.751240,3.260331 -601377.555000,4611975.550000,3177,7055,128.137207,141.915710,130.279343,122.386780,110.246284,104.039673,103.783478,101.709099,99.733894,103.163643,106.204964,120.618187,137.130600,153.312424,168.353729,182.593399,190.651245,189.510757,180.543808,172.535538,167.461166,167.238022,159.163635,139.626465,128.056198,141.056213,162.915710,146.262833,81.733902,17.100019,14.469441,22.838036,26.097540,45.204983,63.246304,50.014900,4.461991,0.100827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.273554,3.111571,0.847934,2.316529,1.503306 -601381.955000,4611975.550000,3199,7055,113.663651,144.068604,124.977699,115.258690,103.952904,98.423981,101.225632,97.622330,96.109932,99.655388,105.101669,120.275223,139.704971,156.514877,171.109924,188.589264,195.266953,194.225632,184.870255,176.688431,170.614059,169.614059,162.027283,141.671906,129.440506,143.341324,167.820663,152.928101,85.605797,18.134731,14.729771,20.577705,27.435556,43.101673,66.250427,51.713238,2.830584,0.042975,0.024794,0.000000,0.000000,0.000000,0.000000,0.000000,1.139670,1.733885,0.856199,1.771901,0.576860,0.000000 -601387.155000,4611975.550000,3225,7055,117.483490,152.812424,133.109940,125.919838,112.531410,104.795876,107.944633,104.671906,103.465294,108.134720,110.209099,124.432236,143.283493,160.531418,172.787628,189.754562,195.804153,193.217377,183.250443,176.275223,168.415710,167.812408,161.481827,138.696716,128.696716,141.126465,167.655380,147.134720,82.762825,21.138035,14.680185,24.595060,26.559523,45.052090,65.043823,48.523163,5.119016,0.066116,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.265290,0.580165,0.000000,0.000000,0.432232,0.000000 -601394.155000,4611975.550000,3260,7055,110.807457,118.584305,100.121506,90.675224,78.650429,69.956223,73.129768,69.658699,68.617378,71.914894,75.080177,89.146301,109.567780,127.923149,142.906616,158.030594,164.749603,162.295044,154.939682,147.162827,140.559509,140.518188,132.336380,110.559517,97.237206,113.832245,146.600830,136.319839,77.352913,15.997538,12.030598,22.324812,25.718201,45.311592,63.286800,52.468616,1.875211,0.022314,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,3.442150,0.373554,0.672728,0.349587,1.026447,0.000000 -601402.355000,4611975.550000,3301,7055,2.166943,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.533059,0.354546,0.000000,0.000000,1.671904,12.211583,25.816544,43.079357,44.519852,45.368610,51.500843,64.528938,67.429771,60.803322,57.112415,41.639679,41.419849,18.929756,15.100829,6.404134,12.418184,13.557856,17.863640 -601518.555000,4611975.550000,3882,7055,0.466116,0.108265,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.857853,0.980167,0.171902,0.000000,9.890920,16.764479,30.990925,51.833900,58.801670,40.855385,36.875217,39.723152,36.055382,33.744637,27.874388,28.209925,15.206616,22.704964,14.122315,9.260333,11.578515,14.478515,16.038847 -601524.955000,4611975.550000,3914,7055,2.539671,5.080996,3.541325,1.599176,0.384298,0.023141,0.051240,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.042975,0.130579,0.246281,0.433059,0.358678,0.393389,0.148761,0.059504,0.031405,0.000000,0.000000,0.000000,0.000000,4.146286,13.352905,8.868605,0.909920,0.000000,9.607450,13.562824,22.628942,42.875225,42.997536,16.415716,9.844638,7.090091,7.848766,4.423971,2.676035,3.624798,2.280993,11.628102,2.307439,1.000001,2.247108,8.902481,8.308267 -601588.355000,4611975.550000,4231,7055,80.622330,107.116539,84.690926,70.154564,52.423981,40.669437,35.615715,31.615715,29.449598,29.531418,24.726458,30.457035,38.682659,47.315716,58.335556,74.583481,76.347122,69.220680,65.685966,52.155384,40.266956,37.949600,34.690922,11.010752,7.005790,20.227285,72.574394,80.992577,41.803329,6.538854,3.153733,15.470264,10.532248,18.302496,28.953739,25.800014,4.185129,1.628103,1.119837,1.304961,0.403307,0.687604,0.283471,0.850414,9.071076,2.620662,2.610744,2.539670,4.400001,2.847934 -601591.955000,4611975.550000,4249,7055,153.252060,161.855377,157.607437,143.475220,128.409103,118.756218,116.227287,110.830597,109.681831,110.078529,110.896713,122.640511,138.227295,150.657028,163.607437,176.780991,182.053726,175.962814,163.433884,146.169434,136.095062,132.880173,126.318199,91.177696,73.293404,96.698364,133.111572,112.764481,56.185970,14.014067,11.483489,12.625634,12.050429,19.300846,26.079357,21.595886,2.877692,0.780168,0.730581,0.671076,0.241323,0.334711,0.005785,0.661158,11.400826,3.948761,5.255372,8.809918,0.000000,3.844628 -601622.355000,4611975.550000,4401,7055,5.557027,10.785132,9.685959,2.140500,0.595869,0.011571,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.257852,1.039671,2.745458,4.671080,3.948765,4.386782,1.986779,0.533886,0.669423,0.127273,0.000000,0.000000,0.000000,29.728111,57.000839,35.058693,2.125625,0.011571,5.334720,14.519025,37.466137,59.460342,49.880180,11.814886,4.478516,3.803309,2.900828,0.824794,1.186778,2.080993,0.321488,6.921490,7.801655,5.289258,1.676034,5.758679,6.022316 -601626.955000,4611975.550000,4424,7055,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.021488,0.000000,3.323145,14.117369,28.104975,48.230598,54.857044,51.722332,56.098366,62.352089,68.942162,59.012413,59.217365,43.034721,34.732239,5.126447,14.990085,1.664464,0.858678,2.691737,6.723142 -601644.155000,4611975.550000,4510,7055,90.639679,146.124802,147.761169,136.116547,121.414055,113.190910,111.314888,109.298363,108.281830,112.306618,114.480171,127.447113,148.207458,166.711578,180.480179,195.356216,200.571091,192.810760,175.381012,154.695053,142.149597,138.761169,133.372726,98.207451,76.967781,99.009102,134.951248,108.794228,52.447124,16.771093,12.124812,8.485965,11.957867,13.999191,16.174398,8.802493,1.856202,0.457852,0.383472,0.004959,0.000000,0.118182,0.000000,0.129753,1.373554,1.385124,0.000000,0.000000,0.000000,0.000000 -601648.355000,4611975.550000,4531,7055,94.191750,150.453735,148.751266,137.817368,122.214066,114.966133,113.668617,112.230598,113.354568,115.470268,118.462006,131.776047,153.544647,173.032257,189.652084,204.585968,209.594238,201.172745,184.511597,162.883484,147.718201,144.585968,137.354568,101.486794,81.668617,104.643822,140.627289,115.164482,54.941341,17.694231,12.486796,8.036377,10.771914,12.650431,16.335556,8.144642,0.809093,0.233059,0.110744,0.046281,0.000000,0.000000,0.000000,0.000000,0.000000,1.310744,0.000000,0.000000,0.000000,0.000000 -601657.755000,4611975.550000,4578,7055,100.165306,150.451248,151.509109,140.988449,126.153732,116.591751,114.633072,114.004974,114.228111,116.847946,119.434723,135.104141,158.244644,179.492569,195.112411,211.674393,215.021500,206.905792,189.459518,167.757034,154.509109,151.228119,143.236374,104.352081,82.558693,106.765305,146.806625,118.161995,56.938858,17.504148,13.021506,7.888442,10.612412,11.966132,18.147125,8.967781,0.314878,0.295042,0.000000,0.000000,0.057025,0.013223,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,1.661157,0.000000 -601678.955000,4611975.550000,4684,7055,110.519844,160.114899,157.288452,148.437210,134.999191,123.718193,123.891747,124.023979,123.164474,128.478531,131.825638,145.866959,167.081833,189.057037,206.040512,222.395889,228.462006,220.247131,199.850433,177.800842,165.536377,162.412415,156.263657,119.833893,96.371086,118.842163,146.090103,115.222328,54.627293,17.181009,14.205804,7.514887,11.458694,12.552083,16.216547,9.049601,0.779341,0.414051,0.069422,0.031405,0.000000,0.000000,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601712.555000,4611975.550000,4852,7055,104.842995,167.165298,160.859528,149.876053,135.173569,124.661171,126.884315,125.677704,127.520676,130.421509,132.173569,147.363647,167.719025,187.561996,204.438034,220.380188,225.421509,214.330597,191.330597,170.776871,159.338852,156.842987,150.818192,117.504150,96.140511,112.719025,130.438034,95.454559,43.305805,16.119026,13.710763,11.608280,10.435554,11.778528,16.069439,6.237199,0.831408,0.782647,0.246282,0.000000,0.009918,0.402480,0.000000,0.339670,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601728.755000,4611975.550000,4933,7055,124.975220,176.917374,164.016541,150.876053,133.809937,123.330597,125.148773,125.198364,126.743820,131.677704,132.413239,145.578522,166.165298,186.264465,201.785126,218.123962,222.702484,210.958679,189.264465,170.008286,159.826462,158.561996,152.000015,119.537209,98.429771,116.190102,129.834732,93.727287,44.264488,16.204149,13.818200,15.219025,12.394231,13.605802,16.697536,10.240509,1.427279,0.225622,0.118182,0.029752,0.000000,0.000000,0.009918,0.286778,1.511570,1.410744,0.000000,0.000000,1.360331,0.000000 -601736.155000,4611975.550000,4970,7055,148.040497,185.255371,159.470245,148.280167,130.635544,120.536377,121.652077,120.817368,123.610756,130.197525,129.147949,143.809097,164.164459,185.114883,202.247131,218.833908,222.371094,212.222336,194.891739,176.792572,167.585953,166.594223,162.172729,128.065308,107.842171,126.470261,147.437195,112.156219,54.032249,17.780184,14.742993,22.247953,12.102494,18.253738,22.269440,14.429769,1.936368,0.090910,0.543803,0.000000,0.067769,0.085951,0.000000,0.000000,2.228926,0.000000,1.198347,1.142975,0.000000,0.000000 -601115.155000,4611965.550000,1865,7105,156.381012,164.381012,157.025635,151.769440,140.695068,135.703323,137.785965,136.265320,136.843811,144.612411,147.381012,164.265305,187.893402,201.108276,211.703323,220.860336,226.761169,237.141342,228.447113,211.232239,198.521500,194.571091,190.736374,147.876877,119.157867,143.695053,188.562820,162.025635,81.174400,19.807455,17.339689,19.519852,21.449604,33.736382,45.430599,37.571091,5.382656,0.914879,0.583473,0.362811,0.538845,0.439672,1.448761,0.322314,17.033060,7.813224,5.753720,7.642149,1.085124,6.256199 -601119.555000,4611965.550000,1887,7105,101.551247,95.461174,83.337204,71.687622,58.549603,50.896709,48.493401,45.638859,44.407452,48.295883,48.247952,60.492577,78.823151,89.659515,97.287628,104.712418,108.105797,117.097534,117.221504,104.419846,90.003326,88.411583,84.945473,54.987610,37.198357,54.604145,120.560349,130.444641,70.709106,12.735551,7.722332,6.773565,15.799190,29.692583,44.866131,35.416550,1.785128,0.000827,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.313225,2.803306,1.047108,0.499174,0.000000,5.204133 -601341.955000,4611965.550000,2999,7105,160.206604,178.751266,169.858704,166.453735,155.933075,148.833908,148.255386,148.238861,145.428940,150.214066,154.891754,167.263657,184.313248,200.759521,215.792587,229.957855,237.114883,237.255386,220.371094,207.189255,201.891754,197.875229,192.809113,164.891754,149.561172,163.585968,180.395889,153.842163,82.676872,21.080183,17.528118,16.147951,25.328119,34.709114,48.776051,37.028946,4.580173,0.492563,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,8.175207,1.064463,3.748761,0.870248,2.279339,0.000000 -601345.555000,4611965.550000,3017,7105,178.982666,187.412415,174.676880,170.784317,160.900024,152.908279,152.205811,149.346298,147.668610,152.635559,154.759521,166.751266,180.643814,196.255386,211.222336,224.544647,234.214066,233.528122,217.561172,205.040512,201.321503,197.263657,192.445480,167.627289,153.776047,165.486801,180.561172,153.371094,81.858696,24.222334,17.495060,14.585138,24.172747,33.825638,45.668613,35.495060,3.519016,0.496695,0.042976,0.000000,0.000000,0.000000,0.000000,0.000000,2.317356,1.196694,1.082645,0.941322,1.164463,0.000000 -601351.755000,4611965.550000,3048,7105,163.113235,199.295044,182.088440,176.931412,165.815720,157.923157,158.972733,155.600830,153.757858,157.361160,160.146286,170.542984,185.171082,200.650421,214.642151,227.708267,235.311584,232.972733,216.716537,202.038849,196.460342,193.419022,185.972733,161.361160,148.204147,158.609100,169.104965,142.551254,72.708282,21.385971,16.906631,14.586794,20.941341,27.270266,40.080189,25.297539,2.320666,0.271075,0.033884,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,6.158678,0.000000,0.000000,2.510744,0.000000 -601361.955000,4611965.550000,3099,7105,197.242172,197.052078,181.721497,173.944641,164.638870,160.795883,162.754562,159.862000,159.969437,164.415726,169.374405,182.390915,200.209091,215.680176,231.093399,246.027283,253.514877,248.341324,231.952896,217.539673,209.440506,208.382645,198.209091,174.027283,159.159531,168.581009,182.812408,150.308289,76.423981,22.159525,18.019030,20.064482,20.286797,32.564480,47.944641,32.431423,3.361990,0.009918,0.115703,0.000000,0.140496,0.100000,0.000000,0.000000,1.061984,8.052894,0.000000,5.180993,1.045455,0.000000 -601378.555000,4611965.550000,3182,7105,138.464478,146.194229,131.326447,122.119835,110.037193,104.053726,107.119843,104.475212,102.219017,105.896713,110.144638,124.714874,143.111588,159.169434,174.987625,190.111572,196.871902,195.962814,185.384293,176.690094,170.904968,170.623978,164.500015,140.690094,128.450409,143.103317,168.095062,148.409103,84.351250,20.328117,14.954562,19.695885,25.896715,42.359524,58.574402,47.921509,2.470254,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.663637,0.000000,2.716529,3.771076,0.884298,2.879339 -601387.555000,4611965.550000,3227,7105,73.647133,81.441345,63.967781,52.814064,39.895885,31.638859,31.654560,28.094229,26.533899,29.364477,28.381006,38.381004,51.681011,63.757042,76.256226,90.677704,97.694229,98.396713,97.859520,93.190102,86.884315,87.355385,84.454559,59.517372,46.061176,66.826462,110.347122,109.322327,60.776878,9.864477,7.677705,21.850428,22.104151,38.710766,60.685970,46.595062,3.199179,0.173554,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.423141,0.223141,0.252893,0.313223,0.000000,0.000000 -601524.755000,4611965.550000,3913,7105,18.848766,9.412404,2.926450,1.068597,0.280992,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.066116,0.273554,0.231405,0.099174,0.198347,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.529758,29.028942,17.585964,0.706616,0.000000,8.619020,8.993402,21.990097,40.533905,34.086792,10.455382,4.366123,5.109096,5.051243,2.865292,1.439670,1.806614,3.225622,6.009922,10.723969,4.627275,0.181818,1.358679,23.019840 -601565.755000,4611965.550000,4118,7105,113.236366,145.439682,118.522331,106.117371,86.571922,71.266136,64.970268,56.781830,52.304974,51.608276,44.591747,50.038029,60.733898,70.208282,81.960350,98.786797,101.679359,93.861176,89.547127,73.216545,58.309105,55.018200,50.709106,16.883486,8.416540,29.365307,92.216545,101.423157,53.654564,8.873569,4.609936,15.051256,8.235553,21.021507,29.947954,25.300844,1.831408,0.095868,0.000000,0.224795,0.010744,0.197521,0.323141,0.171901,14.936366,7.852893,2.808265,0.934711,2.012397,0.000000 -601568.955000,4611965.550000,4134,7105,78.942154,114.560349,85.657867,76.075218,56.985966,45.557041,40.520672,35.694221,32.338856,32.347122,27.396708,31.942163,39.371086,46.500011,55.570259,67.619019,70.043816,64.804146,61.166130,48.633896,37.594227,36.024803,32.736378,10.461990,6.134717,17.985134,68.952904,83.171082,46.844646,7.517368,2.976046,13.709105,8.183484,21.709936,33.719028,29.507458,3.818186,1.530581,1.077688,0.566943,0.150414,0.457852,0.000000,1.507439,13.984301,9.320662,3.114050,2.695869,2.660331,0.000000 -601573.755000,4611965.550000,4158,7105,76.043808,106.575226,79.305801,68.710762,55.812408,44.218189,40.176868,35.517365,32.682655,33.137199,29.244637,33.004967,40.358685,47.838024,57.023151,66.349594,68.963646,64.042160,61.161991,50.568607,41.763645,39.565296,36.145462,11.466952,4.555379,23.177696,65.864471,79.627281,42.950424,7.566125,3.285963,16.704149,13.287619,24.411585,38.559521,35.875221,9.375216,4.499178,5.356203,6.277689,5.938847,5.988433,3.733888,3.860333,8.039671,11.388431,2.329752,1.813224,0.128926,5.335539 -601580.155000,4611965.550000,4190,7105,149.917374,168.760345,147.876053,133.380188,112.644646,98.900833,94.297531,87.983475,84.719025,85.586792,81.314064,90.231415,103.710747,115.818199,129.446304,143.586792,148.322327,141.818192,135.694229,118.198364,107.057869,103.859505,99.181824,58.710766,41.950432,71.537209,122.115715,114.876053,59.909111,13.428944,9.016547,16.250431,10.870264,20.159523,33.074402,25.685966,1.678516,0.064463,0.004959,0.130579,0.000000,0.000000,0.020661,0.000000,10.866943,6.359505,5.609918,2.780166,2.230579,0.000000 -601588.555000,4611965.550000,4232,7105,147.418182,175.343796,173.104126,156.062805,140.897522,130.583481,127.773567,121.393402,120.170258,119.847946,119.980179,130.525635,147.947098,161.252884,175.897522,191.004959,196.988434,189.616531,172.847931,150.476028,137.575211,133.790100,128.145462,86.624809,69.104149,92.145470,129.558685,107.963646,49.897541,15.768613,11.649605,12.787620,10.425636,15.038860,18.166962,11.383485,2.319013,1.455375,0.621489,0.896695,0.476034,0.212397,0.497523,1.323970,4.470248,5.932232,0.000000,1.242975,2.554546,8.774381 -601647.955000,4611965.550000,4529,7105,106.666954,148.625626,146.146286,136.410751,119.683479,110.691742,110.038849,106.228935,106.923149,109.931412,111.162819,124.476868,145.220673,164.402496,179.435532,192.666946,198.030594,190.799179,177.485123,156.551254,143.832245,140.352905,134.063644,98.138023,76.047127,100.162819,145.295044,122.600838,58.832253,16.650433,12.187622,9.761171,11.406627,15.167787,21.294235,11.210759,0.733887,0.374382,0.046281,0.000000,0.055372,0.128099,0.000000,0.714050,2.776033,0.000000,1.081818,0.000000,0.000000,0.000000 -601659.755000,4611965.550000,4588,7105,91.763649,153.579346,151.571091,141.942993,128.381012,117.761169,118.257034,117.645470,116.752907,121.546295,125.091759,140.414062,165.257034,186.422333,204.116547,219.794235,225.124802,217.546295,198.901672,177.810760,164.389267,160.347946,153.100006,115.480179,91.967789,115.232246,151.736374,121.695053,58.612419,18.785143,13.918201,10.977701,13.768612,14.460349,19.740513,8.476047,0.992564,0.142976,0.007438,0.066116,0.000000,0.019835,0.000000,0.000000,0.000000,0.000000,0.000000,1.022314,0.000000,2.171901 -601672.955000,4611965.550000,4654,7105,111.896713,162.516541,156.822327,146.260345,130.772751,119.723152,120.128105,119.194221,120.103317,124.640503,127.698364,142.136383,164.938034,186.582642,204.078506,220.781006,226.938034,218.020676,199.392563,176.541336,164.417374,162.582657,155.590927,118.425629,94.169441,116.070259,148.921509,116.822319,55.781013,18.257870,14.144647,10.603322,11.683486,13.897537,15.398365,10.652906,0.398348,0.143802,0.000000,0.000000,0.000000,0.000000,0.000000,0.090909,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601698.355000,4611965.550000,4781,7105,119.353745,168.552078,162.940506,149.163635,134.527283,124.370262,125.733902,124.196709,125.808289,129.163666,133.436371,146.576859,167.957031,188.279343,204.485962,221.477692,226.833069,216.717361,193.915710,172.122314,161.742157,159.452896,152.254547,118.064476,97.477699,112.907455,133.998367,98.684311,46.130596,18.268614,13.841341,13.224808,12.123157,12.595058,15.382663,7.390095,0.786780,0.537192,0.108266,0.109918,0.000000,0.138017,0.074380,0.067769,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601722.555000,4611965.550000,4902,7105,124.377701,173.253738,160.848770,147.964493,132.179352,121.724808,124.666962,122.592583,124.567787,129.642166,131.385971,146.262009,167.749603,189.435547,206.435547,224.022324,228.584305,216.766129,196.212402,175.534729,165.542984,164.410751,157.700027,122.319855,99.898361,119.228943,138.923172,102.509933,48.823982,18.077703,14.336383,17.062002,12.609933,14.249604,18.291752,10.342164,1.491740,0.449588,0.195869,0.138843,0.044628,0.152066,0.000000,0.022314,0.000000,0.000000,1.853719,0.000000,0.000000,0.000000 -601116.155000,4611955.550000,1870,7155,152.414062,148.893402,139.728119,131.405792,121.100014,113.405800,113.281830,112.207451,111.719849,119.133072,120.405800,135.926453,156.769440,169.595886,179.736374,188.496704,194.248779,207.207458,207.108276,189.554565,174.934723,172.389267,171.918198,129.381012,97.661995,123.157867,185.455383,169.587616,89.529762,22.116549,15.628945,14.019850,23.062004,35.554562,54.248787,40.785976,3.814057,0.242150,0.276860,0.003306,0.000000,0.000000,0.135537,0.000000,6.136364,11.324795,6.871075,2.729753,0.000000,3.368595 -601122.755000,4611955.550000,1903,7155,38.492569,38.494221,34.291740,30.149593,25.348766,23.865295,24.637196,24.113228,24.323145,25.719839,26.653725,29.819014,35.359509,39.620670,42.915710,46.444633,47.733891,50.022320,47.064468,42.395046,39.549595,38.739677,36.863640,27.126451,20.264467,26.904137,45.640503,53.957039,31.640509,5.212404,3.351247,4.764469,13.977700,25.362825,47.089272,35.944641,7.615711,1.060333,1.315706,1.157852,0.000000,0.194215,0.000000,0.161984,1.072728,1.167769,1.196694,0.000000,2.933885,0.118182 -601322.555000,4611955.550000,2902,7155,182.257034,193.133072,182.496704,175.166122,163.645462,158.182663,158.571091,155.992569,155.901672,160.141342,165.000839,180.124802,198.744644,215.405792,230.959518,244.207458,251.232239,246.083481,225.298355,208.116547,198.207458,194.083481,185.918198,156.066956,137.942993,155.124802,171.331421,142.372742,72.331429,22.190926,16.901672,15.938035,21.002499,30.141338,38.488449,32.224812,4.276866,1.160333,0.231406,0.318183,0.257852,0.243802,0.283471,0.524794,9.902481,6.915703,1.751240,0.905785,6.880992,4.153719 -601326.755000,4611955.550000,2923,7155,168.674393,181.558685,181.905792,177.219849,166.335556,159.996704,160.971909,160.459518,159.509109,165.426453,169.633072,183.004974,202.219849,218.343811,234.112411,249.922333,257.666138,254.674393,236.302490,218.600006,210.897537,207.980179,201.145462,171.145462,154.699188,167.732239,182.385132,148.657867,77.600021,22.583490,18.285969,14.581009,20.951258,30.790104,42.657867,30.608284,2.676040,1.038019,0.312397,0.123967,0.045455,0.103306,0.061984,0.040496,3.497521,3.414877,1.919008,1.047934,0.000000,4.274380 -601333.355000,4611955.550000,2956,7155,179.614059,198.779343,192.291748,186.076859,176.853745,169.514893,166.804138,166.688431,165.845474,170.787628,174.804153,188.316528,205.671906,222.498352,239.663635,255.159531,261.853760,257.440521,232.349594,212.233887,201.481827,197.754547,187.300003,153.969437,135.647125,149.994232,162.837219,130.374390,61.002495,20.936384,17.027290,15.200845,15.390927,22.230597,27.941343,17.432247,5.067778,2.745460,1.140498,0.845456,1.075208,0.207438,0.561985,1.267772,8.349587,1.405785,3.532232,2.183471,2.601653,0.000000 -601343.555000,4611955.550000,3007,7155,186.296707,205.114883,187.577682,180.883469,170.800827,162.742981,163.462006,162.255386,161.346298,166.792572,170.263641,183.172729,201.999161,220.536362,238.172729,257.800842,266.619019,262.230591,241.660339,221.511566,210.693375,206.552887,198.627274,160.065308,138.668610,156.428925,181.858688,150.387604,72.247124,21.909937,18.057045,12.689272,18.588448,24.910763,32.635555,23.114895,1.628103,1.154549,0.367770,0.000000,0.358679,0.169422,0.234712,0.885126,1.328099,1.386777,3.493389,2.284298,0.000000,0.000000 -601356.755000,4611955.550000,3073,7155,182.823990,186.666946,171.138016,161.600830,150.361160,144.278534,146.592575,143.947937,143.055405,146.014053,150.857040,162.989273,180.212402,194.361160,207.947937,221.071915,227.650421,222.518188,207.939682,193.766129,187.509933,185.600830,178.518173,153.253723,139.972748,150.245468,167.989243,143.633911,75.981018,18.719854,16.228945,20.143820,23.435555,34.452084,48.666965,35.843819,2.985131,0.220661,0.160331,0.029752,0.073554,0.008265,0.000000,0.000000,4.865290,5.566117,1.819835,2.752893,2.085124,3.358678 -601363.555000,4611955.550000,3107,7155,112.156219,115.623161,98.722336,87.689278,76.391754,69.294228,71.674393,69.699188,66.682663,70.823151,73.740509,85.771919,101.788452,114.705803,128.771927,142.011597,148.499176,147.242996,140.152084,132.862823,127.763657,126.945473,122.763657,101.846298,88.433075,104.557045,134.482651,125.226463,70.995064,15.012413,11.160350,19.275225,23.747953,43.185143,60.631424,50.342167,4.520668,0.141323,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,4.714878,1.934712,1.891736,1.196695,0.922314,6.109918 -601551.755000,4611955.550000,4048,7155,62.941334,124.131424,110.379356,96.536385,77.833900,61.090099,55.205799,47.288445,40.900021,38.197540,30.901670,35.131420,43.009930,49.660347,60.098362,73.057045,75.321510,68.891754,64.718201,50.792576,36.445469,33.866135,28.609108,3.133067,0.806614,13.698363,82.296715,104.924812,56.966129,9.235553,2.600845,12.845470,9.152079,20.438032,36.544643,26.218199,0.561160,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.993389,1.037190,0.000000 -601557.555000,4611955.550000,4077,7155,71.742996,141.489273,124.208275,108.133896,89.249596,72.621513,66.406631,57.704151,50.257870,48.687622,40.919025,46.381836,55.365311,66.571922,77.638023,95.290924,96.712410,87.588440,83.861168,65.133904,49.332253,45.902496,42.290928,7.157037,2.989263,23.844646,96.348770,114.042984,62.414894,8.428115,3.844647,12.065305,8.792575,18.972746,31.489273,22.104149,0.679341,0.028099,0.000000,0.000000,0.000000,0.000000,0.000000,0.026446,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601566.955000,4611955.550000,4124,7155,131.590088,179.284317,148.945465,136.052917,115.681000,100.838028,95.499191,88.788452,84.689278,85.135559,78.647957,87.284317,100.019844,114.705795,129.366959,149.110764,152.350418,142.672745,135.325638,116.970261,100.978523,98.267792,93.309113,49.052914,34.523987,62.631424,126.019844,120.928940,63.110764,13.564481,8.482664,12.251257,10.301668,20.044647,28.781010,23.466135,0.447935,0.000000,0.040496,0.000000,0.000000,0.000000,0.000000,0.080992,9.847935,0.000000,0.000000,0.000000,0.000000,0.000000 -601597.955000,4611955.550000,4279,7155,145.261169,170.128922,164.616531,150.872742,137.327286,128.476044,123.798363,118.897545,117.203323,116.905807,116.971924,128.021500,144.393402,158.525620,172.095871,187.426468,192.509125,186.566956,171.467758,151.426453,138.864471,136.178528,130.600006,91.029762,72.558701,96.492584,135.674393,114.170265,52.781834,14.598366,11.872747,11.102493,11.560349,16.939688,20.865307,14.745469,2.323971,0.259505,0.553720,0.008265,0.087604,0.292562,0.061158,0.970250,10.561158,1.375207,7.542976,4.476860,4.982646,2.142149 -601605.555000,4611955.550000,4317,7155,136.019028,167.399200,163.159531,150.341339,135.457047,124.151260,122.010765,115.556221,115.167793,115.275230,116.250435,125.002495,140.952911,155.514893,168.366135,183.688446,189.349609,184.027298,167.721512,148.093414,135.225632,133.390930,129.481827,90.473572,72.250427,94.076874,133.142990,111.688454,53.804150,15.298365,11.771093,12.540511,11.819026,18.062002,24.019030,16.574396,2.810750,0.744630,0.488432,0.802481,0.076033,0.497521,0.325621,0.540499,5.989257,1.428099,2.348761,5.494215,1.204959,0.000000 -601642.355000,4611955.550000,4501,7155,160.068619,165.845474,146.506638,136.068619,122.027290,112.242165,110.093407,109.828941,109.250427,112.837204,117.490097,131.746292,151.961182,172.300018,188.126450,204.043808,211.638855,204.465302,185.052078,165.002487,153.192581,150.597549,143.663666,108.638855,86.547951,110.399185,145.324814,115.837204,56.043819,15.538034,13.060349,11.367784,12.184314,15.999191,19.586796,15.928942,2.066947,0.599175,0.468597,0.504133,0.314877,0.295870,1.649588,0.410744,14.939671,8.390083,5.259504,3.249587,3.292562,0.000000 -601649.155000,4611955.550000,4535,7155,129.307449,150.098343,150.048767,136.238861,122.776047,112.015717,112.875221,111.924805,112.090096,115.850426,119.445465,134.784302,157.883469,179.883484,196.288452,212.164490,218.114899,210.569443,193.164490,171.296707,158.495041,155.519836,145.536362,109.139679,85.916550,109.486786,148.676865,122.098358,58.371094,18.114069,13.230597,8.014890,11.997536,14.485141,17.885967,10.537204,1.957029,0.285951,0.077687,0.002479,0.000000,0.040496,0.000000,0.000000,0.000000,3.950414,0.000000,2.852067,0.000000,0.000000 -601659.555000,4611955.550000,4587,7155,95.251259,155.532257,155.482666,142.689270,129.557037,119.606621,120.590096,119.846291,119.532242,125.094223,127.763649,142.102493,163.325638,184.565308,202.466141,221.267792,226.879349,219.523987,199.383484,176.433075,164.127289,160.077698,154.127289,117.251251,93.523979,115.515717,153.358704,121.672737,58.309109,17.796711,14.011590,10.321503,12.589272,15.228119,17.053736,8.811585,1.200003,0.187605,0.068595,0.000000,0.000000,0.304959,0.000000,0.144628,0.000000,0.000000,0.000000,2.069422,0.000000,0.000000 -601666.155000,4611955.550000,4620,7155,114.687622,169.406631,159.398361,148.340500,134.150421,123.522324,122.844643,122.406624,123.852905,128.224808,131.761993,144.679367,164.902496,186.737198,204.571899,222.976852,229.952057,222.357025,200.555359,178.505798,165.290924,161.935547,155.654556,119.142159,96.084312,117.638031,148.018188,115.828110,55.175224,18.340515,14.150433,8.977700,11.992579,14.263654,18.255390,8.643814,1.344632,0.465290,0.039670,0.157026,0.000000,0.000000,0.000000,0.000000,0.000000,1.966942,0.000000,0.000000,1.694215,0.000000 -601680.755000,4611955.550000,4693,7155,108.976044,160.199188,158.579346,145.323151,129.686783,120.562820,122.967781,120.711586,121.868607,125.331421,128.587616,143.050430,163.852081,183.496704,200.215714,217.290100,223.430588,214.066956,192.628937,170.860336,159.513229,158.554565,148.736374,117.843803,94.951256,115.562813,140.852081,104.199188,48.496716,16.414894,13.521506,13.245470,11.290099,12.505801,17.011587,9.262823,0.935541,0.536366,0.168596,0.033885,0.109918,0.000000,0.214050,0.080166,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601710.955000,4611955.550000,4844,7155,122.959511,167.028122,153.771927,140.565292,125.920677,114.738861,116.755394,116.565308,118.300842,123.284317,125.366959,140.755371,162.499191,182.970261,199.672745,216.441345,220.119034,211.879364,193.234726,173.978531,164.135559,163.342148,157.127289,122.788452,100.689270,121.267792,147.920685,115.714066,55.821507,17.103325,14.284316,18.333902,13.700017,18.204149,22.317373,14.188447,1.444632,0.037190,0.187604,0.065290,0.000000,0.082645,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601113.155000,4611945.550000,1855,7205,165.123962,168.743805,160.983475,151.330582,143.950409,137.140503,138.619827,138.190079,138.578506,146.066116,148.371902,164.487610,187.595047,201.008270,210.471069,219.454544,225.975204,234.793396,227.950409,209.099167,195.652893,191.685944,189.090912,148.818176,122.132256,142.900833,190.818176,162.545456,81.900848,20.983490,17.190102,17.003323,22.446299,35.785149,45.834732,39.859520,4.690091,1.477688,0.598349,0.912398,0.176034,0.528927,1.913224,0.337190,14.061158,9.072727,5.662810,4.408265,2.119835,12.416531 -601117.555000,4611945.550000,1877,7205,73.023972,69.062820,59.755383,52.781830,45.728935,39.147118,38.950420,37.202488,36.648769,39.219017,39.081001,46.049595,55.403316,61.506622,67.357033,71.720673,74.907455,80.861168,79.591751,72.299187,64.455383,62.770256,62.336372,42.855381,29.478523,42.144638,83.452904,98.666962,55.721508,9.125631,5.666954,9.356208,15.733901,31.017374,48.509933,35.408283,2.681824,0.015703,0.079339,0.000000,0.000000,0.000000,0.000000,0.128926,3.138844,1.345455,1.249587,1.472728,0.000000,1.689257 -601300.355000,4611945.550000,2791,7205,154.745483,155.474396,147.962006,136.763657,126.259514,119.085960,118.400009,114.267776,114.044640,116.143814,120.895882,133.168610,149.664490,165.821503,179.052917,194.879364,198.763657,194.284317,181.804977,168.333908,159.689270,156.780182,150.400024,121.342163,104.807449,125.499184,154.747131,135.482666,73.912415,19.495886,13.672747,17.520678,23.752909,34.904152,53.557045,45.672745,6.108273,0.238017,0.197521,0.147935,0.000000,0.342149,0.000000,0.110744,21.923969,10.666944,9.518184,11.556201,5.223142,5.282645 -601304.755000,4611945.550000,2813,7205,159.708267,158.969421,152.002487,140.217361,125.060349,118.531418,116.167786,113.572746,113.638855,114.862000,119.457039,134.539688,154.341324,172.622314,190.622314,210.399185,219.060333,213.704971,201.316528,185.266953,174.374390,171.382645,164.572739,126.060349,104.936378,131.085144,165.977692,142.655380,77.316551,18.909109,14.961176,17.957869,19.442167,30.845472,45.176052,35.735558,4.306618,0.202480,0.083471,0.285124,0.092562,0.296695,0.761984,0.000000,11.176861,10.188431,7.039671,5.921489,8.291737,10.931406 -601311.955000,4611945.550000,2849,7205,112.357040,125.173561,113.804970,100.259521,85.471924,75.072731,72.327286,68.639679,67.425629,66.334724,68.723160,80.117371,96.683487,112.175217,132.662003,155.132248,163.553741,159.322327,147.121490,130.782654,116.967781,114.328110,107.190926,64.777702,47.500839,76.627289,135.279358,128.011581,67.664482,13.603324,9.744646,12.287620,15.444647,26.641342,40.647953,29.919025,1.585955,0.118183,0.042149,0.136365,0.030579,0.880167,1.259505,0.000000,7.125621,2.338017,2.019835,4.184298,0.976860,5.702480 -601570.155000,4611945.550000,4140,7205,75.966949,103.028931,101.382660,87.220680,72.166138,61.722332,58.499191,53.415726,51.087624,51.556221,50.112419,58.516552,70.776886,81.496712,93.129768,107.502495,112.676048,110.428116,104.568611,91.750427,83.063652,80.978531,77.345467,44.828117,31.263651,54.029774,109.783485,112.758690,61.180187,11.300016,7.031423,13.219025,15.309934,28.775225,43.439690,35.444653,5.861992,0.620662,0.227273,0.114876,0.203306,0.188430,0.285951,0.736365,17.046284,15.065291,5.938844,5.803308,2.835538,2.747934 -601594.355000,4611945.550000,4261,7205,76.186783,116.316544,105.448776,89.258690,69.713234,55.721508,46.357872,37.224812,31.651258,25.693403,21.177702,24.461172,33.305801,41.549610,56.539688,76.845467,80.415718,70.126457,65.176048,43.752087,26.199190,23.197536,20.872742,0.400829,0.087604,10.331418,84.118195,114.919846,61.655392,8.397535,1.897536,6.439679,5.856211,14.192578,26.713242,22.047953,0.509092,0.024794,0.000000,0.060331,0.000000,0.000000,0.097521,0.403306,25.091738,14.448762,12.039672,8.695044,3.438843,6.794216 -601642.155000,4611945.550000,4500,7205,146.867783,159.657043,146.326462,133.995880,119.400841,109.615715,109.797539,109.342995,108.896713,114.020676,116.756218,131.847122,153.913239,173.648773,191.450424,207.095062,213.516541,206.764481,188.731415,167.318192,156.714890,153.665298,146.409103,110.747948,88.599190,111.880180,147.838852,119.185966,56.516548,17.647953,13.309937,10.651256,14.620678,17.787622,22.132252,15.700843,3.223146,0.828927,0.647935,0.352067,0.386778,0.667769,1.308266,0.606612,8.015704,13.137191,2.980992,13.953720,8.616529,1.959504 -601649.755000,4611945.550000,4538,7205,130.794235,155.519028,149.089279,138.733902,126.056221,115.147133,115.452911,114.915726,114.238037,119.717377,122.725639,137.246307,158.957047,179.122330,196.370255,213.155396,219.833084,211.907455,194.089264,172.337219,158.857880,156.444656,149.345474,112.295891,89.469444,112.998367,148.676056,120.742172,57.758698,16.825638,13.576880,10.581007,12.090099,14.752911,19.771919,10.814064,1.395871,0.176860,0.384298,0.000000,0.000000,0.016529,0.000000,0.028099,0.000000,4.821488,0.000000,0.000000,1.612397,4.233058 -601666.955000,4611945.550000,4624,7205,119.688446,165.614059,158.762817,147.663635,133.308273,122.043816,123.341339,122.795883,123.101669,129.638855,130.382660,146.027283,167.473557,189.498352,207.696701,226.771088,232.878525,225.176041,202.109924,180.936371,168.316528,164.374390,157.390915,120.448776,96.977699,118.845467,150.217361,117.374397,55.134727,18.023159,14.308284,8.244641,11.865304,13.076052,18.074398,9.190098,0.637192,0.170248,0.357852,0.133885,0.000000,0.000000,0.001653,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000 -601687.555000,4611945.550000,4727,7205,105.495880,165.053726,158.938019,142.789261,129.582657,118.665306,120.252083,121.475220,121.995880,126.053734,130.028946,145.805786,168.367767,189.863632,206.557846,225.863632,232.095047,223.483475,201.500000,180.037186,169.640503,167.144623,161.045456,124.177704,99.954559,120.252083,147.847107,112.185966,50.070271,16.365309,14.640515,13.982663,13.743817,16.967785,19.240513,9.372740,1.678516,0.107438,0.352067,0.031405,0.011571,0.120662,0.000000,0.009918,1.402479,0.000000,0.000000,0.000000,0.000000,0.000000 -601702.955000,4611945.550000,4804,7205,135.738861,165.579346,150.149597,135.744644,122.347946,110.678528,113.810760,113.819023,114.951256,120.430588,123.364479,138.736374,160.108276,180.314911,196.372742,213.149597,218.075226,209.108276,193.918198,176.612411,167.521500,165.438858,161.918198,128.265305,104.992577,127.810760,157.984314,128.025635,65.232246,18.730597,14.719853,18.734728,14.825637,22.704151,29.973574,19.231422,2.480996,0.080992,0.000000,0.000000,0.000827,0.038017,0.268595,0.000000,0.000000,1.280992,1.061157,0.000000,0.000000,10.120662 -601113.155000,4611935.550000,1855,7255,147.638870,149.941330,141.685150,133.949600,122.850418,116.825623,115.321487,114.635544,114.362816,119.453720,122.238846,135.643814,152.420685,164.660339,173.057022,180.809097,184.495041,190.767776,185.057022,169.957855,159.247116,155.569443,153.081833,121.271904,96.957863,117.205788,162.817352,146.850418,78.098366,16.848780,13.916547,13.676048,20.213242,29.147953,43.181015,34.709938,2.604963,0.561984,0.183472,0.089257,0.215703,0.014050,0.644628,0.224794,7.414051,0.000000,2.501653,4.624794,3.914876,0.000000 -601119.955000,4611935.550000,1889,7255,140.430588,141.868622,137.447113,130.885132,117.381012,110.447128,112.455391,112.645477,114.414070,122.554558,124.108276,141.893402,168.248779,181.356216,192.273590,204.306641,211.612427,225.860336,224.389267,209.711594,194.670273,188.033920,190.463669,141.133072,105.604156,131.257034,204.761185,191.529785,103.744652,22.645473,17.314896,14.956216,24.057043,38.554562,54.628948,44.835556,2.462816,0.150414,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,5.233885,5.117356,2.256199,0.000000,0.000000,1.969422 -601280.755000,4611935.550000,2693,7255,145.439682,159.026459,152.257858,142.216537,129.497543,125.505806,122.563652,120.266136,120.315720,122.249603,125.671089,138.142151,153.555374,166.902496,179.365295,192.695877,196.340500,193.695877,177.803314,164.819839,156.175217,152.844635,147.109100,119.968613,104.844643,123.257866,145.993393,125.315720,69.125648,15.883490,13.373572,15.906630,17.439688,31.811588,44.323990,36.530602,6.000009,0.729754,0.300000,0.098347,0.271075,0.000000,0.219008,0.000000,8.572729,14.374383,2.891736,3.371902,2.122314,7.066117 -601286.155000,4611935.550000,2720,7255,125.159523,134.200836,129.498367,122.266960,110.630592,105.671913,102.895058,102.002495,101.027290,104.448776,107.903320,119.357864,136.498352,150.192566,166.242157,181.002487,187.630569,185.572723,173.994217,160.283478,153.928101,151.580994,146.209091,117.349602,101.357864,121.514893,155.142975,140.895050,77.647125,16.348780,13.291755,14.030594,22.937208,35.713245,55.886795,45.477703,4.416536,0.016529,0.000000,0.000000,0.000000,0.025620,0.000000,0.000000,6.332232,0.897521,2.616529,2.354547,4.348761,4.858678 -601295.155000,4611935.550000,2765,7255,133.962830,150.217361,143.771088,132.729752,122.192574,117.085136,116.151253,113.886795,113.853737,116.713234,121.209106,133.440506,150.754547,166.250397,183.275192,197.589249,204.564468,200.308258,188.961151,174.622299,167.200821,164.291748,157.754547,128.068604,109.895058,130.713226,160.324799,141.225632,77.589272,17.551260,14.341341,14.747950,21.837206,35.465313,51.589279,39.271919,3.709100,0.012397,0.000000,0.000000,0.002479,0.000000,0.000000,0.314050,7.842150,9.269423,6.431406,2.610744,0.000000,0.000000 -601640.355000,4611935.550000,4491,7255,143.441345,149.209930,128.871094,114.804977,99.292580,89.962006,88.185143,86.821510,86.449608,89.681007,92.284317,104.945473,124.350433,141.466141,156.267792,168.920685,172.804977,167.945480,154.333908,137.581833,128.152084,126.796715,122.400017,91.838036,70.152084,94.449608,132.201675,112.953735,57.358696,14.833076,11.127292,13.409107,15.209934,24.123159,33.007458,31.125637,9.008277,1.755375,1.370251,1.457855,1.450416,3.938846,5.425624,5.928930,80.821487,59.431416,41.823147,32.066120,39.024796,34.371078 -601643.955000,4611935.550000,4509,7255,143.360321,151.699173,144.252884,131.004974,117.566956,106.203316,106.649597,106.319023,107.087616,111.128937,114.509102,129.343811,152.071075,171.938843,190.781815,205.839661,212.120651,204.856201,186.608261,165.889267,155.054535,151.079330,144.963638,109.723976,85.302498,110.071091,146.343796,119.542160,58.029774,16.672745,13.178533,12.030594,13.863654,18.624811,23.812416,16.857868,4.661991,1.517358,0.661984,0.520663,0.342976,0.586778,2.004134,0.855372,18.399176,12.709919,11.596696,6.038017,5.670249,4.140496 -601649.955000,4611935.550000,4539,7255,128.373566,155.522324,146.100830,133.712418,118.770264,109.522331,109.687622,109.861176,108.943817,113.034729,116.580185,133.166962,156.960342,179.580170,197.704147,214.365295,220.803314,211.588440,192.885956,170.786789,157.861160,152.795044,145.109100,107.819855,84.960350,109.042992,150.373566,123.571922,57.952087,17.717375,13.191754,12.187619,10.633900,16.840515,21.454561,14.862826,2.642155,0.350414,0.307438,0.275207,0.000000,0.282646,0.276033,1.471902,10.245455,6.937190,4.752067,1.032232,2.304132,2.796695 -601657.555000,4611935.550000,4577,7255,121.966125,163.156219,147.685150,137.999191,124.569435,114.949600,116.924805,117.561165,117.478523,124.776047,128.280182,143.627289,169.660355,194.643799,212.933075,232.685150,239.271927,230.544647,210.742996,189.470245,175.214066,172.891754,166.081833,125.900009,101.362823,124.941330,161.941345,129.825638,62.007462,18.869440,15.098366,10.362823,12.981010,16.855391,24.168612,12.516542,1.871078,0.358679,0.196695,0.000000,0.066116,0.080166,0.000000,0.007438,0.000000,3.121488,1.109918,1.003306,3.206612,0.000000 -601667.555000,4611935.550000,4627,7255,130.177689,159.967789,152.182663,138.290100,123.422333,115.670265,116.703323,115.223991,117.496712,120.199196,124.628944,140.571091,164.901672,186.827286,204.711578,223.190918,229.785965,221.149597,201.199188,180.447113,168.273560,164.438858,156.736374,119.769440,95.438866,118.620682,153.339676,120.744652,56.976055,16.954563,14.248779,14.978529,12.593406,16.960348,21.627291,13.842165,1.491739,0.090083,0.071075,0.000000,0.759506,0.189257,0.000000,0.026446,1.324794,5.106612,1.096694,0.940496,3.414877,0.000000 -601675.755000,4611935.550000,4668,7255,133.093399,163.552917,151.296707,137.172745,123.602493,113.387611,116.495056,113.156212,114.941330,118.817368,121.685135,136.842163,161.428940,182.792587,200.974396,219.230591,225.643814,214.941345,194.685150,173.676880,162.296707,158.478531,151.354568,113.073563,89.767776,114.866951,149.949600,115.941330,55.123161,18.066961,13.759523,20.299192,12.523984,18.520679,24.109938,18.322332,2.834718,0.714051,0.516530,0.376034,0.145455,0.164464,0.000000,0.163637,4.790909,6.713223,2.096694,0.978513,2.412397,0.000000 -601682.755000,4611935.550000,4703,7255,127.628105,163.876053,151.438034,138.140518,124.239677,113.305794,115.661163,113.438026,115.446289,118.033066,120.636375,136.000015,157.834732,176.793396,194.322311,210.272751,216.107452,207.289276,187.925613,170.157028,158.363647,156.099182,151.636383,115.404968,92.396706,114.851250,146.842987,116.818192,57.487621,19.662828,13.785142,15.924811,15.062001,20.181009,25.443821,18.000845,2.688435,0.753721,0.594216,0.000000,0.249587,0.092562,0.404959,0.011570,4.267769,0.000000,1.175207,2.798347,1.140496,0.000000 -601688.155000,4611935.550000,4730,7255,114.454559,152.834732,134.355392,121.264481,105.281006,96.008278,96.223160,93.661171,94.115715,97.355385,96.867783,110.776878,128.099182,146.099182,160.057861,175.330597,178.206635,169.933899,158.099182,141.611588,132.528946,131.099182,126.818199,95.000015,74.371918,98.545471,138.396713,119.595055,60.256214,13.159521,11.528945,17.138859,12.000017,22.880184,30.066133,24.308283,2.445459,0.100827,0.088430,0.104959,0.000000,0.000000,0.340496,0.000000,7.327273,3.198347,1.766116,3.267769,1.501653,0.000000 -601113.155000,4611925.550000,1855,7305,68.452072,52.729763,47.855381,43.934719,36.032242,33.265301,33.412407,32.668606,32.701664,35.992569,37.354557,47.037197,60.238853,68.014061,72.658684,77.923149,81.923149,89.842972,93.200836,85.396698,76.055382,72.724800,70.700012,45.678520,28.222326,43.458691,93.825623,98.085129,54.076046,8.149599,6.427284,7.390093,18.701668,31.198368,54.732250,44.883488,10.514057,2.926450,2.421491,3.462813,3.192564,1.152893,0.000000,0.427273,6.838018,3.133059,0.000000,1.832232,1.119835,8.232232 -601122.355000,4611925.550000,1901,7305,195.230576,194.842148,177.445465,170.395874,162.503311,159.486786,160.222321,161.619019,161.238846,167.164459,170.023972,180.916534,192.866943,205.437195,213.247116,220.230576,222.015701,220.610748,201.891739,184.362808,174.693390,173.247116,167.718185,143.131409,126.916534,135.900009,141.635544,110.619019,52.767788,14.784315,15.247126,11.962823,14.747952,20.300846,25.139688,20.334726,5.066954,2.522320,1.818186,1.201656,0.805786,0.685952,0.152067,0.238844,17.596695,10.033058,7.773555,5.244629,1.305785,4.350413 -601268.955000,4611925.550000,2634,7305,4.435540,5.399178,3.378515,1.889258,1.008266,0.900828,0.756199,0.352894,0.443803,0.373555,0.467769,1.152894,2.276861,3.955374,5.952896,8.094218,9.439672,9.338019,8.422318,7.240498,6.333061,5.944631,5.754549,1.747936,0.723968,2.791737,14.224798,22.140507,13.400007,2.116533,0.523143,4.171908,13.245468,27.851259,45.797535,39.433075,13.771087,4.298352,2.747111,2.942979,1.933059,0.216529,0.511571,0.000000,0.026447,0.835537,0.055372,0.000000,0.000000,0.890083 -601273.755000,4611925.550000,2658,7305,28.328932,39.789268,39.538853,34.301666,28.907450,26.910753,27.612408,26.501663,26.315712,28.957863,32.669430,39.004971,48.740509,58.845470,68.376038,78.519012,84.333900,86.197540,81.248764,75.685135,72.782654,71.974380,69.081833,55.590096,47.019848,60.142990,86.087616,89.363655,53.359520,8.049599,6.280179,10.411583,22.333076,42.760345,63.071918,55.610760,9.028111,0.461984,0.061984,0.131405,0.020661,0.000000,0.000000,0.000000,0.380166,0.285124,0.611571,0.136364,0.323141,5.623142 -601282.155000,4611925.550000,2700,7305,98.528122,117.330589,114.652901,111.000008,102.289276,98.694229,100.140511,98.942162,99.099197,104.140518,108.297531,121.107445,135.685944,149.578506,163.495865,177.008286,184.545471,183.776871,174.942169,163.520660,157.991730,156.867767,154.181824,132.768600,120.429764,135.256210,156.636368,139.462814,80.793411,16.006630,14.016548,12.970263,24.801672,41.472748,60.132248,49.462833,3.533064,0.197521,0.053719,0.000000,0.000000,0.000000,0.000000,0.000000,1.409918,3.090909,1.040496,2.486778,0.857852,1.206612 -601295.955000,4611925.550000,2769,7305,120.890923,132.279358,123.709106,118.337204,107.709106,104.510757,106.180183,106.130592,106.552078,111.378525,116.576874,129.981827,147.337204,165.618195,184.370255,202.047943,213.915710,216.039673,206.717361,194.552078,188.543808,187.560333,182.527283,154.155380,135.791748,156.552078,183.750427,163.882645,89.386795,21.486795,16.593409,16.614893,24.952085,44.337212,64.659523,51.981842,3.946290,0.000000,0.000000,0.000000,0.000000,0.000000,0.009091,0.000000,4.300827,0.647934,0.683471,1.171075,1.664463,1.627273 -601113.155000,4611915.550000,1855,7355,119.796707,128.766953,121.676048,110.750427,97.312416,93.585144,95.353745,94.386795,94.882668,101.328949,104.907455,124.328941,150.213226,163.196701,173.056198,183.295868,187.535538,196.155380,191.519012,175.659515,161.775208,158.642975,153.800003,113.973572,84.750435,114.667786,176.651245,162.378525,89.477707,18.240515,13.981838,15.732248,20.272745,39.750435,58.502502,49.808289,2.200832,0.002480,0.000000,0.062810,0.000000,0.000000,0.000000,0.094215,10.842978,3.914051,6.500829,3.623142,9.569423,11.038845 -601281.755000,4611915.550000,2698,7355,55.232243,65.107460,61.603325,55.427288,47.255386,46.880180,47.554562,46.914894,46.419025,50.035553,54.288445,64.410759,77.865295,89.774399,104.181831,119.421501,129.624817,133.434723,130.062836,122.909103,117.958694,117.487617,112.909103,93.706627,79.683487,97.066132,126.866959,123.752083,69.737213,13.280181,10.264480,9.228112,23.918200,36.777702,58.985142,50.454567,4.292568,0.193389,0.601654,0.594215,0.000000,0.000000,0.000000,0.000000,0.023967,0.803306,0.000000,0.000000,0.000000,0.000000 -601291.955000,4611915.550000,2749,7355,60.952904,75.357048,66.561996,60.644646,49.681839,43.802498,45.752087,44.172741,41.343819,45.463654,49.013241,61.257042,75.595879,91.439690,108.239685,124.471092,135.991745,139.512405,134.628113,126.272743,123.239685,121.181831,119.363655,91.950432,75.003326,97.752083,137.652908,134.330582,77.421501,13.354562,10.851259,13.020678,28.760351,46.785145,71.132256,56.074402,6.648771,0.054546,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.463637,0.747934,0.142976,1.060331,0.460331,2.023141 -601123.155000,4611905.550000,1905,7405,67.404137,63.234722,56.349594,49.147114,44.649593,40.418186,40.139671,38.321495,37.585957,37.387611,38.333897,42.480171,47.981003,52.005795,55.866123,59.023148,59.800007,61.047939,56.783478,52.476868,48.518192,47.521492,45.654556,36.307446,29.922319,37.357033,51.914886,51.647114,29.527283,6.023976,4.150422,11.761170,12.893402,23.878529,40.942989,38.036381,11.309926,6.829758,9.397528,7.130583,8.330583,6.153723,5.367773,5.184300,37.882652,12.770252,9.745457,10.642978,10.276036,22.807440 -601276.755000,4611905.550000,2673,7405,150.878525,151.746292,148.919846,140.027283,127.490097,122.614067,117.465302,114.490097,113.390923,115.647125,116.936378,128.423981,144.382645,158.985962,173.192566,188.787613,196.861984,196.820663,184.308273,168.597534,159.605789,156.291748,151.209091,116.547951,94.812408,119.324806,156.580994,140.638855,75.647125,18.193407,13.746300,11.360346,18.469440,26.381836,42.928123,32.195061,1.701657,0.318183,0.000000,0.037190,0.000000,0.028927,0.195041,0.000000,5.037190,2.047934,4.671075,4.819009,5.803307,1.954546 -601263.155000,4611895.550000,2605,7455,123.139679,140.364471,131.050430,121.124809,109.876869,102.587616,99.604134,94.901657,95.488434,97.719841,101.058685,114.306625,131.587616,145.777695,163.124802,181.290100,188.736374,186.438858,175.091751,160.273560,151.703323,147.951248,140.827286,106.504967,87.091759,112.595879,147.347946,135.901672,76.149605,17.180183,12.802498,11.987619,18.404150,34.823986,46.306633,38.554565,3.380172,0.014050,0.000000,0.002480,0.000000,0.000000,0.188430,0.000000,9.281819,5.026447,5.567770,2.106612,5.612398,1.778512 -601270.155000,4611895.550000,2640,7455,95.331429,106.542168,97.630592,88.448784,76.345474,67.739685,64.335556,59.682663,57.403320,58.834728,60.310760,69.535561,83.040512,95.878532,108.804146,122.597534,129.407455,128.614059,122.324806,108.870262,100.655396,98.539680,92.754570,63.929768,48.320683,69.968613,114.539680,114.638855,66.291756,11.904147,8.432250,9.405798,20.714893,33.488449,50.622337,41.838036,3.673560,0.134711,0.133885,0.000000,0.000000,0.041322,0.000000,0.000000,7.181820,4.138844,1.969422,1.179339,2.036364,0.000000 -601253.155000,4611885.550000,2555,7505,169.168610,169.697540,161.408279,153.788452,141.499191,136.821503,136.069443,134.036377,134.573563,138.474396,141.978531,150.887619,164.887619,178.185150,189.945480,202.449600,208.482666,204.689270,191.061172,175.019852,167.375229,163.515717,158.127289,130.920670,114.540504,129.978531,146.003326,123.623154,66.168617,19.389273,14.375226,18.889273,20.019852,31.119028,40.904152,33.436382,4.897530,1.823971,1.009920,0.941326,0.750414,1.679341,2.839670,0.427274,20.560333,8.604960,10.299175,7.024795,8.063638,4.310744 diff --git a/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.bsq b/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.bsq deleted file mode 100644 index 69e6f5f..0000000 Binary files a/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.bsq and /dev/null differ diff --git a/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.hdr b/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.hdr deleted file mode 100644 index b28cae7..0000000 --- a/src/gui/work_dir/10_sampling/sampling_spectra_valid_area.hdr +++ /dev/null @@ -1,15 +0,0 @@ -ENVI -description = { -work_dir\10_sampling\sampling_spectra_valid_area.bsq} -samples = 11363 -lines = 10408 -bands = 1 -header offset = 0 -file type = ENVI Standard -data type = 4 -interleave = bsq -byte order = 0 -map info = {UTM, 1, 1, 600742.055, 4613386.65, 0.2, 0.2, 51, North,WGS-84} -coordinate system string = {PROJCS["unnamed",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",123.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]} -band names = { -Band 1} diff --git a/src/gui/work_dir/1_water_mask/hsi_preview.png b/src/gui/work_dir/1_water_mask/hsi_preview.png deleted file mode 100644 index 13dcaf9..0000000 Binary files a/src/gui/work_dir/1_water_mask/hsi_preview.png and /dev/null differ diff --git a/src/gui/work_dir/1_water_mask/water_mask_from_shp.dat b/src/gui/work_dir/1_water_mask/water_mask_from_shp.dat deleted file mode 100644 index 69e6f5f..0000000 Binary files a/src/gui/work_dir/1_water_mask/water_mask_from_shp.dat and /dev/null differ diff --git a/src/gui/work_dir/1_water_mask/water_mask_from_shp.hdr b/src/gui/work_dir/1_water_mask/water_mask_from_shp.hdr deleted file mode 100644 index 1b9f3f5..0000000 --- a/src/gui/work_dir/1_water_mask/water_mask_from_shp.hdr +++ /dev/null @@ -1,15 +0,0 @@ -ENVI -description = { -work_dir\1_water_mask\water_mask_from_shp.dat} -samples = 11363 -lines = 10408 -bands = 1 -header offset = 0 -file type = ENVI Standard -data type = 4 -interleave = bsq -byte order = 0 -map info = {UTM, 1, 1, 600742.055, 4613386.65, 0.2, 0.2, 51, North,WGS-84} -coordinate system string = {PROJCS["unnamed",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",123.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]} -band names = { -Band 1} diff --git a/src/gui/work_dir/1_water_mask/water_mask_from_shp__tmp_delete.hdr b/src/gui/work_dir/1_water_mask/water_mask_from_shp__tmp_delete.hdr deleted file mode 100644 index f866dd2..0000000 --- a/src/gui/work_dir/1_water_mask/water_mask_from_shp__tmp_delete.hdr +++ /dev/null @@ -1,15 +0,0 @@ -ENVI -description = { -work_dir\1_water_mask\water_mask_from_shp__tmp_delete.dat} -samples = 7411 -lines = 5368 -bands = 1 -header offset = 0 -file type = ENVI Standard -data type = 1 -interleave = bsq -byte order = 0 -map info = {UTM, 1, 1, 600947.955, 4612951.75, 0.2, 0.2, 51, North,WGS-84} -coordinate system string = {PROJCS["WGS_1984_UTM_Zone_51N",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",500000.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",123.0],PARAMETER["Scale_Factor",0.9996],PARAMETER["Latitude_Of_Origin",0.0],UNIT["Meter",1.0]]} -band names = { -Band 1} diff --git a/src/gui/work_dir/1_water_mask/water_mask_overlay.png b/src/gui/work_dir/1_water_mask/water_mask_overlay.png deleted file mode 100644 index ca6b519..0000000 Binary files a/src/gui/work_dir/1_water_mask/water_mask_overlay.png and /dev/null differ diff --git a/src/preprocessing/spectral_Preprocessing.py b/src/preprocessing/spectral_Preprocessing.py index 7c24244..cccc296 100644 --- a/src/preprocessing/spectral_Preprocessing.py +++ b/src/preprocessing/spectral_Preprocessing.py @@ -150,7 +150,7 @@ def Preprocessing(method, input_spectrum, save_path=None): # SS预处理模型保存到工作目录的7_Supervised_Model_Training/scaler_params.pkl # 如果调用者没有提供save_path,则使用默认路径 if not save_path: - save_path = r'E:\code\WQ\models\scaler_params.pkl' + save_path = r'.\scaler_params.pkl' output_spectrum = SS(input_spectrum.values, save_path) elif method == 'CT': output_spectrum = CT(input_spectrum.values)